:root {
  --bg: #f7f5f0;
  --fg: #1a1a1a;
  --green: #1e5c38;
  --green-mid: #2a7a4a;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --surface: #ffffff;
  --muted: #6b6b6b;
  --border: #e0dcd4;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.5px;
}
.nav-badge {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: var(--green);
  padding: 4px 10px;
  border-radius: 2px;
}

/* HERO */
.hero {
  padding: 80px 48px 80px;
  background: var(--green);
  color: white;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: white;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 440px;
}

/* TICKER */
.hero-ticker {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 24px;
}
.ticker-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ticker-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}
.ticker-match { color: rgba(255,255,255,0.8); }
.ticker-yes, .ticker-no {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}
.ticker-yes { background: rgba(42,122,74,0.6); color: #8fd4a0; }
.ticker-no { background: rgba(201,168,76,0.15); color: var(--gold-light); }
.ticker-price { font-weight: 700; font-size: 13px; }
.ticker-footnote {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  letter-spacing: 0.5px;
}

/* SECTIONS */
.section-title {
  font-size: 36px;
  margin-bottom: 48px;
  color: var(--fg);
}
.section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

/* MARKETS */
.markets { padding: 80px 48px; background: var(--surface); }
.markets-inner { max-width: 1100px; margin: 0 auto; }
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.market-card {
  background: var(--bg);
  padding: 32px 28px;
}
.market-icon { margin-bottom: 16px; }
.market-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--fg); }
.market-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* HOW */
.how { padding: 80px 48px; background: var(--bg); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--border);
  margin-bottom: 16px;
}
.step-content h3 { font-size: 18px; margin-bottom: 10px; }
.step-content p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* AMATEUR */
.amateur { padding: 80px 48px; background: var(--surface); }
.amateur-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.amateur-text h2 {
  font-size: 40px;
  margin-bottom: 24px;
  margin-top: 12px;
}
.amateur-text p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.amateur-highlight {
  color: var(--green) !important;
  font-weight: 500;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin-top: 24px !important;
}

/* LEAGUE CARD */
.league-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg);
}
.league-header {
  background: var(--green);
  color: white;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.league-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600; }
.league-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--gold);
  color: var(--green);
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 600;
}
.league-fixtures { padding: 16px 20px; }
.fixture-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.fixture-row:last-child { border-bottom: none; }
.fixture-status { color: var(--green-mid); font-size: 11px; font-weight: 500; }
.league-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.stat {
  padding: 14px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-val { display: block; font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--green); }
.stat-label { display: block; font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

/* PRICING */
.pricing { padding: 80px 48px; background: var(--bg); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}
.pricing-card-pro {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green);
  position: relative;
}
.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}
.pricing-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.pricing-features { margin-bottom: 28px; }
.feature-item { font-size: 13px; color: var(--fg); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; gap: 10px; align-items: flex-start; }
.feature-item:last-child { border-bottom: none; }
.feature-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
}
.pricing-period { font-size: 14px; font-weight: 400; color: var(--muted); }

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--green);
  color: white;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 { font-size: 44px; margin-bottom: 24px; color: white; }
.closing p { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.72); margin-bottom: 16px; }
.closing-quote { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 600; color: var(--gold-light) !important; margin-top: 32px !important; }

/* HERO CTA */
.hero-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--green);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s;
}
.hero-cta:hover { background: var(--gold-light); }

/* NAV TRADE BTN */
.nav-trade-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--green);
  color: white;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s;
}
.nav-trade-btn:hover { background: var(--green-mid); }

/* FOOTER */
.footer { padding: 48px; background: #111; color: rgba(255,255,255,0.5); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: white; margin-bottom: 8px; }
.footer-tagline { font-size: 13px; margin-bottom: 20px; }
.footer-note { font-size: 11px; line-height: 1.6; max-width: 560px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 40px; }
  .market-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .amateur-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px; }
  .markets, .how, .amateur, .pricing { padding: 60px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
}
@media (max-width: 600px) {
  .market-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .hero-headline { font-size: 32px; }
  .ticker-row { grid-template-columns: 1fr; gap: 4px; }
  .league-stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
}