/* =========================================================================
   VOR Eye Rehab - Landing redesign
   Design system: warm-clinical. Hanken Grotesk + Newsreader.
   ========================================================================= */

/* ---- Tokens ---- */
:root {
  /* Accent (themeable via tweaks) - default cobalt blue */
  --accent:        oklch(0.585 0.19 257);
  --accent-strong: oklch(0.52 0.2 257);
  --accent-ink:    oklch(0.42 0.16 257);
  --accent-soft:   oklch(0.955 0.03 257);
  --accent-soft-2: oklch(0.93 0.045 257);

  /* Secondary calming teal */
  --teal:      oklch(0.7 0.09 205);
  --teal-soft: oklch(0.95 0.03 200);

  /* Ink / neutrals (cool by default) */
  --ink:       oklch(0.27 0.04 262);
  --ink-2:     oklch(0.42 0.028 262);
  --ink-3:     oklch(0.56 0.02 262);
  --line:      oklch(0.92 0.012 262);
  --line-soft: oklch(0.95 0.008 262);

  /* Surfaces */
  --bg:        oklch(0.985 0.006 255);
  --bg-2:      oklch(0.965 0.012 255);
  --surface:   #ffffff;

  /* Warm tone (founder section + warm theme) */
  --sand:      oklch(0.965 0.018 75);
  --sand-2:    oklch(0.93 0.03 70);
  --sand-ink:  oklch(0.42 0.05 60);

  /* Functional (mirror the app) */
  --good:  oklch(0.66 0.13 158);
  --mild:  oklch(0.78 0.13 70);
  --good-soft: oklch(0.95 0.04 158);

  /* Shape & shadow */
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --shadow-sm: 0 1px 2px oklch(0.5 0.05 262 / 0.06), 0 2px 6px oklch(0.5 0.05 262 / 0.05);
  --shadow:    0 4px 12px oklch(0.5 0.05 262 / 0.07), 0 18px 40px oklch(0.45 0.06 262 / 0.08);
  --shadow-lg: 0 8px 24px oklch(0.45 0.06 262 / 0.1), 0 40px 80px oklch(0.4 0.07 262 / 0.13);

  --maxw: 1180px;
  --ff-sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --ff-serif: "Newsreader", Georgia, serif;
}

/* Warm theme variant */
[data-warmth="warm"] {
  --ink:   oklch(0.28 0.035 60);
  --ink-2: oklch(0.43 0.03 60);
  --ink-3: oklch(0.56 0.022 60);
  --line:  oklch(0.91 0.016 70);
  --line-soft: oklch(0.945 0.012 70);
  --bg:    oklch(0.985 0.012 78);
  --bg-2:  oklch(0.965 0.02 75);
}

