/* ==========================================================================
   Whisperer — landing site styles
   Identity: calm, legible, native. The page uses the app's own design system:
   graphite ground, Whisper Violet as the one committed chroma, and Amber
   strictly reserved for the LIVE dictation moments (waveform, recording dot) —
   the same two-accent discipline the app itself ships with.
   Type: the system stack (SF Pro on Apple devices — the app's own face) for
   UI/display, and the system mono stack for transcripts, hotkeys and metadata.
   ========================================================================== */

:root {
  /* Ground — graphite, tinted a breath toward the brand violet. */
  --bg: oklch(0.16 0.012 290);
  --bg-2: oklch(0.185 0.014 290);
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.075);
  --border: rgba(255, 255, 255, 0.10);
  --border-soft: rgba(255, 255, 255, 0.06);

  /* Ink */
  --ink: #f4f3f8;
  --ink-2: #c0bdcd;
  --ink-3: #9a96aa;

  /* Whisper Violet — the one committed chroma (from the app's Theme.swift). */
  --violet: #9784f0;
  --violet-deep: #6b57d6;
  --violet-ink: #cfc4ff;
  --violet-soft: rgba(151, 132, 240, 0.14);

  /* Amber Signal — LIVE ONLY (recording dot, waveform, listening states). */
  --amber: #f5b947;
  --amber-soft: rgba(245, 185, 71, 0.14);

  --green: #4fd487;
  --red: #f06d6d;

  /* Type */
  --font-ui: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Inter, Roboto, sans-serif;
  --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, "JetBrains Mono", Consolas, monospace;

  /* Spacing / radius / motion */
  --s1: 0.25rem; --s2: 0.5rem; --s3: 0.75rem; --s4: 1rem; --s6: 1.5rem;
  --s8: 2rem; --s12: 3rem; --s16: 4rem; --s24: 6rem;
  --r-sm: 10px; --r-md: 16px; --r-lg: 22px; --r-xl: 30px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Z scale */
  --z-nav: 100; --z-menu: 110;

  --container: 1160px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; text-wrap: balance; line-height: 1.12; letter-spacing: -0.022em; font-weight: 700; }
p { margin: 0; text-wrap: pretty; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--violet-deep); color: #fff; padding: 0.6rem 1rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

::selection { background: rgba(151, 132, 240, 0.35); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.62rem 1.15rem;
  border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.35s var(--ease-out), background 0.25s ease, border-color 0.25s ease, box-shadow 0.35s var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn--primary {
  background: linear-gradient(180deg, var(--violet), var(--violet-deep));
  color: #fff;
  box-shadow: 0 6px 24px -8px rgba(107, 87, 214, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 32px -8px rgba(107, 87, 214, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.22); }
.btn--ghost {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--surface-2); border-color: rgba(255, 255, 255, 0.18); }
.btn--lg { padding: 0.8rem 1.5rem; font-size: 1.02rem; }
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 2px solid var(--violet); outline-offset: 3px; border-radius: 6px;
}
.btn:focus-visible { border-radius: 999px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: var(--z-nav);
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  -webkit-backdrop-filter: saturate(1.4) blur(18px);
  backdrop-filter: saturate(1.4) blur(18px);
  border-bottom-color: var(--border-soft);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s6); height: 64px; }
