/* ===================== TOKENS & DESIGN SYSTEM ===================== */
:root {
  /* Fonts */
  --font-script: 'Yellowtail', cursive;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-serif: 'Fraunces', Georgia, serif;

  --container: 1180px;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;

  /* Theme: Dark (Default) */
  --bg-primary: #0E0C0A;
  --bg-secondary: #14110F;
  --panel: #1B1815;
  --panel-2: #252019;
  --text-primary: #F3E9D6;
  --text-muted: #B7AC9B;
  --brass: #C99A44;
  --brass-light: #E3BD74;
  --line: rgba(243, 233, 214, 0.08);
  --line-strong: rgba(243, 233, 214, 0.18);
  --glass-bg: rgba(27, 24, 21, 0.85);
  --glass-border: rgba(243, 233, 214, 0.08);
  --shadow: rgba(0, 0, 0, 0.6);
  --glow: rgba(201, 154, 68, 0.25);
  --neon-glow: 0 0 8px rgba(201, 154, 68, 0.45), 0 0 25px rgba(201, 154, 68, 0.15);
  --hero-gradient: radial-gradient(circle at 14% 28%, rgba(201,154,68,0.18), transparent 42%),
                   radial-gradient(circle at 86% 28%, rgba(201,154,68,0.18), transparent 42%),
                   radial-gradient(circle at 50% 96%, rgba(201,154,68,0.10), transparent 55%),
                   repeating-linear-gradient(90deg, rgba(243,233,214,0.015) 0px, rgba(243,233,214,0.015) 1px, transparent 1px, transparent 96px);
  --terminal-bg: #0C0A08;
}


/* ===================== BOILERPLATE ===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
:focus-visible {
  outline: 2px solid var(--brass-light);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: 120px 0;
}
@media (max-width: 720px) {
  .section {
    padding: 80px 0;
  }
}

/* ===================== UTILITY & COMPONENTS ===================== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--brass);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: 4px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--brass);
  color: #16110A;
  box-shadow: 0 4px 14px var(--glow);
}
.btn-primary:hover {
  background: var(--brass-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--glow);
}
.btn-ghost {
  border: 1.5px solid var(--line-strong);
  color: var(--text-primary);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--brass);
  color: var(--brass-light);
  background: rgba(201, 154, 68, 0.05);
  transform: translateY(-3px);
}



/* ===================== NAVIGATION ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 30px var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 19px;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo span {
  color: var(--brass);
}
.nav-logo-text {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.nav-logo-img {
  width: 230px;
  height: auto;
  object-fit: contain;
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav.scrolled .nav-logo-img {
  width: 230px;
}
.nav-cursor {
  display: inline-block;
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brass-light);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--brass-light);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-yt {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--brass);
  border: 1px solid var(--line-strong);
  padding: 10px 18px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-yt:hover {
  border-color: var(--brass);
  background: rgba(201, 154, 68, 0.08);
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 26px;
  height: 20px;
  justify-content: space-between;
}
.nav-burger span {
  height: 2px;
  background: var(--text-primary);
  width: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 99;
  padding: 120px 28px 40px;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  justify-content: flex-start;
  transition: background 0.4s ease;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-primary);
  font-weight: 600;
  transition: color 0.2s ease;
}
.nav-mobile a:hover {
  color: var(--brass);
}

@media (max-width: 860px) {
  .nav-links, .nav-yt {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
}

/* ===================== HERO CTAS ===================== */
.hero-ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  z-index: 2;
  opacity: 0.8;
}
.scroll-cue .chev {
  font-size: 14px;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue .chev { animation: none; }
  .nav-cursor { animation: none; }
}

