/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080B10;
  --bg-2: #0D1117;
  --bg-3: #111827;
  --surface: #0D1520;
  --surface-2: #111D2B;
  --border: #1A2535;
  --border-bright: #243348;
  --fg: #E8EDF4;
  --fg-2: #8899AA;
  --fg-3: #5A6B7D;
  --accent: #00FF88;
  --accent-dim: rgba(0,255,136,0.12);
  --accent-glow: rgba(0,255,136,0.25);
  --amber: #FFB800;
  --amber-dim: rgba(255,184,0,0.12);
  --red: #FF4D4D;
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.2s ease;
}

html {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--fg); }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.02em; }
h3 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--fg-2); font-size: 1rem; line-height: 1.7; }

/* === LAYOUT === */
.section-head { margin-bottom: 3rem; }
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { font-size: 1.05rem; max-width: 520px; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,11,16,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--fg); letter-spacing: -0.02em;
}
.nav-tagline { font-size: 0.8rem; color: var(--fg-3); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

/* === HERO === */
.hero {
  padding: 120px 2rem 80px;
  position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-dim);
  border: 1px solid rgba(0,255,136,0.25);
  padding: 0.3rem 0.8rem; border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-headline { margin-bottom: 1.25rem; }
.hero-headline br { display: none; }
.hero-lede { font-size: 1.05rem; max-width: 480px; }

/* Hero visual: prop cards */
.hero-visual {
  display: flex; flex-direction: column; gap: 0.75rem;
  animation: slideUp 0.6s ease 0.2s both;
}

/* Prop card component */
.prop-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  transition: border-color var(--transition);
}
.prop-card:hover { border-color: var(--border-bright); }
.prop-card--featured {
  border-color: rgba(0,255,136,0.3);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(0,255,136,0.04) 100%);
  box-shadow: 0 0 40px rgba(0,255,136,0.06), 0 8px 32px rgba(0,0,0,0.4);
}
.prop-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.4rem; }
.prop-card-sport { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.prop-card-time { font-size: 0.7rem; color: var(--fg-3); }
.prop-card-player { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 0.15rem; }
.prop-card-market { font-size: 0.75rem; color: var(--fg-3); margin-bottom: 0.3rem; }
.prop-card-line { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--fg); margin-bottom: 0.6rem; }
.prop-card-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; }
.prop-card-odds { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--accent); }
.prop-card-reason {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.78rem; color: var(--fg-3); line-height: 1.5;
  padding-top: 0.6rem; border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}
.prop-card-reason-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 0.35rem;
}
.prop-card-bar {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 0.5rem;
}
.prop-card-bar-fill {
  height: 4px; flex: 1;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) var(--w), transparent var(--w));
  border-radius: 2px;
}
.prop-card-bar-label { font-size: 0.65rem; color: var(--fg-3); white-space: nowrap; }

/* Confidence badge */
.confidence-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  border: 1px solid;
}
.confidence-badge--high { background: rgba(0,255,136,0.1); border-color: rgba(0,255,136,0.3); }
.confidence-badge--medium { background: rgba(255,184,0,0.1); border-color: rgba(255,184,0,0.3); }
.confidence-score {
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
}
.confidence-badge--high .confidence-score { color: var(--accent); }
.confidence-badge--medium .confidence-score { color: var(--amber); }
.confidence-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em; color: var(--fg-3); }

