/* ===== BASE RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Techstrong Brand Colors */
  --gold: #F2A900;
  --gold-light: #FFF8E7;
  --gold-bg: #FDF6E3;
  --navy: #0A0F2C;
  --navy-light: #1A2050;
  --orange: #E85D26;
  --orange-light: #FFF0EB;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --warm-gray: #F5F4F0;
  --light-gray: #EEEDEA;
  --mid-gray: #C8C6C0;
  --text-muted: #6B6962;
  --text-faint: #9B9990;
  --border: #E5E3DE;

  /* Chart Colors */
  --chart-1: #0A0F2C;
  --chart-2: #F2A900;
  --chart-3: #E85D26;
  --chart-4: #3B82F6;
  --chart-5: #10B981;
  --chart-6: #8B5CF6;
  --chart-7: #EC4899;

  /* Map Colors */
  --map-na: #F2A900;
  --map-eu: #E85D26;
  --map-apac: #0A0F2C;
  --map-other: #C8C6C0;

  /* Type Scale (fluid) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Fonts */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  /* Misc */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(10,15,44,0.05);
  --shadow-md: 0 4px 16px rgba(10,15,44,0.08);
  --shadow-lg: 0 12px 40px rgba(10,15,44,0.1);
  --shadow-xl: 0 20px 60px rgba(10,15,44,0.12);
  --content-wide: 1200px;
  --content-default: 960px;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--navy);
  background-color: var(--white);
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role="list"], ol[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
button { cursor: pointer; background: none; border: none; }

::selection {
  background: rgba(242, 169, 0, 0.2);
  color: var(--navy);
}

a { color: var(--orange); text-decoration: none; transition: color var(--transition-interactive); }
a:hover { color: var(--navy); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--navy);
}

.nav-logo .gold { color: var(--gold); }
.nav-logo .tv-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  margin-left: 1px;
}

.nav-links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-interactive);
  letter-spacing: 0.01em;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--navy);
  color: white !important;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none !important;
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}

.nav-cta:hover {
  background: var(--navy-light);
  color: white !important;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

.container--narrow {
  max-width: var(--content-default);
}

/* ===== SECTION WRAPPER ===== */
.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

.section--alt {
  background: var(--warm-gray);
}

.section--navy {
  background: var(--navy);
  color: white;
}

.section--gold-accent {
  background: linear-gradient(180deg, var(--white) 0%, var(--gold-bg) 100%);
}

/* ===== SECTION HEADERS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section--navy .section-label { color: var(--gold); }
.section--navy .section-label::before { background: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.section--navy .section-title { color: white; }

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.5;
}

.section--navy .section-subtitle { color: rgba(255,255,255,0.7); }

.section-header {
  margin-bottom: clamp(var(--space-10), 4vw, var(--space-16));
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===== HERO ===== */
.hero {
  padding-top: calc(80px + clamp(var(--space-16), 8vw, var(--space-24)));
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-24));
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--white) 0%, var(--gold-bg) 40%, var(--white) 80%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(242,169,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,93,38,0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--navy);
  color: white;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--orange);
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-8);
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.hero-stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* Geometric accents */
.hero-geo {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  z-index: 0;
  opacity: 0.08;
}

@media (max-width: 900px) {
  .hero-geo { display: none; }
  .hero-stats { gap: var(--space-6); }
}

/* ===== HOSTS ===== */
.hosts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

@media (max-width: 768px) {
  .hosts-grid { grid-template-columns: 1fr; }
}

.host-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}

.host-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.host-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: white;
  margin-bottom: var(--space-5);
  flex-shrink: 0;
}

.host-avatar--as { background: linear-gradient(135deg, var(--gold), var(--orange)); }
.host-avatar--mv { background: linear-gradient(135deg, var(--navy), #2A3070); }

.host-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: var(--space-1);
}

.host-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--orange);
  margin-bottom: var(--space-4);
  letter-spacing: 0.01em;
}

.host-bio {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.65;
}

.hosts-tagline {
  text-align: center;
  margin-top: var(--space-10);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--navy);
}

.hosts-tagline span { color: var(--gold); }

/* Host Photos */
.host-photo {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  object-fit: cover;
  object-position: center top;
  margin-bottom: var(--space-5);
  flex-shrink: 0;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(242, 169, 0, 0.15);
}

/* Interview Formats */
.interview-formats {
  margin-top: var(--space-12);
  text-align: center;
}

