/* ===========================================
   Static — Standalone Pitch Site
   =========================================== */

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

:root {
  --font-logo: bebas-neue-pro, sans-serif;
  --font-display: bebas-neue-pro-expanded, sans-serif;
  --font-sans: ibm-plex-sans, sans-serif;
  --nav-width: 200px;
  --nav-padding: 18px;
  --nav-radius: 20px;
  --nav-bg: rgba(68, 68, 68, 0.30);
  --nav-blur: 15px;
  --text-muted: rgba(255, 255, 255, 0.60);
  --transition-fast: 0.25s ease;
}

html, body {
  height: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ol, ul { list-style: none; }

/* ── Left Nav Panel ── */
.nav-panel {
  position: fixed;
  top: var(--nav-padding);
  left: var(--nav-padding);
  bottom: var(--nav-padding);
  width: var(--nav-width);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-panel__top {
  background: var(--nav-bg);
  backdrop-filter: blur(var(--nav-blur));
  -webkit-backdrop-filter: blur(var(--nav-blur));
  border-radius: var(--nav-radius);
  padding: 20px 22px 20px;
}

.nav-panel__logo {
  font-family: var(--font-logo);
  font-size: 64px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 6.4px;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.80);
  filter: blur(0);
  transition: filter 2s ease;
  margin-bottom: 12px;
}

.nav-panel__logo.is-blurred {
  filter: blur(2px);
}

/* ── Menu Items ── */
.nav-panel__menu {
  counter-reset: nav-item;
}

.nav-panel__menu li {
  counter-increment: nav-item;
}

.nav-panel__menu li a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-transform: capitalize;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-panel__menu li a::before {
  content: counter(nav-item);
  font-size: 12px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text-muted);
  min-width: 14px;
  position: relative;
  top: -2px;
  transition: color var(--transition-fast);
}

.nav-panel__menu li a:hover,
.nav-panel__menu li a.is-active {
  color: rgba(255, 255, 255, 1);
}

.nav-panel__menu li a:hover::before,
.nav-panel__menu li a.is-active::before {
  color: rgba(255, 255, 255, 1);
}

/* ── Divider ── */
.nav-panel__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 12px 0;
}

/* ── Downloads ── */
.nav-panel__downloads li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-transform: capitalize;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-panel__downloads li a:hover {
  color: rgba(255, 255, 255, 0.90);
}

.nav-panel__downloads li a svg {
  flex-shrink: 0;
}

/* ── Bottom Nav ── */
.nav-panel__bottom {
  background: var(--nav-bg);
  backdrop-filter: blur(var(--nav-blur));
  -webkit-backdrop-filter: blur(var(--nav-blur));
  border-radius: var(--nav-radius);
  padding: 12px 22px 16px;
}

.nav-panel__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pager__prev,
.pager__next {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.pager__prev:hover,
.pager__next:hover {
  color: rgba(255, 255, 255, 0.90);
}

.pager__prev[disabled],
.pager__next[disabled] {
  opacity: 0.2;
  pointer-events: none;
}

.pager__prev svg,
.pager__next svg {
  width: 100%;
  height: 100%;
}

.pager__count {
  font-size: 18px;
  line-height: 28px;
  color: var(--text-muted);
  text-align: center;
  min-width: 60px;
}

.nav-panel__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-muted);
}

.nav-panel__footer a {
  transition: color var(--transition-fast);
}

.nav-panel__footer a:hover {
  color: rgba(255, 255, 255, 0.90);
}

.nav-panel__footer span {
  opacity: 0.4;
}

/* ── Deck & Slides ── */
.deck {
  position: fixed;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0s 0.8s;
  display: flex;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0s 0s;
  z-index: 2;
}

.slide.is-prev {
  opacity: 0;
  visibility: visible;
  z-index: 1;
  transition: opacity 0.8s ease, visibility 0s 0.8s;
}

/* ── Slide Background ── */
.slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease;
}

.slide.is-active .slide__bg {
  opacity: 1;
}

/* ── Slide Content ── */
.slide__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Text Block ── */
.slide__text-block {
  max-width: 590px;
  width: 100%;
}

/* ── Epigraph (Slide 1) ── */
.slide__content--epigraph {
  justify-content: flex-start;
  padding-top: 100px;
}

.epigraph__line {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: #B3A7AB;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.epigraph__line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.epigraph__line--bold {
  color: #fff;
}