/* ===================== HOST SECTION ===================== */
.host-section {
  position: relative;
  background: var(--hero-gradient),
              linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  overflow: hidden;
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.host-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 154, 68, 0.08), transparent 60%);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.host-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 860px) {
  .host-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
.host-frame {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 15px 40px var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.host-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 8px solid var(--bg-secondary);
  transition: border-color 0.4s ease;
}
.host-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s ease;
}
.host-frame:hover img {
  transform: scale(1.06);
}
.host-frame:hover {
  border-color: var(--brass);
  box-shadow: 0 20px 45px var(--shadow), 0 0 15px var(--glow);
}
.host-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.host-content .bio p {
  color: var(--text-muted);
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 720px;
}
@media (max-width: 860px) {
  .host-content .bio p {
    margin-left: auto;
    margin-right: auto;
  }
}
.host-content .bio p:last-child {
  margin-bottom: 30px;
}
.host-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 860px) {
  .host-tags {
    justify-content: center;
  }
}
.host-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--brass);
  border: 1px solid var(--line-strong);
  padding: 8px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
  transition: var(--transition-fast);
  cursor: default;
}
.host-tag:hover {
  border-color: var(--brass);
  background: var(--brass);
  color: #16110A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--glow);
}
/* ===================== TOP HERO SECTION ===================== */
.top-hero {
  position: relative;
  background: #000 url('images/hero_bg.jpeg') no-repeat center center;
  background-size: cover;
  padding: 220px 0 160px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  z-index: 1;
}
.top-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
  z-index: 1;
}
.top-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.top-hero-content {
  max-width: 820px;
  margin: 0 auto;
}
.top-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.5vw, 15px);
  letter-spacing: 0.25em;
  color: var(--brass);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 24px;
}
.top-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.top-hero-tagline {
  font-family: var(--font-mono);
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.2em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 600;
  display: block;
}
.top-hero-tagline .highlight-gold {
  color: var(--brass);
}
.top-hero-title .highlight-gold {
  color: var(--brass-light);
  text-shadow: 0 0 30px rgba(227, 189, 116, 0.3);
}
.top-hero-subtext {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  font-weight: 500;
}
.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
}
@media (max-width: 860px) {
  .top-hero {
    padding: 160px 0 100px;
    min-height: 70vh;
    background-position: 82% center;
  }
}

/* ===================== STUDIO SLIDER ===================== */
.studio-slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 20px 50px var(--shadow);
  border: 1px solid var(--line-strong);
  aspect-ratio: 1500 / 844;
}
.studio-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.studio-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}
.studio-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.studio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.studio-slide.active img {
  transform: scale(1.03);
}

.studio-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 38px 34px;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 12, 10, 0.95) 75%);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #F3E9D6;
  z-index: 3;
}
.studio-cap .eyebrow {
  margin-bottom: 0;
  color: #C99A44;
}
.studio-cap p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 2.2vw, 21px);
  letter-spacing: -0.01em;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(22, 17, 10, 0.5);
  border: 1px solid rgba(243, 233, 214, 0.15);
  color: #F3E9D6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.slider-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: transform 0.2s ease;
}
.slider-btn.prev {
  left: 20px;
}
.slider-btn.next {
  right: 20px;
}
.slider-btn:hover {
  background: var(--brass);
  color: #16110a;
  border-color: var(--brass);
  box-shadow: 0 0 15px rgba(201, 154, 68, 0.4);
}
.slider-btn.prev:hover svg {
  transform: translateX(-2px);
}
.slider-btn.next:hover svg {
  transform: translateX(2px);
}

.studio-slider:hover .slider-btn {
  opacity: 1;
  visibility: visible;
}

