:root {
  --green: #0b4f2c;
  --gold: #ffd700;
  --white: #f8fafc;
  --midnight: #0f172a;
  --red: #dc2626;
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --text-muted: #475569;
  --accent-link: #0b4f2c;
  --logo: #0b4f2c;
  --border: #e2e8f0;
  --section-alt: #f1f5f9;
  --shadow: 0 12px 30px -5px rgba(0,0,0,.12);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f172a;
    --surface: #1e293b;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --accent-link: #ffd700;
    --logo: #ffd700;
    --border: #334155;
    --section-alt: #162032;
    --shadow: 0 12px 30px -5px rgba(0,0,0,.35);
  }
}

html.force-dark {
  --bg: #0f172a;
  --surface: #1e293b;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --accent-link: #ffd700;
  --logo: #ffd700;
  --border: #334155;
  --section-alt: #162032;
  --shadow: 0 12px 30px -5px rgba(0,0,0,.35);
}

html.force-light {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --text-muted: #475569;
  --accent-link: #0b4f2c;
  --logo: #0b4f2c;
  --border: #e2e8f0;
  --section-alt: #f1f5f9;
  --shadow: 0 12px 30px -5px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-link); }
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  line-height: 1.05;
  margin: 0 0 .35em;
  letter-spacing: .02em;
}
h1 { font-size: clamp(2.75rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.75rem); }
p { margin: 0 0 1rem; }

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--green);
  padding: .5rem 1rem;
  font-weight: 700;
  text-decoration: none;
  z-index: 200;
}
.skip-link:focus { top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.logo {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.6rem;
  color: var(--logo);
  text-decoration: none;
  letter-spacing: .04em;
}
.header-controls { display: flex; align-items: center; gap: .5rem; }

.menu-toggle, .theme-toggle {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: .375rem;
  color: var(--text);
  cursor: pointer;
}
.menu-toggle { display: inline-flex; }
.theme-toggle { display: inline-flex; }
.icon-moon { display: none; }

@media (prefers-color-scheme: dark) {
  :root .icon-sun { display: none; }
  :root .icon-moon { display: block; }
}
html.force-dark .icon-sun { display: none; }
html.force-dark .icon-moon { display: block; }
html.force-light .icon-sun { display: block; }
html.force-light .icon-moon { display: none; }

.site-nav {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: .25rem;
  margin-top: .5rem;
  padding: .5rem 0;
}
.site-nav.open { display: flex; }
.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: .625rem .5rem;
  border-radius: .375rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.site-nav a:hover, .site-nav a:focus { background: var(--section-alt); }
.site-nav a.active { color: var(--gold); background: var(--green); }

@media (min-width: 768px) {
  .menu-toggle { display: none; }
  .site-header { flex-wrap: nowrap; }
  .site-nav {
    display: flex !important;
    flex-direction: row;
    width: auto;
    margin-top: 0;
    padding: 0;
  }
  .site-nav a { padding: .5rem .75rem; }
}

.page-hero {
  background: var(--green);
  color: var(--white);
  padding: 4rem 1rem;
}
.page-hero h1 { color: var(--white); }
.page-hero p { max-width: 640px; color: rgba(248,250,252,.9); }

.hero {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
  min-height: 70vh;
}
.hero h1 { color: var(--green); }

@media (prefers-color-scheme: dark) {
  :root .hero h1 { color: var(--gold); }
}
html.force-dark .hero h1 { color: var(--gold); }
html.force-light .hero h1 { color: var(--green); }

.actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.5rem;
  border-radius: .5rem;
  font-weight: 700;
  text-decoration: none;
  min-height: 44px;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--gold); color: var(--green); border-color: var(--gold); }
.btn-outline { color: var(--green); border-color: var(--green); background: transparent; }
.btn-outline:hover { background: var(--green); color: var(--white); }

@media (prefers-color-scheme: dark) {
  :root .btn-outline { color: var(--gold); border-color: var(--gold); }
}
html.force-dark .btn-outline { color: var(--gold); border-color: var(--gold); }
html.force-dark .btn-outline:hover { background: var(--gold); color: var(--green); }
html.force-light .btn-outline { color: var(--green); border-color: var(--green); }

