/* ═══════════════════════════════════════════════════════════════
   NIGHT DRIVE — elevated system
   "The site is a film, not a landing page."
   Display: Bebas Neue · Body: DM Sans · Metadata: IBM Plex Mono
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --black:  #060507;
  --panel:  #0a090d;
  --raise:  #0e0d12;
  --ink:    #ECE7DF;
  --mute:   rgba(236,231,223,0.46);
  --faint:  rgba(236,231,223,0.26);
  --ghost:  rgba(236,231,223,0.13);
  --line:   rgba(236,231,223,0.085);
  --line2:  rgba(236,231,223,0.05);

  /* accent — set live by Tweaks */
  --neon:   #FF0A6C;
  --neon-rgb: 255,10,108;

  /* glow budget — Tweaks scale this; slate keeps it lean */
  --glow:   0.55;

  --gutter: clamp(20px, 4.2vw, 64px);
  --rail:   clamp(0px, 3vw, 46px);
  --maxw:   1600px;

  --t-display: 'Bebas Neue', sans-serif;
  --t-body:    'DM Sans', sans-serif;
  --t-mono:    'IBM Plex Mono', ui-monospace, monospace;

  --ease: cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: clip; }
body {
  background: var(--black);
  color: var(--ink);
  font-family: var(--t-body);
  font-weight: 300;
  overflow-x: clip;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
::selection { background: rgba(var(--neon-rgb), 0.85); color: #fff; }

/* ── shared atoms ─────────────────────────────────────────── */
.mono {
  font-family: var(--t-mono);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.tick { color: var(--neon); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.hair { height: 1px; background: var(--line); border: 0; }

/* a single accent hairline with a measured glow */
.accent-line {
  width: 34px; height: 1px; background: var(--neon);
  box-shadow: 0 0 calc(8px * var(--glow)) rgba(var(--neon-rgb), var(--glow));
}

/* ═══ FILM-GRADE FX (fixed, page-wide) ═══════════════════════ */
.fx-grain, .fx-scan, .fx-vig {
  position: fixed; inset: 0; pointer-events: none; z-index: 800;
}
.fx-grain {
  opacity: 0.32; mix-blend-mode: overlay;
  background-image: 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.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  animation: grain-shift 6s steps(4) infinite;
}
@keyframes grain-shift {
  0%{transform:translate(0,0)} 25%{transform:translate(-3%,2%)}
  50%{transform:translate(2%,-2%)} 75%{transform:translate(-2%,-3%)} 100%{transform:translate(0,0)}
}
.fx-scan {
  opacity: 0; z-index: 799;
  background: repeating-linear-gradient(to bottom,
    transparent 0, transparent 2px, rgba(0,0,0,0.5) 3px, transparent 4px);
}
.fx-vig {
  z-index: 798;
  background: radial-gradient(ellipse 110% 90% at 50% 42%, transparent 52%, rgba(2,2,4,0.55) 100%);
}

/* ═══ SIDE RAILS — the film-strip edge ═══════════════════════ */
.rail {
  position: fixed; top: 0; bottom: 0; width: var(--rail); z-index: 350;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  padding: 22px 0; pointer-events: none;
  border-inline: 1px solid var(--line2);
}
.rail-l { left: 0; border-left: none; }
.rail-r { right: 0; border-right: none; }
.rail-vert {
  writing-mode: vertical-rl; font-family: var(--t-mono);
  font-size: 9.5px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--faint);
}
.rail-l .rail-vert { transform: rotate(180deg); }
.rail-tc {
  font-family: var(--t-mono); font-size: 9.5px; letter-spacing: 0.12em;
  color: var(--mute); writing-mode: vertical-rl;
}
.rail-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--neon);
  box-shadow: 0 0 calc(10px*var(--glow)) rgba(var(--neon-rgb),var(--glow));
  animation: blink 2.4s var(--ease) infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

/* perforations along the rails */
.rail::before {
  content:''; position:absolute; inset: 80px 50% auto; transform: translateX(-50%);
  width: 6px; height: calc(100% - 200px);
  background-image: repeating-linear-gradient(to bottom,
    var(--line) 0 1px, transparent 1px 26px);
}

/* ═══ NAV ════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 400;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(16px,2.2vw,26px) calc(var(--gutter) + var(--rail));
  transition: padding .45s var(--ease), background .45s var(--ease), border-color .45s;
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  padding-block: 13px;
  background: rgba(6,5,7,0.78);
  backdrop-filter: blur(22px) saturate(1.1);
  border-bottom-color: var(--line);
}
.brand { display: flex; align-items: baseline; gap: 12px; }
.brand-mark {
  font-family: var(--t-display); font-size: 21px; letter-spacing: 0.13em;
  line-height: 1; color: var(--ink);
}
.brand-mark .slash { color: var(--neon); }
.brand-sub {
  font-family: var(--t-mono); font-size: 9px; letter-spacing: 0.26em;
  color: var(--faint); text-transform: uppercase;
}
.nav-links { display: flex; gap: clamp(20px,2.6vw,40px); align-items: center; }
.nav-links a {
  font-family: var(--t-mono); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mute); white-space: nowrap;
  display: inline-flex; align-items: baseline; gap: 7px;
  transition: color .3s var(--ease);
}
.nav-links a .num { color: var(--faint); font-size: 8.5px; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-family: var(--t-mono); font-size: 10.5px; letter-spacing: 0.2em; white-space: nowrap;
  text-transform: uppercase; color: var(--ink);
  padding: 10px 20px; border: 1px solid var(--line);
  display: inline-flex; align-items: center; gap: 9px;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.nav-cta::before {
  content:''; width:5px; height:5px; border-radius:50%; background: var(--neon);
  box-shadow: 0 0 calc(8px*var(--glow)) rgba(var(--neon-rgb),var(--glow));
}
.nav-cta:hover { border-color: rgba(var(--neon-rgb),0.5); color: #fff; }

/* ═══ ACT / SLATE HEADERS (shared across sections) ═══════════ */
.act { padding-block: clamp(72px, 10vw, 132px); position: relative; }
.act-head { display: flex; flex-direction: column; gap: 20px; margin-bottom: clamp(40px,5vw,72px); }
.slate {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--t-mono); font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mute);
}
.slate .reel-no { color: var(--neon); }
.slate .sep { width: 22px; height: 1px; background: var(--ghost); }
.act-title {
  font-family: var(--t-display); font-weight: 400;
  font-size: clamp(46px, 8.5vw, 132px); line-height: 0.86; letter-spacing: 0.012em;
  color: var(--ink);
}
.act-title .o {
  -webkit-text-stroke: 1.4px rgba(236,231,223,0.4); color: transparent;
}
.act-title .n {
  color: var(--neon);
  text-shadow: 0 0 calc(26px*var(--glow)) rgba(var(--neon-rgb), calc(0.55*var(--glow)));
}
.act-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
}
.act-link {
  font-family: var(--t-mono); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mute);
  display: inline-flex; align-items: center; gap: 9px;
  border-bottom: 1px solid var(--line); padding-bottom: 5px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.act-link:hover { color: var(--ink); border-color: var(--neon); }

