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

:root {
  --navy: #0B1120;
  --navy-mid: #111827;
  --amber: #F59E0B;
  --amber-dim: rgba(245,158,11,0.12);
  --cream: #F5F0E8;
  --cream-dark: #EDE6D8;
  --white: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--navy);
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  background: rgba(11,17,32,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,158,11,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--amber);
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === SECTION LABELS === */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 20px;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,158,11,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(245,158,11,0.03) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 32px;
}

.hero-lede {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 480px;
}

.hero-lede--accent {
  color: var(--cream);
  font-weight: 500;
}

/* Hero Visual - Court Block */
.hero-visual {
  position: relative;
  z-index: 2;
}

.court-block {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--navy-mid);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(245,158,11,0.1);
}

/* Court lines drawn in CSS */
.court-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(245,158,11,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

.court-lines::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(245,158,11,0.15);
}

.court-lines::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(245,158,11,0.15);
}

/* Player silhouette - CSS art */
.player-silhouette {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 140px;
  height: 220px;
}

.player-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 180px;
  background: var(--navy);
  border-radius: 30px 30px 20px 20px;
  box-shadow:
    0 0 0 2px rgba(245,158,11,0.4),
    0 0 30px rgba(245,158,11,0.15),
    inset 0 0 20px rgba(245,158,11,0.05);
}

.player-body::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(245,158,11,0.4);
}

/* Ball glow */
.ball-glow {
  position: absolute;
  top: 30%;
  right: -20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, #F59E0B 0%, rgba(245,158,11,0.3) 50%, transparent 70%);
  box-shadow: 0 0 20px rgba(245,158,11,0.4), 0 0 40px rgba(245,158,11,0.2);
  animation: ball-pulse 2.5s ease-in-out infinite;
}

.ball-glow::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #F59E0B;
}

/* Spotlight beam */
.spotlight {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(245,158,11,0.4), rgba(245,158,11,0.05) 60%, transparent);
}

.spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.3) 0%, transparent 70%);
}

/* Paywall overlay */
.paywall-overlay {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,17,32,0.9);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px;
  padding: 8px 20px;
  backdrop-filter: blur(8px);
}

.paywall-lock {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid var(--amber);
  border-radius: 2px;
  position: relative;
}

.paywall-lock::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -3px;
  width: 16px;
  height: 10px;
  border: 2px solid var(--amber);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.paywall-text {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
}

/* Ball pulse animation */
@keyframes ball-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.85; }
}

/* === WHAT SECTION === */
.what {
  padding: 120px 48px;
  background: var(--cream);
  color: var(--navy);
}

.what-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 72px;
  max-width: 600px;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.what-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.what-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11,17,32,0.08);
}

.what-icon {
  width: 56px;
  height: 56px;
  background: var(--amber-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.what-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.what-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4B5563;
}

/* === HOW SECTION === */
.how {
  padding: 120px 48px;
  background: var(--navy);
  border-top: 1px solid rgba(245,158,11,0.08);
}

.how-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  padding: 48px 0;
  align-items: start;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: rgba(245,158,11,0.15);
  line-height: 1;
  letter-spacing: -0.04em;
}

.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
}

.step-divider {
  height: 1px;
  background: rgba(245,158,11,0.1);
}

/* === MANIFESTO SECTION === */
.manifesto {
  padding: 140px 48px;
  background: var(--navy-mid);
  border-top: 1px solid rgba(245,158,11,0.08);
  border-bottom: 1px solid rgba(245,158,11,0.08);
}

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

.manifesto blockquote {
  margin: 0 0 40px;
}

.manifesto blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--white);
  font-weight: 700;
}

.manifesto-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.manifesto-sub:last-child {
  color: var(--amber);
  font-weight: 600;
}

/* === CLOSING SECTION === */
.closing {
  padding: 140px 48px;
  background: var(--navy);
}

.closing-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.closing-body {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 72px;
}

.closing-stat {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 40px;
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 16px;
  max-width: 600px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 4rem;
  color: var(--amber);
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
}

.stat-label {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* === FOOTER === */
.site-footer {
  padding: 40px 48px;
  border-top: 1px solid rgba(245,158,11,0.08);
  background: var(--navy);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--amber);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .site-nav { padding: 16px 24px; }
  .nav-tagline { display: none; }

  .hero { padding: 100px 24px 60px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { display: none; }
  .hero-headline { font-size: 3rem; }

  .what { padding: 80px 24px; }
  .what-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .how { padding: 80px 24px; }
  .step {
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 32px 0;
  }
  .step-num { font-size: 2rem; }

  .manifesto { padding: 80px 24px; }
  .manifesto blockquote p { font-size: 1.5rem; }

  .closing { padding: 80px 24px; }
  .closing-stat { flex-direction: column; gap: 16px; padding: 28px; }
  .stat-number { font-size: 3rem; }

  .site-footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .hero-lede { font-size: 1rem; }
}
