:root {
  --green: #6ddb74;
  --green-2: #53c861;
  --dark: #050812;
  --dark-2: #090f23;
  --panel: #0d1428;
  --text: #f7f8ff;
  --muted: #b9c1d6;
  --ink: #0e1320;
  --line: rgba(255,255,255,.16);
  --shadow: 0 24px 80px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--dark);
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

.container {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 0 clamp(22px, 4vw, 48px);
  background: rgba(4, 7, 18, .9);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
}
.brand-mark {
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.07em;
  color: #fff;
}
.brand-mark::after {
  content: "";
  display: inline-block;
  width: 0;
}
.brand-name-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.02;
}
.brand-name-top,
.brand-name-bottom {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 800;
}
.main-nav a {
  text-decoration: none;
  color: rgba(255,255,255,.9);
}
.main-nav a:hover { color: var(--green); }

.nav-cta {
  padding: 14px 22px;
  border-radius: 13px;
  color: #09110a !important;
  background: linear-gradient(135deg, #ff981f, #ffb347);
  box-shadow: 0 16px 42px rgba(255,152,31,.25);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 42px;
  background:
    radial-gradient(circle at 75% 18%, rgba(122, 58, 255, .33), transparent 28%),
    radial-gradient(circle at 46% 76%, rgba(109, 219, 116, .12), transparent 24%),
    linear-gradient(180deg, #050812, #080d1c 62%, #070b16);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 38%;
  background:
    linear-gradient(transparent, rgba(12, 53, 23, .42)),
    repeating-linear-gradient(90deg, rgba(50,120,54,.16) 0 24px, rgba(23,80,30,.18) 24px 48px);
  opacity: .4;
  pointer-events: none;
}
.stadium-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 42%, rgba(255,255,255,.16), transparent 10%),
    radial-gradient(ellipse at 20% 54%, rgba(255,255,255,.08), transparent 10%),
    linear-gradient(105deg, transparent 0 52%, rgba(255,255,255,.05) 52% 53%, transparent 53%);
  opacity: .62;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 46px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  max-width: 650px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 950;
}
h1 span, .league-copy h2 span { color: var(--green); }

.hero-lede {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.88);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 58px;
  padding: 0 25px;
  border-radius: 13px;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #081009;
  background: linear-gradient(135deg, var(--green), #86d58a);
  box-shadow: 0 18px 42px rgba(109,219,116,.22);
}
.button-secondary {
  color: #fff;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.42);
}
.button img { width: 28px; height: 28px; }

.proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: #fff;
  font-weight: 850;
}
.proof-points b {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  color: #081009;
  background: var(--green);
  border-radius: 50%;
}

.hero-image { position: relative; }
.hero-image::before {
  content: "";
  position: absolute;
  inset: 24px;
  background: rgba(109,219,116,.16);
  filter: blur(44px);
}
.hero-image img {
  position: relative;
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.feature-strip {
  padding: 0 0 46px;
  background: linear-gradient(180deg, #070b16, #070b16);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 24px;
  background: rgba(13,20,40,.88);
  box-shadow: 0 24px 70px rgba(0,0,0,.36);
}
.feature-grid article {
  min-height: 230px;
  padding: 26px 22px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.14);
}
.feature-grid article:last-child { border-right: 0; }
.feature-grid img { width: 70px; margin: 0 auto 16px; }
.feature-grid h3 { margin-bottom: 10px; font-size: 17px; }
.feature-grid p { margin: 0; color: var(--muted); line-height: 1.5; }

.league-section {
  padding: 72px 0;
  color: var(--ink);
  background: #fff;
}
.league-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 54px;
  align-items: center;
}
.league-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.06;
  letter-spacing: -.05em;
  font-weight: 950;
}
.league-copy p {
  max-width: 420px;
  color: #3d465c;
  font-size: 18px;
  line-height: 1.62;
}