/* ═══ COLD OPEN (hero) ═══════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  overflow: hidden; padding-inline: var(--rail);
}
/* flow wrapper: slate pinned top, foot pinned bottom — can never overlap */
.hero-inner {
  position: relative; z-index: 4; flex: 1 0 auto;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: clamp(28px, 5vh, 64px);
  padding: clamp(96px, 15vh, 156px) var(--gutter) clamp(40px, 7vh, 84px);
}
.hero-video {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #000;
}
.hero-video video, .hero-video iframe {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  min-width: 100%; min-height: 100%; width: auto; height: auto;
  object-fit: cover; border: 0;
  filter: brightness(0.5) contrast(1.12) saturate(0.72);
}
.hero-video iframe { width: 177.78vh; height: 56.25vw; pointer-events: none; }
.hero-grade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(var(--neon-rgb),0.10) 0%, transparent 38%),
    linear-gradient(to bottom, rgba(6,5,7,0.55) 0%, transparent 26%, transparent 52%, rgba(6,5,7,0.92) 100%);
}
/* letterbox */
.bar { position: absolute; left: 0; right: 0; z-index: 3; background: var(--black); height: clamp(28px,4.5vh,56px); }
.bar.top { top: 0; } .bar.bot { bottom: 0; }
.bar::after {
  content:''; position:absolute; left: var(--gutter); right: var(--gutter); height:1px; background: var(--line2);
}
.bar.top::after { bottom: 0; } .bar.bot::after { top: 0; }

