/* =================================================================
   VERDICT — D2 "Modern Ledger" (light)
   Institutional-fintech light skin. Bold Geist grotesk headlines,
   Geist Mono data, emerald = GO, red = flag. Hairline borders,
   ledger aesthetic. No serif, no orbs, no violet glow.
   Shared stylesheet for all 5 pages — every class preserved.
   ================================================================= */

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-Variable.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Geist Mono';
  src: url('fonts/GeistMono-Variable.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {
  --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem;
  --space-5: 1.5rem; --space-6: 2rem; --space-7: 3rem; --space-8: 4.5rem; --space-9: 6rem;

  --radius-sm: 6px; --radius-md: 10px; --radius-lg: 14px;
  --radius-xl: 16px; --radius-2xl: 22px; --radius-pill: 999px;

  --z-content: 10; --z-nav: 100;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-1: 160ms; --dur-2: 240ms; --dur-3: 360ms;

  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 4vw, 2rem);
  --section-gap: clamp(4rem, 7vh, 7rem);
}

/* =================================================================
   D2 LIGHT TOKENS — canonical. Both the default block and
   [data-theme='dark'] resolve to the SAME light values so dark-mode
   users (and any leftover data-theme="dark") fall back cleanly.
   ================================================================= */
:root,
[data-theme='light'],
[data-theme='dark'] {
  color-scheme: light;
  --bg: #F7F8F7;            /* page */
  --bg-deep: #EDEFEE;       /* deepest / caption strips */
  --bg-elev: #FFFFFF;       /* cards */
  --bg-elev-2: #F1F3F1;     /* inset panels, table zebra */
  --bg-elev-3: #E8EAE8;     /* meter track, subtle fills */

  --fg: #14161A;            /* ink, headlines */
  --fg-2: #54574E;          /* body */
  --fg-3: #686B62;          /* mono labels, dim meta — AA on bg + inset panels */
  --fg-4: #A7AAA0;          /* dimmest — decorative / placeholder only */

  --border: rgba(20, 22, 26, 0.12);
  --border-2: rgba(20, 22, 26, 0.18);
  --border-3: rgba(20, 22, 26, 0.26);
  --border-violet: rgba(7, 135, 90, 0.28);   /* repurposed: emerald accent border */

  --accent: #077A50;        /* emerald, GO, primary — AA 4.9:1 on light bg */
  --accent-fg: #FFFFFF;
  --accent-2: #0A9E68;      /* brighter emerald, small accents/hover */
  --accent-soft: rgba(7, 135, 90, 0.08);
  --accent-glow: rgba(7, 135, 90, 0.18);     /* tamed: no real glow on light */
  --accent-glow-soft: rgba(7, 135, 90, 0.06);

  --dot-grid-color: transparent;
  --dot-grid-size: 36px;

  --ok: #077A50;  --ok-glow: rgba(7, 135, 90, 0.30);
  --warn: #B6791F;
  --err: #BE3B2E; --err-glow: rgba(190, 59, 46, 0.22);
  --err-soft: rgba(190, 59, 46, 0.07);
  --err-border: rgba(190, 59, 46, 0.22);

  --shadow-card: 0 26px 56px -34px rgba(20, 22, 26, 0.30);
}

/* ── reset + base ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-feature-settings: 'ss01', 'ss03', 'cv11';
  font-weight: 400; font-size: 16px; line-height: 1.55; letter-spacing: -0.011em;
  color: var(--fg); background-color: var(--bg);
  min-height: 100dvh; overflow-x: hidden;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; position: relative;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--accent); color: var(--accent-fg); }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-3); }

.accent { color: var(--accent); font-weight: 500; }

/* =================================================================
   ATMOSPHERE — neutralized for the clean light canvas.
   All dark-mode atmosphere layers are forced off.
   ================================================================= */
.bg-orbs, .bg-orb,
.cursor-spotlight, .cursor-reveal-grid,
.hero-light-ray, .grain, .film-grain {
  display: none !important;
}
/* kill the ported body::before dot-grid + body::after noise/glow */
body::before, body::after { content: none !important; display: none !important; }