.brand {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 700; font-size: 1.08rem; letter-spacing: -0.01em; text-decoration: none;
}
.brand img { width: 28px; height: 28px; border-radius: 7px; }
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a {
  text-decoration: none; font-size: 0.93rem; font-weight: 500; color: var(--ink-2);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__right { display: flex; align-items: center; gap: var(--s3); }

.nav__toggle { display: none; width: 40px; height: 40px; position: relative; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 10px; width: 20px; height: 2px; border-radius: 2px;
  background: var(--ink); transition: transform 0.3s var(--ease-out), top 0.3s var(--ease-out), opacity 0.2s;
}
.nav__toggle span { top: 19px; }
.nav__toggle span::before { left: 0; top: -6px; }
.nav__toggle span::after { left: 0; top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.nav__menu {
  display: none; flex-direction: column; gap: var(--s2);
  padding: var(--s3) var(--gutter) var(--s6);
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
}
.nav__menu a { text-decoration: none; padding: 0.55rem 0; font-weight: 500; color: var(--ink-2); }
.nav__menu .btn { justify-content: center; margin-top: var(--s2); color: #fff; }
.nav__menu.is-open { display: flex; }

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__right .btn { display: none; }
  .nav__toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(64px + clamp(3.5rem, 9vh, 6.5rem)) 0 clamp(3rem, 7vw, 5.5rem); }
.glowfield { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.glowfield::before, .glowfield::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5;
}
.glowfield::before {
  width: 640px; height: 640px; top: -280px; right: -140px;
  background: radial-gradient(circle, rgba(107, 87, 214, 0.5), transparent 65%);
}
.glowfield::after {
  width: 520px; height: 520px; bottom: -300px; left: -160px;
  background: radial-gradient(circle, rgba(151, 132, 240, 0.28), transparent 65%);
}
.hero__inner {
  display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative;
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.8rem; color: var(--violet-ink);
  border: 1px solid rgba(151, 132, 240, 0.35); background: var(--violet-soft);
  padding: 0.3rem 0.75rem; border-radius: 999px;
  margin-bottom: var(--s6);
}
.hero__kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.hero__title {
  font-size: clamp(2.7rem, 6.4vw, 4.7rem);
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.hero__title .quiet { color: var(--ink-3); }
.hero__sub {
  margin-top: var(--s6); font-size: 1.16rem; color: var(--ink-2); max-width: 34rem;
}
.hero__sub strong { color: var(--ink); font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s8); }
.hero__note {
  margin-top: var(--s6); font-size: 0.88rem; color: var(--ink-3);
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 0;
}
.hero__note .sep { display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: var(--ink-3); margin-inline: 0.65rem; }

/* Hero stage: a document window with words landing + the live HUD */
.stage { position: relative; padding: var(--s6) 0 var(--s12); }
.docwin {
  background: linear-gradient(180deg, #201f28, #1a1922);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 40px 80px -32px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.docwin__bar {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.65rem 0.9rem; border-bottom: 1px solid var(--border-soft);
}
.docwin__bar i { width: 11px; height: 11px; border-radius: 50%; background: #3a3944; }
.docwin__bar i:nth-child(1) { background: #f06d6d; } .docwin__bar i:nth-child(2) { background: #f5b947; } .docwin__bar i:nth-child(3) { background: #4fd487; }
.docwin__bar span { margin-inline: auto; transform: translateX(-18px); font-size: 0.78rem; color: var(--ink-3); }
.docwin__body { padding: 1.3rem 1.4rem 3.6rem; min-height: 200px; }
.docwin__meta { font-size: 0.85rem; color: var(--ink-3); display: grid; gap: 0.25rem; margin-bottom: 1rem; }
.docwin__meta b { color: var(--ink-2); font-weight: 500; }
.docwin__text { font-size: 1.02rem; line-height: 1.65; color: var(--ink); min-height: 84px; }
.caret {
  display: inline-block; width: 2px; height: 1.15em; margin-left: 1px;
  background: var(--violet); vertical-align: text-bottom;
  animation: caretblink 1.05s steps(1) infinite;
}
@keyframes caretblink { 50% { opacity: 0; } }

/* The HUD — recreated live, matching the shipped panel */
.hud {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: min(430px, 92%);
  background: rgba(38, 36, 46, 0.92);
  -webkit-backdrop-filter: blur(26px) saturate(1.3); backdrop-filter: blur(26px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1rem 0.95rem;
}
.hud__row { display: flex; align-items: center; gap: 0.6rem; }
.hud__live { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; font-size: 0.92rem; color: var(--amber); }
.hud__live .rec { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); animation: pulse 1.6s var(--ease-out) infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.8); } }
.hud__timer { margin-left: auto; font-family: var(--font-mono); font-size: 0.82rem; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.hud__chip {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-2);
  border: 1px solid var(--border); border-radius: 999px; padding: 0.1rem 0.5rem;
}
.hud__btn { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.hud__btn--stop { background: var(--violet-deep); }
.hud__btn--stop i { width: 9px; height: 9px; border-radius: 2px; background: #fff; display: block; }
.hud__btn--cancel { border: 1px solid rgba(240, 109, 109, 0.5); }
.hud__btn--cancel i { position: relative; width: 10px; height: 10px; display: block; }
.hud__btn--cancel i::before, .hud__btn--cancel i::after {
  content: ""; position: absolute; inset: 4px -1px; height: 1.6px; border-radius: 2px; background: var(--red);
}
.hud__btn--cancel i::before { transform: rotate(45deg); } .hud__btn--cancel i::after { transform: rotate(-45deg); }
.hud__wave { display: flex; align-items: center; gap: 2.5px; height: 30px; margin-top: 0.7rem; }
.hud__wave i {
  flex: 1; min-width: 2.5px; border-radius: 2px; background: var(--amber);
  height: 22%;
  animation: wave 1.15s ease-in-out infinite alternate;
  animation-delay: calc(var(--d) * -0.09s);
  transform-origin: center;
}
@keyframes wave { from { transform: scaleY(0.25); } to { transform: scaleY(1); } }
.hud__text {
  margin-top: 0.55rem; font-family: var(--font-mono); font-size: 0.86rem; line-height: 1.5;
  color: var(--ink-2); min-height: 2.6em;
}

@media (prefers-reduced-motion: reduce) {
  .hud__wave i { animation: none; height: 55%; }
  .hud__live .rec { animation: none; }
  .caret { animation: none; }
}

@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; }
  .stage { max-width: 560px; margin-inline: auto; width: 100%; }
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--border-soft); padding: 0.8rem 0; background: var(--bg-2); }
.marquee__track { display: flex; gap: 2.6rem; width: max-content; animation: marquee 36s linear infinite; }
.marquee span {
  font-family: var(--font-mono); font-size: 0.82rem; color: var(--ink-3); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 2.6rem;
}
.marquee span::after { content: "·"; color: var(--violet); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; width: auto; } }

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section--tight { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); letter-spacing: -0.025em; }
.lead { margin-top: var(--s4); font-size: 1.1rem; color: var(--ink-2); }

