/* ═══════════════════════════════════════════════════════
   SPOTONN SPORTS — ANNUAL EVENTS CALENDAR PRESENTATION
   Design: Volcanic Glass × Sports Energy
   Fonts: Bebas Neue (display) + Bricolage Grotesque (body)
   Colors: #0A0A0A, #7ED321 (lime), #00B47C (teal), #FF6B2B (accent)
═══════════════════════════════════════════════════════ */

:root {
  --lime:    #7ED321;
  --teal:    #00B47C;
  --orange:  #FF6B2B;
  --dark:    #0A0A0A;
  --dark2:   #111111;
  --dark3:   #1A1A1A;
  --dark4:   #242424;
  --white:   #FFFFFF;
  --offwhite:#F0F0F0;
  --muted:   #888888;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Bricolage Grotesque', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --slide-w: 1280px;
  --slide-h: 720px;
  --radius:  12px;
}

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

html, body {
  width: 100%; height: 100%;
  background: #050505;
  font-family: var(--font-body);
  overflow: hidden;
  color: var(--white);
}

/* ─── DECK ─────────────────────────────────────────── */
.deck {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* ─── SLIDES ────────────────────────────────────────── */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.55s cubic-bezier(.4,0,.2,1),
              transform 0.55s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  overflow: hidden;
}
.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.slide.exit {
  opacity: 0;
  transform: translateX(-60px);
}

.slide-inner {
  width: 100%;
  max-width: 1200px;
  padding: 48px 64px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* ─── SLIDE THEMES ──────────────────────────────────── */
.slide--dark   { background: var(--dark2); }
.slide--cover  { background: var(--dark); }
.slide--split  { background: var(--dark3); }
.slide--calendar { background: #0D0D0D; }
.slide--mktg   { background: var(--dark2); }
.slide--budget { background: var(--dark3); }
.slide--sponsor { background: var(--dark); }
.slide--legacy { background: var(--dark2); }

.slide--green {
  background: linear-gradient(135deg, #0A2A1A 0%, #0D3D22 50%, #0A2A1A 100%);
}

/* ─── LOGO CORNER ───────────────────────────────────── */
.logo-corner {
  position: absolute;
  top: 28px;
  right: 48px;
  z-index: 10;
}
.logo { display: block; }
.logo--large { height: 64px; }
.logo--small { height: 36px; filter: brightness(0) invert(1); }
.logo--invert { filter: brightness(0) invert(1); }

/* ─── SECTION LABEL ─────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--lime);
}

/* ─── SLIDE TITLES ──────────────────────────────────── */
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.slide-title .accent      { color: var(--lime); }
.slide-title .accent-dark { color: var(--dark); }

/* ─── SLIDE NUMBER ──────────────────────────────────── */
.slide-number {
  position: absolute;
  bottom: 24px;
  right: 48px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════
   SLIDE 01 — COVER
═══════════════════════════════════════════════════════ */
.cover-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cover-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126,211,33,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,211,33,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cover-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(126,211,33,0.18) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,180,124,0.15) 0%, transparent 70%);
  bottom: -100px; left: 100px;
}

.cover-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 80px;
  max-width: 900px;
}
.logo-wrap { margin-bottom: 28px; }
.logo-wrap .logo--large {
  height: 56px;
  filter: none;
}

.cover-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cover-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.cover-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.cover-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border: 1px solid rgba(126,211,33,0.4);
  color: var(--lime);
  border-radius: 4px;
  text-transform: uppercase;
}

.cover-budget-pill {
  background: linear-gradient(135deg, var(--lime), var(--teal));
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════
   SLIDE 02 — VISION
═══════════════════════════════════════════════════════ */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.vision-card {
  background: var(--dark3);
  border: 1px solid rgba(126,211,33,0.15);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.vision-card:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
}
.vision-icon { font-size: 28px; margin-bottom: 10px; }
.vision-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 6px;
}
.vision-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.vision-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #CCCCCC;
  max-width: 800px;
  border-left: 3px solid var(--lime);
  padding-left: 20px;
}

