:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-3: #1A1A1A;
  --fg: #F5F5F0;
  --fg-muted: #888888;
  --accent: #22C55E;
  --accent-2: #F59E0B;
  --border: #222222;
  --card: #141414;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.logo-mark { font-size: 18px; color: var(--accent); }
.logo-name { font-family: 'Fraunces', serif; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a { color: var(--fg-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }
.nav-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ─── HERO ─── */
.hero {
  padding: 160px 40px 120px;
  position: relative;
  overflow: hidden;
}
.hero-bg-texture {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(34,197,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-headline em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 440px;
  margin-bottom: 48px;
}
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat-value { font-family: 'Fraunces', serif; font-size: 36px; font-weight: 700; color: var(--fg); }
.stat-label { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-visual { display: flex; flex-direction: column; gap: 20px; }
.trophy-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.trophy-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -20px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.trophy-icon { font-size: 40px; margin-bottom: 8px; }
.trophy-text { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; }
.trophy-year { font-family: 'Fraunces', serif; font-size: 40px; font-weight: 800; color: var(--accent-2); line-height: 1; }
.trophy-venue { font-size: 13px; color: var(--fg-muted); }

.odds-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
}
.odds-header { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-muted); margin-bottom: 14px; }
.odds-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.odds-outcome { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; width: 28px; color: var(--fg-muted); }
.odds-bar { height: 6px; background: var(--accent); border-radius: 3px; flex: 1; }
.odds-price { font-family: 'Fraunces', serif; font-size: 15px; font-weight: 700; width: 36px; text-align: right; }
.odds-footer { font-size: 11px; color: var(--fg-muted); margin-top: 12px; border-top: 1px solid var(--border); padding-top: 10px; }

/* ─── SECTIONS ─── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 56px;
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
  padding: 100px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step { padding: 0 32px; }
.step-connector { font-size: 24px; color: var(--border); padding-top: 32px; }
.step-number { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 20px; }
.step-icon { font-size: 32px; margin-bottom: 16px; }
.step h3 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; line-height: 1.6; color: var(--fg-muted); }

/* ─── MARKETS ─── */
.markets {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.markets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.market-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.2s;
}
.market-card:hover { border-color: #333; }
.market-category { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.market-question { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600; margin-bottom: 16px; }
.market-odds { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.odd-side { display: flex; align-items: center; gap: 10px; }
.odd-label { font-size: 11px; font-weight: 700; width: 28px; color: var(--fg-muted); }
.odd-fill { height: 4px; background: var(--accent); border-radius: 2px; flex: 1; max-width: 80%; }
.odd-fill-no { background: #333; }
.odd-price { font-family: 'Fraunces', serif; font-size: 14px; font-weight: 700; width: 32px; }
.market-meta { font-size: 11px; color: var(--fg-muted); }

/* ─── LEADERBOARD ─── */
.leaderboard {
  padding: 100px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.leaderboard-table { margin-bottom: 20px; }
.lb-header {
  display: grid;
  grid-template-columns: 48px 1fr 120px 100px;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.lb-row {
  display: grid;
  grid-template-columns: 48px 1fr 120px 100px;
  padding: 14px 20px;
  align-items: center;
  border-radius: 8px;
  transition: background 0.15s;
}
.lb-row:hover { background: var(--bg-3); }
.lb-rank { font-family: 'Fraunces', serif; font-weight: 700; font-size: 18px; }
.lb-rank.gold { color: #F59E0B; }
.lb-rank.silver { color: #9CA3AF; }
.lb-rank.bronze { color: #CD7F32; }
.lb-name { font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.lb-tag { font-size: 14px; }
.lb-record { font-size: 14px; color: var(--fg-muted); }
.lb-pnl { font-family: 'Fraunces', serif; font-size: 14px; font-weight: 700; }
.positive { color: var(--accent); }
.negative { color: #EF4444; }
.lb-note { font-size: 13px; color: var(--fg-muted); text-align: center; }

/* ─── MANIFESTO ─── */
.manifesto {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--fg);
}
.manifesto-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 48px;
}
.manifesto-cta { display: flex; justify-content: center; }
.cta-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 24px;
}

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-tagline { font-size: 14px; color: var(--fg-muted); margin-left: 16px; }
.footer-meta { font-size: 12px; color: #444; margin-left: auto; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 120px 20px 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .markets-grid { grid-template-columns: 1fr; }
  .how-it-works, .markets, .leaderboard, .manifesto { padding: 80px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { margin-left: 0; }
  .lb-header, .lb-row { grid-template-columns: 36px 1fr 80px 80px; }
}
