/* ============================================================
   MIND OF THEIR OWN — TRANSMISSION INTERFACE
   Complete Rebuild — Signal / Radio / HUD Aesthetic
   Designed by Kyle Wilson
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Serif+Display:ital@0;1&family=IBM+Plex+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

:root {
  --black:       #050505;
  --void:        #0a0806;
  --deep:        #0e0c0a;
  --charcoal:    #161412;
  --rust:        #7a240a;
  --rust-light:  #a03010;
  --amber:       #c4620e;
  --gold:        #d4a84b;
  --gold-bright: #f0c96c;
  --teal:        #2a7a8c;
  --teal-light:  #48b8c8;
  --magenta:     #9b1f72;
  --magenta-light:#d040a0;
  --cream:       #ede5d5;
  --white:       #f8f4ee;
  --grey:        #5a5a5a;
  --grey-mid:    #888;
  --grey-light:  #aaa;
  --red:         #e03030;

  --font-display: 'Syne', sans-serif;
  --font-serif:   'DM Serif Display', serif;
  --font-mono:    'IBM Plex Mono', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--cream); font-family: var(--font-serif); font-size: 18px; line-height: 1.75; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--teal); color: var(--white); }

/* ══════════════════════════════════════════
   BOOT SEQUENCE
══════════════════════════════════════════ */
.boot-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}
.boot-overlay.boot--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.boot-content { text-align: center; }

.boot-signal-rings {
  position: relative;
  width: 120px; height: 120px;
  margin: 0 auto 3rem;
}

.boot-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--teal);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}
.boot-ring--1 { width: 40px; height: 40px; animation: ringExpand 2s 0.2s ease-out infinite; }
.boot-ring--2 { width: 70px; height: 70px; animation: ringExpand 2s 0.6s ease-out infinite; }
.boot-ring--3 { width: 100px; height: 100px; animation: ringExpand 2s 1s ease-out infinite; }

@keyframes ringExpand {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.boot-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 15px var(--teal), 0 0 40px rgba(42,122,140,0.3);
  animation: bootPulse 1s ease-in-out infinite;
}

@keyframes bootPulse {
  0%, 100% { box-shadow: 0 0 15px var(--teal), 0 0 40px rgba(42,122,140,0.3); }
  50% { box-shadow: 0 0 25px var(--teal-light), 0 0 60px rgba(42,122,140,0.5); }
}

.boot-line {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(42,122,140,0.0);
  transition: color 0.5s;
  margin-bottom: 0.5rem;
}
.boot-line.boot-line--visible { color: rgba(42,122,140,0.6); }
.boot-line--gold.boot-line--visible { color: var(--gold); font-weight: 500; font-size: 0.8rem; letter-spacing: 0.4em; }

/* ══════════════════════════════════════════
   OVERLAYS
══════════════════════════════════════════ */
.grain-overlay {
  position: fixed; inset: -50%; width: 200%; height: 200%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 10000; opacity: 0.4; mix-blend-mode: overlay;
  animation: grainShift 0.4s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); } 25% { transform: translate(-2%,-1%); }
  50% { transform: translate(1%,2%); } 75% { transform: translate(-1%,-2%); }
}

.scanline-overlay {
  position: fixed; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0px, transparent 3px, rgba(0,0,0,0.015) 3px, rgba(0,0,0,0.015) 4px);
  pointer-events: none; z-index: 9999;
}

/* ══════════════════════════════════════════
   RADIO WAVE BACKGROUND
══════════════════════════════════════════ */
.radio-wave-bg {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  z-index: 9997;
  pointer-events: none;
  opacity: 0.04;
}
.radio-wave-bg svg { width: 100%; height: 100%; }
.wave-path {
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}
.wave-path--1 {
  stroke: var(--teal-light);
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: waveDraw 4s linear infinite;
}
.wave-path--2 {
  stroke: var(--gold);
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: waveDraw 4s 1s linear infinite;
}
@keyframes waveDraw {
  0% { stroke-dashoffset: 600; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -600; }
}

/* ══════════════════════════════════════════
   SIDE TICKER
══════════════════════════════════════════ */
.side-ticker {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 50; display: flex; flex-direction: column; gap: 1rem;
  padding: 1.5rem 0.7rem;
  border-left: 1px solid rgba(42,122,140,0.1);
  background: rgba(5,5,5,0.7);
  backdrop-filter: blur(8px);
}
.side-ticker span {
  font-family: var(--font-mono); font-size: 0.45rem; font-weight: 300;
  letter-spacing: 0.12em; color: rgba(42,122,140,0.2);
  writing-mode: vertical-rl; text-orientation: mixed; white-space: nowrap;
}
.ticker-status { color: var(--teal) !important; animation: tickerBlink 2s infinite; }
@keyframes tickerBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.ticker-signal-bar { display: flex; flex-direction: column; gap: 3px; align-items: center; margin-bottom: 0.5rem; }
.ticker-bar {
  width: 3px; border-radius: 1px; background: var(--teal);
  animation: barPulse 1.5s ease-in-out infinite;
}
.ticker-bar:nth-child(1) { height: 4px; animation-delay: 0s; }
.ticker-bar:nth-child(2) { height: 8px; animation-delay: 0.1s; }
.ticker-bar:nth-child(3) { height: 14px; animation-delay: 0.2s; }
.ticker-bar:nth-child(4) { height: 8px; animation-delay: 0.3s; }
.ticker-bar:nth-child(5) { height: 4px; animation-delay: 0.4s; }
@keyframes barPulse {
  0%,100% { opacity: 0.3; } 50% { opacity: 1; }
}

