/* ============================================
   RIGHT TO INVEST — Styles
   Evevit-inspired design system
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1A1A1A;
  background: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* --- Design Tokens — Black & Red competition palette --- */
:root {
  --primary: #EF4444;
  --primary-hover: #DC2626;
  --primary-deep: #991B1B;
  --primary-light: #FCA5A5;
  --primary-soft: rgba(239, 68, 68, 0.08);
  --white: #FFFFFF;
  --black: #000000;
  --dark: #0A0A0A;
  --dark-2: #161616;
  --light-gray: #F5F5F5;
  --card-bg: #F4F4F4;
  --text-dark: #0A0A0A;
  --text-body: #6B6B6B;
  --text-light: #9A9A9A;
  --gradient: linear-gradient(135deg, #EF4444, #991B1B);
  --gradient-reverse: linear-gradient(135deg, #991B1B, #EF4444);
  --gradient-soft: linear-gradient(135deg, rgba(239,68,68,0.12), rgba(153,27,27,0.06));
  --radius: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --transition: 0.3s ease;
  --container: 1520px;
  --gutter: clamp(24px, 4vw, 72px);
  --section-padding: clamp(80px, 12vw, 180px);
}

/* --- Utility --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--full {
  max-width: none;
  padding: 0 clamp(32px, 3.5vw, 80px);
}

.section-padding {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

/* --- Section Subtitle Pattern --- */
.section-subtitle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}

.section-subtitle .asterisk {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  animation: subtitle-spin 8s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .section-subtitle .asterisk { animation: none; }
}

@keyframes subtitle-spin {
  to { transform: rotate(360deg); }
}

.section-subtitle .asterisk svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
}

.section-subtitle .subtitle-text {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.5;
  color: var(--text-body);
}

.dark-section .section-subtitle .subtitle-text {
  color: var(--text-light);
}

/* --- Section Headline --- */
.section-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--text-dark);
  margin-bottom: 48px;
}

.dark-section .section-headline {
  color: var(--white);
}

/* --- Pill Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 30px -8px rgba(239, 68, 68, 0.5);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -8px rgba(239, 68, 68, 0.65);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

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

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

.btn .arrow {
  font-size: 1.1em;
  transition: transform var(--transition);
}

.btn:hover .arrow {
  transform: translate(2px, -2px);
}

/* --- Carousel Arrows --- */
.carousel-nav {
  display: flex;
  gap: 12px;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all var(--transition);
  background: transparent;
}

.carousel-arrow:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.carousel-arrow--dark {
  border-color: rgba(0,0,0,0.2);
  color: var(--text-dark);
}

.carousel-arrow--dark:hover {
  background: rgba(0,0,0,0.05);
  border-color: var(--text-dark);
}

/* --- Dark Section Base --- */
.dark-section {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* --- Gradient Blob Decoration --- */
.gradient-blob {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(239,68,68,0.45), rgba(153,27,27,0.22), transparent 70%);
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
  animation: blob-drift 18s ease-in-out infinite alternate;
}
.gradient-blob--left {
  top: auto; right: auto;
  bottom: -200px; left: -200px;
  background: radial-gradient(circle at 70% 70%, rgba(153,27,27,0.4), rgba(239,68,68,0.18), transparent 70%);
  animation-direction: alternate-reverse;
}
@keyframes blob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { .gradient-blob { animation: none; } }

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.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; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-logo .checkmark {
  color: #EF4444;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition);
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-search {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  padding: 8px;
}

.nav-search:hover {
  color: var(--white);
}

.nav-search svg {
  width: 20px;
  height: 20px;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO — broadcast title card
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--dark);
  overflow: hidden;
  padding: 120px 0 0;
}

/* Giant outline season mark, decorative anchor in the corner */
.hero-mark {
  position: absolute;
  top: clamp(80px, 14vw, 160px);
  right: clamp(-40px, -2vw, 0px);
  font-size: clamp(14rem, 32vw, 32rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(239, 68, 68, 0.18);
  pointer-events: none;
  z-index: 0;
  font-variant-numeric: tabular-nums;
}

.hero-stage {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: clamp(40px, 5vw, 64px);
}

/* Two-column hero composition — both columns share the same bottom baseline */
.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: end;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; align-items: start; }
}

