/* ═══════════════════════════════════════════════════════════════
   AURIS — Marketing Site
   Editorial-minimalist system. Newsreader (serif, narrative) over
   Instrument Sans (functional). 95% warm neutrals, 5% misty teal.
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* color */
  --surface: #F7F4EF;
  --surface-tint: #F0EBE3;
  --card: #FFFFFF;
  --ink: #10201E;
  --ink-soft: #2C3B39;
  --muted: #5E6D6A;
  --faint: #6E7C79; /* AA-contrast on the warm surface for small text */
  --teal: #3B7E7A;
  --teal-deep: #184B48;
  --teal-ink: #0A2C29;
  --teal-text: #2E6360;          /* AA on warm white */
  --border: rgba(16, 32, 30, .10);
  --border-soft: rgba(16, 32, 30, .06);

  /* type */
  --serif: "Newsreader", "New York", Georgia, serif;
  --sans: "Instrument Sans", "Helvetica Neue", sans-serif;

  /* space */
  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: clamp(5rem, 12vw, 9.5rem);

  /* depth */
  --shadow-sm: 0 1px 2px rgba(16,32,30,.05), 0 2px 8px rgba(16,32,30,.04);
  --shadow-md: 0 2px 6px rgba(16,32,30,.06), 0 12px 32px rgba(16,32,30,.08);
  --shadow-phone: 0 4px 12px rgba(16,32,30,.10), 0 28px 80px rgba(16,32,30,.22);

  --radius: 16px;
  --ease: cubic-bezier(.22, .61, .21, 1);
}

/* ── Reset & base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }
[hidden] { display: none !important; }

.container { width: min(1160px, 100% - 3rem); margin-inline: auto; }
[id] { scroll-margin-top: 84px; }
.container--narrow { width: min(780px, 100% - 3rem); }
.section { padding-block: var(--space-xl); }
.section--tinted { background: var(--surface-tint); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--teal-ink); color: #fff; padding: .6rem 1rem;
  border-radius: 8px; transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* Visible keyboard focus everywhere, invisible for mouse users */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 2px; }

