/* =============================================
   IPL Fantasy 365 - L10 Mega League Cards Layout
   Deep Teal + Coral Orange + Cream Palette
   Outfit + Playfair Display SC + Space Mono
   ============================================= */

:root {
  /* PRIMARY PALETTE */
  --teal-deep: #0E4747;
  --teal-mid: #156565;
  --teal-light: #1E8585;
  --teal-darker: #093030;

  /* ACCENT */
  --coral: #FF6B5A;
  --coral-dark: #E0503F;
  --coral-light: #FF8B7A;

  /* NEUTRAL */
  --cream: #FFF8E8;
  --cream-darker: #F5E8C8;
  --cream-deep: #EBD9A8;
  --ink: #0A1A1A;
  --ink-light: #1A2A2A;
  --white: #FFFFFF;

  /* DATA */
  --gold: #D4A017;
  --silver: #B8B8B8;
  --bronze: #B87333;
  --success: #1B8B5A;
  --warn: #E89B26;

  /* FONTS */
  --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display SC', 'Playfair Display', serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  /* SPACING */
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 4px 14px rgba(14, 71, 71, 0.12);
  --shadow-lg: 0 12px 40px rgba(14, 71, 71, 0.20);
  --shadow-coral: 0 6px 20px rgba(255, 107, 90, 0.30);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-deep); }
a:hover { color: var(--coral); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 800; line-height: 1.15; color: var(--teal-deep); margin: 0 0 0.6em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.7rem); }
p { margin: 0 0 1.2em; }

/* CONTAINERS */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 250 !important;
  background: var(--teal-deep);
  border-bottom: 3px solid var(--coral);
  padding-top: env(safe-area-inset-top, 0px);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--coral); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 22px;
  box-shadow: var(--shadow-coral);
}
.brand-name {
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  color: var(--cream); letter-spacing: 0.02em;
  text-decoration: none;
}
.brand-tag {
  display: block; font-family: var(--font-mono); font-size: 10px;
  color: var(--coral); text-transform: uppercase; letter-spacing: 0.18em;
  margin-top: 2px;
}
.main-nav { display: flex; gap: 4px; align-items: center; flex: 1; justify-content: center; }
.main-nav a {
  color: var(--cream); text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius);
  transition: all 0.2s;
}
.main-nav a:hover { background: rgba(255, 107, 90, 0.18); color: var(--coral-light); }
.main-nav a.cta { background: var(--coral); color: var(--cream); font-weight: 700; }
.main-nav a.cta:hover { background: var(--coral-dark); color: var(--cream); }
.header-right { display: flex; gap: 10px; align-items: center; }
.header-cta-ghost {
  padding: 8px 16px; border: 2px solid var(--coral); color: var(--coral);
  background: transparent; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: all 0.2s;
}
.header-cta-ghost:hover { background: var(--coral); color: var(--cream); }
.header-cta {
  padding: 10px 20px; background: var(--coral); color: var(--cream);
  border: none; border-radius: var(--radius);
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: all 0.2s;
}
.header-cta:hover { background: var(--coral-dark); }
.hamburger {
  display: none; background: transparent; border: 2px solid var(--coral);
  border-radius: var(--radius); width: 44px; height: 44px;
  cursor: pointer; padding: 0; z-index: 300 !important; position: relative !important;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
  .site-header .hamburger { position: fixed !important; z-index: 999 !important; top: 12px; right: 16px; }
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--coral);
  border-radius: 2px; transition: all 0.2s;
}

/* MOBILE DRAWER */
.mobile-drawer {
  display: none;
  position: fixed; top: 0; right: -100%; width: 84%; max-width: 360px;
  height: 100vh; background: var(--teal-deep);
  border-left: 3px solid var(--coral);
  z-index: 200; padding: 88px 24px 24px;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(0,0,0,0.3);
}
.mobile-drawer.is-open, .mobile-drawer.open { right: 0;;
  display: block;
  visibility: visible; }
