/* ============================================================
   JOSH GREENFIELD — PORTFOLIO_v3
   Tokens: void #0B0D0F · panel #16191C · lines #2A2E33
           orange #FF6A2B (interaction) · teal #29C4C9 (state)
           text #F4F2EC
   Type:   League Gothic (display) · Inter (body) · JetBrains Mono (data)
   ============================================================ */

:root {
  --void: #0B0D0F;
  --panel: #16191C;
  --line: #2A2E33;
  --orange: #FF6A2B;
  --teal: #29C4C9;
  --text: #F4F2EC;
  --text-dim: #9BA0A6;
  --transport-h: 56px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--void);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.mono { font-family: "JetBrains Mono", monospace; }

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 2px;
}

::selection { background: var(--orange); color: var(--void); }

/* ---------- Render intro ---------- */
#renderIntro {
  position: fixed; inset: 0; z-index: 100;
  background: var(--void);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  transition: opacity 0.35s ease;
}
#renderIntro.done { opacity: 0; pointer-events: none; }
.render-bar {
  width: min(420px, 70vw); height: 2px; background: var(--line);
  overflow: hidden; border-radius: 1px;
}
.render-bar-fill {
  height: 100%; width: 0%;
  background: var(--orange);
}
.render-label { font-size: 11px; letter-spacing: 0.14em; color: var(--text-dim); }

/* ---------- Transport bar ---------- */
#transport {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--transport-h);
  display: flex; align-items: center; gap: 20px;
  padding: 0 20px;
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.slate { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; white-space: nowrap; }
.slate-sub { color: var(--text-dim); font-size: 10px; margin-left: 8px; letter-spacing: 0.14em; }

.track { position: relative; flex: 1; height: 100%; min-width: 0; }
.track-line {
  position: absolute; left: 0; right: 0; top: 50%; height: 2px;
  background: var(--line); transform: translateY(-50%);
}
.marker {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  background: none; border: none; cursor: pointer;
  color: var(--text-dim); font-size: 10px; letter-spacing: 0.16em;
  padding: 14px 6px 4px;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  transition: color 0.2s;
}
.marker .tick {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 2px; height: 12px; background: var(--text-dim);
  transition: background 0.2s;
}
.marker span + * { margin-top: 2px; }
.marker { padding-top: 30px; }
.marker:hover, .marker.active { color: var(--teal); }
.marker:hover .tick, .marker.active .tick { background: var(--teal); }

.playhead {
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 18px; margin-left: -9px;
  cursor: grab; touch-action: none;
}
.playhead:active { cursor: grabbing; }
.playhead::after {
  content: ""; position: absolute; top: 8px; bottom: 8px; left: 50%;
  width: 2px; margin-left: -1px; background: var(--orange);
}
.ph-cap {
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 8px; background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 55%, 50% 100%, 0 55%);
}

.timecode {
  font-size: 15px; letter-spacing: 0.08em; color: var(--text);
  min-width: 118px; text-align: right;
  font-variant-numeric: tabular-nums;
}

.jkl-hint {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 0.2em; color: var(--text-dim);
  border: 1px solid var(--line); border-radius: 3px;
  padding: 3px 4px 3px 8px; white-space: nowrap;
}
.jkl-hint button {
  background: none; border: none; color: var(--text-dim);
  font-size: 12px; cursor: pointer; padding: 0 4px;
}
.jkl-hint button:hover { color: var(--text); }
.jkl-hint.hidden { display: none; }

/* full-page playhead hairline */
#hairline {
  position: fixed; top: var(--transport-h); bottom: 0; left: 0;
  width: 1px; background: var(--orange); opacity: 0.14;
  z-index: 40; pointer-events: none;
}

/* ---------- Sections shared ---------- */
main { padding-top: 0; }
section { position: relative; }

.eyebrow {
  font-size: 11px; letter-spacing: 0.18em; color: var(--text-dim);
  margin-bottom: 14px;
}
.section-head { padding: 96px 6vw 40px; }
.section-head h2 {
  font-family: "League Gothic", sans-serif;
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 400; line-height: 0.95; letter-spacing: 0.01em;
  text-transform: uppercase;
}
.section-note { color: var(--text-dim); font-size: 14px; margin-top: 12px; max-width: 46ch; }
.touch-note { display: none; }
@media (hover: none) {
  .desktop-note { display: none; }
  .touch-note { display: block; }
}