/* Indicators */
.slider-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(243, 233, 214, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.indicator.active {
  background: var(--brass);
  transform: scale(1.2);
  box-shadow: 0 0 8px var(--brass);
}

@media (max-width: 680px) {
  .studio-cap {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 30px 24px 24px;
  }
  .slider-btn {
    opacity: 1;
    visibility: visible;
    width: 38px;
    height: 38px;
  }
  .slider-btn.prev {
    left: 10px;
  }
  .slider-btn.next {
    right: 10px;
  }
  .slider-indicators {
    bottom: 12px;
  }
}

/* ===================== MANIFESTO / ABOUT ===================== */
.manifesto {
  text-align: center;
}
.manifesto-head {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5.5vw, 68px);
  line-height: 1.15;
  max-width: 860px;
  margin: 0 auto;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.manifesto-head span {
  color: var(--brass-light);
  text-shadow: 0 0 25px rgba(227, 189, 116, 0.25);
}
.manifesto-desc {
  max-width: 760px;
  margin: 35px auto 0 auto;
  line-height: 1.7;
}
.manifesto-desc p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.manifesto-desc p.manifesto-lead {
  font-size: 21px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.manifesto-desc p.manifesto-accent {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--brass);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 24px;
}
.tenets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 80px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 10px 30px var(--shadow);
}
.tenet {
  background: var(--panel);
  padding: 44px 34px;
  text-align: left;
  transition: var(--transition);
}
.tenet:hover {
  background: var(--panel-2);
  transform: translateY(-2px);
}
.tenet .mark {
  font-family: var(--font-mono);
  color: var(--brass);
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.tenet h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 16px 0 8px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.tenet p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 760px) {
  .tenets {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .tenet {
    padding: 38px 28px;
  }
}

/* ===================== EPISODES SECTION ===================== */
.ep-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.ep-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.ep-head p {
  color: var(--text-muted);
  max-width: 440px;
  font-size: 15.5px;
}
.ep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) {
  .ep-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .ep-grid { grid-template-columns: 1fr; }
}

.ep-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}
.ep-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 40px var(--shadow), 0 0 15px var(--glow);
}
.ep-thumb {
  position: relative;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.ep-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 12, 10, 0.2) 0%, rgba(14, 12, 10, 0.7) 100%);
  transition: opacity 0.3s ease;
}
.ep-card:hover .ep-thumb-overlay {
  opacity: 0.5;
}
.ep-thumb .ep-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #F3E9D6;
  background: rgba(14, 12, 10, 0.75);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(243, 233, 214, 0.12);
  padding: 4px 9px;
  border-radius: 3px;
  z-index: 2;
}
.ep-play {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(14, 12, 10, 0.65);
  border: 1.5px solid rgba(243, 233, 214, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.ep-play svg {
  width: 18px;
  height: 18px;
  fill: #F3E9D6;
  margin-left: 3px;
  transition: fill 0.3s ease;
}
.ep-card:hover .ep-play {
  transform: scale(1.1);
  background: var(--brass);
  border-color: var(--brass);
  box-shadow: 0 6px 20px var(--glow);
}
.ep-card:hover .ep-play svg {
  fill: #16110A;
}

.ep-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.ep-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--brass);
  text-transform: uppercase;
  font-weight: 700;
}
.ep-body h3 {
  font-family: var(--font-display);
  font-size: 19px;
  margin: 12px 0 18px;
  color: var(--text-primary);
  line-height: 1.4;
  letter-spacing: -0.01em;
  flex-grow: 1;
  transition: color 0.3s ease;
}
.ep-card:hover h3 {
  color: var(--brass-light);
}
.ep-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: auto;
}
.ep-meta .guest-name {
  font-weight: 600;
}
.ep-meta .yt-link {
  color: var(--brass-light);
  font-weight: 700;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}
.ep-meta .yt-link:hover {
  color: var(--brass);
}

.ep-footer {
  text-align: center;
  margin-top: 56px;
}

/* ===================== ELIGIBILITY ===================== */
.bar {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bar-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 68px;
}
.bar-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.bar-head p {
  color: var(--text-muted);
  font-size: 16.5px;
}

