/* ═══════════════════════════════════════════════════════════════════════
   GENESIS v3 — public site design system (2026-06-10)
   Brand v2.0 locked: navy + electric cyan + white. No purple. No gold.
   Geist / Geist Mono. One gradient (navy→cyan). Radii 4/6/8 — no pills.
   All custom props namespaced --v3-* (gv-* come from /static/brand/tokens.css;
   audit-legacy.css defines the old page vars the transplanted audit needs).
   See docs/V3_DESIGN_BRIEF.md for the architecture this implements.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Fonts (self-hosted, OFL-1.1) ───────────────────────────────────── */
@font-face {
  font-family: 'Geist';
  src: url('/static/brand/fonts/Geist-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Geist Mono';
  src: url('/static/brand/fonts/GeistMono-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

/* ── Tokens ─────────────────────────────────────────────────────────── */
:root {
  /* navy elevation family (v2: elevate by lightness, never black) */
  --v3-navy-void:  #061A2E;
  --v3-navy:       #0A2540;
  --v3-navy-1:     #0F2D4D;
  --v3-navy-2:     #143559;
  --v3-navy-3:     #1A3A5C;

  --v3-cyan:        #00F0FF;
  --v3-cyan-bright: #00BFFF;
  --v3-cyan-deep:   #006D85;   /* the ONLY cyan for text on light (4.7:1) */

  --v3-white:      #FFFFFF;
  --v3-ink:        #0A2540;
  --v3-ink-2:      #44546A;
  --v3-ink-3:      #66708A;   /* 4.6:1 on white (AA small text) */

  --v3-fg:         rgba(255,255,255,0.95);
  --v3-fg-2:       rgba(255,255,255,0.74);
  --v3-fg-3:       rgba(255,255,255,0.52);

  --v3-bg-light:   #FFFFFF;
  --v3-bg-soft:    #F7F9FC;

  --v3-line:       rgba(192,192,192,0.14);
  --v3-line-2:     rgba(192,192,192,0.24);
  --v3-line-light: #E8EAEF;

  --v3-grad: linear-gradient(135deg, #0A2540 0%, #1A3A5C 60%, #00BFFF 100%);

  --v3-r-sm: 4px;
  --v3-r:    6px;
  --v3-r-lg: 8px;

  --v3-shadow-1: 0 1px 2px rgba(10,37,64,.06), 0 0 0 1px rgba(10,37,64,.04);
  --v3-shadow-2: 0 4px 16px rgba(10,37,64,.10), 0 0 0 1px rgba(10,37,64,.04);
  --v3-shadow-3: 0 12px 40px rgba(10,37,64,.16);
  --v3-glow:     0 0 0 1px rgba(0,240,255,.35), 0 0 24px rgba(0,240,255,.20);

  --v3-font: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --v3-mono: 'Geist Mono', ui-monospace, 'JetBrains Mono', 'Cascadia Code', monospace;

  --v3-ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --v3-ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --v3-max: 1180px;
}

/* ── Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--v3-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--v3-fg);
  background: var(--v3-navy-void);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, canvas { max-width: 100%; height: auto; }
a { color: inherit; }
::selection { background: rgba(0,191,255,0.35); color: #fff; }

.v3-wrap {
  max-width: var(--v3-max);
  margin: 0 auto;
  padding: 0 24px;
}

.v3-skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--v3-cyan-bright); color: var(--v3-navy);
  padding: 10px 18px; border-radius: var(--v3-r); font-weight: 600;
  z-index: 200;
}
.v3-skip:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 2px solid var(--v3-cyan-bright);
  outline-offset: 2px;
  border-radius: 2px;
}
.v3-light :focus-visible, .v3-soft :focus-visible, .pricing :focus-visible,
.proof :focus-visible, .samples :focus-visible, section.audit-cta :focus-visible {
  outline-color: var(--v3-cyan-deep);
}

/* ── Type ───────────────────────────────────────────────────────────── */
.v3-eyebrow {
  font-family: var(--v3-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--v3-cyan-bright);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.v3-eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--v3-cyan-bright);
  opacity: 0.7;
}
.v3-light .v3-eyebrow { color: var(--v3-cyan-deep); }
.v3-light .v3-eyebrow::before { background: var(--v3-cyan-deep); }

.v3-h1 {
  font-size: clamp(2.7rem, 7.2vw, 5.4rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
  color: var(--v3-white);
}
.v3-h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 0.6em;
  color: var(--v3-white);
}
.v3-light .v3-h2, .v3-light .v3-h3 { color: var(--v3-ink); }
.v3-h3 {
  font-size: 1.35rem;
  font-weight: 620;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0 0 0.5em;
  color: var(--v3-white);
}
.v3-lede {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.65;
  color: var(--v3-fg-2);
  max-width: 56ch;
}
.v3-light .v3-lede { color: var(--v3-ink-2); }
.v3-grad-text {
  background: linear-gradient(110deg, #FFFFFF 20%, var(--v3-cyan) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.v3-mono { font-family: var(--v3-mono); font-variant-numeric: tabular-nums; }

/* ── Buttons ────────────────────────────────────────────────────────── */
.v3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0.92rem 1.8rem;
  border-radius: var(--v3-r);
  font: 600 1rem/1 var(--v3-font);
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 160ms var(--v3-ease), box-shadow 200ms var(--v3-ease),
              background 160ms var(--v3-ease), border-color 160ms var(--v3-ease);
}
.v3-btn:active { transform: translateY(1px); }
.v3-btn-primary {
  background: var(--v3-cyan-bright);
  color: var(--v3-navy);
}
.v3-btn-primary:hover {
  background: var(--v3-cyan);
  transform: translateY(-1px);
  box-shadow: var(--v3-glow);
}
.v3-btn-ghost {
  background: transparent;
  color: var(--v3-fg);
  border: 1px solid var(--v3-line-2);
}
.v3-btn-ghost:hover { border-color: var(--v3-cyan-bright); color: #fff; }
.v3-light .v3-btn-ghost { color: var(--v3-ink); border-color: var(--v3-line-light); }
.v3-light .v3-btn-ghost:hover { border-color: var(--v3-cyan-deep); color: var(--v3-ink); }

/* ── Sticky nav ─────────────────────────────────────────────────────── */
.v3-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6,26,46,0.62);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 240ms var(--v3-ease), border-color 240ms var(--v3-ease);
}
.v3-nav.is-scrolled {
  background: rgba(10,37,64,0.82);
  border-bottom-color: var(--v3-line);
}
.v3-nav-inner {
  max-width: var(--v3-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.v3-nav-logo { display: inline-flex; align-items: center; margin-right: auto; }
.v3-nav-logo img { height: 34px; width: auto; border-radius: 4px; }
.v3-nav-links { display: flex; align-items: center; gap: 24px; }
.v3-nav-links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--v3-fg-2);
  text-decoration: none;
  padding: 6px 0;
  transition: color 160ms var(--v3-ease);
}
.v3-nav-links a:hover { color: #fff; }
.v3-nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--v3-cyan-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--v3-ease-out);
}
.v3-nav-links a:hover::after { transform: scaleX(1); }
.v3-nav-cta {
  padding: 0.58rem 1.15rem;
  font-size: 0.9rem;
}
/* auth slot (script5 toggles these) */
#nav-auth-login {
  font-size: 0.9rem; font-weight: 500; color: var(--v3-fg-2);
  text-decoration: none;
}
#nav-auth-login:hover { color: #fff; }
#nav-auth-user { position: relative; }
#nav-auth-user .nav-user-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--v3-navy-2);
  border: 1px solid var(--v3-line);
  color: var(--v3-fg);
  font: 500 0.85rem var(--v3-font);
  padding: 7px 13px;
  border-radius: var(--v3-r);
  cursor: pointer;
}
#nav-auth-user .nav-user-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--v3-navy-1);
  border: 1px solid var(--v3-line);
  border-radius: var(--v3-r-lg);
  box-shadow: var(--v3-shadow-3);
  min-width: 180px;
  padding: 6px;
  z-index: 110;
}
#nav-auth-user .nav-user-menu a,
#nav-auth-user .nav-user-menu button {
  display: block; width: 100%;
  text-align: left;
  background: none; border: none;
  color: var(--v3-fg-2);
  font: 500 0.88rem var(--v3-font);
  padding: 9px 12px;
  border-radius: var(--v3-r-sm);
  text-decoration: none;
  cursor: pointer;
}
#nav-auth-user .nav-user-menu a:hover,
#nav-auth-user .nav-user-menu button:hover { background: var(--v3-navy-2); color: #fff; }
[hidden] { display: none !important; }

