/* ================================================================
   SIGNAL STUDIO — Premium Podcast Website
   Dark cinematic blue / milky drape / neon TV aesthetic
   ================================================================ */

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* === VARIABLES === */
:root {
  --bg-0:        #04060f;   /* deepest black-blue */
  --bg-1:        #080c1a;
  --bg-2:        #0c1124;
  --bg-card:     #0e1428;
  --bg-card-h:   #131b35;

  --neon:        #38bdf8;   /* sky blue neon */
  --neon-bright: #7dd3fc;
  --neon-dim:    rgba(56, 189, 248, 0.18);
  --neon-glow:   rgba(56, 189, 248, 0.12);
  --neon-deep:   #0ea5e9;

  --milky:       #edf2ff;   /* white with blue tint — like the drape */
  --milky-dim:   rgba(237, 242, 255, 0.65);
  --milky-ghost: rgba(237, 242, 255, 0.06);

  --text-1:      #dce8ff;
  --text-2:      #7d96c4;
  --text-3:      #3d5070;

  --border:      rgba(56, 189, 248, 0.1);
  --border-h:    rgba(56, 189, 248, 0.35);

  --font-disp:   'Bebas Neue', 'Impact', sans-serif;
  --font-body:   'Space Grotesk', 'Inter', system-ui, sans-serif;

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1.0);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  background: var(--bg-0);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
button { border: none; background: none; cursor: none; }

/* === GRAIN OVERLAY === */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
}

/* === CUSTOM CURSOR === */
.cursor-dot {
  position: fixed;
  width: 7px;
  height: 7px;
  background: var(--neon);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  box-shadow: 0 0 12px var(--neon), 0 0 24px rgba(56,189,248,0.4);
  will-change: left, top;
}

.cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(56, 189, 248, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.35s, opacity 0.3s;
  will-change: left, top;
}

.cursor-ring.hovered {
  width: 62px;
  height: 62px;
  border-color: var(--neon);
}

/* === LAYOUT === */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* === TYPOGRAPHY === */
.section-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--neon);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-disp);
  font-size: clamp(52px, 7.5vw, 100px);
  line-height: 0.93;
  letter-spacing: 0.02em;
  color: var(--milky);
}

.accent-neon {
  color: var(--neon);
  text-shadow: 0 0 50px rgba(56, 189, 248, 0.45);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.btn:hover::before { transform: scaleX(1); }

.btn-primary {
  background: var(--neon);
  color: var(--bg-0);
  box-shadow: 0 0 28px rgba(56,189,248,0.28);
}
.btn-primary:hover {
  background: var(--neon-bright);
  box-shadow: 0 0 48px rgba(56,189,248,0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 0 0 22px var(--neon-glow);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 11px; }
.btn-full { width: 100%; justify-content: center; }

/* === SCROLL ANIMATIONS === */

/* Word-by-word title reveal */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.22em;
  line-height: 1.05;
}
.word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              opacity   0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.word.word-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Section label slide + line grow */
.sa-label {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s,
              transform 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s;
}
.sa-label::before {
  width: 0 !important;
  transition: width 0.6s cubic-bezier(0.16,1,0.3,1) 0.35s !important;
}
.sa-label.sa-in {
  opacity: 1;
  transform: translateX(0);
}
.sa-label.sa-in::before {
  width: 28px !important;
}

/* Section divider sweep line — appears at top of each section on enter */
.episode-section,
.host-section,
.capabilities-section,
.clips-section,
.innovators-section,
.gallery-section,
.contact-section {
  position: relative;
}
.episode-section::before,
.host-section::before,
.capabilities-section::before,
.clips-section::before,
.innovators-section::before,
.gallery-section::before,
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, var(--neon), rgba(56,189,248,0.2), transparent);
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
  z-index: 5;
}
.section-line-visible::before {
  width: 100%;
}