/* Title column — sponsors row sits directly above the headline, both anchored to bottom */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.5vw, 36px);
  align-items: flex-start;
}

/* Action column — meter + subcopy + CTA, anchored to same bottom baseline */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 28px);
}
.hero-left .hero-meter { padding-bottom: 4px; }
.hero-left .hero-cta { align-self: flex-start; margin-top: 8px; }

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  padding: 10px 18px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-pill);
}
.hero-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
@media (prefers-reduced-motion: reduce) { .hero-live-dot { animation: none; } }

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: clamp(2.5rem, 7vw, 6.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--white);
  letter-spacing: -0.038em;
  margin: 0;
  max-width: 16ch;
}
.hero-headline .hero-line { display: block; }
.hero-headline em {
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.024em;
}
.hero-headline .hero-line--accent { color: var(--primary); }

.hero-meter {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0;
  justify-content: start;
}
.hero-meter-cell {
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.hero-meter-cell:first-child { padding-left: 0; }
.hero-meter-cell + .hero-meter-cell {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-meter-num {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.hero-meter-num sup {
  font-size: 0.5em;
  font-weight: 700;
  color: var(--primary);
  margin-left: 2px;
}
.hero-meter-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}

/* Bottom ticker — subtle broadcast strip */
.hero-ticker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px clamp(24px, 4vw, 72px);
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.hero-ticker::-webkit-scrollbar { display: none; }
.hero-ticker-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
}
.hero-ticker-sep { opacity: 0.45; }

@media (max-width: 900px) {
  .hero-meter { grid-template-columns: repeat(3, 1fr); }
  .hero-meter-cell { padding: 0 20px 0 0; }
  .hero-meter-cell:first-child { padding-left: 0; }
  .hero-meter-cell + .hero-meter-cell { padding-left: 20px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.45) 35%, rgba(10,10,10,0.05) 70%, transparent 100%),
    radial-gradient(circle at 100% 0%, rgba(239,68,68,0.18), transparent 55%),
    url("/assets/images/hero-bridge.jpg") center 35% / cover no-repeat,
    #0a0a0a;
  z-index: 0;
}
@media (max-width: 720px) {
  .hero-bg {
    background:
      linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.45) 35%, rgba(10,10,10,0.05) 70%, transparent 100%),
      radial-gradient(circle at 100% 0%, rgba(239,68,68,0.18), transparent 55%),
      url("/assets/images/hero-bridge-mobile.jpg") center 35% / cover no-repeat,
      #0a0a0a;
  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 56px;
  width: 100%;
  padding-top: 160px;
}

.hero-content {
  max-width: 860px;
}

.hero-sponsors {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-sponsors > span:first-child {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

.sponsor-badge {
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
}

.hero h1 {
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.96;
  color: var(--white);
  letter-spacing: -0.032em;
  margin-bottom: 28px;
}

.hero-subtext {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 44ch;
  line-height: 1.55;
  margin: 0;
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

.hero-card {
  border-radius: var(--radius);
  padding: 36px 40px;
  min-width: 320px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.hero-card--gradient {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 24px 50px -12px rgba(239, 68, 68, 0.5);
}
.hero-card--gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(255,255,255,0.25), transparent 50%);
  pointer-events: none;
}

.hero-card--dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
}

.hero-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 8px;
}

.hero-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero-card-sub {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 4px;
}

.hero-card-bottom {
  margin-top: 16px;
  font-size: 0.8rem;
  opacity: 0.7;
}