.mobile-drawer a {
  display: block; color: var(--cream); text-decoration: none;
  padding: 14px 12px; font-size: 16px; font-weight: 500;
  border-bottom: 1px solid rgba(255, 248, 232, 0.1);
}
.mobile-drawer a:hover { background: rgba(255, 107, 90, 0.12); color: var(--coral-light); }
.drawer-overlay {
  display: none; position: fixed; inset: 0; background: rgba(10, 26, 26, 0.6);
  z-index: 150;
}
.drawer-overlay.is-open, .drawer-overlay.open { display: block; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-mid) 100%);
  color: var(--cream); padding: 80px 0 96px; min-height: 600px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255, 107, 90, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(212, 160, 23, 0.10) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-block; padding: 6px 16px; background: var(--coral);
  color: var(--cream); font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700;
  border-radius: 4px; margin-bottom: 18px;
}
#hero-h {
  color: var(--cream); font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05; margin-bottom: 18px; font-weight: 900;
}
#hero-h .highlight { color: var(--coral); }
.hero-lede {
  font-size: 1.15rem; color: var(--cream-darker);
  margin-bottom: 28px; max-width: 580px; line-height: 1.6;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-primary {
  display: inline-block; padding: 16px 32px; background: var(--coral);
  color: var(--cream); font-weight: 700; text-decoration: none;
  border-radius: var(--radius); font-size: 16px;
  transition: all 0.2s; box-shadow: var(--shadow-coral);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-1px); color: var(--cream); }
.btn-ghost {
  display: inline-block; padding: 16px 32px; background: transparent;
  color: var(--cream); font-weight: 700; text-decoration: none;
  border-radius: var(--radius); font-size: 16px;
  border: 2px solid var(--cream); transition: all 0.2s;
}
.btn-ghost:hover { background: var(--cream); color: var(--teal-deep); }
.hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap; font-family: var(--font-mono);
  font-size: 12px; color: var(--cream-deep); text-transform: uppercase; letter-spacing: 0.1em;
}
.hero-trust span::before { content: '✓ '; color: var(--coral); font-weight: 700; }
.hero-board {
  background: var(--cream); border-radius: var(--radius-xl);
  padding: 32px; box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.hero-board h3 { color: var(--teal-deep); margin-bottom: 18px; font-size: 1.4rem; }
.hero-board .prize-amount {
  font-family: var(--font-display); font-weight: 900; color: var(--coral);
  font-size: 3.6rem; line-height: 1; margin-bottom: 8px;
}
.hero-board .prize-label { color: var(--ink-light); font-size: 14px; margin-bottom: 24px; }
.hero-board ul { list-style: none; padding: 0; margin: 0 0 24px; }
.hero-board ul li {
  padding: 10px 0; border-bottom: 1px dashed var(--cream-deep);
  display: flex; justify-content: space-between; font-size: 14px;
}
.hero-board ul li strong { color: var(--teal-deep); }
.hero-board ul li span { color: var(--coral); font-weight: 700; font-family: var(--font-mono); }

/* BANDS */
.band { padding: 80px 0; }
.band-elev-1 { background: var(--cream); }
.band-elev-2 { background: var(--white); }
.band-elev-3 { background: var(--teal-deep); color: var(--cream); }
.band-elev-3 h1, .band-elev-3 h2, .band-elev-3 h3 { color: var(--cream); }
.band-elev-4 { background: var(--teal-darker); color: var(--cream); }
.band-elev-4 h1, .band-elev-4 h2, .band-elev-4 h3 { color: var(--cream); }
.section-eyebrow {
  display: inline-block; padding: 5px 14px; background: var(--coral);
  color: var(--cream); font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.2em; font-weight: 700;
  border-radius: 4px; margin-bottom: 14px;
}
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--ink-light); font-size: 1.05rem; }
.band-elev-3 .section-head p, .band-elev-4 .section-head p { color: var(--cream-darker); }

/* =============================================
   L10 MEGA LEAGUE CARDS - signature cards
   ============================================= */