/* Keep legacy [data-reveal] inert (JS now handles everything) */
[data-reveal] { opacity: 1; transform: none; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 800;
  padding: 26px 0;
  transition: padding 0.4s var(--ease), background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  padding: 16px 0;
  background: rgba(4, 6, 15, 0.9);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-color: var(--border);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.logo-mark {
  font-family: var(--font-disp);
  font-size: 30px;
  letter-spacing: 0.07em;
  color: var(--milky);
}
.logo-dot { color: var(--neon); }
.logo-sub {
  font-size: 8.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--text-3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}
.nav-link {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon);
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--milky); }
.nav-link:hover::after { width: 100%; }

.nav-book {
  padding: 9px 22px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--neon) !important;
  transition: all 0.3s !important;
}
.nav-book:hover {
  background: var(--neon-glow);
  border-color: var(--neon);
  box-shadow: 0 0 18px var(--neon-glow);
}
.nav-book::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--milky);
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100dvh;
  background: var(--bg-1);
  border-left: 1px solid var(--border);
  z-index: 799;
  padding: 100px 40px 48px;
  transition: right 0.45s var(--ease);
}
.mobile-drawer.open { right: 0; }
.mobile-drawer ul { list-style: none; }
.mobile-drawer ul li { margin-bottom: 36px; }
.mobile-drawer ul li a {
  font-family: var(--font-disp);
  font-size: 36px;
  letter-spacing: 0.04em;
  color: var(--text-2);
  transition: color 0.3s;
}
.mobile-drawer ul li a:hover { color: var(--neon); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 15, 0.7);
  backdrop-filter: blur(4px);
  z-index: 798;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.drawer-overlay.show { opacity: 1; pointer-events: all; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Cinematic fade-in from left + bottom */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg-0) 0%, transparent 55%),
    linear-gradient(to top,   var(--bg-0) 0%, transparent 38%);
  pointer-events: none;
  z-index: 6;
}

/* --- Hero Background Layer --- */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Perspective grid */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 90% at 60% 40%, black 10%, transparent 75%);
}

/* Neon orbs — blurred glows like studio lighting bleed */
.neon-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.orb-a {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(14,165,233,0.14) 0%, transparent 65%);
  top: -160px;
  right: -80px;
  animation: orbDrift 12s ease-in-out infinite;
}
.orb-b {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(56,189,248,0.09) 0%, transparent 65%);
  bottom: -60px;
  left: 15%;
  animation: orbDrift 16s ease-in-out infinite reverse;
}

/* Neon TV-style frames */
.neon-frame {
  position: absolute;
  border: 1px solid var(--neon);
  box-shadow: 0 0 20px rgba(56,189,248,0.08), inset 0 0 20px rgba(56,189,248,0.04);
}
.frame-a {
  width: 320px;
  height: 210px;
  top: 14%;
  right: 7%;
  opacity: 0.2;
  animation: neonBreath 5s ease-in-out infinite;
}
.frame-b {
  width: 100px;
  height: 100px;
  top: 58%;
  right: 22%;
  opacity: 0.18;
  transform: rotate(12deg);
  animation: neonBreath 7s ease-in-out infinite 1s;
}

/* Neon circle */
.neon-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid var(--neon);
  top: 38%;
  right: 12%;
  opacity: 0.15;
  box-shadow: 0 0 30px rgba(56,189,248,0.1);
  animation: neonBreath 9s ease-in-out infinite 0.5s;
}

/* Horizontal scan-line */
.neon-line {
  position: absolute;
  height: 1px;
  width: 500px;
  top: 72%;
  left: 4%;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0.3;
  animation: scanDrift 10s ease-in-out infinite;
}

/* HUD corner brackets */
.hud-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 7;
}
.hud-tl { top: 100px; left: 40px; border-top: 1px solid var(--neon); border-left: 1px solid var(--neon); }
.hud-tr { top: 100px; right: 40px; border-top: 1px solid var(--neon); border-right: 1px solid var(--neon); }
.hud-br { bottom: 80px; right: 40px; border-bottom: 1px solid var(--neon); border-right: 1px solid var(--neon); }