/* Theme-toggle controls (if any page renders one) — hidden; light is canonical */
.theme-toggle, [data-theme-toggle], .nav__theme, .theme-switch { display: none !important; }

/* =================================================================
   LAYOUT PRIMITIVES
   ================================================================= */
.container {
  width: 100%; max-width: var(--container-max); margin-inline: auto;
  padding-inline: var(--container-pad); position: relative; z-index: var(--z-content);
}
.section { padding-block: var(--section-gap); position: relative; z-index: var(--z-content); }

.section-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--fg-3); margin: 0 0 var(--space-4);
}
.h-section {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 600; letter-spacing: -0.025em;
  line-height: 1.04; color: var(--fg); margin: 0; max-width: 22ch;
}
.h-section .accent { color: var(--accent); font-weight: 600; }
.lede { font-size: 17px; line-height: 1.6; color: var(--fg-2); max-width: 56ch; margin: var(--space-4) 0 0; }
.head { max-width: 720px; }
.head .lede { margin-top: var(--space-4); }

/* =================================================================
   NAV — editorial masthead (full-width, hairline, no glass pill)
   Deliberately NOT the Lucid AI Labs floating pill.
   ================================================================= */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(247, 248, 247, 0.9);
  backdrop-filter: blur(10px) saturate(1.1); -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: clamp(16px, 3vw, 32px); width: min(1180px, 100%);
  margin: 0 auto; padding: 13px var(--container-pad);
}
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0;
  transition: opacity var(--dur-2) var(--ease-soft); }
.brand:hover { opacity: 0.78; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0; position: relative;
  display: grid; place-items: center; color: #fff;
  background: var(--fg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 4px 10px -5px rgba(20, 22, 26, 0.4);
}
.brand__mark::after {
  content: ""; position: absolute; inset: 0; border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}
.brand__mark svg { width: 14px; height: 14px; position: relative; z-index: 1; color: #fff; }
.brand__name { display: inline-flex; flex-direction: column; line-height: 1; min-width: 0; }
.brand__name b { font-weight: 700; font-size: 15px; letter-spacing: .01em; color: var(--fg);
  text-transform: uppercase; }
.brand__by { font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--fg-3); margin-top: 4px; white-space: nowrap; }
.nav__links { display: flex; justify-content: flex-end; align-items: center;
  gap: clamp(2px, 1vw, 8px); }
.nav__link {
  position: relative;
  font-size: 13.5px; color: var(--fg-2); padding: 8px 10px; border-radius: var(--radius-sm);
  transition: color var(--dur-2) var(--ease-soft), background var(--dur-2) var(--ease-soft);
}
.nav__link:hover { color: var(--fg); background: var(--bg-elev-2); }
/* current-page indicator — emerald text + thin bottom rule flush to the masthead edge */
.nav__link.is-active { color: var(--accent); background: transparent; }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: -14px;
  height: 2px; background: var(--accent);
}
.nav__cta { justify-self: end; }
/* hide the tagline before the nav links get tight (tablet) */
@media (max-width: 900px) { .brand__by { display: none; } }
@media (max-width: 720px) {
  .nav__inner { padding: 10px var(--container-pad); gap: 12px; }
  .nav__links { display: none; }
}

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 18px; border-radius: var(--radius-md);
  font-weight: 500; font-size: 14.5px; letter-spacing: -0.005em;
  white-space: nowrap; max-width: 100%; border: 1px solid transparent;
  transition: background 200ms cubic-bezier(.2,.8,.2,1), color 200ms cubic-bezier(.2,.8,.2,1),
    border-color 200ms cubic-bezier(.2,.8,.2,1), transform 200ms cubic-bezier(.2,.8,.2,1),
    box-shadow 200ms cubic-bezier(.2,.8,.2,1);
}
.btn:active { transform: scale(0.98); }
.btn--primary {
  background: var(--accent); color: var(--accent-fg); font-weight: 500;
  box-shadow: 0 1px 2px rgba(20, 22, 26, 0.10);
}
.btn--primary:hover {
  background: var(--accent-2); color: var(--accent-fg);
  box-shadow: 0 10px 22px -12px rgba(7, 135, 90, 0.5);
  transform: translateY(-1px);
}
.btn--primary:active { transform: scale(0.98); box-shadow: 0 1px 2px rgba(20, 22, 26, 0.12) inset; }
.btn--ghost { background: transparent; border-color: var(--border-2); color: var(--fg); }
.btn--ghost:hover { background: var(--bg-elev-2); border-color: var(--border-3); transform: translateY(-1px); }
.btn--ghost:active { transform: scale(0.98); }
.btn--lg { height: 50px; padding: 0 26px; font-size: 16px; gap: 10px; }
.btn--lg .btn__arrow { width: 14px; height: 14px; }
.btn--sm { height: 36px; padding: 0 16px; font-size: 13.5px; }
.btn__arrow { width: 12px; height: 12px; transition: transform var(--dur-2) var(--ease-spring); }
.btn:hover .btn__arrow { transform: translateX(3px); }
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; line-height: 1.3; height: auto; min-height: 44px; padding-block: 10px; }
  .btn--lg { min-height: 50px; padding-block: 12px; }
}

