/* Shared styles for podcast detail pages */
:root {
  --green: #00FFAA;
  --green-soft: rgba(0, 255, 170, 0.5);
  --max: 1280px;
  --ease: cubic-bezier(.2,.7,.1,1);
  --font-head: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
html[data-theme="light"] {
  --bg: #FFFFFF;
  --bg-2: #F5F5F2;
  --fg: #0A0A0A;
  --muted: #6B6B6B;
  --line: #EAEAE5;
  --nav-bg: rgba(255, 255, 255, 0.82);
}
html[data-theme="dark"] {
  --bg: #0A0A0A;
  --bg-2: #141414;
  --fg: #FAFAF7;
  --muted: #8C8C88;
  --line: #232321;
  --nav-bg: rgba(10, 10, 10, 0.82);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 22px; } }

.dot {
  display: inline-block;
  width: 0.25em; height: 0.25em;
  background: var(--green);
  border-radius: 50%;
  vertical-align: baseline;
  margin-left: 0.05em;
  transform: translateY(0.02em);
  line-height: 0;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
html[data-theme="dark"] .nav { box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}
.logo img { display: block; height: 30px; width: auto; }
.logo .logo-dark { display: none; }
html[data-theme="dark"] .logo .logo-light { display: none; }
html[data-theme="dark"] .logo .logo-dark  { display: block; }
@media (max-width: 640px) { .logo img { height: 26px; } }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg);
  text-decoration: none;
  opacity: 0.78;
  transition: opacity 0.2s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-right { display: flex; gap: 12px; align-items: center; }
.nav-cta {
  padding: 11px 22px;
  background: var(--fg);
  color: var(--bg) !important;
  font-weight: 800;
  border-radius: 100px;
  transition: all 0.2s var(--ease);
  font-family: inherit;
  font-size: 13px;
  border: 0;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-cta:hover { transform: translateY(-1px); }
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.theme-toggle:hover { border-color: var(--fg); }
.theme-toggle svg { width: 18px; height: 18px; stroke: var(--fg); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
html[data-theme="light"] .theme-toggle .moon { display: block; }
html[data-theme="light"] .theme-toggle .sun { display: none; }
html[data-theme="dark"] .theme-toggle .moon { display: none; }
html[data-theme="dark"] .theme-toggle .sun { display: block; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--fg);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0; width: 18px; height: 2px;
  background: var(--fg);
  transition: transform 0.25s var(--ease), top 0.25s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 18px; right: 18px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px 22px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  }
  html[data-theme="dark"] .nav-links.mobile-open {
    box-shadow: 0 24px 70px rgba(0,0,0,0.6);
  }
  .nav-links.mobile-open a:not(.nav-cta) {
    padding: 14px 6px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.mobile-open a:last-of-type { border-bottom: 0; }
  .nav-right .nav-cta { padding: 10px 16px; font-size: 12px; }
  .nav-right { gap: 8px; }
}

/* Say Hi popup */
.sayhi-wrap { position: relative; }
.sayhi-pop {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 260px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,255,170,0.08);
  padding: 22px 22px 20px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  z-index: 120;
}
html[data-theme="dark"] .sayhi-pop {
  box-shadow: 0 24px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,255,170,0.18);
}
.sayhi-pop.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sayhi-pop::before {
  content: '';
  position: absolute;
  top: -6px; right: 22px;
  width: 12px; height: 12px;
  background: var(--bg);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}
.sayhi-pop-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.sayhi-pop-title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--fg);
}
.sayhi-pop-btn {
  display: block;
  text-align: center;
  background: var(--green);
  color: #000;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s;
}
.sayhi-pop-btn:hover { transform: translateY(-1px); }
.sayhi-pop-call {
  display: block;
  text-align: center;
  margin-top: 10px;
  padding: 11px 18px;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--fg);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.2s var(--ease);
}
.sayhi-pop-call:hover { border-color: var(--fg); background: var(--fg); color: var(--bg); }