/* ---- Reset / base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--accent-soft-2); }

h1, h2, h3, h4 { line-height: 1.08; letter-spacing: 0; font-weight: 800; color: var(--ink); text-wrap: balance; }
p { text-wrap: pretty; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
section { position: relative; }

/* ---- Reusable bits ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-ink);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--accent);
}
.eyebrow.center::before { display: none; }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 15px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.pill svg { flex: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px; border-radius: 999px;
  font-size: 16.5px; font-weight: 700; letter-spacing: 0;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 1px 1px oklch(0.4 0.1 257 / .3), 0 10px 24px oklch(0.55 0.19 257 / .28);
}
.btn-primary:hover { background: var(--accent-strong); box-shadow: 0 2px 4px oklch(0.4 0.1 257 / .35), 0 16px 34px oklch(0.55 0.19 257 / .36); transform: translateY(-1px); }
.btn-ghost {
  background: var(--surface); color: var(--ink); border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-ink); }
.btn-lg { padding: 18px 30px; font-size: 17.5px; }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: 46px; margin-top: 16px; }
.section-head p { margin-top: 16px; font-size: 19px; color: var(--ink-2); }

/* App store badges */
.stores { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 20px 11px 17px; border-radius: 14px;
  background: var(--ink); color: #fff;
  transition: transform .15s ease, box-shadow .2s ease;
  box-shadow: var(--shadow-sm);
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.store-badge svg { flex: none; }
.store-badge .sb-small { font-size: 11px; opacity: .8; letter-spacing: .02em; line-height: 1.1; }
.store-badge .sb-big { font-size: 19px; font-weight: 700; letter-spacing: 0; line-height: 1.15; }

/* =========================================================================
   Header
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: oklch(0.99 0.005 255 / 0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 1px 0 var(--line-soft); }
.nav { display: flex; align-items: center; gap: 30px; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; letter-spacing: 0; white-space: nowrap; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; gap: 28px; margin-left: 14px; }
.nav-links a { font-size: 15.5px; font-weight: 600; color: var(--ink-2); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.lang { font-size: 14px; font-weight: 700; color: var(--ink-3); display: flex; gap: 7px; }
.lang .on { color: var(--accent-ink); }
.nav-cta { padding: 11px 20px; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 700; font-size: 15px; white-space: nowrap; box-shadow: 0 8px 18px oklch(0.55 0.19 257 / .25); transition: transform .15s, background .2s; }
.nav-cta:hover { background: var(--accent-strong); transform: translateY(-1px); }
.nav-toggle { display: none; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero { padding: 64px 0 40px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 88% -10%, var(--accent-soft) 0%, transparent 55%),
    radial-gradient(80% 80% at -5% 100%, var(--teal-soft) 0%, transparent 50%),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-copy { max-width: 600px; }
.hero h1 {
  font-size: 62px; line-height: 1.02; margin: 22px 0 0;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .serif { font-family: var(--ff-serif); font-weight: 500; font-style: italic; letter-spacing: 0; }
.hero-sub { font-size: 20px; color: var(--ink-2); margin-top: 22px; max-width: 520px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-stores { margin-top: 26px; }
.hero-micro { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 14.5px; color: var(--ink-3); font-weight: 500; }
.stars { display: inline-flex; gap: 2px; color: var(--mild); }
.hero-micro .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .5; }

/* Phone mockup */
.hero-art { position: relative; display: flex; justify-content: center; align-items: center; }
.phone {
  position: relative; width: 296px; aspect-ratio: 1080 / 2400;
  background: #0f1115; border-radius: 44px; padding: 9px;
  box-shadow: var(--shadow-lg), 0 0 0 1.5px oklch(0.3 0.02 262 / .2) inset;
}
.phone::after { /* speaker notch */
  content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 30%; height: 7px; border-radius: 999px; background: #0f1115; z-index: 3;
}
.phone-screen { width: 100%; height: 100%; border-radius: 36px; overflow: hidden; background: #fff; position: relative; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.float-card {
  position: absolute; background: var(--surface); border-radius: 16px;
  padding: 13px 16px; box-shadow: var(--shadow); border: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 12px; z-index: 4;
}
.float-card .fc-ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.float-card .fc-label { font-size: 12.5px; color: var(--ink-3); font-weight: 600; }
.float-card .fc-value { font-size: 16px; font-weight: 800; color: var(--ink); letter-spacing: 0; }
.float-a { top: 16%; left: -6%; }
.float-b { bottom: 14%; right: -8%; }

/* Centered hero variant */
[data-hero="centered"] .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
[data-hero="centered"] .hero-copy { max-width: 760px; margin-inline: auto; }
[data-hero="centered"] .hero-sub { margin-inline: auto; }
[data-hero="centered"] .hero-trust,
[data-hero="centered"] .hero-cta,
[data-hero="centered"] .stores,
[data-hero="centered"] .hero-micro { justify-content: center; }
[data-hero="centered"] .hero-art { margin-top: 8px; }
[data-hero="centered"] .float-a { left: 4%; }
[data-hero="centered"] .float-b { right: 4%; }

/* =========================================================================
   Marquee trust strip
   ========================================================================= */
.trust-strip { border-block: 1px solid var(--line); background: var(--surface); }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; padding: 22px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 15.5px; font-weight: 600; color: var(--ink-2); }
.trust-item svg { color: var(--good); flex: none; }

/* =========================================================================
   Stats band
   ========================================================================= */
.stats { padding: 70px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 36px 32px; box-shadow: var(--shadow-sm);
}
.stat-card .num { font-size: 60px; font-weight: 800; letter-spacing: 0; color: var(--accent); line-height: 1; }
.stat-card .lab { margin-top: 12px; font-size: 16.5px; color: var(--ink-2); font-weight: 600; }
.stat-card .sub { margin-top: 4px; font-size: 14px; color: var(--ink-3); }

/* =========================================================================
   Founder (warm)
   ========================================================================= */