/* Milky drape shimmer — right side */
.milky-drape {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background:
    linear-gradient(to left, rgba(237,242,255,0.04) 0%, transparent 100%),
    repeating-linear-gradient(
      168deg,
      transparent 0px,
      transparent 12px,
      rgba(237,242,255,0.012) 12px,
      rgba(237,242,255,0.012) 13px
    );
  pointer-events: none;
}

/* Particles canvas */
.particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

/* Spotlight that follows cursor */
.cursor-spotlight {
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.045) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  will-change: left, top;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 90px;
  display: flex;
  align-items: center;
  gap: 64px;
}

.hero-text {
  flex: 0 0 52%;
  max-width: 52%;
}

/* ---- Hero Visual (right column) ---- */
.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main photo frame */
.hv-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3/4;
  border: 1px solid rgba(56,189,248,0.25);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow:
    0 0 60px rgba(56,189,248,0.08),
    inset 0 0 60px rgba(56,189,248,0.04);
}

/* Camera feeds — Ken Burns slow zoom on active feed */
.hv-feeds {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hv-feed {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  overflow: hidden;
}
.hv-feed.active { opacity: 1; }

/* Grid overlay — sits on top of any image (real photo or placeholder) */
.hv-feed::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M 80 0 L 0 0 0 80' fill='none' stroke='%2338bdf8' stroke-width='0.4' opacity='0.18'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.hv-feed-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: auto;
}
.hv-feed.active .hv-feed-img {
  animation: hvKenBurns 9s ease-in-out forwards;
}
@keyframes hvKenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.18); }
}

/* Real photo — absolute fill (excludes feed images which have their own rules) */
.hv-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Broadcast overlay */
.hv-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.hv-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(to bottom, rgba(4,6,15,0.7) 0%, transparent 100%);
}

.hv-onair {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--neon-bright);
}

/* REC dot */
.hv-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 8px #ff3b30;
  animation: dotBlink 1.4s ease-in-out infinite;
}

@keyframes dotBlink {
  0%,100% { opacity: 1; box-shadow: 0 0 8px #ff3b30; }
  50%      { opacity: 0.25; box-shadow: none; }
}

/* Top bar items */
.hv-rec {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #ff3b30;
}

.hv-timecode {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(237,242,255,0.7);
}

.hv-res {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--neon);
  border: 1px solid rgba(56,189,248,0.35);
  padding: 2px 7px;
}

/* Rule-of-thirds viewfinder */
.hv-viewfinder {
  position: absolute;
  inset: 36px 0 36px 0;
  pointer-events: none;
}

.vf-grid {
  position: absolute;
  inset: 0;
}

.vf-col {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(56,189,248,0.12);
}
.vf-col:nth-child(1) { left: 33.33%; }
.vf-col:nth-child(2) { left: 66.66%; }

.vf-row {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(56,189,248,0.12);
}
.vf-row:nth-child(3) { top: 33.33%; }
.vf-row:nth-child(4) { top: 66.66%; }

/* Center crosshair */
.vf-cross {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 24px; height: 24px;
}
.vf-cross-h {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: rgba(56,189,248,0.4);
  transform: translateY(-50%);
}
.vf-cross-v {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: rgba(56,189,248,0.4);
  transform: translateX(-50%);
}

/* Bottom bar */
.hv-bottom-bar {
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(4,6,15,0.85) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Camera feed indicators */
.hv-cams {
  display: flex;
  gap: 6px;
}
.hv-cam {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 3px 8px;
  border: 1px solid rgba(56,189,248,0.2);
  color: var(--text-3);
  transition: all 0.3s;
}
.hv-cam.active {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 0 0 10px rgba(56,189,248,0.25);
}

.hv-label {
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237,242,255,0.35);
}