/* slate metadata — now in flow at top of hero */
.hero-slate {
  z-index: 4;
  display: flex; flex-direction: column; gap: 9px;
  opacity: 0; animation: rise .8s .3s var(--ease) forwards;
}
.hs-row { display: flex; gap: 26px; flex-wrap: wrap; }
.hs-cell { display: flex; flex-direction: column; gap: 3px; }
.hs-k { font-family: var(--t-mono); font-size: 8.5px; letter-spacing: 0.24em; color: var(--faint); text-transform: uppercase; }
.hs-v { font-family: var(--t-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--mute); white-space: nowrap; }
.hs-v.live { color: var(--neon); }

.hero-foot {
  position: relative; z-index: 4;
  display: flex; flex-direction: column; gap: 26px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--t-mono); font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--neon);
  opacity: 0; animation: rise .7s .45s var(--ease) forwards;
}
.hero-title {
  font-family: var(--t-display); font-weight: 400;
  font-size: clamp(56px, 12vw, 168px); line-height: 0.84; letter-spacing: 0.005em;
  color: var(--ink); text-wrap: balance;
}
.hero-title .line { display: block; overflow: hidden; white-space: nowrap; }
.hero-title .line > span {
  display: inline-block; transform: translateY(106%);
  animation: lift .95s var(--ease) forwards;
}
.hero-title .line:nth-child(1) > span { animation-delay: .5s; }
.hero-title .line:nth-child(2) > span { animation-delay: .62s; }
.hero-title .line:nth-child(3) > span { animation-delay: .74s; }
.hero-title .o { -webkit-text-stroke: 1.6px rgba(236,231,223,0.42); color: transparent; }
.hero-title .n {
  color: var(--neon);
  text-shadow: 0 0 calc(34px*var(--glow)) rgba(var(--neon-rgb), calc(0.5*var(--glow)));
}
.hero-line2 {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  opacity: 0; animation: rise .7s .9s var(--ease) forwards;
}
.hero-blurb { max-width: 430px; font-size: 14.5px; line-height: 1.8; color: var(--mute); }
.hero-blurb b { color: var(--ink); font-weight: 400; }
.hero-actions { display: flex; align-items: center; gap: 22px; }