/* ── Standard Content (Slide 2+) ── */
.slide__content--standard {
  justify-content: flex-start;
  padding-top: 100px;
}

.logline {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
  color: #B3A7AB;
  margin-bottom: 24px;
}

.body-text {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  line-height: 155%;
  color: #fff;
}

.body-text em {
  font-style: italic;
}

/* ── Fade-in for text blocks on slide entry ── */
.slide__text-block {
  max-width: 590px;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1s ease, transform 1s ease;
}

.slide.is-active .slide__text-block {
  opacity: 1;
  transform: translateY(0);
}

/* Epigraph overrides: lines animate individually, block itself is visible */
.slide__content--epigraph .slide__text-block {
  opacity: 1;
  transform: none;
}

/* ── Panel Layout (Story slides) ── */
.slide__content--panel {
  justify-content: flex-start;
  align-items: center;
}

.slide__glass-panel {
  width: 770px;
  max-width: 90vw;
  padding: 100px 90px 60px;
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0 0 20px 20px;
  overflow-y: auto;
  max-height: 100vh;

  /* Animate in */
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1.2s ease 0.4s, transform 1.2s ease 0.4s;
}

.slide.is-active .slide__glass-panel {
  opacity: 1;
  transform: translateY(0);
}

/* Text inside panel cross-dissolves */
.slide__content--panel .slide__text-block {
  opacity: 0;
  transform: none;
  transition: opacity 0.8s ease;
}

.slide.is-active .slide__content--panel .slide__text-block {
  opacity: 1;
}

.panel__heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  color: #F8F8F8;
  margin-bottom: 24px;
}

.panel__body {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 155%;
  color: #F8F8F8;
}

.panel__body p {
  margin-bottom: 1em;
}

.panel__body p:last-child {
  margin-bottom: 0;
}

/* Intro paragraph (larger weight) */
.panel__intro {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 400;
  line-height: 140%;
  color: #F8F8F8;
  margin-bottom: 30px;
}

/* Act headings */
.panel__act-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #F8F8F8;
  margin-top: 30px;
}

/* Scrollable panel variant */
.slide__glass-panel--scrollable {
  max-height: calc(100vh);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.slide__glass-panel--scrollable::-webkit-scrollbar {
  width: 4px;
}
.slide__glass-panel--scrollable::-webkit-scrollbar-track {
  background: transparent;
}
.slide__glass-panel--scrollable::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.panel__body strong {
  font-weight: 600;
}

/* ── Character Slides ── */
.slide--character {
  background: #000;
  overflow: hidden;
}

.char__portrait {
  position: absolute;
  top: -40px;
  right: 0;
  width: 45%;
  height: calc(100% + 80px);
  z-index: 0;
}

.char__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.char__overlay {
  position: absolute;
  inset: 0;
  mix-blend-mode: overlay;
}

.char__text {
  position: absolute;
  top: 130px;
  left: 402px;
  width: 568px;
  z-index: 1;
  overflow-y: auto;
  max-height: calc(100vh - 160px);
  padding-right: 20px;
  padding-bottom: 40px;

  /* Fade in */
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.slide--character.is-active .char__text {
  opacity: 1;
  transform: translateY(0);
}

.char__name {
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--char-name);
}

.char__name-main {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
}

.char__age {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--char-name);
}

.char__body {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--char-body);
}

.char__body p {
  margin-bottom: 15px;
}

.char__body p:last-child {
  margin-bottom: 0;
}

.char__body em {
  font-style: italic;
}

.char__cf {
  font-size: 14px;
  line-height: 1.55;
}

/* Scrollbar for character text */
.char__text::-webkit-scrollbar {
  width: 4px;
}
.char__text::-webkit-scrollbar-track {
  background: transparent;
}
.char__text::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

/* ── Location Slide ── */
.slide--location {
  background: #000;
}

.slide__bg--location-1,
.slide__bg--location-2 {
  transition: opacity 1s ease;
}

/* Panel divider (thin line between sections) */
.panel__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 50px 0;
}