/* Reveal on scroll */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); counter-reset: step; }
.step { position: relative; padding: var(--s6) var(--s6) var(--s8); background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--r-lg); }
.step h3 { font-size: 1.18rem; margin-top: var(--s3); }
.step p { margin-top: var(--s3); color: var(--ink-2); font-size: 0.98rem; }
.step .key {
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--ink);
  background: var(--surface-2); border: 1px solid var(--border);
  border-bottom-width: 2px; border-radius: 7px; padding: 0.18rem 0.55rem;
}
.step__glyph { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--violet-soft); color: var(--violet-ink); }
.step__glyph svg { width: 21px; height: 21px; }
.step__glyph--live { background: var(--amber-soft); color: var(--amber); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Comparison ---------- */
.compare-wrap { overflow-x: auto; border: 1px solid var(--border-soft); border-radius: var(--r-lg); background: var(--surface); }
.compare { width: 100%; border-collapse: collapse; min-width: 660px; }
.compare th, .compare td { padding: 1rem 1.2rem; text-align: left; vertical-align: top; font-size: 0.96rem; }
.compare thead th { font-size: 0.9rem; color: var(--ink-3); font-weight: 600; border-bottom: 1px solid var(--border); }
.compare tbody td { border-bottom: 1px solid var(--border-soft); color: var(--ink-2); }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody td:first-child { color: var(--ink); font-weight: 600; width: 24%; }
.compare .col-w { background: rgba(151, 132, 240, 0.07); color: var(--ink); }
.compare thead .col-w { color: var(--violet-ink); }
.compare .ok { display: inline-flex; width: 18px; height: 18px; border-radius: 50%; background: rgba(79, 212, 135, 0.18); color: var(--green); align-items: center; justify-content: center; margin-right: 0.5rem; vertical-align: -3px; }
.compare .ok svg { width: 11px; height: 11px; }

/* ---------- Shots ---------- */
.shots { display: grid; gap: var(--s6); }
.shot { margin: 0; }
.shot img {
  width: 100%; border-radius: var(--r-md); border: 1px solid var(--border);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.65);
  display: block;
}
.shot figcaption { margin-top: var(--s3); font-size: 0.88rem; color: var(--ink-3); text-align: center; }
.shots__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); }
@media (max-width: 760px) { .shots__row { grid-template-columns: 1fr; } }