/* ── Typography ─────────────────────────────────────────────── */
.eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal-text);
  margin-bottom: 1.1rem;
}
.eyebrow--light { color: #9DC4BF; }

.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 4.6vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.section__title em { font-style: italic; font-weight: 380; }
.section__title--light { color: #F4F1EA; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; font-weight: 600; font-size: .95rem;
  padding: .8rem 1.5rem; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--teal-deep); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--teal-ink); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { color: var(--ink); background: transparent; box-shadow: inset 0 0 0 1.5px var(--border); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--light { background: #F4F1EA; color: var(--teal-ink); }
.btn--light:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.btn--outline-light { color: #F4F1EA; box-shadow: inset 0 0 0 1.5px rgba(244,241,234,.45); }
.btn--outline-light:hover { box-shadow: inset 0 0 0 1.5px #F4F1EA; }
.btn--sm { padding: .55rem 1.1rem; font-size: .875rem; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* Button with a one-line caption underneath */
.btn-stack { display: flex; flex-direction: column; align-items: center; gap: .45rem; }
.btn-stack > span { font-size: .78rem; color: var(--faint); letter-spacing: .01em; }

/* ── Announcement bar ───────────────────────────────────────── */
.announce {
  display: flex; align-items: center; justify-content: center; gap: 1.25rem;
  flex-wrap: wrap; padding: .55rem 1rem;
  background: var(--teal-ink); color: #DCE7E4;
  font-size: .84rem; letter-spacing: .01em;
}
.announce strong { color: #fff; font-weight: 600; }
.announce__dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #6FBFB7; margin-right: .5rem;
  animation: pulse 2.4s infinite var(--ease);
}
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }
.announce__sep { margin-inline: .35rem; opacity: .5; }
.announce__count { font-variant-numeric: tabular-nums; }
.announce__cta { color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 1px; }
.announce__cta:hover { border-color: #fff; }

/* ── Nav ────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease),
              backdrop-filter .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(247, 244, 239, .82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border-soft);
}
.nav__inner {
  width: min(1160px, 100% - 3rem); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-block: .9rem;
}
.nav__brand { display: flex; align-items: center; gap: .6rem; }
.nav__brand img { width: 34px; }
.nav__brand span {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
  letter-spacing: .01em; color: var(--teal-ink);
}
.nav__links { display: flex; gap: 2rem; font-size: .92rem; font-weight: 500; color: var(--muted); }
.nav__links a { transition: color .2s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__actions { display: flex; gap: .6rem; align-items: center; }
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__actions .btn--ghost { display: none; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; }
.hero::before {
  /* quiet teal wash behind the phone — no blobs, just atmosphere */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(52% 44% at 78% 46%, rgba(59,126,122,.14), transparent 70%),
    radial-gradient(40% 34% at 12% 8%, rgba(59,126,122,.05), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  width: min(1160px, 100% - 3rem); margin-inline: auto;
  display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: center; gap: var(--space-md);
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(4rem, 9vw, 8rem);
}
.hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem, 5.6vw, 4.6rem);
  line-height: 1.04; letter-spacing: -.02em;
  margin-bottom: 1.4rem; text-wrap: balance;
}
.hero__title em { font-style: italic; font-weight: 380; color: var(--teal-deep); }
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted);
  max-width: 34rem; margin-bottom: 2.2rem;
}
.hero__ctas { display: flex; gap: .9rem 1.1rem; flex-wrap: wrap; align-items: flex-start; }
.hero__offer {
  display: inline-block; margin-top: 1.3rem;
  font-size: .92rem; color: var(--ink-soft);
  padding: .55rem 1.05rem; border-radius: 999px;
  background: rgba(59,126,122,.09);
  border: 1px solid rgba(59,126,122,.22);
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.hero__offer:hover { background: rgba(59,126,122,.15); border-color: rgba(59,126,122,.4); }
.hero__offer strong { color: var(--teal-ink); font-weight: 700; }
.hero__offer s { color: var(--faint); margin-inline: .15rem; }
.hero__offer .offer-count { font-weight: 700; color: var(--teal-deep); }
.hero__note { margin-top: .9rem; font-size: .84rem; color: var(--faint); }
.hero__visual { display: flex; justify-content: center; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; translate: -50% 0;
  width: 26px; height: 42px; border: 1.5px solid var(--border);
  border-radius: 999px; display: flex; justify-content: center;
}
.hero__scroll span {
  width: 3px; height: 8px; border-radius: 2px; background: var(--muted);
  margin-top: 7px; animation: scrollhint 2s infinite var(--ease);
}
@keyframes scrollhint { 0% { transform: translateY(0); opacity: 1 } 70% { transform: translateY(14px); opacity: 0 } 100% { opacity: 0 } }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 3.5rem; }
  .hero__sub { margin-inline: auto; }
  .hero__ctas { justify-content: center; }
  .hero__scroll { display: none; }
}

/* ── Phone mockup ───────────────────────────────────────────── */
.phone {
  width: clamp(300px, 33vw, 400px);
  aspect-ratio: 640 / 1391;
  padding: 11px;
  background: linear-gradient(160deg, #2B3231, #11221F 60%, #1E2A28);
  border-radius: clamp(38px, 4.4vw, 52px);
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,.14),
    var(--shadow-phone);
}
.phone__screen {
  width: 100%; height: 100%; overflow: hidden;
  border-radius: clamp(28px, 3.4vw, 42px);
  background: #F7F4EF;
}
.phone__screen img { width: 100%; height: 100%; object-fit: cover; }
.phone--hero { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(.4deg) } 50% { transform: translateY(-12px) rotate(-.4deg) } }