.routes {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.route {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 50px 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}
.route:hover {
  border-color: var(--line-strong);
  box-shadow: 0 15px 35px var(--shadow), 0 0 10px var(--glow);
  transform: translateY(-2px);
}
.route .label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--brass);
  text-transform: uppercase;
  font-weight: 700;
}
.route .stat {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 50px);
  color: var(--text-primary);
  margin: 20px 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  transition: var(--transition);
}
.route:hover .stat {
  color: var(--brass);
  text-shadow: 0 0 12px var(--glow);
}
.route .stat.stat-text {
  font-size: clamp(20px, 2.6vw, 26px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.25;
}
.route .sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--brass-light);
  margin-bottom: 16px;
}
.route p.detail {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
.divider {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 700;
}
.divider::before, .divider::after {
  content: '';
  position: absolute;
  background: var(--line);
}
@media (min-width: 821px) {
  .divider::before { top: 0; bottom: 55%; left: 50%; width: 1px; }
  .divider::after { top: 55%; bottom: 0; left: 50%; width: 1px; }
}
@media (max-width: 820px) {
  .routes {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .divider {
    padding: 12px 0;
    text-align: center;
  }
  .divider::before { left: 0; right: 55%; top: 50%; height: 1px; }
  .divider::after { left: 55%; right: 0; top: 50%; height: 1px; }
}
.bar-cta {
  text-align: center;
  margin-top: 60px;
}

/* ===================== APPLICATION FORM ===================== */
.apply {
  background: var(--panel);
  border-top: 1px solid var(--line);
  transition: background 0.4s ease;
}
.apply-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
}
@media (max-width: 900px) {
  .apply-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.apply-left h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.apply-left p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 18px;
}
.apply-routes {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}
.apply-routes li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  padding: 12px 0;
  border-top: 1px solid var(--line-strong);
}
.apply-routes li b {
  color: var(--brass-light);
}
.apply-alt {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-top: 32px;
}
.apply-alt a {
  color: var(--brass-light);
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.apply-alt a:hover {
  color: var(--brass);
}

.form-card {
  background: var(--panel-2);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 44px;
  box-shadow: 0 15px 40px var(--shadow);
  transition: var(--transition);
}
.form-card:hover {
  border-color: var(--brass);
  box-shadow: 0 20px 45px var(--shadow), 0 0 15px var(--glow);
}
@media (max-width: 520px) {
  .form-card {
    padding: 30px 24px;
  }
}
.field {
  margin-bottom: 22px;
}
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:hover, .field select:hover, .field textarea:hover {
  border-color: var(--brass-light);
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 10px var(--glow);
  outline: none;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 520px) {
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 10px 0;
}
.form-success.show {
  display: block;
  animation: fadeIn 0.4s ease-out forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.success-message {
  padding: 30px 10px;
  margin-bottom: 26px;
  text-align: center;
}
.success-message h3 {
  font-family: var(--font-sans);
  font-size: 22px;
  color: var(--brass);
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.success-message p {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--text-primary);
  line-height: 1.6;
}

/* Form Validation & Error Styles */
.form-error {
  display: none;
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: #ff8585;
  text-align: left;
  background: #1c0e0e;
  border: 1px solid #581c1c;
  border-radius: 4px;
  padding: 20px 24px;
  line-height: 1.8;
  margin-bottom: 24px;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.5), 0 0 10px rgba(255, 133, 133, 0.05);
  animation: fadeIn 0.4s ease-out forwards;
}
.form-error.show {
  display: block;
}
.field-error-msg {
  display: none;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #ff6b6b;
  margin-top: 6px;
  animation: fadeIn 0.3s ease-out forwards;
}
.field.has-error input,
.field.has-error textarea,
.field.has-error select {
  border-color: #ff5252 !important;
  box-shadow: 0 0 8px rgba(255, 82, 82, 0.2) !important;
}
.field.has-error .field-error-msg {
  display: block;
}
.checkbox-field.has-error .checkmark {
  border-color: #ff5252 !important;
  box-shadow: 0 0 8px rgba(255, 82, 82, 0.2);
}

/* Custom Checkbox */
.checkbox-field {
  margin-top: 15px;
  margin-bottom: 22px;
}
.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
}
.checkbox-container input {
  display: none;
}
.checkbox-container .checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
  margin-top: 2px;
}
.checkbox-container input:checked + .checkmark {
  background: var(--brass);
  border-color: var(--brass);
}
.checkbox-container .checkmark::after {
  content: '';
  width: 5px;
  height: 10px;
  border: solid #16110A;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: none;
  margin-bottom: 2px;
}
.checkbox-container input:checked + .checkmark::after {
  display: block;
}
.checkbox-container:hover .checkmark {
  border-color: var(--brass-light);
}

