/* ==========================================================================
   WealthS marketing — components.css
   Buttons, nav, cards, badges, device frames, footer, FAQ, screens.
   ========================================================================== */

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 13px 20px; border-radius: var(--radius-md);
  transition: transform var(--motion-fast) var(--ease),
              box-shadow var(--motion-base) var(--ease),
              background var(--motion-base) var(--ease),
              border-color var(--motion-base) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-low); }
.btn--primary:hover { box-shadow: var(--shadow-mid); transform: translateY(-2px); }
.btn--grad { background: var(--grad-emerald); color: #fff; box-shadow: 0 8px 24px rgba(4,120,87,.32); }
.btn--grad:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(4,120,87,.42); }
.btn--ghost { border: 1px solid var(--rule); color: var(--ink); background: var(--surface); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--lg { padding: 16px 26px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--on-grad { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn--on-grad:hover { background: rgba(255,255,255,.26); transform: translateY(-2px); }
.btn--white { background: #fff; color: #111; }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-mid); }

/* ---- Store badges (degrade to "coming soon") ---- */
.badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px; border-radius: var(--radius-md);
  background: var(--ink); color: #fff; min-width: 158px;
  transition: transform var(--motion-fast) var(--ease), opacity var(--motion-base) var(--ease);
}
[data-theme="dark"] .store-badge,
:root:not([data-theme="light"]) .store-badge { background: #fff; color: #0B0D10; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .store-badge { background:#fff; color:#0B0D10; } }
.store-badge:hover { transform: translateY(-2px); }
.store-badge svg { width: 22px; height: 22px; flex: none; }
.store-badge .sb-top { font-size: 10px; opacity: .72; line-height: 1; letter-spacing: .3px; }
.store-badge .sb-main { font-size: 15px; font-weight: 600; line-height: 1.15; }
.store-badge[aria-disabled="true"] { opacity: .55; }
.store-badge .sb-soon {
  margin-left: auto; font-size: 9px; font-weight: 700; letter-spacing: .5px;
  background: var(--gold); color: #3a2c00; padding: 2px 6px; border-radius: var(--radius-pill);
}

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(12px);
  background: color-mix(in srgb, var(--canvas) 80%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color var(--motion-base) var(--ease), background var(--motion-base) var(--ease),
              box-shadow var(--motion-base) var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--rule); box-shadow: var(--shadow-low); }
.nav__inner { display: flex; align-items: center; gap: 18px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.3px; font-size: 18px; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a {
  padding: 8px 12px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; color: var(--ink-muted);
  transition: color var(--motion-fast) var(--ease), background var(--motion-fast) var(--ease);
}
.nav__links a:hover { color: var(--ink); background: var(--surface-elevated); }
/* Specificity override: `.nav__links a` (0,1,1) was beating `.btn--primary`
   (0,1,0) and recolouring the in-menu CTA to ink-muted — washing the text
   out on dark mode's bright accent. Pin button label to accent-ink. */
.nav__links a.btn { color: var(--accent-ink); }
.nav__links a.btn:hover { color: var(--accent-ink); background: var(--accent); }
.nav__links a.btn--grad { color: #fff; }
.nav__links a.btn--grad:hover { color: #fff; background: var(--grad-emerald); }
/* The in-menu CTA also rendered DUPLICATE alongside `.nav__cta-desktop` on
   desktop. Hide it by default; mobile media query below re-shows it. */
.nav__links a.btn { display: none; }
.nav__actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); color: var(--ink-muted); border: 1px solid var(--rule); background: var(--surface);
  transition: color var(--motion-fast) var(--ease), border-color var(--motion-fast) var(--ease);
}
.icon-btn:hover { color: var(--accent); border-color: var(--accent); }
.icon-btn svg { width: 18px; height: 18px; }
.theme-toggle .moon { display: none; }
[data-theme="dark"] .theme-toggle .sun, :root:not([data-theme="light"]) .theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .moon, :root:not([data-theme="light"]) .theme-toggle .moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .sun { display:none; }
  :root:not([data-theme="light"]) .theme-toggle .moon { display:block; }
}
.nav__burger { display: none; }

@media (max-width: 860px) {
  .nav__links { position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--rule); padding: 8px 16px 16px; margin: 0;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform var(--motion-base) var(--ease), opacity var(--motion-base) var(--ease); }
  .nav__links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 14px 8px; font-size: 16px; border-bottom: 1px solid var(--rule); border-radius: 0; }
  /* Mobile: re-show the in-menu CTA the desktop rule hid. */
  .nav__links a.btn { display: inline-flex; margin-top: 12px; border-bottom: none; }
  .nav__burger { display: inline-flex; }
  .nav__cta-desktop { display: none; }
}

/* ---- Cards ---- */
.card {
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform var(--motion-base) var(--ease), box-shadow var(--motion-base) var(--ease), border-color var(--motion-base) var(--ease);
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-mid); border-color: color-mix(in srgb, var(--accent) 35%, var(--rule)); }
.card__icon {
  width: 46px; height: 46px; border-radius: var(--radius-md); display: grid; place-items: center;
  font-size: 22px; background: var(--accent-soft); border: 1px solid var(--accent-soft-border); margin-bottom: 14px;
}
.card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; letter-spacing: -.2px; }
.card p { font-size: 14px; color: var(--ink-muted); line-height: 1.55; }

