/* =====================================================================
   Lior's Studio — site.css
   Thesis: a dark edit bay. The room is graded to cool graphite; the only
   colour lives on screens (the editor UI, the work). One accent: REC red —
   the record dot, the playhead, the primary CTA. Nothing else is red.
   Type: Archivo (one variable family, two widths): condensed 800 for
   display (film-title register), normal width for reading.
   Radius by function: photos + sections square (0); controls round.
   ONE section rhythm token (--section), ONE structural ease (--ease).
   ===================================================================== */
@font-face {
  font-family: "Archivo";
  src: url("/fonts/archivo-var.woff2") format("woff2");
  font-weight: 100 900; font-stretch: 62% 125%; font-display: swap;
}

:root {
  --ink: #0b0c0e;
  --ink-2: #121418;
  --ink-3: #1b1e23;
  --line: #2a2e35;
  --mute: #8b919a;
  --fog: #c7ccd3;
  --paper: #eceef1;
  --paper-2: #dfe2e7;
  --paper-mute: #565c66;
  --white: #f6f7f9;
  --rec: #ff3b30;
  --rec-deep: #c8261d;      /* hover/active state of the rec button only */
  --todo: #e0241b;          /* review-mode request boxes */
  /* editor-UI clip colours: only inside .nle (software chrome, not brand palette) */
  --clip-v: #3f7099;
  --clip-v2: #5a86a8;
  --clip-t: #c4a13a;
  --clip-a: #2f8a67;
  --clip-m: #3f7f86;

  --font: "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --gutter: clamp(16px, 4vw, 56px);
  --wrap: min(1640px, calc(100% - 2 * var(--gutter)));
  --section: clamp(80px, 11vw, 176px);
  --ease: cubic-bezier(.2, .7, .1, 1);
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0; background: var(--ink); color: var(--fog);
  font-family: var(--font); font-size: 17px; line-height: 1.55; font-stretch: 100%;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1em; max-width: 62ch; }
h1, h2, h3 { margin: 0; color: var(--white); font-weight: 800; line-height: 1; }
:focus-visible { outline: 2px solid var(--rec); outline-offset: 3px; }
::selection { background: var(--rec); color: var(--white); }

