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

:root {
  --bg: #0A0A0A;
  --bg-alt: #111111;
  --surface: #1A1A1A;
  --border: #2A2A2A;
  --lime: #CCFF00;
  --lime-dim: #9BBA00;
  --text: #F5F5F5;
  --text-muted: #888888;
  --text-dim: #444444;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1200px;
  --section-pad: 100px 24px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  color: var(--lime);
  font-size: 20px;
  font-weight: 700;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--lime);
}

.eyebrow-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-sponsor {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.court-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  overflow: hidden;
}

.court-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
}

.court-lines::after {
  content: '';
  position: absolute;
  top: 30%; left: 20%; right: 20%; bottom: 30%;
  border: 1px solid var(--lime);
  opacity: 0.15;
}

.pro-photo-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
}

.pro-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--border);
  filter: contrast(1.05) saturate(0.9);
}

.photo-caption {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-align: right;
}

/* ===== PROOF ===== */
.proof {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
}

.proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== FEATURES ===== */
.features {
  padding: var(--section-pad);
  max-width: var(--max-w);
  margin: 0 auto;
}

.features-header {
  margin-bottom: 72px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 700px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.feature-card {
  background: var(--surface);
  padding: 48px 40px;
  border: 1px solid var(--border);
}

.feature-icon {
  margin-bottom: 24px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== PLAYBOOK ===== */
.playbook {
  padding: var(--section-pad);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.playbook-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.playbook-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.playbook-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.quote-block {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--surface);
  border-left: 3px solid var(--lime);
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.quote-block cite {
  font-size: 13px;
  color: var(--text-muted);
  font-style: normal;
}

.playbook-image {
  position: relative;
}

.court-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--border);
  filter: contrast(1.05) saturate(0.85);
}

.image-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.overlay-label {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--text);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 840px;
  margin: 0 auto;
}

.manifesto-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}

.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 48px;
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 64px;
}

.manifesto-body p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
}

.manifesto-stats {
  display: flex;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

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

.m-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
}

.m-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.closing-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 56px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.closing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.cta-sub {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-dim);
  max-width: 300px;
  line-height: 1.5;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

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

  .hero { padding: 100px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .pro-photo { height: 360px; }

  .proof-inner { flex-wrap: wrap; gap: 24px; }
  .proof-divider { display: none; }
  .proof-stat { flex: 0 0 calc(50% - 12px); }

  .feature-grid { grid-template-columns: 1fr; }

  .playbook-inner { grid-template-columns: 1fr; gap: 48px; }

  .manifesto-stats { flex-wrap: wrap; gap: 32px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ===== NAV ACTIONS ===== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  background: var(--lime);
  color: #0A0A0A;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}

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

@media (max-width: 600px) {
  .hero-headline { font-size: 44px; }
  .section-title { font-size: 28px; }
  .manifesto-title { font-size: 28px; }
  .closing-headline { font-size: 32px; }
  .proof-stat { flex: 0 0 100%; text-align: left; }
  .stat-num { font-size: 32px; }
  .proof-inner { flex-direction: column; align-items: flex-start; }
  .playbook-title { font-size: 30px; }
  .features { padding: 60px 20px; }
  .playbook, .manifesto, .closing { padding: 60px 20px; }
}