/* ===================== FOOTER ===================== */
footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  background: var(--bg-primary);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}
@media (max-width: 760px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.foot-logo {
  margin-bottom: 12px;
}
.foot-logo-text {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--text-primary);
  display: block;
}
.foot-logo-img {
  width: 280px;
  height: auto;
  aspect-ratio: 1371 / 158;
  display: block;
}
.foot-tag {
  color: var(--text-muted);
  font-size: 14.5px;
  max-width: 300px;
  line-height: 1.6;
}
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 700;
}
.foot-col ul li {
  margin-bottom: 14px;
}
.foot-col ul li a {
  color: var(--text-muted);
  font-size: 14.5px;
  transition: color 0.2s ease;
}
.foot-col ul li a:hover {
  color: var(--brass-light);
}
.foot-social {
  display: flex;
  gap: 16px;
}
.foot-social a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-muted);
}
.foot-social a:hover {
  border-color: var(--brass);
  color: var(--brass-light);
  transform: translateY(-2px);
  background: rgba(201, 154, 68, 0.05);
}
.foot-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

/* ===================== PREMIUM SCROLL REVEAL ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > .reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.revealed > .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.revealed > .reveal-item:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.revealed > .reveal-item:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.revealed > .reveal-item:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.revealed > .reveal-item:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.revealed > .reveal-item:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.revealed > .reveal-item:nth-child(6) { transition-delay: 0.55s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Page Load Animations for Top Hero */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.top-hero-content {
  animation: zoomIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

/* ===================== VALUE / OUTCOMES SECTION ===================== */
.value-section {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--line);
}
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .value-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.value-left h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.value-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
}
.value-quote {
  margin-top: 40px;
  padding: 34px 34px 34px 40px;
  background: var(--panel-2);
  border-left: 2px solid var(--brass);
  border-radius: 0 8px 8px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  transition: var(--transition);
}
.value-quote:hover {
  border-left-color: var(--brass-light);
  box-shadow: 0 15px 35px var(--shadow), 0 0 12px var(--glow);
}
.value-quote::before {
  content: '“';
  position: absolute;
  top: -15px;
  right: 15px;
  font-family: var(--font-serif);
  font-size: 150px;
  color: var(--line-strong);
  line-height: 1;
  font-style: italic;
  pointer-events: none;
}
.value-quote blockquote {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-primary);
  font-style: italic;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 1;
}
.value-quote cite {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--brass-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  display: block;
  font-weight: 700;
}
.value-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.value-card {
  display: flex;
  gap: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--shadow);
}
.value-card:hover {
  transform: translateY(-3px);
  border-color: var(--brass);
  box-shadow: 0 10px 30px var(--shadow), 0 0 10px var(--glow);
}
.value-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 154, 68, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  flex-shrink: 0;
  transition: var(--transition);
}

.value-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.value-info h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.value-card:hover .value-icon {
  transform: scale(1.08);
  background: rgba(201, 154, 68, 0.16);
  box-shadow: 0 0 10px var(--glow);
}

.value-card:hover .value-info h3 {
  color: var(--brass-light);
}
.value-info p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================== PLATFORM STRIP ===================== */
.platform-strip {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  background: var(--bg-secondary);
}
.platform-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.platform-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.platform-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.platform-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.platform-logo-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
}
.platform-logo-link:hover {
  color: var(--brass-light);
}
.platform-logo-link:hover svg {
  transform: scale(1.15);
}
/* Brands colors on hover */
.platform-logo-link:hover .logo-yt {
  color: #FF0000;
}
.platform-logo-link:hover .logo-instagram {
  color: #E1306C;
}

