:root {
  --bg: #171114;
  --surface: #21191d;
  --surface-soft: #2a1e23;
  --surface-elevated: #302329;
  --primary: #e88ca8;
  --primary-pressed: #d47492;
  --primary-soft: #4a2633;
  --coral: #f09382;
  --gold: #f4c477;
  --text: #fff5f7;
  --text-secondary: #d3c2c8;
  --muted: #9f8d94;
  --border: #46373d;
  --cream: #fff0eb;
  --ink: #28191e;
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(23, 17, 20, 0.76);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease;
}

.site-header.scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.nav {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand img {
  filter: drop-shadow(0 6px 12px rgba(232, 140, 168, 0.24));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 560;
}

.nav-links > a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-links > a:hover,
.nav-links > a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  width: 18px;
  height: 1px;
  background: var(--text);
}

.hero {
  display: grid;
  min-height: calc(100svh - 80px);
  grid-template-columns: 1fr 0.88fr;
  align-items: center;
  gap: 70px;
  padding-block: 72px 100px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 720px;
  font-size: clamp(56px, 6.3vw, 88px);
  font-weight: 650;
}

h1 em,
h2 em {
  color: var(--primary);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--text-secondary);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.button-primary {
  background: var(--primary);
  color: #271116;
  box-shadow: 0 12px 34px rgba(232, 140, 168, 0.2);
}

.button-primary:hover {
  background: #f09bb4;
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.button-secondary:hover {
  border-color: #69535c;
  background: var(--surface);
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #79c99e;
}

.status-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(121, 201, 158, 0.42);
  border-radius: inherit;
  content: "";
  animation: pulse 2.4s ease-out infinite;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.ambient-one {
  top: 17%;
  left: 8%;
  width: 260px;
  height: 260px;
  background: rgba(232, 140, 168, 0.18);
}

.ambient-two {
  right: 2%;
  bottom: 11%;
  width: 210px;
  height: 210px;
  background: rgba(118, 86, 168, 0.15);
}

.phone {
  position: relative;
  z-index: 2;
  width: min(356px, 82vw);
  overflow: hidden;
  border: 8px solid #37292f;
  border-radius: 48px;
  background: var(--bg);
  box-shadow:
    0 42px 100px rgba(0, 0, 0, 0.48),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 0 1px #0f0a0c;
  transform: rotate(2.4deg);
}

.phone-top {
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 22px 0;
  font-size: 9px;
  font-weight: 650;
}

.phone-island {
  width: 82px;
  height: 23px;
  border-radius: 999px;
  background: #090608;
}

.phone-content {
  padding: 17px 19px 14px;
}

.app-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-heading p {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 10px;
}

.app-heading h2 {
  font-size: 21px;
  letter-spacing: -0.04em;
}

.app-heading img {
  border-radius: 16px;
  background: var(--surface);
}

.moment-label {
  display: flex;
  justify-content: space-between;
  margin: 24px 2px 9px;
  color: var(--text-secondary);
  font-size: 9px;
  font-weight: 700;
}

.question-card {
  padding: 19px;
  border: 1px solid #5c3542;
  border-radius: 24px;
  background:
    radial-gradient(circle at 110% -10%, rgba(240, 147, 130, 0.21), transparent 45%),
    linear-gradient(145deg, #38212a, #24191d);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-pill {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(232, 140, 168, 0.16);
  color: var(--primary);
  font-size: 8px;
  font-weight: 750;
}

.heart-mark {
  color: var(--primary);
  font-size: 13px;
}

.question {
  margin: 22px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.4;
}

.question-card button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #271116;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
}

.mini-section {
  margin-top: 20px;
}

.mini-section > p {
  margin: 0 0 9px;
  font-size: 10px;
  font-weight: 700;
}

.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mini-cards div {
  display: flex;
  min-height: 68px;
  flex-direction: column;
  justify-content: space-between;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}

.mini-cards span {
  color: var(--coral);
  font-size: 9px;
}

.mini-cards b {
  font-size: 9px;
}

.phone-tabs {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  margin: 20px -19px -14px;
  padding: 11px 10px 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #1a1316;
}

.phone-tabs span {
  display: flex;
  min-width: 46px;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--muted);
  font-size: 10px;
}

.phone-tabs small {
  font-size: 7px;
}

.phone-tabs .active {
  color: var(--primary);
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(42, 30, 35, 0.82);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.floating-note span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: var(--primary-soft);
  color: var(--primary);
  font-family: Georgia, serif;
  font-size: 18px;
}

.floating-note p {
  max-width: 82px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 10px;
  line-height: 1.3;
}