/* ═══════════════════════════════════════════════════════
   SLIDE 03 — CLUSTERS
═══════════════════════════════════════════════════════ */
.cluster-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.cluster-card {
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}
.cluster-a {
  background: linear-gradient(135deg, #0F1F05 0%, #1A3308 100%);
  border: 1px solid rgba(126,211,33,0.3);
}
.cluster-b {
  background: linear-gradient(135deg, #051A10 0%, #083320 100%);
  border: 1px solid rgba(0,180,124,0.3);
}
.cluster-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}
.cluster-a .cluster-badge { background: var(--lime); color: var(--dark); }
.cluster-b .cluster-badge { background: var(--teal); color: var(--dark); }

.cluster-icon { font-size: 32px; margin-bottom: 10px; }
.cluster-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--white);
}
.cluster-card ul {
  list-style: none;
  margin-bottom: 20px;
}
.cluster-card ul li {
  font-size: 13px;
  color: #BBBBBB;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cluster-card ul li::before { content: '→'; color: var(--lime); font-size: 11px; }
.cluster-b ul li::before { color: var(--teal); }

.cluster-dates {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--lime);
  margin-bottom: 8px;
}
.cluster-b .cluster-dates { color: var(--teal); }
.cluster-budget {
  font-size: 13px;
  color: var(--muted);
}
.cluster-budget strong { color: var(--white); }

/* ═══════════════════════════════════════════════════════
   SLIDE 04 — CALENDAR
═══════════════════════════════════════════════════════ */
.calendar-timeline {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.cal-row {
  display: grid;
  grid-template-columns: 160px repeat(8, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cal-row:last-child { border-bottom: none; }

.cal-header {
  background: var(--dark4);
}
.cal-header .cal-label,
.cal-header .cal-month {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  padding: 12px 8px;
  text-align: center;
}
.cal-header .cal-label { text-align: left; padding-left: 16px; }

.cal-label {
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--offwhite);
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cal-label small { color: var(--muted); font-size: 10px; font-weight: 400; margin-top: 2px; }

.cal-cell {
  padding: 12px 6px;
  font-size: 11px;
  text-align: center;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,0.04);
}
.cal-cell.active-a {
  background: rgba(126,211,33,0.1);
  color: var(--lime);
  font-weight: 600;
}
.cal-cell.event-a {
  background: var(--lime);
  color: var(--dark);
  font-weight: 700;
  font-size: 10px;
}
.cal-cell.active-b {
  background: rgba(0,180,124,0.1);
  color: var(--teal);
  font-weight: 600;
}
.cal-cell.event-b {
  background: var(--teal);
  color: var(--dark);
  font-weight: 700;
  font-size: 10px;
}
.cal-cell.mktg {
  background: rgba(255,107,43,0.1);
  color: var(--orange);
  font-size: 10px;
}

.cal-legend {
  display: flex;
  gap: 24px;
  align-items: center;
}
.leg {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.leg::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 10px;
  border-radius: 3px;
}
.leg-a::before { background: var(--lime); }
.leg-b::before { background: var(--teal); }
.leg-m::before { background: var(--orange); }

/* ═══════════════════════════════════════════════════════
   SLIDE 05 — CLUSTER A DEEP DIVE
═══════════════════════════════════════════════════════ */
.deepdive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.dd-block {
  background: var(--dark3);
  border: 1px solid rgba(126,211,33,0.12);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.3s;
}
.dd-block:hover { border-color: rgba(126,211,33,0.4); }
.dd-icon { font-size: 28px; margin-bottom: 10px; }
.dd-block h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--lime);
  margin-bottom: 10px;
}
.dd-block p {
  font-size: 13px;
  line-height: 1.7;
  color: #BBBBBB;
}

/* ═══════════════════════════════════════════════════════
   SLIDE 06 — CLUSTER B DEEP DIVE
═══════════════════════════════════════════════════════ */
.tennis-cricket-grid {
  display: flex;
  gap: 0;
  align-items: stretch;
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.3);
}
.tc-division {
  flex: 1;
  padding: 28px 24px;
}
.tc-senior { background: rgba(0,0,0,0.3); }
.tc-junior { background: rgba(0,0,0,0.2); }

.tc-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  background: var(--dark);
  color: var(--lime);
  padding: 5px 14px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 20px;
}
.tc-junior .tc-badge { color: var(--teal); }

.tc-cats {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.tc-cat {
  flex: 1;
  background: rgba(0,0,0,0.4);
  border-radius: 10px;
  padding: 16px 10px;
  text-align: center;
  border: 1px solid rgba(126,211,33,0.2);
}
.tc-junior .tc-cat { border-color: rgba(0,180,124,0.2); }
.tc-age {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 4px;
}
.tc-junior .tc-age { color: var(--teal); }
.tc-name { font-size: 11px; color: var(--muted); }

.tc-event {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.tc-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--muted);
  background: rgba(0,0,0,0.4);
  flex-shrink: 0;
}

