/* ═══════════════════════════════════════════════════════════════════
   ODDS AI — Design System  ·  "Midnight Vault"
   Type: Space Grotesk (display) · Inter (body) · Space Mono (data)
═══════════════════════════════════════════════════════════════════ */

:root {
  /* Core palette */
  --bg:            #070A12;
  --bg-2:          #0A0E1A;
  --surface:       #0E1424;
  --surface-2:     #141B30;
  --card:          #111829;
  --line:          rgba(255,255,255,.07);
  --line-strong:   rgba(255,255,255,.12);

  /* Brand */
  --gold:          #E5BC4A;
  --gold-deep:     #B8902E;
  --gold-bright:   #F7DD8A;
  --blue:          #4F8DF9;
  --blue-bright:   #7FB0FF;
  --green:         #34C759;
  --red:           #FF3B5C;

  /* Sport accents */
  --football:      #3DDC84;
  --basketball:    #FF7A1A;
  --mma:           #FF5436;
  --f1:            #FF2E2E;
  --tennis:        #C6F432;
  --baseball:      #4F8DF9;

  /* Text */
  --text:          #EEF1F8;
  --text-dim:      #9AA3B8;
  --text-faint:    #5C6478;

  /* Type */
  --font-display: 'Space Grotesk', -apple-system, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'Space Mono', ui-monospace, 'SF Mono', monospace;

  /* Geometry */
  --r-sm: 10px; --r: 16px; --r-lg: 24px; --r-xl: 32px;
  --max:  1200px;
  --ease: cubic-bezier(.22,1,.36,1);

  /* Fluid type scale */
  --fs-hero:  clamp(2.6rem, 7vw, 5.5rem);
  --fs-h2:    clamp(1.9rem, 4vw, 3.2rem);
  --fs-h3:    clamp(1.25rem, 2vw, 1.6rem);
  --fs-lead:  clamp(1.05rem, 1.6vw, 1.3rem);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Layered page background: radial glows + fine grid + grain */
body::before {
  content:''; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(79,141,249,.10), transparent 60%),
    radial-gradient(80% 60% at 85% 8%, rgba(229,188,74,.07), transparent 55%),
    radial-gradient(70% 70% at 8% 30%, rgba(61,220,132,.045), transparent 55%);
}
/* Subtle static grain — no blend-mode (kept cheap so it doesn't
   re-composite against the animated layers every frame). */
body::after {
  content:''; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-bright); }
img,svg { display: block; max-width: 100%; }
::selection { background: rgba(229,188,74,.28); color: #fff; }

/* ── Layout ─────────────────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(48px,6vw,90px) 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content:''; width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2); font-weight: 700;
  line-height: 1.05; letter-spacing: -.03em;
  margin: 18px 0 16px;
}
.lead { font-size: var(--fs-lead); color: var(--text-dim); max-width: 60ch; }

.grad-text {
  background: linear-gradient(105deg, var(--gold-bright), var(--gold) 40%, var(--blue-bright));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 650; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .25s, background .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1A1305; box-shadow: 0 8px 30px -8px rgba(229,188,74,.5);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(229,188,74,.6); color: #1A1305; }
.btn-ghost { background: rgba(255,255,255,.04); border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ── Nav ────────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: 70px;
  display: flex; align-items: center;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,10,18,.72); backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -.02em; color: var(--text); }
.brand:hover { color: var(--text); }
.brand .mark {
  width: 36px; height: 36px; border-radius: 10px; flex: 0 0 auto;
  background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep));
  display: grid; place-items: center; color: #14110A;
  font-weight: 700; font-size: .92rem; box-shadow: 0 4px 14px -4px rgba(229,188,74,.6);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--text-dim); font-size: .92rem; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero { padding: 160px 0 90px; text-align: center; position: relative; }
.hero-orbits { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: -1; }
.hero-orbits span {
  position: absolute; border-radius: 50%; border: 1px solid var(--line);
  left: 50%; top: 42%; transform: translate(-50%,-50%);
  animation: spin 40s linear infinite;
}
.hero-orbits span:nth-child(1){ width: 520px; height: 520px; }
.hero-orbits span:nth-child(2){ width: 780px; height: 780px; animation-duration: 70s; animation-direction: reverse; }
.hero-orbits span:nth-child(3){ width: 1060px; height: 1060px; animation-duration: 110s; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .82rem; font-weight: 600; color: var(--text-dim);
  padding: 7px 16px 7px 13px; border-radius: 999px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-strong);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(52,199,89,.6); animation: ping 2.2s infinite; }
@keyframes ping { 0%{box-shadow:0 0 0 0 rgba(52,199,89,.5);} 70%{box-shadow:0 0 0 9px rgba(52,199,89,0);} 100%{box-shadow:0 0 0 0 rgba(52,199,89,0);} }

.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-hero); line-height: 1.02; letter-spacing: -.04em;
  margin: 26px auto 22px; max-width: 16ch;
}
.hero .lead { margin: 0 auto 38px; text-align: center; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: .82rem; color: var(--text-faint); }

/* Animated counters strip */
.counters {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  margin-top: 72px; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; background: var(--line);
}
.counter { background: var(--surface); padding: 28px 20px; text-align: center; }
.counter .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.8rem,3.4vw,2.7rem); letter-spacing: -.03em;
  background: linear-gradient(120deg,var(--gold-bright),var(--blue-bright));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.counter .lbl { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); margin-top: 8px; }