/* ══════════════════════════════════════════
   KEYFRAMES (SHARED)
══════════════════════════════════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(50px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes slideLeft { from { opacity:0; transform:translateX(-60px); } to { opacity:1; transform:translateX(0); } }
@keyframes heroZoom { from { transform: scale(1.0); } to { transform: scale(1.12); } }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes blink { 0%,50%,100% { opacity:1; } 25%,75% { opacity:0; } }
@keyframes breathe { 0%,100% { opacity:0.6; } 50% { opacity:1; } }
@keyframes scrollDown { 0% { height:0; opacity:0; } 30% { opacity:1; } 100% { height:60px; opacity:0; } }
@keyframes lineScan { 0% { top:-5%; } 100% { top:105%; } }
@keyframes staticFlicker { 0%{opacity:.3}10%{opacity:.7}20%{opacity:.2}30%{opacity:.8}50%{opacity:.9}70%{opacity:.6}100%{opacity:.3} }

@keyframes signalRing {
  0% { transform: translate(-50%, -50%) scale(0.3); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

@keyframes rippleOut {
  0% { transform: scale(0); opacity: 0.5; }
  100% { transform: scale(4); opacity: 0; }
}

@keyframes glitchPage {
  0% { filter: none; } 5% { filter: hue-rotate(90deg) saturate(2); }
  10% { filter: none; } 15% { filter: invert(1); } 20% { filter: none; }
  25% { filter: hue-rotate(180deg); } 30% { filter: none; } 100% { filter: none; }
}

@keyframes waveformDash {
  0% { stroke-dashoffset: 300; }
  100% { stroke-dashoffset: 0; }
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 3rem; background: transparent;
  transition: all 0.5s var(--ease);
}
nav.nav--scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(42,122,140,0.08);
  padding: 0.8rem 3rem;
}

.nav-logo img {
  height: 26px;
  width: auto;
  opacity: 0.65;
  transition: all 0.4s var(--ease);
}
.nav-logo img:hover {
  opacity: 0.95;
  filter: drop-shadow(0 0 10px rgba(237,229,213,0.12));
}
nav.nav--scrolled .nav-logo img { opacity: 0.75; }

/* Signal strength bars in nav */
.nav-signal-strength {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: flex-end; gap: 3px; height: 16px;
}
.signal-bar {
  width: 3px; background: var(--teal); border-radius: 1px;
  animation: signalBarAnim 2s ease-in-out infinite;
}
.signal-bar--1 { height: 4px; animation-delay: 0s; }
.signal-bar--2 { height: 7px; animation-delay: 0.15s; }
.signal-bar--3 { height: 11px; animation-delay: 0.3s; }
.signal-bar--4 { height: 7px; animation-delay: 0.45s; }
.signal-bar--5 { height: 4px; animation-delay: 0.6s; }
@keyframes signalBarAnim {
  0%,100% { opacity: 0.25; transform: scaleY(0.5); } 50% { opacity: 1; transform: scaleY(1); }
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-mid);
  transition: all 0.3s; display: flex; align-items: center; gap: 0.5rem;
  position: relative;
}
.nav-index { font-size: 0.48rem; color: rgba(212,168,75,0.25); font-weight: 300; transition: color 0.3s; }
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover .nav-index { color: var(--gold); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--teal); transform: scaleX(0);
  transform-origin: left; transition: transform 0.4s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/poster1nologo.png');
  background-size: cover;
  background-position: center center;
  animation: heroZoom 30s ease-in-out infinite alternate;
  filter: brightness(0.55) contrast(1.2) saturate(0.9);
}
.hero-bg::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: rgba(42,122,140,0.15);
  box-shadow: 0 0 40px rgba(42,122,140,0.1);
  animation: lineScan 5s linear infinite;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5,5,5,0.3) 0%,
      rgba(5,5,5,0.2) 15%,
      rgba(5,5,5,0.4) 40%,
      rgba(5,5,5,0.85) 70%,
      rgba(5,5,5,1) 100%
    ),
    radial-gradient(ellipse at 15% 85%, rgba(42,122,140,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(196,98,14,0.06) 0%, transparent 40%);
}

/* Robot eyes — floating in the hero */
.hero-eyes {
  position: absolute;
  top: 8%; right: 5%;
  width: clamp(150px, 20vw, 300px);
  z-index: 3;
  opacity: 0;
  animation: eyesFadeIn 2s 1.8s var(--ease) forwards;
  pointer-events: none;
  filter: brightness(0.8);
  mix-blend-mode: screen;
}
.hero-eyes img { width: 100%; }
@keyframes eyesFadeIn {
  from { opacity: 0; transform: translateY(20px); filter: brightness(0) blur(4px); }
  to { opacity: 0.4; transform: translateY(0); filter: brightness(0.8) blur(0); }
}