.mega-league-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.mega-card {
  background: var(--cream); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--cream-deep);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.mega-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mega-card .mega-img {
  height: 200px; overflow: hidden; position: relative;
  background: var(--teal-mid);
}
.mega-card .mega-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.mega-card .mega-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--coral); color: var(--cream);
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.1em;
}
.mega-card .mega-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.mega-card .mega-eyebrow {
  font-family: var(--font-mono); font-size: 11px; color: var(--coral);
  text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700;
  margin-bottom: 10px;
}
.mega-card h3 { font-size: 1.4rem; color: var(--teal-deep); margin-bottom: 12px; }
.mega-card .mega-desc { color: var(--ink-light); font-size: 14px; margin-bottom: 18px; line-height: 1.55; flex: 1; }
.mega-card .mega-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: 16px 0; border-top: 1px dashed var(--cream-deep);
  border-bottom: 1px dashed var(--cream-deep); margin-bottom: 16px;
}
.mega-card .mega-stat-label {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--ink-light); text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.mega-card .mega-stat-val {
  font-family: var(--font-display); font-weight: 800; color: var(--teal-deep);
  font-size: 1.1rem;
}
.mega-card .mega-stat-val.coral { color: var(--coral); }
.mega-card .mega-cta {
  display: inline-block; padding: 10px 18px;
  background: var(--coral); color: var(--cream); text-decoration: none;
  font-weight: 700; font-size: 14px; text-align: center; border-radius: var(--radius);
  transition: background 0.2s;
}
.mega-card .mega-cta:hover { background: var(--coral-dark); color: var(--cream); }

/* MEGA CONTEST FEATURED - bigger card */
.mega-card.featured {
  grid-column: span 2;
  display: grid; grid-template-columns: 1fr 1fr;
}
.mega-card.featured .mega-img { height: 100%; min-height: 360px; }
.mega-card.featured .mega-body { padding: 32px; }
.mega-card.featured h3 { font-size: 1.8rem; }
.mega-card.featured .mega-stat-val { font-size: 1.5rem; }

/* PRIZE POOL BANNER */
.prize-banner {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--cream); padding: 60px 32px; border-radius: var(--radius-xl);
  text-align: center; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.prize-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(255, 248, 232, 0.18) 0%, transparent 40%),
                    radial-gradient(circle at 70% 80%, rgba(255, 248, 232, 0.12) 0%, transparent 50%);
}
.prize-banner > * { position: relative; z-index: 1; }
.prize-banner .prize-amount-large {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1; margin-bottom: 12px;
  color: var(--cream);
}
.prize-banner p { font-size: 1.1rem; margin-bottom: 24px; opacity: 0.95; }
.prize-banner .btn-primary { background: var(--teal-deep); color: var(--cream); }
.prize-banner .btn-primary:hover { background: var(--teal-darker); }

/* LEADERBOARD TABLE */
.leaderboard {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--cream-deep);
}
.leaderboard-row {
  display: grid; grid-template-columns: 60px 1fr 100px 120px 120px;
  align-items: center; padding: 16px 20px;
  border-bottom: 1px solid var(--cream-deep);
  font-size: 15px;
}
.leaderboard-row:last-child { border-bottom: none; }
.leaderboard-row.head {
  background: var(--teal-deep); color: var(--cream);
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700;
}
.leaderboard-row .rank {
  font-family: var(--font-display); font-weight: 900; font-size: 1.4rem;
  color: var(--coral); text-align: center;
}
.leaderboard-row.head .rank { color: var(--cream); font-size: 11px; }
.leaderboard-row .name { font-weight: 600; color: var(--teal-deep); }
.leaderboard-row .team { font-family: var(--font-mono); font-size: 12px; color: var(--ink-light); }
.leaderboard-row .points { font-family: var(--font-mono); font-weight: 700; color: var(--teal-deep); text-align: right; }
.leaderboard-row .prize { font-family: var(--font-mono); font-weight: 700; color: var(--coral); text-align: right; }
.leaderboard-row.top-1 { background: linear-gradient(90deg, rgba(212, 160, 23, 0.10) 0%, transparent 100%); }
.leaderboard-row.top-2 { background: rgba(184, 184, 184, 0.08); }
.leaderboard-row.top-3 { background: rgba(184, 115, 51, 0.08); }