/* Hero glow effect */
.hero-glow {
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,255,136,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* === STATS === */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 2rem;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.stat { text-align: center; }
.stat-value {
  font-family: var(--font-display); font-weight: 800; font-size: 2rem;
  color: var(--fg); letter-spacing: -0.03em;
}
.stat-label { font-size: 0.75rem; color: var(--fg-3); margin-top: 0.2rem; letter-spacing: 0.05em; }
.stat-sep { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* === MANIFESTO === */
.manifesto { padding: 6rem 2rem; }
.manifesto-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.manifesto-text h2 { margin-bottom: 1.5rem; }
.manifesto-text p { margin-bottom: 1rem; }

/* Grid chart */
.grid-chart { display: flex; flex-direction: column; gap: 1.1rem; }
.grid-row {
  display: grid; grid-template-columns: 60px 1fr 80px;
  align-items: center; gap: 1rem;
}
.grid-label { font-size: 0.75rem; color: var(--fg-3); font-weight: 500; }
.grid-bar {
  height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, var(--c) 0%, var(--c) var(--w), rgba(255,255,255,0.06) var(--w));
}
.grid-val { font-size: 0.75rem; color: var(--accent); font-weight: 600; text-align: right; }

/* === FEATURES === */
.features { padding: 6rem 2rem; background: var(--bg-2); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.feature:hover { border-color: var(--border-bright); transform: translateY(-2px); }
.feature--accent {
  border-color: rgba(0,255,136,0.2);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(0,255,136,0.03) 100%);
}
.feature-icon { margin-bottom: 1.25rem; }
.feature-sport { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.feature-title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 0.75rem; }
.feature-desc { font-size: 0.9rem; color: var(--fg-2); margin-bottom: 1rem; line-height: 1.6; }
.feature-markets { font-size: 0.72rem; color: var(--fg-3); border-top: 1px solid var(--border); padding-top: 0.75rem; }

/* === CONFIDENCE === */
.confidence-section { padding: 6rem 2rem; }
.confidence-inner { max-width: 1200px; margin: 0 auto; }
.confidence-scale {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-bottom: 2rem;
}
.scale-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.scale-number {
  font-family: var(--font-display); font-weight: 800; font-size: 2rem;
  margin-bottom: 0.25rem; letter-spacing: -0.02em;
}
.scale-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.scale-desc { font-size: 0.8rem; color: var(--fg-3); }
.scale-item--low .scale-number { color: var(--fg-2); }
.scale-item--medium .scale-number { color: var(--amber); }
.scale-item--high .scale-number { color: #7EFFB2; }
.scale-item--elite .scale-number { color: var(--accent); }
.scale-item--elite { border-color: rgba(0,255,136,0.3); background: linear-gradient(135deg, var(--surface) 0%, rgba(0,255,136,0.04) 100%); }
.scale-item--elite .scale-label { color: var(--accent); }
.confidence-explainer {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.82rem; color: var(--fg-3); line-height: 1.6;
}
.confidence-explainer svg { flex-shrink: 0; margin-top: 0.15rem; }

/* === PICKS BOARD === */
.picksboard { padding: 6rem 2rem; background: var(--bg-2); }
.picksboard-inner { max-width: 1200px; margin: 0 auto; }
.table-wrap { overflow-x: auto; margin-bottom: 1.5rem; }
.picks-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.88rem;
}
.picks-table th {
  text-align: left; padding: 0.75rem 1rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-3); border-bottom: 1px solid var(--border);
}
.pick-row td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--fg-2);
}
.pick-row { transition: background var(--transition); }
.pick-row:hover { background: rgba(255,255,255,0.02); }
.pick-row--elite td:first-child { border-left: 3px solid var(--accent); }
.pick-row--high td:first-child { border-left: 3px solid #7EFFB2; }
.pick-player { font-family: var(--font-display); font-weight: 600; color: var(--fg) !important; }
.pick-direction { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; }
.pick-direction--over { color: var(--accent) !important; }
.pick-direction--under { color: var(--red) !important; }
.pick-odds { font-family: var(--font-display); font-weight: 600; }
.pick-edge { color: var(--accent) !important; font-weight: 600; }
.sport-tag {
  display: inline-block; padding: 0.2rem 0.5rem;
  border-radius: 4px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em;
}
.sport-tag--nba { background: rgba(255,100,100,0.12); color: #FF8888; }
.sport-tag--nfl { background: rgba(100,150,255,0.12); color: #7AAEFF; }
.sport-tag--mlb { background: rgba(255,180,80,0.12); color: #FFB84D; }
.sport-tag--ten { background: rgba(150,255,150,0.12); color: var(--accent); }
.conf-mini {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 26px; border-radius: 6px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
}
.conf-mini--elite { background: rgba(0,255,136,0.15); color: var(--accent); }
.conf-mini--high { background: rgba(126,255,178,0.12); color: #7EFFB2; }
.conf-mini--medium { background: rgba(255,184,0,0.12); color: var(--amber); }
.picksboard-note { font-size: 0.78rem; color: var(--fg-3); text-align: center; margin-top: 1rem; }

/* === CLOSING === */
.closing { padding: 8rem 2rem; position: relative; overflow: hidden; }
.closing-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 4rem;
}
.closing-content h2 { margin-bottom: 1.25rem; }
.closing-content p { margin-bottom: 1.5rem; max-width: 500px; }
.closing-tagline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--accent);
}

/* Pulse rings */
.pulse-ring {
  position: relative; width: 180px; height: 180px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(0,255,136,0.2);
  animation: ringPulse 3s ease infinite;
}
.ring-1 { width: 100%; height: 100%; animation-delay: 0s; }
.ring-2 { width: 70%; height: 70%; animation-delay: 0.4s; }
.ring-3 { width: 45%; height: 45%; animation-delay: 0.8s; }
.ring-center { position: relative; z-index: 1; }
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 0.3; }
  100% { transform: scale(1); opacity: 0.6; }
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links span { font-size: 0.78rem; color: var(--fg-3); }
.footer-legal { font-size: 0.72rem; color: var(--fg-3); max-width: 400px; text-align: right; }

/* === ANIMATIONS === */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-headline br { display: block; }
  .hero-visual { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 3rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .confidence-scale { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
  .stat-sep { display: none; }
  .closing-inner { flex-direction: column; text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-legal { text-align: center; }
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .confidence-scale { grid-template-columns: 1fr 1fr; }
  .picks-table { font-size: 0.78rem; }
}