/* ── Generic cards & glass ──────────────────────────────────────── */
.glass {
  background: linear-gradient(180deg, rgba(20,27,48,.55), rgba(14,20,36,.4));
  border: 1px solid var(--line); border-radius: var(--r-lg);
}
.card-hover { transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.card-hover:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: 0 24px 60px -30px rgba(0,0,0,.8); }

/* ── Mission ────────────────────────────────────────────────────── */
.mission { text-align: center; }
.mission .h2 { max-width: 22ch; margin-inline: auto; }
.mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.mission-card { padding: 32px 28px; text-align: left; }
.mission-card .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 20px; }
.mission-card h3 { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; margin-bottom: 10px; }
.mission-card p { font-size: .95rem; color: var(--text-dim); }

/* ── Sports band ────────────────────────────────────────────────── */
.sports-band { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }
.marquee { display: flex; gap: 0; white-space: nowrap; }
.marquee-track { display: flex; align-items: center; gap: 56px; padding: 26px 28px; animation: slide 38s linear infinite; }
.sports-band:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.sport-tag { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--text-dim); }
.sport-tag .swatch { width: 10px; height: 10px; border-radius: 3px; }

/* Sport feature tiles */
.sports-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 48px; }
.sport-tile {
  position: relative; overflow: hidden; padding: 26px 22px 24px; min-height: 168px;
  border-radius: var(--r); border: 1px solid var(--line);
  background: var(--card); display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .3s var(--ease), border-color .3s;
}
.sport-tile:hover { transform: translateY(-4px); }
.sport-tile .glow { position: absolute; inset: auto -30% -50% -30%; height: 140px; filter: blur(48px); opacity: .5; transition: opacity .3s; }
.sport-tile:hover .glow { opacity: .85; }
.sport-tile .name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.sport-tile .stat { font-family: var(--font-mono); font-size: .76rem; color: var(--text-dim); }
.sport-tile .ico { font-family: var(--font-display); font-weight: 700; opacity: .9; }

/* ── Engine / pipeline ──────────────────────────────────────────── */
.engine { position: relative; }
.pipeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 52px; position: relative; }
.pnode { padding: 26px 22px; position: relative; }
.pnode .step { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .2em; color: var(--gold); }
.pnode h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; margin: 12px 0 8px; }
.pnode p { font-size: .9rem; color: var(--text-dim); }
.pnode .arrow { position: absolute; right: -10px; top: 50%; transform: translateY(-50%); color: var(--text-faint); z-index: 2; }