.grid { display: grid; gap: 16px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.split-2--media-first .media { order: -1; }
@media (max-width: 860px) { .split-2 { grid-template-columns: 1fr; }
  .split-2--media-first .media { order: 0; } }

/* ---- Pills / chips ---- */
.chip {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600;
  padding: 5px 11px; border-radius: var(--radius-pill); background: var(--surface-elevated);
  border: 1px solid var(--rule); color: var(--ink-muted);
}
.chip--pos { background: var(--positive-soft); color: var(--positive); border-color: transparent; }
.chip--accent { background: var(--accent-soft); color: var(--accent); border-color: var(--accent-soft-border); }

/* ---- Stat band ---- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.statband .stat { text-align: center; padding: 18px 10px; }
.statband .num { font-size: clamp(26px, 4vw, 40px); font-weight: 700; letter-spacing: -1px; color: var(--ink); }
.statband .lbl { font-size: 13px; color: var(--ink-muted); margin-top: 4px; }
@media (max-width: 680px) { .statband { grid-template-columns: repeat(2, 1fr); } }

/* ---- Device / phone frame ---- */
.phone {
  width: 300px; max-width: 84vw; aspect-ratio: 300 / 620;
  border-radius: 44px; padding: 12px;
  background: linear-gradient(160deg, #20242b, #0b0d10);
  box-shadow: var(--shadow-high), inset 0 0 0 2px rgba(255,255,255,.06);
  position: relative;
}
.phone::before { /* notch */
  content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 22px; background: #0b0d10; border-radius: var(--radius-pill); z-index: 3;
}
.phone__screen {
  width: 100%; height: 100%; border-radius: 33px; overflow: hidden;
  background: var(--canvas); position: relative; isolation: isolate;
}
.media { display: grid; place-items: center; }

/* ---- App screen recreation (shared by hero + sections) ---- */
.scr { position: absolute; inset: 0; display: flex; flex-direction: column; padding: 34px 16px 16px; gap: 12px; overflow: hidden; }
.scr__top { display: flex; align-items: center; gap: 8px; }
.scr__top img { width: 22px; height: 22px; border-radius: 6px; }
.scr__top .nm { font-weight: 700; font-size: 13px; }
.scr__top .sp { margin-left: auto; width: 28px; height: 28px; border-radius: 50%; background: var(--surface-elevated); }
.scr__hero {
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: 14px; text-align: center;
}
.scr__hero .ov { font-size: 9px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink-subtle); font-weight: 700; }
.scr__hero .amt { font-size: 26px; font-weight: 700; letter-spacing: -1px; margin-top: 3px; }
.scr__hero .amt small { font-size: 14px; color: var(--ink-muted); font-weight: 600; }
.scr__hero .delta { display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; font-size: 10px; font-weight: 600;
  color: var(--positive); background: var(--positive-soft); padding: 2px 8px; border-radius: var(--radius-pill); }
.scr__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.scr__mini { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 10px; }
.scr__mini.top-pos { border-top: 2px solid var(--positive); }
.scr__mini.top-neg { border-top: 2px solid var(--negative); }
.scr__mini .k { font-size: 8px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-subtle); font-weight: 700; }
.scr__mini .v { font-size: 14px; font-weight: 700; margin-top: 3px; }
.scr__rows { display: flex; flex-direction: column; gap: 7px; }
.scr__row { display: flex; align-items: center; gap: 9px; background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--radius-md); padding: 9px 10px; }
.scr__row .stripe { width: 4px; align-self: stretch; border-radius: 3px; }
.scr__row .ic { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; font-size: 13px; background: var(--surface-elevated); }
.scr__row .tx { display: flex; flex-direction: column; }
.scr__row .tx b { font-size: 11px; font-weight: 600; }
.scr__row .tx span { font-size: 9px; color: var(--ink-subtle); }
.scr__row .val { margin-left: auto; font-size: 11px; font-weight: 700; }
.scr__bar { /* tab bar */ margin-top: auto; display: flex; justify-content: space-around; align-items: center;
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 8px 6px; }
.scr__bar i { width: 16px; height: 16px; border-radius: 5px; background: var(--surface-elevated); display: block; }
.scr__bar i.active { background: var(--accent); }