.founder { background: linear-gradient(180deg, var(--sand) 0%, var(--sand) 100%); padding: 96px 0; }
.founder .wrap { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 60px; align-items: center; }
.founder .eyebrow { color: var(--sand-ink); }
.founder .eyebrow::before { background: var(--sand-ink); }
.founder-quote {
  font-family: var(--ff-serif); font-style: italic; font-weight: 400;
  font-size: 38px; line-height: 1.25; letter-spacing: 0;
  color: oklch(0.3 0.04 60); margin: 18px 0 26px; text-wrap: balance;
}
.founder-body p { color: var(--sand-ink); font-size: 18.5px; margin-top: 16px; }
.founder-sign { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.founder-sign .ava { width: 52px; height: 52px; border-radius: 50%; background: var(--sand-2); display: grid; place-items: center; font-family: var(--ff-serif); font-style: italic; font-size: 24px; color: var(--sand-ink); font-weight: 500; flex: none; }
.founder-sign .who { font-weight: 800; color: oklch(0.3 0.04 60); }
.founder-sign .role { font-size: 14.5px; color: var(--sand-ink); }
.founder-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fstat { background: oklch(0.99 0.01 78); border: 1px solid var(--sand-2); border-radius: var(--r); padding: 26px 24px; }
.fstat .n { font-size: 38px; font-weight: 800; letter-spacing: 0; color: oklch(0.32 0.05 55); line-height: 1; }
.fstat .l { margin-top: 8px; font-size: 14.5px; color: var(--sand-ink); font-weight: 600; }
.fstat.feature { grid-column: span 2; background: oklch(0.3 0.04 60); border-color: transparent; color: #fff; display: flex; align-items: center; gap: 16px; }
.fstat.feature .n { color: #fff; font-size: 30px; }
.fstat.feature .l { color: oklch(0.9 0.02 75); margin: 0; }

/* =========================================================================
   How it works
   ========================================================================= */
.how { padding: 96px 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.step .n {
  width: 46px; height: 46px; border-radius: 13px; background: var(--accent-soft);
  color: var(--accent-ink); display: grid; place-items: center; font-weight: 800; font-size: 20px;
}
.step h3 { font-size: 21px; margin: 22px 0 10px; }
.step p { color: var(--ink-2); font-size: 16.5px; }
.step .tag { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; color: var(--teal); background: var(--teal-soft); padding: 6px 12px; border-radius: 999px; }

/* Timeline */
.timeline { margin-top: 60px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 44px; box-shadow: var(--shadow-sm); }
.timeline h3 { font-size: 24px; margin-bottom: 30px; }
.tl-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.tl-line { position: absolute; top: 27px; left: 8%; right: 8%; height: 3px; background: linear-gradient(90deg, var(--accent-soft-2), var(--accent), var(--good)); border-radius: 3px; z-index: 0; }
.tl-item { position: relative; z-index: 1; padding-right: 18px; }
.tl-dot { width: 54px; height: 54px; border-radius: 50%; background: var(--surface); border: 3px solid var(--accent); color: var(--accent-ink); display: grid; place-items: center; font-weight: 800; font-size: 14px; box-shadow: var(--shadow-sm); }
.tl-item:last-child .tl-dot { border-color: var(--good); color: var(--good); }
.tl-item h4 { font-size: 16.5px; margin: 18px 0 8px; }
.tl-item p { font-size: 14.5px; color: var(--ink-3); line-height: 1.5; }
.tl-note { margin-top: 28px; padding: 16px 20px; background: var(--accent-soft); border-radius: var(--r-sm); font-size: 15px; color: var(--accent-ink); }
.tl-note b { color: var(--accent-strong); }

/* =========================================================================
   Features
   ========================================================================= */
.features { padding: 96px 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.feat-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.feat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.feat:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feat .ico { width: 50px; height: 50px; border-radius: 14px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; margin-bottom: 18px; }
.feat h3 { font-size: 20px; margin-bottom: 10px; letter-spacing: 0; }
.feat p { color: var(--ink-2); font-size: 16px; }
.feat .new { float: right; font-size: 11px; font-weight: 800; letter-spacing: .06em; color: var(--good); background: var(--good-soft); padding: 4px 9px; border-radius: 999px; }
.feat.span-7 { grid-column: span 7; }
.feat.span-5 { grid-column: span 5; }
.feat.span-4 { grid-column: span 4; }
.feat.span-6 { grid-column: span 6; }
.feat.hero-feat { background: linear-gradient(160deg, var(--accent-strong), var(--accent)); color: #fff; border-color: transparent; }
.feat.hero-feat .ico { background: oklch(1 0 0 / .16); color: #fff; }
.feat.hero-feat p { color: oklch(0.95 0.02 257); }
.feat.hero-feat .demo { margin-top: 22px; background: oklch(1 0 0 / .1); border: 1px solid oklch(1 0 0 / .18); border-radius: var(--r); padding: 18px; }
.gauge { height: 10px; border-radius: 999px; background: oklch(1 0 0 / .22); position: relative; overflow: hidden; }
.gauge .zone { position: absolute; top: 0; bottom: 0; left: 38%; width: 28%; background: oklch(0.8 0.16 150); border-radius: 999px; }
.gauge .needle { position: absolute; top: -4px; bottom: -4px; left: 50%; width: 4px; border-radius: 4px; background: #fff; box-shadow: 0 0 0 2px oklch(0.5 0.19 257 / .4); }
.gauge-labels { display: flex; justify-content: space-between; margin-top: 10px; font-size: 12.5px; color: oklch(0.92 0.02 257); font-weight: 600; }

/* Exercise types */
.ex-types { margin-top: 60px; }
.ex-head { text-align: center; margin-bottom: 36px; }
.ex-head h3 { font-size: 28px; }
.ex-head p { color: var(--ink-2); margin-top: 8px; }
.ex-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.ex {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px 18px; text-align: center; box-shadow: var(--shadow-sm);
}
.ex .ex-ico { width: 46px; height: 46px; margin: 0 auto 14px; border-radius: 13px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; }
.ex h4 { font-size: 15.5px; letter-spacing: 0; }
.ex p { font-size: 13px; color: var(--ink-3); margin-top: 6px; line-height: 1.45; }
.ex.more { background: var(--accent-soft); border-style: dashed; border-color: var(--accent-soft-2); display: grid; place-items: center; }
.ex.more .big { font-size: 30px; font-weight: 800; color: var(--accent-ink); letter-spacing: 0; }

/* =========================================================================
   Quiz teaser
   ========================================================================= */
.quiz { padding: 96px 0; }
.quiz-card {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow);
}
.quiz-left { padding: 56px; background: linear-gradient(165deg, var(--accent-soft), var(--surface)); }
.quiz-left h2 { font-size: 40px; margin: 16px 0; }
.quiz-left p { color: var(--ink-2); font-size: 18px; }
.quiz-left .btn { margin-top: 26px; }
.quiz-right { padding: 44px; display: flex; flex-direction: column; justify-content: center; background: var(--bg-2); }
.quiz-prog { display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 700; color: var(--ink-3); margin-bottom: 14px; }
.quiz-bar { height: 7px; border-radius: 999px; background: var(--line); overflow: hidden; }
.quiz-bar > span { display: block; height: 100%; width: 20%; background: var(--accent); border-radius: 999px; transition: width .4s ease; }
.quiz-q { font-size: 22px; font-weight: 800; margin: 22px 0 6px; letter-spacing: 0; }
.quiz-hint { font-size: 14.5px; color: var(--ink-3); margin-bottom: 18px; }
.quiz-opts { display: grid; gap: 10px; }
.qopt {
  display: flex; align-items: center; gap: 13px; text-align: left;
  padding: 15px 18px; border-radius: 14px; border: 1.5px solid var(--line);
  background: var(--surface); font-size: 16px; font-weight: 600; color: var(--ink-2);
  transition: border-color .15s, background .15s, color .15s;
}
.qopt:hover { border-color: var(--accent); }
.qopt .box { width: 22px; height: 22px; border-radius: 7px; border: 2px solid var(--line); flex: none; display: grid; place-items: center; transition: all .15s; }
.qopt.on { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-ink); }
.qopt.on .box { background: var(--accent); border-color: var(--accent); }
.qopt.on .box svg { color: #fff; }
.qopt .box svg { opacity: 0; }
.qopt.on .box svg { opacity: 1; }
.quiz-actions { display: flex; gap: 12px; margin-top: 20px; }
.quiz-actions .btn { flex: 1; }
.quiz-right astro-island { display: block; width: 100%; }

/* =========================================================================
   Clinical
   ========================================================================= */
.clinical { padding: 96px 0; background: var(--ink); color: #fff; }
.clinical .eyebrow { color: oklch(0.8 0.08 205); }
.clinical .eyebrow::before { background: var(--teal); }
.clinical-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.clinical h2 { color: #fff; font-size: 44px; margin: 16px 0 20px; }
.clinical p { color: oklch(0.82 0.02 262); font-size: 18px; }
.clinical .cite { margin-top: 20px; font-size: 14px; color: oklch(0.66 0.02 262); border-left: 2px solid var(--teal); padding-left: 16px; font-style: italic; }
.clinical-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cstat { background: oklch(0.32 0.03 262); border: 1px solid oklch(0.4 0.03 262); border-radius: var(--r-lg); padding: 30px; }
.cstat:first-child { grid-column: span 2; background: linear-gradient(150deg, var(--accent-strong), var(--accent)); border-color: transparent; }
.cstat .n { font-size: 46px; font-weight: 800; letter-spacing: 0; line-height: 1; }
.cstat .l { margin-top: 10px; color: oklch(0.85 0.02 262); font-size: 15.5px; }
.cstat:first-child .l { color: oklch(0.95 0.02 257); }

/* =========================================================================
   Testimonial
   ========================================================================= */
.testi { padding: 90px 0; }
.testi-card { max-width: 880px; margin-inline: auto; text-align: center; }
.testi-stars { color: var(--mild); display: inline-flex; gap: 4px; margin-bottom: 22px; }
.testi-quote { font-family: var(--ff-serif); font-size: 38px; font-style: italic; line-height: 1.3; letter-spacing: 0; color: var(--ink); text-wrap: balance; }
.testi-who { margin-top: 26px; font-weight: 800; }
.testi-role { color: var(--ink-3); font-size: 15px; }

/* =========================================================================
   Therapists (compact)
   ========================================================================= */
.therapists { padding: 90px 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.ther-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ther-heading { font-size: 42px; margin-top: 14px; }
.ther-list { display: grid; gap: 16px; margin-top: 28px; }
.ther-item { display: flex; gap: 14px; align-items: flex-start; }
.ther-item .ti-ico { width: 40px; height: 40px; border-radius: 11px; background: var(--teal-soft); color: var(--teal); display: grid; place-items: center; flex: none; }
.ther-item h4 { font-size: 17px; margin-bottom: 3px; }
.ther-item p { font-size: 15px; color: var(--ink-2); }
.ther-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.ther-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 34px; box-shadow: var(--shadow); }
.ther-panel .tp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.ther-panel .tp-head h4 { font-size: 18px; }
.ther-panel .tp-export { font-size: 13px; font-weight: 700; color: var(--accent-ink); background: var(--accent-soft); padding: 7px 13px; border-radius: 999px; }
.tp-metric { margin-bottom: 18px; }
.tp-metric .tm-top { display: flex; justify-content: space-between; font-size: 14.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.tp-metric .tm-bar { height: 9px; border-radius: 999px; background: var(--bg-2); overflow: hidden; }
.tp-metric .tm-bar > span { display: block; height: 100%; border-radius: 999px; background: var(--accent); }
.tp-activity { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 16px; }
.tp-activity .ta-title { font-size: 13px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.ta-row { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-2); padding: 7px 0; }
.ta-row .ta-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--good); flex: none; }
.ta-row .ta-when { margin-left: auto; font-size: 13px; color: var(--ink-3); }

/* =========================================================================
   Pricing
   ========================================================================= */
.pricing { padding: 96px 0; }
.price-card {
  max-width: 760px; margin-inline: auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.price-top { padding: 44px 48px; text-align: center; background: linear-gradient(165deg, var(--accent-soft), var(--surface)); border-bottom: 1px solid var(--line); }
.price-tag { display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--good); background: var(--good-soft); padding: 6px 14px; border-radius: 999px; }
.price-top h3 { font-size: 30px; margin: 18px 0 6px; }
.price-amt { font-size: 56px; font-weight: 800; letter-spacing: 0; color: var(--accent); }
.price-amt small { font-size: 19px; color: var(--ink-3); font-weight: 600; letter-spacing: 0; }
.price-top .stores { justify-content: center; margin-top: 24px; }
.price-top .micro { margin-top: 14px; font-size: 14px; color: var(--ink-3); }
.price-body { padding: 40px 48px; }
.price-body h4 { font-size: 15px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); margin-bottom: 20px; }
.price-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; }
.pf { display: flex; gap: 12px; align-items: flex-start; }
.pf svg { color: var(--good); flex: none; margin-top: 3px; }
.pf b { font-weight: 700; font-size: 15.5px; }
.pf span { display: block; font-size: 13.5px; color: var(--ink-3); margin-top: 2px; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { padding: 96px 0; background: var(--bg-2); border-top: 1px solid var(--line); }
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow .2s; }
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-weight: 700; font-size: 17.5px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev { width: 30px; height: 30px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; flex: none; transition: transform .25s; }
.faq-item[open] .chev { transform: rotate(45deg); }
.faq-item .ans { padding: 0 26px 24px; color: var(--ink-2); font-size: 16.5px; }

/* =========================================================================
   Final CTA + footer
   ========================================================================= */
.final { padding: 100px 0; }
.final-card {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--accent-strong), var(--accent));
  border-radius: var(--r-xl); padding: 72px 48px; text-align: center; color: #fff;
  box-shadow: var(--shadow-lg);
}
.final-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 90% at 80% -10%, oklch(1 0 0 / .16), transparent 60%); }
.final-card > * { position: relative; }
.final-card h2 { color: #fff; font-size: 48px; }
.final-card p { color: oklch(0.94 0.02 257); font-size: 19px; margin: 18px auto 0; max-width: 560px; }
.final-card .stores { justify-content: center; margin-top: 30px; }
.final-card .store-badge { background: #fff; color: var(--ink); }
.final-micro { margin-top: 18px; font-size: 14.5px; color: oklch(0.92 0.02 257); display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.site-footer { background: var(--ink); color: oklch(0.78 0.02 262); padding: 64px 0 36px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand .brand { color: #fff; }
.foot-brand p { margin: 16px 0 22px; font-size: 15px; max-width: 280px; color: oklch(0.7 0.02 262); }
.foot-col h5 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.foot-col a { display: block; font-size: 15px; padding: 6px 0; color: oklch(0.78 0.02 262); transition: color .15s; }
.foot-col a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid oklch(0.34 0.02 262); margin-top: 48px; padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; color: oklch(0.64 0.02 262); }
.foot-disclaimer { font-size: 13px; }

/* =========================================================================
   Reveal on scroll
   ========================================================================= */
.reveal { opacity: 1; transform: none; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
  .feat.span-7, .feat.span-5, .feat.span-4, .feat.span-6 { grid-column: span 6; }
  .ex-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  body { font-size: 17px; }
  .nav-links, .lang { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line); margin-left: auto; }
  .site-header.menu-open .nav { position: relative; }
  .site-header.menu-open .nav-links {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 2px;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--shadow);
  }
  .site-header.menu-open .nav-links a {
    padding: 12px 14px;
    border-radius: 12px;
  }
  .site-header.menu-open .nav-links a:hover {
    background: var(--accent-soft);
  }
  .nav-right { margin-left: 0; }
  .hero h1 { font-size: 46px; }
  .section-head h2, .clinical h2, .ther-heading { font-size: 38px; }
  .stat-card .num, .price-amt { font-size: 52px; }
  .founder-quote, .testi-quote { font-size: 32px; }
  .quiz-left h2 { font-size: 34px; }
  .final-card h2 { font-size: 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { order: -1; }
  .founder .wrap, .clinical-grid, .ther-grid, .quiz-card { grid-template-columns: 1fr; }
  .quiz-card { gap: 0; }
  .stat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .tl-row { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .tl-line { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat.span-7, .feat.span-5, .feat.span-4, .feat.span-6 { grid-column: span 1; }
  .price-feats { grid-template-columns: 1fr; }
  .clinical-stats, .founder-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .wrap { padding-inline: 20px; }
  .nav { gap: 10px; }
  .brand { gap: 8px; font-size: 17px; }
  .brand img { width: 30px; height: 30px; }
  .nav-right { gap: 8px; }
  .nav-cta { padding: 10px 14px; font-size: 14px; }
  .nav-toggle { width: 40px; height: 40px; }
  .hero h1 { font-size: 38px; }
  .section-head h2, .clinical h2, .ther-heading { font-size: 32px; }
  .stat-card .num, .price-amt { font-size: 44px; }
  .founder-quote, .testi-quote { font-size: 28px; }
  .quiz-left h2, .final-card h2 { font-size: 30px; }
  .quiz-left, .quiz-right, .price-top, .price-body, .final-card { padding-left: 24px; padding-right: 24px; }
  .ex-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr; }
  .timeline { padding: 26px; }
  .float-card { display: none; }
}
@media (max-width: 380px) {
  .brand span { display: none; }
  .nav { justify-content: space-between; }
}