/* ── Data showcase ──────────────────────────────────────────────── */
.showcase-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; margin-top: 48px; }
.panel { padding: 26px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.panel-head h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.panel-head .tag { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); padding: 4px 9px; border: 1px solid var(--line); border-radius: 6px; }

/* Line chart */
.chart { width: 100%; height: 220px; }
.chart .grid line { stroke: var(--line); stroke-width: 1; }
.chart .area { fill: url(#areaFill); opacity: .9; }
.chart .line { fill: none; stroke: url(#lineStroke); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 1400; stroke-dashoffset: 1400; }
.chart.in .line { animation: draw 1.8s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.chart .dot { fill: var(--gold-bright); opacity: 0; }
.chart.in .dot { animation: dotin .4s ease forwards; animation-delay: 1.6s; }
@keyframes dotin { to { opacity: 1; } }

/* Bar chart */
.bars { display: flex; align-items: flex-end; gap: 12px; height: 200px; padding-top: 10px; }
.bar { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; height: 100%; justify-content: flex-end; }
.bar .fill { width: 100%; border-radius: 6px 6px 3px 3px; height: 0; transition: height 1.1s var(--ease); }
.bar .blab { font-family: var(--font-mono); font-size: .64rem; color: var(--text-faint); }

/* Leaderboard */
.lb { width: 100%; border-collapse: collapse; }
.lb th { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); text-align: left; padding: 0 8px 12px; font-weight: 400; }
.lb td { padding: 11px 8px; border-top: 1px solid var(--line); font-size: .9rem; }
.lb .rk { font-family: var(--font-mono); color: var(--text-faint); width: 28px; }
.lb .who { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.lb .av { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 700; color: #14110A; }
.lb .win { color: var(--green); font-family: var(--font-mono); font-weight: 700; }
.lb .roi { font-family: var(--font-mono); color: var(--gold); }
.lb tr.me td { background: rgba(229,188,74,.05); }
.badge-v { color: var(--blue-bright); }

/* ── Feature deep-dive ──────────────────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.feat { padding: 30px 26px; }
.feat .ic { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 18px; }
.feat h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; margin-bottom: 9px; }
.feat p { font-size: .92rem; color: var(--text-dim); }
.feat .ic svg { width: 22px; height: 22px; }

/* ── Newsroom ───────────────────────────────────────────────────── */
.news-strip { display: flex; gap: 16px; margin-top: 44px; overflow-x: auto; padding-bottom: 10px; scrollbar-width: none; }
.news-strip::-webkit-scrollbar { display: none; }
.news-card { flex: 0 0 320px; padding: 22px; position: relative; }
.news-card .flash { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.news-card .flash .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: ping 1.6s infinite; }
.news-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; line-height: 1.3; margin-bottom: 8px; }
.news-card p { font-size: .86rem; color: var(--text-dim); }
.news-card .meta { font-family: var(--font-mono); font-size: .66rem; color: var(--text-faint); margin-top: 14px; }

/* ── Pricing ────────────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 48px; max-width: 820px; margin-inline: auto; }
.price { padding: 36px 32px; position: relative; }
.price.feat-card { border-color: rgba(229,188,74,.4); box-shadow: 0 0 0 1px rgba(229,188,74,.15), 0 30px 80px -40px rgba(229,188,74,.4); }
.price .tier { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; }
.price .sub { color: var(--text-dim); font-size: .88rem; margin-top: 2px; }
.price .amt { font-family: var(--font-display); font-weight: 700; font-size: 2.8rem; letter-spacing: -.03em; margin: 22px 0 2px; }
.price .amt span { font-size: 1rem; font-weight: 500; color: var(--text-dim); }
.price .yr { font-family: var(--font-mono); font-size: .78rem; color: var(--gold); margin-bottom: 24px; }
.price ul { list-style: none; margin-bottom: 28px; display: grid; gap: 11px; }
.price li { font-size: .92rem; color: var(--text-dim); display: flex; gap: 11px; align-items: flex-start; }
.price li svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 3px; color: var(--green); }
.price .ribbon { position: absolute; top: -12px; right: 26px; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .12em; padding: 5px 12px; border-radius: 999px; background: linear-gradient(180deg,var(--gold-bright),var(--gold)); color: #1A1305; font-weight: 700; }
.packs { margin-top: 26px; text-align: center; }
.packs .row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 18px; }
.pack-chip { font-family: var(--font-mono); font-size: .8rem; padding: 9px 15px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); color: var(--text-dim); }
.pack-chip b { color: var(--gold); }

/* ── Creator CTA band ───────────────────────────────────────────── */
.band {
  margin: 0 auto; max-width: var(--max);
  border-radius: var(--r-xl); overflow: hidden; position: relative;
  padding: clamp(40px,6vw,72px); text-align: center;
  background:
    radial-gradient(100% 140% at 50% 0%, rgba(229,188,74,.14), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-strong);
}
.band .h2 { max-width: 20ch; margin-inline: auto; }

/* ── Footer ─────────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); padding: 64px 0 36px; margin-top: 40px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: var(--text-dim); font-size: .9rem; margin: 14px 0 18px; max-width: 32ch; }
.footer-col h5 { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: var(--text-dim); font-size: .9rem; padding: 5px 0; }
.footer-col a:hover { color: var(--text); }
.affiliate {
  margin-top: 40px; padding: 16px 22px; border-radius: var(--r);
  background: rgba(79,141,249,.06); border: 1px solid rgba(79,141,249,.18);
  font-size: .84rem; color: var(--text-dim); display: flex; gap: 12px; align-items: center;
}
.affiliate svg { width: 20px; height: 20px; color: var(--blue-bright); flex: 0 0 auto; }
.footer-bottom { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: .8rem; color: var(--text-faint); }

/* ── Legal pages ────────────────────────────────────────────────── */
.legal { padding: 130px 0 80px; }
.legal-head { display: flex; align-items: center; gap: 16px; margin-bottom: 6px; }
.legal-head .ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; }
.legal h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem,4vw,2.8rem); letter-spacing: -.03em; }
.legal .updated { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 44px; }
.legal-sec { margin-bottom: 30px; max-width: 72ch; }
.legal-sec h2 { font-family: var(--font-mono); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 10px; }
.legal-sec p { font-size: 1rem; color: var(--text-dim); line-height: 1.8; }
.legal-toc { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 44px; }
.legal-toc a { font-family: var(--font-mono); font-size: .76rem; padding: 6px 12px; border-radius: 8px; border: 1px solid var(--line); color: var(--text-dim); }
.legal-toc a:hover { border-color: var(--gold); color: var(--gold); }

/* ── Creator / payout preview ───────────────────────────────────── */
.preview-badge { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(229,188,74,.3); border-radius: 6px; padding: 4px 9px; }
.dash { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 16px; }
.kpi { padding: 24px; }
.kpi .lbl { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); }
.kpi .val { font-family: var(--font-display); font-weight: 700; font-size: 2.1rem; letter-spacing: -.03em; margin: 10px 0 4px; }
.kpi .delta { font-family: var(--font-mono); font-size: .76rem; }
.kpi .up { color: var(--green); } .kpi .down { color: var(--red); }
.dash-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.cal { display: grid; grid-template-columns: repeat(7,1fr); gap: 6px; margin-top: 16px; }
.cal .dow { font-family: var(--font-mono); font-size: .6rem; color: var(--text-faint); text-align: center; padding-bottom: 4px; }
.cal .day { aspect-ratio: 1; border-radius: 8px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; font-size: .76rem; color: var(--text-dim); position: relative; }
.cal .day.pay { background: linear-gradient(160deg, rgba(52,199,89,.22), rgba(52,199,89,.06)); border-color: rgba(52,199,89,.4); color: var(--text); font-weight: 600; }
.cal .day.pay::after { content:''; position: absolute; bottom: 5px; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.wallet { padding: 28px; text-align: center; }
.wallet .chains { display: flex; gap: 8px; justify-content: center; margin: 18px 0; flex-wrap: wrap; }
.chain { font-family: var(--font-mono); font-size: .72rem; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line); color: var(--text-dim); }
.chat-prev { padding: 24px; }
.msg { display: flex; gap: 10px; margin-bottom: 14px; }
.msg .av { width: 30px; height: 30px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center; font-size: .7rem; font-weight: 700; color: #14110A; }
.msg .bubble { background: var(--surface); border: 1px solid var(--line); border-radius: 4px 14px 14px 14px; padding: 9px 14px; font-size: .86rem; }
.msg .nm { font-size: .72rem; color: var(--text-faint); margin-bottom: 3px; font-weight: 600; }
.sec-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 24px; }
.sec-item { display: flex; gap: 13px; padding: 18px; }
.sec-item svg { width: 22px; height: 22px; color: var(--blue-bright); flex: 0 0 auto; }
.sec-item h4 { font-size: .96rem; font-weight: 600; margin-bottom: 4px; }
.sec-item p { font-size: .84rem; color: var(--text-dim); }

/* ── Live data (fetched from Supabase) ──────────────────────────── */
.live-empty { color: var(--text-faint); font-size: .9rem; font-style: italic; padding: 18px 4px; }
.live-loading { color: var(--text-faint); font-family: var(--font-mono); font-size: .78rem; padding: 18px 4px; }

/* AI pick cards */
.picks-feed { display: grid; gap: 12px; max-height: 520px; overflow-y: auto; padding-right: 4px; }
.picks-feed::-webkit-scrollbar { width: 6px; }
.picks-feed::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }
.pick-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; transition: border-color .25s, transform .25s; }
.pick-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.pick-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.pick-league { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-dim); }
.pick-league i { width: 8px; height: 8px; border-radius: 2px; flex: 0 0 auto; }
.pick-odds { font-family: var(--font-mono); font-weight: 700; font-size: .9rem; color: var(--gold); background: rgba(229,188,74,.1); border: 1px solid rgba(229,188,74,.25); border-radius: 6px; padding: 2px 9px; }
.pick-match { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; line-height: 1.3; }
.pick-match span { color: var(--text-faint); font-weight: 400; font-size: .82rem; }
.pick-sel { font-size: .86rem; color: var(--blue-bright); margin-top: 5px; }
.pick-foot { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.pick-conf { flex: 1; height: 5px; background: var(--surface-2); border-radius: 3px; overflow: hidden; }
.pick-conf i { display: block; height: 100%; background: linear-gradient(90deg, var(--blue), var(--gold)); border-radius: 3px; }
.pick-cp { font-family: var(--font-mono); font-size: .68rem; color: var(--text-faint); white-space: nowrap; }

/* Coverage bars */
.coverage { display: grid; gap: 12px; }
.cov-row { display: grid; grid-template-columns: 92px 1fr 28px; align-items: center; gap: 12px; }
.cov-name { font-size: .82rem; color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cov-track { height: 9px; background: var(--surface-2); border-radius: 5px; overflow: hidden; }
.cov-track i { display: block; height: 100%; border-radius: 5px; transition: width 1s var(--ease); }
.cov-n { font-family: var(--font-mono); font-size: .76rem; color: var(--text-faint); text-align: right; }

/* Podcast feed */
.pod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 44px; }
.pod-item { padding: 22px; }
.pod-ep { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .14em; color: var(--gold); margin-bottom: 10px; }
.pod-item h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; line-height: 1.3; margin-bottom: 7px; }
.pod-item p { font-size: .86rem; color: var(--text-dim); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pod-meta { font-family: var(--font-mono); font-size: .66rem; color: var(--text-faint); margin-top: 14px; }

/* How-payouts steps (creators) */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; counter-reset: step; }
.step-card { padding: 30px 26px; position: relative; }
.step-card .n { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; line-height: 1; color: var(--gold); opacity: .35; }
.step-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; margin: 12px 0 9px; }
.step-card p { font-size: .92rem; color: var(--text-dim); }
.step-card .chains { margin-top: 14px; }