.btn {
  font-family: var(--t-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 11px; cursor: none;
  transition: transform .3s var(--ease);
}
.btn-solid {
  background: var(--neon); color: #0a0205; padding: 14px 26px; font-weight: 500;
  box-shadow: 0 0 calc(26px*var(--glow)) rgba(var(--neon-rgb), calc(0.35*var(--glow)));
}
.btn-solid:hover { transform: translateY(-2px); }
.btn-ghost { color: var(--mute); border-bottom: 1px solid var(--line); padding-bottom: 5px; }
.btn-ghost:hover { color: var(--ink); border-color: var(--neon); }

.hero-tc {
  position: absolute; right: calc(var(--gutter)); bottom: clamp(40px,7vh,84px); z-index: 4;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
  opacity: 0; animation: rise .7s 1s var(--ease) forwards;
}
.hero-tc .lab { font-family: var(--t-mono); font-size: 8.5px; letter-spacing: 0.26em; color: var(--faint); text-transform: uppercase; }
.hero-tc .val { font-family: var(--t-mono); font-size: 14px; letter-spacing: 0.06em; color: var(--ink); }
.hero-scroll {
  position: absolute; left: 50%; bottom: clamp(40px,7vh,84px); transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  opacity: 0; animation: fade 1s 1.4s var(--ease) forwards;
}
.hero-scroll .lab { font-family: var(--t-mono); font-size: 8.5px; letter-spacing: 0.3em; color: var(--faint); text-transform: uppercase; }
.hero-scroll .ln {
  width: 1px; height: 46px; background: linear-gradient(var(--neon), transparent);
  animation: scrolly 2.2s var(--ease) infinite;
}
@keyframes scrolly { 0%{transform:scaleY(0);transform-origin:top} 40%{transform:scaleY(1);transform-origin:top} 60%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

@keyframes lift { to { transform: translateY(0); } }
@keyframes rise { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:none} }
@keyframes fade { to { opacity:1; } }

/* ═══ STRIP (ticker) ═════════════════════════════════════════ */
.strip {
  overflow: hidden; padding: 14px 0; background: var(--panel);
  border-block: 1px solid var(--line); position: relative;
}
.strip-track { display: flex; white-space: nowrap; width: max-content; animation: marquee 38s linear infinite; }
.strip.rev .strip-track { animation-direction: reverse; }
.strip-item {
  font-family: var(--t-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--faint); padding: 0 30px; display: inline-flex; align-items: center; gap: 30px;
}
.strip-item .d { width: 3px; height: 3px; border-radius: 50%; background: var(--neon); flex-shrink: 0; }
.strip.neon .strip-item { color: rgba(var(--neon-rgb), 0.8); }
.strip.neon .strip-item .d { background: var(--ink); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══ REEL (work index) ══════════════════════════════════════ */
.reel-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap; margin-bottom: clamp(28px,3.5vw,48px);
  padding-top: 22px; border-top: 1px solid var(--line);
}
.reel-count { font-family: var(--t-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.reel-tabs { display: flex; gap: 4px; }
.reel-tab {
  font-family: var(--t-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mute); padding: 9px 16px; border: 1px solid var(--line); cursor: none;
  background: transparent; appearance: none; -webkit-appearance: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s;
}
.reel-tab .c { color: var(--faint); font-size: 8.5px; }
.reel-tab[aria-selected="true"] { color: var(--ink); border-color: rgba(var(--neon-rgb),0.45); }
.reel-tab[aria-selected="true"] .c { color: var(--neon); }
.reel-tab:hover { color: var(--ink); }

.reel-body { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,1fr); gap: clamp(30px,4vw,64px); align-items: start; }
.reel-stage { position: sticky; top: 96px; }
.stage-frame {
  position: relative; aspect-ratio: 2.39/1; overflow: hidden; background: var(--raise);
  border: 1px solid var(--line);
}
.stage-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.74) contrast(1.06); opacity: 0;
  transition: opacity .6s var(--ease), transform 1.2s var(--ease);
}
.stage-frame img.on { opacity: 1; }
.stage-frame::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(to top, rgba(6,5,7,0.8), transparent 50%);
}
.stage-play {
  position: absolute; left: 22px; bottom: 20px; z-index: 2;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(var(--neon-rgb),0.55); background: rgba(6,5,7,0.4);
  display: flex; align-items: center; justify-content: center; color: var(--ink);
  font-size: 13px; cursor: none; backdrop-filter: blur(6px);
  transition: background .3s, transform .3s var(--ease);
}
.stage-play:hover { background: var(--neon); color: #0a0205; transform: scale(1.06); }
.stage-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 16px; flex-wrap: wrap;
}
.stage-title { font-family: var(--t-display); font-size: clamp(26px,3vw,42px); letter-spacing: 0.03em; line-height: 1; color: var(--ink); }
.stage-tags { display: flex; gap: 16px; }
.stage-tags span { font-family: var(--t-mono); font-size: 10px; letter-spacing: 0.16em; color: var(--mute); text-transform: uppercase; }

.reel-index { display: flex; flex-direction: column; }
.reel-row {
  display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 18px;
  padding: 20px 6px; border-top: 1px solid var(--line); cursor: none;
  transition: padding-left .35s var(--ease), background .35s;
  position: relative;
}
.reel-row:last-child { border-bottom: 1px solid var(--line); }
.reel-row::before {
  content:''; position:absolute; left:0; top:0; bottom:0; width:2px; background: var(--neon);
  transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease);
  box-shadow: 0 0 calc(12px*var(--glow)) rgba(var(--neon-rgb),var(--glow));
}
.reel-row.active::before, .reel-row:hover::before { transform: scaleY(1); }
.reel-row.active, .reel-row:hover { padding-left: 16px; background: linear-gradient(90deg, rgba(var(--neon-rgb),0.05), transparent 60%); }
.rr-no { font-family: var(--t-mono); font-size: 11px; color: var(--faint); letter-spacing: 0.08em; }
.reel-row.active .rr-no, .reel-row:hover .rr-no { color: var(--neon); }
.rr-main { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.rr-title { font-family: var(--t-display); font-size: clamp(22px,2.5vw,34px); letter-spacing: 0.03em; line-height: 1; color: var(--ink); }
.rr-sub { font-family: var(--t-mono); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); }
.rr-meta { display: flex; gap: 16px; align-items: center; }
.rr-meta span { font-family: var(--t-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--faint); white-space: nowrap; }
.rr-play { color: var(--mute); font-size: 11px; opacity: 0; transition: opacity .3s, color .3s; }
.reel-row.active .rr-play, .reel-row:hover .rr-play { opacity: 1; color: var(--neon); }
.rr-thumb { display: none; }