/* HUD items */
.hero-hud { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.hud-item {
  position: absolute; font-family: var(--font-mono); font-size: 0.5rem;
  font-weight: 300; letter-spacing: 0.2em; color: rgba(42,122,140,0.15);
  opacity: 0; animation: fadeIn 1.5s 2.5s forwards;
}
.hud-item--1 { top: 18%; right: 8%; }
.hud-item--2 { top: 28%; right: 5%; }
.hud-item--3 { top: 38%; right: 10%; }
.hud-item--4 { top: 48%; right: 6%; width: 100px; height: 30px; }
.hud-waveform { width: 100%; height: 100%; }
.hud-wave-line {
  fill: none; stroke: var(--teal); stroke-width: 1.5;
  stroke-dasharray: 300; stroke-dashoffset: 300;
  animation: waveformDash 3s 3s linear infinite;
}

/* Signal rings on hero */
.hero-signal-rings {
  position: absolute; bottom: 35%; left: 50%;
  z-index: 1; pointer-events: none;
}
.hero-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; border: 1px solid rgba(42,122,140,0.06);
}
.hero-ring--1 { width: 200px; height: 200px; animation: signalRing 4s 1s ease-out infinite; }
.hero-ring--2 { width: 350px; height: 350px; animation: signalRing 4s 2s ease-out infinite; }
.hero-ring--3 { width: 500px; height: 500px; animation: signalRing 4s 3s ease-out infinite; }

.hero-content {
  position: relative; z-index: 4;
  padding: 0 4rem 5rem;
  max-width: 960px;
  width: 100%;
}

.hero-tag-line { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem; }
.hero-tag-dot {
  width: 8px; height: 8px; border: 1.5px solid var(--gold); border-radius: 50%;
  position: relative; animation: breathe 2.5s ease-in-out infinite;
}
.hero-tag-dot::after {
  content: ''; position: absolute; inset: 2px; border-radius: 50%;
  background: var(--gold); opacity: 0;
  animation: blink 3s infinite;
}

.hero-eyebrow {
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
  opacity: 0; animation: slideLeft 1s 0.3s var(--ease) forwards;
}

/* ── HERO TITLE — logo image with animations + Easter egg ── */
.hero-title {
  opacity: 0;
  animation: fadeUp 1.2s 0.5s var(--ease) forwards;
  margin-bottom: 1.8rem;
  cursor: pointer;
  position: relative;
}

.hero-logo-img {
  display: block;
  width: clamp(280px, 55vw, 700px);
  height: auto;
  filter: invert(1) brightness(1);
  transition: all 0.4s var(--ease);
}

/* Logo hover — subtle glow */
.hero-title:hover .hero-logo-img {
  filter: invert(1) brightness(1.1) drop-shadow(0 0 30px rgba(237,229,213,0.15));
}

/* Easter egg — single click glitch on logo */
.hero-title.title-glitch .hero-logo-img {
  animation: logoGlitch 0.4s steps(2);
}

/* Easter egg — triple click reveal */
.hero-title.title-reveal::after {
  content: '... ARE YOU THERE?';
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--teal-light);
  margin-top: 1.2rem;
  animation: titleRevealMsg 4s var(--ease) forwards;
}

@keyframes logoGlitch {
  0%   { transform: translateX(0); opacity: 1; filter: invert(1) brightness(1); }
  20%  { transform: translateX(-5px) skewX(-2deg); opacity: 0.7; filter: invert(1) brightness(1) hue-rotate(90deg); }
  40%  { transform: translateX(4px) skewX(1deg); opacity: 0.5; filter: invert(1) brightness(1.5) hue-rotate(180deg); }
  60%  { transform: translateX(-3px); opacity: 0.8; filter: invert(1) brightness(0.8) hue-rotate(270deg); }
  80%  { transform: translateX(2px) skewX(-1deg); opacity: 0.9; filter: invert(1) brightness(1.2); }
  100% { transform: translateX(0); opacity: 1; filter: invert(1) brightness(1); }
}

@keyframes titleRevealMsg {
  0% { opacity: 0; transform: translateY(10px); }
  15% { opacity: 1; transform: translateY(0); }
  85% { opacity: 1; }
  100% { opacity: 0; }
}

.hero-subtitle {
  font-family: var(--font-serif); font-style: italic; font-size: 1.3rem;
  color: rgba(237,229,213,0.55); margin-bottom: 2.8rem; letter-spacing: 0.12em;
  opacity: 0; animation: slideLeft 1s 0.9s var(--ease) forwards;
}

.hero-cta { display: flex; gap: 1.2rem; opacity: 0; animation: fadeUp 1s 1.2s var(--ease) forwards; }