.two-col { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col.reverse { direction: rtl; }
  .two-col.reverse > * { direction: ltr; }
}

.visual { border-radius: .75rem; overflow: hidden; box-shadow: var(--shadow); }
.pitch-visual { background: var(--green); }

.section { padding: 4rem 1rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.alt { background: var(--section-alt); }

.steps-grid, .features-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.steps-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.features-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.step-card, .feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: .75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green);
  display: grid;
  place-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.step-number.accent-purple { background: #7c3aed; color: #fff; }
.step-card img {
  width: 100%;
  border-radius: .5rem;
  margin-top: 1rem;
}
.feature-icon { width: 2.5rem; height: 2.5rem; color: var(--gold); margin-bottom: .75rem; }

.feature-list { padding-left: 1.25rem; margin: 0 0 1.5rem; }
.feature-list li { margin-bottom: .5rem; }

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.signup-form {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
}
.form-group { flex: 1 1 220px; }
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: .25rem;
}
.form-group input {
  width: 100%;
  padding: .625rem .875rem;
  border: 1px solid var(--border);
  border-radius: .5rem;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  min-height: 44px;
}
.form-group input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.thank-you {
  display: none;
  background: var(--green);
  color: var(--white);
  padding: 1rem;
  border-radius: .5rem;
  font-weight: 700;
  margin-top: 1rem;
}
.thank-you.visible { display: block; }

.schedule-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.fixture {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: .75rem;
  padding: 1rem 1.25rem;
}
.fixture-date {
  display: inline-block;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: .25rem;
  text-transform: uppercase;
  font-size: .875rem;
}
.fixture-match { font-size: 1.15rem; font-weight: 600; margin-bottom: .25rem; }
.team { color: var(--accent-link); }
.dot { display: inline-block; width: .25rem; height: .25rem; background: var(--text-muted); border-radius: 50%; vertical-align: middle; margin: 0 .5rem; }
.fixture-meta { color: var(--text-muted); font-size: .95rem; }

.live-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  max-width: 600px;
}
.live-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.live-pulse {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  color: var(--red);
}
.pulse-dot {
  width: .6rem;
  height: .6rem;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.2); }
}
.live-round { color: var(--text-muted); font-weight: 600; }
.live-scoreboard {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--section-alt);
  border-radius: .75rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.team-side { display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.team-name { font-size: 1.5rem; }
.score { font-size: 2.5rem; font-family: 'Bebas Neue', sans-serif; line-height: 1; }
.match-clock { font-weight: 700; color: var(--text-muted); font-size: 1.1rem; }
.live-events { list-style: none; padding: 0; margin: 0 0 1rem; }
.live-events li { padding: .35rem 0; border-bottom: 1px solid var(--border); }
.event-time { font-weight: 700; margin-right: .5rem; color: var(--accent-link); }
.live-note { color: var(--text-muted); font-size: .9rem; margin: 0; }

.table-wrap { overflow-x: auto; border-radius: .75rem; }
.data-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
}
.data-table th, .data-table td {
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table th { background: var(--green); color: var(--white); font-weight: 700; }
.data-table td { color: var(--text); }
.data-table tr:last-child td { border-bottom: none; }
.data-table .num { text-align: right; }
.table-note { color: var(--text-muted); margin-top: .75rem; font-size: .95rem; }

.chip-list { display: flex; gap: .5rem; flex-wrap: wrap; margin: 1rem 0 1.5rem; }
.chip {
  display: inline-flex;
  align-items: center;
  padding: .4rem .85rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green);
  font-weight: 700;
  font-size: .9rem;
  min-height: 32px;
}
.strategy-heading { margin-top: 1.5rem; }

.site-footer {
  background: var(--midnight);
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem;
}
.site-footer p { margin: 0; opacity: .9; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 480px) {
  .site-header { padding: .75rem; }
  .logo { font-size: 1.35rem; }
  .section { padding: 3rem 1rem; }
  .hero { min-height: auto; padding-top: 3rem; padding-bottom: 3rem; }
  .signup-form { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}