/* ── Sections (rhythm) ──────────────────────────────────────────────── */
.v3-section { padding: clamp(76px, 11vw, 132px) 0; position: relative; }
.v3-dark  { background: var(--v3-navy); color: var(--v3-fg); }
.v3-void  { background: var(--v3-navy-void); color: var(--v3-fg); }
.v3-light { background: var(--v3-bg-light); color: var(--v3-ink); }
.v3-soft  { background: var(--v3-bg-soft);  color: var(--v3-ink); }
.v3-head { margin-bottom: clamp(34px, 5vw, 56px); }
.v3-head .v3-lede { margin-top: 14px; }
.v3-num {
  font-family: var(--v3-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--v3-fg-3);
  margin-right: 12px;
}
.v3-light .v3-num { color: var(--v3-ink-3); }

/* circuit-trace divider */
.v3-trace {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--v3-line-2) 30%, var(--v3-line-2) 70%, transparent);
  position: relative;
  max-width: var(--v3-max);
  margin: 0 auto;
}
.v3-trace::after {
  content: '';
  position: absolute;
  top: -2.5px; left: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--v3-cyan-bright);
  box-shadow: 0 0 10px rgba(0,240,255,0.8);
}

/* ── 01 · HERO ──────────────────────────────────────────────────────── */
.v3-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 90% 60% at 70% 30%, rgba(0,191,255,0.10), transparent 60%),
    radial-gradient(ellipse 70% 55% at 25% 75%, rgba(20,53,89,0.55), transparent 65%),
    var(--v3-navy-void);
  padding: 120px 0 64px;
}
#gv-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.4s var(--v3-ease);
  pointer-events: none;
}
#gv-field.is-live { opacity: 1; }
.v3-hero::after {                /* legibility scrim over the field */
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(6,26,46,0.82) 0%, rgba(6,26,46,0.45) 38%, transparent 64%),
    linear-gradient(to bottom, rgba(6,26,46,0.35), transparent 30%, transparent 62%, rgba(6,26,46,0.94));
  pointer-events: none;
}
.v3-hero .v3-wrap { position: relative; z-index: 2; }
.v3-hero-eyebrow { margin-bottom: 26px; }
.v3-hero .v3-h1 { max-width: 13ch; text-wrap: balance; text-shadow: 0 2px 34px rgba(6,26,46,0.9), 0 1px 8px rgba(6,26,46,0.7); }
.v3-hero-sub {
  margin-top: 26px;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.62;
  color: var(--v3-fg-2);
  max-width: 54ch;
}
.v3-hero-sub strong { color: var(--v3-fg); font-weight: 600; }
.v3-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.hero-price-line {                /* funnel tag contract — keep class */
  margin-top: 18px;
  font-family: var(--v3-mono);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--v3-fg-3);
}
.hero-price-line strong { color: var(--v3-cyan-bright); font-weight: 500; }
.v3-hero-scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px; height: 36px;
  border: 1.5px solid var(--v3-line-2);
  border-radius: 11px;
  pointer-events: none;
}
.v3-hero-scroll::before {
  content: '';
  position: absolute;
  left: 50%; top: 7px;
  width: 3px; height: 7px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--v3-cyan-bright);
  animation: v3-scrollhint 2.2s var(--v3-ease) infinite;
}
@keyframes v3-scrollhint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70%      { transform: translateY(9px); opacity: 0; }
}