.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  z-index: 5; opacity: 0; animation: fadeIn 1s 2s forwards;
}
.scroll-line { width: 1px; height: 0; background: var(--gold); animation: scrollDown 2s 2.5s ease-in-out infinite; }
.hero-scroll-indicator span { font-family: var(--font-mono); font-size: 0.42rem; letter-spacing: 0.3em; color: rgba(212,168,75,0.3); }

/* ── BUTTONS WITH RIPPLE ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1rem 2.2rem; border: 1px solid transparent;
  cursor: pointer; transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.btn-signal-icon { display: flex; align-items: center; }
.btn-signal-icon svg { width: 12px; height: 12px; }
.btn-ripple {
  position: absolute; top: 50%; left: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.3); transform: translate(-50%,-50%) scale(0);
  pointer-events: none;
}
.btn-ripple.btn-ripple--active { animation: rippleOut 0.7s ease-out; }

.btn-primary {
  background: var(--gold); color: var(--black); border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  box-shadow: 0 8px 30px rgba(212,168,75,0.25), 0 0 60px rgba(212,168,75,0.08);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(237,229,213,0.2); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-light); background: rgba(42,122,140,0.05); }
.btn-ghost:active { transform: scale(0.98); }

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.marquee-strip {
  overflow: hidden; border-top: 1px solid rgba(42,122,140,0.08);
  border-bottom: 1px solid rgba(42,122,140,0.08);
  padding: 0.8rem 0; background: var(--void);
}
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 25s linear infinite; }
.marquee-track span {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(42,122,140,0.12); white-space: nowrap;
}

/* ══════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════ */
section { padding: 8rem 5rem; position: relative; }
.section-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.section-index { font-family: var(--font-mono); font-size: 0.5rem; font-weight: 300; color: rgba(212,168,75,0.25); }
.section-label-group { display: flex; align-items: center; gap: 0.5rem; }
.section-label-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--teal);
  animation: blink 3s infinite; box-shadow: 0 0 6px rgba(42,122,140,0.4);
}
.section-label {
  font-family: var(--font-mono); font-size: 0.55rem; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
  margin: 0;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 4rem); font-weight: 700;
  letter-spacing: -0.01em; line-height: 1.1; color: var(--white); margin-bottom: 2.5rem;
}
.divider { width: 50px; height: 2px; background: rgba(42,122,140,0.2); margin: 2rem 0; position: relative; overflow: hidden; }
.divider-pulse {
  position: absolute; top: 0; left: -20px; width: 20px; height: 100%;
  background: var(--teal-light);
  animation: dividerSweep 2s ease-in-out infinite;
}
@keyframes dividerSweep { 0% { left: -20px; } 100% { left: 70px; } }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about { background: var(--deep); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-text p { font-size: 1.05rem; color: rgba(237,229,213,0.65); margin-bottom: 1.3rem; }
.about-text p strong { color: var(--cream); }

.about-quote {
  margin: 2.5rem 0; padding: 2rem 2.5rem; font-style: italic;
  font-size: 1.2rem; color: var(--gold); line-height: 1.65;
  background: rgba(42,122,140,0.03); border-left: 3px solid var(--teal);
  position: relative;
}
.quote-signal-bar {
  position: absolute; top: 0; left: -3px; width: 3px; height: 0;
  background: var(--gold);
  animation: quoteBarFill 3s ease-in-out infinite;
}
@keyframes quoteBarFill { 0% { height: 0; top: 0; } 50% { height: 100%; top: 0; } 100% { height: 0; top: 100%; } }

.about-images { position: relative; }
.about-image-stack { position: relative; height: 560px; }
.about-image-stack img { position: absolute; transition: all 0.6s var(--ease); }
.about-image-stack .img-main {
  width: 80%; top: 0; right: 0; z-index: 2;
  box-shadow: -20px 20px 80px rgba(0,0,0,0.8);
}
.about-image-stack .img-main:hover { transform: translate(-5px, -5px); box-shadow: -25px 25px 100px rgba(0,0,0,0.8), 0 0 60px rgba(196,98,14,0.08); }
.about-image-stack .img-accent {
  width: 55%; bottom: 0; left: 0; z-index: 3;
  box-shadow: 15px -15px 70px rgba(0,0,0,0.8); border: 2px solid rgba(155,31,114,0.12);
}
.about-image-stack .img-accent:hover { transform: translate(5px, -5px); border-color: rgba(155,31,114,0.3); }

/* Single about image (Peeps) */
.about-image-single {
  width: 100%;
  border: 1px solid rgba(42,122,140,0.1);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.about-image-single img {
  width: 100%;
  display: block;
  transition: all 0.6s var(--ease);
  filter: brightness(0.95);
}
.about-image-single:hover img {
  transform: scale(1.03);
  filter: brightness(1);
}

/* Quote attribution */
.quote-attribution {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════════
   ROBOT ROSTER STRIP
══════════════════════════════════════════ */
.roster-strip {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.2rem 5rem;
  background: var(--void);
  border-top: 1px solid rgba(42,122,140,0.06);
  border-bottom: 1px solid rgba(42,122,140,0.06);
}

.roster-strip-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.48rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: rgba(42,122,140,0.35);
  text-transform: uppercase;
  white-space: nowrap;
}

.roster-strip-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 3s infinite;
  box-shadow: 0 0 6px rgba(42,122,140,0.4);
}

.about-roster {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.roster-item {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--grey-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s;
  position: relative;
}

.roster-item:hover {
  border-color: rgba(42,122,140,0.15);
  background: rgba(42,122,140,0.03);
  color: var(--cream);
}

.roster-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: box-shadow 0.3s;
}
.roster-item:hover .roster-dot { box-shadow: 0 0 12px currentColor; }
.roster-dot--amber { background: var(--amber); color: var(--amber); box-shadow: 0 0 6px rgba(196,98,14,0.4); }
.roster-dot--teal { background: var(--teal-light); color: var(--teal-light); box-shadow: 0 0 6px rgba(42,122,140,0.4); }
.roster-dot--magenta { background: var(--magenta-light); color: var(--magenta-light); box-shadow: 0 0 6px rgba(155,31,114,0.4); }
.roster-dot--gold { background: var(--gold); color: var(--gold); box-shadow: 0 0 6px rgba(212,168,75,0.4); }
.roster-dot--white { background: var(--cream); color: var(--cream); box-shadow: 0 0 6px rgba(237,229,213,0.4); }

.roster-name { white-space: nowrap; }

/* Secret tooltip — pops ABOVE the item */
.roster-secret {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  font-size: 0.48rem;
  font-weight: 300;
  color: var(--teal-light);
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 0.4rem 0.8rem;
  background: rgba(10,8,6,0.95);
  border: 1px solid rgba(42,122,140,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease);
  z-index: 10;
}

/* Little arrow pointing down from tooltip */
.roster-secret::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(42,122,140,0.2);
}