/* ── Trust facts ────────────────────────────────────────────── */
.proof { padding-block: var(--space-lg) var(--space-lg); border-top: 1px solid var(--border-soft); }
.proof__lede {
  font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.35; text-align: center; color: var(--ink-soft);
  margin-bottom: 3.2rem; text-wrap: balance;
}
.proof__facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem;
  text-align: center;
}
.proof__fact { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.proof__fact svg { width: 24px; height: 24px; color: var(--teal); margin-bottom: .55rem; }
.proof__fact strong { font-size: 1rem; letter-spacing: -.01em; color: var(--ink); }
.proof__fact span { font-size: .85rem; color: var(--faint); }
@media (max-width: 760px) { .proof__facts { grid-template-columns: repeat(2, 1fr); row-gap: 2.2rem; } }

/* ── Story (problem → solution) ─────────────────────────────── */
.story { padding-top: var(--space-lg); }
.story__copy { color: var(--muted); font-size: 1.1rem; max-width: 38rem; margin-top: .6rem; }
.story__turn {
  font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  color: var(--teal-ink); margin-top: 1.8rem; max-width: 34rem; line-height: 1.4;
}

/* ── How it works ───────────────────────────────────────────── */
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.how__card {
  background: var(--card); border-radius: var(--radius);
  padding: 2.2rem 1.9rem 2rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.how__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.how__num {
  font-family: var(--serif); font-style: italic; font-size: 1.05rem;
  color: var(--teal-text); display: block; margin-bottom: 2.2rem;
}
.how__icon { width: 24px; height: 24px; color: var(--teal); margin-bottom: .8rem; }
.how__card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: .6rem; letter-spacing: -.01em; }
.how__card p { color: var(--muted); font-size: .96rem; }
@media (max-width: 820px) { .how__grid { grid-template-columns: 1fr; } .how__num { margin-bottom: 1.4rem; } }

/* ── Journey (see Auris in 30 seconds) ──────────────────────── */
.journey { text-align: center; }
.journey__lede { color: var(--muted); margin-top: -.4rem; }
.journey__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.4rem; margin-top: 3.2rem;
  counter-reset: step;
}
.journey__step { position: relative; display: flex; flex-direction: column; align-items: center; }
.journey__step .phone { width: 100%; max-width: 250px; }
.journey__step:not(:last-child)::after {
  /* connecting arrow between steps */
  content: "→"; position: absolute; right: -1.15rem; top: 38%;
  font-size: 1.4rem; color: var(--faint); font-family: var(--serif);
}
.journey__num {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal-deep); color: #fff;
  font-size: .85rem; font-weight: 700;
  margin: 1.4rem 0 .55rem;
}
.journey__step h3 { font-size: 1.05rem; font-weight: 600; letter-spacing: -.01em; }
.journey__step p { font-size: .88rem; color: var(--muted); margin-top: .25rem; max-width: 15rem; }
@media (max-width: 900px) {
  .journey__grid { grid-template-columns: 1fr 1fr; }
  .journey__step:nth-child(2)::after { content: none; }
}
@media (max-width: 540px) {
  .journey__grid { grid-template-columns: 1fr; }
  .journey__step::after { content: none !important; }
  .journey__step .phone { max-width: 240px; }
}

/* ── Compact pricing callout ────────────────────────────────── */
.pricebar { padding-block: 1rem var(--space-lg); }
.pricebar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem 2rem; flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--border-soft);
  border-radius: 20px; padding: 1.5rem 2rem;
  box-shadow: var(--shadow-md);
}
.pricebar__info { display: flex; align-items: baseline; gap: 1.1rem; flex-wrap: wrap; }
.pricebar__info > strong { font-size: 1.05rem; letter-spacing: -.01em; }
.pricebar__price {
  font-family: var(--serif); font-size: 2rem; line-height: 1;
  color: var(--teal-ink); font-variant-numeric: tabular-nums;
}
.pricebar__price s { font-size: 1rem; color: var(--faint); }
.pricebar__spots {
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  color: var(--teal-text); background: rgba(59,126,122,.1);
  padding: .3rem .75rem; border-radius: 999px;
}
@media (max-width: 640px) { .pricebar__inner { justify-content: center; text-align: center; } }

/* ── Why it matters ─────────────────────────────────────────── */
.moments { text-align: center; }
.moments__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem); line-height: 1.12;
  letter-spacing: -.015em; text-wrap: balance;
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}
.moments__title em { font-style: italic; color: var(--teal-deep); }
.moments__lines p {
  font-family: var(--serif); font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  line-height: 1.55; color: var(--ink-soft); padding: .4rem 0;
}
.moments__close {
  margin-top: clamp(2rem, 4vw, 3rem);
  font-size: 1rem; font-weight: 600; color: var(--teal-text);
  letter-spacing: .02em;
}