/* Corner brackets on frame */
.hv-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 3;
}
.hv-tl { top: 0;    left: 0;    border-top: 2px solid var(--neon); border-left: 2px solid var(--neon); }
.hv-tr { top: 0;    right: 0;   border-top: 2px solid var(--neon); border-right: 2px solid var(--neon); }
.hv-bl { bottom: 0; left: 0;    border-bottom: 2px solid var(--neon); border-left: 2px solid var(--neon); }
.hv-br { bottom: 0; right: 0;   border-bottom: 2px solid var(--neon); border-right: 2px solid var(--neon); }

/* Floating stat chips */
.hv-chip {
  position: absolute;
  background: rgba(8,12,26,0.88);
  border: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s;
  animation: chipFloat 4s ease-in-out infinite;
}
.hv-chip:hover {
  border-color: var(--neon);
  box-shadow: 0 0 20px var(--neon-glow);
}
.hv-chip-1 { left: -40px;  top: 18%;  animation-delay: 0s;   }
.hv-chip-2 { right: -40px; top: 44%;  animation-delay: 1.3s; }
.hv-chip-3 { left: -40px;  bottom: 18%; animation-delay: 2.6s; }

.hv-chip-num {
  font-family: var(--font-disp);
  font-size: 22px;
  color: var(--neon);
  line-height: 1;
  letter-spacing: 0.04em;
}
.hv-chip-lbl {
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}

@keyframes chipFloat {
  0%,100% { transform: translateY(0);    }
  50%     { transform: translateY(-6px); }
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--neon);
}

.hero-heading {
  font-family: var(--font-disp);
  font-size: clamp(78px, 13vw, 170px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin-bottom: 34px;
  display: flex;
  flex-direction: column;
}
.hline {
  display: block;
  overflow: hidden;
}
.hline > span,
.hline {
  animation: slideIn 1s var(--ease-out) both;
}
.hline-1 { color: var(--milky);   animation-delay: 0.35s; }
.hline-2 {
  color: var(--neon);
  text-shadow: 0 0 70px rgba(56,189,248,0.45);
  animation-delay: 0.48s;
}
.hline-3 { color: var(--milky);   animation-delay: 0.61s; }

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-2);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 52px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
  pointer-events: none;
}
.scroll-cue-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--neon));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.scroll-cue span {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* Keyframes */
@keyframes slideIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn  { to { opacity: 1; } }
@keyframes scrollPulse {
  0%,100% { opacity: 0.35; transform: scaleY(1); }
  50%     { opacity: 1;    transform: scaleY(1.12); }
}
@keyframes orbDrift {
  0%,100% { transform: translate(0, 0); }
  33%     { transform: translate(28px, -18px); }
  66%     { transform: translate(-16px, 26px); }
}
@keyframes neonBreath {
  0%,100% { opacity: 0.12; }
  50%     { opacity: 0.38; }
}
@keyframes scanDrift {
  0%,100% { opacity: 0.25; transform: translateY(0); }
  50%     { opacity: 0.5;  transform: translateY(-30px); }
}

/* ================================================================
   FEATURED EPISODE
   ================================================================ */
.episode-section {
  padding: 120px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.episode-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 52px;
}

/* Thumbnail */
.ep-thumb-wrap { position: relative; }
.ep-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 2px;
}
.ep-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  background: repeating-linear-gradient(
    45deg, transparent, transparent 18px,
    rgba(56,189,248,0.018) 18px, rgba(56,189,248,0.018) 36px
  );
}
.ep-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease);
}
.ep-thumb:hover img { transform: scale(1.04); }

.ep-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 15, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 2;
}
.ep-thumb:hover .ep-overlay { opacity: 1; }

.play-btn {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(56,189,248,0.5);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.play-btn svg { width: 28px; height: 28px; color: var(--bg-0); margin-left: 3px; }
.play-btn:hover { transform: scale(1.12); box-shadow: 0 0 60px rgba(56,189,248,0.7); }

.ep-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--neon);
  color: var(--bg-0);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 4px 12px;
  z-index: 3;
}

