/* =========================================================================
   RealityScore — LIGHT dashboard theme (shipping default)
   Light is the default palette. A dark theme layers on via
   prefers-color-scheme + :root[data-theme] at the token level only.
   ========================================================================= */
:root {
  color-scheme: light;

  /* Surfaces */
  --ground: #edf1eb;          /* page bg — light sage */
  --bg: #edf1eb;
  --surface: #ffffff;         /* cards */
  --surface-soft: #f7f8f3;
  --surface-muted: #f2f4ee;
  --surface2: #f2f4ee;

  /* Ink */
  --ink: #121419;
  --ink-muted: #5d6472;
  --ink-faint: #8b93a1;

  /* Lines */
  --line: #dfe5dc;
  --border: #dfe5dc;
  --border-dark: #cfd6ca;

  /* Accent — purple */
  --accent: #6755ff;
  --accent-hover: #5846f0;
  --accent-soft: #efe9ff;
  --accent-light: rgba(103, 85, 255, 0.08);

  /* Verdict colors */
  --verified: #2b7a36;   --verified-bg: rgba(183, 244, 146, 0.18);
  --plausible: #a86a08;  --plausible-bg: rgba(255, 191, 105, 0.16);
  --unverified: #c53d3d; --unverified-bg: rgba(255, 143, 143, 0.16);
  --good: #2b7a36; --warn: #a86a08; --bad: #c53d3d;

  /* Signal fills */
  --accent-mint: #b7f492; --accent-mint-ink: #2b7a36;
  --accent-amber: #ffbf69;
  --accent-red: #ff8f8f;

  /* Dark tokens — kept ONLY for intentional dark-contrast panels */
  --dark-bg: #171a20;
  --dark-surface: #202431;
  --dark-elevated: #2a2f3e;
  --dark-border: #313847;

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
  --text-hero: clamp(2.6rem, 5.2vw, 4.2rem);
  --text-xl: clamp(2.4rem, 5vw, 3.6rem);
  --text-lg: clamp(1.7rem, 3vw, 2.5rem);
  --text-body: clamp(1rem, 0.5vw + 0.85rem, 1.125rem);
  --text-sm: 0.9rem;
  --text-xs: 0.78rem;

  /* Rhythm */
  --pad: clamp(3rem, 6vw, 5rem);
  --radius-shell: 24px;
  --radius-card: 20px;
  --radius: 14px;
  --radius-subcard: 14px;
  --radius-card-lg: 26px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-soft: 0 10px 30px rgba(18, 20, 25, 0.05);
  --shadow-card: 0 24px 60px rgba(18, 20, 25, 0.08);
  --shadow-shell: 0 24px 60px rgba(18, 20, 25, 0.08);
}

/* Dark theme layer — token overrides only. Not polished; light ships. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --ground: #171a20; --bg: #171a20;
    --surface: #202431; --surface-soft: #1b1f28;
    --surface-muted: #262b38; --surface2: #262b38;
    --ink: #e8edf4; --ink-muted: #9aa3b2; --ink-faint: #6b7484;
    --line: #313847; --border: #313847; --border-dark: #3c4557;
    --accent-soft: rgba(103, 85, 255, 0.20); --accent-light: rgba(103, 85, 255, 0.16);
    --verified-bg: rgba(183, 244, 146, 0.12);
    --plausible-bg: rgba(255, 191, 105, 0.12);
    --unverified-bg: rgba(255, 143, 143, 0.12);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
    --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.45);
    --shadow-shell: 0 24px 60px rgba(0, 0, 0, 0.45);
  }
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --ground: #171a20; --bg: #171a20;
  --surface: #202431; --surface-soft: #1b1f28;
  --surface-muted: #262b38; --surface2: #262b38;
  --ink: #e8edf4; --ink-muted: #9aa3b2; --ink-faint: #6b7484;
  --line: #313847; --border: #313847; --border-dark: #3c4557;
  --accent-soft: rgba(103, 85, 255, 0.20); --accent-light: rgba(103, 85, 255, 0.16);
  --verified-bg: rgba(183, 244, 146, 0.12);
  --plausible-bg: rgba(255, 191, 105, 0.12);
  --unverified-bg: rgba(255, 143, 143, 0.12);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-shell: 0 24px 60px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.mono { font-family: var(--font-mono); }
h1, h2, h3, h4 { letter-spacing: -0.02em; }

/* ---- Dashboard utilities ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.masonry { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

/* ---- TICKER ---- */
.ticker {
  background: var(--surface-soft);
  color: var(--ink-muted);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}
