:root {
  --stage: #f3f6fa;
  --stage-2: #e8edf3;
  --paper: #ffffff;
  --slate: #c7ced8;
  --ink: #10141a;
  --ink-2: #2a313b;
  --muted: #59616d;
  --blue: #245cff;
  --blue-soft: #dce5ff;
  --orange: #ff6038;
  --screen: #07090d;
  --white: #fff;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --shell: 1280px;
  --gutter: max(24px, calc((100vw - var(--shell)) / 2 + 24px));
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; overscroll-behavior-x: none; }
body {
  margin: 0;
  width: 100%;
  min-width: 0;
  overflow-x: clip;
  overscroll-behavior-x: none;
  background: var(--stage);
  color: var(--ink);
  font: 400 17px/1.5 var(--body);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; box-shadow: 0 0 0 5px var(--ink); }
[id] { scroll-margin-top: 84px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.skip {
  position: fixed;
  z-index: 100;
  left: 12px;
  top: 10px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  text-decoration: none;
}
.skip:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 8px var(--gutter);
  border-bottom: 1px solid var(--slate);
  background: rgba(243, 246, 250, .92);
  backdrop-filter: blur(12px);
}
.brand { min-height: 44px; display: inline-flex; align-items: center; gap: 10px; font-weight: 700; text-decoration: none; letter-spacing: -.02em; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.site-nav a, .site-footer nav a { font: 500 12px/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; text-decoration: none; }
.site-nav a { min-height: 44px; display: inline-flex; align-items: center; color: var(--muted); padding: 12px 0; border-bottom: 2px solid transparent; }
.site-nav a:hover { color: var(--ink); border-bottom-color: var(--blue); }
.header-action { min-height: 44px; display: inline-flex; align-items: center; padding: 0 18px; border-radius: 6px; background: var(--ink); color: var(--white); text-decoration: none; font-weight: 650; }
.header-action:hover { background: var(--blue); }

main { position: relative; overflow: clip; }
main::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: max(10px, calc((100vw - var(--shell)) / 2 - 14px));
  width: 2px;
  background: var(--blue);
  pointer-events: none;
}
main > section { position: relative; z-index: 4; }

/* Type */
.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font: 500 11px/1.3 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow-light { color: #a8bdff; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: -.02em; }
h1 { font-size: clamp(3.9rem, 7.4vw, 7.4rem); line-height: .86; }
h2 { font-size: clamp(2.5rem, 4.4vw, 4.4rem); line-height: .9; }
h3 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); line-height: .98; }

.actions { display: flex; flex-wrap: wrap; gap: 16px 26px; align-items: center; margin-top: 30px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}
.button-primary { background: var(--blue); border-color: var(--blue); color: var(--white); }
.button-primary:hover { background: var(--ink); border-color: var(--ink); }
.button-light { background: var(--white); border-color: var(--white); color: var(--ink); }
.button-dark { background: var(--ink); border-color: var(--ink); color: var(--white); }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 700; text-underline-offset: 5px; }
.text-link span { color: var(--blue); }
.text-link-light { color: var(--white); }
.text-link-light span { color: var(--white); }