/* ===================== WHY PARTICIPATE SECTION ===================== */
.why-participate-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--line);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.why-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px 34px;
  position: relative;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--brass);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px var(--shadow), 0 0 12px var(--glow);
}
.why-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--brass);
  font-weight: 700;
  margin-bottom: 24px;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  transition: color 0.3s ease;
}
.why-card:hover h3 {
  color: var(--brass-light);
}
.why-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
@media (max-width: 860px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===================== FAQ SECTION ===================== */
.faq-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--line);
}
.faq-list {
  max-width: 800px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--line-strong);
  box-shadow: 0 10px 30px var(--shadow);
}
.faq-question {
  padding: 24px 30px;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  list-style: none; /* Hide default arrow */
}
.faq-question::-webkit-details-marker {
  display: none; /* Hide default arrow in Safari */
}
.faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--brass);
  transition: transform 0.3s ease;
}
.faq-icon::before {
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
}
.faq-icon::after {
  top: 0;
  left: 8px;
  width: 2px;
  height: 18px;
}
/* When details is open */
.faq-item[open] {
  border-color: var(--brass-light);
  background: var(--panel-2);
}
.faq-item[open] .faq-icon::after {
  transform: rotate(90deg) scaleY(0);
}
.faq-item[open] .faq-icon::before {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 30px 24px 30px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
  border-top: 1px solid transparent;
}
.faq-item[open] .faq-answer {
  border-top-color: var(--line);
}

/* ===================== THE MOVEMENT (STICKY SPLIT SCROLL) ===================== */
.movement-section {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--line);
  padding: 120px 0;
  position: relative;
}.philosophy-box {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px auto;
  padding: 44px 30px;
}
.philosophy-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--brass) 12%, transparent 12%, transparent 88%, var(--brass) 88%);
}
.philosophy-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line-strong);
}
.philosophy-eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.6vw, 14px);
  color: var(--brass);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.6;
}
.philosophy-title {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-primary);
  max-width: 780px;
  margin: 0 auto;
}
@media (max-width: 520px) {
  .philosophy-box {
    padding: 30px 15px;
    margin-bottom: 50px;
  }
}

/* Split Wrap */
.movement-split-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* Left Sticky Sidebar */
.movement-sticky-nav {
  position: sticky;
  top: 130px;
  padding-right: 20px;
}

.movement-nav-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 30px;
}

.movement-nav-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-left: 1px solid var(--line);
  padding-left: 24px;
  position: relative;
}

.movement-nav-item {
  position: relative;
  cursor: pointer;
  transition: var(--transition-fast);
}

.movement-nav-item .nav-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.movement-nav-item .nav-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.movement-nav-item .nav-indicator-line {
  position: absolute;
  bottom: -8px;
  left: -25px;
  width: 0;
  height: 2px;
  background: var(--brass);
  transition: width 0.4s cubic-bezier(0.25, 1, 0.2, 1);
}

/* Active Nav State */
.movement-nav-item.active .nav-num {
  color: var(--brass-light);
}

.movement-nav-item.active .nav-title {
  color: var(--text-primary);
}

.movement-nav-item.active .nav-indicator-line {
  width: 30px;
}

/* Right Scrollable Content */
.movement-scroll-content {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding-bottom: 100px;
}

.movement-scroll-panel {
  padding: 60px 40px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: var(--transition);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 30px var(--shadow);
}

.movement-scroll-panel:hover {
  border-color: var(--brass);
  box-shadow: 0 15px 40px var(--shadow), 0 0 15px var(--glow);
  transform: translateY(-2px);
}

.movement-scroll-panel .panel-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--brass);
  background: rgba(201, 154, 68, 0.08);
  border: 1px solid rgba(201, 154, 68, 0.15);
  padding: 6px 12px;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.movement-scroll-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.movement-scroll-panel:hover h3 {
  color: var(--brass-light);
}