/* DATA CARDS - small stats */
.data-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.data-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px; text-align: center;
  border: 2px solid var(--cream-deep);
  transition: all 0.25s;
}
.data-card:hover { border-color: var(--coral); transform: translateY(-2px); }
.data-card .data-num {
  font-family: var(--font-display); font-weight: 900; font-size: 2.4rem;
  color: var(--coral); line-height: 1; margin-bottom: 6px;
}
.data-card .data-label {
  font-family: var(--font-mono); font-size: 11px; color: var(--teal-deep);
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600;
}
.data-card .data-sub { font-size: 12px; color: var(--ink-light); margin-top: 6px; }

/* STEP CARDS - how to play */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  counter-reset: step;
}
.step-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 22px; position: relative;
  border: 1px solid var(--cream-deep);
  box-shadow: var(--shadow);
}
.step-card .step-num {
  position: absolute; top: -18px; left: 22px;
  width: 44px; height: 44px; background: var(--coral); color: var(--cream);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.3rem;
  box-shadow: var(--shadow-coral);
}
.step-card h3 { color: var(--teal-deep); font-size: 1.15rem; margin: 12px 0 10px; }
.step-card p { color: var(--ink-light); font-size: 14px; line-height: 1.55; margin: 0; }

/* LOOSE CARDS - image+text side by side */
.loose-card {
  display: grid; grid-template-columns: 280px 1fr; gap: 28px;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--cream-deep);
}
.loose-card .loose-img { background: var(--teal-mid); min-height: 220px; overflow: hidden; }
.loose-card .loose-img img { width: 100%; height: 100%; object-fit: cover; }
.loose-card .loose-body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.loose-card h3 { color: var(--teal-deep); margin-bottom: 10px; font-size: 1.3rem; }
.loose-card p { color: var(--ink-light); font-size: 15px; line-height: 1.6; margin: 0; }
.loose-card .loose-stat {
  font-family: var(--font-mono); font-size: 11px; color: var(--coral);
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700;
  margin-bottom: 10px;
}

/* INLINE IMAGE ROW - 2 images side by side */
.inline-image-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin: 32px 0;
}
.inline-image-row img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.inline-image-row figcaption {
  font-size: 13px; color: var(--ink-light); text-align: center; margin-top: 10px;
  font-style: italic;
}

/* FAQ GRID */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.faq-item {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid var(--cream-deep);
  box-shadow: var(--shadow);
}
.faq-item h3 {
  color: var(--teal-deep); font-size: 1.1rem; margin-bottom: 10px;
  font-family: var(--font-sans); font-weight: 700;
}
.faq-item p { color: var(--ink-light); font-size: 14px; line-height: 1.6; margin: 0; }

/* FEATURE CARDS - img+text */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--cream-deep);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.feature-card:hover { transform: translateY(-3px); }
.feature-card .feat-img { height: 180px; overflow: hidden; background: var(--teal-mid); }
.feature-card .feat-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-card .feat-body { padding: 22px; }
.feature-card h3 { font-size: 1.15rem; color: var(--teal-deep); margin-bottom: 8px; }
.feature-card p { color: var(--ink-light); font-size: 14px; line-height: 1.55; margin: 0; }

/* COMPARISON TABLE */
.comparison-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
}
.comparison-table th {
  background: var(--teal-deep); color: var(--cream);
  padding: 16px 20px; text-align: left;
  font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700;
}
.comparison-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--cream-deep);
  font-size: 14px; color: var(--ink);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--cream-darker); }
.comparison-table .yes { color: var(--success); font-weight: 700; }
.comparison-table .no { color: var(--coral-dark); font-weight: 700; }
.comparison-table .highlight { background: var(--cream-darker); font-weight: 700; }

/* TESTIMONIAL CARDS */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--cream-deep);
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 0; left: 18px;
  font-family: var(--font-display); font-size: 4rem; color: var(--coral);
  line-height: 1; opacity: 0.3;
}
.testimonial-card p {
  color: var(--ink); font-size: 15px; line-height: 1.6;
  margin: 0 0 18px; font-style: italic;
}
.testimonial-card .test-name {
  font-family: var(--font-display); font-weight: 700; color: var(--teal-deep);
  font-size: 1.05rem;
}
.testimonial-card .test-meta {
  font-family: var(--font-mono); font-size: 11px; color: var(--coral);
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600;
  margin-top: 4px;
}
.testimonial-card .test-amount {
  font-family: var(--font-mono); font-weight: 700; color: var(--coral);
  font-size: 1.15rem; margin-top: 12px;
}