/* Hero */
.hero {
  max-width: var(--shell);
  margin: 0 auto;
  padding: clamp(44px, 5vw, 76px) 24px clamp(40px, 4vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  grid-template-areas: "heading capture" "details capture";
  gap: clamp(36px, 5vw, 80px);
  row-gap: 0;
  align-items: center;
}
.hero-copy { grid-area: heading; max-width: 760px; min-width: 0; align-self: end; }
.hero-details { grid-area: details; min-width: 0; align-self: start; }
.hero-capture { grid-area: capture; min-width: 0; }
.hero-lede { max-width: 620px; margin: 28px 0 0; font-size: clamp(18px, 1.55vw, 22px); line-height: 1.45; color: var(--ink-2); }
.availability-note { margin: 22px 0 0; color: var(--muted); font: 500 11px/1.6 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.availability-note a { min-height: 44px; display: inline-flex; align-items: center; color: var(--blue); text-decoration: underline; text-underline-offset: 4px; }

.hero-capture { width: min(100%, 340px); justify-self: end; margin: 0; }
.hero-capture > figcaption { display: flex; justify-content: space-between; align-items: end; padding: 0 0 10px; border-bottom: 1px solid var(--slate); font: 500 10px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.hero-capture > figcaption strong { color: var(--blue); font-weight: 500; }
.hero-capture-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 600 / 1304;
  margin-top: 14px;
  overflow: hidden;
  border: 9px solid var(--screen);
  border-radius: 42px;
  background: var(--screen) url("/assets/video/captures/propplayer-quick-call-20260905-poster.jpg") center / cover no-repeat;
  box-shadow: 14px 14px 0 var(--blue), 0 26px 58px rgba(16, 20, 26, .22);
}
.hero-capture-video { display: block; width: 100%; height: 100%; object-fit: cover; background: transparent; }
.hero-capture-video[hidden] { visibility: hidden; }
.hero-capture-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  width: calc(100% - 34px);
  min-height: 70px;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 18px;
  transform: translateX(-50%);
  background: rgba(8, 9, 12, .88);
  backdrop-filter: blur(14px);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .34);
}
.hero-capture-play[hidden] { display: none; }
.hero-capture-play > span { grid-row: 1 / -1; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); font-size: 15px; }
.hero-capture-play strong { align-self: end; font-size: 15px; line-height: 1.1; }
.hero-capture-play small { align-self: start; color: #c8ced8; font: 500 9px/1.35 var(--mono); }
.hero-capture-status { position: absolute; z-index: 2; inset: auto 16px 18px; margin: 0; padding: 13px 15px; border-radius: 12px; background: rgba(8, 9, 12, .9); color: var(--white); font-size: 12px; }
.hero-capture-status a { color: #a8bdff; }
.hero-capture > p { margin: 26px 0 0; text-align: right; color: var(--muted); font: 500 10px/1 var(--mono); text-transform: uppercase; letter-spacing: .1em; }

/* Keep the complete authoring recording in a compact desktop hero rather
   than letting portrait media dictate a full-page-tall introduction. */
@media (min-width: 761px) {
  .hero { padding-top: 36px; padding-bottom: 36px; }
  .hero-capture { width: min(100%, clamp(240px, calc((100svh - 260px) * .46), 320px)); }
}

/* Run sheet: three steps */
.run-sheet { max-width: var(--shell); margin: 0 auto; padding: 0 24px clamp(48px, 5vw, 72px); }
.run-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 2px solid var(--ink); }
.run-steps li { padding: 22px 24px 8px 0; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 14px; align-items: start; }
.run-steps li + li { padding-left: 24px; border-left: 1px solid var(--slate); }
.run-number { grid-row: 1 / -1; padding-top: 3px; color: var(--blue); font: 500 12px/1 var(--mono); }
.run-steps h3 { font-size: clamp(1.6rem, 2.1vw, 2rem); }
.run-steps p { margin: 8px 0 0; color: var(--muted); font-size: 15px; line-height: 1.5; max-width: 34ch; }

/* Credits rail */
.credits {
  max-width: none;
  padding: clamp(22px, 2.4vw, 32px) var(--gutter) clamp(18px, 1.8vw, 26px);
  background: var(--ink);
  color: var(--white);
}
.credits-label { display: flex; align-items: baseline; gap: 18px; white-space: nowrap; }
.credits-label h2 { font-size: clamp(2rem, 3.2vw, 3.2rem); }
.credits-label p { margin: 0; color: #b8c0ca; font-size: clamp(11px, 1.1vw, 15px); }
.credits-label > span { margin: 0 0 6px auto; color: #9da6b2; font: 500 10px/1 var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.credit-carousel { margin-top: clamp(10px, 1.2vw, 16px); overflow: hidden; }
.credit-track { width: max-content; display: flex; will-change: transform; }
html[data-motion="ready"] .credit-track { animation: credit-loop 28s linear infinite; }
.credit-carousel:hover .credit-track, .credit-carousel:focus-within .credit-track { animation-play-state: paused; }
html[data-motion-paused="true"] .credit-track { animation-play-state: paused; }
html[data-motion-paused="true"] .credit-carousel { overflow-x: auto; }
html:not([data-motion="ready"]) .credit-carousel { overflow-x: auto; }
html:not([data-motion="ready"]) .credit-titles[aria-hidden="true"] { display: none; }
.credit-titles { width: max-content; flex: none; list-style: none; margin: 0; padding: 0; display: flex; border-block: 1px solid #424852; }
.credit-titles li { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; padding: 12px clamp(30px, 4vw, 56px) 14px; border-right: 1px solid #424852; font: 700 clamp(2.2rem, 3.8vw, 3.8rem)/.85 var(--display); text-transform: uppercase; letter-spacing: -.02em; scroll-snap-align: start; }
.credit-titles a { min-height: 44px; display: inline-flex; align-items: center; color: inherit; text-decoration: none; }
.credit-titles a:hover { color: #a8bdff; text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 8px; }
@keyframes credit-loop { to { transform: translateX(-50%); } }
.value-strip { width: 100%; list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid #424852; border-radius: 8px; overflow: hidden; background: #15191f; }
.value-strip li { display: grid; gap: 4px; padding: 16px 18px; border-right: 1px solid #424852; }
.value-strip li:last-child { border-right: 0; }
.value-strip strong { color: #a8bdff; font: 600 10px/1.2 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.value-strip span { color: #d5dbe3; font-size: 14px; line-height: 1.45; }
.credits .value-strip { margin-top: clamp(12px, 1.4vw, 18px); }
.credits .value-strip li { padding: clamp(13px, 1.4vw, 18px); }

/* Feature modules */
.modules { max-width: none; padding: clamp(56px, 6vw, 96px) var(--gutter); background: var(--stage); }
.modules-heading { max-width: var(--shell); margin: 0 auto 32px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 380px); column-gap: 48px; align-items: end; }
.modules-heading .eyebrow { grid-column: 1 / -1; }
.modules-heading h2 { max-width: 620px; }
.modules-heading > p:not(.eyebrow) { margin: 0 0 6px; color: var(--muted); font-size: 16px; }
.motion-controls { grid-column: 1 / -1; justify-self: end; display: flex; align-items: center; gap: 10px; }
.motion-pause { min-height: 44px; padding: 0 18px; border: 1px solid var(--slate); border-radius: 8px; background: var(--paper); color: var(--ink); cursor: pointer; font: 650 12px/1 var(--body); letter-spacing: .02em; }
.motion-pause[aria-pressed="true"] { border-color: var(--blue); background: var(--blue); color: #fff; }
.motion-note { color: var(--muted); font: 500 11px/1.4 var(--mono); }
.module-grid { max-width: var(--shell); list-style: none; margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.module-grid li { display: grid; grid-template-rows: auto auto 1fr; gap: 12px; padding: 14px 14px 20px; border: 1px solid var(--slate); border-radius: 14px; background: var(--paper); }
.module-grid figure { position: relative; margin: 0; aspect-ratio: 1 / 1.04; overflow: hidden; border-radius: 10px; background: var(--stage-2); }
.module-grid img { position: absolute; left: 21%; top: 20px; width: 58%; border: 6px solid var(--screen); border-radius: 26px; box-shadow: 0 18px 36px rgba(16, 20, 26, .18); transform: translateY(var(--shift, 0%)); opacity: 0; }
.module-grid img:first-child { opacity: 1; }
/* Each card cycles its captures: hold about three seconds, half-second crossfade, cards staggered so they never flip together. */
html[data-motion="ready"] .module-frames img { --period: 3.4s; --dur: calc(var(--n) * var(--period)); animation: module-cycle-3 var(--dur) linear infinite; animation-delay: calc(var(--i) * var(--period) + var(--stagger, 0s)); }
html[data-motion="ready"] .module-frames[data-frames="4"] img { animation-name: module-cycle-4; }
html[data-motion="ready"] .module-frames[data-frames="5"] img { animation-name: module-cycle-5; }
html[data-motion-paused="true"] .module-frames img { animation-play-state: paused; }
@keyframes module-cycle-3 { 0% { opacity: 0; } 5% { opacity: 1; } 33.3% { opacity: 1; } 38.3% { opacity: 0; } 100% { opacity: 0; } }
@keyframes module-cycle-4 { 0% { opacity: 0; } 4% { opacity: 1; } 25% { opacity: 1; } 29% { opacity: 0; } 100% { opacity: 0; } }
@keyframes module-cycle-5 { 0% { opacity: 0; } 3% { opacity: 1; } 20% { opacity: 1; } 23% { opacity: 0; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .module-frames img { animation: none; } .module-frames img:first-child { opacity: 1; } }
.module-grid h3 { padding: 0 6px; }
.module-grid p { margin: 0; padding: 0 6px; color: var(--muted); font-size: 15px; line-height: 1.5; }

/* Remote proof */
.remote-proof {
  padding: clamp(24px, 2.5vw, 36px) var(--gutter) clamp(64px, 7vw, 100px);
  border-top: 1px solid #424852;
  background: var(--ink);
  color: var(--white);
}
.remote-heading { max-width: var(--shell); margin: 0 auto; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(28px, 3vw, 44px); align-items: center; padding-top: clamp(20px, 3vw, 44px); }
.remote-title-lockup { min-width: 0; display: flex; align-items: center; gap: 18px; }
.remote-app-icon { width: 64px; height: 64px; flex: none; border-radius: 15px; }
.remote-title-lockup h2 { white-space: nowrap; font-size: clamp(2.2rem, 3.2vw, 3.6rem); }
.remote-heading > p { max-width: 640px; margin: 0; color: #b5bdc8; font-size: clamp(15px, 1.25vw, 17px); line-height: 1.55; }
.remote-proof > .try-line, .remote-proof > .showcase-controls, .remote-proof > .demo-stage, .remote-proof > .remote-facts { max-width: var(--shell); margin-left: auto; margin-right: auto; }
.try-line { margin: 22px auto 14px; color: #b5bdc8; font: 500 12px/1.4 var(--mono); text-transform: uppercase; letter-spacing: .07em; }
.try-line span { color: var(--orange); margin-right: 8px; }
.showcase-controls { margin: 0 0 14px; padding: 0; border: 0; display: flex; flex-wrap: wrap; align-items: end; gap: 12px 20px; }
.showcase-controls[hidden] { display: none; }
.remote-proof > [data-role="capture-status"] { max-width: var(--shell); margin: 0 auto 18px; padding: 0 24px; color: #9ca6b2; font: 500 11px/1.5 var(--mono); }
.showcase-controls legend { width: 100%; color: #9ca6b2; font: 500 10px/1.2 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.showcase-control-group { display: grid; gap: 6px; font-size: 12px; }
.segmented-control { display: inline-grid; grid-auto-flow: column; padding: 3px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; }
.segmented-control label { position: relative; min-width: 72px; }
.segmented-control input { position: absolute; opacity: 0; }
.segmented-control span, .compact-options button { min-height: 44px; display: grid; place-items: center; padding: 0 12px; border: 0; border-radius: 6px; background: transparent; color: #cbd1d9; cursor: pointer; }
.segmented-control input:checked + span, .compact-options button[aria-pressed="true"] { background: #f6f7f9; color: #15161a; }
.segmented-control input:focus-visible + span { outline: 3px solid var(--white); outline-offset: 2px; box-shadow: 0 0 0 5px var(--ink); }
.showcase-controls > p { margin: 0 0 8px auto; color: #9ca6b2; font: 500 10px/1.2 var(--mono); }
.vfx-options strong { color: #9ca6b2; font: 600 10px/1 var(--mono); text-transform: uppercase; letter-spacing: .06em; }
.compact-options { display: flex; flex-wrap: wrap; gap: 4px; }
.compact-options button:disabled { cursor: not-allowed; opacity: .38; }
.demo-stage {
  height: clamp(650px, 80vh, 860px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 360px);
  gap: clamp(24px, 4vw, 64px);
  align-items: stretch;
}
.demo-stage[data-device="ipad"] { grid-template-columns: minmax(0, 1fr) minmax(380px, 520px); }

/* Recorded product demo; tabs below are only the compact website adaptation. */
.remote {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  background: #1e1e22;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
}
.remote-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 8px; gap: 5px; border-bottom: 1px solid rgba(255,255,255,.12); background: #17171a; }
.remote-tabs button { min-height: 44px; padding: 6px 8px; border: 0; border-radius: 7px; background: transparent; color: #aeb2bb; font-size: 12px; font-weight: 650; cursor: pointer; }
.remote-tabs button[aria-selected="true"] { background: #0a84ff; color: #fff; }
.remote-panel { min-height: 0; }
.remote-panel[hidden] { display: none; }
.remote-column-title { display: none; }
.players-panel { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; }
.loaded-player { min-height: 62px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 9px 13px; border-bottom: 1px solid rgba(255,255,255,.12); background: #222226; }
.loaded-player .player-dot { width: 10px; height: 10px; border-radius: 50%; background: #34c759; box-shadow: 0 0 0 4px rgba(52,199,89,.13); }
.capture-dot { width: 10px; height: 10px; border-radius: 50%; background: #5b6069; }
.loaded-player div { display: grid; }
.loaded-player span { color: #9ca1aa; font-size: 11px; }
.loaded-player b { color: #65d67e; font: 700 9px/1 var(--mono); letter-spacing: .08em; }
.monitor-panel { padding: 14px; display: grid; grid-template-rows: auto minmax(0, 1fr) auto; gap: 12px; overflow: hidden; }
.monitor-status { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; color: #d9dce2; }
.monitor-status > span:last-child { color: #9ca1aa; font: 500 10px/1 var(--mono); text-transform: uppercase; }
.monitor-frame { min-width: 0; min-height: 0; position: relative; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.15); background: #050506; contain: layout paint; }
.monitor-canvas { min-width: 0; min-height: 0; position: relative; height: 100%; width: auto; max-width: 100%; aspect-ratio: var(--preview-ratio, 786/1704); overflow: hidden; }
.monitor-frame img { min-width: 0; min-height: 0; width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; filter: var(--preview-filter, none); }
.monitor-state-overlay { position: absolute; inset: 0; z-index: 8; display: grid; place-items: center; opacity: 0; pointer-events: none; }
.remote-proof[data-black] .monitor-state-overlay, .remote-proof[data-proximity-black] .monitor-state-overlay { opacity: 1; background: #000; color: #fff; font: 800 18px/1 var(--body); letter-spacing: .12em; }
.monitor-panel > p { margin: 0; color: #9ca1aa; font-size: 11px; }
.controls-panel { padding: 10px; display: grid; align-content: start; gap: 8px; overflow-y: auto; }
.controls-panel section { padding: 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: #26262a; }
.controls-panel h3 { font: 650 11px/1.2 var(--body); text-transform: none; letter-spacing: 0; }
.controls-panel section > p { margin: 8px 0 0; color: #969ba5; font-size: 10px; }
.grading-grid input { accent-color: #0a84ff; }
.control-section-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.control-section-heading h3 { margin: 0; }
.reset-all-grades, .grade-reset { min-height: 44px; border: 0; background: transparent; color: #64aaff; cursor: pointer; font: 650 9px/1 var(--mono); text-transform: uppercase; letter-spacing: .04em; }
.grading-grid { margin-top: 10px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 12px; }
.grade-row { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 5px 7px; align-items: center; }
.grade-row label { min-width: 0; color: #c7cad1; font-size: 10px; }
.grade-row input { grid-column: 1 / -1; width: 100%; min-height: 44px; accent-color: #0a84ff; }
.grade-row output { color: #8f95a0; font: 500 9px/1 var(--mono); }
.grade-reset { padding: 4px 0 4px 4px; opacity: .82; }
.grade-reset:hover, .reset-all-grades:hover { color: #fff; }
.controls-safety-note { border-color: rgba(255,69,58,.36) !important; }
.cue-list {
  min-height: 0;
  list-style: none;
  margin: 0;
  padding: 12px;
  display: grid;
  align-content: start;
  gap: 4px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}
.surface-roster { margin: 0 12px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: #232328; color: #aeb4be; }
.surface-roster summary { min-height: 44px; display: flex; align-items: center; padding: 10px 12px; cursor: pointer; color: #d9dce2; font: 650 10px/1.2 var(--mono); text-transform: uppercase; letter-spacing: .05em; }
.surface-roster p { margin: 0; padding: 0 12px 8px; font-size: 10px; }
.surface-roster ul { list-style: none; margin: 0; padding: 0 12px 12px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px 8px; color: #c4c9d1; font-size: 10px; }
.surface-roster li::before { content: "+"; margin-right: 5px; color: #5f9fff; }
.cue { min-height: 54px; width: 100%; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 8px; padding: 6px 12px; border: 2px solid transparent; border-radius: 8px; background: #27272a; color: #fff; text-align: left; cursor: pointer; }
.cue:hover { background: #303034; }
.cue-number { color: rgba(255,255,255,.5); font: 400 13px/1 var(--mono); }
.cue-label { font-weight: 600; }
.cue-state { color: #fff; font-size: 10px; font-weight: 700; }
.cue[data-state="active"] { border-color: #007aff; background: rgba(0,122,255,.14); }
.cue[data-state="next"] { border-color: #34c759; background: rgba(52,199,89,.10); }
.cue[data-state="done"] { opacity: .52; }
.scene-safety-bar { min-height: 58px; padding: 8px 10px; display: flex; align-items: center; gap: 6px; border-top: 1px solid rgba(255,255,255,.12); background: #222226; }
.scene-safety-bar > strong { margin-right: auto; color: #aeb2bb; font: 650 9px/1.1 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.scene-safety-bar button, .transport button { min-width: 44px; min-height: 44px; padding: 0 9px; border: 1px solid rgba(255,255,255,.12); border-radius: 6px; background: rgba(255,255,255,.10); color: #fff; cursor: pointer; font: 700 9px/1 var(--mono); letter-spacing: .04em; }
.scene-safety-bar .black-control[aria-pressed="true"] { border-color: #ff453a; background: #ff453a; }
.scene-safety-bar .vfx-control[aria-expanded="true"] { border-color: #34c759; background: #175d2b; }
.transport { min-height: 52px; padding: 5px 10px; display: flex; align-items: center; gap: 6px; border-top: 1px solid rgba(255,255,255,.12); background: #222226; }
.transport button { min-height: 44px; }
.transport button:hover { background: rgba(255,255,255,.18); }
.vfx-options { max-height: 340px; padding: 10px 12px 12px; display: grid; gap: 8px; overflow-y: auto; border-top: 1px solid rgba(255,255,255,.12); background: #19191d; scrollbar-gutter: stable; }
.vfx-options[hidden] { display: none; }
.vfx-options-heading, .vfx-group-heading { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.vfx-options-heading { min-height: 34px; }
.vfx-options-heading > div { min-width: 0; }
.vfx-options-heading strong { color: #e5e8ed; font-size: 11px; }
.vfx-options-heading p { margin: 3px 0 0; color: #9299a4; font: 500 8px/1.3 var(--mono); }
.vfx-group { min-width: 0; padding: 9px; display: grid; gap: 8px; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; background: #222227; }
.vfx-group-heading strong { color: #b9c0c9; font: 650 9px/1.2 var(--mono); text-transform: uppercase; letter-spacing: .05em; }
.vfx-options button { min-height: 44px; padding: 0 9px; border: 1px solid rgba(255,255,255,.16); border-radius: 6px; background: #29292e; color: #fff; cursor: pointer; }
.vfx-options button[aria-pressed="true"] { border-color: #6aa7ff; background: #174a86; }
.vfx-options button:disabled { cursor: not-allowed; opacity: .36; }
.vfx-options .vfx-reset { min-height: 44px; padding: 0 5px; border: 0; background: transparent; color: #64aaff; font: 650 8px/1 var(--mono); letter-spacing: .04em; text-transform: uppercase; }
.vfx-options .vfx-reset:hover { color: #fff; }
.vfx-preset-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; }
.vfx-preset-grid button { min-width: 0; padding: 0 7px; display: flex; align-items: center; gap: 6px; color: #d9dce2; font-size: 9px; text-align: left; }
.vfx-preset-grid i { width: 13px; height: 13px; flex: none; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; background: var(--swatch); }
.vfx-marker-toolbar { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 7px; }
.vfx-marker-toolbar .compact-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px; }
.vfx-marker-toolbar .compact-options button { min-width: 0; padding: 0 5px; font-size: 9px; }
.vfx-toggle { font-weight: 700; }
.marker-detail { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 8px 12px; }
.marker-detail[data-disabled] { opacity: .38; }
.marker-detail[data-disabled] button, .marker-detail[data-disabled] input { pointer-events: none; }
.marker-color-row, .marker-size-row { min-width: 0; display: grid; align-items: center; gap: 6px; color: #aeb4be; font-size: 9px; }
.marker-swatches { display: flex; gap: 5px; }
.marker-swatches button { min-width: 44px; width: 44px; min-height: 44px; padding: 0; border-radius: 50%; background: var(--swatch); }
.marker-swatches button[aria-pressed="true"] { border-color: #fff; background: var(--swatch); box-shadow: 0 0 0 2px #0a84ff; }
.marker-size-row { grid-template-columns: auto minmax(80px, 1fr) auto; }
.marker-size-row input { min-width: 80px; width: 100%; min-height: 44px; accent-color: #0a84ff; }
.marker-size-row output { color: #8f95a0; font: 500 9px/1 var(--mono); }
.overlay-mark-actions, .proximity-controls { display: flex; flex-wrap: wrap; gap: 5px; }
.proximity-controls .vfx-toggle { min-width: 58px; }
.proximity-group > p { margin: 0; color: #969da7; font-size: 9px; }
.vfx-instruction, .vfx-selection-status { margin: 0; color: #a4abb5; font: 500 9px/1.4 var(--mono); }
.vfx-selection-status { color: #c8ced6; }
.swipe-options { padding-top: 8px; display: flex; align-items: center; gap: 6px; border-top: 1px solid rgba(255,255,255,.09); }
.swipe-options[hidden] { display: none; }
.direction-options { display: flex; gap: 4px; }
.direction-options button { min-width: 44px; padding: 0; font-size: 18px; }
.swipe-options label { margin-left: 8px; display: grid; grid-template-columns: auto minmax(90px, 1fr) auto; align-items: center; gap: 7px; color: #aeb4be; font-size: 10px; }
.swipe-options input { min-width: 90px; min-height: 44px; accent-color: #0a84ff; }
.swipe-options output { color: #8f95a0; font: 500 9px/1 var(--mono); }
.count { margin-left: auto; display: inline-flex; align-items: center; gap: 3px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.15); border-radius: 6px; font-family: var(--mono); }
.count i { color: rgba(255,255,255,.45); font-style: normal; }
.go { min-height: 74px; width: calc(100% - 24px); margin: 0 12px 12px; border: 0; border-radius: 10px; background: linear-gradient(180deg,#33c759 0%,#29a645 100%); color: #fff; cursor: pointer; }
.go:hover { filter: brightness(1.07); }
.go > span { display: block; font-size: 21px; font-weight: 900; letter-spacing: .08em; }
.go small { display: block; margin-top: 5px; opacity: .75; }
.go:disabled { opacity: .5; cursor: default; }

.demo-phone {
  min-height: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
}
.demo-screen {
  position: relative;
  height: 100%;
  width: auto;
  max-width: 100%;
  aspect-ratio: var(--preview-ratio, 786/1704);
  padding: 10px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.18);
}
.frame { position: absolute; inset: 10px; width: calc(100% - 20px); height: calc(100% - 20px); object-fit: contain; background: #000; opacity: 0; filter: var(--preview-filter, none); transition: filter .18s linear; }
.frame[data-shown] { opacity: 1; }
.recorded-transition { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #000; z-index: 2; filter: var(--preview-filter, none); pointer-events: none; }
.recorded-transition[hidden] { display: none; }
.demo-screen > .recorded-transition { inset: 10px; width: calc(100% - 20px); height: calc(100% - 20px); }
.grade-tint { position: absolute; inset: 0; z-index: 3; pointer-events: none; background: var(--temperature-gains, rgb(255 255 255)); mix-blend-mode: multiply; }
.dim-overlay { position: absolute; inset: 0; z-index: 3; pointer-events: none; background: #000; opacity: var(--dim-alpha, 0); }
.blackout { position: absolute; inset: 0; z-index: 5; background: #000; opacity: 0; pointer-events: none; transition: opacity .16s linear; }
.remote-proof[data-black] .blackout, .remote-proof[data-proximity-black] .blackout { opacity: 1; }
.vfx-plate, .monitor-vfx-plate { position: absolute; inset: 0; z-index: 4; display: none; overflow: hidden; background: #00b54a; touch-action: none; }
.remote-proof[data-vfx] .vfx-plate { display: block; }
.remote-proof[data-vfx] .monitor-vfx-plate { display: block; }
.tracking-layer, .vfx-marker-layer { position: absolute; inset: 0; }
.tracking-layer i { position: absolute; width: var(--tracking-size, 7%); aspect-ratio: 1; background: var(--marker-color, #fff); clip-path: polygon(38% 0,62% 0,62% 38%,100% 38%,100% 62%,62% 62%,62% 100%,38% 100%,38% 62%,0 62%,0 38%,38% 38%); transform: translate(-50%,-50%); }
.tracking-layer i:nth-child(1){left:10%;top:8%}.tracking-layer i:nth-child(2){left:90%;top:8%}.tracking-layer i:nth-child(3){left:10%;top:92%}.tracking-layer i:nth-child(4){left:90%;top:92%}.tracking-layer i:nth-child(5){left:50%;top:50%}
.remote-proof[data-markers-hidden] .tracking-layer { display: none; }
.vfx-canvas[data-shape="circle"] i { clip-path: circle(50%); }.vfx-canvas[data-shape="square"] i { clip-path: none; }
.vfx-marker { position: absolute; left: var(--marker-x); top: var(--marker-y); z-index: 2; transform: translate(-50%,-50%); border: 0; background: transparent; color: #fff; cursor: grab; touch-action: none; user-select: none; filter: drop-shadow(0 1px 2px rgba(0,0,0,.6)); }
.vfx-marker::before { content: ""; position: absolute; left: 50%; top: 50%; width: max(44px, 100%); height: max(44px, 100%); transform: translate(-50%,-50%); }
.vfx-marker:active { cursor: grabbing; }
.vfx-marker:focus-visible, .vfx-marker[data-selected="true"] { outline: 3px solid #ffcc00; outline-offset: 5px; }
.vfx-marker[data-marker-type="tap"] { width: 17%; aspect-ratio: 1; display: grid; place-items: center; border: max(2px, .45vw) solid #fff; border-radius: 50%; font: 800 clamp(13px, 2vw, 21px)/1 var(--body); }
.vfx-marker[data-marker-type="swipe"] { width: var(--swipe-length); height: 12%; }
.vfx-marker .swipe-line { position: absolute; left: 0; top: 50%; width: 100%; height: max(3px, .45vw); border-radius: 99px; background: #fff; transform-origin: 50% 50%; transform: translateY(-50%) rotate(var(--swipe-angle)); }
.vfx-marker .swipe-line::after { content: ""; position: absolute; right: -1px; top: 50%; width: 24%; aspect-ratio: 1; border-top: max(3px, .45vw) solid #fff; border-right: max(3px, .45vw) solid #fff; transform: translateY(-50%) rotate(45deg); }
.vfx-marker .marker-number { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; min-width: 22px; min-height: 22px; border-radius: 99px; background: rgba(0,0,0,.64); color: #fff; font: 800 11px/1 var(--body); transform: translate(-50%,-50%); }
.demo-phone figcaption { width: 100%; display: flex; flex-wrap: wrap; gap: 6px 14px; justify-content: space-between; padding-top: 12px; font: 500 10px/1.4 var(--mono); text-transform: uppercase; letter-spacing: .09em; color: #aab1bc; }
.demo-phone figcaption span { color: #a8bdff; }
.remote-facts { list-style: none; margin: 38px 0 0; padding: 22px 0 0; border-top: 1px solid #414753; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; color: #c5cbd3; }
.remote-facts li { padding-left: 10px; border-left: 2px solid #52627b; font-size: 13px; }
.remote-facts strong { display: block; margin-bottom: 4px; color: #8ab2ff; font: 650 10px/1.2 var(--mono); text-transform: uppercase; letter-spacing: .05em; }


.scenic-doorway {
  padding: clamp(72px, 7vw, 100px) max(28px, calc((100vw - var(--shell)) / 2 + 28px));
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  column-gap: clamp(40px, 5vw, 80px);
  row-gap: 32px;
  align-items: start;
  background: #191927;
  color: var(--white);
}
.scenic-copy { min-width: 0; }
.scenic-title-lockup { min-width: 0; max-width: 100%; display: flex; align-items: center; gap: 18px; }
.scenic-icon { width: 72px; height: 72px; flex: none; }
.scenic-title-lockup h2 { min-width: 0; white-space: nowrap; font-size: clamp(2.65rem, 4vw, 4.2rem); }
.scenic-tagline { margin: 18px 0 0; color: #b6a8ff; font: 500 12px/1.4 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.scenic-description { margin: 26px 0 32px; color: #c6c7d2; font-size: 18px; }
.scenic-expand { grid-column: 1 / -1; min-width: 0; margin-top: 0; }
.scenic-expand > summary { width: max-content; cursor: pointer; list-style: none; }
.scenic-expand > summary::-webkit-details-marker { display: none; }
.scenic-expand > summary::after { content: "+"; margin-left: 14px; color: var(--blue); font: 700 20px/1 var(--mono); }
.scenic-expand[open] > summary::after { content: "−"; }
.scenic-expanded { min-width: 0; margin-top: 30px; padding-top: 28px; border-top: 1px solid #4a4a60; }
.scenic-workflow { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.scenic-workflow article { padding-left: 14px; border-left: 2px solid #6f7cff; }
.scenic-workflow span { color: #8d96a7; font: 500 9px/1 var(--mono); }
.scenic-workflow strong { display: block; margin-top: 5px; }
.scenic-workflow p { margin: 5px 0 0; color: #aaaabd; font-size: 13px; }
.scenic-apps { margin-top: 28px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid #4a4a60; }
.scenic-apps article { min-width: 0; padding: 22px; border-right: 1px solid #4a4a60; }
.scenic-apps article:last-child { border-right: 0; }
.scenic-apps img { width: 58px; height: 58px; }
.scenic-apps h3 { margin-top: 24px; font-size: clamp(1.7rem, 2.4vw, 2.5rem); }
.scenic-apps p { margin: 12px 0 0; color: #aaaabd; font-size: 14px; }
.scenic-capabilities { list-style: none; margin: 22px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: #4a4a60; border: 1px solid #4a4a60; }
.scenic-capabilities li { padding: 10px 12px; background: #202031; color: #c7c7d2; font-size: 12px; }
.scenic-plan { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; }
.scenic-plan > div { max-width: 560px; margin-right: auto; display: grid; gap: 6px; }
.scenic-plan span { color: #aaaabd; font-size: 14px; }
.scenic-carousel { min-width: 0; align-self: start; }
.scenic-carousel-track { width: 100%; display: flex; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: none; border: 1px solid #4a4a60; box-shadow: 22px 22px 0 #28283c; }
.scenic-carousel-track::-webkit-scrollbar { display: none; }
.scenic-carousel figure { min-width: 100%; margin: 0; scroll-snap-align: start; background: #11111c; }
.scenic-carousel img { width: 100%; aspect-ratio: 16/9; object-fit: contain; }
.scenic-carousel figcaption { min-height: 48px; padding: 13px 15px; color: #c4c4d0; font: 500 10px/1.4 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.scenic-carousel-controls { margin-top: 34px; display: flex; justify-content: flex-end; align-items: center; gap: 9px; }
.scenic-carousel-controls button { width: 44px; height: 44px; border: 1px solid #5b5b70; border-radius: 50%; background: #29293c; color: #fff; }
.scenic-carousel-controls p { margin: 0 5px; color: #aaaabd; font: 500 10px/1 var(--mono); }

@media (min-width: 981px) {
  .scenic-expanded {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
    grid-template-areas:
      "workflow apps"
      "capabilities plan";
    gap: 24px 32px;
  }
  .scenic-workflow { grid-area: workflow; grid-template-columns: 1fr; }
  .scenic-apps { grid-area: apps; margin-top: 0; }
  .scenic-capabilities { grid-area: capabilities; margin-top: 0; }
  .scenic-plan { grid-area: plan; margin-top: 0; align-self: start; }
}


/* Productions + footer */
.productions { padding: clamp(64px, 8vw, 120px) var(--gutter); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 140px); align-items: start; background: #ffe6dd; }
.productions h2 { font-size: clamp(2.8rem, 5vw, 5.4rem); }
.production-copy { padding-top: 30px; border-top: 2px solid var(--orange); }
.production-copy p { max-width: 640px; margin: 0 0 28px; font-size: clamp(18px, 1.7vw, 22px); }

.site-footer { min-height: 110px; padding: 28px var(--gutter); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; background: var(--ink); color: var(--white); border-top: 1px solid #343a44; }
.site-footer p { margin: 0; color: #8f98a5; font: 500 10px/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.site-footer nav { justify-self: end; display: flex; gap: 22px; color: #b7bec8; }
.site-footer nav a { min-height: 44px; display: inline-flex; align-items: center; }

/* Desktop: the Remote demo mirrors the real three-column Mac window. */
@media (min-width: 1100px) {
  .remote { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) minmax(0, .95fr); grid-template-rows: minmax(0, 1fr) auto auto auto auto; }
  .remote-tabs { display: none; }
  .remote-panel, .remote-panel[hidden] { display: grid; min-height: 0; border-right: 1px solid rgba(255,255,255,.12); }
  .controls-panel { border-right: 0; }
  .scene-safety-bar, .vfx-options, .transport, .go { grid-column: 1 / -1; }
  .go { width: calc(100% - 24px); }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(260px, .48fr); gap: 46px; }
  h1 { font-size: clamp(4.2rem, 10.5vw, 7rem); }
  .demo-stage { grid-template-columns: minmax(0, 1fr) minmax(250px, 310px); gap: 28px; }
  .demo-stage[data-device="ipad"] { grid-template-columns: minmax(0, 1fr) minmax(300px, 420px); }
  .scenic-title-lockup { gap: 14px; }
  .scenic-icon { width: 56px; height: 56px; }
  .scenic-title-lockup h2 { font-size: clamp(1.9rem, 4vw, 2.65rem); }
}

@media (max-width: 760px) {
  .site-header { padding: 9px 18px; gap: 14px; }
  .site-nav { display: none; }
  .header-action { margin-left: auto; }
  main::before { left: 8px; }
  .hero { grid-template-columns: minmax(0, 1fr); grid-template-areas: "heading" "capture" "details"; row-gap: 28px; padding: 28px 24px 58px; }
  .hero-details .hero-lede { margin-top: 0; }
  .hero-capture { width: min(78vw, 340px); justify-self: center; }
  .credits { padding-left: 28px; padding-right: 28px; }
  .credits-label > span { display: none; }
  .credit-carousel { margin-right: -28px; padding-right: 28px; }
  .remote-heading { grid-template-columns: 1fr; gap: 16px; }
  .demo-stage {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
  }
  .demo-stage[data-device="ipad"] { grid-template-columns: 1fr; }
  .demo-phone {
    order: 1;
    position: sticky;
    top: 68px;
    z-index: 8;
    height: min(38svh, 320px);
    padding: 10px 12px 12px;
    border: 1px solid #414753;
    border-radius: 10px;
    background: #10141a;
    box-shadow: 0 16px 28px rgba(0,0,0,.36);
  }
  .demo-phone figcaption { padding-top: 8px; }
  .remote { order: 2; min-height: 660px; }
  .remote-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scenic-doorway { grid-template-columns: 1fr; }
  .scenic-copy { max-width: none; }
  .productions { grid-template-columns: 1fr; }
  .production-copy { padding-top: 26px; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; }
  .site-footer nav { justify-self: start; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(2.8rem, 12.5vw, 4.2rem); }
  h2 { font-size: clamp(3rem, 15vw, 4.9rem); }
  .hero { padding: 24px 20px 50px; }
  .value-strip { grid-template-columns: 1fr; }
  .value-strip li { border-right: 0; border-bottom: 1px solid #424852; }
  .value-strip li:last-child { border-bottom: 0; }
  .showcase-control-group { width: 100%; }.segmented-control { grid-template-columns: repeat(2,1fr); }.showcase-controls > p { margin-left:0; }
  .vfx-options { max-height: 390px; padding-left: 9px; padding-right: 9px; }
  .vfx-options button:not(.vfx-reset) { min-height: 44px; }
  .marker-detail { grid-template-columns: 1fr; }
  .marker-color-row { grid-template-columns: 1fr; }
  .marker-swatches { flex-wrap: wrap; justify-content: flex-start; }
  .marker-swatches button { min-width: 44px; width: 44px; min-height: 44px; }
  .swipe-options { align-items: flex-start; flex-wrap: wrap; }
  .swipe-options label { width: 100%; margin-left: 0; }
  .hero-lede { margin-top: 26px; font-size: 18px; }
  .hero-capture { width: min(76vw, 300px); }
  .hero-capture-shell { border-width: 7px; border-radius: 34px; box-shadow: 12px 12px 0 var(--blue), 0 22px 48px rgba(16, 20, 26, .22); }
  .actions { align-items: stretch; }
  .actions .button { width: 100%; }
  .credits, .remote-proof, .scenic-doorway, .productions { padding: 68px 24px; }
  .credits { padding-top: 24px; padding-bottom: 18px; }
  .credit-carousel { margin-top: 10px; }
  .credit-titles li { padding: 12px 28px 14px; font-size: clamp(2.35rem, 12vw, 3.3rem); }
  .credits .value-strip { margin-top: 12px; }
  .credits .value-strip li { padding: 12px 14px; }
  .remote-proof { padding-top: 22px; }
  .credits-label { gap: 12px; }
  .credits-label h2 { font-size: clamp(2.65rem, 13vw, 3.2rem); }
  .hero-app-icon { width: 58px; height: 58px; }
  .remote-title-lockup { align-items: center; gap: 14px; }
  .remote-app-icon { width: 58px; height: 58px; border-radius: 13px; }
  .remote-title-lockup h2 { font-size: clamp(1.6rem, 6.8vw, 1.9rem); }
  .remote-heading > p { font-size: 16px; line-height: 1.5; }
  .remote-tabs button { padding-left: 4px; padding-right: 4px; font-size: 10px; }
  .grading-grid { grid-template-columns: 1fr; }
  .remote-facts { grid-template-columns: 1fr; }
  .cue-list { padding: 8px; }
  .cue { min-height: 46px; grid-template-columns: 36px 1fr auto; padding-left: 8px; padding-right: 8px; }
  .transport { min-height: 58px; padding: 7px 8px; gap: 5px; }
  .transport button { min-width: 44px; }
  .count { padding-left: 8px; padding-right: 8px; }
  .go { min-height: 60px; width: calc(100% - 16px); margin: 0 8px 8px; }
  .go > span { font-size: 18px; }
  .go small { margin-top: 2px; }
  .scenic-title-lockup { gap: 12px; }
  .scenic-icon { width: 48px; height: 48px; }
  .scenic-title-lockup h2 { font-size: clamp(1.6rem, 6.8vw, 1.9rem); }
  .scenic-carousel-track { box-shadow: 12px 12px 0 #28283c; }
  .scenic-expand > summary { width: 100%; }
  .scenic-apps { grid-template-columns: 1fr; }
  .scenic-apps article { border-right: 0; border-bottom: 1px solid #4a4a60; }
  .scenic-apps article:last-child { border-bottom: 0; }
  .scenic-capabilities { grid-template-columns: 1fr; }
  .scenic-workflow { grid-template-columns: 1fr; }
  .scenic-plan .button, .scenic-plan .text-link { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .credit-carousel { overflow-x: auto; }
  .credit-titles[aria-hidden="true"] { display: none; }
}

@media (max-width: 980px) {
  .run-steps { grid-template-columns: 1fr; }
  .run-steps li + li { padding-left: 0; border-left: 0; border-top: 1px solid var(--slate); }
  .run-steps li { padding-right: 0; }
  .modules-heading { grid-template-columns: 1fr; row-gap: 12px; }
  .module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .hero { padding-bottom: 36px; }
  .run-sheet { padding-bottom: 40px; }
  .modules { padding-left: 20px; padding-right: 20px; }
  .credits { padding-left: 20px; padding-right: 20px; }
  .credit-carousel { margin-right: -20px; padding-right: 20px; }
  .remote-proof, .scenic-doorway, .productions, .site-footer { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 560px) {
  .module-grid { grid-template-columns: 1fr; }
  .module-grid img { width: 58%; }
  .modules { padding-top: 48px; padding-bottom: 48px; }
  h3 { font-size: 1.5rem; }
}

/* Layout refinements */
.scenic-doorway { align-items: center; }
.scenic-carousel-controls { justify-content: flex-start; }
@media (min-width: 1100px) {
  /* The Monitor column already shows the captured phone preview, so the separate phone preview is desktop-hidden. */
  .demo-stage { height: clamp(560px, 72vh, 760px); grid-template-columns: minmax(0, 1fr); }
  .demo-stage[data-device="ipad"] { grid-template-columns: minmax(0, 1fr); }
  /* The expanded editor needs room for both the canvas and its controls. */
  .remote-proof[data-vfx] .demo-stage { height: auto; min-height: clamp(560px, 72vh, 760px); }
  .remote-proof[data-vfx] .remote { grid-template-rows: clamp(400px, 50vh, 560px) auto auto auto auto; }
  .demo-phone { display: none; }
  .controls-panel .grading-grid { grid-template-columns: 1fr; }
  .cue { grid-template-columns: 36px 1fr auto; }
  .cue-label { font-size: 15px; }
  .monitor-panel { padding: 12px; }
}

/* Highlight rail: the six lines a producer needs, in one glance */
.highlights { max-width: var(--shell); margin: 0 auto; padding: 0 24px clamp(36px, 4vw, 56px); }
.highlight-rail { list-style: none; margin: 0; padding: 18px 0 0; border-top: 2px solid var(--ink); display: flex; flex-wrap: wrap; column-gap: 28px; row-gap: 10px; }
.highlight-rail li { position: relative; font: 800 clamp(1.5rem, 2.4vw, 2.2rem)/1 var(--display); text-transform: uppercase; letter-spacing: -.01em; }
.highlight-rail li:not(:last-child)::after { content: ""; position: absolute; right: -18px; top: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); transform: translateY(-50%); }

/* Pricing: readable, not shouted over */
.pricing { padding: clamp(64px, 7vw, 100px) var(--gutter); background: var(--stage-2); }
.pricing-heading { max-width: var(--shell); margin: 0 auto 28px; }
.pricing-heading h2 { max-width: 700px; }
.plans { max-width: var(--shell); list-style: none; margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.plans li { display: grid; align-content: start; gap: 10px; padding: 26px 26px 28px; border: 1px solid var(--slate); border-radius: 14px; background: var(--paper); }
.plans h3 { font-size: clamp(1.5rem, 2vw, 1.8rem); }
.plan-price { margin: 0; display: flex; flex-wrap: wrap; align-items: baseline; column-gap: 10px; font: 800 clamp(2.2rem, 3.2vw, 3rem)/1 var(--display); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.plan-price span { font-size: .5em; font-weight: 700; color: var(--muted); letter-spacing: 0; }
.plan-price b { white-space: nowrap; font-weight: inherit; }
.plan-price em { font: 500 13px/1 var(--mono); color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-style: normal; }
.plans p:last-child { margin: 4px 0 0; color: var(--muted); font-size: 16px; line-height: 1.5; }
.plan-featured { border-color: var(--blue); box-shadow: 0 0 0 2px var(--blue) inset; }
@media (max-width: 760px) { .plans { grid-template-columns: 1fr; } .highlight-rail { column-gap: 22px; } .highlight-rail li:not(:last-child)::after { right: -15px; } }

/* The native Mac workspace shows all three panes together. */
.controls-panel .scene-safety-bar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; }
.controls-panel .scene-safety-bar > strong, .controls-panel .scene-safety-bar > .reset-control { grid-column: 1 / -1; }
@media (min-width: 1280px) {
  .demo-stage, .demo-stage[data-device="ipad"] { grid-template-columns: minmax(0, 1fr) minmax(180px, 230px); gap: 24px; }
  .remote { grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) minmax(230px, 1.1fr); grid-template-rows: minmax(0, 1fr) auto auto; }
  .remote-tabs { display: none; }
  .remote-column-title { display: block; margin: 0; padding: 14px 12px; font: 650 12px/1.2 var(--body); color: #e2e5eb; border-bottom: 1px solid rgba(255,255,255,.12); }
  .players-panel { grid-column: 1; grid-row: 1; grid-template-rows: auto auto minmax(0, 1fr) auto; border-right: 1px solid rgba(255,255,255,.12); }
  .monitor-panel { grid-column: 2; grid-row: 1; grid-template-rows: auto auto minmax(0, 1fr) auto; padding: 0 10px 12px; gap: 10px; }
  .controls-panel { grid-column: 3; grid-row: 1; border-left: 1px solid rgba(255,255,255,.12); }
  .controls-panel > .remote-column-title { padding: 4px 2px 14px; }
  .remote > .transport, .remote > .go { grid-column: 1 / -1; }
  .remote > .transport { grid-row: 2; }
  .remote > .go { grid-row: 3; }
  .cue { grid-template-columns: 24px minmax(0, 1fr); padding: 8px; gap: 4px; font-size: 12px; }
  .cue-state { grid-column: 2; font-size: 9px; }
  .loaded-player { grid-template-columns: auto minmax(0, 1fr); padding: 10px; }
  .loaded-player b { grid-column: 2; }
  .loaded-player strong { font-size: 12px; }
  .monitor-status { grid-template-columns: auto minmax(0, 1fr); font-size: 10px; }
  .monitor-status > span:last-child { grid-column: 2; }
  .grading-grid, .surface-roster ul { grid-template-columns: 1fr; }
  .vfx-preset-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