/* ── 02 · LIVE PULSE ────────────────────────────────────────────────── */
.v3-pulse { padding: clamp(54px, 7vw, 84px) 0; }
.v3-pulse-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-bottom: 36px;
}
.v3-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--v3-mono);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--v3-cyan);
  border: 1px solid rgba(0,240,255,0.28);
  border-radius: var(--v3-r);
  padding: 7px 13px;
  background: rgba(0,240,255,0.05);
}
.v3-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--v3-cyan);
  box-shadow: 0 0 8px rgba(0,240,255,0.9);
  animation: v3-pulse-dot 2s var(--v3-ease) infinite;
}
@keyframes v3-pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,240,255,0.55); }
  55%      { box-shadow: 0 0 0 9px rgba(0,240,255,0); }
}
.v3-pulse-asof {
  font-family: var(--v3-mono);
  font-size: 0.76rem;
  color: var(--v3-fg-3);
}
.v3-pulse-link {
  margin-left: auto;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--v3-cyan-bright);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.v3-pulse-link:hover { border-bottom-color: var(--v3-cyan-bright); }
.v3-pulse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--v3-line);
  border: 1px solid var(--v3-line);
  border-radius: var(--v3-r-lg);
  overflow: hidden;
}
.v3-stat {
  background: var(--v3-navy);
  padding: 26px 24px 22px;
}
.v3-stat-n {
  font-family: var(--v3-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 560;
  letter-spacing: -0.02em;
  color: var(--v3-white);
  line-height: 1.05;
}
.v3-stat-n .v3-stat-suffix { color: var(--v3-cyan-bright); }
.v3-stat-l {
  margin-top: 9px;
  font-size: 0.82rem;
  color: var(--v3-fg-3);
  line-height: 1.45;
}

/* ── 03 · HOW IT RUNS (numbered chapters) ───────────────────────────── */
.v3-chapters { display: flex; flex-direction: column; gap: clamp(58px, 8vw, 104px); }
.v3-chapter {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.v3-chapter:nth-child(even) .v3-chapter-copy { order: 2; }
.v3-chapter-num {
  font-family: var(--v3-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--v3-cyan-bright);
  margin-bottom: 16px;
  display: block;
}
.v3-chapter-copy .v3-h3 { font-size: clamp(1.45rem, 2.5vw, 1.9rem); }
.v3-chapter-copy p { color: var(--v3-fg-2); line-height: 1.7; max-width: 46ch; }
.v3-chapter-copy .v3-chapter-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--v3-cyan-bright);
  text-decoration: none;
}
.v3-chapter-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* artifact panel — a stylized "real system output" card */
.v3-artifact {
  background: var(--v3-navy-1);
  border: 1px solid var(--v3-line);
  border-radius: var(--v3-r-lg);
  box-shadow: var(--v3-shadow-3);
  overflow: hidden;
}
.v3-artifact-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  background: var(--v3-navy-2);
  border-bottom: 1px solid var(--v3-line);
  font-family: var(--v3-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--v3-fg-3);
}
.v3-artifact-bar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--v3-line-2); }
.v3-artifact-bar .dot.ok { background: var(--v3-cyan-bright); box-shadow: 0 0 6px rgba(0,191,255,0.8); }
.v3-artifact-body { padding: 18px 20px; }
.v3-artifact-body.v3-mono { font-size: 0.8rem; line-height: 1.75; color: var(--v3-fg-2); }
.v3-artifact-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(192,192,192,0.10);
}
.v3-artifact-row:last-child { border-bottom: none; }
.v3-artifact-row .k { color: var(--v3-fg-3); }
.v3-artifact-row .v { color: var(--v3-fg); }
.v3-artifact-row .v.ok { color: var(--v3-cyan); }
.v3-gate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.v3-gate {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--v3-mono);
  font-size: 0.75rem;
  color: var(--v3-fg-2);
  border: 1px solid var(--v3-line);
  border-radius: var(--v3-r);
  padding: 10px 12px;
  background: rgba(10,37,64,0.45);
}
.v3-gate .tick { color: var(--v3-cyan); font-weight: 700; }