.display {
  font-stretch: 68%; font-weight: 800; text-transform: uppercase;
  letter-spacing: -.01em; line-height: .9;
}
.h-xl { font-size: clamp(3.4rem, 10.5vw, 10.5rem); }
.h-l { font-size: clamp(2.6rem, 6.4vw, 6.4rem); }
.h-m { font-size: clamp(2rem, 3.8vw, 3.6rem); }
.h-s { font-size: clamp(1.25rem, 1.6vw, 1.5rem); font-stretch: 100%; font-weight: 700; line-height: 1.2; text-transform: none; }
.lede { font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.5; color: var(--fog); }
.label {
  font-size: .78rem; font-weight: 600; font-stretch: 112%; letter-spacing: .14em;
  text-transform: uppercase; color: var(--mute);
}
.tc { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
.sr-only { position: absolute !important; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding-block: var(--section); }
.on-paper { background: var(--paper); color: var(--paper-mute); }
.on-paper h1, .on-paper h2, .on-paper h3 { color: var(--ink); }
.on-paper .label { color: var(--paper-mute); }

/* ---- skip link ------------------------------------------------------ */
.skip {
  position: fixed; left: 16px; top: 12px; z-index: 200; padding: 12px 18px;
  background: var(--white); color: var(--ink); font-weight: 700; border-radius: 999px;
  transform: translateY(-160%); transition: transform .2s var(--ease);
}
.skip:focus, .skip:focus-visible { transform: translateY(0); }

/* ---- buttons (the only rounded things besides the editor UI) -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 52px; padding: 0 28px; border-radius: 999px;
  font: 700 1rem/1 var(--font); font-stretch: 105%; text-decoration: none; letter-spacing: .01em;
  border: 1px solid var(--fog); color: var(--white); background: transparent;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  cursor: pointer;
}
.btn:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--rec { background: var(--rec); border-color: var(--rec); color: var(--white); }
.btn--rec::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--white); }
.btn--rec:hover { background: var(--rec-deep); border-color: var(--rec-deep); color: var(--white); }
.btn--small { min-height: 44px; padding: 0 20px; font-size: .92rem; }
.on-paper .btn:not(.btn--rec) { color: var(--ink); border-color: var(--ink); }
.on-paper .btn:not(.btn--rec):hover { background: var(--ink); color: var(--white); }
.text-link { color: var(--white); font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .3em; }
.on-paper .text-link { color: var(--ink); }
.text-link:hover { text-decoration-color: var(--rec); }

/* ---- header --------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 0 var(--gutter);
  transition: transform .35s var(--ease), background-color .35s var(--ease);
}
.site-header.is-solid { background: rgba(11, 12, 14, .96); border-bottom: 1px solid var(--line); }
.site-header.is-hidden { transform: translateY(-100%); }
.wordmark {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  color: var(--white); font-weight: 800; font-stretch: 75%; font-size: 1.3rem; letter-spacing: .02em; text-transform: uppercase;
}
.wordmark--lg { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.rec { width: .55em; height: .55em; border-radius: 50%; background: var(--rec); flex: none; }
.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.nav a:not(.btn) {
  color: var(--fog); text-decoration: none; font-weight: 600; font-size: .98rem;
  padding-block: 10px; border-bottom: 1px solid transparent;
}
.nav a:not(.btn):hover, .nav a[aria-current="page"]:not(.btn) { color: var(--white); border-bottom-color: var(--rec); }
.menu-btn {
  display: none; align-items: center; gap: 10px; min-height: 48px; min-width: 48px; padding: 0 4px 0 14px;
  background: none; border: 0; color: var(--white); font: 700 .95rem var(--font); cursor: pointer;
}
.menu-btn__bars { position: relative; width: 22px; height: 12px; }
.menu-btn__bars::before, .menu-btn__bars::after {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; background: currentColor; transition: transform .3s var(--ease), top .3s var(--ease);
}
.menu-btn__bars::before { top: 0; }
.menu-btn__bars::after { top: 10px; }
.menu-btn[aria-expanded="true"] .menu-btn__bars::before { top: 5px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-btn__bars::after { top: 5px; transform: rotate(-45deg); }
.drawer {
  position: fixed; inset: 0; z-index: 90; background: var(--ink);
  padding: calc(var(--header-h) + 24px) var(--gutter) 40px;
}
.drawer nav { display: flex; flex-direction: column; }
.drawer a {
  display: block; padding: 14px 0; border-bottom: 1px solid var(--line); text-decoration: none;
  color: var(--white); font-weight: 800; font-stretch: 70%; text-transform: uppercase; font-size: clamp(2.2rem, 11vw, 3.4rem); line-height: 1;
}
.drawer a[aria-current="page"] { color: var(--rec); }
body.menu-open { overflow: hidden; }
@media (max-width: 860px) {
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
}

/* ---- review mode (dual-state client-material requests) --------------- */
.review-only { display: none !important; }
.review .review-only { display: block !important; }
.review .review-only.todo-inline { display: inline-block !important; }
.review-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; padding: 10px var(--gutter);
  background: var(--todo); color: #fff; font-size: .9rem;
}
.review-banner a { color: #fff; font-weight: 700; }
.todo {
  margin: 12px 0; padding: 10px 14px; max-width: 60ch;
  border: 2px dashed var(--todo); color: var(--todo); background: rgba(224, 36, 27, .07);
  font-size: .88rem; font-weight: 600; line-height: 1.4;
}
.todo::before { content: "NEEDS LIOR · "; font-weight: 800; letter-spacing: .06em; }
.on-paper .todo { background: #fff; }

/* =====================================================================
   THE EDITOR UI (.nle) — software chrome drawn in HTML/CSS.
   Sized by its own box (container units) so the same markup works tiny on
   the photographed monitor, full-screen at the end of the zoom, and as a
   flat figure. The viewer shows ONE clip twice: raw (as shot) and, right
   of the wipe line, graded — via backdrop-filter on the wipe layer.
   ===================================================================== */
.nle {
  --wipe: 50%;
  --ph: 0; /* playhead 0..1 */
  container-type: size;
  position: relative; display: grid; grid-template-rows: 5.2cqh 1fr 30cqh;
  background: #0d0f12; color: #9aa1ab; overflow: hidden;
  font-family: var(--font); font-stretch: 100%; line-height: 1.2; user-select: none;
}
.nle__bar {
  display: flex; align-items: center; gap: 1.4cqw; padding: 0 1.4cqw;
  background: #15181c; border-bottom: 1px solid #23272d; font-size: max(7px, 1.25cqw); white-space: nowrap;
}
.nle__dots { display: flex; gap: .5cqw; }
.nle__dots i { width: .8cqw; height: .8cqw; border-radius: 50%; background: #3a3f46; }
.nle__title { color: #c7ccd3; font-weight: 600; }
.nle__menu { display: flex; gap: 1.4cqw; color: #6c737d; }
.nle__tc { margin-left: auto; color: #e9ecef; font-variant-numeric: tabular-nums; font-weight: 600; }
.nle__main { display: grid; grid-template-columns: 18% 1fr 17%; min-height: 0; border-bottom: 1px solid #23272d; }
.nle__bin, .nle__insp { padding: 1.2cqh 1cqw; font-size: max(6px, 1.05cqw); min-width: 0; overflow: hidden; }
.nle__bin { border-right: 1px solid #23272d; }
.nle__insp { border-left: 1px solid #23272d; }
.nle__panel-h { color: #6c737d; text-transform: uppercase; letter-spacing: .12em; font-size: .85em; margin-bottom: 1.2cqh; font-weight: 600; }
.nle__file { display: flex; align-items: center; gap: .6cqw; padding: .55cqh 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nle__file::before { content: ""; flex: none; width: 1.6cqw; height: 1cqw; border-radius: 2px; background: var(--c, #3a3f46); }
.nle__file.is-sel { color: #e9ecef; }
.nle__slider { margin-bottom: 1.6cqh; }
.nle__slider span { display: flex; justify-content: space-between; margin-bottom: .6cqh; }
.nle__slider b { color: #c7ccd3; font-weight: 600; font-variant-numeric: tabular-nums; }
.nle__slider i { display: block; height: 3px; background: #2a2e35; position: relative; }
.nle__slider i::after { content: ""; position: absolute; left: var(--v); top: 50%; width: .9cqw; height: .9cqw; min-width: 4px; min-height: 4px; border-radius: 50%; background: #c7ccd3; transform: translate(-50%, -50%); }
.nle__viewer { display: grid; place-items: center; padding: 1.4cqh 1.2cqw; min-width: 0; min-height: 0; background: #08090b; }
.nle__screen { position: relative; width: 100%; max-height: 100%; aspect-ratio: 1280 / 550; background: #000; overflow: hidden; touch-action: pan-y; }
.nle__screen img, .nle__screen video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nle__wipe {
  position: absolute; top: 0; bottom: 0; left: var(--wipe); right: 0;
  -webkit-backdrop-filter: grayscale(.9) contrast(1.06) brightness(.94); backdrop-filter: grayscale(.9) contrast(1.06) brightness(.94);
  background: rgba(38, 64, 96, .14);
}
.nle__wipe::before { content: ""; position: absolute; left: -1px; top: 0; bottom: 0; width: 2px; background: #f6f7f9; }
.nle__handle {
  position: absolute; top: 50%; left: var(--wipe); width: 3.4cqw; height: 3.4cqw; min-width: 14px; min-height: 14px;
  transform: translate(-50%, -50%); border-radius: 50%; background: #f6f7f9; box-shadow: 0 0 0 4px rgba(0,0,0,.35);
}
.nle__handle::before, .nle__handle::after { content: ""; position: absolute; top: 50%; width: 0; height: 0; border: .55cqw solid transparent; margin-top: -.55cqw; }
.nle__handle::before { left: 18%; border-right-color: #0b0c0e; border-left: 0; }
.nle__handle::after { right: 18%; border-left-color: #0b0c0e; border-right: 0; }
.nle__tag {
  position: absolute; top: 3%; padding: .4em .8em; font-size: max(7px, 1.15cqw); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #0b0c0e; background: rgba(246, 247, 249, .9);
}
.nle__tag--raw { left: 2%; }
.nle__tag--final { right: 2%; }
.nle__timeline { position: relative; display: grid; grid-template-columns: 7% 1fr; grid-auto-rows: 1fr; background: #111317; font-size: max(6px, 1cqw); }
.nle__ruler { grid-column: 1 / -1; display: grid; grid-template-columns: 7% 1fr; border-bottom: 1px solid #23272d; }
.nle__ruler div {
  background-image: repeating-linear-gradient(90deg, #3a3f46 0 1px, transparent 1px 2.5%);
  background-size: 100% 40%; background-repeat: no-repeat; background-position: bottom; color: #6c737d;
  display: flex; justify-content: space-between; padding-right: 1cqw; font-variant-numeric: tabular-nums; font-size: .9em;
}
.nle__track-h { display: flex; align-items: center; padding-left: .8cqw; color: #6c737d; font-weight: 600; border-bottom: 1px solid #1c1f24; border-right: 1px solid #23272d; }
.nle__lane { position: relative; border-bottom: 1px solid #1c1f24; }
.nle__clip {
  position: absolute; top: 12%; bottom: 12%; left: calc(var(--x) * 1%); width: calc(var(--w) * 1%);
  background: var(--c); border-radius: 3px; overflow: hidden; color: rgba(255,255,255,.82);
  padding: 0 .5cqw; display: flex; align-items: center; white-space: nowrap; font-size: .92em; font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.nle__clip--wave { background:
  repeating-linear-gradient(90deg, transparent 0 2px, rgba(255,255,255,.28) 2px 3px) center / 100% 46% no-repeat,
  var(--c); }
.nle__playhead {
  position: absolute; top: 0; bottom: 0; left: calc(7% + var(--ph) * 93%); width: 2px; background: var(--rec); z-index: 2; pointer-events: none;
}
.nle__playhead::before { content: ""; position: absolute; top: 0; left: 50%; width: 1.2cqw; height: 1.2cqw; min-width: 6px; min-height: 6px; background: var(--rec); transform: translate(-50%, 0) rotate(45deg); transform-origin: center; }
@container (max-width: 520px) {
  .nle__menu, .nle__insp, .nle__bin { display: none; }
  .nle__main { grid-template-columns: 1fr; }
}

/* ---- the flat figure version ---------------------------------------- */
.nle--flat { width: 100%; aspect-ratio: 16 / 10; border: 1px solid var(--line); }
.nle--flat .nle__screen { cursor: ew-resize; }
@media (max-width: 600px) { .nle--flat { aspect-ratio: 5 / 4; } }

/* =====================================================================
   HOME HERO — the photographed edit bay; the editor UI is mapped onto the
   monitor (matrix3d, hero.js). With motion allowed on a wide screen the
   track grows and scrolling pushes the camera into the screen.
   ===================================================================== */
.hero { position: relative; background: var(--ink); }
.hero__sticky { position: relative; height: 100vh; height: 100svh; min-height: 560px; overflow: hidden; }
.hero__stage { position: absolute; inset: 0; transform-origin: 0 0; will-change: transform; }
.hero__stage img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.hero__dim { position: absolute; inset: 0; background: var(--ink); opacity: 0; pointer-events: none; }
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent 45%, rgba(11,12,14,.55) 72%, rgba(11,12,14,.8)),
              linear-gradient(0deg, rgba(11,12,14,.75), transparent 38%);
}
.nle--monitor {
  position: absolute; left: 0; top: 0; transform-origin: 0 0; visibility: hidden;
  filter: brightness(.8) saturate(.95);
}
.hero.is-mapped .nle--monitor { visibility: visible; }
.nle--monitor::after { /* glass + falloff so the screen sits inside the photo */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 40% 40%, transparent 55%, rgba(0,0,0,.35));
  opacity: var(--glass, 1);
}
.hero__copy {
  position: absolute; z-index: 3; right: var(--gutter); bottom: clamp(40px, 8vh, 96px);
  width: min(760px, 50vw); display: flex; flex-direction: column; align-items: flex-start;
}
.hero__copy h1 { margin-bottom: 22px; font-size: clamp(3.4rem, 8.2vw, 9.5rem); }
.hero__copy h1 span { white-space: nowrap; }
.hero__copy p { font-size: clamp(1.05rem, 1.3vw, 1.2rem); color: var(--fog); margin-bottom: 28px; max-width: 40ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__cue {
  position: absolute; z-index: 3; left: var(--gutter); bottom: clamp(40px, 8vh, 96px);
  display: none; align-items: center; gap: 12px; color: var(--fog);
}
.hero__cue::before { content: ""; width: 1px; height: 44px; background: linear-gradient(var(--rec), transparent); }
.is-zoom .hero__cue { display: flex; }
.is-zoom .hero__track { height: calc(100svh + 170vh); }
.is-zoom .hero__sticky { position: sticky; top: 0; }
.hero__endcap { /* caption that appears once the edit fills the screen */
  position: absolute; z-index: 4; left: var(--gutter); bottom: calc(30svh + 20px); opacity: 0; pointer-events: none;
  display: flex; align-items: center; gap: 14px; color: var(--white); font-weight: 600;
  padding: 10px 16px; background: rgba(11,12,14,.78); border-radius: 999px;
}
@media (max-width: 860px) {
  .hero__sticky { height: auto; min-height: 0; overflow: visible; }
  .hero__frame { position: relative; height: 64svh; min-height: 380px; overflow: hidden; }
  .hero__stage img { object-position: 20% 50%; }
  .hero__scrim { background: linear-gradient(0deg, var(--ink), transparent 30%); }
  .hero__copy { position: relative; right: auto; bottom: auto; width: auto; padding: 8px var(--gutter) 48px; margin-top: -40px; }
}
@media (min-width: 861px) { .hero__frame { position: absolute; inset: 0; } }

/* ---- grade section ---------------------------------------------------- */
.grade { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 5vw, 96px); align-items: center; }
.grade__copy h2 { margin-bottom: 28px; }
.grade figure { margin: 0; }
.grade figcaption { margin-top: 14px; color: var(--mute); font-size: .92rem; }
.is-zoom .grade { grid-template-columns: 1fr; }
.is-zoom .grade figure { display: none; }
.is-zoom .grade__copy { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(32px, 5vw, 96px); align-items: end; }
.is-zoom .grade__copy h2 { margin: 0; }
.checklist { list-style: none; margin: 28px 0 0; padding: 0; border-top: 1px solid var(--line); }
.checklist li { display: grid; grid-template-columns: 9rem 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.checklist b { color: var(--white); font-weight: 700; }
@media (max-width: 860px) {
  .grade, .is-zoom .grade__copy { grid-template-columns: 1fr; }
  .checklist li { grid-template-columns: 1fr; gap: 2px; }
}

/* ---- two lanes (creators / brands) ------------------------------------ */
.lanes__head { display: grid; grid-template-columns: 7fr 5fr; gap: 32px; align-items: end; margin-bottom: clamp(40px, 6vw, 88px); }
.lanes { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(24px, 3vw, 48px); align-items: start; }
.lane:nth-child(2) { margin-top: clamp(0px, 12vw, 200px); }
.lane__img { position: relative; overflow: hidden; margin-bottom: 28px; }
.lane__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1.2s var(--ease); }
.lane:nth-child(2) .lane__img img { aspect-ratio: 4 / 5; }
.lane:hover .lane__img img { transform: scale(1.03); }
.lane h3 { margin-bottom: 12px; }
.spec { list-style: none; margin: 20px 0 24px; padding: 0; border-top: 1px solid var(--paper-2); }
.spec li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--paper-2); color: var(--ink); font-weight: 600; }
.spec li span { color: var(--paper-mute); font-weight: 400; text-align: right; }
@media (max-width: 860px) {
  .lanes__head, .lanes { grid-template-columns: 1fr; }
  .lane:nth-child(2) { margin-top: 24px; }
}

/* ---- formats wall (3D ring) ------------------------------------------ */
.wall-sec { overflow: hidden; }
.wall-sec__head { display: grid; grid-template-columns: 7fr 5fr; gap: 32px; align-items: end; }
/* no-JS: a plain wrapping row of figures */
.wall { margin-top: clamp(24px, 4vw, 56px); }
.wall__ring { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-end; }
.fcard { margin: 0; width: var(--w); }
/* JS: the ring */
.wall.is-ring {
  position: relative; height: clamp(360px, 40vw, 620px);
  perspective: 1500px; perspective-origin: 50% 45%; touch-action: pan-y; cursor: grab;
}
.wall.is-ring.is-dragging { cursor: grabbing; }
.wall.is-ring .wall__ring { display: block; position: absolute; left: 50%; top: 50%; transform-style: preserve-3d; will-change: transform; }
.wall.is-ring .fcard {
  position: absolute; left: 0; top: 0; transform-style: preserve-3d; backface-visibility: hidden;
  transform: translate(-50%, -50%) rotateY(var(--a)) translateZ(var(--r));
}
.fcard__frame { position: relative; overflow: hidden; background: var(--ink-3); aspect-ratio: var(--ar); box-shadow: 0 30px 60px rgba(0,0,0,.45); }
.fcard__frame img { width: 100%; height: 100%; object-fit: cover; }
.fcard figcaption { display: flex; justify-content: space-between; gap: 12px; margin-top: 12px; font-size: .9rem; color: var(--fog); }
.fcard figcaption b { color: var(--white); }
.fcard.is-off { opacity: .08; }
.fcard__over { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 6%; pointer-events: none; }
.fcard__over--thumb { justify-content: center; align-items: flex-start; background: linear-gradient(90deg, rgba(11,12,14,.78), transparent 70%); }
.thumb-type { font-weight: 900; font-stretch: 62%; text-transform: uppercase; line-height: .86; color: var(--white); font-size: clamp(1.8rem, 3.4vw, 3.2rem); }
.thumb-type em { font-style: normal; color: var(--rec); }
.caption-burn { align-self: center; margin-bottom: 18%; text-align: center; font-weight: 900; font-stretch: 80%; text-transform: uppercase; color: var(--white); font-size: clamp(1rem, 1.7vw, 1.5rem); line-height: 1.05; text-shadow: 0 2px 0 #000, 0 0 12px rgba(0,0,0,.6); }
.caption-burn span { background: var(--rec); padding: 0 .15em; }
.lower-third { display: inline-flex; flex-direction: column; align-self: flex-start; padding: .5em .9em; background: rgba(11,12,14,.82); border-left: 3px solid var(--white); color: var(--white); font-size: clamp(.7rem, 1vw, .95rem); line-height: 1.2; }
.lower-third b { font-weight: 800; }
.dur { position: absolute; right: 4%; bottom: 5%; padding: 2px 6px; background: rgba(0,0,0,.82); color: var(--white); font-size: .78rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.wall__ctrl { display: none; }
.wall.is-ring + .wall__ctrl { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.wall__btn { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--white); cursor: pointer; display: grid; place-items: center; }
.wall__btn:hover { border-color: var(--white); }
.wall__btn svg { width: 18px; height: 18px; }
.wall__status { color: var(--mute); font-size: .92rem; min-width: 16ch; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.chip {
  min-height: 44px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--line); background: transparent;
  color: var(--fog); font: 600 .92rem var(--font); cursor: pointer;
}
.chip[aria-pressed="true"] { background: var(--white); color: var(--ink); border-color: var(--white); }
@media (max-width: 860px) {
  .wall-sec__head { grid-template-columns: 1fr; }
  .wall { perspective: 900px; }
}

/* ---- process as a timeline ------------------------------------------- */
.proc__head { display: grid; grid-template-columns: 7fr 5fr; gap: 32px; align-items: end; margin-bottom: clamp(40px, 5vw, 72px); }
.proc { --done: 0; position: relative; list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--paper-2); }
.proc::before { content: ""; position: absolute; left: 0; top: -2px; height: 2px; width: calc(var(--done) * 100%); background: var(--rec); transition: width 1.2s var(--ease); }
.proc li { position: relative; padding: 28px 28px 0 0; }
.proc li::before { content: ""; position: absolute; top: -8px; left: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--paper); border: 2px solid var(--paper-2); transition: border-color .4s var(--ease), background-color .4s var(--ease); }
.proc li.is-on::before { border-color: var(--rec); background: var(--rec); }
.proc .tc { display: block; color: var(--paper-mute); font-weight: 600; margin-bottom: 10px; }
.proc h3 { margin-bottom: 10px; }
.proc p { font-size: .98rem; color: var(--paper-mute); }
@media (max-width: 860px) {
  .proc__head { grid-template-columns: 1fr; }
  .proc { grid-template-columns: 1fr; border-top: 0; border-left: 2px solid var(--paper-2); padding-left: 24px; }
  .proc::before { left: -2px; top: 0; width: 2px; height: calc(var(--done) * 100%); transition: height 1.2s var(--ease); }
  .proc li { padding: 0 0 32px; }
  .proc li::before { top: 4px; left: -33px; }
}

/* ---- one person (about teaser) --------------------------------------- */
.one { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 6vw, 112px); align-items: center; }
.one__img { margin: 0; }
.one__img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.one h2 { margin-bottom: 28px; }
@media (max-width: 860px) { .one { grid-template-columns: 1fr; } .one__img { order: 2; } }

/* ---- FAQ -------------------------------------------------------------- */
.faq__grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 6vw, 112px); }
.faq__list { border-top: 1px solid var(--line); }
.on-paper .faq__list, .on-paper .faq details, .on-paper.faq .faq__list, .on-paper.faq details { border-color: #c9cdd4; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 24px; align-items: center;
  padding: 22px 0; color: var(--white); font-weight: 700; font-size: clamp(1.05rem, 1.4vw, 1.25rem); min-height: 48px;
}
.on-paper .faq summary, .on-paper.faq summary { color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; font-size: 1.6rem; font-weight: 400; line-height: 1; transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); color: var(--rec); }
.faq .ans { padding: 0 0 24px; max-width: 64ch; }
@media (max-width: 860px) { .faq__grid { grid-template-columns: 1fr; } }

/* ---- CTA band ---------------------------------------------------------- */
.cta-band { position: relative; min-height: 78svh; display: grid; align-items: end; overflow: hidden; }
.cta-band__img { position: absolute; inset: 0; margin: 0; }
.cta-band__img img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(11,12,14,.92), rgba(11,12,14,.35) 70%); }
.cta-band__copy { position: relative; z-index: 2; width: var(--wrap); margin: 0 auto; padding-block: var(--section); }
.cta-band h2 { font-size: clamp(3.4rem, 11vw, 11rem); margin-bottom: 24px; }
.cta-band p { font-size: clamp(1.05rem, 1.4vw, 1.25rem); margin-bottom: 28px; }

/* ---- footer ------------------------------------------------------------ */
.site-footer { background: var(--ink); border-top: 1px solid var(--line); padding: clamp(56px, 7vw, 104px) 0 28px; }
.footer-grid { width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: 6fr 3fr 3fr; gap: 40px; }
.footer-brand p { margin-top: 16px; color: var(--mute); }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a, .footer-contact a { color: var(--fog); text-decoration: none; padding: 8px 0; min-height: 40px; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--white); }
.footer-base { width: var(--wrap); margin: 56px auto 0; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--mute); font-size: .88rem; }
.footer-base a { color: var(--mute); padding-block: 12px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* ---- inner-page hero (subhero) ----------------------------------------- */
.subhero { padding: calc(var(--header-h) + clamp(56px, 9vw, 140px)) 0 clamp(48px, 6vw, 96px); }
.subhero__grid { display: grid; grid-template-columns: 7fr 5fr; gap: 32px; align-items: end; }
.subhero h1 { font-size: clamp(3.6rem, 12vw, 12rem); }
.subhero .lede { margin: 0; }
@media (max-width: 860px) { .subhero__grid { grid-template-columns: 1fr; } }
.bleed { margin: 0; }
.bleed img { width: 100%; height: clamp(280px, 52vw, 760px); object-fit: cover; }

/* ---- services page ---------------------------------------------------- */
.svc { display: grid; grid-template-columns: 4fr 8fr; gap: clamp(32px, 6vw, 112px); }
.svc__side { position: sticky; top: calc(var(--header-h) + 32px); align-self: start; }
.svc__side h2 { margin-bottom: 20px; }
.svc__side img { margin-top: 28px; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.svc-row { display: grid; grid-template-columns: 5fr 7fr; gap: 24px 40px; padding: 32px 0; border-top: 1px solid var(--line); }
.on-paper .svc-row { border-color: var(--paper-2); }
.svc-row h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); font-stretch: 85%; }
.svc-row dl { margin: 0; display: grid; grid-template-columns: 7.5rem 1fr; gap: 8px 16px; font-size: .98rem; }
.svc-row dt { color: var(--mute); font-weight: 600; }
.on-paper .svc-row dt { color: var(--paper-mute); }
.svc-row dd { margin: 0; color: var(--white); }
.on-paper .svc-row dd { color: var(--ink); }
@media (max-width: 860px) { .svc, .svc-row { grid-template-columns: 1fr; } .svc__side { position: static; } .svc-row dl { grid-template-columns: 1fr; gap: 2px; } .svc-row dd { margin-bottom: 10px; } }
.terms { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.terms > div { padding: 28px 28px 28px 0; border-bottom: 1px solid var(--line); }
.terms > div + div { padding-left: 28px; border-left: 1px solid var(--line); }
.terms b { display: block; color: var(--white); font-size: clamp(1.3rem, 2vw, 1.8rem); font-stretch: 80%; margin: 8px 0; }
@media (max-width: 860px) { .terms { grid-template-columns: 1fr; } .terms > div + div { padding-left: 0; border-left: 0; } }

/* ---- work page slot grid (review) -------------------------------------- */
.slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.slot { aspect-ratio: 16 / 9; border: 2px dashed var(--todo); display: grid; place-items: center; text-align: center; padding: 16px; color: var(--todo); font-weight: 600; font-size: .9rem; }
.slot--v { aspect-ratio: 9 / 16; }
@media (max-width: 860px) { .slots { grid-template-columns: 1fr 1fr; } }

/* ---- about page --------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 6vw, 112px); align-items: start; }
.about-grid figure { margin: 0; position: sticky; top: calc(var(--header-h) + 32px); }
.about-grid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-grid figcaption { margin-top: 10px; color: var(--mute); font-size: .88rem; }
.prose p { font-size: clamp(1.08rem, 1.3vw, 1.2rem); }
.prose h2 { margin: 56px 0 20px; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } .about-grid figure { position: static; } }

/* ---- start (brief builder) ---------------------------------------------- */
.brief { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(32px, 5vw, 96px); align-items: start; }
.brief fieldset { border: 0; margin: 0 0 36px; padding: 0; }
.brief legend, .field > label { display: block; color: var(--white); font-weight: 700; margin-bottom: 12px; font-size: 1.05rem; }
.brief legend span, .field > label span { color: var(--mute); font-weight: 400; }
.opts { display: flex; flex-wrap: wrap; gap: 8px; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.opt span { display: inline-flex; align-items: center; min-height: 48px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; color: var(--fog); font-weight: 600; transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.opt input:checked + span { background: var(--white); color: var(--ink); border-color: var(--white); }
.opt input:focus-visible + span { outline: 2px solid var(--rec); outline-offset: 3px; }
.field { margin-bottom: 28px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 14px 16px; background: var(--ink-2); color: var(--white);
  border: 1px solid var(--line); border-radius: 10px; font: 400 16px/1.4 var(--font);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--fog); }
.field .hint { margin-top: 8px; color: var(--mute); font-size: .88rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.summary { position: sticky; top: calc(var(--header-h) + 24px); background: var(--ink-2); border: 1px solid var(--line); padding: 28px; }
.summary h2 { font-size: 1.3rem; font-stretch: 85%; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.summary dl { margin: 0; }
.summary dt { color: var(--mute); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; margin-top: 14px; }
.summary dd { margin: 4px 0 0; color: var(--white); min-height: 1.4em; }
.summary dd.is-empty { color: var(--line); }
.form-msg { margin-top: 18px; padding: 14px 16px; border-left: 3px solid var(--rec); background: var(--ink-2); color: var(--white); }
.form-msg[hidden] { display: none; }
@media (max-width: 860px) { .brief, .field-row { grid-template-columns: 1fr; } .summary { position: static; order: -1; } }

/* ---- mobile sticky CTA -------------------------------------------------- */
.dock { display: none; }
@media (max-width: 860px) {
  .dock {
    display: block; position: fixed; z-index: 80; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom));
    transform: translateY(160%); transition: transform .4s var(--ease);
  }
  .dock.is-shown { transform: none; }
  .dock .btn { width: 100%; box-shadow: 0 12px 32px rgba(0,0,0,.5); }
  .review .dock { bottom: 56px; }
}

/* ---- motion preferences --------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* =====================================================================
   EDITOR-UI SVG DEVICES — one per inner page, same language as the hero.
   Visible by default; html.js + [data-draw]:not(.is-in) is the only hidden
   state, and site.js force-completes it (dead-man switch) if unobserved.
   ===================================================================== */
.cut-sec { background: var(--ink); }
.cut-sec__head { display: grid; grid-template-columns: 7fr 5fr; gap: 32px; align-items: end; margin-bottom: clamp(32px, 5vw, 72px); }
.cut { margin: 0; }
.cut__svg { width: 100%; height: auto; overflow: visible; }
.cut__svg--tall { display: none; }
@media (max-width: 700px) { .cut__svg--wide { display: none; } .cut__svg--tall { display: block; } .cut-sec__head { grid-template-columns: 1fr; } }
.cut__label { fill: var(--mute); font: 600 16px var(--font); letter-spacing: .08em; text-transform: uppercase; }
.cut__ruler line, .cut__ruler path { stroke: var(--line); stroke-width: 2; fill: none; }
.cut__clips rect { fill: var(--clip-v); stroke: rgba(255,255,255,.12); }
.cut__wave path { fill: none; stroke: var(--clip-a); stroke-width: 3; }
.cut__pick { fill: rgba(255,59,48,.14); stroke: var(--rec); stroke-width: 3; }
.cut__wire { fill: none; stroke: var(--rec); stroke-width: 2; stroke-dasharray: 6 6; }
.cut__frame { fill: none; stroke: var(--fog); stroke-width: 2; }
.cut__frame--sq { stroke: var(--white); }
.cut__cap { fill: var(--white); opacity: .9; }
.cut__thumb { fill: var(--white); font: 900 44px var(--font); font-stretch: 62%; letter-spacing: -.5px; }
.cut__red { fill: var(--rec); }
.js [data-draw].cut:not(.is-in) .cut__pick, .js [data-draw].cut:not(.is-in) .cut__out { opacity: 0; }
.js [data-draw].cut:not(.is-in) .cut__out { transform: translateY(24px); }
.js [data-draw].cut:not(.is-in) .cut__wire { stroke-dashoffset: 400; opacity: 0; }
.cut__pick, .cut__out, .cut__wire { transition: opacity .6s var(--ease), transform .8s var(--ease), stroke-dashoffset 1.2s var(--ease); }
.cut .p1, .cut .w1 { transition-delay: .1s; } .cut .o1 { transition-delay: .55s; }
.cut .p2, .cut .w2 { transition-delay: .3s; } .cut .o2 { transition-delay: .75s; }
.cut .p3, .cut .w3 { transition-delay: .5s; } .cut .o3 { transition-delay: .95s; }
.cut .p4, .cut .w4 { transition-delay: .7s; } .cut .o4 { transition-delay: 1.15s; }

.guides { position: relative; margin: 0; overflow: hidden; }
.guides img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.guides::after { content: ""; position: absolute; inset: 0; background: rgba(11,12,14,.35); pointer-events: none; }
.guides__svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.g { fill: none; stroke-width: 2; vector-effect: non-scaling-stroke; stroke-dasharray: 100; stroke-dashoffset: 0; transition: stroke-dashoffset 1.4s var(--ease); }
.g1 { stroke: var(--white); } .g2 { stroke: var(--fog); stroke-dasharray: 1.2 1; } .g3 { stroke: var(--clip-t); } .g4 { stroke: var(--rec); }
.g-cross { stroke: var(--white); stroke-width: 1.5; vector-effect: non-scaling-stroke; }
.js [data-draw].guides:not(.is-in) .g { stroke-dashoffset: 100; }
.js [data-draw].guides:not(.is-in) .g2 { stroke-dasharray: 100; }
.guides .g2 { transition-delay: .25s; } .guides .g3 { transition-delay: .5s; } .guides .g4 { transition-delay: .75s; }
.g-lab {
  position: absolute; z-index: 2; margin: 8px; padding: 4px 8px; font-size: clamp(.62rem, 1vw, .82rem); font-weight: 700; letter-spacing: .04em;
  color: var(--ink); background: var(--white); white-space: nowrap; transition: opacity .6s var(--ease) 1s;
}
.g-lab.l3 { background: var(--clip-t); } .g-lab.l4 { background: var(--rec); color: var(--white); }
.js [data-draw].guides:not(.is-in) .g-lab { opacity: 0; }
@media (max-width: 600px) { .g-lab.l2, .g-lab.l3 { display: none; } }

.track { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 3px; height: 22px; margin: 0 0 8px; }
.track span { background: var(--ink-3); border-radius: 3px; transition: background-color .3s var(--ease); }
.track span.is-on { background: var(--clip-v); }
.track__ph { position: absolute; top: -5px; bottom: -5px; left: calc(var(--p, 0) * 100%); width: 2px; background: var(--rec); transition: left .5s var(--ease); }
.track__ph::before { content: ""; position: absolute; top: 0; left: 50%; width: 9px; height: 9px; background: var(--rec); transform: translate(-50%, 0) rotate(45deg); }

.offline { width: min(560px, 100%); height: auto; margin-bottom: 40px; border: 1px solid var(--line); }

/* ---- battle-test pass (2026-09-18) --------------------------------------- */
.wordmark { min-height: 44px; }
.footer-nav a, .footer-contact a { min-height: 48px; display: flex; align-items: center; padding: 0; }
.footer-base a { display: inline-flex; align-items: center; min-height: 44px; padding: 0; }
.drawer a { min-height: 56px; }
/* phone-sized editor UI: it's a picture of software, so the micro-labels go and the shapes stay */
@container (max-width: 520px) {
  .nle__clip, .nle__ruler div, .nle__title, .nle__tc, .nle__track-h, .nle__tag { font-size: 0 !important; }
  .nle__tag { padding: 0; }
}
/* landscape phones: copy overlays the photo like desktop so the H1 is in the first screen */
@media (max-width: 860px) and (orientation: landscape) and (max-height: 540px) {
  .hero__sticky { height: 100svh; min-height: 0; overflow: hidden; }
  .hero__frame { position: absolute; inset: 0; height: auto; min-height: 0; }
  .hero__stage img { object-position: 50% 50%; }
  .hero__scrim { background: linear-gradient(90deg, transparent 40%, rgba(11,12,14,.85) 70%); }
  .hero__copy { position: absolute; right: var(--gutter); bottom: 18px; margin: 0; padding: 0; width: 50vw; }
  .hero__copy h1 { font-size: clamp(2.2rem, 7.4vw, 3.4rem); margin-bottom: 10px; }
  .hero__copy p { display: none; }
}

/* ---- format frames: deliverables shown at their real shapes (replaces spec rows) ---- */
.frames { --fh: clamp(96px, 10vw, 156px); display: flex; flex-wrap: wrap; align-items: flex-end; gap: 14px; margin: 24px 0 28px; }
.frame { margin: 0; }
.frame__img { position: relative; height: var(--fh); aspect-ratio: var(--ar); overflow: hidden; background: var(--ink-3); }
.frame__img img { width: 100%; height: 100%; object-fit: cover; }
.frame figcaption { margin-top: 8px; font-size: .88rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.frame figcaption span { font-weight: 400; color: var(--paper-mute); margin-left: 4px; }
.frame .thumb-type { font-size: calc(var(--fh) * .2); }
.frame .caption-burn { font-size: calc(var(--fh) * .09); margin-bottom: 22%; }
.frame .lower-third { font-size: calc(var(--fh) * .075); }
.svc-item { display: grid; grid-template-columns: 6fr 5fr; gap: 24px clamp(24px, 3vw, 48px); align-items: center; padding: clamp(28px, 3vw, 44px) 0; }
.svc-item + .svc-item { border-top: 1px solid var(--line); }
.on-paper .svc-item + .svc-item { border-color: #c9cdd4; }
.svc-item__frame { position: relative; height: clamp(170px, 17vw, 270px); aspect-ratio: var(--ar); max-width: 100%; overflow: hidden; background: var(--ink-3); }
.svc-item__frame img { width: 100%; height: 100%; object-fit: cover; }
.svc-item h3 { font-size: clamp(1.6rem, 2.4vw, 2.3rem); margin-bottom: 12px; }
.svc-item p { margin: 0; }
.svc-item .thumb-type { font-size: clamp(1.6rem, 3vw, 2.8rem); }
.svc-item .caption-burn { font-size: clamp(.8rem, 1.2vw, 1.05rem); }
@media (max-width: 860px) { .svc-item { grid-template-columns: 1fr; } }
.price__big { font-size: clamp(1.8rem, 3.4vw, 3.2rem); font-weight: 800; font-stretch: 80%; line-height: 1.05; color: var(--white); max-width: 22ch; margin-bottom: 20px; }
.svc-item__frame { justify-self: end; }
.price { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(24px, 4vw, 72px); align-items: end; }
.price__big { margin: 0; }
.price .lede { margin: 0; }
@media (max-width: 860px) { .svc-item__frame { justify-self: start; } .price { grid-template-columns: 1fr; } }

/* ---- process step drawings (editor-UI line language) ---------------------- */
.proc__art { display: block; width: 100%; max-width: 240px; height: auto; margin: 0 0 18px; overflow: visible; }
.pa-line { fill: none; stroke: var(--ink); stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
.pa-chip { fill: var(--white); stroke: var(--ink); stroke-width: 1.5; }
.pa-chip--rec { fill: var(--rec); stroke: var(--rec); }
.pa-t { font: 700 9px var(--font); fill: var(--ink); text-anchor: middle; letter-spacing: .04em; }
.pa-t--w { fill: var(--white); }
.pa-t--l { text-anchor: start; font-size: 11px; }
.pa-t--rec { fill: var(--rec); }
.pa-t--k { font-weight: 600; fill: var(--paper-mute); font-size: 10px; }
.pa-play { fill: var(--rec); }
.pa-clip { fill: var(--clip-v); }
.pa-clip--a { fill: var(--clip-a); }
.pa-head { stroke: var(--rec); stroke-width: 2; }
.pa-headcap, .pa-dot { fill: var(--rec); }
.pa-bubble-shape { fill: var(--white); stroke: var(--ink); stroke-width: 1.5; }
.pa-txt { fill: #c9cdd4; }
.pa-check-bg { fill: var(--rec); }
.pa-check { fill: none; stroke: var(--white); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
/* motion: only once the step lights up; visible by default without JS */
.pa-drop, .pa-bubble, .pa-head, .pa-headcap, .pa-check-bg, .pa-check { transition: transform .7s var(--ease), opacity .5s var(--ease); transform-box: fill-box; transform-origin: center; }
.pa-drop.d2 { transition-delay: .12s; } .pa-drop.d3 { transition-delay: .24s; }
.proc.is-armed li:not(.is-on) .pa-drop { transform: translateY(-14px); opacity: 0; }
.proc.is-armed li:not(.is-on) .pa-bubble { transform: scale(.7); opacity: 0; }
.proc.is-armed li:not(.is-on) .pa-head, .proc.is-armed li:not(.is-on) .pa-headcap { transform: translateX(-60px); }
.proc.is-armed li:not(.is-on) .pa-check-bg, .proc.is-armed li:not(.is-on) .pa-check { transform: scale(0); }
@media (max-width: 860px) { .proc__art { max-width: 200px; } }