.ticker-track { display: inline-block; animation: ticker-scroll 30s linear infinite; }
.ticker-item { padding: 0 1.5rem; color: var(--ink); }
.ticker-sep { color: var(--accent); padding: 0 0.5rem; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- HEADER ---- */
header {
  padding: 1rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 950;
}
.brand {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  line-height: 1;
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--ink);
}
a.brand { color: inherit; text-decoration: none; }
.brand-dot {
  width: 8px; height: 8px;
  background: var(--verified);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px var(--verified-bg);
}
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links .nav-submit {
  color: var(--accent);
  border: 1px solid rgba(103, 85, 255, 0.28);
  background: var(--accent-soft);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1;
  align-self: center;
}
.nav-links .nav-submit:hover { color: #fff; background: var(--accent); border-color: var(--accent); }

/* ---- BUTTONS ---- */
.btn-primary {
  padding: 0.9rem 1.5rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(103, 85, 255, 0.22);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-secondary {
  padding: 0.9rem 1.5rem;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

/* ---- SECTION TAG ---- */
.section-tag {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}

/* ============================ HOME DASHBOARD ============================ */
main.dash {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(1.25rem, 2.5vw, 2rem) 5vw clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.6vw, 2rem);
}
.panel-head { margin-bottom: 1.5rem; max-width: 62ch; }
.panel-head h2 { font-size: var(--text-lg); font-weight: 800; margin: 0.35rem 0 0.6rem; }
.panel-desc { color: var(--ink-muted); font-size: var(--text-body); line-height: 1.6; }
.panel-foot { margin-top: 1.25rem; font-family: var(--font-mono); font-size: var(--text-xs); color: var(--ink-faint); }
.panel-foot a { color: var(--accent); text-decoration: none; }
.panel-foot a:hover { text-decoration: underline; }

/* ---- HERO ---- */
.hero { padding: 0; border: none; background: transparent; }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
.hero-tag {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  border: 1px solid rgba(103, 85, 255, 0.18);
}
.hero h1 {
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 1.1rem;
  text-wrap: balance;
}
.hero-sub {
  color: var(--ink-muted);
  font-size: var(--text-body);
  margin-bottom: 1rem;
  line-height: 1.55;
  max-width: 46ch;
}
.method-proof {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.hero-conversion { display: flex; flex-direction: column; gap: 1.1rem; }
.hero-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.hero-benefit {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-subcard);
  padding: 0.95rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.hero-benefit:hover { transform: translateY(-2px); border-color: rgba(103, 85, 255, 0.3); }
.hero-benefit-head { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.65rem; }
.hero-benefit-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(103, 85, 255, 0.18);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-benefit:nth-child(2) .hero-benefit-icon { background: var(--verified-bg); border-color: rgba(43, 122, 54, 0.2); color: var(--verified); }
.hero-benefit:nth-child(3) .hero-benefit-icon { background: var(--plausible-bg); border-color: rgba(168, 106, 8, 0.2); color: var(--plausible); }
.hero-benefit-kicker { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; color: var(--accent); font-weight: 700; }
.hero-benefit:nth-child(2) .hero-benefit-kicker { color: var(--verified); }
.hero-benefit:nth-child(3) .hero-benefit-kicker { color: var(--plausible); }
.hero-benefit p { color: var(--ink-muted); font-size: 0.82rem; line-height: 1.5; }
.hero-cta-block { width: 100%; }
.hero-signup { display: flex; flex-direction: column; gap: 0.7rem; width: 100%; }
.hero-signup input {
  width: 100%;
  min-height: 58px;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-signup input::placeholder { color: var(--ink-faint); }
.hero-signup input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
.hero-signup .btn-primary { min-height: 58px; width: 100%; font-size: 0.95rem; }
.hero-note { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--ink-faint); margin-top: 0.65rem; }

/* generic form (bottom CTA) */
.hero-form { display: flex; gap: 0.6rem; width: 100%; margin: 0; }
.hero-form input {
  flex: 1;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-family: var(--font-mono);
  background: var(--surface);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }

/* ---- THIS WEEK'S AUDITS — claim panels ---- */
.score-legend { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.legend-item {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
}
.legend-item.verified { background: var(--verified-bg); color: var(--verified); border-color: rgba(43, 122, 54, 0.25); }
.legend-item.plausible { background: var(--plausible-bg); color: var(--plausible); border-color: rgba(168, 106, 8, 0.25); }
.legend-item.unverified { background: var(--unverified-bg); color: var(--unverified); border-color: rgba(197, 61, 61, 0.25); }

.claims-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.1rem;
}
.claim-panel {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-left: 4px solid var(--border-dark);
  border-radius: var(--radius-subcard);
  padding: 1.15rem 1.2rem 1.05rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.claim-panel:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.claim-panel.verified { border-left-color: var(--verified); }
.claim-panel.plausible { border-left-color: var(--plausible); }
.claim-panel.unverified { border-left-color: var(--unverified); }
.claim-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; }
.claim-handle {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-muted);
  display: flex; align-items: center; gap: 0.45rem; flex-wrap: wrap;
}
.platform-chip {
  display: inline-flex; align-items: center; gap: 0.34rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  line-height: 1;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink-muted);
  white-space: nowrap;
}
.platform-chip.platform-x { background: var(--accent-soft); color: var(--accent); border-color: rgba(103, 85, 255, 0.22); }
.platform-chip.platform-youtube { background: var(--unverified-bg); color: var(--unverified); border-color: rgba(197, 61, 61, 0.22); }
.platform-icon { width: 12px; height: 12px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.platform-icon svg { width: 100%; height: 100%; display: block; }
.claim-text {
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  display: block;
}
.claim-text:hover { color: var(--accent); }
.claim-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.claim-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 0.18rem 0.45rem;
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink-muted);
  border: 1px solid var(--border);
  text-transform: capitalize;
}
.claim-tag.red { background: var(--unverified-bg); color: var(--unverified); border-color: rgba(197, 61, 61, 0.25); }
.claim-panel-foot {
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.7rem;
  border-top: 1px solid var(--border);
}
.claim-source {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.claim-source:hover { text-decoration: underline; }
.claim-idx { font-family: var(--font-mono); font-size: 0.6rem; color: var(--ink-faint); margin-left: auto; }
.score-badge {
  font-family: var(--font-mono);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: 1.35rem;
  min-width: 58px;
  text-align: center;
  padding: 0.4rem 0.55rem;
  border-radius: var(--radius);
  line-height: 1.05;
}
.score-label { display: block; font-size: 0.5rem; font-weight: 600; letter-spacing: 0.06em; margin-top: 0.2rem; }
.score-badge.verified { background: var(--verified-bg); color: var(--verified); }
.score-badge.plausible { background: var(--plausible-bg); color: var(--plausible); }
.score-badge.unverified { background: var(--unverified-bg); color: var(--unverified); }

.conf-badge {
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.04em;
  padding: 0.18rem 0.45rem; border-radius: var(--radius-pill); display: inline-block;
}
.conf-badge.high { background: var(--verified-bg); color: var(--verified); }
.conf-badge.medium { background: var(--plausible-bg); color: var(--plausible); }
.conf-badge.low { background: var(--unverified-bg); color: var(--unverified); }
.share-btn {
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.04em;
  color: var(--accent); background: none; border: 1px solid rgba(103, 85, 255, 0.4);
  border-radius: var(--radius-pill); padding: 0.2rem 0.5rem; cursor: pointer;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.25rem;
  text-decoration: none;
}
.share-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---- SCORING ENGINE — 2x3 axis grid ---- */
.method-trust-strip { margin-top: 1rem; display: flex; gap: 0.55rem; flex-wrap: wrap; }
.method-trust-chip {
  display: inline-flex; align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(103, 85, 255, 0.18);
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.engine-grid, .axis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.axis-card {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-subcard);
  padding: 1.4rem;
  transition: all 0.25s ease;
}
.axis-card:hover { border-color: var(--accent); box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.axis-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.axis-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  background: var(--accent-soft);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(103, 85, 255, 0.18);
}
.axis-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted);
  transition: all 0.25s;
}
.axis-card:hover .axis-icon { color: var(--accent); background: var(--accent-soft); border-color: rgba(103, 85, 255, 0.2); }
.axis-name { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.4rem; }
.axis-desc { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.55; margin-bottom: 1rem; }
.axis-pct-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--verified);
  background: var(--verified-bg);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
}
.axis-signals { display: flex; gap: 0.4rem; margin-top: 0.85rem; font-family: var(--font-mono); font-size: 0.62rem; flex-wrap: wrap; }
.axis-signal { padding: 0.22rem 0.5rem; border-radius: var(--radius-pill); }
.axis-signal.high { background: var(--verified-bg); color: var(--verified); border: 1px solid rgba(43, 122, 54, 0.2); }
.axis-signal.low { background: var(--unverified-bg); color: var(--unverified); border: 1px solid rgba(197, 61, 61, 0.2); }