/* POD HERO */
.pod-hero {
  padding: 160px 0 90px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
html[data-theme="light"] .pod-hero { background: #fff; }
.pod-hero-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 70px;
  align-items: start;
}
/* Text column: top-align content, expand naturally if longer than artwork */
.pod-hero-grid > div:not(.pod-hero-art) {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}
@media (max-width: 1060px) { .pod-hero-grid { grid-template-columns: 380px 1fr; gap: 50px; } }
@media (max-width: 900px) { .pod-hero-grid { grid-template-columns: 1fr; gap: 40px; } .pod-hero-art { max-width: 400px; } }
.pod-hero-art {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #0A0A0A;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.pod-hero-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pod-hero .eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.pod-hero .eyebrow::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--green-soft);
}
.pod-hero h1 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.pod-hero .tagline {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--muted);
  max-width: 620px;
  line-height: 1.55;
  margin-bottom: 26px;
}
.pod-hero .tagline strong { color: var(--fg); font-weight: 600; }
.pod-hero .chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.pod-hero .chips span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--bg);
  color: var(--muted);
  border: 1px solid var(--line);
}

/* Mobile (≤600px): keep all 3 chips on a single line. Tighter padding + smaller font + nowrap.
   Horizontal scroll as safety net for the narrowest phones if content still overflows. */
@media (max-width: 600px) {
  .pod-hero .chips {
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .pod-hero .chips::-webkit-scrollbar { display: none; }
  .pod-hero .chips span {
    font-size: 10px;
    padding: 6px 10px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* SECTION */
.pod-sec { padding: 100px 0; border-bottom: 1px solid var(--line); }
.pod-sec .section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.pod-sec h2 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(29px, 3.7vw, 51px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.pod-sec p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 760px;
}
.pod-sec p strong { color: var(--fg); font-weight: 600; }

/* WHAT WE DID */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 20px;
}
@media (max-width: 900px) { .scope-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .scope-grid { grid-template-columns: 1fr; } }
.scope-card {
  padding: 30px 26px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.scope-card h3 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--fg);
}
.scope-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* QUOTE BLOCK — oversized decorative marks */
.pod-quote {
  background: var(--bg-2);
  text-align: center;
}
.pod-quote .quote-inner {
  position: relative;
  display: inline-block;
  max-width: 900px;
  padding: 40px 0 0;
}
/* Giant decorative opening quotation mark */
.pod-quote .quote-mark {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(140px, 18vw, 220px);
  line-height: 0.6;
  color: var(--green);
  margin: 0 auto -20px;
  user-select: none;
  opacity: 0.85;
}
.pod-quote blockquote {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--fg);
  margin: 0;
  padding: 0;
}
.pod-quote .cite {
  margin-top: 36px;
}
.pod-quote .cite-name {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.pod-quote .cite-role {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 6px;
}
@media (max-width: 640px) {
  .pod-quote .quote-inner { padding: 20px 0 0; }
  .pod-quote .quote-mark { margin-bottom: -10px; }
  .pod-quote .cite { margin-top: 28px; }
}

/* CTA */
.cta-strip {
  padding: 110px 0;
  text-align: center;
  background: var(--green);
  color: #0A0A0A;
}
.cta-strip h2 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(29px, 3.7vw, 51px);
  line-height: 0.9;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 26px;
  color: #0A0A0A;
}
.cta-strip .dot { background: #0A0A0A; }
.cta-strip p {
  font-size: 18px;
  margin: 0 auto 30px;
  color: #0A0A0A;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}
.btn-primary { background: #0A0A0A; color: var(--green); }
.btn-primary:hover { transform: translateY(-2px); }

/* OTHER SHOWS */
.other-shows {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 22px;
  margin-top: 20px;
}
.other-show {
  display: block;
  text-decoration: none;
  color: inherit;
}
.other-show-art {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  transition: transform 0.3s var(--ease);
  margin-bottom: 12px;
}
.other-show:hover .other-show-art { transform: translateY(-4px); }
.other-show-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.other-show .label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

/* Other shows — horizontal swipe carousel on mobile */
@media (max-width: 760px) {
  .other-shows {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    margin-left: -22px;
    margin-right: -22px;
    padding: 4px 22px 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .other-shows::-webkit-scrollbar { display: none; }
  .other-show {
    flex: 0 0 62%;
    max-width: 240px;
    scroll-snap-align: start;
  }
}

/* TIMELINE */
.timeline {
  position: relative;
  margin-top: 20px;
  padding-left: 22px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 6px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--line);
}
.tl-item {
  position: relative;
  padding-bottom: 38px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -22px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand, var(--green));
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--line);
}
.tl-year {
  font-family: var(--font-head);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg);
  margin-bottom: 6px;
}
.tl-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}
.tl-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 640px;
}