.movement-scroll-panel .panel-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Bottom Legacy Callout */
.movement-legacy-callout {
  text-align: center;
  max-width: 800px;
  margin: 100px auto 0 auto;
  padding: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.movement-legacy-callout::before,
.movement-legacy-callout::after {
  content: '';
  position: absolute;
  top: -1px;
  width: 40px;
  height: 1px;
  background: var(--brass);
}

.movement-legacy-callout::before { left: 0; }
.movement-legacy-callout::after { right: 0; }

.movement-legacy-callout p {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.movement-legacy-callout strong {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

/* Responsive Sticky Split */
@media (max-width: 860px) {
  .movement-split-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .movement-sticky-nav {
    position: relative;
    top: 0;
    padding-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }
  
  .movement-nav-list {
    flex-direction: row;
    border-left: none;
    padding-left: 0;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }
  
  .movement-nav-item {
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  
  .movement-nav-item .nav-indicator-line {
    bottom: -12px;
    left: 0;
  }
  
  .movement-nav-item.active .nav-indicator-line {
    width: 100%;
  }
  
  .movement-scroll-content {
    gap: 60px;
  }
  
  .movement-scroll-panel {
    padding: 40px 24px;
    min-height: auto;
  }
}

/* ===================== CINEMATIC EXPANDING PANELS ===================== */
.ep-cinematic-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 50px;
}

.ep-panel {
  width: calc(33.333% - 19px);
  min-width: 280px;
  height: 520px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-secondary);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 15px 40px var(--shadow);
}

.ep-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 12, 10, 0.1) 0%, rgba(14, 12, 10, 0.3) 50%, rgba(14, 12, 10, 0.9) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.ep-panel:hover {
  transform: translateY(-8px);
  border-color: var(--brass);
  box-shadow: 0 25px 50px var(--shadow), 0 0 25px var(--glow);
}

.ep-panel:hover::before {
  background: linear-gradient(180deg, rgba(14, 12, 10, 0.05) 0%, rgba(14, 12, 10, 0.2) 40%, rgba(14, 12, 10, 0.95) 100%);
}

.ep-panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.2, 1);
}

.ep-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ep-panel:hover .ep-panel-bg {
  transform: scale(1.08);
}

.ep-panel-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #F3E9D6;
  background: rgba(14, 12, 10, 0.75);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(243, 233, 214, 0.12);
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.ep-panel-badge.featured {
  background: var(--brass);
  color: #16110A;
  border-color: var(--brass);
  box-shadow: 0 0 12px var(--glow);
}

.ep-panel-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  margin: 20px;
  border-radius: 8px;
  background: rgba(20, 17, 15, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(243, 233, 214, 0.05);
  transition: all 0.4s ease;
}

.ep-panel:hover .ep-panel-content {
  background: rgba(27, 24, 21, 0.8);
  border-color: rgba(201, 154, 68, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.ep-panel-tagline {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--brass);
  text-transform: uppercase;
  font-weight: 700;
  display: block;
}

.ep-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 6px;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.ep-panel:hover h3 {
  color: var(--brass-light);
}

.ep-panel-desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.2, 1);
}

.ep-panel:hover .ep-panel-desc {
  max-height: 80px;
  opacity: 1;
  margin-top: 12px;
  margin-bottom: 8px;
}

.ep-panel-desc p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

.ep-panel-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--text-muted);
  border-top: 1px solid rgba(243, 233, 214, 0.08);
  padding-top: 14px;
  margin-top: 10px;
}

.ep-panel-meta .yt-link {
  color: var(--brass-light);
  font-weight: 700;
  font-size: 13px;
  transition: color 0.2s ease;
}

.ep-panel-meta .yt-link:hover {
  color: var(--brass);
}

/* Responsive Cinematic Layout */
@media (max-width: 860px) {
  .ep-cinematic-wrap {
    flex-direction: column;
    gap: 30px;
  }
  .ep-panel {
    width: 100%;
    height: auto;
    justify-content: flex-start;
  }
  .ep-panel:hover {
    transform: translateY(-5px);
  }
  .ep-panel::before {
    display: none;
  }
  .ep-panel-bg {
    position: relative;
    height: 340px;
    width: 100%;
    z-index: 1;
  }
  .ep-panel-bg img {
    object-position: center top;
  }
  .ep-panel-content {
    margin: 0;
    padding: 24px 20px;
    background: var(--panel);
    border-radius: 0 0 11px 11px;
    border: none;
    border-top: 1px solid var(--line);
    backdrop-filter: none;
    transform: none !important;
  }
  .ep-panel:hover .ep-panel-content {
    transform: none !important;
    background: var(--panel-2);
    border-color: transparent;
    box-shadow: none;
  }
  .ep-panel-desc {
    max-height: none;
    opacity: 1;
    margin-top: 12px;
    margin-bottom: 8px;
  }
}