/* ---- Hero left column centered alignment ---- */
/* Apply by adding `.hero-text` to the inner stack; centers eyebrow, headline,
   rotator, tagline-sub, CTA row, and trust pills horizontally. */
.hero-text { text-align: center; align-items: center; }
.hero-text .eyebrow { align-self: center; }
.hero-text .display { max-width: 22ch; margin-inline: auto; }
.hero-text .hero-cta-row { width: 100%; max-width: 560px; margin-inline: auto; }
.hero-text .trust-seals { width: 100%; max-width: 620px; margin-inline: auto; }

/* ---- Hero vertical rhythm overrides ----
   The `.stack > * + *` rule gives every sibling the same 16px top margin.
   The hero needs three custom gaps to read correctly:
   - bigger breathing space AFTER the rotator (so the typewriter text isn't
     glued to the CTA row);
   - bigger gap between the CTA row and the Offline-first tagline (so the
     tagline sits visibly after the install path, not inside it);
   - TIGHT gap between Offline-first and the trust badges so they read as
     one privacy group, not two separate blocks. */
.hero-text .hero-rotator + .hero-cta-row       { margin-top: 36px; }
.hero-text .hero-cta-row + .hero-tagline-sub   { margin-top: 28px; }
.hero-text .hero-tagline-sub + .trust-seals    { margin-top: 6px; }

/* Hero headline uses the default `.display` style (3 lines: Your entire / net
   worth, / in one private app.) — no per-word overrides. */

/* ---- Hero rotator: animated text that swaps in sync with phone deck ---- */
/* Each .hero-rotator__item is absolutely positioned; only the .is-active one
   is visible. Heights derived from the font-size below to keep layout stable
   even though items vary in length. */