/* ---------- Features bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--s4); }
.card {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--r-lg);
  padding: var(--s6);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.card:hover { border-color: rgba(151, 132, 240, 0.35); background: var(--surface-2); }
.feature { grid-column: span 2; display: flex; flex-direction: column; gap: var(--s3); }
.feature--wide { grid-column: span 4; }
.feature--tall { grid-column: span 2; grid-row: span 2; }
.feature h3 { font-size: 1.12rem; letter-spacing: -0.015em; }
.feature p { color: var(--ink-2); font-size: 0.95rem; }
.feature__icon {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--violet-soft); color: var(--violet-ink);
}
.feature__icon svg { width: 19px; height: 19px; }
.feature__media { margin: calc(var(--s6) * -1) calc(var(--s6) * -1) var(--s2); border-radius: var(--r-lg) var(--r-lg) 0 0; overflow: hidden; border-bottom: 1px solid var(--border-soft); background: #17161d; }
.feature__media img { display: block; width: 100%; }
.langlist { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: var(--s2); }
.langlist span {
  font-size: 0.85rem; color: var(--ink-2);
  border: 1px solid var(--border-soft); background: var(--surface);
  padding: 0.22rem 0.6rem; border-radius: 999px; white-space: nowrap;
}
@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .feature, .feature--wide, .feature--tall { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .feature, .feature--wide, .feature--tall { grid-column: auto; }
}

/* ---------- Privacy ---------- */
.privacy { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.privacy__list { display: grid; gap: var(--s4); margin-top: var(--s8); }
.privacy__item { display: flex; gap: var(--s4); align-items: flex-start; }
.privacy__item .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(79, 212, 135, 0.14); color: var(--green); margin-top: 2px;
}
.privacy__item .tick svg { width: 13px; height: 13px; }
.privacy__item p { color: var(--ink-2); font-size: 0.97rem; }
.privacy__item strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: 2px; }

/* Pipeline diagram: mic → Neural Engine → document */
.pipeline {
  display: grid; gap: var(--s4); padding: var(--s8) var(--s6);
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--r-xl);
}
.pipeline__row { display: flex; align-items: center; justify-content: space-between; gap: var(--s2); }
.pipeline__node { display: grid; justify-items: center; gap: 0.55rem; text-align: center; min-width: 0; }
.pipeline__node .bubble {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--ink-2);
}
.pipeline__node .bubble svg { width: 25px; height: 25px; }
.pipeline__node .bubble--ane { background: var(--violet-soft); border-color: rgba(151, 132, 240, 0.4); color: var(--violet-ink); }
.pipeline__node small { font-size: 0.8rem; color: var(--ink-3); line-height: 1.35; }
.pipeline__arrow { flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--border), var(--border) 6px, transparent 6px, transparent 12px); position: relative; min-width: 24px; }
.pipeline__cap {
  text-align: center; font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-3);
  border-top: 1px dashed var(--border); padding-top: var(--s4);
}
.pipeline__cap b { color: var(--green); font-weight: 600; }

@media (max-width: 900px) { .privacy { grid-template-columns: 1fr; } }

/* ---------- Languages band ---------- */
.langband { text-align: center; }
.greetings { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.6rem; margin-top: var(--s8); }
.greetings span { font-size: clamp(1.15rem, 2.6vw, 1.7rem); font-weight: 600; letter-spacing: -0.01em; color: var(--ink-2); }
.greetings span:nth-child(odd) { color: var(--ink-3); }
.greetings .hi { color: var(--violet-ink); }
.langband .note { margin-top: var(--s6); color: var(--ink-3); font-size: 0.95rem; }