.roster-secret.roster-secret--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ══════════════════════════════════════════
   WAVEFORM DIVIDER
══════════════════════════════════════════ */
.waveform-divider {
  background: var(--black); padding: 0; height: 40px; display: flex; align-items: center;
  border-top: 1px solid rgba(42,122,140,0.06); border-bottom: 1px solid rgba(42,122,140,0.06);
}
.waveform-divider svg { width: 100%; height: 100%; }
.waveform-path {
  fill: none; stroke: var(--teal); stroke-width: 1; opacity: 0.15;
  stroke-dasharray: 2000; stroke-dashoffset: 2000;
  animation: waveformDash 8s linear infinite;
}

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
.gallery { background: var(--black); overflow: hidden; }
.gallery-intro { max-width: 550px; color: rgba(237,229,213,0.5); font-size: 1.05rem; margin-bottom: 4rem; }
.posters-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.poster-card { cursor: pointer; position: relative; }
.poster-card-inner { position: relative; overflow: hidden; }
.poster-card img {
  width: 100%; aspect-ratio: 2/3; object-fit: cover;
  transition: all 0.8s var(--ease); filter: grayscale(0.3) brightness(0.85);
}
.poster-card:hover img { transform: scale(1.05); filter: grayscale(0) brightness(1); }

.poster-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.4) 35%, transparent 65%);
  opacity: 0; transition: opacity 0.5s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; gap: 0.5rem;
}
.poster-card:hover .poster-card-overlay { opacity: 1; }
.poster-card-number { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.06); line-height: 1; }
.poster-card-label { font-family: var(--font-mono); font-size: 0.58rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); }
.poster-card-action {
  font-family: var(--font-mono); font-size: 0.48rem; font-weight: 300;
  letter-spacing: 0.2em; color: var(--teal-light); text-transform: uppercase;
  display: flex; align-items: center; gap: 0.3rem;
}

.poster-accent-bar { height: 3px; width: 0; transition: width 0.6s var(--ease); margin-top: 2px; }
.poster-card:hover .poster-accent-bar { width: 100%; }
.poster-card--magenta .poster-accent-bar { background: linear-gradient(90deg, var(--magenta), var(--magenta-light)); }
.poster-card--amber .poster-accent-bar { background: linear-gradient(90deg, var(--amber), var(--gold)); }
.poster-card--teal .poster-accent-bar { background: linear-gradient(90deg, var(--teal), var(--teal-light)); }

/* ══════════════════════════════════════════
   CHAPTERS
══════════════════════════════════════════ */
.chapters { background: var(--charcoal); position: relative; overflow: hidden; }
.chapters-list { display: flex; flex-direction: column; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.04); }
.chapter-item {
  display: grid; grid-template-columns: 70px 1fr 180px auto;
  align-items: center; gap: 2rem; padding: 1.8rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.4s var(--ease); cursor: default;
}
.chapter-item:hover { background: rgba(42,122,140,0.02); padding-left: 2rem; }
.chapter-num { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: rgba(212,168,75,0.15); transition: color 0.4s; }
.chapter-item:hover .chapter-num { color: var(--teal-light); text-shadow: 0 0 20px rgba(42,122,140,0.3); }
.chapter-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--white); letter-spacing: 0.03em; }
.chapter-tagline { font-family: var(--font-serif); font-style: italic; font-size: 0.9rem; color: var(--grey); }
.chapter-color { width: 100%; height: 2px; }
.chapter-color.amber { background: linear-gradient(90deg, var(--amber), var(--gold-bright)); }
.chapter-color.teal { background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.chapter-color.magenta { background: linear-gradient(90deg, var(--magenta), var(--magenta-light)); }
.chapter-tag {
  font-family: var(--font-mono); font-size: 0.5rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey);
  border: 1px solid rgba(255,255,255,0.06); padding: 0.3rem 0.8rem; transition: all 0.4s;
}
.chapter-item:hover .chapter-tag { border-color: rgba(42,122,140,0.2); color: var(--teal-light); }