.link-chev {
  display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500;
  color: var(--accent); transition: color var(--dur-2) var(--ease-soft);
}
.link-chev svg { width: 14px; height: 14px; transition: transform var(--dur-2) var(--ease-spring); }
.link-chev:hover { color: var(--accent-2); }
.link-chev:hover svg { transform: translateX(3px); }

/* =================================================================
   HERO
   ================================================================= */
.hero { padding-top: clamp(2.5rem, 6vh, 5rem); padding-bottom: clamp(3rem, 6vh, 5rem); }
.hero__grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: center;
}
@media (min-width: 960px) { .hero__grid { grid-template-columns: 1.05fr 0.95fr; } }
.hero__copy { max-width: 640px; }
.announce {
  display: inline-flex; align-items: center; gap: 8px; padding: 4px 12px 4px 6px;
  background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-pill);
  font-size: 12.5px; color: var(--fg-2); transition: border-color var(--dur-2) var(--ease-soft);
}
.announce:hover { border-color: var(--border-2); color: var(--fg); }
.announce__chip {
  background: var(--accent-soft); color: var(--accent); font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.06em; padding: 3px 8px;
  border-radius: var(--radius-pill); text-transform: uppercase;
}
.hero__h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 6.4vw, 4.7rem); font-weight: 700; letter-spacing: -0.038em;
  line-height: 1.0; color: var(--fg); margin: var(--space-5) 0 0; max-width: 15ch;
}
.hero__h1 .accent {
  color: var(--accent); font-weight: 700; text-shadow: none;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.55; color: var(--fg-2);
  max-width: 52ch; margin: var(--space-5) 0 0;
}
.hero__cta { display: inline-flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.hero__micro { font-family: var(--font-mono); font-size: 12px; letter-spacing: .01em;
  color: var(--fg-3); margin: var(--space-5) 0 0; }

/* ── Floating sibling dossier card — the ledger STATEMENT artifact ── */
.dossier {
  position: relative; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg-elev); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.dossier::before { content: none; }
.dossier__bar {
  position: relative; display: flex; align-items: center; gap: 9px;
  padding: 13px 18px; border-bottom: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--fg-3);
}
.dossier__live { display: inline-flex; align-items: center; gap: 7px; color: var(--accent); }
.dossier__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 6px rgba(7, 135, 90, 0.4); }
.dossier__ref { margin-left: auto; color: var(--fg-3); }
.dossier__body { position: relative; padding: clamp(1.2rem, 2.6vw, 1.6rem); }
.dossier__co { font-size: 13px; color: var(--fg-3); margin: 0 0 var(--space-3); }
.dossier__co b { color: var(--fg-2); font-weight: 500; }
.verdict-pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 14px;
  border-radius: var(--radius-sm); border: 1px solid var(--accent-border, var(--border-violet));
  background: var(--accent-soft); color: var(--accent);
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase;
}
.verdict-pill svg { width: 14px; height: 14px; }
.dossier__lbl {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fg-3); margin: var(--space-5) 0 var(--space-3);
}
.flag {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px 0;
  border-top: 1px solid var(--border);
}
.flag__rank {
  width: 22px; height: 22px; flex: none; border-radius: var(--radius-sm); display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--err); background: var(--err-soft); border: 1px solid var(--err-border);
}
.flag__t { font-size: 13.5px; font-weight: 500; color: var(--fg); }
.flag__d { font-size: 12px; color: var(--fg-3); margin-top: 2px; line-height: 1.45; }
.flag__sev { margin-left: auto; flex: none; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .04em; color: var(--err); padding-top: 2px; text-transform: uppercase; }
.dossier__conf {
  position: relative; display: flex; align-items: center; gap: 10px;
  margin-top: var(--space-5); padding: 11px 14px; border-radius: var(--radius-md);
  border: 1px solid var(--border); background: var(--bg-elev-2);
  font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-2);
}
.dossier__conf svg { width: 14px; height: 14px; color: var(--accent); flex: none; }
.dossier__conf b { color: var(--fg); font-weight: 600; }
.dossier__conf .meter { margin-left: auto; width: 88px; height: 5px; border-radius: 99px;
  background: var(--bg-elev-3); overflow: hidden; flex: none; }