/* ---------- Download card ---------- */
.getcard {
  text-align: center; padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: var(--r-xl);
  background:
    radial-gradient(80% 130% at 50% -20%, rgba(107, 87, 214, 0.28), transparent 60%),
    var(--surface);
  border: 1px solid rgba(151, 132, 240, 0.25);
  display: grid; justify-items: center; gap: var(--s6);
}
.getcard .price { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 700; letter-spacing: -0.03em; }
.getcard .price small { display: block; font-size: 1rem; font-weight: 500; color: var(--ink-2); letter-spacing: 0; margin-top: 0.4rem; }
.getlist { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; justify-items: start; }
.getlist li { display: flex; align-items: center; gap: 0.6rem; color: var(--ink-2); font-size: 0.98rem; }
.getlist svg { width: 15px; height: 15px; color: var(--green); flex: none; }
.getcard .fineprint { font-size: 0.85rem; color: var(--ink-3); max-width: 40ch; }
.getcard .fineprint a { color: var(--ink-2); }

/* ---------- FAQ ---------- */
.faq { max-width: 46rem; margin-inline: auto; display: grid; gap: var(--s3); }
.faq__item { border: 1px solid var(--border-soft); border-radius: var(--r-md); background: var(--surface); overflow: hidden; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  padding: 1.05rem 1.25rem; text-align: left; font-weight: 600; font-size: 1rem;
}
.faq__q .pm { position: relative; flex: none; width: 16px; height: 16px; }
.faq__q .pm::before, .faq__q .pm::after {
  content: ""; position: absolute; background: var(--ink-3); border-radius: 2px;
  transition: transform 0.3s var(--ease-out);
}
.faq__q .pm::before { inset: 7px 0; }
.faq__q .pm::after { inset: 0 7px; }
.faq__q[aria-expanded="true"] .pm::after { transform: scaleY(0); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease-out); }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 1.25rem 1.15rem; color: var(--ink-2); font-size: 0.97rem; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
@media (prefers-reduced-motion: reduce) { .faq__a { transition: none; } }

/* ---------- Final CTA ---------- */
.finalcta {
  position: relative; text-align: center; padding: clamp(3.5rem, 8vw, 6rem) var(--s6);
  border-radius: var(--r-xl); overflow: hidden;
  background:
    radial-gradient(70% 110% at 50% 115%, rgba(107, 87, 214, 0.35), transparent 65%),
    var(--bg-2);
  border: 1px solid var(--border-soft);
}
.finalcta h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); letter-spacing: -0.028em; }
.finalcta .lead { max-width: 38rem; margin-inline: auto; }
.finalcta .hero__cta { justify-content: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border-soft); padding: var(--s16) 0 var(--s8); background: var(--bg-2); }
.footer__top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: var(--s8); }
.footer__brand p { margin-top: var(--s4); color: var(--ink-3); font-size: 0.92rem; max-width: 30rem; }
.footer__col { display: grid; gap: 0.55rem; align-content: start; }
.footer__col h4 { font-size: 0.85rem; color: var(--ink-3); font-weight: 600; margin-bottom: 0.3rem; }
.footer__col a { text-decoration: none; color: var(--ink-2); font-size: 0.93rem; }
.footer__col a:hover { color: var(--ink); }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s3);
  margin-top: var(--s12); padding-top: var(--s6); border-top: 1px solid var(--border-soft);
  font-size: 0.85rem; color: var(--ink-3);
}
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr 1fr; } }

/* ---------- Legal pages ---------- */
.legal { max-width: 44rem; margin-inline: auto; padding: calc(64px + var(--s12)) var(--gutter) var(--s24); }
.legal h1 { font-size: 2.1rem; margin-bottom: var(--s6); }
.legal h2 { font-size: 1.25rem; margin: var(--s8) 0 var(--s3); }
.legal p, .legal li { color: var(--ink-2); font-size: 0.99rem; }
.legal ul { padding-left: 1.2rem; display: grid; gap: 0.5rem; }