/* ---------- REEL / hero: pinned scrub reveal ---------- */
#reel {
  /* short runway: a small scroll clears the text, a brief hold, then release */
  height: 145vh;
  background: var(--void);
}
.hero-sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--transport-h) + 4vh) 6vw 8vh;
  overflow: hidden;
}

/* full-bleed reel behind everything */
.fx-stage {
  position: absolute; inset: 0;
  background: #000;
  overflow: hidden;
  pointer-events: none; /* scroll passes through; the deck drives the player */
}
.stage-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
#reelVideo {
  /* JS sizes this (and the iframe the API swaps in) to cover the stage */
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
/* readability scrim — fades out with the text */
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(11, 13, 15, 0.92) 0%,
    rgba(11, 13, 15, 0.72) 45%,
    rgba(11, 13, 15, 0.35) 100%);
}

/* effects deck — program monitor controls, persists through the reveal */
.fx-deck {
  position: absolute; z-index: 4;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 7px;
  padding: 8px 10px;
  background: color-mix(in srgb, var(--panel) 82%, transparent);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 4px;
  max-width: calc(100vw - 32px);
  flex-wrap: wrap; justify-content: center;
}
.fx-chip {
  background: none; border: 1px solid var(--line); border-radius: 3px;
  color: var(--text-dim);
  font-size: 10px; letter-spacing: 0.12em;
  padding: 6px 10px; cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
.fx-chip:hover { border-color: var(--orange); color: var(--orange); }
.fx-chip[aria-pressed="true"] {
  border-color: var(--teal); color: var(--teal);
  background: rgba(41, 196, 201, 0.08);
}
.fx-chip.fx-reset:hover { border-color: var(--text); color: var(--text); }
.fx-sep { width: 1px; height: 18px; background: var(--line); }

.safe-corner {
  position: absolute; width: 26px; height: 26px;
  border: 1px solid var(--line); pointer-events: none;
}
.safe-corner.tl { top: calc(var(--transport-h) + 18px); left: 18px; border-right: none; border-bottom: none; }
.safe-corner.tr { top: calc(var(--transport-h) + 18px); right: 18px; border-left: none; border-bottom: none; }
.safe-corner.bl { bottom: 18px; left: 18px; border-right: none; border-top: none; }
.safe-corner.br { bottom: 18px; right: 18px; border-left: none; border-top: none; }

.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  will-change: opacity, transform;
}
.hero-copy { max-width: 820px; }
.hero-inner.cleared { pointer-events: none; }
.hero-title {
  font-family: "League Gothic", sans-serif;
  font-weight: 400;
  font-size: clamp(72px, 11vw, 170px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  display: flex; flex-direction: column;
  margin: 6px 0 26px;
}
.hero-title span { display: block; }
.hero-title span:last-child { color: transparent; -webkit-text-stroke: 1.5px var(--text); }

body.introing .hero-title { filter: blur(14px); opacity: 0.3; }
.hero-title { transition: filter 0.7s ease 0.15s, opacity 0.7s ease 0.15s; }

.hero-sub { color: var(--text-dim); font-size: clamp(15px, 1.6vw, 18px); max-width: 46ch; }

.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 36px; flex-wrap: wrap; }
.skim-link { font-size: 11px; letter-spacing: 0.18em; color: var(--text-dim); }
a.skim-link:hover { color: var(--teal); text-decoration: none; }

.thumb-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ---------- WORK / media pool ---------- */
#work { padding-bottom: 60px; }