/* ═══ STUDIO ═════════════════════════════════════════════════ */
.studio { background: var(--panel); border-block: 1px solid var(--line); }
.studio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,96px); align-items: start; }
.studio-copy p { font-size: 16px; line-height: 1.95; color: var(--mute); margin-bottom: 20px; max-width: 520px; }
.studio-copy p:last-child { margin-bottom: 0; }
.studio-copy b { color: var(--ink); font-weight: 400; }
.svc { display: flex; flex-direction: column; }
.svc-row { display: grid; grid-template-columns: 38px 1fr; gap: 18px; padding: 26px 0; border-top: 1px solid var(--line); }
.svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-no { font-family: var(--t-mono); font-size: 11px; color: var(--neon); letter-spacing: 0.06em; padding-top: 4px; }
.svc-name { font-family: var(--t-display); font-size: 23px; letter-spacing: 0.06em; color: var(--ink); margin-bottom: 6px; }
.svc-desc { font-size: 14px; line-height: 1.7; color: var(--mute); }

.credits { margin-top: clamp(40px,5vw,64px); padding-top: 36px; border-top: 1px solid var(--line); }
.credits-lab { font-family: var(--t-mono); font-size: 9.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--faint); margin-bottom: 22px; }
.credits-row { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: baseline; }
.credits-row span {
  font-family: var(--t-display); font-size: clamp(20px,2.4vw,30px); letter-spacing: 0.05em;
  color: var(--faint); transition: color .35s var(--ease);
}
.credits-row span:hover { color: var(--ink); }

/* ═══ COMPETITION ════════════════════════════════════════════ */
.comp { background: var(--raise); border-bottom: 1px solid var(--line); position: relative; }
.comp-lede { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(36px,5vw,64px); align-items: center; margin-bottom: clamp(40px,5vw,64px); }
.comp-intro { font-size: 16px; line-height: 1.95; color: var(--mute); max-width: 560px; }
.comp-intro b { color: var(--ink); font-weight: 400; }
.comp-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; padding-left: clamp(0px,4vw,56px); border-left: 1px solid var(--line); }
.comp-pill {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  font-family: var(--t-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--neon);
  border: 1px solid rgba(var(--neon-rgb),0.4); border-radius: 100px; padding: 9px 16px;
}
.comp-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 calc(8px*var(--glow)) rgba(var(--neon-rgb),var(--glow)); animation: blink 2s infinite; }
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); margin-bottom: clamp(40px,5vw,64px); }
.comp-card { background: var(--black); padding: clamp(28px,3vw,40px); }
.comp-card-lab { font-family: var(--t-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--neon); margin-bottom: 22px; }
.comp-text { font-size: 14.5px; line-height: 1.85; color: var(--mute); }
.comp-text b { color: var(--ink); font-weight: 400; } .comp-text em { color: var(--faint); font-style: italic; }
.comp-list { list-style: none; } .comp-list li { position: relative; padding-left: 22px; margin-bottom: 13px; font-size: 14.5px; line-height: 1.6; color: var(--mute); }
.comp-list li:last-child { margin-bottom: 0; } .comp-list li b { color: var(--ink); font-weight: 400; }
.comp-list li::before { content:''; position:absolute; left:0; top:11px; width:11px; height:1px; background: var(--neon); }
.comp-tl { border-top: 1px solid var(--line); padding-top: 40px; }
.comp-tl-lab { font-family: var(--t-mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--faint); margin-bottom: 30px; }
.comp-tl-track { display: grid; grid-template-columns: repeat(6,1fr); gap: 22px; }
.comp-tl-item { position: relative; border-top: 1px solid var(--line); padding-top: 20px; }
.comp-tl-item::before { content:''; position:absolute; top:-4px; left:0; width:7px; height:7px; border-radius:50%; background: var(--neon); }
.comp-tl-item.key::before { box-shadow: 0 0 calc(12px*var(--glow)) rgba(var(--neon-rgb),var(--glow)); }
.comp-tl-date { display:block; font-family: var(--t-display); font-size: 21px; letter-spacing: 0.04em; color: var(--ink); margin-bottom: 7px; }
.comp-tl-item.key .comp-tl-date { color: var(--neon); }
.comp-tl-event { font-family: var(--t-mono); font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mute); line-height: 1.5; }

