:root {
  --bg: #080c14;
  --surface: #111827;
  --surface2: #1a2235;
  --fg: #f0f2f8;
  --fg-dim: #8892a4;
  --green: #00ff88;
  --green-dim: rgba(0, 255, 136, 0.12);
  --red: #ff4757;
  --red-dim: rgba(255, 71, 87, 0.12);
  --border: rgba(255, 255, 255, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(0,255,136,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 30% at 80% 100%, rgba(0,255,136,0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Grid overlay */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--fg); font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--fg-dim); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 40px 80px;
}
.hero-grid { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--green-dim); border: 1px solid rgba(0,255,136,0.2); padding: 6px 14px; border-radius: 20px; font-size: 12px; color: var(--green); font-weight: 500; margin-bottom: 24px; }
.badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-left h1 { font-size: clamp(42px, 5vw, 64px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; }
.hero-sub { color: var(--fg-dim); font-size: 17px; max-width: 460px; line-height: 1.7; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 0; }
.stat { padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat-num { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: var(--green); }
.stat-label { font-size: 12px; color: var(--fg-dim); }
.stat-div { width: 1px; background: var(--border); margin: 0 24px; }

/* Stats Widget */
.stats-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 60px rgba(0,255,136,0.05);
}
.widget-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.widget-title { font-family: 'Space Grotesk', sans-serif; font-size: 14px; color: var(--fg-dim); }
.widget-live { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--green); }
.live-dot { width: 5px; height: 5px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
.pick-row { display: grid; grid-template-columns: 1fr auto 120px; gap: 12px; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.pick-row:last-of-type { border-bottom: none; }
.player-name { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; }
.player-team { display: block; font-size: 11px; color: var(--fg-dim); margin-top: 2px; }
.pick-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.pick-stat { font-size: 11px; color: var(--fg-dim); }
.pick-direction { font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.pick-direction.more { background: var(--green-dim); color: var(--green); }
.pick-direction.less { background: var(--red-dim); color: var(--red); }
.confidence-bar { position: relative; height: 28px; background: rgba(255,255,255,0.04); border-radius: 4px; overflow: hidden; display: flex; align-items: center; }
.bar-fill { height: 100%; background: linear-gradient(90deg, rgba(0,255,136,0.3), rgba(0,255,136,0.6)); border-radius: 4px; min-width: 4px; }
.bar-fill.less-bar { background: linear-gradient(90deg, rgba(255,71,87,0.3), rgba(255,71,87,0.6)); }
.bar-label { position: absolute; right: 8px; font-size: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--fg); }
.widget-footer { margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--border); font-size: 11px; color: var(--fg-dim); }

/* MARKET */
.market { position: relative; z-index: 1; padding: 100px 40px; }
.market-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.market-tag { font-size: 12px; font-weight: 600; color: var(--green); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.market h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.02em; }
.market p { color: var(--fg-dim); font-size: 17px; max-width: 640px; margin: 0 auto 60px; line-height: 1.7; }
.market-stats { display: flex; justify-content: center; gap: 0; }
.m-stat { padding: 0 48px; border-right: 1px solid var(--border); }
.m-stat:last-child { border-right: none; }
.m-num { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 700; color: var(--green); }
.m-desc { font-size: 13px; color: var(--fg-dim); }

/* HOW */
.how { position: relative; z-index: 1; padding: 100px 40px; background: rgba(255,255,255,0.01); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-tag { font-size: 12px; font-weight: 600; color: var(--green); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.how h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 60px; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
.step { padding: 32px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; }
.step-num { font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 700; color: rgba(0,255,136,0.15); line-height: 1; margin-bottom: 20px; }
.step-content h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.step-content p { color: var(--fg-dim); font-size: 14px; line-height: 1.7; }
.edge-visual { margin-top: 8px; }
.edge-bar { max-width: 600px; }
.edge-label { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600; color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.edge-track { position: relative; height: 10px; display: flex; border-radius: 5px; overflow: hidden; }
.edge-zone { flex: 1; }
.edge-zone.danger { background: rgba(255,71,87,0.3); }
.edge-zone.caution { background: rgba(255,200,0,0.15); }
.edge-zone.green-zone { background: rgba(0,255,136,0.2); }
.edge-marker { position: absolute; top: -6px; width: 2px; height: 22px; background: var(--green); transform: translateX(-50%); box-shadow: 0 0 10px var(--green); }
.edge-labels { display: flex; margin-top: 10px; }
.edge-labels span { flex: 1; font-size: 11px; color: var(--fg-dim); }

/* DASHBOARD */
.dashboard { position: relative; z-index: 1; padding: 100px 40px; }
.dashboard-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.dash-tag { font-size: 12px; font-weight: 600; color: var(--green); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.dash-content h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px; }
.dash-content p { color: var(--fg-dim); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.dash-features { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.dash-features li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--fg); }
.dash-features li svg { flex-shrink: 0; }

.dash-screen {
  background: #0d1520;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,255,136,0.04);
}
.screen-topbar { background: var(--surface2); padding: 10px 16px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--border); }
.screen-dots { display: flex; gap: 6px; }
.screen-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.screen-dots span:first-child { background: #ff5f57; }
.screen-dots span:nth-child(2) { background: #ffbd2e; }
.screen-dots span:nth-child(3) { background: #28c840; }
.screen-title { font-family: 'Space Grotesk', sans-serif; font-size: 11px; color: var(--fg-dim); margin-left: auto; margin-right: auto; }
.screen-body { padding: 20px; }
.screen-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.screen-label { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; }
.screen-count { font-size: 12px; color: var(--fg-dim); background: var(--green-dim); color: var(--green); padding: 2px 8px; border-radius: 10px; }
.screen-picks { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.sp { display: flex; justify-content: space-between; align-items: center; background: var(--surface); padding: 10px 14px; border-radius: 8px; }
.sp-name { font-family: 'Space Grotesk', sans-serif; font-size: 12px; }
.sp-pick { font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.sp-pick.more { background: var(--green-dim); color: var(--green); }
.sp-pick.less { background: var(--red-dim); color: var(--red); }
.screen-winrate { }
.wr-label { font-size: 11px; color: var(--fg-dim); margin-bottom: 6px; }
.wr-bar { height: 6px; background: var(--surface2); border-radius: 3px; overflow: hidden; margin-bottom: 4px; }
.wr-fill { height: 100%; background: linear-gradient(90deg, var(--green), rgba(0,255,136,0.5)); border-radius: 3px; }
.wr-num { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: var(--green); }

/* SPORTS */
.sports { position: relative; z-index: 1; padding: 100px 40px; background: rgba(255,255,255,0.01); }
.sports-inner { max-width: 1200px; margin: 0 auto; }
.sports-tag { font-size: 12px; font-weight: 600; color: var(--green); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; text-align: center; }
.sports h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 12px; text-align: center; }
.sports > .sports-inner > p { color: var(--fg-dim); font-size: 17px; text-align: center; margin-bottom: 60px; }
.sport-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.sport-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 28px 20px; transition: border-color 0.3s, transform 0.3s; }
.sport-card:hover { border-color: rgba(0,255,136,0.3); transform: translateY(-4px); }
.sport-icon { margin-bottom: 16px; }
.sport-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.sport-card p { font-size: 13px; color: var(--fg-dim); line-height: 1.6; }

/* CLOSING */
.closing { position: relative; z-index: 1; padding: 120px 40px; text-align: center; }
.closing-inner { max-width: 800px; margin: 0 auto; position: relative; }
.closing-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(0,255,136,0.08) 0%, transparent 70%); pointer-events: none; }
.closing h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 24px; position: relative; }
.closing p { color: var(--fg-dim); font-size: 18px; line-height: 1.7; max-width: 560px; margin: 0 auto; position: relative; }

/* FOOTER */
footer { position: relative; z-index: 1; padding: 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; }
.footer-note { font-size: 12px; color: var(--fg-dim); max-width: 400px; text-align: right; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid, .dashboard-inner { grid-template-columns: 1fr; gap: 48px; }
  .how-steps { grid-template-columns: 1fr; }
  .sport-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { padding-top: 100px; }
}
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 80px 24px 60px; }
  .market, .how, .dashboard, .sports, .closing { padding: 80px 24px; }
  .market-stats { flex-direction: column; gap: 24px; }
  .m-stat { border-right: none; padding: 0; }
  .sport-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-div { display: none; }
  .pick-row { grid-template-columns: 1fr; gap: 8px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-note { text-align: center; max-width: 100%; }
}
@media (max-width: 480px) {
  .sport-grid { grid-template-columns: 1fr; }
}