/* ---- PRICING ---- */
.offer-section { text-align: center; }
.offer-section h2 { font-size: var(--text-lg); font-weight: 800; margin-bottom: 0.5rem; }
.offer-intro { color: var(--ink-muted); font-size: var(--text-body); margin: 0 auto 1.75rem; max-width: 60ch; }
.offer-grid.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.offer-card {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s;
}
.offer-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.offer-card.featured {
  border-color: var(--accent);
  border-width: 2px;
  background: var(--surface);
  box-shadow: 0 20px 44px rgba(103, 85, 255, 0.14);
}
.offer-badge {
  position: absolute;
  top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(103, 85, 255, 0.28);
}
.offer-tier { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--ink-faint); letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.offer-price { font-size: 2.6rem; font-weight: 800; margin-bottom: 0.25rem; }
.offer-price .price-suffix { font-size: var(--text-sm); color: var(--ink-muted); font-weight: 400; }
.offer-compare { font-family: var(--font-mono); font-size: 0.8rem; color: var(--verified); font-weight: 600; margin-bottom: 0.35rem; line-height: 1.4; }
.offer-compare s { color: var(--ink-faint); font-weight: 400; text-decoration: line-through; margin-right: 0.25rem; }
.offer-desc { color: var(--ink-muted); font-size: var(--text-sm); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.offer-card ul { list-style: none; margin-bottom: 1.5rem; flex: 1; }
.offer-card li { font-size: var(--text-sm); color: var(--ink-muted); padding: 0.4rem 0 0.4rem 1.4rem; position: relative; }
.offer-card li::before { content: "+"; position: absolute; left: 0; color: var(--verified); font-family: var(--font-mono); font-weight: 700; }
.offer-card .btn-primary, .offer-card .btn-secondary { width: 100%; justify-content: center; text-align: center; }
.founders-lock-text { font-family: var(--font-mono); font-size: 0.72rem; color: var(--verified); margin-top: 0.75rem; display: block; line-height: 1.4; text-align: center; }
.offer-footnote { margin-top: 1.5rem; font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-muted); letter-spacing: 0.03em; }