/* ═══ CONTACT ════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,100px); align-items: start; }
.c-hl { font-family: var(--t-display); font-size: clamp(52px,7.5vw,108px); line-height: 0.88; color: var(--ink); margin-top: 14px; }
.c-hl .n { color: var(--neon); text-shadow: 0 0 calc(26px*var(--glow)) rgba(var(--neon-rgb), calc(0.5*var(--glow))); }
.c-note { margin-top: 46px; font-size: 15.5px; line-height: 1.85; color: var(--mute); max-width: 400px; }
.c-info { margin-top: 42px; padding-top: 36px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 20px; }
.ci-k { font-family: var(--t-mono); font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--neon); display: block; margin-bottom: 5px; }
.ci-v { font-size: 15px; color: var(--ink); }
.ff { margin-bottom: 22px; }
.ff label { display: block; font-family: var(--t-mono); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint); margin-bottom: 10px; }
.ff input, .ff textarea, .ff select {
  width: 100%; background: none; border: none; border-bottom: 1px solid var(--line);
  color: var(--ink); font-family: var(--t-body); font-size: 15px; font-weight: 300; padding: 10px 0; outline: none;
  transition: border-color .3s; appearance: none;
}
.ff input:focus, .ff textarea:focus, .ff select:focus { border-bottom-color: var(--neon); }
.ff textarea { height: 88px; resize: none; }
.ff select option { background: var(--raise); }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.f-sub {
  width: 100%; padding: 16px; background: none; border: 1px solid var(--line); white-space: nowrap;
  font-family: var(--t-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink);
  cursor: none; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: border-color .3s, color .3s, background .3s;
}
.f-sub:hover { border-color: var(--neon); color: var(--neon); }
.f-sub.sent { background: var(--neon); color: #0a0205; border-color: var(--neon); }

/* ═══ END CARD (footer) ══════════════════════════════════════ */
.end {
  padding: clamp(60px,8vw,110px) 0 0;
  border-top: 1px solid var(--line);
}
.end-big {
  font-family: var(--t-display); font-size: clamp(64px, 18vw, 280px); line-height: 0.8;
  letter-spacing: 0.02em; color: var(--ink); display: flex; align-items: baseline; gap: 0.1em;
}
.end-big .slash { color: var(--neon); text-shadow: 0 0 calc(30px*var(--glow)) rgba(var(--neon-rgb), calc(0.5*var(--glow))); }
.end-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 28px 0; margin-top: clamp(30px,4vw,52px); border-top: 1px solid var(--line);
}
.end-soc { display: flex; gap: 28px; }
.end-soc a, .end-copy { font-family: var(--t-mono); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); transition: color .3s; }
.end-soc a:hover { color: var(--neon); }

/* ═══ CURSOR ═════════════════════════════════════════════════ */
#cur { position: fixed; z-index: 9999; pointer-events: none; top: 0; left: 0; display: none; will-change: transform; }
.cursor-ready #cur { display: block; }
.cursor-ready, .cursor-ready * { cursor: none !important; }
.cur-dot { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--neon); transform: translate(-50%,-50%); box-shadow: 0 0 calc(8px*var(--glow)) rgba(var(--neon-rgb),var(--glow)); }
.cur-ring { position: absolute; width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(var(--neon-rgb),0.5); transform: translate(-50%,-50%); transition: width .25s var(--ease), height .25s var(--ease), border-color .25s; }
.hovering .cur-ring { width: 52px; height: 52px; border-color: var(--neon); }