/* EMBED (BTS or trailer) */
.pod-embed {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #0A0A0A;
  box-shadow: 0 30px 80px rgba(0,0,0,0.22);
  margin-top: 18px;
}
.pod-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* SOCIAL TILES */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 900px) { .social-grid { grid-template-columns: repeat(2, 1fr); } }
.social-tile {
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--line);
}

/* LISTEN STRIP */
.listen {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.listen a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  border: 1px solid transparent;
  background: var(--green);
  color: #000;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s var(--ease);
  box-shadow: 0 12px 30px rgba(0,255,170,0.22);
}
.listen a svg {
  flex-shrink: 0;
}
.listen a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,255,170,0.32);
}

/* ═══════ SECTION COLOUR SYSTEM ═══════
   Light mode:  sec-black = #0A0A0A    sec-white = #fff
   Dark mode:   dark-green = green     dark-alt = #111     (default = #0A0A0A)
   Combine: e.g. class="sec-black dark-green" = black in light, green in dark
   ═══════════════════════════════════════ */

/* --- LIGHT: sec-black (black sections in light mode) --- */
html[data-theme="light"] .sec-black {
  background: #0A0A0A !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.08) !important;
}
html[data-theme="light"] .sec-black .section-eyebrow,
html[data-theme="light"] .sec-black h2,
html[data-theme="light"] .sec-black h3,
html[data-theme="light"] .sec-black p,
html[data-theme="light"] .sec-black blockquote { color: #fff; }
html[data-theme="light"] .sec-black .cite-name { color: #fff; }
html[data-theme="light"] .sec-black .cite-role { color: rgba(255,255,255,0.55); }
html[data-theme="light"] .sec-black .dot { background: var(--green); }
html[data-theme="light"] .sec-black .muted,
html[data-theme="light"] .sec-black .section-eyebrow { color: rgba(255,255,255,0.5); }
html[data-theme="light"] .sec-black .scroll-hint { color: var(--green); }
html[data-theme="light"] .sec-black .process::before { background: rgba(255,255,255,0.12); }
html[data-theme="light"] .sec-black .process-step .dot { box-shadow: 0 0 0 6px #0A0A0A; }
html[data-theme="light"] .sec-black .process-step h3 { color: #fff; }
html[data-theme="light"] .sec-black .process-step p { color: rgba(255,255,255,0.55); }
html[data-theme="light"] .sec-black .listen-strip-label { color: rgba(255,255,255,0.5); }

/* --- LIGHT: sec-white (white sections in light mode) --- */
html[data-theme="light"] .sec-white {
  background: #fff !important;
  color: #0A0A0A !important;
  border-color: rgba(0,0,0,0.08) !important;
}
html[data-theme="light"] .sec-white .section-eyebrow,
html[data-theme="light"] .sec-white h2,
html[data-theme="light"] .sec-white h3,
html[data-theme="light"] .sec-white p,
html[data-theme="light"] .sec-white blockquote { color: #0A0A0A; }
html[data-theme="light"] .sec-white .cite-name { color: #0A0A0A; }
html[data-theme="light"] .sec-white .cite-role { color: rgba(0,0,0,0.5); }
html[data-theme="light"] .sec-white .dot { background: var(--green); }
html[data-theme="light"] .sec-white .muted,
html[data-theme="light"] .sec-white .section-eyebrow { color: rgba(0,0,0,0.5); }
html[data-theme="light"] .sec-white .about-grid .about-copy p { color: rgba(0,0,0,0.68); }
html[data-theme="light"] .sec-white .scroll-hint { color: #000; }
html[data-theme="light"] .sec-white .process::before { background: rgba(0,0,0,0.1); }
html[data-theme="light"] .sec-white .process-step .dot { box-shadow: 0 0 0 6px #fff; }
html[data-theme="light"] .sec-white .process-step h3 { color: #0A0A0A; }
html[data-theme="light"] .sec-white .process-step p { color: rgba(0,0,0,0.5); }

/* --- DARK: dark-green (green sections in dark mode) --- */
html[data-theme="dark"] .dark-green {
  background: var(--green) !important;
  color: #000 !important;
  border-color: rgba(0,0,0,0.1) !important;
}
html[data-theme="dark"] .dark-green .section-eyebrow,
html[data-theme="dark"] .dark-green h2,
html[data-theme="dark"] .dark-green h3,
html[data-theme="dark"] .dark-green p,
html[data-theme="dark"] .dark-green blockquote { color: #000; }
html[data-theme="dark"] .dark-green .dot { background: #fff; }
html[data-theme="dark"] .dark-green .muted,
html[data-theme="dark"] .dark-green .section-eyebrow { color: rgba(0,0,0,0.55); }
html[data-theme="dark"] .dark-green .scroll-hint { color: #000; }
html[data-theme="dark"] .dark-green .listen-strip-label { color: rgba(0,0,0,0.6); }
html[data-theme="dark"] .dark-green .listen a {
  background: #000;
  color: var(--green);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
html[data-theme="dark"] .dark-green .process::before { background: rgba(0,0,0,0.15); }
html[data-theme="dark"] .dark-green .process-step .dot { background: #fff; box-shadow: 0 0 0 6px var(--green); }
html[data-theme="dark"] .dark-green .process-step h3 { color: #000; }
html[data-theme="dark"] .dark-green .process-step p { color: rgba(0,0,0,0.6); }

/* --- DARK: dark-alt (slightly lighter black #111 in dark mode) --- */
html[data-theme="dark"] .dark-alt {
  background: #111 !important;
  border-color: rgba(255,255,255,0.06) !important;
}

.listen-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.listen-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

/* Mobile (≤600px): keep all listen buttons on one line. Stack "Listen on" label above, compact pill size, smaller icons. */
@media (max-width: 600px) {
  .listen-strip-inner {
    flex-direction: column;
    gap: 12px;
  }
  .listen {
    gap: 8px;
    flex-wrap: nowrap;
  }
  .listen a {
    padding: 8px 14px;
    font-size: 11px;
    gap: 6px;
    box-shadow: 0 6px 18px rgba(0,255,170,0.18);
  }
  .listen a svg {
    width: 16px;
    height: 16px;
  }
}
.listen-strip-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.sec-black .listen-strip-label { color: rgba(255,255,255,0.5); }
.listen-strip .listen { margin-top: 0; }

/* FOOTER */
footer {
  padding: 60px 0 50px;
  border-top: 1px solid var(--line);
  text-align: center;
}
footer p { font-size: 13px; color: var(--muted); }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================= */
/* NEW COMPONENTS (v2 refined template)          */
/* ============================================= */

/* ABOUT GRID — two-column with media slot, seamless height alignment */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: stretch;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; align-items: center; }
  /* On mobile, put the video at the top of the stack so it's the first
     thing the eye lands on, then the copy, then the studio photo. */
  .about-grid .about-media { order: -1; max-width: 520px; }
}
.about-grid .about-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  padding: 0;
  height: 100%;
}
/* Push the studio photo to the bottom of the copy column so it aligns with
   the bottom edge of the video on the right — copy starts at the top, image
   ends at the bottom, gap between is auto-filled */
.about-grid .about-copy .about-copy-image {
  margin-top: auto;
}
.about-grid .about-copy .section-eyebrow { margin-bottom: 6px; }
.about-grid .about-copy h2 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(29px, 3.7vw, 51px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.about-grid .about-copy p {
  max-width: none;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.about-copy-image {
  margin-top: 26px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg-2);
  box-shadow: 0 22px 60px rgba(0,0,0,0.18);
}
.about-copy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .about-copy-image { aspect-ratio: 16 / 10; margin-top: 18px; }
}
.about-media {
  position: relative;
  aspect-ratio: 9 / 16;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: #0A0A0A;
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
}
.about-media img,
.about-media iframe,
.about-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0;
  pointer-events: none;
}
/* YouTube background video trick — oversize the iframe so the player UI is cropped off the edges.
   This works for vertically-filmed 16:9 videos (like LTT). For YouTube Shorts (9:16 player),
   add the .is-short modifier to keep the iframe at natural 100% sizing instead. */
.about-media.is-bg iframe {
  width: 160%;
  height: 160%;
  left: -30%;
  top: -30%;
  inset: auto;
  pointer-events: none;
}
.about-media.is-bg.is-short iframe {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  inset: 0;
}
.about-media-caption {
  position: absolute;
  left: 18px; bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 100px;
  z-index: 2;
}

/* PROCESS — VIDPOD-green dot journey strip */
.process-wrap { margin-top: 50px; }
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  padding: 10px 0 0;
}
.process.process-3 { grid-template-columns: repeat(3, 1fr); }
.process.process-4 { grid-template-columns: repeat(4, 1fr); }
.process::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.process-step {
  position: relative;
  text-align: center;
  padding: 0 14px;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(.2,.9,.3,1);
}
@media (hover: hover) {
  .process-step:hover {
    transform: scale(1.08);
  }
}
.process-step .dot {
  display: block;
  width: 18px;
  height: 18px;
  margin: 8px auto 20px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--bg);
  animation: journey-pulse 3.6s ease-in-out infinite;
}
/* Cascading delay — each dot pulses in sequence then a pause before repeating */
.process-step:nth-child(1) .dot { animation-delay: 0s; }
.process-step:nth-child(2) .dot { animation-delay: 0.5s; }
.process-step:nth-child(3) .dot { animation-delay: 1.0s; }
.process-step:nth-child(4) .dot { animation-delay: 1.5s; }
.process-step:nth-child(5) .dot { animation-delay: 2.0s; }
@keyframes journey-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 6px var(--bg); }
  14%      { transform: scale(1.5); box-shadow: 0 0 0 4px var(--bg), 0 0 16px rgba(0,255,170,0.4); }
  28%      { transform: scale(1); box-shadow: 0 0 0 6px var(--bg); }
}
.process-step h3 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 auto;
  max-width: 180px;
}
@media (max-width: 760px) {
  .process-wrap {
    margin-left: -22px;
    margin-right: -22px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    touch-action: pan-x pan-y;
    padding: 10px 0 24px;
  }
  .process {
    grid-template-columns: repeat(5, 220px);
    width: max-content;
    padding: 10px 22px 0;
  }
  .process.process-3 { grid-template-columns: repeat(3, 240px); }
  .process.process-4 { grid-template-columns: repeat(4, 220px); }
  .process::before {
    left: calc(22px + 110px);
    right: calc(22px + 110px);
  }
  .process-step { scroll-snap-align: center; }
}

/* TIMELINE-H — horizontal card timeline with green dots */
.timeline-h {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.tl-h-item {
  position: relative;
  padding: 30px 26px 28px 26px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.tl-h-item::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 26px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--green);
}
.tl-h-year {
  font-family: var(--font-head);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 6px 24px;
}
.tl-h-title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--fg);
  margin: 0 0 12px 24px;
  line-height: 1;
}
.tl-h-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: none;
}
@media (max-width: 760px) {
  .timeline-h {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    margin-left: -22px;
    margin-right: -22px;
    padding: 0 22px 24px;
  }
  .tl-h-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
}


/* BTS CAROUSEL — CSS transform auto-scroll, click to zoom */
.bts-marquee-viewport {
  position: relative;
  margin-top: 40px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  overflow: hidden;
  background: transparent;
}
@media (max-width: 720px) {
  .bts-marquee-viewport { margin-top: 28px; }
}
.bts-marquee {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  padding: 6px 32px 24px;
  width: max-content;
  animation: bts-scroll 40s linear infinite;
  cursor: grab;
}
.bts-marquee.paused {
  animation-play-state: paused;
}
@keyframes bts-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.bts-marquee::-webkit-scrollbar { display: none; }
@media (max-width: 720px) {
  .bts-marquee { padding: 6px 22px 24px; }
}

.bts-item {
  flex: 0 0 auto;
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 18px 60px rgba(0,0,0,0.14);
  position: relative;
  aspect-ratio: 9 / 16;
  width: auto;
  cursor: zoom-in;
  transition: transform .35s ease, box-shadow .35s ease;
}
html[data-theme="light"] .sec-white .bts-item {
  box-shadow: none;
}
.bts-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.2);
}
.bts-item img,
.bts-item video,
.bts-item iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
  pointer-events: none;
}
.bts-item.is-portrait  { aspect-ratio: 9 / 16; }
.bts-item.is-square    { aspect-ratio: 1 / 1; }
.bts-item.is-landscape { aspect-ratio: 16 / 9; }
.bts-item.is-wide      { aspect-ratio: 21 / 9; }