/* ── 04 · SHIPPED (ventures) ────────────────────────────────────────── */
.v3-ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.v3-venture {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--v3-bg-light);
  border: 1px solid var(--v3-line-light);
  border-radius: var(--v3-r-lg);
  box-shadow: var(--v3-shadow-1);
  padding: 26px 26px 24px;
  text-decoration: none;
  color: var(--v3-ink);
  transition: transform 220ms var(--v3-ease), box-shadow 220ms var(--v3-ease), border-color 220ms var(--v3-ease);
}
a.v3-venture:hover {
  transform: translateY(-3px);
  box-shadow: var(--v3-shadow-2);
  border-color: rgba(0,191,255,0.55);
}
.v3-venture-tag {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--v3-mono);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--v3-r-sm);
  margin-bottom: 16px;
  background: rgba(0,109,133,0.10);
  color: var(--v3-cyan-deep);
  border: 1px solid rgba(0,109,133,0.22);
}
.v3-venture-tag.live { background: rgba(0,109,133,0.08); color: var(--v3-cyan-deep); border-color: rgba(0,109,133,0.3); }
.v3-venture h3 { margin: 0 0 8px; font-size: 1.18rem; font-weight: 640; letter-spacing: -0.01em; color: var(--v3-ink); }
.v3-venture p { margin: 0 0 16px; font-size: 0.92rem; line-height: 1.6; color: var(--v3-ink-2); flex: 1; }
.v3-venture .go {
  font-size: 0.88rem; font-weight: 600; color: var(--v3-cyan-deep);
}
.v3-venture-meta {
  font-family: var(--v3-mono);
  font-size: 0.72rem;
  color: var(--v3-ink-3);
  margin-bottom: 6px;
}