/* ---- CTA PANEL ---- */
.cta-panel { text-align: center; }
.cta-panel h2 { font-size: var(--text-lg); font-weight: 800; margin: 0 auto 1.4rem; max-width: 24ch; text-wrap: balance; }
.cta-panel .hero-form { max-width: 480px; margin: 0 auto 0.85rem; }
.cta-panel .hero-note { max-width: 46ch; margin: 0.65rem auto 0; text-align: center; }
.confirm { color: var(--verified); font-family: var(--font-mono); font-size: var(--text-sm); padding-top: 0.65rem; }
.form-error { color: var(--unverified); font-family: var(--font-mono); font-size: var(--text-xs); padding-top: 0.65rem; }

/* ---- LEGAL LINE ---- */
.legal-line { text-align: center; font-family: var(--font-mono); font-size: var(--text-xs); color: var(--ink-faint); max-width: 70ch; margin: 0 auto; line-height: 1.6; }
.legal-line a { color: var(--accent); text-decoration: none; }
.legal-line a:hover { text-decoration: underline; }

/* ---- FOOTER ---- */
footer { padding: 2rem 5vw; border-top: 1px solid var(--border); font-size: var(--text-xs); color: var(--ink-faint); }
.site-footer { background: transparent; }
.site-footer-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-footer-links { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 0.85rem; }
.site-footer-links a { color: var(--ink-faint); text-decoration: none; }
.site-footer-links a:hover { color: var(--ink); }