/* ── Features ───────────────────────────────────────────────── */
.features__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.6rem; margin-top: 3.2rem;
}
.feature__icon { width: 26px; height: 26px; color: var(--teal); margin-bottom: 1rem; }
.feature h3 { font-size: 1.06rem; font-weight: 600; margin-bottom: .45rem; letter-spacing: -.01em; }
.feature p { color: var(--muted); font-size: .94rem; }
@media (max-width: 860px) { .features__grid { grid-template-columns: 1fr 1fr; gap: 2.4rem 1.6rem; } }
@media (max-width: 540px) { .features__grid { grid-template-columns: 1fr; } }

/* ── Clarity Score ──────────────────────────────────────────── */
.clarity__inner {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: var(--space-lg); align-items: center;
}
.clarity__lede { color: var(--muted); max-width: 32rem; margin-bottom: 2.6rem; }
.meter { margin-bottom: 1.7rem; max-width: 30rem; }
.meter__head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-weight: 600; font-size: .95rem; margin-bottom: .45rem;
}
.meter__val { font-family: var(--serif); font-size: 1.25rem; color: var(--teal-ink); font-variant-numeric: tabular-nums; }
.meter__track { height: 5px; background: rgba(16,32,30,.09); border-radius: 3px; overflow: hidden; }
.meter__fill {
  height: 100%; width: 0; border-radius: 3px;
  background: linear-gradient(90deg, var(--teal-deep), var(--teal));
  transition: width 1.3s var(--ease);
}
.is-inview .meter__fill { width: var(--w); }
.meter__desc { font-size: .85rem; color: var(--faint); margin-top: .5rem; }

.clarity__visual { display: flex; justify-content: center; }
.growth {
  width: min(420px, 100%);
  background: var(--card); border-radius: 20px;
  padding: 1.8rem 1.9rem 1.6rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
}
.growth__head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; margin-bottom: 1.2rem;
}
.growth__scenario { font-weight: 700; letter-spacing: -.01em; }
.growth__range { font-size: .8rem; color: var(--faint); font-variant-numeric: tabular-nums; }
.growth__row {
  display: grid; grid-template-columns: 1fr auto auto auto auto;
  align-items: baseline; gap: .7rem;
  padding: .8rem 0; border-bottom: 1px solid var(--border-soft);
}
.growth__label { font-size: .95rem; font-weight: 600; }
.growth__before { color: var(--faint); font-variant-numeric: tabular-nums; }
.growth__arrow { color: var(--faint); }
.growth__after {
  font-family: var(--serif); font-size: 1.7rem; line-height: 1;
  color: var(--teal-deep); font-variant-numeric: tabular-nums; min-width: 2ch; text-align: right;
}
.growth__delta {
  font-size: .72rem; font-weight: 700;
  color: var(--teal-text); background: rgba(59,126,122,.1);
  padding: .18rem .5rem; border-radius: 999px;
}
.growth__coach { margin-top: 1.3rem; }
.growth__coachlabel {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--teal-text);
  margin-bottom: .4rem;
}
.growth__coach p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.02rem; line-height: 1.5; color: var(--ink-soft);
}
@media (max-width: 860px) { .clarity__inner { grid-template-columns: 1fr; } }

/* ── Editorial break ────────────────────────────────────────── */
.editorial { position: relative; height: clamp(340px, 52vw, 560px); overflow: hidden; }
.editorial img { width: 100%; height: 120%; object-fit: cover; object-position: center 30%; }
.editorial__overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(10,44,41,.30), rgba(10,44,41,.55));
}
.editorial blockquote p {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem); line-height: 1.15;
  color: #F4F1EA; text-align: center; letter-spacing: -.01em;
}
.editorial blockquote em { font-style: italic; }