.dossier__conf .meter i { display: block; height: 100%; width: 82%; border-radius: 99px;
  background: var(--accent); }

/* =================================================================
   PROOF ROW
   ================================================================= */
.proof {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-top: var(--space-7);
}
.proof__cell {
  padding: clamp(1.4rem, 3vw, 2.1rem) clamp(1rem, 2vw, 1.6rem);
  border-right: 1px solid var(--border); display: flex; flex-direction: column; gap: var(--space-3);
}
.proof__cell:last-child { border-right: 0; }
.proof__n {
  font-size: clamp(2.1rem, 4.5vw, 3rem); font-weight: 600; letter-spacing: -0.035em;
  line-height: 1; color: var(--fg); font-variant-numeric: tabular-nums;
}
.proof__n .accent { color: var(--accent); }
.proof__l { font-size: 13.5px; line-height: 1.5; color: var(--fg-2); margin: 0; }
@media (max-width: 680px) {
  .proof { grid-template-columns: 1fr; }
  .proof__cell { border-right: 0; border-bottom: 1px solid var(--border); }
  .proof__cell:last-child { border-bottom: 0; }
}

/* =================================================================
   REPORT INDEX — clean ledger tiles (no luminous side-spine)
   ================================================================= */
.contents { display: grid; grid-template-columns: 1fr; gap: var(--space-4); margin-top: var(--space-7); }
@media (min-width: 640px) { .contents { grid-template-columns: 1fr 1fr; } }
.rtile {
  position: relative; overflow: hidden; display: flex; gap: 14px; align-items: flex-start;
  padding: clamp(1.15rem, 2.2vw, 1.4rem) clamp(1.2rem, 2.2vw, 1.5rem);
  border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-elev);
  transition: transform var(--dur-2) var(--ease-soft), border-color var(--dur-2) var(--ease-soft),
    box-shadow var(--dur-2) var(--ease-soft);
}
/* BANNED colored left-spine replaced with a short emerald TOP TICK over the index */
.rtile::after {
  content: ''; position: absolute; left: clamp(1.2rem, 2.2vw, 1.5rem); top: 0; width: 18px; height: 2px;
  background: var(--accent); border-radius: 0 0 2px 2px;
  transition: width var(--dur-2) var(--ease-soft);
}
.rtile:hover { transform: translateY(-2px); border-color: var(--border-2); box-shadow: 0 18px 40px -30px rgba(20, 22, 26, 0.3); }
.rtile:hover::after { width: 28px; }
.rtile__ix {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--accent);
  min-width: 22px; padding-top: 2px; flex: none;
}
.rtile__t { font-size: 15px; font-weight: 600; color: var(--fg); letter-spacing: -0.01em; }
.rtile__d { font-size: 13px; color: var(--fg-2); margin-top: 4px; line-height: 1.5; }