/* Episode info */
.ep-meta {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 14px;
}
.ep-title {
  font-family: var(--font-disp);
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.0;
  color: var(--milky);
  margin-bottom: 20px;
}
.ep-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 28px;
}
.ep-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.tag {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  color: var(--text-2);
  border-radius: 1px;
  transition: all 0.3s;
}
.tag:hover { border-color: var(--neon); color: var(--neon); }

/* ================================================================
   HOST SECTION
   ================================================================ */
.host-section { padding: 120px 0; }
.host-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.host-visual { position: relative; }
.host-photo-wrap { position: relative; margin-bottom: 40px; }

.host-photo {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}
.host-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.host-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  background: repeating-linear-gradient(
    45deg, transparent, transparent 18px,
    rgba(56,189,248,0.018) 18px, rgba(56,189,248,0.018) 36px
  );
}

/* Decorative frame shifted */
.host-frame {
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--border);
  z-index: -1;
}

.host-glow {
  position: absolute;
  bottom: -32px;
  left: 10%;
  right: 10%;
  height: 80px;
  background: var(--neon);
  filter: blur(70px);
  opacity: 0.15;
}

.host-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.stat-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.stat-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--neon);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.stat-block:hover { border-color: var(--border-h); }
.stat-block:hover::after { transform: scaleX(1); }

.stat-num {
  font-family: var(--font-disp);
  font-size: 44px;
  color: var(--neon);
  line-height: 1;
  display: block;
}
.stat-suf {
  font-family: var(--font-disp);
  font-size: 22px;
  color: var(--neon);
}
.stat-word {
  font-family: var(--font-disp);
  font-size: 38px;
  color: var(--neon);
  line-height: 1;
  display: block;
  letter-spacing: 0.06em;
  text-shadow: 0 0 30px rgba(56,189,248,0.35);
}
.stat-lbl {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 6px;
}

/* Host text */
.host-content .section-title { margin-bottom: 30px; }
.host-bio {
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 18px;
}
.host-socials {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.social-link {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  position: relative;
  transition: color 0.3s;
}
.social-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon);
  transition: width 0.3s var(--ease);
}
.social-link:hover { color: var(--neon); }
.social-link:hover::after { width: 100%; }

/* ================================================================
   CAPABILITIES
   ================================================================ */
.capabilities-section {
  padding: 120px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.caps-header { margin-bottom: 72px; }

.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.cap-card {
  background: var(--bg-card);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s, transform 0.35s var(--ease);
}
.cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}
.cap-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(56,189,248,0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.cap-card:hover { background: var(--bg-card-h); }
.cap-card:hover::before { transform: scaleX(1); }
.cap-card:hover::after { opacity: 1; }

.cap-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  color: var(--neon);
}
.cap-icon svg { width: 100%; height: 100%; }

.cap-title {
  font-family: var(--font-disp);
  font-size: 30px;
  letter-spacing: 0.04em;
  color: var(--milky);
  margin-bottom: 14px;
}
.cap-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
}

/* ================================================================
   VIDEO CLIPS
   ================================================================ */
.clips-section { padding: 120px 0 80px; overflow: hidden; }
.clips-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
}

.clips-scroller {
  padding: 0 40px 28px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-dim) transparent;
  -webkit-overflow-scrolling: touch;
  user-select: none;
}
.clips-scroller::-webkit-scrollbar { height: 2px; }
.clips-scroller::-webkit-scrollbar-track { background: transparent; }
.clips-scroller::-webkit-scrollbar-thumb { background: var(--neon); border-radius: 2px; }

.clips-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding-right: 40px;
}

.clip-card {
  width: 380px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.clip-card:hover { transform: translateY(-4px); }

.clip-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}
.clip-card:hover .clip-thumb { border-color: var(--neon); }

.clip-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  background: repeating-linear-gradient(
    45deg, transparent, transparent 18px,
    rgba(56,189,248,0.018) 18px, rgba(56,189,248,0.018) 36px
  );
}
.clip-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease);
}
.clip-card:hover .clip-thumb img { transform: scale(1.05); }

.clip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4,6,15,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.clip-thumb:hover .clip-overlay { opacity: 1; }