/* bin tabs — media pool folders */
.bin-tabs {
  display: flex; gap: 6px;
  padding: 0 6vw;
  border-bottom: 1px solid var(--line);
}
.bin-tab {
  background: none;
  border: 1px solid var(--line); border-bottom: none;
  border-radius: 4px 4px 0 0;
  color: var(--text-dim);
  font-size: 10px; letter-spacing: 0.14em;
  padding: 9px 14px 8px; cursor: pointer;
  transition: color 0.15s, background 0.15s;
  position: relative; top: 1px;
}
.bin-tab:hover { color: var(--orange); }
.bin-tab[aria-selected="true"] {
  color: var(--teal);
  background: var(--panel);
  border-color: var(--line);
}
.bin-tab[aria-selected="true"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: var(--panel);
}
.tab-count { color: var(--text-dim); margin-left: 6px; }

.bin {
  display: flex; gap: 18px;
  padding: 22px 6vw 36px;
  overflow-x: auto;
  scrollbar-color: var(--line) transparent;
}
.bin[hidden] { display: none !important; }
.bin::-webkit-scrollbar { height: 6px; }
.bin::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.clip {
  flex: 0 0 auto;
  width: 300px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.2s, transform 0.2s ease;
  user-select: none;
  cursor: pointer;
}
.clip:hover, .clip:focus-visible { border-color: var(--orange); transform: translateY(-3px); }

.thumb-wrap {
  position: relative; height: 168px;
  background: #0e1114;
}
/* vertical (9:16) clips */
.clip.vert { width: 200px; }
.clip.vert .thumb-wrap { height: auto; aspect-ratio: 9 / 16; }
.clip.vert .clip-log {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.thumb-wrap img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.2s;
}
.thumb-wrap:hover img { opacity: 0.85; }
.thumb-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(11, 13, 15, 0.75);
  border: 1px solid var(--orange);
  color: var(--orange); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  padding-left: 3px; pointer-events: none;
  transition: transform 0.15s ease, background 0.15s ease;
}
.thumb-wrap:hover .thumb-play { transform: translate(-50%, -50%) scale(1.1); background: rgba(255, 106, 43, 0.18); }
.dur-badge {
  position: absolute; right: 8px; bottom: 8px;
  background: rgba(11,13,15,0.82);
  font-size: 10px; letter-spacing: 0.1em; color: var(--text);
  padding: 2px 7px; border-radius: 2px;
  font-variant-numeric: tabular-nums;
}
.d-row { display: flex; gap: 12px; }
.d-key { font-family: "JetBrains Mono", monospace; font-size: 9px; letter-spacing: 0.14em; color: var(--text-dim); min-width: 58px; padding-top: 3px; }
.d-val { color: var(--text); }
.d-link { font-size: 12px; letter-spacing: 0.06em; }

.clip-meta { padding: 12px 14px 14px; border-top: 1px solid var(--line); }
.track-color { display: block; height: 3px; margin: -12px -14px 12px; }
.clip-title { font-weight: 600; font-size: 15px; color: var(--text); }
.clip-log { font-size: 13px; color: var(--text-dim); margin-top: 4px; line-height: 1.45; }
.clip-tags { display: flex; gap: 10px; margin-top: 10px; align-items: center; }
.genre-tag { font-size: 9px; letter-spacing: 0.16em; color: var(--text-dim); }

/* ---------- ABOUT / color page ---------- */
#about { padding-bottom: 40px; }
.about-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  padding: 0 6vw;
  align-items: start;
}

.still-viewer {
  background: var(--panel);
  border: 1px solid var(--line); border-radius: 5px;
  overflow: hidden;
}
.still-bar {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.14em; color: var(--text-dim);
  padding: 9px 13px; border-bottom: 1px solid var(--line);
}
.still-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.still-state { margin-left: auto; color: var(--orange); transition: color 0.3s; }
.still-state.graded { color: var(--teal); }