.league-cards {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  align-items: start;
}
.status-label { margin-bottom: 12px; font-weight: 950; }
.status-label.live { color: var(--green-2); }
.status-label.planned { color: #5b44bc; }

.league-card,
.planned-grid article {
  border: 1px solid #dde4f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17,24,39,.08);
}
.league-card-large {
  display: grid;
  place-items: center;
  min-height: 288px;
  padding: 26px;
  text-align: center;
}
.league-card-large img { width: 120px; }
.league-card-large h3 {
  margin: 12px 0 16px;
  font-size: 24px;
  line-height: 1.13;
}
.league-card-large span {
  display: inline-flex;
  padding: 9px 18px;
  border-radius: 999px;
  color: #081009;
  background: var(--green);
  font-weight: 950;
}

.planned-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.planned-grid article {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 122px;
  padding: 14px 10px;
  text-align: center;
}
.planned-grid img { width: 58px; }
.planned-grid span {
  color: #111827;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
}

.workflow-section {
  padding: 82px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(109,219,116,.1), transparent 25%),
    linear-gradient(180deg, #090f23, #050812);
}
.section-intro {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-intro h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.05em;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.workflow-grid article {
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
}
.workflow-grid strong {
  display: block;
  margin-bottom: 32px;
  color: var(--green);
  font-size: 42px;
  line-height: 1;
}
.workflow-grid h3 { margin-bottom: 12px; font-size: 25px; }
.workflow-grid p { color: var(--muted); line-height: 1.55; }

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 50%, rgba(101,55,255,.18), transparent 30%),
    linear-gradient(90deg, #050812, #100b24);
}
.cta-image {
  position: absolute;
  inset: 0 auto 0 0;
  width: 38%;
  opacity: .94;
}
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.final-cta-grid {
  position: relative;
  min-height: 260px;
  display: grid;
  grid-template-columns: .38fr .62fr;
  align-items: center;
}
.final-copy {
  grid-column: 2;
  padding: 54px 0;
}
.final-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
}
.final-copy p {
  max-width: 680px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.52;
}

.trust-section {
  padding: 32px 0;
  background: #070b16;
  border-top: 1px solid rgba(255,255,255,.1);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,.13);
}
.trust-grid article:last-child { border-right: 0; }
.trust-grid img { grid-row: 1 / 3; width: 56px; }
.trust-grid h3 { margin: 0 0 4px; font-size: 17px; }
.trust-grid p { margin: 0; color: var(--muted); }

.site-footer {
  padding: 20px 0 28px;
  background: #050812;
  color: rgba(255,255,255,.52);
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
}
.site-footer p {
  max-width: 900px;
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid, .league-grid, .league-cards { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid article:nth-child(3) { border-right: 0; }
  .planned-grid { grid-template-columns: repeat(3, 1fr); }
  .league-card-large { min-height: 240px; }
  .cta-image { opacity: .25; width: 100%; }
  .final-cta-grid { grid-template-columns: 1fr; }
  .final-copy { grid-column: auto; }
}

@media (max-width: 820px) {
  .site-header { min-height: 72px; }
  .brand-mark { font-size: 28px; }
  .brand-name-top, .brand-name-bottom { font-size: 14px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-radius: 20px;
    background: #070b16;
    box-shadow: 0 30px 90px rgba(0,0,0,.5);
  }
  .nav-open .main-nav { display: flex; }
  .main-nav a { padding: 15px 12px; }
  .nav-cta { margin-top: 8px; text-align: center; }

  .feature-grid, .workflow-grid, .trust-grid { grid-template-columns: 1fr; }
  .feature-grid article, .trust-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }
  .feature-grid article:last-child, .trust-grid article:last-child { border-bottom: 0; }
  .planned-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
}

@media (max-width: 540px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { padding-top: 48px; }
  h1 { font-size: 43px; }
  .proof-points { display: grid; gap: 12px; }
  .planned-grid { grid-template-columns: 1fr; }
  .league-card-large { min-height: 220px; }
  .final-copy { padding: 46px 0; }
}