.clip-play {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-spring);
}
.clip-play svg { width: 20px; height: 20px; color: var(--bg-0); margin-left: 2px; }
.clip-play:hover { transform: scale(1.15); }

.clip-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.clip-ep {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon);
}
.clip-dur {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
}
.clip-title {
  font-family: var(--font-disp);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--milky);
}

/* ================================================================
   INNOVATORS — Silicon Valley & Beyond (vertical clips)
   ================================================================ */
.innovators-section { padding: 120px 0 80px; overflow: hidden; }
.innovators-header  { margin-bottom: 56px; }

.inno-rows {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.inno-row-label {
  font-family: var(--font-disp);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin: 0 0 6px 40px;
}
.inno-row-label span { color: var(--neon); }

.inno-row-sub {
  font-size: 12px;
  letter-spacing: 0.3px;
  color: rgba(240,248,255,0.35);
  margin: 0 0 18px 40px;
  line-height: 1.5;
}

.inno-row-scroller {
  padding: 0 40px 20px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-dim) transparent;
  -webkit-overflow-scrolling: touch;
  user-select: none;
  cursor: grab;
}
.inno-row-scroller::-webkit-scrollbar       { height: 2px; }
.inno-row-scroller::-webkit-scrollbar-track { background: transparent; }
.inno-row-scroller::-webkit-scrollbar-thumb { background: var(--neon); border-radius: 2px; }

.inno-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-right: 40px;
}

.inno-card {
  width: 240px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.inno-card:hover { transform: translateY(-5px); }

.inno-thumb {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}
.inno-card:hover .inno-thumb { border-color: var(--neon); }

.inno-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.inno-card:hover .inno-thumb img { transform: scale(1.05); }

/* Grid overlay — same as camera feeds */
.inno-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M 80 0 L 0 0 0 80' fill='none' stroke='%2338bdf8' stroke-width='0.4' opacity='0.12'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.inno-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4,6,15,0.45);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
}
.inno-thumb:hover .inno-overlay { opacity: 1; }

.inno-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--neon);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-0);
  transition: transform 0.2s, box-shadow 0.2s;
}
.inno-play:hover { transform: scale(1.12); box-shadow: 0 0 24px rgba(56,189,248,0.5); }
.inno-play svg   { width: 20px; height: 20px; margin-left: 2px; }

.inno-ep {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--neon);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.inno-name {
  font-family: var(--font-disp);
  font-size: 16px;
  letter-spacing: 0.03em;
  color: var(--milky);
  margin: 0 0 4px;
  line-height: 1.25;
}
.inno-role {
  font-size: 11px;
  color: var(--fg-dim);
  margin: 0 0 10px;
  letter-spacing: 0.4px;
}
.inno-blurb {
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.65;
  margin: 0 0 12px;
}
.inno-dur {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(240,248,255,0.3);
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-section {
  padding: 120px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.gallery-header { margin-bottom: 52px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.gallery-item:hover { border-color: var(--border-h); z-index: 2; }

.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

.gallery-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  background: repeating-linear-gradient(
    45deg, transparent, transparent 18px,
    rgba(56,189,248,0.015) 18px, rgba(56,189,248,0.015) 36px
  );
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  z-index: 1;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,6,15,0.88) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 3;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--milky);
}

/* ================================================================
   CONTACT / BOOK
   ================================================================ */
.contact-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.contact-orb {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(56,189,248,0.055) 0%, transparent 70%);
  pointer-events: none;
}

.contact-title {
  font-family: var(--font-disp);
  font-size: clamp(60px, 9vw, 112px);
  line-height: 0.93;
  color: var(--milky);
  margin-bottom: 24px;
}
.contact-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 64px;
}

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

.form-row { margin-bottom: 16px; }
.form-field {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
}
.form-field::placeholder { color: var(--text-3); }
.form-field:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 1px var(--neon), 0 0 22px var(--neon-glow);
}
.form-row:focus-within { transform: translateX(3px); }
.form-textarea { resize: vertical; min-height: 130px; }

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(56,189,248,0.08);
  border: 1px solid var(--neon);
  font-size: 14px;
  color: var(--neon-bright);
  letter-spacing: 0.06em;
  border-radius: 2px;
}