/* PRICING CONTEST CARDS */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 2px solid var(--cream-deep);
  box-shadow: var(--shadow); text-align: center;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--coral); transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}
.pricing-card .pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: var(--cream);
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.1em;
}
.pricing-card h3 { color: var(--teal-deep); font-size: 1.3rem; margin-bottom: 8px; }
.pricing-card .price {
  font-family: var(--font-display); font-weight: 900; color: var(--coral);
  font-size: 2.4rem; line-height: 1; margin: 14px 0 8px;
}
.pricing-card .price-sub { font-size: 13px; color: var(--ink-light); margin-bottom: 18px; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.pricing-card ul li {
  padding: 8px 0; font-size: 14px; color: var(--ink);
  border-bottom: 1px dashed var(--cream-deep);
}
.pricing-card ul li::before { content: '✓ '; color: var(--coral); font-weight: 700; }
.pricing-card .btn-primary { width: 100%; }

/* HUB CARDS - editorial list */
.hub-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.hub-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--cream-deep);
  box-shadow: var(--shadow);
}
.hub-card .hub-img { height: 160px; overflow: hidden; background: var(--teal-mid); }
.hub-card .hub-img img { width: 100%; height: 100%; object-fit: cover; }
.hub-card .hub-body { padding: 22px; }
.hub-card .hub-cat {
  font-family: var(--font-mono); font-size: 10px; color: var(--coral);
  text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700;
  margin-bottom: 8px;
}
.hub-card h3 { color: var(--teal-deep); font-size: 1.1rem; margin-bottom: 8px; line-height: 1.3; }
.hub-card p { color: var(--ink-light); font-size: 13px; line-height: 1.55; margin: 0 0 14px; }
.hub-card a.hub-cta {
  color: var(--coral); font-weight: 700; font-size: 13px;
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.1em;
}

/* PROSE - body text content */
.prose { max-width: 760px; margin: 0 auto; font-size: 1.05rem; line-height: 1.75; color: var(--ink); }
.prose h2 { margin-top: 1.5em; margin-bottom: 0.5em; color: var(--teal-deep); }
.prose h3 { margin-top: 1.2em; color: var(--teal-deep); }
.prose a { text-decoration: underline; text-underline-offset: 2px; color: var(--coral); }
.prose a:hover { color: var(--coral-dark); }
.prose ul, .prose ol { margin: 0 0 1em 1.5em; }
.prose li { margin-bottom: 0.5em; }
.prose blockquote {
  border-left: 4px solid var(--coral); padding: 8px 18px;
  background: var(--cream-darker); margin: 1.5em 0;
  font-style: italic; color: var(--ink);
}
.prose code {
  background: var(--cream-darker); padding: 2px 6px; border-radius: 3px;
  font-family: var(--font-mono); font-size: 0.9em;
}

/* CONTENT IMAGES */
.content-hero-image {
  width: 100%; margin: 32px 0;
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  box-shadow: var(--shadow-lg);
}
.content-hero-image img { width: 100%; height: auto; }
.content-hero-image .caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(10, 26, 26, 0.85) 0%, transparent 100%);
  color: var(--cream); padding: 20px 24px; font-size: 14px;
}
.content-2col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: center; margin: 32px 0;
}
.content-2col img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.content-image-card {
  margin: 32px 0; text-align: center;
}
.content-image-card img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.content-image-card .caption {
  margin-top: 12px; font-size: 13px; color: var(--ink-light);
  font-style: italic;
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-darker) 100%);
  color: var(--cream); padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(255, 107, 90, 0.2) 0%, transparent 50%),
                    radial-gradient(circle at 70% 30%, rgba(212, 160, 23, 0.1) 0%, transparent 50%);
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-band p { color: var(--cream-darker); font-size: 1.1rem; margin-bottom: 28px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* STATS RIBBON */
.stats-ribbon {
  background: var(--teal-deep); color: var(--cream);
  padding: 32px 0;
}
.stats-ribbon .stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.stats-ribbon .stat-num {
  font-family: var(--font-display); font-weight: 900; color: var(--coral);
  font-size: 2.2rem; line-height: 1; margin-bottom: 4px;
}
.stats-ribbon .stat-label {
  font-family: var(--font-mono); font-size: 11px; color: var(--cream-darker);
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600;
}

/* FOOTER */
.site-footer {
  background: var(--ink); color: var(--cream-darker);
  padding: 64px 0 24px; margin-top: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--cream); font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.16em; font-family: var(--font-mono); margin-bottom: 18px;
  font-weight: 700;
}
.footer-col p { color: var(--cream-darker); font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.footer-col a {
  display: block; color: var(--cream-darker); text-decoration: none;
  font-size: 14px; padding: 6px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--coral); }