/* =================================================================
   HOW IT'S MADE — pipeline panel (light inset)
   ================================================================= */
.made {
  position: relative; overflow: hidden; margin-top: var(--space-7);
  border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-elev);
  box-shadow: var(--shadow-card);
}
.made::before { content: none; }
.made__bar {
  position: relative; display: flex; align-items: center; gap: 9px;
  padding: 13px clamp(1rem, 2vw, 1.4rem); border-bottom: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--fg-3); background: var(--bg-elev-2);
}
.made__bar .d { width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px rgba(7, 135, 90, 0.5); animation: livePulse 2.4s var(--ease-soft) infinite; }
.made__bar .live { margin-left: auto; color: var(--accent); font-size: 10px;
  text-transform: uppercase; letter-spacing: .16em; }
.made__flow { position: relative; display: grid; grid-template-columns: 1fr; background: var(--bg-elev-2); }
@media (min-width: 760px) { .made__flow { grid-template-columns: repeat(4, 1fr); } }
.made__step {
  padding: clamp(1.2rem, 2.4vw, 1.6rem) clamp(1rem, 2vw, 1.4rem);
  border-top: 1px solid var(--border); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: var(--space-3);
}
.made__step:last-child { border-right: 0; }
@media (max-width: 759px) { .made__step { border-right: 0; } }
.made__glyph {
  width: 38px; height: 38px; flex: none; display: grid; place-items: center;
  border-radius: var(--radius-md); border: 1px solid var(--accent-border, var(--border-violet));
  background: var(--accent-soft); color: var(--accent);
}
.made__glyph svg { width: 19px; height: 19px; }
.made__k { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; color: var(--accent);
  text-transform: uppercase; }
.made__h { font-size: 15px; font-weight: 600; color: var(--fg); letter-spacing: -0.01em; }
.made__p { font-size: 13px; line-height: 1.55; color: var(--fg-2); margin: 0; }
.made__foot {
  position: relative; padding: 13px clamp(1rem, 2vw, 1.4rem); border-top: 1px solid var(--border);
  font-size: 14px; line-height: 1.6; color: var(--fg-2);
  display: flex; align-items: flex-start; gap: 9px; background: var(--bg-elev);
}
.made__foot svg { width: 15px; height: 15px; color: var(--accent); flex: none; margin-top: 3px; }
.made__foot b { color: var(--fg); font-weight: 600; }

/* =================================================================
   SELECTIVE NOTE
   ================================================================= */
/* Editorial rule-bracketed statement — deliberately NOT a round card,
   so it never reads as a second CTA band on the same page. */
.selective {
  position: relative; text-align: center; max-width: 900px; margin: var(--space-7) auto 0;
  padding: clamp(2.2rem, 5vw, 3.4rem) clamp(1rem, 3vw, 2rem);
  border: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  border-radius: 0; background: transparent; box-shadow: none;
}
.selective::before {
  content: ""; position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}
.selective > * { position: relative; z-index: 1; }
.selective .section-label { color: var(--accent); }
.selective__q {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 3vw, 2rem); font-weight: 600; letter-spacing: -0.025em;
  line-height: 1.3; color: var(--fg); margin: var(--space-3) auto 0; max-width: 30ch;
}
.selective__q .accent { color: var(--accent); }

/* =================================================================
   PRICING
   ================================================================= */
.tiers { display: grid; grid-template-columns: 1fr; gap: var(--space-4); margin-top: var(--space-7); }
@media (min-width: 820px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2rem) clamp(1.4rem, 2.6vw, 1.7rem);
  border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-elev);
  transition: transform var(--dur-2) var(--ease-soft), border-color var(--dur-2) var(--ease-soft),
    box-shadow var(--dur-2) var(--ease-soft);
}
.tier:hover { transform: translateY(-3px); border-color: var(--border-2); box-shadow: 0 22px 50px -34px rgba(20, 22, 26, 0.3); }
.tier--feat { border-color: var(--accent); background: var(--bg-elev);
  box-shadow: var(--shadow-card); }