/* ---- LANGUAGE SELECTOR ---- */
.lang-selector { position: relative; }
.lang-btn {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 0.35rem 0.6rem; cursor: pointer; display: flex; align-items: center; gap: 0.35rem;
  color: var(--ink-muted); transition: border-color 0.2s; line-height: 1;
}
.lang-btn:hover { border-color: var(--accent); color: var(--ink); }
.lang-btn svg { width: 14px; height: 14px; }
.lang-code { font-size: 0.65rem; letter-spacing: 0.04em; font-family: var(--font-mono); }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  min-width: 130px; box-shadow: var(--shadow-soft); z-index: 100; overflow: hidden;
}
.lang-selector.open .lang-dropdown { display: block; }
.lang-opt { display: block; padding: 0.5rem 0.75rem; font-size: var(--text-sm); color: var(--ink-muted); text-decoration: none; transition: background 0.15s; }
.lang-opt:hover { background: var(--accent-soft); color: var(--ink); }
.lang-opt.active { color: var(--accent); font-weight: 600; }

.loading { padding: 2rem; color: var(--ink-faint); font-family: var(--font-mono); font-size: var(--text-sm); }

/* HAMBURGER */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; flex-direction: column; gap: 4px; z-index: 1100; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ======================= SHARED PAGES (non-home) ======================= */
/* Interior pages (methodology, legal, submit, leaderboard) share these.
   Kept in the light system; intentional dark-contrast panels pinned to dark tokens. */
.page-main { background: var(--surface); border-bottom: 1px solid var(--border); }
.page-shell { max-width: 960px; margin: 0 auto; padding: calc(var(--pad) * 0.9) 5vw calc(var(--pad) * 1.05); }
.page-shell.page-shell-wide { max-width: 1100px; }
.page-back { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--accent); text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem; margin-bottom: 1.5rem; }
.page-back:hover { text-decoration: underline; }
.page-hero { max-width: 760px; margin-bottom: 2.5rem; }
.page-kicker { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.1em; color: var(--accent); margin-bottom: 0.9rem; }
.page-title { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -0.03em; font-weight: 800; margin-bottom: 0.85rem; }
.page-intro { color: var(--ink-muted); font-size: var(--text-body); line-height: 1.75; max-width: 60ch; }
.page-meta { margin-top: 1.1rem; font-family: var(--font-mono); font-size: var(--text-xs); color: var(--ink-faint); }
.page-grid { display: grid; gap: 1.25rem; }
.page-grid.two-col { grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr); align-items: start; }
.page-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 1.5rem; box-shadow: var(--shadow-soft); }
.page-panel.soft { background: var(--surface-soft); box-shadow: none; }
.page-panel.dark {
  background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
  border-color: var(--dark-border);
  color: #fff;
}
.page-panel.dark p, .page-panel.dark li { color: rgba(255, 255, 255, 0.74); }
.page-panel h2 { font-size: clamp(1.25rem, 2vw, 1.65rem); margin-bottom: 0.6rem; font-weight: 700; }
.page-panel h3 { font-size: var(--text-sm); margin-bottom: 0.7rem; font-weight: 700; }
.page-panel p { color: var(--ink-muted); font-size: var(--text-sm); line-height: 1.7; }
.page-list { padding-left: 1.1rem; margin-top: 0.75rem; }
.page-list li { color: var(--ink-muted); font-size: var(--text-sm); line-height: 1.75; margin-bottom: 0.35rem; }