.still-frame { position: relative; background: #000; }
.still-frame img {
  display: block; width: 100%; max-height: 62vh; object-fit: cover; object-position: 50% 20%;
}
.tint-layer {
  position: absolute; inset: 0; pointer-events: none;
  mix-blend-mode: soft-light; opacity: 0;
}

.grade-console { border-top: 1px solid var(--line); padding: 16px 18px 18px; }
.grade-row { display: flex; flex-wrap: wrap; gap: 14px 22px; }
.grade-ctl { display: flex; align-items: center; gap: 10px; flex: 1 1 240px; min-width: 0; }
.g-label { font-size: 9px; letter-spacing: 0.16em; color: var(--text-dim); min-width: 74px; }
.g-val {
  font-size: 10px; color: var(--teal); min-width: 46px; text-align: right;
  font-variant-numeric: tabular-nums;
}
.grade-ctl input[type="range"] {
  flex: 1; min-width: 80px;
  appearance: none; -webkit-appearance: none;
  height: 3px; border-radius: 2px;
  background: var(--line);
  outline-offset: 4px;
}
.grade-ctl input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(255, 106, 43, 0.5);
  cursor: grab;
}
.grade-ctl input[type="range"]::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%; border: none;
  background: var(--orange);
  cursor: grab;
}
.grade-actions { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
#bypassGrade[aria-pressed="true"] { border-color: var(--teal); color: var(--teal); background: rgba(41, 196, 201, 0.08); }

.about-copy h3 {
  font-family: "League Gothic", sans-serif;
  font-weight: 400; font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1; text-transform: uppercase;
  margin-bottom: 20px;
}
.about-copy p { color: var(--text-dim); margin-bottom: 16px; max-width: 54ch; }
.about-copy strong { color: var(--text); font-weight: 600; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 24px; }

/* ---------- CONTACT / export ---------- */
#contact { padding-bottom: 110px; }
.export-panel {
  margin: 0 6vw;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 4px;
  overflow: hidden;
}
.export-settings, .render-queue { background: var(--panel); padding: 34px 36px; }
.setting {
  display: flex; align-items: baseline; gap: 20px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.setting .key { font-size: 10px; letter-spacing: 0.16em; color: var(--text-dim); min-width: 110px; }
.setting .val { font-size: 15px; }
.setting .links a { margin-right: 18px; }
/* brief form */
.setting.field { align-items: center; gap: 20px; }
.setting.field.area { align-items: flex-start; }
.setting.field .key { padding-top: 2px; }
.f-input {
  flex: 1; min-width: 0;
  background: var(--void);
  border: 1px solid var(--line); border-radius: 3px;
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif; font-size: 14px;
  padding: 9px 12px;
  transition: border-color 0.15s;
}
.f-input::placeholder { color: #5a6066; }
.f-input:focus { outline: none; border-color: var(--teal); }
.f-input.invalid { border-color: var(--orange); }
textarea.f-input { resize: vertical; min-height: 84px; }
select.f-input { appearance: none; cursor: pointer; }
.form-status { font-size: 11px; letter-spacing: 0.08em; color: var(--orange); min-height: 16px; margin-top: 10px; }
.form-status.ok { color: var(--teal); }
.deliver-info { margin-top: 26px; }

.btn-export {
  border: none; cursor: pointer;
  font-family: "Inter", system-ui, sans-serif;
  display: inline-block; margin-top: 30px;
  background: var(--orange); color: var(--void);
  font-weight: 600; font-size: 16px;
  padding: 16px 34px; border-radius: 3px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-export:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,106,43,0.35); }

.queue-title { font-size: 10px; letter-spacing: 0.18em; color: var(--text-dim); margin-bottom: 18px; }
.queue-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.queue-item .q-status { margin-left: auto; color: var(--text-dim); font-size: 11px; }
.dot { width: 7px; height: 7px; border-radius: 50%; flex: 0 0 auto; }
.dot.amber { background: var(--orange); box-shadow: 0 0 6px rgba(255,106,43,0.7); }
.dot.teal { background: var(--teal); box-shadow: 0 0 6px rgba(41,196,201,0.7); }
.dot.dim { background: var(--line); }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 22px 6vw;
  background: var(--panel);
}
.edl { font-size: 10px; letter-spacing: 0.08em; color: var(--text-dim); overflow-x: auto; white-space: nowrap; }

/* ---------- clip viewer overlay ---------- */
#viewer { position: fixed; inset: 0; z-index: 80; }
.viewer-backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 6, 8, 0.88);
  backdrop-filter: blur(6px);
}
.viewer-panel {
  position: relative;
  width: min(1080px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  top: 50%; transform: translateY(-50%);
  background: var(--panel);
  border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden auto;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}
.viewer-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  flex: 0 0 auto;
}
.viewer-slate { font-size: 10px; letter-spacing: 0.16em; color: var(--text-dim); }
.viewer-close {
  background: none; border: 1px solid var(--line); border-radius: 3px;
  color: var(--text-dim); font-size: 10px; letter-spacing: 0.12em;
  padding: 6px 10px; cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.viewer-close:hover { color: var(--orange); border-color: var(--orange); }
.viewer-video { aspect-ratio: 16 / 9; background: #000; flex: 0 0 auto; }
.viewer-video iframe { width: 100%; height: 100%; border: none; display: block; }
/* vertical clips get a phone-shaped viewer */
.viewer-panel.vert { width: min(720px, calc(100vw - 32px)); }
.viewer-panel.vert .viewer-video {
  aspect-ratio: 9 / 16;
  width: min(100%, calc((100vh - 300px) * 9 / 16));
  margin: 0 auto;
}
.viewer-meta {
  display: flex; gap: 36px;
  padding: 20px 24px 24px;
}
.viewer-heading { flex: 1 1 50%; }
.viewer-heading h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.viewer-log { color: var(--text-dim); font-size: 14px; max-width: 44ch; }
.viewer-details { flex: 1 1 50%; display: flex; flex-direction: column; gap: 9px; font-size: 13px; }

/* ---------- responsive ---------- */
@media (max-width: 760px) {
  :root { --transport-h: 52px; }

  #transport {
    top: auto; bottom: 0;
    border-bottom: none; border-top: 1px solid var(--line);
    gap: 12px; padding: 0 14px;
  }
  .slate-sub, .jkl-hint { display: none; }
  .timecode { font-size: 12px; min-width: 92px; }
  #hairline { display: none; }

  .hero-sticky { padding: 8vh 6vw 14vh; }
  .safe-corner.tl, .safe-corner.tr { top: 14px; }
  .safe-corner.bl, .safe-corner.br { bottom: calc(var(--transport-h) + 14px); }
  /* deck sits above the bottom transport bar */
  .fx-deck { bottom: calc(var(--transport-h) + 14px); gap: 5px; padding: 6px 8px; }
  .fx-chip { padding: 5px 8px; font-size: 9px; }

  .section-head { padding: 64px 6vw 28px; }

  .bin { flex-direction: column; overflow-x: visible; padding-bottom: 10px; }
  .clip { width: 100%; }
  .thumb-wrap { height: 52vw; max-height: 260px; }
  /* short-form bin becomes a two-up grid of vertical cards */
  .bin-short { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .clip.vert { width: 100%; }
  .clip.vert .thumb-wrap { height: auto; max-height: none; }
  .clip.vert .clip-meta { padding: 10px 10px 12px; }
  .clip.vert .clip-title { font-size: 13px; }
  .clip.vert .clip-log { font-size: 11px; }
  .bin-tabs { padding: 0 6vw; }
  .bin-tab { flex: 1; text-align: center; padding: 9px 6px 8px; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .grade-ctl { flex: 1 1 100%; }

  .viewer-meta { flex-direction: column; gap: 20px; padding: 18px 18px 22px; }
  .viewer-panel { width: calc(100vw - 16px); margin: 8px auto; max-height: calc(100vh - 16px); }

  .export-panel { grid-template-columns: 1fr; }
  .export-settings, .render-queue { padding: 26px 22px; }
  .setting.field { flex-direction: column; align-items: stretch; gap: 8px; }
  .f-input { width: 100%; }

  footer { padding-bottom: calc(var(--transport-h) + 22px); }
}

@media (prefers-reduced-motion: reduce) {
  #renderIntro { display: none; }
  body.introing .hero-title { filter: none; opacity: 1; }
  .hero-title, .clip-details, .btn-export, .fx-bar, .fx-scanlines { transition: none; }
  /* no autoplaying backdrop, no scrub runway — a static poster and normal scroll */
  #reel { height: 100vh; }
  .fx-deck { display: none; }
}