@media (max-width: 1000px) { .pod-grid, .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 680px) { .pod-grid, .steps { grid-template-columns: 1fr; } .cov-row { grid-template-columns: 80px 1fr 26px; } }

/* ── Reveal motion ──────────────────────────────────────────────── */
/* Only hide when JS is present (html.js). No-JS or a stalled observer
   leaves all content fully visible — content is never trapped. */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .08s; }
.reveal[data-d="2"]{ transition-delay: .16s; }
.reveal[data-d="3"]{ transition-delay: .24s; }
.reveal[data-d="4"]{ transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ── Earnings calculator ────────────────────────────────────────── */
.calc { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; margin-top: 48px; overflow: hidden; }
.calc-controls { padding: 38px 34px; display: flex; flex-direction: column; gap: 34px; justify-content: center; }
.calc-label { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.calc-label > span:first-child { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); }
.calc-val { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--text); letter-spacing: -.02em; }

.calc-tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.calc-tiers button {
  font-family: var(--font-body); font-weight: 600; font-size: .92rem; padding: 12px 6px;
  border-radius: var(--r-sm); cursor: pointer; background: var(--bg-2);
  border: 1px solid var(--line-strong); color: var(--text-dim); transition: all .2s var(--ease);
}
.calc-tiers button:hover { border-color: var(--gold); color: var(--text); }
.calc-tiers button.on { background: linear-gradient(180deg, var(--gold-bright), var(--gold)); border-color: transparent; color: #1A1305; box-shadow: 0 8px 22px -10px rgba(229,188,74,.6); }

.calc-range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: var(--bg-2); border: 1px solid var(--line-strong); outline: none; cursor: pointer; }
.calc-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); border: 2px solid #1A1305; box-shadow: 0 4px 14px -3px rgba(229,188,74,.7); cursor: pointer; transition: transform .15s; }
.calc-range::-webkit-slider-thumb:hover { transform: scale(1.12); }
.calc-range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); border: 2px solid #1A1305; cursor: pointer; }
.calc-scale { display: flex; justify-content: space-between; margin-top: 8px; font-family: var(--font-mono); font-size: .66rem; color: var(--text-faint); }

