/* ============================================================
   NIL ValueCalc - styles
   ============================================================ */
:root {
  --bg: #0b1120;
  --bg-soft: #0f172a;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --ink: #0b1120;
  --ink-soft: #475569;
  --line: #e2e8f0;
  --brand: #2563eb;
  --brand-2: #22d3ee;
  --accent: #22c55e;
  --accent-2: #a855f7;
  --warn: #f59e0b;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 45px -20px rgba(2, 6, 23, 0.35);
  --shadow-lg: 0 35px 70px -30px rgba(2, 6, 23, 0.55);
  --max: 1120px;
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: 'Sora', var(--font);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface-2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.15; margin: 0 0 .4em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-size: 1rem; padding: .85rem 1.4rem;
  border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--accent-2));
  color: #fff; box-shadow: 0 12px 24px -10px rgba(37, 99, 235, .7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -12px rgba(37, 99, 235, .8); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-block { width: 100%; margin-top: .4rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 17, 32, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; color: #fff; font-family: var(--display); font-weight: 800; }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-size: .8rem; letter-spacing: .5px; color: #fff;
}
.brand-text { font-size: 1.15rem; }
.brand-accent { color: var(--brand-2); }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { color: #cbd5e1; font-weight: 500; font-size: .95rem; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: rgba(255,255,255,.1); color: #fff !important; padding: .5rem 1rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
}
.nav-cta:hover { background: rgba(255,255,255,.2); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(1200px 500px at 15% -10%, rgba(34,211,238,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(168,85,247,.22), transparent 55%),
    linear-gradient(180deg, #0b1120, #0f172a 70%, #111c33);
  padding: 40px 0 28px;
}
.hero-glow {
  position: absolute; inset: auto 0 -40% 0; height: 60%;
  background: radial-gradient(60% 100% at 50% 0%, rgba(37,99,235,.35), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.hero-inner { position: relative; max-width: 760px; }
.eyebrow {
  display: inline-block; font-weight: 600; font-size: .82rem; letter-spacing: .04em;
  text-transform: uppercase; color: #93c5fd; background: rgba(147,197,253,.12);
  padding: .35rem .8rem; border-radius: 999px; border: 1px solid rgba(147,197,253,.25); margin-bottom: 1.1rem;
}
.hero h1 { font-size: clamp(2rem, 4.8vw, 3.1rem); font-weight: 800; letter-spacing: -.02em; }
.grad-text {
  background: linear-gradient(120deg, var(--brand-2), #a855f7 55%, #22c55e);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { font-size: 1.1rem; color: #cbd5e1; max-width: 620px; margin: .7rem 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-stats { display: flex; gap: 2.2rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--display); font-size: 1.7rem; color: #fff; }
.hero-stats span { color: #94a3b8; font-size: .9rem; }

/* Split hero: pitch on the left, calculator card on the right */
.hero-split { display: grid; grid-template-columns: 1fr 1.12fr; gap: 38px; align-items: start; }
.hero-copy { padding-top: 8px; }
.hero-points { list-style: none; padding: 0; margin: 1.3rem 0 0; display: flex; flex-direction: column; gap: .55rem; }
.hero-points li { position: relative; padding-left: 1.6rem; color: #cbd5e1; font-size: .98rem; }
.hero-points li::before { content: "\2713"; position: absolute; left: 0; color: #22c55e; font-weight: 700; }
.hero-tool { display: flex; flex-direction: column; gap: 16px; }
.hero .calc-card { color: var(--ink); }            /* keep card text dark on the dark hero band */
.hero .result-card { position: static; top: auto; }

/* ---------- Ads ---------- */
.ad-wrap { margin: 26px auto; text-align: center; }
.ad-label { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: #94a3b8; margin: 0 0 6px; }
.adsbygoogle { background: #eef2f7; border: 1px dashed #cbd5e1; border-radius: var(--radius-sm); min-height: 90px; }
.ad-inline { min-height: 250px; }

/* ---------- Calculator ---------- */
.calc-section { padding: 10px 0 44px; }
.calc-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 26px; align-items: start; }
.calc-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow);
}
.calc-title { font-size: 1.6rem; }
.calc-sub { color: var(--ink-soft); margin: 0 0 1.4rem; }
.group-title { margin: 1.6rem 0 .9rem; font-size: 1.1rem; color: var(--ink); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 4px; }
.field label { font-weight: 600; font-size: .9rem; color: #1e293b; display: flex; align-items: center; gap: .5rem; }
.field input, .field select {
  font-family: inherit; font-size: 1rem; padding: .72rem .85rem; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface-2);
  transition: border .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(37,99,235,.15); background: #fff;
}
.plat { font-weight: 700; }
.plat.ig { color: #d6249f; } .plat.tt { color: #111; } .plat.x { color: #111; } .plat.yt { color: #ff0000; }

.hint {
  display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 50%;
  background: #e2e8f0; color: #475569; font-size: .72rem; font-weight: 700; cursor: help;
}
.engagement-field { margin-top: .6rem; }
.eng-value { margin-left: auto; font-family: var(--display); color: var(--brand); font-weight: 700; }
input[type=range] {
  -webkit-appearance: none; appearance: none; height: 8px; padding: 0; border: none;
  border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--accent-2));
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 3px solid var(--brand); cursor: pointer; box-shadow: var(--shadow);
}
input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--brand); cursor: pointer;
}
.range-scale { display: flex; justify-content: space-between; font-size: .76rem; color: var(--ink-soft); margin-top: .35rem; }
.disclaimer-mini { font-size: .8rem; color: var(--ink-soft); text-align: center; margin: 1rem 0 0; }
.disclaimer-mini a { color: var(--brand); }

/* ---------- Result card ---------- */
.result-card {
  position: sticky; top: 86px;
  background: linear-gradient(180deg, #0f172a, #111c33); color: #fff;
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08); overflow: hidden;
}
.result-empty { text-align: center; padding: 18px 6px; }
.result-empty-icon { font-size: 2.6rem; }
.result-empty h3 { margin-top: .6rem; }
.result-empty p { color: #94a3b8; }
.result-eyebrow { text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; color: #93c5fd; margin: 0; }
.result-amount {
  font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 7vw, 3.6rem);
  background: linear-gradient(120deg, #fff, #93c5fd); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: .1rem 0;
}
.result-range { color: #94a3b8; margin: 0 0 1.2rem; font-size: .95rem; }
.result-bars { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 1.4rem; }
.bar-row { font-size: .85rem; }
.bar-head { display: flex; justify-content: space-between; margin-bottom: .3rem; color: #cbd5e1; }
.bar-track { height: 9px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; }
.bar-fill { height: 100%; border-radius: 999px; transition: width .8s cubic-bezier(.2,.8,.2,1); }
.bar-fill.influence { background: linear-gradient(90deg, var(--brand), var(--brand-2)); }
.bar-fill.exposure  { background: linear-gradient(90deg, var(--accent-2), #d946ef); }
.bar-fill.performance { background: linear-gradient(90deg, var(--accent), #4ade80); }
.bar-fill.brand { background: linear-gradient(90deg, var(--warn), #fbbf24); }

/* Email capture */
.email-capture {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); padding: 18px; margin-bottom: 14px;
}
.email-capture h4 { margin: 0 0 .3rem; font-size: 1.1rem; }
.email-capture p { color: #cbd5e1; font-size: .9rem; margin: 0 0 .9rem; }
.email-form { display: flex; gap: .5rem; flex-wrap: wrap; }
.email-form input {
  flex: 1 1 160px; padding: .7rem .85rem; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.95); color: var(--ink); font-size: .95rem;
}
.email-form input:focus { outline: none; box-shadow: 0 0 0 3px rgba(34,211,238,.35); }
.email-form .btn { padding: .7rem 1.1rem; }
.email-success { color: #4ade80; font-weight: 600; margin: .6rem 0 0; }
.privacy-note { font-size: .76rem; color: #94a3b8; margin: .7rem 0 0; }
.privacy-note a { color: #93c5fd; }
.share-btn {
  width: 100%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  color: #fff; padding: .75rem; border-radius: 999px; font-weight: 600; cursor: pointer; font-size: .95rem;
}
.share-btn:hover { background: rgba(255,255,255,.16); }

/* ---------- Sections ---------- */
.section-title { font-size: clamp(1.8rem, 4vw, 2.4rem); text-align: center; }
.section-lede { text-align: center; color: var(--ink-soft); max-width: 640px; margin: .6rem auto 2.4rem; }
.how-section { padding: 56px 0; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .2s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pillar-icon { font-size: 1.8rem; }
.pillar h3 { margin: .5rem 0 .35rem; font-size: 1.2rem; }
.pillar p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* FAQ */
.faq-section { padding: 30px 0 60px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 20px; box-shadow: var(--shadow);
}
.faq-list summary {
  cursor: pointer; font-weight: 600; padding: 16px 0; list-style: none; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; font-size: 1.4rem; color: var(--brand); transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--ink-soft); margin: 0 0 16px; }

/* CTA band */
.cta-band {
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(34,211,238,.2), transparent 60%),
    linear-gradient(120deg, var(--brand), var(--accent-2));
  color: #fff; padding: 48px 0; margin-top: 20px;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.cta-inner h2 { font-size: 1.9rem; margin: 0 0 .3rem; }
.cta-inner p { margin: 0; color: rgba(255,255,255,.9); max-width: 460px; }
.cta-form { display: flex; gap: .5rem; flex-wrap: wrap; }
.cta-form input {
  padding: .8rem 1rem; border-radius: 999px; border: none; min-width: 240px; font-size: 1rem; color: var(--ink);
}
.cta-form input:focus { outline: none; box-shadow: 0 0 0 4px rgba(255,255,255,.4); }
.cta-form .btn-primary { background: #0b1120; box-shadow: none; }

/* Footer */
.site-footer { background: #0b1120; color: #cbd5e1; padding: 46px 0 28px; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-tag { color: #94a3b8; margin: .6rem 0 0; }
.footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; align-items: center; }
.footer-links a { color: #cbd5e1; font-size: .95rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 18px; }
.footer-bottom p { color: #64748b; font-size: .82rem; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .calc-grid { grid-template-columns: 1fr; }
  .hero-split { grid-template-columns: 1fr; gap: 22px; }
  .hero-copy { padding-top: 0; }
  .hero-points { display: none; }          /* keep the tool high on smaller screens */
  .result-card { position: static; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .nav-links a:not(.nav-cta) { display: none; }
}
@media (max-width: 560px) {
  .field-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .hero { padding: 26px 0 30px; }
  .calc-card, .result-card { padding: 20px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Consent banner ---------- */
#consent-bar {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
  width: min(960px, calc(100% - 28px)); z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  background: #0b1120; color: #e2e8f0; border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow-lg);
}
#consent-bar p { margin: 0; font-size: .88rem; color: #cbd5e1; }
#consent-bar a { color: #93c5fd; text-decoration: underline; }
.consent-actions { display: flex; gap: .5rem; }
.consent-actions button {
  font-family: inherit; font-weight: 600; font-size: .9rem; padding: .55rem 1.1rem;
  border-radius: 999px; cursor: pointer; border: 1px solid rgba(255,255,255,.2);
}
#consent-decline { background: transparent; color: #cbd5e1; }
#consent-decline:hover { background: rgba(255,255,255,.08); }
#consent-accept { background: linear-gradient(135deg, var(--brand), var(--accent-2)); color: #fff; border: none; }
@media (max-width: 560px) { #consent-bar { flex-direction: column; align-items: stretch; text-align: center; } .consent-actions { justify-content: center; } }

/* ---------- Athlete / team / directory pages ---------- */
.container.narrow { max-width: 820px; }
.crumbs { font-size: .85rem; color: var(--ink-soft); margin: 22px 0 10px; }
.crumbs a { color: var(--brand); }
.athlete-hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); margin-bottom: .25rem; }
.athlete-sub { color: var(--ink-soft); font-weight: 600; margin: 0 0 1.2rem; }
.valuation-hero {
  background: linear-gradient(135deg, #0f172a, #111c33); color: #fff;
  border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-lg); margin-bottom: 1.4rem;
}
.valuation-hero .result-eyebrow { color: #93c5fd; }
.big-number {
  font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 7vw, 3.4rem); line-height: 1.05;
  background: linear-gradient(120deg, #fff, #93c5fd); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.val-note { color: #94a3b8; font-size: .85rem; margin: .4rem 0 0; }
.val-note a { color: #93c5fd; }
.athlete-blurb { font-size: 1.08rem; color: #334155; }
.athlete-hero + * h2, .container.narrow h2 { font-family: var(--display); font-size: 1.4rem; margin: 1.8rem 0 .8rem; }
.muted { color: var(--ink-soft); font-size: .9rem; }

.result-bars.static { margin: 0 0 1rem; }
.result-bars.static .bar-head { color: #334155; }
.result-bars.static .bar-track { background: #e2e8f0; }

.data-table { width: 100%; border-collapse: collapse; margin: .4rem 0 1rem; font-size: .95rem; }
.data-table th, .data-table td { text-align: left; padding: .7rem .6rem; border-bottom: 1px solid var(--line); }
.data-table th { color: var(--ink-soft); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.data-table td.num, .data-table th.num { text-align: right; font-variant-numeric: tabular-nums; }
.data-table.ranked td:first-child { color: var(--ink-soft); width: 2rem; }
.data-table a { color: var(--brand); font-weight: 600; }

.cta-inline {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin: 1.6rem 0;
}
.cta-inline p { margin: 0; }

.email-capture.light { background: var(--surface-2); border-color: var(--line); }
.email-capture.light h4 { color: var(--ink); }
.email-capture.light p { color: var(--ink-soft); }
.email-capture.light .email-form input { background: #fff; border-color: var(--line); color: var(--ink); }
.email-capture.light .privacy-note { color: var(--ink-soft); }
.email-capture.light .privacy-note a { color: var(--brand); }

.athlete-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.athlete-card {
  display: flex; flex-direction: column; gap: .25rem; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .2s ease;
}
.athlete-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.ac-rank { font-family: var(--display); font-weight: 800; color: var(--brand); font-size: 1.3rem; }
.athlete-card strong { font-size: 1.05rem; }
.ac-meta { color: var(--ink-soft); font-size: .85rem; }
.team-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.team-chip {
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1.1rem;
  font-weight: 600; color: var(--ink); box-shadow: var(--shadow); font-size: .92rem;
}
.team-chip:hover { border-color: var(--brand); color: var(--brand); }

/* Athlete card tag + CTA (gated, no dollar value shown) */
.ac-tag {
  align-self: flex-start; font-family: var(--display); font-weight: 700; font-size: .72rem;
  letter-spacing: .04em; text-transform: uppercase; color: var(--brand);
  background: rgba(37,99,235,.10); border-radius: 999px; padding: .2rem .6rem;
}
.ac-cta { margin-top: .35rem; font-size: .82rem; font-weight: 600; color: var(--brand); }

/* Calculator tabs */
.calc-tabs { display: flex; gap: .4rem; margin-bottom: 1.1rem; background: rgba(15,23,42,.05); padding: .3rem; border-radius: 12px; }
.calc-tab {
  flex: 1; border: 0; background: transparent; cursor: pointer; padding: .6rem .5rem; border-radius: 9px;
  font-family: var(--font); font-weight: 600; font-size: .92rem; color: var(--ink-soft);
}
.calc-tab.active { background: #fff; color: var(--ink); box-shadow: var(--shadow); }

/* Player search */
.player-search { position: relative; }
.player-search input {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 12px;
  font-size: 1rem; background: #fff; color: var(--ink);
}
.player-search input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(37,99,235,.15); }
.search-results {
  position: absolute; z-index: 20; left: 0; right: 0; margin-top: 6px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg); overflow: hidden; max-height: 320px; overflow-y: auto;
}
.search-item { display: flex; flex-direction: column; gap: .1rem; width: 100%; text-align: left; border: 0; background: #fff; cursor: pointer; padding: .7rem 1rem; }
.search-item:hover { background: var(--surface-2); }
.search-item strong { color: var(--ink); font-size: .98rem; }
.search-item span { color: var(--ink-soft); font-size: .82rem; }
.search-empty { padding: .8rem 1rem; color: var(--ink-soft); font-size: .9rem; }
#lookup-selected { margin-top: 1rem; padding: 1rem; background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; }
.lookup-name { margin: 0 0 .3rem; color: var(--ink); }
.lookup-full { font-weight: 600; color: var(--brand); font-size: .9rem; }

/* Email gate (result card + athlete page) */
.result-gate { text-align: center; padding: 10px 6px; }
.result-gate .result-eyebrow { color: #93c5fd; }
.big-number.blurred, .gate-locked .big-number {
  font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 6vw, 2.8rem);
  filter: blur(7px); user-select: none; margin: .3rem 0 .6rem; color: #fff;
}
.gate-pitch { color: #cbd5e1; font-size: .92rem; margin: 0 0 1rem; }
.nil-gate .gate-locked .big-number { color: var(--ink); }
.nil-gate {
  margin: 1.2rem 0; padding: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface-2); text-align: center;
}
.nil-gate .gate-pitch { color: var(--ink-soft); }
.nil-gate .result-eyebrow { color: var(--brand); font-weight: 700; }
.gate-form, .result-gate .email-form { display: flex; gap: .5rem; max-width: 420px; margin: 0 auto .6rem; }
.gate-form input[type=email], .result-gate .email-form input[type=email] {
  flex: 1; padding: .7rem .9rem; border-radius: 10px; border: 1px solid var(--line); background: #fff; color: var(--ink);
}
.nil-gate .gate-reveal { text-align: center; }
.nil-gate .gate-reveal .big-number { color: var(--ink); font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem,7vw,3rem); }
.nil-gate .result-bars { text-align: left; max-width: 420px; margin: 1rem auto 0; }
.nil-gate .result-range { color: var(--ink); font-weight: 600; }

/* Similar players */
.similar { margin-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1rem; }
.similar h4 { margin: 0 0 .6rem; font-size: .95rem; color: #e2e8f0; }
.sim-list { display: flex; flex-direction: column; gap: .5rem; }
.sim-card { display: flex; flex-direction: column; gap: .1rem; background: rgba(255,255,255,.06); border-radius: 10px; padding: .6rem .8rem; }
.sim-card:hover { background: rgba(255,255,255,.12); }
.sim-card strong { color: #fff; font-size: .95rem; }
.sim-card span { color: #94a3b8; font-size: .8rem; }
.sim-card .sim-range { color: #4ade80; font-weight: 600; }

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 50px 0 70px; }
.legal h1 { font-size: 2.2rem; margin-bottom: .3rem; }
.legal .updated { color: var(--ink-soft); margin-bottom: 1.8rem; }
.legal h2 { font-size: 1.3rem; margin: 1.8rem 0 .5rem; }
.legal p, .legal li { color: #334155; }
.legal a { color: var(--brand); }
.legal .back { display: inline-block; margin-top: 2rem; font-weight: 600; color: var(--brand); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