.hero-card-platforms {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.hero-card-platforms a {
  color: var(--white);
  opacity: 0.8;
  transition: opacity var(--transition);
}

.hero-card-platforms a:hover {
  opacity: 1;
}

.hero-card-platforms svg {
  width: 24px;
  height: 24px;
}

.hero-dots {
  position: absolute;
  bottom: 60px;
  left: clamp(20px, 4vw, 60px);
  display: flex;
  gap: 8px;
  z-index: 1;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all var(--transition);
}

.hero-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

/* ============================================
   ABOUT / THE PREMISE
   ============================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text p {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-text .about-callout {
  display: block;
  margin: 32px 0;
  padding: 0;
  background: none;
  border: 0;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 700;
  font-style: italic;
  color: var(--primary);
  line-height: 1.25;
  letter-spacing: -0.018em;
}
.about-text p {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
}

.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a0a, #2a0f0f);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-media .play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.about-media .play-btn:hover {
  transform: scale(1.1);
}

.about-media .play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
  margin-left: 3px;
}

/* Stats — asymmetric: one hero stat + two supporting */
.about-stats {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 0;
  margin-top: 96px;
  padding-top: 72px;
  border-top: 1px solid #E5E7EB;
}

.stat {
  padding: 0 40px 0 0;
}
.stat + .stat {
  padding-left: 40px;
  border-left: 1px solid #E5E7EB;
}

.stat-number {
  font-size: clamp(2.75rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 0.92;
  letter-spacing: -0.028em;
}
.stat:first-child .stat-number {
  font-size: clamp(4rem, 8vw, 7rem);
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-number sup {
  font-size: 0.4em;
  vertical-align: super;
  margin-left: 4px;
  font-weight: 700;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  margin-top: 18px;
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-top: 6px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about-stats { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; }
  .stat { padding: 0; }
  .stat + .stat { padding-left: 0; padding-top: 32px; border-left: 0; border-top: 1px solid #E5E7EB; }
}

/* ============================================
   MARQUEE BANNER
   ============================================ */
.marquee {
  overflow: hidden;
  padding: 36px 0;
  background: var(--white);
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.marquee--dark {
  background: var(--dark);
  border-color: rgba(255,255,255,0.08);
}

.marquee--blue {
  background: var(--primary);
  border-color: transparent;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 0 56px;
  white-space: nowrap;
}

.marquee-item span {
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.014em;
  color: transparent;
  -webkit-text-stroke: 1.25px #D4D4DD;
}

.marquee-item:hover span { color: var(--primary); -webkit-text-stroke-color: var(--primary); }

.marquee--dark .marquee-item span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.12);
}

.marquee--blue {
  background: var(--gradient);
  border: 0;
}
.marquee--blue .marquee-item span {
  color: var(--white);
  -webkit-text-stroke: 0;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.marquee-item .asterisk-icon {
  color: var(--primary);
  font-size: 1.4rem;
}

.marquee--blue .marquee-item .asterisk-icon {
  color: rgba(255,255,255,0.75);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   EPISODES CAROUSEL
   ============================================ */
.episodes {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.episodes-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.episodes-header .section-headline {
  margin-bottom: 0;
}

.carousel-wrapper {
  position: relative;
  margin: 0 calc(-1 * clamp(20px, 4vw, 60px));
  padding: 0 clamp(20px, 4vw, 60px);
}

.carousel {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-right: 120px;
  padding-bottom: 12px;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.episode-card {
  flex: 0 0 clamp(300px, 28vw, 420px);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.episode-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 40px 60px -20px rgba(239, 68, 68, 0.4);
}
.episode-card:hover .episode-card-bg img { transform: scale(1.05); }
.episode-card-bg img { transition: transform 0.8s ease; }

.episode-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0a0a, #2a0f0f);
}

.episode-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.episode-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.episode-card-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.episode-card-badge:not(:has(+ .episode-card-content)) {
  background: rgba(239, 68, 68, 0.75);
}

.episode-card-content {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 2;
}

.episode-card-number {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.episode-card-title {
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ============================================
   TOURNAMENT SCHEDULE
   ============================================ */
.schedule {
  background: var(--white);
}

.schedule-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.schedule-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  cursor: pointer;
  transition: all var(--transition);
  border-bottom: 2px solid transparent;
}

.schedule-tab.active {
  border-bottom-color: var(--primary);
}

.schedule-tab .tab-badge {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #E5E7EB;
  color: var(--text-body);
  transition: all var(--transition);
}

.schedule-tab.active .tab-badge {
  background: var(--primary);
  color: var(--white);
}

.schedule-tab .tab-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-body);
  transition: color var(--transition);
}

.schedule-tab.active .tab-text {
  color: var(--text-dark);
}

.schedule-content {
  display: none;
}

.schedule-content.active {
  display: block;
}

.schedule-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid #E5E7EB;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.schedule-card:hover {
  box-shadow: 0 30px 50px -20px rgba(79, 70, 229, 0.2);
  transform: translateY(-2px);
}

.schedule-card-left {
  background: var(--gradient);
  color: var(--white);
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.schedule-card-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, rgba(255,255,255,0.18), transparent 55%);
  pointer-events: none;
}

.schedule-card-ep {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 4px;
}

.schedule-card-date {
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.schedule-card-status {
  font-size: 0.8rem;
  margin-top: 8px;
  opacity: 0.8;
}

.schedule-card-right {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.schedule-card-info h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.schedule-card-info p {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 480px;
  line-height: 1.55;
}

.schedule-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.schedule-avatars {
  display: flex;
}

.schedule-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--white);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
}

.schedule-avatar:first-child {
  margin-left: 0;
}

.schedule-card-meta span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.schedule-expand {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  transition: all var(--transition);
  flex-shrink: 0;
}

.schedule-expand:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ============================================
   INVESTORS CAROUSEL
   ============================================ */
.investors {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.investors-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.investors-header .section-headline {
  margin-bottom: 0;
}

.investor-card {
  flex: 0 0 clamp(260px, 22vw, 340px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  background: var(--card-bg);
}

.investor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 50px -18px rgba(239, 68, 68, 0.4);
}

.investor-card-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2a0f0f, #1a0a0a);
  position: relative;
  overflow: hidden;
}
.investor-card-photo img { transition: transform 0.7s ease; }
.investor-card:hover .investor-card-photo img { transform: scale(1.06); }

.investor-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investor-card-info {
  background: var(--card-bg);
  padding: 28px 28px 32px;
  position: relative;
}

.investor-card-focus {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.investor-card-name {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.investor-card-firm {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-top: 6px;
}

.investor-card-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  font-size: 0.8rem;
  transition: all var(--transition);
}

.investor-card:hover .investor-card-arrow {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(239,68,68,0.05);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--white);
}

.how-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.how-header .section-headline {
  margin-bottom: 0;
}

/* How It Works — asymmetric: one tall hero + two stacked supporting */
.how-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  min-height: 580px;
}
.how-card--gradient {
  grid-row: 1 / span 2;
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 30px 60px -24px rgba(239, 68, 68, 0.45);
}
.how-card--gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.22), transparent 50%);
  pointer-events: none;
}
.how-card--dark { background: var(--dark-2); color: var(--white); border: 1px solid rgba(255,255,255,0.06); }
.how-card--light { background: var(--card-bg); color: var(--text-dark); }