.tc-format {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tc-format span {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--offwhite);
}

/* ═══════════════════════════════════════════════════════
   SLIDE 07 — BUDGET OVERVIEW
═══════════════════════════════════════════════════════ */
.budget-main {
  display: flex;
  gap: 60px;
  align-items: center;
}
.budget-donut-wrap {
  flex-shrink: 0;
}
.budget-donut {
  position: relative;
  width: 240px;
  height: 240px;
}
.donut-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.donut-cricket, .donut-other {
  transition: stroke-dashoffset 1s ease;
}
.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.donut-total {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}
.donut-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.15em;
  margin-top: 4px;
}

.budget-breakdown {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.budget-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.budget-color {
  width: 6px;
  border-radius: 3px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 80px;
}
.bc-cricket { background: var(--lime); }
.bc-other   { background: var(--teal); }

.budget-pct {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: var(--white);
}
.budget-cricket .budget-pct { color: var(--lime); }
.budget-other   .budget-pct { color: var(--teal); }

.budget-amt {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 4px;
}
.budget-name {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.budget-name small { font-size: 12px; }

/* ═══════════════════════════════════════════════════════
   SLIDE 08 — BUDGET DETAIL
═══════════════════════════════════════════════════════ */
.budget-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.bd-cluster {
  border-radius: var(--radius);
  overflow: hidden;
}
.bd-a { border: 1px solid rgba(126,211,33,0.25); }
.bd-b { border: 1px solid rgba(0,180,124,0.25); }

.bd-header {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
  padding: 14px 20px;
}
.bd-a .bd-header { background: rgba(126,211,33,0.15); color: var(--lime); }
.bd-b .bd-header { background: rgba(0,180,124,0.15); color: var(--teal); }

.bd-rows { padding: 8px 0; }
.bd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-size: 13px;
  color: #CCCCCC;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bd-row:last-child { border-bottom: none; }
.bd-row span:last-child {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--white);
  font-weight: 700;
}
.bd-total {
  background: rgba(255,255,255,0.04);
  font-weight: 700;
  color: var(--white) !important;
}
.bd-a .bd-total span:last-child { color: var(--lime) !important; }
.bd-b .bd-total span:last-child { color: var(--teal) !important; }

/* ═══════════════════════════════════════════════════════
   SLIDE 09 — MARKETING PLAN
═══════════════════════════════════════════════════════ */
.mktg-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mktg-pillar {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 22px 20px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.mktg-pillar:hover {
  border-color: var(--lime);
  transform: translateY(-3px);
}
.mp-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(126,211,33,0.12);
  position: absolute;
  top: 10px;
  right: 16px;
  line-height: 1;
}
.mp-icon { font-size: 26px; margin-bottom: 10px; }
.mktg-pillar h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--lime);
  margin-bottom: 8px;
}
.mktg-pillar p {
  font-size: 12px;
  line-height: 1.65;
  color: #AAAAAA;
}

/* ═══════════════════════════════════════════════════════
   SLIDES 10 & 11 — MARKETING PHASES
═══════════════════════════════════════════════════════ */
.phase-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.phase-item {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 20px 18px;
  border-top: 3px solid rgba(126,211,33,0.3);
  transition: border-color 0.3s;
}
.phase-item:hover { border-top-color: var(--lime); }
.phase-item.phase-event {
  border-top-color: var(--lime);
  background: linear-gradient(180deg, rgba(126,211,33,0.08) 0%, var(--dark3) 100%);
}

.phase-timeline--b .phase-item { border-top-color: rgba(0,180,124,0.3); }
.phase-timeline--b .phase-item:hover { border-top-color: var(--teal); }
.phase-timeline--b .phase-item.phase-event {
  border-top-color: var(--teal);
  background: linear-gradient(180deg, rgba(0,180,124,0.08) 0%, rgba(0,0,0,0.2) 100%);
}

.phase-month {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}
.phase-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.phase-launch { background: rgba(126,211,33,0.2); color: var(--lime); }
.phase-engage { background: rgba(0,180,124,0.2); color: var(--teal); }
.phase-build  { background: rgba(255,107,43,0.2); color: var(--orange); }
.phase-live   { background: var(--lime); color: var(--dark); }

.phase-timeline--b .phase-live { background: var(--teal); }

