
  :root {
    --grass: #343741;
    --pitch: #23252c;
    --lime: #ef6603;
    --lime-dim: rgba(239, 102, 3, 0.78);
    --white: #ffffff;
    --off: #b9bec8;
    --dark: #17191f;
    --card: #252932;
    --border: rgba(239, 102, 3, 0.18);
    --radius: 18px;
  }

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

  /* html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
  } */

  /* ─── PITCH GRID BACKGROUND ─── */
  /* body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(198,241,53,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(198,241,53,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
  } */

  /* ─── NAV ─── */
  /* nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: linear-gradient(to bottom, rgba(8,15,8,0.95), transparent);
    backdrop-filter: blur(4px);
  } */

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--lime);
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    color: var(--off);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--lime); }

  .nav-cta {
    background: var(--lime);
    color: var(--dark) !important;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600 !important;
    letter-spacing: 1px !important;
  }

  .nav-cta:hover { background: #ff8a3d; color: var(--dark) !important; }

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

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 65% 50%, rgba(26,58,26,0.7) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 10% 80%, rgba(198,241,53,0.07) 0%, transparent 60%);
    z-index: 0;
  } */

  /* Animated pitch circle */
  /* .pitch-circle {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 680px;
    height: 680px;
    border-radius: 50%;
    border: 1.5px solid rgba(198,241,53,0.15);
    z-index: 0;
    animation: spin 40s linear infinite;
  }

  .pitch-circle::before {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px solid rgba(198,241,53,0.08);
  }

  .pitch-circle::after {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: rgba(198,241,53,0.08);
  }

  @keyframes spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to   { transform: translateY(-50%) rotate(360deg); }
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s ease forwards;
  }

  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--lime);
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 9vw, 128px);
    line-height: 0.92;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeUp 0.8s 0.35s ease forwards;
  }

  .hero-title span {
    color: var(--lime);
    display: block;
  }

  .hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--off);
    font-weight: 300;
    max-width: 480px;
    margin: 28px 0 44px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s ease forwards;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.65s ease forwards;
  }

  .btn-primary {
    display: inline-block;
    background: var(--lime);
    color: var(--dark);
    padding: 16px 36px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }

  .btn-primary:hover { background: #d8ff4a; transform: translateY(-2px); }

  .btn-ghost {
    display: inline-block;
    border: 1.5px solid var(--border);
    color: var(--off);
    padding: 16px 36px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
  }

  .btn-ghost:hover {
    border-color: var(--lime);
    color: var(--lime);
    transform: translateY(-2px);
  } */

  .btn-primary {
    display: inline-block;
    background: var(--lime);
    color: var(--dark);
    padding: 16px 36px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }

  .btn-primary:hover { background: #ff7f2a; transform: translateY(-2px); }

  .btn-ghost {
    display: inline-block;
    border: 1.5px solid var(--border);
    color: var(--off);
    padding: 16px 36px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
  }

  .btn-ghost:hover {
    border-color: var(--lime);
    color: var(--lime);
    transform: translateY(-2px);
  }

  /* Floating stat cards */
  .hero-stats {
    position: absolute;
    right: 48px;
    bottom: 80px;
    display: flex;
    gap: 16px;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s ease forwards;
  }

  .stat-chip {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 24px;
    text-align: center;
  }

  .stat-chip .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: var(--lime);
    line-height: 1;
    letter-spacing: 2px;
  }

  .stat-chip .lbl {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--off);
    margin-top: 4px;
    font-family: 'DM Mono', monospace;
  }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-family: 'DM Mono', monospace;
    animation: bounce 2.5s infinite;
    z-index: 1;
  }

  .scroll-hint svg { opacity: 0.5; }

  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ─── MARQUEE ─── */
  /* .marquee-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--card);
    overflow: hidden;
    padding: 14px 0;
  }

  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
  }

  .marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    letter-spacing: 4px;
    color: var(--lime-dim);
    padding: 0 32px;
  }

  .marquee-item span {
    color: rgba(198,241,53,0.25);
    margin-right: 32px;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  } */

  /* ─── SECTIONS SHARED ─── */
  /* section {
    position: relative;
    z-index: 1;
    padding: 100px 48px;
  }

  .section-label {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-label::after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--lime-dim);
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  .section-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--off);
    max-width: 520px;
    font-weight: 300;
  } */

  /* ─── HOW IT WORKS ─── */
  .how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
  }

  .step {
    display: flex;
    gap: 24px;
    position: relative;
    padding-bottom: 40px;
  }

  .step:last-child { padding-bottom: 0; }

  .step::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: 0;
    width: 1px;
    background: var(--border);
  }

  .step:last-child::before { display: none; }

  .step-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--lime);
    letter-spacing: 1px;
  }

  .step-text h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
  }

  .step-text p {
    font-size: 14px;
    color: var(--off);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ─── PITCH VISUAL ─── */
  .pitch-visual {
    aspect-ratio: 1;
    max-width: 460px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pitch-visual svg {
    width: 90%;
    opacity: 0.5;
  }

  .pulse-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(198,241,53,0.4);
    animation: pulse 2s infinite;
  }

  .pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(198,241,53,0.3);
  }

  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(198,241,53,0.5); }
    70% { box-shadow: 0 0 0 18px rgba(198,241,53,0); }
    100% { box-shadow: 0 0 0 0 rgba(198,241,53,0); }
  }

  /* ─── FOR WHOM ─── */
  .whom-section { background: var(--card); }

  .whom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 56px;
  }

  .whom-card {
    background: #1d2027;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }

  .whom-card:hover { background: var(--grass); }

  .whom-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .whom-card:hover::before { transform: scaleX(1); }

  .whom-icon {
    font-size: 40px;
    margin-bottom: 24px;
    display: block;
  }

  .whom-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 16px;
  }

  .whom-card p {
    font-size: 14px;
    color: var(--off);
    line-height: 1.8;
    font-weight: 300;
  }

  .whom-card ul {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .whom-card ul li {
    font-size: 13px;
    color: var(--off);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .whom-card ul li::before {
    content: '→';
    color: var(--lime);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  /* ─── ONES TO WATCH ─── */
  .otw-section {}

  .otw-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
  }

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

  .player-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    text-decoration: none;
    display: block;
  }

  .player-card:hover {
    border-color: var(--lime);
    transform: translateY(-4px);
  }

  .player-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60px; height: 60px;
    background: radial-gradient(circle at top right, rgba(239, 102, 3, 0.18), transparent 70%);
  }

  .player-pos {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 12px;
  }

  .player-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1;
  }

  .player-tag {
    font-size: 12px;
    color: var(--off);
    font-weight: 300;
  }

  .player-badge {
    position: absolute;
    top: 28px;
    right: 28px;
    background: rgba(239, 102, 3, 0.12);
    border: 1px solid rgba(239, 102, 3, 0.28);
    color: var(--lime);
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 2px;
    padding: 4px 10px;
    border-radius: 2px;
    text-transform: uppercase;
  }

  .player-stats-row {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  .pstat { text-align: center; }
  .pstat .v {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--lime);
    letter-spacing: 1px;
    line-height: 1;
  }
  .pstat .k {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--off);
    margin-top: 4px;
    font-family: 'DM Mono', monospace;
  }

  /* ─── CTA BANNER ─── */
  .cta-section {
    background: var(--lime);
    padding: 80px 48px;
    text-align: center;
  }

  .cta-section .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 96px);
    letter-spacing: 3px;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 24px;
  }

  .cta-section .cta-sub {
    font-size: 18px;
    color: rgba(23, 25, 31, 0.72);
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
  }

  .btn-dark {
    display: inline-block;
    background: var(--dark);
    color: var(--lime);
    padding: 18px 48px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
  }

  .btn-dark:hover { background: var(--pitch); }

  /* ─── FOOTER ─── */
  /* footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 48px 48px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
  } */

  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 3px;
    color: var(--lime);
    text-decoration: none;
  }

  .footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }

  .footer-links a {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--off);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--lime); }

  .footer-copy {
    font-size: 12px;
    color: rgba(184,184,176,0.4);
    font-family: 'DM Mono', monospace;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero { padding: 100px 24px 120px; }
    section { padding: 70px 24px; }
    .how-grid { grid-template-columns: 1fr; gap: 48px; }
    .whom-grid { grid-template-columns: 1fr; }
    .otw-grid { grid-template-columns: 1fr; }
    .hero-stats { position: static; margin-top: 48px; flex-wrap: wrap; }
    .pitch-circle { width: 300px; height: 300px; right: -80px; }
    footer { flex-direction: column; text-align: center; padding: 40px 24px 24px; }
    .cta-section { padding: 60px 24px; }
  }