.contact-details { padding-top: 6px; }
.c-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.c-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.c-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  flex-shrink: 0;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.c-item:hover .c-icon {
  border-color: var(--neon);
  box-shadow: 0 0 16px var(--neon-glow);
}
.c-icon svg { width: 20px; height: 20px; }
.c-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.c-value { font-size: 16px; color: var(--text-1); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 52px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo-mark { font-size: 34px; }
.footer-tagline {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-3);
  max-width: 220px;
  line-height: 1.6;
}
.footer-nav { display: flex; gap: 80px; }
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col h5 {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--neon); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.05em;
}

/* ================================================================
   CARD TILT (applied via JS)
   ================================================================ */
[data-tilt] { transform-style: preserve-3d; will-change: transform; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .hero-content { flex-direction: column; gap: 40px; padding-top: 110px; }
  .hero-text { flex: none; max-width: 100%; }
  .hero-visual { width: 100%; display: flex; justify-content: center; }
  .hv-frame { max-width: 420px; aspect-ratio: 16/9; }  /* landscape on tablet */
  .hv-chip-1 { left: -12px; }
  .hv-chip-2 { right: -12px; }
  .hv-chip-3 { left: -12px; bottom: 14%; }
  .caps-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .episode-wrap,
  .host-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .host-grid .host-content { order: -1; }
}

@media (max-width: 820px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .clips-scroller { padding: 0 20px 28px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-content { padding: 0 20px; padding-top: 88px; gap: 32px; }
  .hero-sub { font-size: 15px; word-break: break-word; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hv-frame { max-width: 100%; aspect-ratio: 16/9; }
  /* Chips tuck inside frame edges on mobile — no negative overflow */
  .hv-chip { padding: 8px 12px; }
  .hv-chip-1 { left: 8px;  top: 14%; }
  .hv-chip-2 { right: 8px; top: 44%; }
  .hv-chip-3 { left: 8px;  bottom: 14%; }
  .hv-chip-num { font-size: 18px; }

  /* Sections */
  .caps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .clip-card { width: 300px; }
  .clips-header { flex-direction: column; align-items: flex-start; }

  /* Host stats */
  .host-stats { gap: 2px; }
  .stat-word { font-size: 28px; }
  .stat-lbl { font-size: 9px; }

  /* Contact */
  .contact-title { font-size: clamp(44px, 10vw, 72px); }

  /* Footer */
  .footer-top { flex-direction: column; }
  .footer-nav { gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 520px) {
  /* Hero frame switches to portrait-ish on small phones */
  .hv-frame { aspect-ratio: 4/3; }
  .hv-chip { display: none; }   /* hide chips entirely — too cramped */

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .clip-card { width: 280px; }

  .section-title { font-size: clamp(42px, 11vw, 64px); }
  .hero-heading  { font-size: clamp(58px, 14vw, 90px); }

  /* Stack form contact items */
  .contact-grid { gap: 40px; }
}

/* Touch devices — restore normal cursor */
@media (hover: none) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ================================================================
   YOUTUBE LIGHTBOX + INLINE PLAYER
   ================================================================ */

/* Lightbox — desktop */
.yt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.yt-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.yt-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 15, 0.94);
  backdrop-filter: blur(10px);
}
.yt-lb-wrap {
  position: relative;
  width: 90vw;
  max-width: 1080px;
  z-index: 1;
}
.yt-lb-frame {
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 0 80px rgba(56,189,248,0.12);
}
.yt-lb-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.yt-lb-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: var(--milky);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
}
.yt-lb-close:hover {
  opacity: 1;
  border-color: var(--neon);
  color: var(--neon);
}

/* Inline player — mobile (loads inside the card) */
.yt-inline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 5;
  display: block;
}