/* ── 05 · PROOF + samples harmonizer ────────────────────────────────── */
.v3-bench-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.v3-bench {
  background: var(--v3-bg-light);
  border: 1px solid var(--v3-line-light);
  border-radius: var(--v3-r-lg);
  padding: 22px 20px;
  box-shadow: var(--v3-shadow-1);
}
.v3-bench-n {
  font-family: var(--v3-mono);
  font-size: 1.9rem;
  font-weight: 560;
  letter-spacing: -0.02em;
  color: var(--v3-ink);
}
.v3-bench-n .up { color: var(--v3-cyan-deep); }
.v3-bench-l { margin-top: 7px; font-size: 0.8rem; color: var(--v3-ink-2); line-height: 1.45; }
.v3-bench-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--v3-ink-3);
  max-width: 70ch;
}
.v3-bench-note a { color: var(--v3-cyan-deep); }

/* transplanted samples cards — restyle the legacy classes */
.v3-light .sample-card, .samples .sample-card {
  background: var(--v3-bg-light);
  border: 1px solid var(--v3-line-light);
  border-radius: var(--v3-r-lg);
  box-shadow: var(--v3-shadow-1);
}

/* ── 06 · AUDIT shell (legacy interior preserved) ───────────────────── */
.v3-audit-shell { position: relative; }
.v3-audit-shell .v3-head { text-align: center; }
.v3-audit-shell .v3-head .v3-lede { margin-left: auto; margin-right: auto; }