/* ── Progress ───────────────────────────────────────────────── */
.progress__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-lg); align-items: center;
}
.progress__visual { display: flex; justify-content: center; position: relative; min-height: 480px; }
.progress__visual .phone { width: clamp(200px, 20vw, 258px); position: absolute; }
.phone--tilt-l { transform: rotate(-5deg) translateX(-56%); top: 0; }
.phone--tilt-r { transform: rotate(4deg) translateX(56%); top: 3.2rem; }
.progress__list li {
  padding: 1.05rem 0; border-bottom: 1px solid var(--border-soft);
  color: var(--muted); font-size: .98rem; max-width: 30rem;
}
.progress__list li:first-child { border-top: 1px solid var(--border-soft); margin-top: 1.4rem; }
.progress__list strong { color: var(--ink); font-weight: 600; }
@media (max-width: 900px) {
  .progress__inner { grid-template-columns: 1fr; }
  .progress__visual { order: 2; min-height: 440px; margin-top: 1rem; }
}

/* ── Scenarios ──────────────────────────────────────────────── */
.scenarios__list {
  margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr;
  column-gap: 3.5rem;
}
.scenario {
  display: flex; align-items: baseline; gap: 1.3rem;
  padding: 1.25rem .4rem; border-bottom: 1px solid var(--border);
  transition: background-color .25s var(--ease);
}
.scenario:hover { background: rgba(255,255,255,.55); }
.scenario__idx { font-family: var(--serif); font-style: italic; color: var(--faint); font-size: .95rem; }
.scenario h3 { font-size: 1.08rem; font-weight: 600; letter-spacing: -.01em; }
.scenario p { color: var(--muted); font-size: .9rem; margin-top: .15rem; }
.scenario div { flex: 1; }
.scenario__meta { font-size: .8rem; color: var(--faint); font-variant-numeric: tabular-nums; }
.scenario:hover h3 { color: var(--teal-deep); }
.scenarios__note { margin-top: 2.2rem; color: var(--muted); font-size: .92rem; }
@media (max-width: 760px) { .scenarios__list { grid-template-columns: 1fr; } }