.legal-stack { display: flex; flex-direction: column; gap: 1.5rem; }
.legal-section { padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; padding-bottom: 0; }
.legal-section h2 { font-size: 1.05rem; margin-bottom: 0.7rem; font-weight: 700; }
.legal-callout { background: var(--surface-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.15rem 1.2rem; }
.legal-callout p { margin: 0; font-size: var(--text-sm); color: var(--ink-muted); }
.contact-card { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-card .btn-primary { width: fit-content; }

.score-summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.25rem; }
.score-summary-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem; box-shadow: var(--shadow-soft); }
.score-summary-card .mono { display: block; color: var(--accent); font-size: 0.68rem; letter-spacing: 0.08em; margin-bottom: 0.55rem; }
.score-summary-card h3 { font-size: 0.95rem; margin-bottom: 0.35rem; }
.score-summary-card p { font-size: 0.84rem; color: var(--ink-muted); line-height: 1.65; }
.score-process { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr); gap: 1rem; margin-bottom: 2rem; }
.method-flow-shell, .method-evidence-shell { margin-bottom: 1.5rem; padding: 1.35rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.method-flow-head, .method-evidence-copy { max-width: 60ch; margin-bottom: 1rem; }
.method-flow-head h2, .method-evidence-copy h2 { font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 0.45rem; }
.method-flow-head p, .method-evidence-copy p { color: var(--ink-muted); font-size: 0.92rem; line-height: 1.7; }
.method-flow-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.85rem; }
.method-flow-card {
  position: relative; padding: 1rem; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
  color: #fff; border: 1px solid var(--dark-border);
}
.method-flow-card strong { display: block; font-size: 0.92rem; margin-bottom: 0.3rem; }
.method-flow-card p { color: rgba(255, 255, 255, 0.76); font-size: 0.8rem; line-height: 1.6; }
.method-flow-icon {
  width: 2rem; height: 2rem; display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 0.8rem; border-radius: 8px;
  background: var(--accent-soft); border: 1px solid rgba(103, 85, 255, 0.3);
  color: #c9c0ff; font-family: var(--font-mono); font-size: 0.76rem;
}
.method-evidence-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.9rem; }
.method-evidence-card { padding: 1rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface-soft); }
.method-evidence-card h3 { font-size: 0.96rem; margin-bottom: 0.35rem; }
.method-evidence-card p { color: var(--ink-muted); font-size: 0.82rem; line-height: 1.65; }
.method-evidence-pill { display: inline-flex; align-items: center; padding: 0.25rem 0.5rem; margin-bottom: 0.7rem; border-radius: 6px; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.06em; }
.method-evidence-card.observed { border-color: rgba(43, 122, 54, 0.2); background: var(--verified-bg); }
.method-evidence-card.observed .method-evidence-pill { color: var(--verified); background: rgba(43, 122, 54, 0.12); }
.method-evidence-card.inferred { border-color: rgba(168, 106, 8, 0.2); background: var(--plausible-bg); }
.method-evidence-card.inferred .method-evidence-pill { color: var(--plausible); background: rgba(168, 106, 8, 0.12); }
.method-evidence-card.modeled { border-color: rgba(103, 85, 255, 0.2); background: var(--accent-soft); }
.method-evidence-card.modeled .method-evidence-pill { color: var(--accent); background: rgba(103, 85, 255, 0.14); }
.score-formula {
  background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
  border: 1px solid var(--dark-border); border-radius: var(--radius);
  padding: 1.35rem; color: #fff; box-shadow: var(--shadow-card);
}
.score-formula .page-kicker, .score-formula .mono { color: #c9c0ff; }
.score-formula h2 { color: #fff; font-size: 1.45rem; margin-bottom: 0.7rem; }
.score-formula p { color: rgba(255, 255, 255, 0.74); }
.score-formula-flow { display: grid; gap: 0.75rem; margin-top: 1rem; }
.score-formula-step { display: grid; grid-template-columns: 72px 1fr; gap: 0.85rem; align-items: start; padding: 0.85rem 0; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.score-formula-step:first-child { border-top: none; padding-top: 0; }
.score-formula-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; color: #c9c0ff; }
.score-formula-step strong { display: block; font-size: 0.92rem; margin-bottom: 0.15rem; }
.score-formula-step p { font-size: 0.82rem; line-height: 1.6; }
.score-side-stack { display: grid; gap: 1rem; }
.score-note { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; }
.score-note .mono { display: block; font-size: 0.68rem; color: var(--accent); letter-spacing: 0.08em; margin-bottom: 0.55rem; }
.score-note h3 { margin-bottom: 0.4rem; font-size: 0.95rem; }
.score-note p { font-size: 0.84rem; line-height: 1.65; color: var(--ink-muted); }
.score-note ul { padding-left: 1.05rem; margin-top: 0.65rem; }
.score-note li { font-size: 0.84rem; color: var(--ink-muted); line-height: 1.65; margin-bottom: 0.25rem; }

.m-wrap { max-width: 1100px; margin: 0 auto; padding: calc(var(--pad) * 0.9) 5vw calc(var(--pad) * 1.05); }
.m-section { margin-bottom: 2rem; }
.m-section h2 { font-size: clamp(1.35rem, 2vw, 1.8rem); margin-bottom: 0.75rem; font-weight: 700; }
.m-section h3 { font-size: 0.8rem; font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.m-section > p, .m-section li { color: var(--ink-muted); font-size: var(--text-sm); line-height: 1.7; }
.m-axis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1rem; }
.m-axis-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.15rem; box-shadow: var(--shadow-soft); }
.m-axis-top { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.75rem; }
.m-axis-id { font-family: var(--font-mono); font-size: 0.68rem; color: var(--accent); background: var(--accent-soft); border: 1px solid rgba(103, 85, 255, 0.18); padding: 0.2rem 0.45rem; border-radius: 6px; }
.m-axis-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.35rem; }
.m-axis-card .weight { display: inline-flex; align-items: center; gap: 0.25rem; font-family: var(--font-mono); font-size: 0.68rem; color: var(--accent); background: var(--accent-soft); border: 1px solid rgba(103, 85, 255, 0.18); padding: 0.2rem 0.45rem; border-radius: 6px; }
.m-axis-card p { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.65; margin: 0.7rem 0 0; }
.m-penalties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.m-penalty { background: var(--surface); border: 1px solid rgba(197, 61, 61, 0.18); border-radius: var(--radius); padding: 1.05rem; }
.m-penalty-head { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.45rem; }
.m-penalty strong { font-size: 0.92rem; }
.m-penalty span { font-family: var(--font-mono); font-size: 0.68rem; color: var(--unverified); }
.m-penalty p { font-size: 0.82rem; color: var(--ink-muted); line-height: 1.6; margin: 0; }
.m-conf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.m-conf-card { padding: 1rem; border-radius: var(--radius); text-align: left; }
.m-conf-card.high { background: var(--verified-bg); border: 1px solid rgba(43, 122, 54, 0.2); }
.m-conf-card.medium { background: var(--plausible-bg); border: 1px solid rgba(168, 106, 8, 0.2); }
.m-conf-card.low { background: var(--unverified-bg); border: 1px solid rgba(197, 61, 61, 0.2); }
.m-conf-card h4 { font-size: var(--text-sm); margin-bottom: 0.3rem; }
.m-conf-card p { font-size: 0.78rem; color: var(--ink-muted); margin: 0; }

/* WATCHLIST — dark contrast panel (used off-home) */
.watchlist-section { padding: var(--pad) 5vw; border-bottom: 1px solid var(--border); background: var(--dark-bg); color: #fff; }
.watchlist-inner { max-width: 600px; margin: 0 auto; }
.watchlist-section h2 { font-size: var(--text-lg); margin-bottom: 0.75rem; font-weight: 700; color: #fff; }
.watchlist-desc { color: rgba(255, 255, 255, 0.7); font-size: var(--text-body); margin-bottom: 2rem; line-height: 1.6; }
.watchlist-form input[type="email"] { width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--dark-border); border-radius: var(--radius); font-size: var(--text-sm); font-family: var(--font-mono); background: var(--dark-surface); color: #fff; outline: none; margin-bottom: 1.25rem; }
.watchlist-form input[type="email"]:focus { border-color: var(--accent); }
.watchlist-options { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }
.watchlist-group { display: flex; flex-direction: column; gap: 0.5rem; }
.wl-label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.7); }
.wl-checks { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.wl-checks label { font-size: var(--text-sm); color: #fff; display: flex; align-items: center; gap: 0.3rem; cursor: pointer; }
.wl-checks input[type="checkbox"] { accent-color: var(--accent); }
.watchlist-form select { width: 100%; padding: 0.5rem 0.75rem; border: 1px solid var(--dark-border); border-radius: var(--radius); background: var(--dark-surface); color: #fff; font-family: var(--font-mono); font-size: var(--text-sm); }
.watchlist-form .btn-primary { width: 100%; justify-content: center; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .engine-grid, .axis-grid, .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-grid.two-col { grid-template-columns: 1fr; max-width: 420px; }
  .score-summary-grid, .score-process, .method-flow-grid, .method-evidence-grid, .m-penalties-grid, .m-conf-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-benefits { grid-template-columns: 1fr; }
  .engine-grid, .axis-grid, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .m-axis { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 1rem 5vw; gap: 0; z-index: 1050; box-shadow: var(--shadow-soft);
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links a { display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: var(--text-sm); }
  .nav-links a:last-of-type { border-bottom: none; }
  .nav-links .nav-submit { margin-top: 0.4rem; width: fit-content; padding: 0.55rem 0.85rem; border-bottom: none; }
  .nav-links .lang-selector { padding: 0.75rem 0; }
  .claims-grid { grid-template-columns: 1fr; }
  .site-footer-inner { flex-direction: column; align-items: flex-start; }
  .site-footer-links { justify-content: flex-start; }
  .hero-form { flex-direction: column; }
  .cta-panel .hero-form input, .cta-panel .hero-form button { width: 100%; }
  .watchlist-options { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .axis-card, .offer-card, .btn-primary, .btn-secondary, .hero-benefit, .claim-panel { transition: none; }
}