/* ── 07 · PRICING (transplanted structure, new skin) ────────────────── */
.v3-pricing .pricing-sub { color: var(--v3-ink-2); }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0 26px;
}
.price-card {
  background: var(--v3-bg-light);
  border: 1px solid var(--v3-line-light);
  border-radius: var(--v3-r-lg);
  box-shadow: var(--v3-shadow-1);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.price-card h3 { font-size: 1.05rem; font-weight: 640; color: var(--v3-ink); margin: 0 0 6px; }
.price-card .price-amount {
  font-family: var(--v3-mono);
  font-size: 2.1rem;
  font-weight: 560;
  letter-spacing: -0.02em;
  color: var(--v3-ink);
  background: none;
  -webkit-text-fill-color: var(--v3-ink);
  margin: 6px 0 10px;
}
.price-card .price-amount span {
  font-size: 0.85rem; font-weight: 400;
  color: var(--v3-ink-3);
  -webkit-text-fill-color: var(--v3-ink-3);
}
.price-card ul { list-style: none; margin: 14px 0 20px; padding: 0; flex: 1; }
.price-card li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 0.88rem;
  color: var(--v3-ink-2);
  line-height: 1.5;
}
.price-card li::before {
  content: '✓';
  position: absolute; left: 0; top: 6px;
  color: var(--v3-cyan-deep);
  font-weight: 700;
}
.price-badge {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--v3-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v3-cyan-deep);
  background: rgba(0,109,133,0.08);
  border: 1px solid rgba(0,109,133,0.2);
  padding: 4px 9px;
  border-radius: var(--v3-r-sm);
  margin-bottom: 12px;
}
.price-card .btn-primary, .price-card .price-cta,
.pricing-flagship-card .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--v3-cyan-bright);
  color: var(--v3-navy);
  font: 600 0.95rem/1 var(--v3-font);
  border: none;
  border-radius: var(--v3-r);
  padding: 0.85rem 1.4rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms var(--v3-ease), box-shadow 200ms var(--v3-ease);
}
.price-card .btn-primary:hover, .pricing-flagship-card .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--v3-glow);
}
.price-card .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--v3-ink);
  border: 1px solid var(--v3-line-light);
  border-radius: var(--v3-r);
  font: 600 0.95rem/1 var(--v3-font);
  padding: 0.85rem 1.4rem;
  text-decoration: none;
  cursor: pointer;
}
.price-card .btn-secondary:hover { border-color: var(--v3-cyan-deep); }

/* flagship */
.pricing-flagship-card {
  position: relative;
  background: var(--v3-navy);
  color: var(--v3-fg);
  border: 1px solid rgba(0,191,255,0.4);
  border-radius: var(--v3-r-lg);
  box-shadow: var(--v3-shadow-3), 0 0 44px rgba(0,191,255,0.10);
  padding: 34px 32px;
  margin: 10px 0 26px;
  overflow: hidden;
}
.pricing-flagship-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 90% at 85% 10%, rgba(0,191,255,0.13), transparent 60%);
  pointer-events: none;
}
.pricing-flagship-card h3 { color: #fff; font-size: 1.3rem; margin-top: 0; }
.pricing-flagship-card .price-amount {
  font-family: var(--v3-mono);
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  font-size: 2.5rem;
  font-weight: 560;
}
.pricing-flagship-card .price-amount .anchor-strike {
  font-size: 1.1rem;
  color: var(--v3-fg-3);
  -webkit-text-fill-color: var(--v3-fg-3);
  text-decoration: line-through;
  margin-right: 10px;
  font-weight: 400;
}
.pricing-flagship-card ul { list-style: none; margin: 16px 0 22px; padding: 0; columns: 2; column-gap: 34px; }
.pricing-flagship-card li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 0.88rem;
  color: var(--v3-fg-2);
  break-inside: avoid;
}
.pricing-flagship-card li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--v3-cyan);
  font-weight: 700;
}
.pricing-anchor-block {
  font-size: 0.85rem;
  color: var(--v3-ink-2);
  background: var(--v3-bg-soft);
  border: 1px solid var(--v3-line-light);
  border-radius: var(--v3-r);
  padding: 14px 18px;
  margin-bottom: 22px;
}
#bulk-catalog {
  background: var(--v3-bg-soft);
  border: 1px dashed var(--v3-line-light);
  border-radius: var(--v3-r-lg);
  padding: 22px 24px;
  font-size: 0.92rem;
  color: var(--v3-ink-2);
}
#bulk-catalog a { color: var(--v3-cyan-deep); font-weight: 600; }
/* reassurance strip → quiet mono row */
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.reassurance-card {
  background: var(--v3-bg-light);
  border: 1px solid var(--v3-line-light);
  border-radius: var(--v3-r);
  padding: 16px 18px;
}
.reassurance-card-title { font-weight: 620; font-size: 0.9rem; color: var(--v3-ink); margin: 0 0 4px; }
.reassurance-card-body { font-size: 0.8rem; color: var(--v3-ink-2); line-height: 1.55; margin: 0; }
.reassurance-card img, .gv-icon-card { display: none; }   /* retire raster icons */

