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

:root {
  --bg: #0d0d0d;
  --bg-card: #161616;
  --bg-card-sm: #111111;
  --fg: #f0f0f0;
  --fg-muted: #888;
  --accent: #B5FF00;
  --accent-dim: rgba(181, 255, 0, 0.12);
  --border: rgba(255,255,255,0.08);
  --yes: #00e676;
  --no: #ff5252;
  --tag-bg: rgba(181, 255, 0, 0.08);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.nav-tag {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  padding: 80px 48px 100px;
  align-items: start;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stat + .stat {
  border-left: 1px solid var(--border);
  padding-left: 24px;
}

/* CARD STACK */
.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 48px;
}
.debate-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  position: relative;
}
.debate-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(181,255,0,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.card-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.card-question {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 6px;
}
.card-meta {
  font-size: 11px;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.card-bars { margin-bottom: 10px; }
.bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.bar-label {
  font-size: 11px;
  font-weight: 700;
  width: 28px;
  color: var(--fg-muted);
}
.bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill { height: 100%; border-radius: 3px; }
.bar-yes { background: var(--yes); }
.bar-no { background: var(--no); }
.bar-pct {
  font-size: 11px;
  font-weight: 600;
  width: 30px;
  text-align: right;
}
.card-score {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--fg-muted);
  padding: 8px 0 6px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.card-score strong { color: var(--accent); }
.card-vol {
  font-size: 11px;
  color: var(--fg-muted);
}
.debate-card-sm { padding: 14px 18px; }
.debate-card-sm .card-question { font-size: 13px; }
.debate-card-sm .card-meta { margin-bottom: 8px; }
.mini-bars {
  display: flex;
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
  gap: 2px;
}
.mb { height: 100%; border-radius: 2px; }
.mb-yes { background: var(--yes); }
.mb-no { background: var(--no); }

/* LIVE MARKETS */
.livemarkets {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 48px;
  max-width: 500px;
}
.market-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
}
.market-row {
  display: grid;
  grid-template-columns: 36px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  font-size: 14px;
}
.team-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
.matchup {
  color: var(--fg-muted);
  font-size: 13px;
}
.vs {
  color: var(--border);
  margin: 0 4px;
}
.score, .game-time {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--fg-muted);
}
.market-price {
  font-weight: 600;
  color: var(--yes);
  font-size: 13px;
}
.categories-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.categories-row span {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--tag-bg);
  color: var(--accent);
  font-weight: 500;
}

/* LOGIC ENGINE */
.logicengine {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, #0f0f0f 100%);
}
.logicengine .section-title { margin-bottom: 24px; }
.section-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.section-body em {
  font-style: normal;
  color: var(--fg);
}
.logic-steps {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  width: 28px;
}
.step-text {
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
}

/* SCORE DEMO */
.score-demo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}
.score-header {
  background: var(--bg-card-sm);
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.score-section { padding: 20px; }
.score-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
}
.score-row span:first-child { color: var(--fg-muted); }
.score-bar-wrap {
  width: 120px;
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.score-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
}
.score-num {
  font-weight: 700;
  color: var(--fg);
  width: 28px;
  text-align: right;
}
.score-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-muted);
}
.total-score {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}
.payout-note {
  background: var(--accent-dim);
  border: 1px solid rgba(181,255,0,0.15);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}
.payout-note strong { color: var(--accent); }

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  background: #0a0a0a;
}
.manifesto-inner { max-width: 640px; }
.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 32px;
  font-style: normal;
}
.manifesto-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-accent {
  color: var(--fg);
  font-weight: 500;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-eye { margin-bottom: 36px; }
.closing-eye svg { animation: spin 20s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.closing-headline em {
  font-style: normal;
  color: var(--accent);
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
}
.footer-tagline {
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.footer-copy {
  margin-left: auto;
  font-size: 12px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px 80px;
    gap: 40px;
  }
  .hero-card-stack { padding-top: 0; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .market-grid { grid-template-columns: 1fr; }
  .market-row { grid-template-columns: 32px 1fr auto; }
  .market-row .score { display: none; }
  .livemarkets, .logicengine, .manifesto, .closing { padding: 60px 24px; }
  .logicengine { grid-template-columns: 1fr; gap: 40px; }
  .footer { flex-wrap: wrap; gap: 8px; }
  .footer-copy { margin-left: 0; width: 100%; }
}

@media (max-width: 480px) {
  .hero-headline { letter-spacing: -1px; }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
  .stat + .stat { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 16px; }
  .footer { flex-direction: column; align-items: flex-start; }
}