/* ══════════════════════════════════════════
   SCRIPT TRANSMISSION
══════════════════════════════════════════ */
.script-section { background: var(--black); padding: 5rem; display: flex; flex-direction: column; align-items: center; }
.script-container {
  max-width: 700px; width: 100%;
  border: 1px solid rgba(42,122,140,0.12); background: rgba(10,8,6,0.9);
  position: relative; overflow: hidden;
}
.script-container::before { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 80px rgba(42,122,140,0.04); pointer-events: none; }
.script-container::after {
  content: ''; position: absolute; top: -100%; left: 0; right: 0; height: 100%;
  background: linear-gradient(180deg, rgba(42,122,140,0.03) 0%, transparent 100%);
  animation: scriptScanDown 3s linear infinite; pointer-events: none;
}
@keyframes scriptScanDown { 0% { top: -100%; } 100% { top: 100%; } }

.script-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.5rem; border-bottom: 1px solid rgba(42,122,140,0.1);
}
.script-header-left { display: flex; align-items: center; gap: 0.7rem; }
.script-header-left span {
  font-family: var(--font-mono); font-size: 0.48rem; font-weight: 400;
  letter-spacing: 0.2em; color: rgba(42,122,140,0.5); text-transform: uppercase;
}
.script-rec-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
  animation: blink 1.5s infinite; box-shadow: 0 0 6px rgba(224,48,48,0.5);
}
.script-waveform { width: 80px; height: 20px; }
.script-wave-line {
  fill: none; stroke: var(--teal); stroke-width: 1.5; opacity: 0.4;
  stroke-dasharray: 200; stroke-dashoffset: 200;
  animation: waveformDash 2s linear infinite;
}

.script-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; position: relative; z-index: 1; }
.script-line {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 300;
  line-height: 1.7; color: rgba(237,229,213,0.5);
  padding: 0.4rem 0.5rem; border-left: 2px solid transparent;
  transition: all 0.3s;
}
.script-line:hover { background: rgba(42,122,140,0.03); border-left-color: rgba(42,122,140,0.2); color: rgba(237,229,213,0.8); }
.script-char { font-weight: 500; margin-right: 0.3rem; }
.script-char--amber { color: var(--amber); }
.script-char--teal { color: var(--teal-light); }
.script-char--magenta { color: var(--magenta-light); }
.script-char--gold { color: var(--gold); }
.script-char--white { color: var(--cream); }

.script-line--stage {
  font-style: italic;
  color: rgba(42,122,140,0.3);
  border-left-color: transparent !important;
  padding-left: 1.5rem;
}

.script-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.8rem 1.5rem; border-top: 1px solid rgba(42,122,140,0.1);
}
.script-footer-left { display: flex; align-items: center; gap: 0.5rem; }
.script-footer-left span, .script-footer > .script-static {
  font-family: var(--font-mono); font-size: 0.46rem; font-weight: 300;
  letter-spacing: 0.15em; color: rgba(42,122,140,0.3); text-transform: uppercase;
}
.script-signal-icon { animation: breathe 2s infinite; }
.script-static { animation: staticFlicker 1s steps(5) infinite; }

/* Hidden Easter egg message */
.hidden-message {
  margin-top: 1.5rem; opacity: 0; transform: translateY(10px);
  transition: all 0.5s var(--ease); pointer-events: none;
}
.hidden-message span {
  font-family: var(--font-mono); font-size: 0.55rem; font-weight: 300;
  letter-spacing: 0.3em; color: var(--teal-light);
  animation: breathe 1.5s ease-in-out infinite;
}
.hidden-message.hidden-message--visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   VIDEO
══════════════════════════════════════════ */
.video-section { background: var(--void); text-align: center; padding: 8rem 5rem; position: relative; }
.video-frame { max-width: 960px; margin: 3rem auto 0; position: relative; }
.video-frame-corner { position: absolute; width: 20px; height: 20px; z-index: 5; pointer-events: none; }
.video-frame-corner--tl { top: -6px; left: -6px; border-top: 2px solid var(--teal); border-left: 2px solid var(--teal); }
.video-frame-corner--tr { top: -6px; right: -6px; border-top: 2px solid var(--teal); border-right: 2px solid var(--teal); }
.video-frame-corner--bl { bottom: -6px; left: -6px; border-bottom: 2px solid var(--teal); border-left: 2px solid var(--teal); }
.video-frame-corner--br { bottom: -6px; right: -6px; border-bottom: 2px solid var(--teal); border-right: 2px solid var(--teal); }