.hero-rotator {
  position: relative; width: 100%; max-width: 540px; margin-inline: auto;
  min-height: 3em; display: block; padding-block: 6px;
}
.hero-rotator__item {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 480ms var(--ease), transform 480ms var(--ease);
  text-align: center;
}
.hero-rotator__item.is-active { opacity: 1; transform: none; }
.hero-rotator__lead {
  font-size: 13px; letter-spacing: .25px; color: var(--ink-muted); font-weight: 500;
}
.hero-rotator__word {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700; letter-spacing: -.4px; line-height: 1.2;
  background: var(--grad-emerald); -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* Splits screen swaps the gradient under the rotator to violet/lime
   while it's the active screen. */
.hero-rotator[data-current="splits"] .hero-rotator__word { background: var(--grad-splits); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Typewriter caret — blinking pipe at the end of the word while typing.
   The pipe inherits currentColor so it picks up the gradient on Splits too
   (color: transparent on a gradient-clipped span hides it though, so we
   render the caret on a sibling pseudo using the accent fallback). */
.hero-rotator__word.is-typing {
  position: relative; padding-right: 0.08em;
}
.hero-rotator__word.is-typing::after {
  content: '|';
  display: inline-block;
  margin-left: 0.04em;
  /* The .hero-rotator__word text uses background-clip:text + color:transparent.
     That makes ::after content invisible too. Force a fallback color so the
     caret stays solid. */
  -webkit-text-fill-color: var(--accent);
  color: var(--accent);
  font-weight: 700;
  animation: caretBlink 1s steps(2, end) infinite;
}
.hero-rotator[data-current="splits"] .hero-rotator__word.is-typing::after {
  -webkit-text-fill-color: var(--splits-accent, #6E45E2);
  color: var(--splits-accent, #6E45E2);
}
@keyframes caretBlink {
  0%, 49%   { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* Centered subtitle line below the rotator */
.hero-tagline-sub {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--ink-muted); text-align: center;
  letter-spacing: .1px; margin-top: 4px;
}
.hero-tagline-sub strong { color: var(--ink); font-weight: 700; }

/* ---- Hero CTA row: 3 equal-sized buttons in one line ---- */
.hero-cta-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 18px; align-items: stretch;
}
.hero-cta {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  border-radius: var(--radius-md); border: 1px solid var(--rule);
  background: var(--surface); color: var(--ink); min-height: 64px;
  transition: transform var(--motion-fast) var(--ease),
              box-shadow var(--motion-base) var(--ease),
              border-color var(--motion-base) var(--ease);
  position: relative; overflow: hidden;
  text-align: left;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-mid); }
.hero-cta__ic { font-size: 24px; line-height: 1; flex: none; width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; }
.hero-cta__body {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  line-height: 1.1; min-width: 0;
}
.hero-cta__top {
  font-size: 10px; opacity: .72; letter-spacing: .25px; line-height: 1.1;
}
.hero-cta__main {
  font-size: 16px; font-weight: 700; letter-spacing: -.2px; line-height: 1.15;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hero-cta__soon {
  font-size: 9px; font-weight: 700; letter-spacing: .5px;
  background: var(--gold); color: #3a2c00; padding: 2px 7px; border-radius: var(--radius-pill);
  display: inline-block; line-height: 1.3;
}
.hero-cta--primary {
  background: var(--grad-emerald); color: #fff; border-color: transparent;
  box-shadow: 0 8px 24px rgba(4,120,87,.32);
}
.hero-cta--primary:hover { box-shadow: 0 14px 34px rgba(4,120,87,.42); }
.hero-cta--store { background: var(--ink); color: #fff; border-color: transparent; }
[data-theme="dark"] .hero-cta--store,
:root:not([data-theme="light"]) .hero-cta--store { background: var(--surface-elevated); color: var(--ink); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hero-cta--store { background: var(--surface-elevated); color: var(--ink); }
}
.hero-cta--store[aria-disabled="true"] { opacity: .92; }
@media (max-width: 720px) {
  .hero-cta-row { grid-template-columns: 1fr; }
  .hero-cta__main { font-size: 15px; }
}

/* === Trust seals — circular badge row (live).
   4 badges: 100% on-device · Works offline · No tracking · Sync privately. */
.trust-seals {
  /* Top spacing is controlled by .hero-text rules (6px from .hero-tagline-sub).
     Default 0 prevents stack of 28px on top of the override. */
  list-style: none; margin: 0 auto; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px 12px;
  max-width: 620px; text-align: center;
}
.trust-seals__item {
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 4px 2px;
}
.trust-seals__badge {
  width: 52px; height: 52px; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--accent-soft); border: 1px solid var(--accent-soft-border);
  color: var(--accent); position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.trust-seals__badge::after {
  content: ""; position: absolute; inset: -4px; border-radius: 999px;
  border: 1px solid var(--rule); opacity: 0.5; pointer-events: none;
}
.trust-seals__item:hover .trust-seals__badge {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px -6px var(--accent);
}
.trust-seals__icon { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; fill: none; }
.trust-seals__title { font-size: 13px; font-weight: 600; letter-spacing: 0.2px; color: var(--ink); line-height: 1.2; }
.trust-seals__sub { font-size: 11px; font-weight: 400; color: var(--ink-muted); line-height: 1.35; max-width: 15ch; }
@media (max-width: 640px) {
  .trust-seals { grid-template-columns: repeat(2, 1fr); gap: 14px 8px; max-width: 100%; }
}
@media (max-width: 360px) {
  .trust-seals { grid-template-columns: 1fr; }
}

/* ---- Hero deck: shuffling screens to highlight Splits + Multi-currency ---- */
/* The phone holds N stacked .scr screens; only one is .is-active at a time.
   The advance is driven by the typewriter rotator on the left column —
   feature pills used to live here under the phone but were removed
   2026-06-06 because the rotator text already labels the current screen. */
.hero-deck { position: relative; }
.hero-deck .scr { transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.hero-deck .scr { opacity: 0; pointer-events: none; transform: translateX(24px) scale(0.985); z-index: 1; }
.hero-deck .scr.is-active { opacity: 1; pointer-events: auto; transform: none; z-index: 2; }
.hero-deck .scr.is-leaving { opacity: 0; transform: translateX(-24px) scale(0.985); z-index: 1; }

/* Splits accent screen overrides — violet/lime to mirror app's theme-splits */
.scr.scr--splits { background: linear-gradient(180deg, color-mix(in srgb, var(--splits-accent, #6E45E2) 6%, var(--canvas)), var(--canvas)); }
.scr.scr--splits .scr__hero { border-color: color-mix(in srgb, var(--splits-accent, #6E45E2) 30%, transparent); }
.scr.scr--splits .scr__hero .delta { color: var(--splits-accent, #6E45E2); }
.scr.scr--splits .scr__pill { background: color-mix(in srgb, var(--splits-accent, #6E45E2) 12%, var(--surface)); color: var(--splits-accent, #6E45E2); border: 1px solid color-mix(in srgb, var(--splits-accent, #6E45E2) 30%, transparent); }
.scr.scr--splits .scr__cta { background: linear-gradient(135deg, #6E45E2, #E14ECA); color: #fff; }

/* Multi-currency screen — emerald accent + chip row */
.scr.scr--mc .scr__chip { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border-radius: 999px; font-size: 9px; font-weight: 700; background: var(--surface-elevated); color: var(--ink-muted); border: 1px solid var(--rule); }
.scr.scr--mc .scr__chip.is-on { background: color-mix(in srgb, var(--accent) 14%, var(--surface)); color: var(--accent); border-color: color-mix(in srgb, var(--accent) 35%, transparent); }
.scr.scr--mc .scr__chiprow { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 4px; }
.scr.scr--mc .scr__rate { font-size: 10px; color: var(--ink-muted); margin-top: 6px; display: flex; justify-content: space-between; padding: 6px 10px; background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-sm); }
.scr.scr--mc .scr__rate b { color: var(--ink); font-feature-settings: "tnum"; }

/* CTA pill rendered inside the phone (used by Splits screen) */
.scr__cta { display: inline-flex; align-items: center; justify-content: center; gap: 4px; padding: 8px 14px; border-radius: 999px; font-size: 11px; font-weight: 700; align-self: center; }
.scr__pill { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border-radius: 999px; font-size: 9px; font-weight: 700; align-self: flex-start; }

/* sparkline */
.spark { width: 100%; height: 30px; margin-top: 4px; }
.spark path.line { fill: none; stroke: var(--positive); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.spark path.fill { fill: color-mix(in srgb, var(--positive) 12%, transparent); stroke: none; }

/* ---- Logo lockup with animated draw (hero) ---- */
.logo-draw { width: 100%; height: 100%; }
.logo-draw .wpath { fill: none; stroke: #fff; stroke-width: 100; stroke-linecap: round; stroke-linejoin: round; }
.logo-draw .dot { fill: var(--gold); }

/* ---- Feature list (checkmarks) ---- */
.checks { display: grid; gap: 12px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.checks li svg { width: 20px; height: 20px; flex: none; color: var(--accent); margin-top: 1px; }
.checks li span { color: var(--ink-muted); }

/* ---- FAQ ---- */
.faq { max-width: 760px; margin-inline: auto; display: grid; gap: 10px; }
.faq__item { border: 1px solid var(--rule); border-radius: var(--radius-md); background: var(--surface); overflow: hidden; }
.faq__q { width: 100%; display: flex; align-items: center; gap: 12px; padding: 18px; text-align: left; font-weight: 600; font-size: 16px; }
.faq__q .ic { margin-left: auto; transition: transform var(--motion-base) var(--ease); color: var(--ink-muted); flex: none; }
.faq__item.open .faq__q .ic { transform: rotate(45deg); color: var(--accent); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--motion-slow) var(--ease); }
.faq__a .inner { padding: 0 18px 18px; color: var(--ink-muted); line-height: 1.6; font-size: 15px; }

/* ---- CTA band ---- */
.cta-band { background: var(--grad-emerald); color: #fff; border-radius: var(--radius-xl); padding: clamp(36px, 6vw, 64px);
  text-align: center; position: relative; overflow: hidden; }
.cta-band .h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.88); }
.cta-band .badges { justify-content: center; }
.cta-band .glow { position: absolute; inset: -40% -10% auto; height: 120%;
  background: radial-gradient(closest-side, rgba(255,255,255,.22), transparent 70%); pointer-events: none; }

/* ---- Footer ---- */
.footer { border-top: 1px solid var(--rule); background: var(--surface); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; padding-block: 48px; }
.footer__brand p { font-size: 14px; color: var(--ink-muted); margin-top: 10px; max-width: 30ch; }
.footer h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--ink-subtle); margin-bottom: 12px; }
.footer__col a { display: block; font-size: 14px; color: var(--ink-muted); padding: 5px 0; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid var(--rule); padding-block: 18px; display: flex; gap: 12px; flex-wrap: wrap;
  align-items: center; justify-content: space-between; font-size: 13px; color: var(--ink-subtle); }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---- Section theming: Splits surfaces use violet accent ---- */
.theme-splits {
  --accent: var(--splits-accent);
  --accent-soft: var(--splits-accent-soft);
  --accent-soft-border: var(--splits-accent-border);
}
.grad-splits-band { background: var(--grad-splits); color: #fff; border-radius: var(--radius-xl); overflow: hidden; position: relative; }

/* ---- Breadcrumb ---- */
.crumbs { font-size: 13px; color: var(--ink-subtle); display: flex; gap: 8px; align-items: center; }
.crumbs a:hover { color: var(--accent); }

/* ---- Prose (privacy/terms) ---- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: 22px; margin-top: 36px; margin-bottom: 10px; letter-spacing: -.3px; }
.prose h3 { font-size: 17px; margin-top: 22px; margin-bottom: 6px; }
.prose p, .prose li { color: var(--ink-muted); line-height: 1.7; font-size: 15px; }
.prose ul { display: grid; gap: 6px; padding-left: 22px; list-style: disc; }
.prose ul li::marker { color: var(--accent); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.prose .note { background: var(--warning-soft); border: 1px solid color-mix(in srgb, var(--warning) 40%, transparent);
  color: var(--ink); border-radius: var(--radius-md); padding: 14px 16px; font-size: 14px; }

/* ---- Banners (draft notice) ---- */
.draft-banner { background: var(--warning-soft); border-bottom: 1px solid color-mix(in srgb, var(--warning) 35%, transparent);
  color: var(--ink); font-size: 13px; text-align: center; padding: 8px 16px; }