.note-one {
  top: 22%;
  left: 1%;
  animation: float 6s ease-in-out infinite;
}

.note-two {
  right: -2%;
  bottom: 17%;
  animation: float 6s 1.5s ease-in-out infinite;
}

.manifesto {
  padding-block: 124px;
  background: var(--cream);
  color: var(--ink);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 80px 1.4fr 0.8fr;
  gap: 46px;
}

.section-index {
  margin: 8px 0 0;
  color: #aa7c8b;
  font-size: 12px;
  font-weight: 700;
}

.manifesto .eyebrow {
  color: #9f4c67;
}

.manifesto h2,
.how h2,
.features h2,
.privacy h2,
.final-cta h2 {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 620;
}

.manifesto h2 em {
  color: #9f4c67;
}

.manifesto-copy {
  padding-top: 50px;
}

.manifesto-copy > p:first-child {
  margin: 0;
  color: #6e5961;
  font-size: 18px;
}

.manifesto-copy .quote {
  margin: 44px 0 0;
  padding-left: 22px;
  border-left: 2px solid #d994a8;
  color: #5b3c46;
  font-family: Georgia, serif;
  font-size: 21px;
  line-height: 1.55;
}

.how,
.privacy,
.final-cta {
  padding-block: 130px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.section-heading > p {
  max-width: 480px;
  margin: 0 0 7px;
  color: var(--text-secondary);
  font-size: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 70px;
}

.step {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--surface);
}