.video-wrapper { position: relative; width: 100%; aspect-ratio: 16/9; background: var(--black); border: 1px solid rgba(42,122,140,0.1); overflow: hidden; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-label {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 1rem; font-family: var(--font-mono); font-size: 0.48rem;
  font-weight: 300; letter-spacing: 0.3em; color: rgba(42,122,140,0.3); text-transform: uppercase;
}
.video-label-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); animation: blink 2s infinite; }
video { width: 100%; display: block; }

/* ══════════════════════════════════════════
   TEAM
══════════════════════════════════════════ */
.team { background: var(--deep); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.team-card {
  padding: 2.5rem 2rem; border: 1px solid rgba(255,255,255,0.03);
  position: relative; transition: all 0.5s var(--ease); overflow: hidden; background: rgba(255,255,255,0.008);
}
.team-card-accent { position: absolute; top: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--teal), var(--teal-light)); transition: width 0.6s var(--ease); }
.team-card:hover .team-card-accent { width: 100%; }
.team-card-signal {
  position: absolute; top: 0.8rem; right: 1rem; width: 40px; height: 16px; opacity: 0;
  transition: opacity 0.4s;
}
.team-card:hover .team-card-signal { opacity: 0.3; }
.team-wave { fill: none; stroke: var(--teal-light); stroke-width: 1.5; stroke-dasharray: 100; stroke-dashoffset: 100; }
.team-card:hover .team-wave { animation: waveformDash 2s linear infinite; }
.team-card:hover { border-color: rgba(42,122,140,0.12); transform: translateY(-6px); box-shadow: 0 25px 60px rgba(0,0,0,0.4); }
.team-role { font-family: var(--font-mono); font-size: 0.5rem; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 0.7rem; }
.team-name { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 0.8rem; }
.team-bio { font-size: 0.92rem; color: rgba(237,229,213,0.4); line-height: 1.7; }

/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
.reviews { background: linear-gradient(160deg, var(--rust) 0%, var(--rust-light) 30%, var(--rust) 100%); padding: 8rem 5rem; position: relative; overflow: hidden; }
.reviews-bg-text { position: absolute; top: -2rem; right: -1rem; font-family: var(--font-display); font-size: 14rem; font-weight: 800; color: rgba(255,255,255,0.015); pointer-events: none; user-select: none; line-height: 1; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.review-card {
  padding: 2.5rem; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.04);
  position: relative; transition: all 0.4s var(--ease); overflow: hidden;
}
.review-signal-line {
  position: absolute; top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42,122,140,0.15), transparent);
  transform: translateX(-100%); transition: transform 0.8s var(--ease);
}
.review-card:hover .review-signal-line { transform: translateX(0); }
.review-card:hover { background: rgba(0,0,0,0.35); transform: translateY(-3px); border-color: rgba(42,122,140,0.12); }
.review-text { font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 1.2rem; }
.review-source { font-family: var(--font-mono); font-size: 0.5rem; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════
   WATCH / CTA
══════════════════════════════════════════ */
.watch { background: var(--black); text-align: center; padding: 10rem 5rem; position: relative; overflow: hidden; }
.watch-radial { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 500px; height: 500px; background: radial-gradient(circle, rgba(42,122,140,0.04) 0%, transparent 65%); pointer-events: none; }
.watch-signal-rings { position: absolute; top: 50%; left: 50%; pointer-events: none; }
.watch-ring { position: absolute; top: 50%; left: 50%; border-radius: 50%; border: 1px solid rgba(42,122,140,0.06); }
.watch-ring--1 { width: 300px; height: 300px; animation: signalRing 5s ease-out infinite; }
.watch-ring--2 { width: 500px; height: 500px; animation: signalRing 5s 1.5s ease-out infinite; }

.watch .section-title { margin-bottom: 1rem; }
.watch > p { max-width: 500px; margin: 0 auto 3rem; color: rgba(237,229,213,0.45); font-size: 1.05rem; }
.watch-buttons { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer { background: var(--deep); border-top: 1px solid rgba(42,122,140,0.05); padding: 3rem 5rem; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.03); }
.footer-logo img { height: 22px; width: auto; opacity: 0.3; transition: all 0.4s; }
.footer-logo img:hover { opacity: 0.6; filter: drop-shadow(0 0 8px rgba(237,229,213,0.1)); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-family: var(--font-mono); font-size: 0.5rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); transition: color 0.3s; }
.footer-links a:hover { color: var(--teal-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; }
.footer-text { font-family: var(--font-mono); font-size: 0.48rem; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey); }
.footer-signal { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.46rem; font-weight: 300; letter-spacing: 0.25em; color: rgba(42,122,140,0.3); text-transform: uppercase; }
.footer-signal-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(42,122,140,0.4); animation: blink 3s infinite; }