/* ── Founder Pass ───────────────────────────────────────────── */
.founder {
  background:
    radial-gradient(80% 60% at 85% 0%, rgba(59,126,122,.22), transparent 60%),
    var(--teal-ink);
  color: #C9D6D3;
}
.founder { padding-block: clamp(6rem, 14vw, 11rem); }
.founder__lede { max-width: 34rem; color: #A7B8B4; margin-bottom: 1.8rem; }
.founder__marks {
  display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 3.2rem;
}
.founder__marks li {
  font-size: .84rem; font-weight: 600; letter-spacing: .02em;
  color: #DCE7E4; padding: .42rem .95rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
}
.founder__marks .founder__marks-hot {
  color: #0A2C29; background: #8FD0C8; border-color: #8FD0C8;
}
.founder__layout {
  display: grid; grid-template-columns: .92fr 1.08fr;
  gap: 1.4rem; align-items: start;
}
.founder__card {
  background: linear-gradient(170deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  border-radius: 22px; padding: 2.4rem 2.2rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.founder__pricerow { display: flex; align-items: baseline; gap: .9rem; flex-wrap: wrap; }
.founder__price { font-family: var(--serif); font-size: 4rem; line-height: 1; color: #fff; }
.founder__was { font-size: 1.3rem; color: #7E938F; text-decoration: line-through; }
.founder__badge {
  font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(111,191,183,.16); color: #8FD0C8;
  padding: .3rem .7rem; border-radius: 999px;
}
.founder__once { margin-top: .7rem; font-size: .9rem; color: #A7B8B4; }
.founder__spots { margin-block: 1.8rem 2rem; }
.founder__spotshead {
  display: flex; justify-content: space-between;
  font-size: .84rem; color: #A7B8B4; margin-bottom: .55rem;
}
.founder__spotshead strong { color: #fff; }
.founder__spotsbar { height: 6px; border-radius: 3px; background: rgba(255,255,255,.12); overflow: hidden; }
.founder__spotsfill {
  height: 100%; width: 0; border-radius: 3px;
  background: linear-gradient(90deg, #6FBFB7, #8FD0C8);
  transition: width 1.4s var(--ease) .3s;
}
.is-inview .founder__spotsfill { width: var(--w); }
.founder__benefits { margin-bottom: 2.2rem; }
.founder__benefits li {
  padding: .62rem 0 .62rem 1.9rem; position: relative;
  font-size: .97rem; color: #DCE7E4;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.founder__benefits li::before {
  content: ""; position: absolute; left: .1rem; top: 1.05rem;
  width: 13px; height: 8px;
  border-left: 2px solid #6FBFB7; border-bottom: 2px solid #6FBFB7;
  transform: rotate(-45deg);
}
.founder__subtext { margin-top: .8rem; text-align: center; font-size: .85rem; font-weight: 600; color: #B8E4DE; }
.founder__alt {
  display: block; text-align: center; margin-top: .8rem;
  font-size: .88rem; color: #8FA5A1;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color .2s var(--ease);
}
.founder__alt:hover { color: #DCE7E4; }
.founder__fine { margin-top: 1.1rem; text-align: center; font-size: .8rem; color: #7E938F; }

.founder__compare { overflow-x: auto; }
.founder__compare table {
  width: 100%; border-collapse: collapse; font-size: .93rem;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px; overflow: hidden;
}
.founder__compare th, .founder__compare td {
  text-align: left; padding: .95rem 1.3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.founder__compare thead th {
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: #8FA5A1; padding-top: 1.3rem;
}
.founder__compare tbody th { font-weight: 500; color: #C9D6D3; }
.founder__compare td { color: #8FA5A1; }
.founder__compare .col-pass { color: #fff; font-weight: 500; background: rgba(111,191,183,.055); }
.founder__compare tr:last-child th, .founder__compare tr:last-child td { border-bottom: 0; }
@media (max-width: 900px) { .founder__layout { grid-template-columns: 1fr; } }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq__list { margin-top: 2.6rem; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.35rem .2rem; cursor: pointer; list-style: none;
  font-size: 1.08rem; font-weight: 600; letter-spacing: -.01em;
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--teal-deep); }
.faq__icon { position: relative; flex: 0 0 14px; height: 14px; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--muted); border-radius: 1px;
  transition: transform .3s var(--ease);
}
.faq__icon::before { left: 0; top: 6px; width: 14px; height: 2px; }
.faq__icon::after { left: 6px; top: 0; width: 2px; height: 14px; }
.faq details[open] .faq__icon::after { transform: scaleY(0); }
.faq details p { padding: 0 2.4rem 1.5rem .2rem; color: var(--muted); max-width: 42rem; }

/* ── Final CTA ──────────────────────────────────────────────── */
.final { position: relative; overflow: hidden; text-align: center; }
.final__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.final::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,44,41,.52), rgba(10,44,41,.72));
}
.final__content { position: relative; z-index: 1; padding-block: var(--space-xl); }
.final__title {
  font-family: var(--serif); font-weight: 400; color: #F4F1EA;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem); line-height: 1.06;
  letter-spacing: -.02em; margin-bottom: 1.2rem;
}
.final__title em { font-style: italic; }
.final__sub { color: rgba(244,241,234,.82); max-width: 30rem; margin: 0 auto 2.4rem; }
.final__form {
  display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap;
  max-width: 30rem; margin-inline: auto;
}
.final__form input {
  flex: 1 1 240px; padding: .95rem 1.3rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  color: #fff; font: inherit; font-size: .95rem; outline: none;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.final__form input::placeholder { color: rgba(255,255,255,.55); }
.final__form input:focus { border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.18); }
.final__success { color: #B8E4DE; font-weight: 500; margin-top: 1rem; }
.final__done {
  max-width: 34rem; margin-inline: auto;
  animation: donein .5s var(--ease);
}
.final__done h3 {
  font-family: var(--serif); font-weight: 400; color: #F4F1EA;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: .8rem;
}
.final__done p { color: rgba(244,241,234,.85); margin-bottom: 1.6rem; }
.final__error { color: #FFC9C0; font-weight: 500; margin-top: 1rem; }
@keyframes donein { from { opacity: 0; transform: translateY(12px) scale(.98) } }

/* Honeypot — invisible to humans, tempting to bots */
.hp-field {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; opacity: 0; pointer-events: none;
}
.final__or { margin-block: 1.6rem; color: rgba(244,241,234,.5); font-size: .9rem; font-family: var(--serif); font-style: italic; }
.final__urgency {
  margin-top: 1.4rem; font-size: .95rem; font-weight: 600; color: #B8E4DE;
}
.final__fine { margin-top: 1rem; font-size: .8rem; color: rgba(244,241,234,.55); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: #071F1D; color: #8FA5A1; font-size: .92rem; }
.footer__inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem; padding-block: 4.5rem 3rem;
}
.footer__brand img { margin-bottom: 1.1rem; opacity: .9; filter: brightness(3.4) saturate(.5); }
.footer__brand p { max-width: 16rem; line-height: 1.55; }
.footer__col { display: flex; flex-direction: column; gap: .7rem; }
.footer__col h3 {
  font-size: .76rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: #5E7773; margin-bottom: .4rem;
}
.footer__col a { transition: color .2s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-block: 1.6rem; border-top: 1px solid rgba(255,255,255,.07);
  font-size: .82rem; color: #5E7773;
}
.footer__base a:hover { color: #fff; }
@media (max-width: 760px) { .footer__inner { grid-template-columns: 1fr 1fr; } }

/* ── Modal ──────────────────────────────────────────────────── */
.modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 1.2rem; }
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0; background: rgba(10,32,30,.5);
  backdrop-filter: blur(6px);
  animation: fadein .25s var(--ease);
}
.modal__card {
  position: relative; width: min(430px, 100%);
  max-height: min(88vh, 700px); overflow-y: auto;
  background: var(--card); border-radius: 22px;
  padding: 2.6rem 2.3rem 2rem; text-align: center;
  box-shadow: 0 40px 120px rgba(0,0,0,.35);
  animation: modalin .35s var(--ease);
}
@keyframes fadein { from { opacity: 0 } }
@keyframes modalin { from { opacity: 0; transform: translateY(14px) scale(.97) } }
.modal__card > img { margin: 0 auto 1.2rem; }
.modal__card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.55rem; letter-spacing: -.01em; margin-bottom: .6rem; }
.modal__card > p { color: var(--muted); font-size: .94rem; margin-bottom: 1.6rem; }
.modal__card form { display: flex; flex-direction: column; gap: .7rem; }
.modal__card input {
  padding: .9rem 1.2rem; border-radius: 12px;
  border: 1.5px solid var(--border); font: inherit; font-size: .95rem;
  outline: none; transition: border-color .2s var(--ease);
}
.modal__card input:focus { border-color: var(--teal); }
.modal__close {
  position: absolute; top: 1rem; right: 1.2rem;
  font-size: 1.6rem; color: var(--faint); line-height: 1;
  transition: color .2s var(--ease);
}
.modal__close:hover { color: var(--ink); }
.modal__success { color: var(--teal-text); font-weight: 600; margin-top: 1rem; }
.modal__error { color: #B4443A; font-weight: 500; font-size: .9rem; margin-top: 1rem; }
.modal__fine { margin-top: 1.2rem; font-size: .78rem; color: var(--faint); }
.modal__done { animation: donein .5s var(--ease); }
.modal__done img { margin: 0 auto 1.2rem; }
.modal__done h3 {
  font-family: var(--serif); font-weight: 500; font-size: 1.55rem;
  letter-spacing: -.01em; margin-bottom: .6rem;
}
.modal__done p { color: var(--muted); font-size: .94rem; margin-bottom: 1.6rem; }
.modal__done .btn + .btn { margin-top: .6rem; }
body.modal-open { overflow: hidden; }

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .8s var(--ease) var(--d, 0s), transform .8s var(--ease) var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

.br-desktop { display: none; }
@media (min-width: 700px) { .br-desktop { display: inline; } }

/* ── Small screens: let headlines wrap naturally ────────────── */
@media (max-width: 640px) {
  .hero__title br,
  .section__title br,
  .editorial blockquote br,
  .final__title br { display: none; }
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
  .reveal { opacity: 1; transform: none; }
  .phone--hero { animation: none; }
}