.interview-formats-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.interview-formats-sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.interview-formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

@media (max-width: 768px) {
  .interview-formats-grid { grid-template-columns: repeat(2, 1fr); }
}

.format-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-4);
  text-align: center;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive);
}

.format-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.format-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  border-radius: var(--radius-lg);
  color: var(--gold);
}

.format-icon svg {
  width: 24px;
  height: 24px;
}

.format-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--navy);
  margin-bottom: var(--space-1);
}

.format-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== WORLD MAP ===== */
.map-section {
  position: relative;
}

.map-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.map-svg-container {
  position: relative;
  width: 100%;
}

.map-svg-container svg {
  width: 100%;
  height: auto;
}

.map-legend {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy);
}

.map-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.map-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-10);
}

@media (max-width: 768px) {
  .map-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.map-stat-card {
  text-align: center;
  padding: var(--space-5);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

.map-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.map-stat-value {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--space-1);
}

.map-stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ===== DEMOGRAPHICS CHARTS ===== */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

@media (max-width: 900px) {
  .demo-grid { grid-template-columns: 1fr; }
}

.demo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
}

.demo-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--navy);
  margin-bottom: var(--space-6);
}

.chart-container {
  position: relative;
  width: 100%;
}

.chart-container--donut {
  max-width: 280px;
  margin: 0 auto;
}

/* Buying intent bars */
.intent-bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.intent-bar {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.intent-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.intent-bar-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy);
}

.intent-bar-value {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.intent-bar-track {
  width: 100%;
  height: 12px;
  background: var(--light-gray);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.intent-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.intent-bar-fill--1 { background: linear-gradient(90deg, var(--gold), var(--orange)); }
.intent-bar-fill--2 { background: linear-gradient(90deg, var(--orange), #D14E1F); }
.intent-bar-fill--3 { background: linear-gradient(90deg, var(--navy), var(--navy-light)); }

/* Company size stats */
.company-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.company-stat {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.company-stat-pct {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  min-width: 100px;
  flex-shrink: 0;
}

.company-stat-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== MARKETS ===== */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

@media (max-width: 900px) {
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .markets-grid { grid-template-columns: 1fr; }
}

.market-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive);
  position: relative;
  overflow: hidden;
}

.market-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.market-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  border-radius: var(--radius-lg);
  color: var(--gold);
}

.market-icon svg {
  width: 24px;
  height: 24px;
}

.market-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--navy);
}

.market-badge {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  background: var(--orange);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== DISTRIBUTION ===== */
.dist-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  position: relative;
}

@media (max-width: 900px) {
  .dist-flow { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .dist-flow { grid-template-columns: 1fr; }
}

.dist-tier {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  position: relative;
}

.dist-tier-number {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
}

.dist-tier-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--navy);
  margin-bottom: var(--space-3);
  padding-right: var(--space-8);
}

.dist-tier-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.5;
}

.dist-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.dist-platform {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--warm-gray);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* ===== TV METRICS ===== */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

@media (max-width: 900px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
}

.metric-card {
  text-align: center;
  padding: var(--space-8) var(--space-5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-2xl);
  background: rgba(255,255,255,0.04);
  transition: background var(--transition-interactive);
}

.metric-card:hover {
  background: rgba(255,255,255,0.08);
}

.metric-value {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--space-2);
}

.metric-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ===== SHOWS ===== */
.shows-scroll {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  padding-bottom: var(--space-4);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--mid-gray) transparent;
}

.shows-scroll::-webkit-scrollbar { height: 6px; }
.shows-scroll::-webkit-scrollbar-track { background: transparent; }
.shows-scroll::-webkit-scrollbar-thumb { background: var(--mid-gray); border-radius: 3px; }

.show-card {
  min-width: 280px;
  max-width: 280px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
  flex-shrink: 0;
}

.show-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.show-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: white;
  margin-bottom: var(--space-4);
}

.show-artwork {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
}

.show-name {
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.show-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== EPISODES CAROUSEL ===== */
.episodes-scroll {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  padding-bottom: var(--space-4);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--mid-gray) transparent;
}

.episodes-scroll::-webkit-scrollbar { height: 6px; }
.episodes-scroll::-webkit-scrollbar-track { background: transparent; }
.episodes-scroll::-webkit-scrollbar-thumb { background: var(--mid-gray); border-radius: 3px; }

.episode-card {
  min-width: 360px;
  max-width: 360px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
  flex-shrink: 0;
}