.how-card {
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.how-card--gradient { padding: 56px 48px; }
.how-card:hover { transform: translateY(-4px); }

.how-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  opacity: 0.85;
}
.how-card--gradient .how-card-icon { width: 56px; height: 56px; margin-bottom: 32px; }

@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; grid-template-rows: auto; min-height: 0; }
  .how-card--gradient { grid-row: auto; }
}

.how-card-icon svg {
  width: 100%;
  height: 100%;
}

.how-card h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.014em;
  margin-bottom: 14px;
  line-height: 1.15;
}
.how-card--gradient h3 { font-size: clamp(1.6rem, 2.2vw, 2.15rem); margin-bottom: 18px; }

.how-card p {
  font-size: 0.97rem;
  line-height: 1.55;
  opacity: 0.88;
  margin-top: auto;
}
.how-card--gradient p { font-size: 1.1rem; }

.how-card--light p {
  color: var(--text-body);
}

/* ============================================
   TESTIMONIAL / FEATURED STARTUPS
   ============================================ */
.testimonial {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
}

.testimonial-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(239,68,68,0.10);
}

.testimonial .container {
  position: relative;
  z-index: 1;
}

.testimonial-content {
  max-width: 960px;
}

.testimonial-quote {
  font-size: clamp(1.4rem, 2.6vw, 2.15rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 36px;
  font-style: italic;
  letter-spacing: -0.012em;
}
.testimonial-quote::before {
  content: '"';
  display: block;
  font-family: Georgia, serif;
  font-size: 5rem;
  font-style: normal;
  line-height: 0.6;
  color: var(--primary-light);
  margin-bottom: 16px;
  font-weight: 800;
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-author-title {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

.testimonial-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.testimonial-avatars {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar-stack {
  display: flex;
}

.testimonial-avatar-stack .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 3px solid #1a0a0a;
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-avatar-stack .avatar:first-child {
  margin-left: 0;
}

.testimonial-avatar-stack .avatar--plus {
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
}

.testimonial-featured-text {
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonial-overlay-text {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 15vw;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.03em;
}

/* ============================================
   GET INVOLVED / CHOOSE YOUR PATH
   ============================================ */
.get-involved {
  background: var(--light-gray);
}

.involved-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.involved-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  gap: 32px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}
.involved-item::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.involved-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(239, 68, 68, 0.18);
}
.involved-item:hover::before { transform: scaleX(1); }

.involved-number {
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.involved-content h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.involved-content p {
  font-size: 1.02rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 24px;
}

.involved-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap var(--transition);
}

.involved-link:hover {
  gap: 10px;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.newsletter-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
}

.newsletter-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.newsletter .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.newsletter-form {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.15);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 24px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form .btn {
  flex-shrink: 0;
}

.newsletter-right p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.newsletter-overlay-text {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 15vw;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.03em;
}

/* ============================================
   CREDITS
   ============================================ */
.credits {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.credit-item {
  color: var(--white);
}

.credit-role {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.credit-name {
  font-size: 1rem;
  font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 96px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.footer-wordmark {
  font-size: clamp(2.5rem, 9vw, 9rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin: 0 0 64px;
  color: transparent;
  -webkit-text-stroke: 1.25px rgba(255, 255, 255, 0.18);
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-wordmark .checkmark {
  color: #EF4444;
  -webkit-text-stroke: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 72px;
}

.footer-brand .nav-logo {
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-platforms-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 12px;
}

.footer-platforms {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-platforms a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.footer-platforms a:hover {
  color: var(--primary);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-light);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-light);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--white);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(10px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* 1024px */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .newsletter .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .credits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-card {
    grid-template-columns: 1fr;
  }

  .schedule-card-left {
    padding: 24px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cards {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
  }

  .hero-card {
    min-width: 240px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .involved-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .episode-card {
    flex: 0 0 280px;
  }

  .investor-card {
    flex: 0 0 240px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .schedule-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .schedule-card-right {
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-expand {
    align-self: flex-end;
  }
}

/* 375px */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .section-headline {
    font-size: 1.8rem;
  }

  .how-card {
    min-height: auto;
    padding: 32px 24px;
  }

  .involved-item {
    padding: 28px;
    flex-direction: column;
    gap: 16px;
  }

  .testimonial-quote {
    font-size: 1.1rem;
  }

  .credits-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius);
    gap: 8px;
    padding: 8px;
  }

  .newsletter-form .btn {
    width: 100%;
    justify-content: center;
  }

  .episodes-header,
  .investors-header,
  .how-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ============================================
   ABOUT — editorial: question dominates
   ============================================ */
.about-question {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: clamp(16px, 3vw, 48px);
  margin: clamp(40px, 5vw, 72px) 0 clamp(56px, 7vw, 96px);
  padding-bottom: clamp(40px, 5vw, 72px);
  border-bottom: 1px solid #E5E7EB;
}
.about-q-text {
  display: flex;
  flex-direction: column;
  font-size: clamp(2.5rem, 7.5vw, 6rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.038em;
  color: var(--text-dark);
  margin: 0;
}
.about-q-text > span:nth-child(2) {
  color: var(--text-body);
  font-weight: 600;
}
.about-q-text em {
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
.about-q-mark {
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 0.7;
  letter-spacing: -0.06em;
  align-self: end;
  -webkit-text-stroke: 0;
}
@media (max-width: 720px) {
  .about-question { grid-template-columns: 1fr; gap: 16px; }
  .about-q-mark { font-size: clamp(6rem, 24vw, 10rem); justify-self: end; }
}

.about-grid { gap: clamp(40px, 5vw, 72px); }

.about-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1a0a0a, #2a0f0f);
}
.about-media-cap {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================
   EPISODES — featured + queue
   ============================================ */
.ep-stage {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}
@media (max-width: 960px) {
  .ep-stage { grid-template-columns: 1fr; }
}

.ep-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s ease;
}
.ep-feature-link {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  min-height: 560px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.ep-feature:hover { transform: translateY(-4px); }
.ep-feature-bg { position: absolute; inset: 0; }
.ep-feature-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.ep-feature:hover .ep-feature-bg img { transform: scale(1.04); }
.ep-feature-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0.3) 65%, rgba(0,0,0,0.4) 100%),
    radial-gradient(circle at 90% 10%, rgba(239,68,68,0.32), transparent 55%);
  z-index: 1;
}
.ep-feature-body {
  position: relative;
  z-index: 2;
  padding: clamp(36px, 4vw, 56px);
  color: var(--white);
  width: 100%;
}
.ep-feature-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.ep-feature-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
}
.ep-feature-live {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-light);
  display: inline-flex; align-items: center; gap: 8px;
}
.ep-feature-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.028em;
  margin: 0 0 20px;
}
.ep-feature-sub {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  max-width: 50ch;
  margin: 0 0 28px;
}
.ep-feature-sub strong { color: var(--white); }

.ep-queue {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}
.ep-mini {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  flex: 1;
  min-height: 168px;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
.ep-mini:hover {
  background: #1f0a0a;
  border-color: rgba(239, 68, 68, 0.35);
  transform: translateX(-4px);
}
.ep-mini-num {
  font-size: clamp(2.4rem, 3.5vw, 3.25rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.18);
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}
.ep-mini:hover .ep-mini-num { color: var(--primary); }
.ep-mini-body { display: flex; flex-direction: column; gap: 4px; }
.ep-mini-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary-light);
  margin-bottom: 4px;
}
.ep-mini--coming .ep-mini-tag { color: rgba(255, 255, 255, 0.4); }
.ep-mini h4 {
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.012em;
  line-height: 1.1;
  margin: 0;
  color: var(--white);
}
.ep-mini p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.ep-mini-arrow {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease, transform 0.3s ease;
}
.ep-mini:hover .ep-mini-arrow { color: var(--primary); transform: translate(2px, -2px); }

/* ============================================
   INVESTORS — the roster (4×4 numbered grid)
   ============================================ */
.investors-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.investors-header .section-headline { margin-bottom: 0; }
.investors-deck {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  max-width: 44ch;
  justify-self: end;
}
@media (max-width: 900px) {
  .investors-header { grid-template-columns: 1fr; gap: 24px; }
  .investors-deck { justify-self: start; }
}

.roster {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 1024px) { .roster { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .roster { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .roster { grid-template-columns: 1fr; } }

.roster-card {
  position: relative;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  transition: background 0.3s ease;
}
.roster-card:hover { background: #1a0a0a; }

.roster-num {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 2;
  font-size: clamp(2.5rem, 3vw, 3.25rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.14);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}
.roster-card:hover .roster-num { color: var(--primary); }

.roster-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a0a, #2a0f0f);
  position: relative;
}
.roster-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.5s ease, transform 0.7s ease;
}
.roster-card:hover .roster-photo img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.04);
}
.roster-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
  z-index: 1;
}

.roster-info {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.roster-info h3 {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.012em;
  color: var(--white);
  margin: 0;
  line-height: 1.15;
}
.roster-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.roster-focus {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-top: 8px;
}