.phase-content h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.phase-content ul {
  list-style: none;
}
.phase-content ul li {
  font-size: 11px;
  color: #AAAAAA;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.phase-content ul li::before {
  content: '·';
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 1px;
}
.phase-timeline--b .phase-content ul li::before { color: var(--teal); }

/* ═══════════════════════════════════════════════════════
   SLIDE 12 — DIGITAL STRATEGY
═══════════════════════════════════════════════════════ */
.digital-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dg-platform {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.dg-platform:hover {
  border-color: var(--lime);
  transform: translateY(-3px);
}
.dg-icon { font-size: 28px; margin-bottom: 10px; }
.dg-platform h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}
.dg-platform p {
  font-size: 12px;
  line-height: 1.65;
  color: #AAAAAA;
  margin-bottom: 14px;
}
.dg-kpi {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--lime);
  background: rgba(126,211,33,0.1);
  padding: 5px 12px;
  border-radius: 4px;
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════
   SLIDE 13 — SPONSORSHIP
═══════════════════════════════════════════════════════ */
.sponsor-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.sponsor-tier {
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.3s;
}
.sponsor-tier:hover { transform: translateY(-4px); }

.tier-title {
  background: linear-gradient(135deg, #1A1200, #2A1E00);
  border: 1px solid rgba(255,215,0,0.4);
}
.tier-gold {
  background: linear-gradient(135deg, #1A1200, #221800);
  border: 1px solid rgba(255,165,0,0.3);
}
.tier-silver {
  background: linear-gradient(135deg, #141414, #1E1E1E);
  border: 1px solid rgba(192,192,192,0.3);
}
.tier-associate {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
}

.tier-crown { font-size: 32px; margin-bottom: 10px; }
.tier-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.tier-title .tier-name   { color: #FFD700; }
.tier-gold .tier-name    { color: #FFA500; }
.tier-silver .tier-name  { color: #C0C0C0; }
.tier-associate .tier-name { color: var(--muted); }

.tier-value {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px;
}
.sponsor-tier ul {
  list-style: none;
  text-align: left;
}
.sponsor-tier ul li {
  font-size: 12px;
  color: #AAAAAA;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 6px;
}
.sponsor-tier ul li::before { content: '✓'; color: var(--lime); font-size: 10px; }

/* ═══════════════════════════════════════════════════════
   SLIDE 14 — KPIs
═══════════════════════════════════════════════════════ */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.kpi-card {
  background: var(--dark3);
  border: 1px solid rgba(126,211,33,0.12);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.kpi-card:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
}
.kpi-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 8px;
}
.kpi-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.kpi-sub {
  font-size: 11px;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════
   SLIDE 15 — LEGACY
═══════════════════════════════════════════════════════ */
.legacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.legacy-item {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.legacy-item:hover {
  border-color: var(--lime);
  transform: translateY(-3px);
}
.legacy-icon { font-size: 28px; margin-bottom: 10px; }
.legacy-item h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--lime);
  margin-bottom: 8px;
}
.legacy-item p {
  font-size: 13px;
  line-height: 1.65;
  color: #AAAAAA;
}

/* ═══════════════════════════════════════════════════════
   SLIDE 16 — CLOSING
═══════════════════════════════════════════════════════ */
.closing-content {
  align-items: center;
  text-align: center;
  max-width: 100%;
  padding: 0 80px;
}
.closing-title {
  font-size: clamp(56px, 8vw, 100px);
  margin-bottom: 20px;
}
.closing-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin: 28px 0;
}
.cs-item { text-align: center; }
.cs-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--lime);
  line-height: 1;
}
.cs-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.cs-div {
  font-size: 32px;
  color: rgba(255,255,255,0.15);
}
.closing-tagline {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.2em;
  color: var(--teal);
  margin-bottom: 28px;
}
.closing-contact {
  display: flex;
  gap: 32px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
.nav-controls {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 10px 20px;
}
.nav-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.nav-btn:hover {
  background: var(--lime);
  color: var(--dark);
}
.nav-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.2s;
}
.nav-dot.active {
  background: var(--lime);
  width: 20px;
  border-radius: 3px;
}

/* ─── PROGRESS BAR ──────────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--teal));
  transition: width 0.4s ease;
  z-index: 200;
}

/* ─── KEYBOARD HINT ─────────────────────────────────── */
.key-hint {
  position: fixed;
  top: 20px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
  z-index: 100;
}

/* ─── SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 2px; }