.tier--feat:hover { border-color: var(--accent); box-shadow: 0 26px 56px -32px rgba(7, 135, 90, 0.32); }
.tier__badge {
  position: absolute; top: -11px; left: clamp(1.4rem, 2.6vw, 1.7rem);
  background: var(--accent); color: var(--accent-fg);
  font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 11px; border-radius: var(--radius-pill);
  box-shadow: 0 6px 16px -8px rgba(7, 135, 90, 0.5);
}
.tier__name {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fg-3); margin: 0;
}
.tier__price {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 4vw, 2.9rem); font-weight: 700; letter-spacing: -0.038em;
  color: var(--fg); margin: var(--space-3) 0 0; font-variant-numeric: tabular-nums; line-height: 1;
}
.tier__turn { font-family: var(--font-mono); font-size: 12px; letter-spacing: .01em;
  color: var(--accent); margin: var(--space-2) 0 var(--space-5); }
.tier__list { list-style: none; padding: 0; margin: 0; }
.tier__list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; line-height: 1.5; color: var(--fg-2); padding: 10px 0;
  border-top: 1px solid var(--border);
}
.tier__list li:first-child { border-top: 0; }
.tier__list svg { width: 15px; height: 15px; color: var(--accent); flex: none; margin-top: 2px; }
.tier__pick {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: var(--space-6); height: 46px; border-radius: var(--radius-md);
  font-weight: 500; font-size: 14.5px; border: 1px solid var(--border-2);
  background: transparent; color: var(--fg);
  transition: background 200ms cubic-bezier(.2,.8,.2,1), border-color 200ms cubic-bezier(.2,.8,.2,1),
    color 200ms cubic-bezier(.2,.8,.2,1), transform 200ms cubic-bezier(.2,.8,.2,1), box-shadow 200ms cubic-bezier(.2,.8,.2,1);
}
.tier__pick:hover { border-color: var(--border-3); background: var(--bg-elev-2); transform: translateY(-1px); }
.tier__pick:active { transform: scale(0.98); }
.tier__pick svg { width: 13px; height: 13px; transition: transform var(--dur-2) var(--ease-spring); }
.tier__pick:hover svg { transform: translateX(3px); }
.tier--feat .tier__pick { background: var(--accent); color: var(--accent-fg); border-color: var(--accent); }
.tier--feat .tier__pick:hover { background: var(--accent-2); color: var(--accent-fg); border-color: var(--accent-2);
  box-shadow: 0 10px 22px -12px rgba(7, 135, 90, 0.5); }

/* =================================================================
   FAQ
   ================================================================= */
.faq { max-width: 760px; margin: var(--space-7) auto 0; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  list-style: none; cursor: pointer; padding: var(--space-5) 0;
  font-size: 16px; font-weight: 600; color: var(--fg); letter-spacing: -0.015em;
  transition: color var(--dur-2) var(--ease-soft);
}
.faq summary:hover { color: var(--accent); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic {
  width: 26px; height: 26px; flex: none; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--border-2); color: var(--accent); position: relative;
  transition: border-color var(--dur-2) var(--ease-soft), transform var(--dur-3) var(--ease-out);
}
.faq summary .ic::before, .faq summary .ic::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
}
.faq summary .ic::before { width: 11px; height: 1.5px; }
.faq summary .ic::after { width: 1.5px; height: 11px; transition: opacity var(--dur-2) var(--ease-soft); }
.faq details[open] summary .ic { transform: rotate(180deg); border-color: var(--accent-border, var(--border-violet)); }
.faq details[open] summary .ic::after { opacity: 0; }
.faq__a { color: var(--fg-2); font-size: 15px; line-height: 1.66; margin: 0 0 var(--space-5); max-width: 64ch; }