@media (max-width: 720px) {
  .bts-item { height: 300px; }
}
@media (max-width: 480px) {
  .bts-item { height: 240px; }
}

/* Hint strip */
.bts-hint {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

/* BTS LIGHTBOX — click to zoom */
.bts-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  cursor: zoom-out;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.bts-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.bts-lightbox-inner {
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  border-radius: 20px;
  overflow: hidden;
  background: #0A0A0A;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
  transform: scale(.94);
  transition: transform .3s cubic-bezier(.2,.9,.3,1);
}
.bts-lightbox.is-open .bts-lightbox-inner {
  transform: scale(1);
}
.bts-lightbox-inner img,
.bts-lightbox-inner video,
.bts-lightbox-inner iframe {
  display: block;
  width: auto;
  height: auto;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  border: 0;
}
.bts-lightbox-inner iframe {
  width: min(1100px, 92vw);
  aspect-ratio: 9 / 16;
  max-height: 88vh;
}
.bts-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.bts-lightbox-close:hover { background: rgba(0,0,0,0.8); }

/* ============================================
   SNIPPETS — vertical podcast snippets carousel
   (native horizontal scroll + arrow buttons; no auto-scroll)
   ============================================ */
.snippets-strip { position: relative; }
.snippets-strip::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  width: 64px; height: 2px;
  background: var(--green);
  transform: translateX(-50%);
}
.snippets-rail {
  display: flex;
  gap: 22px;
  padding: 4px 36px 8px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 36px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.snippets-rail::-webkit-scrollbar { display: none; }
.snippets-rail .snippet-item { scroll-snap-align: start; }
/* Auto-center when content fits in the viewport; auto-margins resolve to 0 when content overflows so scroll still works */
.snippets-rail .snippet-item:first-child { margin-inline-start: auto; }
.snippets-rail .snippet-item:last-child { margin-inline-end: auto; }

/* Arrow buttons */
.snippets-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.snippets-nav-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s ease, border-color .15s ease, color .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.snippets-nav-btn:hover { border-color: var(--green); color: var(--green); }
.snippets-nav-btn:active { transform: scale(0.92); }
.snippets-nav-btn svg { display: block; }
.snippets-nav-btn:disabled,
.snippets-nav-btn[disabled] {
  opacity: 0.28;
  cursor: not-allowed;
  pointer-events: none;
}
.snippet-item {
  flex: 0 0 auto;
  width: 270px;
  height: 480px;
  border-radius: 22px;
  overflow: hidden;
  background: #141414;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.snippet-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.snippet-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.snippet-play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.snippet-play-btn {
  width: 64px; height: 64px;
  background: rgba(0, 255, 170, 0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0,255,170,0.4);
  transition: transform 0.2s ease;
}
.snippet-item:hover .snippet-play-btn { transform: scale(1.1); }
.snippet-play-btn::after {
  content: '';
  width: 0; height: 0;
  border-left: 18px solid #000;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 6px;
}

/* Snippets video lightbox — display toggle (not opacity transition) so iOS
   honours the user-gesture autoplay token when the iframe is inserted. */
.snip-vid-lb {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center; justify-content: center;
  z-index: 1000;
}
.snip-vid-lb.is-open {
  display: flex;
  animation: snipLbFadeIn 0.2s ease forwards;
}
@keyframes snipLbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.snip-vid-lb-wrap {
  width: 90vmin; max-width: 360px;
  aspect-ratio: 9/16;
  max-height: 90vh;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.snip-vid-lb-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.snip-vid-lb-close {
  position: absolute;
  top: max(24px, env(safe-area-inset-top, 0px));
  right: max(24px, env(safe-area-inset-right, 0px));
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
  z-index: 2; /* above the iframe wrap */
}
.snip-vid-lb-close:hover { background: rgba(255,255,255,0.28); }
@media (max-width: 720px) {
  .snippets-rail { gap: 14px; padding: 4px 22px 8px; scroll-padding-inline: 22px; }
  .snippet-item { width: 200px; height: 356px; }
  .snippet-play-btn { width: 52px; height: 52px; }
  .snippets-nav { margin-top: 22px; }
  .snippets-nav-btn { width: 44px; height: 44px; }
}

/* Visually hidden — for accessible/SEO-only headings (screen readers + crawlers see it, sighted users don't). */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