.social-icons { display: flex; gap: 10px; margin-top: 12px; }
.social-icons a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal-mid); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; padding: 0; text-decoration: none;
  transition: background 0.2s;
}
.social-icons a:hover { background: var(--coral); }
.footer-bottom {
  border-top: 1px solid var(--ink-light); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--cream-darker);
  font-family: var(--font-mono);
}
.footer-bottom .legal-links { display: flex; gap: 16px; }
.footer-bottom .legal-links a { color: var(--cream-darker); text-decoration: none; padding: 0; display: inline; }
.footer-bottom .legal-links a:hover { color: var(--coral); }

/* RESPONSIVE - Mobile */
@media (max-width: 1023px) {
  .mega-league-grid, .feature-grid, .hub-grid, .testimonial-grid, .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .data-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .inline-image-row, .content-2col { grid-template-columns: 1fr; }
  .leaderboard-row { grid-template-columns: 50px 1fr 80px 100px; padding: 12px 14px; font-size: 13px; }
  .leaderboard-row .prize { display: none; }
  .mega-card.featured { grid-column: span 2; grid-template-columns: 1fr; }
  .mega-card.featured .mega-img { min-height: 220px; }
}

@media (max-width: 899px) {
  /* MOBILE HERO */
  .hero-trust { display: none !important; }
  .hero { min-height: 480px !important; max-height: 720px !important; padding: 60px 0 60px !important; }
  #hero-h { font-size: 32px !important; line-height: 1.1 !important; }
  .hero-lede { font-size: 1rem; }
  .hero-board { padding: 24px; }
  .hero-board .prize-amount { font-size: 2.6rem; }

  .mega-league-grid, .feature-grid, .hub-grid, .testimonial-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .mega-card.featured { grid-column: span 1; }
  .data-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .stats-ribbon .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .loose-card { grid-template-columns: 1fr; }
  .loose-card .loose-img { min-height: 180px; }
  .faq-grid { grid-template-columns: 1fr; }
  .leaderboard-row { grid-template-columns: 40px 1fr 60px; padding: 10px 12px; font-size: 12px; }
  .leaderboard-row .team, .leaderboard-row .prize { display: none; }
  .band { padding: 56px 0; }
  .container { padding: 0 16px; }
}

@media (max-width: 600px) {
  .data-grid, .steps-grid, .stats-ribbon .stats-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .header-inner { height: 64px; gap: 12px; }
  .brand-name { font-size: 17px; }
  .brand-mark { width: 38px; height: 38px; font-size: 18px; }
  .header-cta { padding: 8px 14px; font-size: 13px; }
  #hero-h { font-size: 28px !important; }
  .hero { min-height: 420px !important; padding: 50px 0 !important; }
  .btn-primary, .btn-ghost { padding: 14px 22px; font-size: 14px; }
  .prize-banner { padding: 40px 20px; }
  .prize-banner .prize-amount-large { font-size: 2.4rem; }
  .leaderboard-row .points { font-size: 12px; }
  .leaderboard-row.head { font-size: 10px; padding: 10px 12px; }
}

/* MOBILE NAV TOGGLE */
@media (max-width: 1023px) {
  .main-nav { display: none !important; }
  .header-cta-ghost { display: none !important; }
  .hamburger { display: flex !important; }
}

/* ACCESSIBILITY */
:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }
button { font-family: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* PRINT */
@media print {
  .site-header, .mobile-drawer, .drawer-overlay, .site-footer, .hamburger { display: none !important; }
}