/* ═══ LIGHTBOX ═══════════════════════════════════════════════ */
#lightbox { position: fixed; inset: 0; z-index: 9000; background: rgba(3,3,5,0.97); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .35s var(--ease); }
#lightbox.open { opacity: 1; pointer-events: all; }
#lb-inner { width: 90vw; max-width: 1200px; aspect-ratio: 16/9; position: relative; box-shadow: 0 0 0 1px var(--line); }
#lb-inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
#lb-slate { position: absolute; top: -28px; left: 0; font-family: var(--t-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); }
#lb-close { position: fixed; top: 26px; right: 34px; font-family: var(--t-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--mute); cursor: none; background: none; border: 0; z-index: 9001; transition: color .25s; display: inline-flex; gap: 8px; }
#lb-close:hover { color: var(--neon); }

/* ═══ SCROLL REVEAL ══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(26px); }
.motion-on .reveal { transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }

/* ═══════════════════════════════════════════════════════════
   DIRECTION PRESETS (Tweaks)
   ═══════════════════════════════════════════════════════════ */
/* SLATE = default (defined above) */

/* MARQUEE — type-forward, bolder, less metadata, fuller accent */
body.dir-marquee { --glow: 0.7; }
body.dir-marquee .hero-title { font-size: clamp(72px, 16vw, 250px); letter-spacing: -0.005em; }
body.dir-marquee .act-title { font-size: clamp(54px, 10vw, 156px); }
body.dir-marquee .hero-slate { opacity: 0.55; }
body.dir-marquee .reel-tab[aria-selected="true"] { background: var(--neon); color: #0a0205; border-color: var(--neon); }
body.dir-marquee .reel-tab[aria-selected="true"] .c { color: #0a0205; }
body.dir-marquee .rr-title { font-size: clamp(26px,3vw,42px); }
body.dir-marquee .fx-grain { opacity: 0.2; }
body.dir-marquee .slate { color: var(--faint); }

/* NOIR — heavier atmosphere, moodier grade, more glow */
body.dir-noir { --glow: 0.95; }
body.dir-noir .fx-grain { opacity: 0.5; }
body.dir-noir .fx-scan { opacity: 0.4; }
body.dir-noir .fx-vig { background: radial-gradient(ellipse 100% 80% at 50% 40%, transparent 40%, rgba(2,2,4,0.78) 100%); }
body.dir-noir .hero-video video, body.dir-noir .hero-video iframe { filter: brightness(0.4) contrast(1.2) saturate(0.5); }
body.dir-noir .stage-frame img { filter: brightness(0.62) contrast(1.12) saturate(0.7); }

/* ATMOSPHERE override (independent of direction) */
body.atmo-low .fx-grain { opacity: 0.12; }
body.atmo-low .fx-scan { opacity: 0; }
body.atmo-high .fx-grain { opacity: 0.55; }
body.atmo-high .fx-scan { opacity: 0.45; }

/* MOTION off */
body.motion-off .hero-title .line > span { transform: none; animation: none; }
body.motion-off [class*="hero-"], body.motion-off .hero-slate { animation: none !important; opacity: 1 !important; }
body.motion-off .reveal { opacity: 1; transform: none; transition: none; }
body.motion-off .fx-grain { animation: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-title .line > span { transform: none; animation: none; }
  .fx-grain { animation: none; }
  [class*="animation"] { animation: none !important; }
}

/* ═══ RESPONSIVE ═════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .reel-body { grid-template-columns: 1fr; }
  .reel-stage { display: none; }
  .rr-thumb { display: block; grid-column: 1 / -1; aspect-ratio: 2.39/1; overflow: hidden; margin-top: 14px; border: 1px solid var(--line); }
  .rr-thumb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.72); }
  .reel-row { grid-template-columns: 30px 1fr auto; }
}
@media (max-width: 820px) {
  :root { --rail: 0px; }
  .rail { display: none; }
  .nav-links { display: none; }
  .studio-grid, .comp-lede, .comp-grid, .contact-grid, .f2 { grid-template-columns: 1fr; }
  .comp-tl-track { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .comp-cta { padding-left: 0; border-left: none; border-top: 1px solid var(--line); padding-top: 28px; width: 100%; }
  .hero-line2 { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-tc, .hero-scroll { display: none; }
  .cursor-ready, .cursor-ready * { cursor: auto !important; }
  #cur { display: none !important; }
  .end-bar { flex-direction: column; align-items: flex-start; }
}