/* ── 08 · GOVERNANCE + honesty ──────────────────────────────────────── */
.v3-gov-intro {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(28px, 5vw, 64px);
  margin-bottom: 44px;
  align-items: start;
}
.v3-gov-links { display: flex; flex-direction: column; gap: 10px; }
.v3-gov-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--v3-line);
  border-radius: var(--v3-r-lg);
  background: var(--v3-navy-1);
  padding: 16px 18px;
  text-decoration: none;
  color: var(--v3-fg);
  transition: border-color 180ms var(--v3-ease), transform 180ms var(--v3-ease);
}
.v3-gov-link:hover { border-color: rgba(0,191,255,0.5); transform: translateX(3px); }
.v3-gov-link .t { font-weight: 600; font-size: 0.95rem; }
.v3-gov-link .d { font-size: 0.8rem; color: var(--v3-fg-3); margin-top: 2px; }
.v3-gov-link .arrow { color: var(--v3-cyan-bright); font-size: 1.1rem; }

/* details (governance + faq share) */
.v3-details details {
  border: 1px solid var(--v3-line);
  border-radius: var(--v3-r-lg);
  background: var(--v3-navy-1);
  margin-bottom: 10px;
  overflow: hidden;
}
.v3-light .v3-details details, .v3-soft .v3-details details {
  background: var(--v3-bg-light);
  border-color: var(--v3-line-light);
}
.v3-details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--v3-fg);
}
.v3-light .v3-details summary, .v3-soft .v3-details summary { color: var(--v3-ink); }
.v3-details summary::-webkit-details-marker { display: none; }
.v3-details summary::after {
  content: '+';
  font-family: var(--v3-mono);
  font-size: 1.1rem;
  color: var(--v3-cyan-bright);
  transition: transform 200ms var(--v3-ease);
  flex-shrink: 0;
}
.v3-light .v3-details summary::after, .v3-soft .v3-details summary::after { color: var(--v3-cyan-deep); }
.v3-details details[open] summary::after { transform: rotate(45deg); }
.v3-details details > *:not(summary) {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--v3-fg-2);
}
.v3-light .v3-details details > *:not(summary),
.v3-soft .v3-details details > *:not(summary) { color: var(--v3-ink-2); }
.v3-details details a { color: var(--v3-cyan-bright); }
.v3-light .v3-details details a, .v3-soft .v3-details details a { color: var(--v3-cyan-deep); }

/* ── 10 · GUIDES (lead magnets, compact) ────────────────────────────── */
.v3-guides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.v3-guide {
  background: var(--v3-bg-light);
  border: 1px solid var(--v3-line-light);
  border-radius: var(--v3-r-lg);
  box-shadow: var(--v3-shadow-1);
  padding: 26px;
}
.v3-guide h3 { margin: 0 0 6px; font-size: 1.05rem; font-weight: 640; color: var(--v3-ink); }
.v3-guide p { margin: 0 0 16px; font-size: 0.88rem; color: var(--v3-ink-2); line-height: 1.55; }
.v3-guide form { display: flex; flex-wrap: wrap; gap: 10px; }
.v3-guide input[type="text"], .v3-guide input[type="email"] {
  flex: 1 1 160px;
  font: 400 0.92rem var(--v3-font);
  color: var(--v3-ink);
  background: var(--v3-bg-soft);
  border: 1px solid var(--v3-line-light);
  border-radius: var(--v3-r);
  padding: 0.72rem 0.9rem;
  outline: none;
}
.v3-guide input:focus { border-color: var(--v3-cyan-deep); }
.v3-guide button[type="submit"] {
  font: 600 0.92rem var(--v3-font);
  background: var(--v3-navy);
  color: #fff;
  border: none;
  border-radius: var(--v3-r);
  padding: 0.72rem 1.3rem;
  cursor: pointer;
}
.v3-guide button[type="submit"]:hover { background: var(--v3-navy-3); }
.v3-guide .cro-gate-success, .v3-guide [id$="-gate-success"] {
  font-size: 0.88rem;
  color: var(--v3-cyan-deep);
  font-weight: 600;
}
.v3-guide .gate-note { font-size: 0.74rem; color: var(--v3-ink-3); margin-top: 8px; }