.calc-result { padding: 38px 34px; background: linear-gradient(180deg, rgba(229,188,74,.06), rgba(79,141,249,.04)); border-left: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
.calc-kw { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); }
.calc-big { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -.04em; }
.calc-rows { display: flex; flex-direction: column; margin: 6px 0 4px; }
.calc-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .9rem; color: var(--text-dim); }
.calc-row:first-child { border-top: 1px solid var(--line); }
.calc-row b { color: var(--text); font-weight: 700; font-family: var(--font-display); letter-spacing: -.01em; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .mission-grid, .feat-grid, .pipeline, .sports-grid { grid-template-columns: repeat(2,1fr); }
  .showcase-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pnode .arrow { display: none; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 8px 0; }
  .nav-links.open a { padding: 14px 24px; width: 100%; }
  .nav-toggle { display: block; }
  .counters { grid-template-columns: repeat(2,1fr); }
  .mission-grid, .feat-grid, .sports-grid, .price-grid, .dash, .dash-2, .sec-grid, .footer-top, .calc { grid-template-columns: 1fr; }
  .pipeline { grid-template-columns: 1fr; }
  .cal { gap: 4px; }
  .calc-result { border-left: 0; border-top: 1px solid var(--line); }
  .calc-controls, .calc-result { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   VAULT sportsbook — announcement bar, nav link, and band
   The sportsbook has to be discoverable within a second of landing,
   so it gets a strip above the fold, a nav entry, and the first
   section after the hero.
═══════════════════════════════════════════════════════════════════ */

.announce {
  position: relative; z-index: 110;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 10px 20px; text-decoration: none; flex-wrap: wrap;
  background: linear-gradient(90deg, rgba(229,188,74,.14), rgba(79,141,249,.14));
  border-bottom: 1px solid var(--line-strong);
  color: var(--text); font-size: .88rem;
  transition: background .25s;
}
.announce:hover { background: linear-gradient(90deg, rgba(229,188,74,.22), rgba(79,141,249,.2)); color: var(--text); }
.announce-tag {
  font-family: var(--font-mono); font-size: .62rem; font-weight: 700; letter-spacing: .16em;
  padding: 3px 9px; border-radius: 5px; flex: 0 0 auto;
  background: var(--gold); color: #1A1305;
}
.announce-text strong { color: var(--gold-bright); }
.announce-go {
  display: inline-flex; align-items: center; gap: 6px; flex: 0 0 auto;
  font-weight: 650; color: var(--gold);
}
.announce-go svg { width: 15px; height: 15px; }

/* The announcement bar scrolls away and the nav sticks beneath it.
   Sticky rather than fixed-with-an-offset: the bar's height changes
   when its text wraps on narrow screens, and any hardcoded top value
   is wrong at some width — at 476px the two overlapped by 29px. */
/* `inset` must come before `top` — it is a shorthand, so declaring it
   afterwards resets top back to auto and sticky silently stops working. */
.nav { position: sticky; inset: auto; top: 0; }
.nav-vault { display: inline-flex; align-items: center; gap: 7px; color: var(--gold) !important; font-weight: 650 !important; }
.nav-vault:hover { color: var(--gold-bright) !important; }
.nv-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(52,199,89,.6); animation: ping 2.2s infinite; }

/* The nav now occupies flow, so the hero no longer offsets for it. */
.hero { padding-top: 90px; }

/* ── Band ──────────────────────────────────────────────────────── */
.vault-band {
  position: relative;
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(229,188,74,.07), transparent 60%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}
.vb-head { text-align: center; max-width: 780px; margin: 0 auto 44px; }
.vb-head .eyebrow { justify-content: center; }
.vb-head .lead { margin-inline: auto; }

.vb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 34px; }
.vb-card { padding: 26px 22px; }
.vb-ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px; }
.vb-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 9px; }
.vb-card p { font-size: .89rem; color: var(--text-dim); line-height: 1.62; }