/* =================================================================
   CTA BAND
   ================================================================= */
.band {
  position: relative; text-align: center; max-width: 820px; margin: var(--space-7) auto 0;
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--border); border-radius: var(--radius-2xl);
  background: var(--bg-elev); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.band::before { content: none; }
.band > * { position: relative; z-index: 1; }
.band__h { font-family: var(--font-sans); font-size: clamp(1.8rem, 3.8vw, 2.6rem); font-weight: 700;
  letter-spacing: -0.035em; line-height: 1.05; color: var(--fg); margin: 0; }
.band .lede { margin: var(--space-4) auto 0; }
.band__cta { display: inline-flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-top: var(--space-6); }
.band__micro { font-family: var(--font-mono); font-size: 12px; color: var(--fg-3); margin: var(--space-5) 0 0; }
.band__micro a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.band__micro a:hover { text-decoration-thickness: 2px; }
/* inline prose links: distinguish by more than colour (a11y: link-in-text-block) */
.band__guar a, .footer__line a, .footer__imp a, .footer__note a,
.lede a, .sproof__t a { text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.lede a, .sproof__t a { color: var(--fg-2); }
.lede a:hover, .sproof__t a:hover { color: var(--accent); }

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
  border-top: 1px solid var(--border); margin-top: var(--space-7);
  padding: var(--space-6) var(--container-pad) var(--space-5); text-align: center;
  background: var(--bg-elev-2);
  max-width: none; width: 100%;
}
.footer__brand { display: inline-flex; align-items: center; gap: 9px; margin-bottom: var(--space-3); }
.footer__brand .brand__mark { width: 26px; height: 26px; }
.footer__brand b { font-weight: 600; font-size: 15px; letter-spacing: -0.02em; color: var(--fg); }
.footer .nav__links { margin: 0 auto var(--space-3); gap: 4px 16px; flex-wrap: wrap; justify-content: center; max-width: 620px; }
.footer .nav__link { font-size: 13px; }
.footer__line { font-size: 13.5px; color: var(--fg-2); margin: 0 auto; max-width: 560px; line-height: 1.7; }
.footer__line .accent { color: var(--accent); }
.footer__line a.accent { text-decoration: none; border-bottom: 1px solid var(--accent-border, var(--border-violet)); transition: border-color var(--dur-2) var(--ease-soft); }
.footer__line a.accent:hover { border-bottom-color: var(--accent); }
.footer__note { font-size: 12.5px; color: var(--fg-3); margin: var(--space-3) auto 0; max-width: 600px; line-height: 1.6; }
.footer__imp {
  display: block; max-width: 600px; margin: var(--space-4) auto 0;
  font-family: var(--font-mono); font-size: 11.5px; line-height: 1.7; letter-spacing: 0; color: var(--fg-3);
  overflow-wrap: anywhere;
}
.footer__imp a { color: var(--fg-2); }
.footer__imp a:hover { color: var(--accent); }
@media (max-width: 768px) {
  .footer { padding: var(--space-5) var(--container-pad) var(--space-4); margin-top: var(--space-6); }
  .footer .nav__links { display: flex !important; gap: 2px 12px; }
  .footer__line, .footer__note { font-size: 12px; }
  .footer__imp { font-size: 10.5px; }
}

@keyframes livePulse { 0%,100% { opacity: .55; transform: scale(.9); } 50% { opacity: 1; transform: scale(1.08); } }

/* =================================================================
   REVEAL + FOCUS
   ================================================================= */
html.js .reveal { opacity: 0; transform: translateY(12px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
html.js .reveal.is-in { opacity: 1; transform: translateY(0); }
html.js .reveal[data-d='1'] { transition-delay: 60ms; }
html.js .reveal[data-d='2'] { transition-delay: 120ms; }
html.js .reveal[data-d='3'] { transition-delay: 180ms; }
html.js .reveal[data-d='4'] { transition-delay: 240ms; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: var(--radius-sm);
}