.episode-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.episode-video-link {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy);
}

.episode-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.episode-video-link:hover .episode-thumb {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.episode-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.episode-video-link:hover .episode-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.episode-meta {
  padding: var(--space-4) var(--space-5) var(--space-5);
}

.episode-show-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2);
}

.episode-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--navy);
  line-height: 1.35;
}

@media (max-width: 500px) {
  .episode-card {
    min-width: 300px;
    max-width: 300px;
  }
}

/* ===== SPONSORSHIP ===== */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

@media (max-width: 900px) {
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .sponsor-grid { grid-template-columns: 1fr; }
}

.sponsor-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive);
}

.sponsor-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.sponsor-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  background: var(--gold-light);
  color: var(--gold);
}

.sponsor-card-icon svg {
  width: 22px;
  height: 22px;
}

.sponsor-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--navy);
  margin-bottom: var(--space-3);
}

.sponsor-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.sponsor-example-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.sponsor-example-link:hover {
  color: var(--orange);
}

.sponsor-example-link svg {
  flex-shrink: 0;
}

.sponsor-price {
  display: inline-flex;
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-light);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

/* ===== SOCIAL ===== */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

@media (max-width: 768px) {
  .social-grid { grid-template-columns: 1fr; }
}

.social-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

.social-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: white;
}

.social-icon--linkedin { background: #0077B5; }
.social-icon--youtube { background: #FF0000; }
.social-icon--x { background: #000000; }

.social-icon svg { width: 24px; height: 24px; }

.social-platform {
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--navy);
  margin-bottom: var(--space-4);
}

.social-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.social-stat {
  display: flex;
  flex-direction: column;
}

.social-stat-value {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.social-stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ===== CTA ===== */
.cta-section {
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--gold-bg) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(242,169,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--navy);
  margin-bottom: var(--space-4);
  font-style: italic;
  position: relative;
}

.cta-sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--navy);
  color: white;
}

.btn--primary:hover {
  background: var(--navy-light);
  box-shadow: var(--shadow-md);
  color: white;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: white;
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-8);
  box-shadow: 0 4px 20px rgba(242, 169, 0, 0.3);
}

.btn--gold:hover {
  box-shadow: 0 6px 28px rgba(242, 169, 0, 0.4);
  color: white;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: white;
}

.cta-footer {
  font-size: var(--text-sm);
  color: var(--text-faint);
  position: relative;
}

.cta-email {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  letter-spacing: 0.02em;
}

.cta-footer a { color: var(--text-muted); }
.cta-footer a:hover { color: var(--navy); }

/* ===== INLINE CTAs ===== */
.inline-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
  padding: var(--space-5) var(--space-6);
  background: var(--gold-bg);
  border: 1px solid rgba(242, 169, 0, 0.15);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
}

.inline-cta--accent {
  background: linear-gradient(135deg, rgba(242, 169, 0, 0.06), rgba(232, 93, 38, 0.06));
  border-color: rgba(232, 93, 38, 0.12);
  margin-top: 0;
  margin-bottom: var(--space-8);
  padding: var(--space-6) var(--space-8);
}

.inline-cta-text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy);
  margin: 0;
}

.inline-cta-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--orange) !important;
  text-decoration: none;
  white-space: nowrap;
  transition: gap var(--transition-interactive);
}

.inline-cta-link:hover {
  gap: var(--space-3);
  color: var(--navy) !important;
}

.inline-cta-link svg {
  display: inline-block;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: var(--space-3);
}

.footer-logo .gold { color: var(--gold); }
.footer-logo .tv-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
}

.footer-text {
  font-size: var(--text-xs);
  color: var(--text-faint);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== TOOLTIP ===== */
.map-tooltip {
  position: fixed;
  background: var(--navy);
  color: white;
  font-size: var(--text-xs);
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 200;
  white-space: nowrap;
}

.map-tooltip.visible { opacity: 1; }

/* ===== PRINT STYLES ===== */
@media print {
  .nav, .nav-cta { display: none !important; }
  .hero { padding-top: var(--space-8) !important; }
  .section { padding-block: var(--space-8) !important; }
  .fade-in { opacity: 1 !important; transform: none !important; }
  .section--navy { background: var(--navy) !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  body { font-size: 11pt; }
  .metric-value, .map-stat-value, .hero-stat-value { color: var(--navy) !important; }
  .shows-scroll { flex-wrap: wrap; overflow: visible; }
  .show-card { min-width: 200px; }
}