/* ── 11 · FINAL CTA + footer ────────────────────────────────────────── */
.v3-final {
  text-align: center;
  background:
    radial-gradient(ellipse 70% 90% at 50% 110%, rgba(0,191,255,0.14), transparent 65%),
    var(--v3-navy-void);
}
.v3-final .v3-h2 { max-width: 18ch; margin-left: auto; margin-right: auto; }
.v3-final .v3-lede { margin: 14px auto 0; }
.v3-final .v3-hero-ctas { justify-content: center; }

.v3-footer {
  background: var(--v3-navy-void);
  border-top: 1px solid var(--v3-line);
  padding: 44px 0 36px;
  font-size: 0.82rem;
  color: var(--v3-fg-3);
}
.v3-footer-inner {
  max-width: var(--v3-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
}
.v3-footer a { color: var(--v3-fg-2); text-decoration: none; }
.v3-footer a:hover { color: var(--v3-cyan-bright); }
.v3-footer .legal { margin-right: auto; line-height: 1.6; }

/* ── Reveal system — IntersectionObserver adds .is-in; CSS animates.
      No GSAP dependency: immune to teleport-scroll, killed tweens, CDN
      failures. Without JS, .v3-reveal stays fully visible. ─────────── */
.v3-reveal { opacity: 1; }
html.v3-anim .v3-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--v3-ease-out), transform 0.85s var(--v3-ease-out);
  transition-delay: var(--v3-stagger, 0ms);
}
html.v3-anim .v3-reveal.is-in { opacity: 1; transform: none; }
html.v3-reduced .v3-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .v3-chapter { grid-template-columns: 1fr; gap: 22px; }
  .v3-chapter:nth-child(even) .v3-chapter-copy { order: 0; }
  .v3-pulse-grid { grid-template-columns: 1fr 1fr; }
  .v3-ventures-grid { grid-template-columns: 1fr 1fr; }
  .v3-bench-grid { grid-template-columns: 1fr 1fr; }
  .v3-gov-intro { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .v3-nav-links a:not(.v3-nav-cta):not(#nav-auth-login) { display: none; }
  .v3-nav-inner { height: 58px; gap: 14px; }
  .v3-hero { padding-top: 96px; min-height: 92svh; }
  .v3-hero .v3-h1 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
  .v3-hero-ctas .v3-btn { width: 100%; }
  .v3-pulse-grid { grid-template-columns: 1fr 1fr; }
  .v3-stat { padding: 18px 16px; }
  .v3-stat-n { font-size: 1.45rem; }
  .v3-ventures-grid, .v3-bench-grid, .pricing-cards,
  .v3-guides-grid, .reassurance-grid { grid-template-columns: 1fr; }
  .pricing-flagship-card ul { columns: 1; }
  .v3-pulse-link { margin-left: 0; }
  .v3-gate-grid { grid-template-columns: 1fr; }
  .v3-hero-scroll { display: none; }
}

/* ── Reduced motion ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .v3-hero-scroll { display: none; }
}

/* ── Hero intro — pure CSS so no script can strand it (2026-06-10) ──── */
@keyframes v3HeroIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
html.v3-anim .v3-hero-eyebrow { animation: v3HeroIn 0.7s var(--v3-ease-out) 0.05s both; }
html.v3-anim .v3-hero .v3-h1  { animation: v3HeroIn 0.9s var(--v3-ease-out) 0.14s both; }
html.v3-anim .v3-hero-sub     { animation: v3HeroIn 0.8s var(--v3-ease-out) 0.30s both; }
html.v3-anim .v3-hero-ctas    { animation: v3HeroIn 0.7s var(--v3-ease-out) 0.46s both; }
html.v3-anim .hero-price-line { animation: v3HeroIn 0.7s var(--v3-ease-out) 0.60s both; }
html.v3-anim .v3-hero-scroll  { animation: v3HeroIn 0.9s var(--v3-ease-out) 0.95s both; }
html.v3-reduced .v3-hero-eyebrow, html.v3-reduced .v3-hero .v3-h1,
html.v3-reduced .v3-hero-sub, html.v3-reduced .v3-hero-ctas,
html.v3-reduced .hero-price-line, html.v3-reduced .v3-hero-scroll { animation: none; }