/* Footer Easter egg */
.footer-easter-egg {
  text-align: center; margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.02); cursor: pointer;
}
.footer-easter-egg span {
  font-family: var(--font-mono); font-size: 0.45rem; font-weight: 300;
  letter-spacing: 0.3em; color: rgba(42,122,140,0.15); text-transform: uppercase;
  transition: color 0.3s;
}
.footer-easter-egg:hover span { color: var(--red); }

/* ══════════════════════════════════════════
   END TRANSMISSION OVERLAY (Easter Egg)
══════════════════════════════════════════ */
.end-transmission {
  position: fixed; inset: 0; z-index: 99998; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.5s;
}
.end-transmission.end--active { opacity: 1; visibility: visible; }
.end-content { text-align: center; }
.end-static {
  font-family: var(--font-mono); font-size: 4rem; font-weight: 500;
  letter-spacing: 0.3em; color: var(--red); animation: staticFlicker 0.5s steps(3) infinite;
  margin-bottom: 1rem;
}
.end-message { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.4em; color: rgba(42,122,140,0.4); margin-bottom: 3rem; }
.end-restart {
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.25em;
  color: var(--teal-light); cursor: pointer; padding: 0.8rem 2rem;
  border: 1px solid rgba(42,122,140,0.3); transition: all 0.3s;
}
.end-restart:hover { background: rgba(42,122,140,0.1); border-color: var(--teal-light); }

/* ══════════════════════════════════════════
   GLITCH MODE (Triple-click logo Easter Egg)
══════════════════════════════════════════ */
.glitch-mode { animation: glitchPage 0.5s steps(2) infinite; }
.glitch-mode .hero-title-line--1 { animation: glitchPage 0.3s steps(3) infinite; }
.glitch-mode .hero-title-line--2 { animation: glitchPage 0.2s steps(4) infinite reverse; }

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

/* ══════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════ */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(5,5,5,0.97); align-items: center; justify-content: center;
  cursor: zoom-out; backdrop-filter: blur(30px);
}
.lightbox.open { display: flex; }
.lightbox-signal-frame { position: relative; }
.lightbox-signal-frame::before,
.lightbox-signal-frame::after {
  content: ''; position: absolute; width: 25px; height: 25px; z-index: 2;
}
.lightbox-signal-frame::before { top: -8px; left: -8px; border-top: 2px solid var(--teal); border-left: 2px solid var(--teal); }
.lightbox-signal-frame::after { bottom: -8px; right: -8px; border-bottom: 2px solid var(--teal); border-right: 2px solid var(--teal); }

.lightbox img { max-height: 90vh; max-width: 90vw; box-shadow: 0 0 100px rgba(0,0,0,0.9); animation: fadeUp 0.4s var(--ease); }
.lightbox-close {
  position: absolute; top: 2rem; right: 3rem;
  font-family: var(--font-mono); font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--grey);
  cursor: pointer; transition: color 0.3s; padding: 0.5rem 1rem;
  border: 1px solid rgba(42,122,140,0.1);
}
.lightbox-close:hover { color: var(--teal-light); border-color: rgba(42,122,140,0.3); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  section { padding: 6rem 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-stack { height: 420px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .chapter-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  .chapter-color, .chapter-tag { display: none; }
  .script-section { padding: 4rem 3rem; }
  .side-ticker { display: none; }
  .nav-signal-strength { display: none; }
}

@media (max-width: 768px) {
  section { padding: 5rem 1.5rem; }
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.55rem; }
  .nav-index { display: none; }
  .hero-content { padding: 0 1.5rem 4rem; }
  .hero-logo-img { width: clamp(220px, 70vw, 400px); }
  .posters-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .reviews { padding: 5rem 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr; }
  footer { padding: 2rem 1.5rem; }
  .footer-top, .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
  .footer-links { justify-content: center; }
  .watch { padding: 6rem 1.5rem; }
  .about-image-stack { height: 320px; }
  .script-section { padding: 3rem 1.5rem; }
  .marquee-strip { display: none; }
  .hero-hud { display: none; }
  .hero-scroll-indicator { display: none; }
  .hero-signal-rings { display: none; }
  .video-section { padding: 5rem 1.5rem; }
  .video-frame-corner { display: none; }
  .reviews-bg-text { font-size: 6rem; }
  .waveform-divider { display: none; }
  .radio-wave-bg { display: none; }
  .roster-strip { padding: 1rem 1.5rem; gap: 1.5rem; }
  .roster-strip-label { font-size: 0.42rem; }
}

@media (max-width: 480px) {
  .nav-links { gap: 0.5rem; }
  .nav-links a { font-size: 0.48rem; letter-spacing: 0.08em; }
  .btn { padding: 0.8rem 1.5rem; font-size: 0.55rem; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2.5rem); }
  .review-card { padding: 1.8rem; }
  .team-card { padding: 2rem 1.5rem; }
  .reviews-bg-text { display: none; }
  .about-roster { gap: 0.5rem; }
  .roster-item { font-size: 0.48rem; padding: 0.3rem 0.6rem; }
  .roster-strip { padding: 1rem 1.5rem; gap: 1rem; flex-wrap: wrap; }
  .roster-strip-label { display: none; }
}