.step-number {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.step-art {
  display: grid;
  height: 225px;
  place-items: center;
  margin: 14px 0 20px;
  border-radius: 24px;
  background: var(--surface-soft);
}

.step-art-question span {
  display: grid;
  width: 96px;
  height: 122px;
  place-items: center;
  border: 1px solid #734454;
  border-radius: 28px;
  background: linear-gradient(150deg, #4a2633, #302128);
  color: var(--primary);
  font-family: Georgia, serif;
  font-size: 60px;
  transform: rotate(-7deg);
  box-shadow: 22px 20px 0 #2b2024;
}

.step-art-together {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-art-together i {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--coral), #cb6483);
  box-shadow: inset 10px 10px 20px rgba(255, 255, 255, 0.1);
}

.step-art-together i:last-child {
  margin-left: -34px;
  background: linear-gradient(145deg, #b87fd4, #7656a8);
  mix-blend-mode: screen;
}

.step-art-heart span {
  color: var(--primary);
  font-size: 108px;
  filter: drop-shadow(0 15px 25px rgba(232, 140, 168, 0.25));
  animation: heartbeat 3.2s ease-in-out infinite;
}

.step h3,
.feature h3 {
  font-size: 26px;
  font-weight: 620;
}

.step > p,
.feature > p,
.feature-copy > p {
  margin: 15px 0 0;
  color: var(--text-secondary);
}

.features {
  padding-block: 130px;
  background: #1c1518;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 70px;
}

.feature {
  min-height: 500px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: var(--surface);
}

.feature-wide {
  display: grid;
  min-height: 410px;
  grid-column: 1 / -1;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 50px;
  background:
    radial-gradient(circle at 86% 50%, rgba(232, 140, 168, 0.16), transparent 40%),
    var(--surface);
}

.feature-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 740;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.conversation-stack {
  position: relative;
  height: 280px;
}

.conversation-stack div {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 190px;
  height: 230px;
  place-items: center;
  border: 1px solid #6d4351;
  border-radius: 34px;
  background: linear-gradient(145deg, #4a2b35, #271b20);
  color: var(--primary);
  font-family: Georgia, serif;
  font-size: 70px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
}

.conversation-stack div:nth-child(1) {
  transform: translate(-84%, -50%) rotate(-12deg);
}

.conversation-stack div:nth-child(2) {
  z-index: 2;
  transform: translate(-50%, -54%);
}

.conversation-stack div:nth-child(3) {
  transform: translate(-16%, -50%) rotate(12deg);
}

.feature-visual {
  display: grid;
  height: 270px;
  place-items: center;
  margin: -6px 0 30px;
  border-radius: 26px;
  background: var(--surface-soft);
}

.game-visual {
  position: relative;
}

.game-card {
  position: absolute;
  display: grid;
  width: 115px;
  height: 155px;
  place-items: center;
  border: 1px solid #714654;
  border-radius: 26px;
  background: linear-gradient(150deg, #4a2a35, #2a1d22);
  color: var(--primary);
  font-family: Georgia, serif;
  font-size: 42px;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.3);
}

.card-a {
  transform: translateX(-88px) rotate(-14deg);
}

.card-b {
  z-index: 2;
  transform: translateY(-6px);
}

.card-c {
  transform: translateX(88px) rotate(14deg);
}

.decision-orbit {
  position: relative;
  display: grid;
  width: 205px;
  height: 205px;
  place-items: center;
  border: 1px dashed #71525e;
  border-radius: 50%;
}

.decision-orbit b {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #271116;
  font-size: 13px;
}

.decision-orbit span {
  position: absolute;
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 11px;
}

.decision-orbit span:first-child {
  top: 8px;
  right: -10px;
}

.decision-orbit span:nth-child(2) {
  bottom: 13px;
  left: -20px;
}

.privacy-card {
  display: grid;
  grid-template-columns: 160px 1fr 0.8fr;
  align-items: center;
  gap: 52px;
  padding: 64px;
  border: 1px solid #553642;
  border-radius: 40px;
  background:
    radial-gradient(circle at 10% 40%, rgba(232, 140, 168, 0.16), transparent 26%),
    var(--surface);
}

.privacy-symbol {
  display: grid;
  width: 142px;
  height: 142px;
  place-items: center;
  border-radius: 42px;
  background: var(--primary-soft);
}

.privacy-symbol span {
  position: relative;
  display: block;
  width: 58px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary);
}

.privacy-symbol span::before {
  position: absolute;
  top: -30px;
  left: 11px;
  width: 30px;
  height: 38px;
  border: 4px solid var(--primary);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  content: "";
}

.privacy-card h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.privacy-card > div:nth-child(2) > p:last-child {
  margin: 22px 0 0;
  color: var(--text-secondary);
}

.privacy-points {
  display: grid;
  gap: 14px;
}

.privacy-points p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.privacy-points p > span:first-child {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 11px;
}

.legal-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.legal-link:hover,
.legal-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.final-cta {
  padding-top: 50px;
}

.cta-card {
  display: flex;
  min-height: 580px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px 28px;
  border: 1px solid #543641;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 12%, rgba(232, 140, 168, 0.24), transparent 28%),
    radial-gradient(circle at 80% 90%, rgba(118, 86, 168, 0.16), transparent 30%),
    var(--surface);
  text-align: center;
}

.cta-card img {
  margin-bottom: 24px;
  filter: drop-shadow(0 16px 25px rgba(232, 140, 168, 0.25));
}

.cta-card h2 {
  max-width: 830px;
}

.cta-card > p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 32px;
  color: var(--text-secondary);
  font-size: 18px;
}

footer {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  min-height: 150px;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid .brand {
  color: var(--text);
  font-size: 19px;
}

.footer-grid > a:not(.brand) {
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--text-secondary);
}

.copyright {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(0.7);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  8% {
    transform: scale(1.08);
  }
  16% {
    transform: scale(1);
  }
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr 0.8fr;
    gap: 28px;
  }

  .floating-note {
    display: none;
  }

  .manifesto-grid {
    grid-template-columns: 44px 1fr;
  }

  .manifesto-copy {
    grid-column: 2;
    padding-top: 0;
  }

  .privacy-card {
    grid-template-columns: 120px 1fr;
    padding: 48px;
  }

  .privacy-symbol {
    width: 110px;
    height: 110px;
  }

  .privacy-points {
    grid-column: 2;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 32px, 620px);
  }

  .site-header {
    background: rgba(23, 17, 20, 0.92);
  }

  .nav {
    min-height: 70px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.36);
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
  }

  .nav-links > a {
    padding: 10px 12px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 66px 80px;
  }

  h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .hero-visual {
    min-height: 620px;
  }

  .phone {
    transform: none;
  }

  .manifesto,
  .how,
  .features,
  .privacy,
  .final-cta {
    padding-block: 92px;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .manifesto-copy {
    grid-column: 1;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .steps,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .feature-wide .conversation-stack {
    order: -1;
  }

  .privacy-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 36px 28px;
  }

  .privacy-points {
    grid-column: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 44px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 48px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 570px;
  }

  .phone {
    width: min(334px, 92vw);
  }

  .manifesto h2,
  .how h2,
  .features h2,
  .privacy h2,
  .final-cta h2 {
    font-size: 42px;
  }

  .step,
  .feature {
    padding: 22px;
  }

  .conversation-stack div {
    width: 140px;
    height: 190px;
  }

  .card-a {
    transform: translateX(-68px) rotate(-14deg);
  }

  .card-c {
    transform: translateX(68px) rotate(14deg);
  }

  .cta-card {
    min-height: 520px;
    padding-inline: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
