/* Fonts: Syne (headings) + Outfit (body) */

:root {
  --bg: #0b0b0f;
  --surface: #13131a;
  --surface-2: #1a1a24;
  --border: #2a2a38;
  --teal: #00e5a0;
  --teal-dim: #00b37d;
  --red: #ff4d5e;
  --amber: #ffb340;
  --text: #f0f0f8;
  --text-muted: #7a7a96;
  --text-dim: #4a4a62;
  --win: #00e5a0;
  --loss: #ff4d5e;
  --push: #7a7a96;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--teal);
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* HERO */
.hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-meta-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
}
.hero-meta-item {
  padding: 12px 20px;
}
.hero-meta-divider {
  width: 1px;
  background: var(--border);
}
.hero-meta-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 2px;
}
.hero-meta-value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.hero-right {}
.hero-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.stat-card-header {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 20px;
}
.stat-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}
.stat-block { text-align: center; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-card-footer {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.hero-bottom-bar {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-sport-badge {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* SECTIONS */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

/* PILLARS */
.pillars {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.pillars > .section-label,
.pillars > .section-heading {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
.pillars > .section-heading {
  margin-bottom: 40px;
}
.pillars-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.pillar-card {
  background: var(--surface);
  padding: 32px;
}
.pillar-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.pillar-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pillar-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* PROOF */
.proof {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.proof-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.proof-left {}
.proof-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.proof-right {}
.results-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  font-size: 13px;
}
.results-header {
  display: grid;
  grid-template-columns: 60px 1fr 100px 80px;
  gap: 8px;
  padding: 10px 16px;
  background: var(--surface-2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-weight: 600;
}
.results-row {
  display: grid;
  grid-template-columns: 60px 1fr 100px 80px;
  gap: 8px;
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  align-items: center;
}
.result-badge {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  display: inline-block;
}
.result-badge.win { background: rgba(0,229,160,0.15); color: var(--win); }
.result-badge.loss { background: rgba(255,77,94,0.15); color: var(--loss); }
.result-badge.push { background: rgba(122,122,150,0.15); color: var(--push); }
.proof-footer {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

/* COMMUNITY */
.community {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.community > .section-label,
.community > .section-heading {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
.community > .section-heading { margin-bottom: 40px; }
.tiers-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.tier-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.tier-badge.free { background: rgba(0,229,160,0.12); color: var(--teal); }
.tier-badge.pro { background: rgba(255,179,64,0.15); color: var(--amber); }
.tier-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.tier-price {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 20px;
}
.tier-price span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.tier-features {
  list-style: none;
  margin-bottom: 24px;
}
.tier-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.tier-features li::before {
  content: "\2713";
  color: var(--teal);
  margin-right: 8px;
  font-size: 12px;
}
.tier-cta {
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.tier-cta-pro {
  background: var(--amber);
  color: #0b0b0f;
  border-color: var(--amber);
}

/* CLOSING */
.closing {
  padding: 80px 0;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.closing-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 32px;
}
.closing-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-legal {
  font-size: 11px;
  color: var(--text-dim);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .hero-meta-row { flex-direction: column; width: 100%; }
  .hero-meta-divider { width: 100%; height: 1px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .proof-layout { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .results-header, .results-row { grid-template-columns: 50px 1fr 70px; }
  .results-header span:nth-child(3),
  .results-row span:nth-child(3) { display: none; }
  .hero-bottom-bar { gap: 6px; }
}