/* Base */
:root {
  --bg: #0e0e12;
  --surface: #16161d;
  --surface-2: #1e1e27;
  --fg: #e8e8ee;
  --fg-muted: #8a8a99;
  --accent: #F0A500;
  --accent-dim: rgba(240, 165, 0, 0.12);
  --border: rgba(255,255,255,0.06);
  --court-line: rgba(240, 165, 0, 0.35);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  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-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--fg);
}

.nav-tag {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

.nav-right {
  display: flex;
  align-items: center;
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--accent);
  color: #000;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-nav-cta:hover { opacity: 0.85; }

/* Hero */
.hero {
  padding: 80px 48px 96px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-court {
  position: relative;
}

.court-diagram {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}

.court-surface {
  position: absolute;
  inset: 10%;
  border: 2px solid var(--court-line);
  background: var(--accent-dim);
}

.court-line {
  position: absolute;
  background: var(--court-line);
}

.court-line.horizontal {
  height: 2px;
  left: 0; right: 0;
}

.court-line.horizontal.top { top: 33%; }
.court-line.horizontal.bottom { bottom: 33%; }

.court-line.vertical {
  width: 2px;
  top: 0; bottom: 0;
}

.court-line.vertical.left { left: 50%; }

.net-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 0; right: 0;
  border-left: 2px dashed rgba(240, 165, 0, 0.2);
  border-right: 2px dashed rgba(240, 165, 0, 0.2);
}

.center-mark {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(240, 165, 0, 0.15);
  transform: translateX(-50%);
}

/* Shot dots */
.shot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.shot-1 { top: 20%; left: 30%; opacity: 0.9; width: 12px; height: 12px; }
.shot-2 { top: 28%; left: 62%; opacity: 0.8; }
.shot-3 { top: 40%; left: 45%; opacity: 0.95; width: 14px; height: 14px; }
.shot-4 { top: 55%; left: 35%; opacity: 0.7; }
.shot-5 { top: 60%; left: 58%; opacity: 0.85; width: 11px; height: 11px; }
.shot-6 { top: 75%; left: 42%; opacity: 0.75; }
.shot-7 { top: 80%; left: 65%; opacity: 0.6; width: 9px; height: 9px; }
.shot-8 { top: 35%; left: 70%; opacity: 0.5; width: 8px; height: 8px; }

.zone {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.zone-hot-1 {
  top: 15%; left: 25%;
  width: 80px; height: 80px;
  background: rgba(240, 165, 0, 0.3);
}

.zone-hot-2 {
  top: 50%; left: 40%;
  width: 100px; height: 100px;
  background: rgba(240, 165, 0, 0.2);
}

.court-label {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.label-tag {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.label-legend {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--fg-muted);
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 4px;
}

.dot.hot { background: var(--accent); }

/* Hero content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--fg);
}

.hero-headline em {
  color: var(--accent);
  font-style: normal;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 8px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Section shared */
.section-header {
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--fg);
}

/* How it works */
.howitworks {
  padding: 96px 48px;
  background: var(--surface);
}

.howitworks .section-header {
  text-align: center;
  margin-bottom: 72px;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  max-width: 240px;
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  opacity: 0.7;
}

.step-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.step-body p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-connector {
  flex-shrink: 0;
}

/* Features */
.features {
  padding: 96px 48px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-main {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.feature-card {
  background: var(--surface);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid rgba(240, 165, 0, 0.2);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
}

.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.heatmap-preview {
  margin-top: 8px;
}

.preview-court {
  width: 100%;
  height: 140px;
  background: var(--surface-2);
  border: 1px solid var(--court-line);
  position: relative;
  overflow: hidden;
}

.preview-court::before {
  content: '';
  position: absolute;
  top: 20%; left: 10%;
  width: 60px; height: 60px;
  background: rgba(240, 165, 0, 0.25);
  border-radius: 50%;
  filter: blur(16px);
}

.preview-court::after {
  content: '';
  position: absolute;
  top: 55%; left: 45%;
  width: 80px; height: 80px;
  background: rgba(240, 165, 0, 0.15);
  border-radius: 50%;
  filter: blur(20px);
}

/* Sport coverage */
.sportcoverage {
  padding: 96px 48px;
  background: var(--surface);
}

.sportcoverage .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.sport-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s;
}

.sport-card:hover {
  border-color: rgba(240, 165, 0, 0.3);
}

.sport-icon {
  opacity: 0.9;
}

.sport-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--fg);
}

.sport-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 120px 48px;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.closing-tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 24px;
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 32px;
}

.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
}

.closing-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 32px;
  padding: 12px 28px;
  background: var(--accent);
  color: #000;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.closing-cta:hover { opacity: 0.85; }

/* Footer */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
}

.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-court { order: 2; }
  .hero-content { order: 1; }
  .howitworks, .features, .sportcoverage, .closing { padding: 64px 24px; }
  .steps { flex-direction: column; gap: 40px; }
  .step-connector { transform: rotate(90deg); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-main { grid-column: auto; grid-template-columns: 1fr; }
  .sports-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-sep { display: none; }
}