.vb-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 28px 32px; border-radius: var(--r-lg);
  background: linear-gradient(120deg, rgba(229,188,74,.1), rgba(79,141,249,.08));
  border: 1px solid rgba(229,188,74,.24);
}
.vb-cta-copy h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.vb-cta-copy p { color: var(--text-dim); font-size: .93rem; }

.vb-warn {
  margin-top: 28px; padding: 18px 20px; border-radius: var(--r);
  font-size: .82rem; line-height: 1.65; color: var(--text-faint);
  background: rgba(255,59,92,.05); border: 1px solid rgba(255,59,92,.18);
}
.vb-warn strong { color: #FFB3BF; }

@media (max-width: 980px) {
  .vb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .announce { font-size: .8rem; gap: 8px; padding: 9px 14px; }
  .announce-text { flex: 1 1 100%; text-align: center; order: 3; }
  .hero { padding-top: 70px; }
  .vb-grid { grid-template-columns: 1fr; }
  .vb-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .vb-cta .btn { justify-content: center; }
}

/* ── Account state in the nav ───────────────────────────────────── */
.nav-auth { display: inline-flex; align-items: center; gap: 12px; }
.nav-skel { display: block; width: 132px; height: 36px; border-radius: 999px;
  background: rgba(255,255,255,.05); }

.nav-login { color: var(--text-dim) !important; font-size: .92rem; font-weight: 500; }
.nav-login:hover { color: var(--text) !important; }
.nav-cta { padding: 9px 20px; }

.nav-account {
  display: inline-flex; align-items: center; gap: 9px; max-width: 190px;
  padding: 5px 14px 5px 5px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-strong);
  color: var(--text) !important; font-size: .88rem; font-weight: 600;
  transition: border-color .2s, background .2s;
}
.nav-account:hover { border-color: var(--gold); background: rgba(229,188,74,.08); }
.na-avatar {
  width: 28px; height: 28px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center; font-size: .8rem; font-weight: 700; color: #14110A;
  background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep));
}
.na-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

@media (max-width: 720px) {
  .nav-auth { flex-wrap: wrap; gap: 8px; }
  .nav-account { max-width: 100%; }
}