/* ── Style Slide ── */
.slide__content--style {
  justify-content: flex-start;
  align-items: center;
  padding-top: 80px;
  gap: 30px;
}
.style__intro {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: #c787c2;
  margin-bottom: 10px;
}
.style__text {
  max-width: 590px;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.slide.is-active .style__text {
  opacity: 1;
  transform: translateY(0);
}

.style__video {
  max-width: 733px;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
  padding-top: 40px;
}

.slide.is-active .style__video {
  opacity: 1;
  transform: translateY(0);
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 733 / 416;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
}

.video-embed__placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-embed__placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-embed__play {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.video-embed__play:hover {
  transform: scale(1.1);
}

.video-embed__play svg {
  width: 100%;
  height: 100%;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.style__caption {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: #F8F8F8;
  text-align: center;
  margin-top: 12px;
}

/* ── Soundtrack Slide ── */
.slide__content--soundtrack {
  justify-content: flex-start;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 40px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.slide__content--soundtrack::-webkit-scrollbar { width: 4px; }
.slide__content--soundtrack::-webkit-scrollbar-track { background: transparent; }
.slide__content--soundtrack::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }

.soundtrack__intro {
  max-width: 590px;
  width: 100%;
  margin-bottom: 30px;
}

.soundtrack__quote {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: #FCE079;
  margin-bottom: 10px;
  text-align: center;
}

.soundtrack__attribution {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #9C6947;
  margin-bottom: 15px;
  text-align: center;
}

.soundtrack__body {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  color: #F8F8F8;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

/* ── Track Columns ── */
.soundtrack__tracks {
  display: grid;
  grid-template-columns: 420px 420px;
  gap: 0 40px;
  justify-content: center;
  padding-top: 20px;
}

.soundtrack__side-heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9C6947;
  margin-bottom: 10px;
}

/* ── Custom Audio Player ── */
.audio-player {
  display: flex;
  align-items: center;
  background: #222;
  border-radius: 10px;
  height: 30px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
}

.audio-player.is-playing {
  background: #333;
}

.audio-player__play {
  width: 40px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  border: none;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
}

.audio-player__play svg {
  width: 18px;
  height: 18px;
}

.audio-player__title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 12px;
  flex: 1;
  min-width: 0;
}

.audio-player__progress {
  position: relative;
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin-right: 14px;
  flex-shrink: 0;
  border-radius: 10px;
}

.audio-player__bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #fff;
  width: 0%;
  border-radius: 10px;
}

.audio-player__handle {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  display: none;
}

.audio-player.is-playing .audio-player__handle,
.audio-player:hover .audio-player__handle {
  display: block;
}

/* ── Bottom Area: Dial + Buttons stacked center ── */
.soundtrack__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 30px;
}

.soundtrack__dial {
  max-width: 450px;
  width: 100%;
}

.soundtrack__dial img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.8;
}

.soundtrack__buttons {
  display: flex;
  gap: 12px;
}

.soundtrack__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 24px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  transition: opacity var(--transition-fast);
}

.soundtrack__btn:hover {
  opacity: 0.85;
}

.soundtrack__btn--spotify,
.soundtrack__btn--radio {
  background: #FCE079;
  color: #000;
}

.soundtrack__play-icon {
  font-size: 20px;
  line-height: 1;
}

/* ── Password Gate ── */
.gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

.gate.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.gate__inner {
  text-align: center;
}

.gate__logo {
  font-family: var(--font-logo);
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 8px;
  color: rgba(255, 255, 255, 0.80);
  opacity: 0;
  filter: blur(0);
  animation: gate-logo-in 2s ease 0.3s forwards;
}

@keyframes gate-logo-in {
  0% { opacity: 0; }
  50% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; filter: blur(5px); }
}

.gate__form {
  margin-top: 30px;
  opacity: 0;
  animation: gate-form-in 1s ease 2s forwards;
}

@keyframes gate-form-in {
  to { opacity: 1; }
}

.gate__input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  padding: 10px 16px;
  width: 240px;
  text-align: center;
  outline: none;
  transition: border-color 0.2s ease;
}

.gate__input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.gate__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.gate__error {
  color: #ff4444;
  font-size: 13px;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gate__error.is-visible {
  opacity: 1;
}

/* ── Unified Overlay ── */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s 0.35s;
}

.overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0s 0s;
}

.overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.overlay__panel {
  position: relative;
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 660px;
  width: 90%;
}

.overlay__close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.6);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.overlay__close:hover {
  color: #fff;
}

.overlay__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}

/* About body text */
.overlay__body {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  color: #F8F8F8;
}

.overlay__body p {
  margin-bottom: 1.25em;
}

.overlay__body p:last-child {
  margin-bottom: 0;
}

.overlay__body strong {
  font-weight: 600;
}

.overlay__body a {
  color: #F8F8F8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.overlay__body a:hover {
  color: #fff;
}

.overlay__body--scrollable {
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.overlay__body--scrollable::-webkit-scrollbar { width: 4px; }
.overlay__body--scrollable::-webkit-scrollbar-track { background: transparent; }
.overlay__body--scrollable::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }

/* Forms (Download + Contact) */
.overlay__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.overlay__input {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.75rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.overlay__input:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.overlay__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.overlay__textarea {
  min-height: 60px;
  resize: vertical;
}

.overlay__textarea--large {
  min-height: 140px;
}

/* Subscribe checkbox */
.overlay__subscribe {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  margin: 4px 0;
}

.overlay__subscribe input[type="checkbox"] {
  display: none;
}

.overlay__checkbox {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.overlay__subscribe input:checked + .overlay__checkbox {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.overlay__subscribe input:checked + .overlay__checkbox::after {
  content: '\2713';
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.overlay__subscribe-text {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}

.overlay__subscribe-text strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.overlay__submit {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.overlay__submit:hover {
  background: #ddd;
}

.overlay__submit:disabled {
  opacity: 0.5;
  cursor: wait;
}

.overlay__cancel {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.overlay__cancel:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ── Radio Blips (Closing Slide) ── */
.slide__content--blips {
  position: relative;
  justify-content: flex-start;
  align-items: center;
}

.blip {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: #FCE079;
  opacity: 0;
  transform: translateY(12px);
}

.slide.is-active .blip {
  animation: blip-in 1.5s ease forwards;
}

.blip--1 {
  font-size: 36px;
  color: rgba(252, 224, 121, 0.9);
  top: 10%;
  left: calc(50% - 250px);
  width: 520px;
  text-indent: -16px;
}

.slide.is-active .blip--1 {
  animation-delay: 1s;
}

.blip--2 {
  font-size: 30px;
  top: 35%;
  left: calc(50% + 30px);
  width: 520px;
  color: rgba(252, 224, 121, 0.7);
  text-indent: -14px;

}

.slide.is-active .blip--2 {
  animation-delay: 5s;
}

.blip--3 {
  font-size: 24px;
  color: rgba(252, 224, 121, 0.5);
  top: 55%;
  left: calc(50% - 180px);
  width: 480px;
  text-indent: -11px;
}

.slide.is-active .blip--3 {
  animation-delay: 9s;
}

@keyframes blip-in {
  0%   { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

.blips__dial {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
  opacity: 0.8;
}

.blips__dial img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===========================================
   MOBILE: Paginated with hamburger + bottom capsule
   =========================================== */

/* Hidden on desktop */
.hamburger,
.mobile-menu,
.mobile-nav { display: none; }

@media (max-width: 768px) {

  /* Hide desktop nav */
  .nav-panel { display: none; }

  /* ── Hamburger Button ── */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 201;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── Mobile Menu Overlay ── */
  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s 0.35s;
  }
  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0s 0s;
  }
  .mobile-menu__inner {
    text-align: center;
  }
  .mobile-menu__logo {
    font-family: var(--font-logo);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4.8px;
    color: rgba(255,255,255,0.8);
    filter: blur(2px);
    margin-bottom: 24px;
  }
  .mobile-menu__list {
    counter-reset: mobile-nav;
    margin-bottom: 20px;
  }
  .mobile-menu__list li {
    counter-increment: mobile-nav;
  }
  .mobile-menu__list li a {
    display: block;
    font-size: 20px;
    line-height: 40px;
    color: var(--text-muted);
    text-transform: capitalize;
  }
  .mobile-menu__list li a.is-active {
    color: rgba(255,255,255,0.9);
  }
  .mobile-menu__divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 16px auto;
    width: 60%;
  }
  .mobile-menu__downloads li a {
    display: block;
    font-size: 20px;
    line-height: 40px;
    color: var(--text-muted);
    text-transform: capitalize;
  }
  .mobile-menu__footer {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    color: var(--text-muted);
  }
  .mobile-menu__footer span { opacity: 0.4; }

  /* ── Mobile Bottom Capsule ── */
  .mobile-nav {
    display: flex;
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1.25rem;
    z-index: 102;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 100px;
  }
  .mobile-nav__btn {
    background: none;
    border: none;
    color: #fff;
    padding: 0.5rem;
    cursor: pointer;
    line-height: 1;
  }
  .mobile-nav__btn svg {
    width: 28px;
    height: 28px;
  }
  .mobile-nav__btn:active svg { opacity: 0.5; }
  .mobile-nav__btn[disabled] {
    opacity: 0;
    pointer-events: none;
  }
  .mobile-nav__counter {
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
  }

  /* ── Slides: paginated, scrollable pages ── */
  html, body { overflow: visible; overflow-x: hidden; height: auto; }
  .deck { height: auto; overflow: visible; }

  .slide {
    display: none;
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    transition: none;
    z-index: auto;
    overflow: visible;
    min-height: 100dvh;
  }
  .slide.is-active {
    display: flex;
    opacity: 1;
    visibility: visible;
    z-index: auto;
  }
  .slide.is-prev {
    display: none;
  }

  /* Content anchored to top */
  .slide__content {
    overflow: visible;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 80px;
    padding-bottom: 6rem;
    align-items: flex-start;
    justify-content: flex-start;
  }

  /* Kill entrance animations */
  .slide .glass-panel,
  .slide .char__text,
  .slide .char__portrait,
  .slide .epigraph__line,
  .slide .style__text,
  .slide .style__video,
  .slide .blip {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  /* ── Epigraph on mobile ── */
  .slide__content--epigraph {
    padding-top: 80px;
    justify-content: flex-start;
  }
  .slide__content--epigraph .slide__text-block {
    max-width: 100%;
    margin: 0;
  }

  /* ── Standard text block (logline) ── */
  .slide__content--standard .slide__text-block {
    max-width: 100%;
    margin: 0;
  }

  /* ── Glass Panel slides ── */
  .slide__glass-panel {
    width: 100%;
    max-width: 100%;
    padding: 80px 1.5rem 2rem;
    border-radius: 0;
    max-height: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .slide__glass-panel--scrollable {
    max-height: none;
  }

  /* ── Character slides: portrait above text ── */
  .slide--character {
    flex-direction: column;
  }
  .char__portrait {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 50vh;
  }
  .char__text {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-height: none;
    padding: 1.5rem;
    padding-bottom: 6rem;
    opacity: 1;
    transform: none;
    transition: none;
  }

  /* ── Location slide ── */
  .slide--location .slide__content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* ── Style slide ── */
  .slide__content--style {
    padding-top: 80px;
  }
  .style__text,
  .style__video {
    max-width: 100%;
  }
  .video-embed {
    border-radius: 12px;
  }

  /* ── Soundtrack ── */
  .soundtrack__tracks {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .soundtrack__tracks > :nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
  .soundtrack__side-heading { display: none; }
  .audio-player {
    max-width: 100%;
    width: 100%;
  }
  .audio-player__progress {
    display: none;
  }

  .soundtrack__bottom {
    flex-direction: column;
    align-items: center;
  }
  .soundtrack__dial { max-width: 100%; }
  .soundtrack__buttons { flex-direction: column; align-items: center; }

  /* ── Blips (slide 13): stack vertically on mobile ── */
  .slide__content--blips {
    padding-top: 80px;
    position: relative;
  }
  .blip {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    font-size: 22px !important;
    text-indent: 0 !important;
    margin-bottom: 2rem;
    opacity: 1 !important;
    transform: none !important;
  }
  .blips__dial {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 280px;
    margin: 2rem auto 0;
  }

  /* ── Body text size ── */
  .panel__body,
  .char__body,
  .location__body p,
  .overlay__body {
    font-size: 15px;
  }

  /* ── Buttons: legible sans ── */
  .soundtrack__btn {
    font-family: var(--font-sans);
    letter-spacing: 0;
    text-transform: capitalize;
    font-size: 1rem;
  }
  .soundtrack__play-icon { display: none; }

  /* ── Display text: 36px → 26px on mobile ── */
  .epigraph__line,
  .logline,
  .panel__heading,
  .soundtrack__quote {
    font-size: 26px;
  }

  /* ── Prevent soundtrack radio image from bleeding ── */
  .soundtrack__dial img {
    max-width: 280px;
    margin: 0 auto;
  }

  /* ── Overlay adjustments ── */
  .overlay__panel {
    width: 95%;
    max-width: 100%;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    max-height: 90vh;
    overflow-y: auto;
  }

  /* ── Gate adjustments ── */
  .gate__logo {
    font-size: 48px;
  }
}

/* ── Background Dimming ── */
/* Story slide 1: bg fades to 50% when panel appears */
.slide__bg {
  transition: opacity 2s ease;
}

.slide.is-active .slide__glass-panel ~ .placeholder-never-matches,
.slide__content--panel ~ .placeholder-never-matches {
  /* placeholder for specificity — actual dimming via JS */
}

