/* image57.com marketing page — 2026-09-13 rebuild.

   A scroll-driven product page in the Apple-launch idiom: pinned scenes
   whose visuals advance with scroll position, reveal-on-enter copy, and a
   before/after slider in the hero. Everything is progressive: with JS off or
   `prefers-reduced-motion` on, every scene simply shows its finished state.

   Scroll state arrives as CSS custom properties set by site.js:
     --p   0..1 progress through a [data-scrub] scene
     --hp  0..1 how far the hero has scrolled away
     --pos 0..100 the comparison slider position
   Mobile-first: base rules are the phone layout; ≥ 820px adds columns. */

:root {
  --bg: #293431; --bg-dark: #1c211e; --bg-deep: #141816;
  --surface: rgba(255,255,255,0.035); --surface-2: rgba(255,255,255,0.07);
  --on-surface: #ececee; --on-surface-dim: #b9c9b4; --muted: #8fa08c;
  --primary: #ffc04a; --primary-glow: #ffd878; --primary-deep: #f0a830;
  --on-primary: #14120e; --border: rgba(255,255,255,0.10); --info: #277d7d;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
  --gutter: max(1.1rem, env(safe-area-inset-left), env(safe-area-inset-right));
  --nav-h: 3.6rem;
  --radius: 18px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --vh: 100vh;
}
@supports (height: 100svh) { :root { --vh: 100svh; } }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg-dark); color: var(--on-surface);
  font-family: var(--sans); line-height: 1.55; overflow-x: clip;
  -webkit-tap-highlight-color: transparent; -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, .display { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.08; }
h1 { font-size: clamp(2.3rem, 8.5vw, 5rem); text-wrap: balance; }
h2 { font-size: clamp(1.9rem, 6.2vw, 3.6rem); text-wrap: balance; }
h3 { font-size: 1.15rem; line-height: 1.3; }
p  { text-wrap: pretty; }
.eyebrow { color: var(--primary); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.32em; font-weight: 600; }
.lede { color: var(--on-surface-dim); font-size: clamp(1.02rem, 2.6vw, 1.25rem); max-width: 52ch; }
.wrap { width: min(1180px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px; padding: 0.8rem 1.7rem; border-radius: 999px;
  background: linear-gradient(180deg, var(--primary-glow), var(--primary-deep));
  color: var(--on-primary); font-weight: 700; text-decoration: none; font-size: 0.98rem;
  box-shadow: 0 8px 28px rgba(255,192,74,0.28); border: 0; cursor: pointer;
  transition: transform .18s var(--ease), filter .18s var(--ease);
}
.btn:hover { filter: brightness(1.06); }
.btn:active { transform: scale(0.98); }
.btn.ghost { background: var(--surface-2); color: var(--on-surface); box-shadow: none; border: 1px solid var(--border); }
.btn.small { min-height: 38px; padding: 0.45rem 1.1rem; font-size: 0.88rem; }
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.15rem;
  border: 1px dashed var(--primary); border-radius: 999px; color: var(--primary);
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
}
.pill.small { padding: 0.35rem 0.85rem; font-size: 0.7rem; }
.note { color: var(--muted); font-size: 0.82rem; }

/* Nav */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--nav-h);
  padding-top: env(safe-area-inset-top);
  display: flex; align-items: center;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(28,33,30,0.72); -webkit-backdrop-filter: saturate(160%) blur(18px); backdrop-filter: saturate(160%) blur(18px); border-color: var(--border); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
/* The brand is also the "home" link, and it was 30px tall — the height of the
   logo image alone. It is the only always-visible link on a phone, where the
   nav links are hidden until 820px. */
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; font-family: var(--serif); font-size: 1.15rem; min-height: 44px; }
.brand img { width: 30px; height: 30px; }
.nav-links { display: none; gap: 1.6rem; font-size: 0.9rem; color: var(--on-surface-dim); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--on-surface); }

/* Hero */
.hero {
  position: relative; padding: calc(var(--nav-h) + 3.2rem + env(safe-area-inset-top)) 0 2rem;
  min-height: var(--vh); display: grid; align-content: start; gap: 2rem;
  background:
    radial-gradient(90% 50% at 50% 0%, rgba(255,192,74,0.14), transparent 70%),
    radial-gradient(120% 90% at 50% 20%, var(--bg) 0%, var(--bg-dark) 70%);
  overflow: clip;
}
.hero-copy { display: grid; gap: 1.2rem; justify-items: center; text-align: center; }
.hero-copy .eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; }
.hero-copy .eyebrow img { width: 22px; height: 22px; }
.hero-copy h1 { max-width: 16ch; }
.cta-row { display: grid; gap: 0.65rem; width: 100%; max-width: 420px; }
.cta-row .btn { width: 100%; }
.hero-visual {
  width: min(560px, 100%); margin-inline: auto;
  transform: translateY(calc(var(--hp, 0) * 40px)) scale(calc(1 - var(--hp, 0) * 0.08));
  opacity: calc(1 - var(--hp, 0) * 0.9);
  will-change: transform, opacity;
}

/* Before / after comparison slider */
.compare {
  --pos: 50; position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius);
  overflow: hidden; background: var(--bg-deep); isolation: isolate; touch-action: pan-y;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare .after-wrap { position: absolute; inset: 0; clip-path: inset(0 0 0 calc(var(--pos) * 1%)); }
.compare .divider {
  position: absolute; top: 0; bottom: 0; left: calc(var(--pos) * 1%); width: 2px;
  background: #fff; transform: translateX(-1px); box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
  pointer-events: none;
}
.compare .divider::after {
  content: "⟷"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%; background: #fff; color: #111;
  display: grid; place-items: center; font-size: 1.1rem; font-weight: 700;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.compare .tag {
  position: absolute; top: 0.9rem; padding: 0.3rem 0.7rem; border-radius: 999px;
  background: rgba(0,0,0,0.55); color: #fff; font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; pointer-events: none; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.compare .tag.before { left: 0.9rem; }
.compare .tag.after { right: 0.9rem; color: var(--on-primary); background: var(--primary); }
.compare input[type=range] {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0;
  cursor: ew-resize; -webkit-appearance: none; appearance: none; z-index: 2;
}
.compare input[type=range]:focus-visible + .divider { outline: 3px solid var(--primary); outline-offset: 2px; }

/* Reveal on enter */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); }
[data-reveal].in { opacity: 1; transform: none; }

/* Sections */
section { position: relative; }
.section { padding: clamp(4rem, 12vw, 8rem) 0; }
.section-head { display: grid; gap: 1rem; margin-bottom: clamp(2rem, 6vw, 3.5rem); }

/* Truth strip — three facts under the hero */
.facts { display: grid; gap: 0.8rem; padding: 1rem 0 0; }
.fact { padding: 1.3rem 1.4rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.fact .big { font-family: var(--serif); font-size: 2.3rem; line-height: 1; color: var(--primary); }
.fact p { color: var(--on-surface-dim); font-size: 0.92rem; margin-top: 0.4rem; }

/* Pinned scrub scenes */
.scrub { --n: 6; height: calc(var(--n) * 70vh + var(--vh)); }
@supports (height: 100svh) { .scrub { height: calc(var(--n) * 70svh + var(--vh)); } }
.scrub-sticky {
  position: sticky; top: 0; height: var(--vh); overflow: hidden;
  display: grid; grid-template-rows: auto 1fr auto; gap: 0.8rem;
  /* minmax(0,1fr), not 1fr: an aspect-ratio stage with height:100% has a
     min-content width wider than a phone, and a plain 1fr column grows to
     fit it — the whole scene then overflowed the viewport on a phone and
     the heading was clipped at the right edge (found 2026-09-13). */
  grid-template-columns: minmax(0, 1fr);
  padding: calc(var(--nav-h) + 0.6rem + env(safe-area-inset-top)) 0 1rem;
}
.scrub-sticky > * { min-width: 0; }
.scrub-head { text-align: center; display: grid; gap: 0.4rem; }
.scrub-head h2 { font-size: clamp(1.5rem, 5.4vw, 3rem); }
.scrub-head p { color: var(--on-surface-dim); font-size: 0.95rem; max-width: 46ch; margin-inline: auto; }
.scrub-stage {
  position: relative; align-self: center; justify-self: center;
  height: 100%; max-height: 100%; aspect-ratio: 4 / 5; max-width: 100%;
  border-radius: var(--radius); overflow: hidden; background: var(--bg-deep);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}
.scrub-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .45s var(--ease); }
.scrub-stage img.on, .scrub-stage img[data-step="0"] { opacity: 1; }
.scrub-stage .badge {
  position: absolute; left: 0.9rem; bottom: 0.9rem; padding: 0.35rem 0.8rem; border-radius: 999px;
  background: rgba(0,0,0,0.55); color: #fff; font-size: 0.74rem; letter-spacing: 0.1em;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.scrub-steps {
  list-style: none; display: flex; gap: 0.5rem; overflow-x: auto; scrollbar-width: none;
  padding: 0.2rem var(--gutter); margin-inline: calc(-1 * var(--gutter)); scroll-snap-type: x proximity;
}
.scrub-steps::-webkit-scrollbar { display: none; }
.scrub-steps li {
  flex: 0 0 auto; scroll-snap-align: center; padding: 0.55rem 0.95rem; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface); color: var(--muted);
  font-size: 0.86rem; white-space: nowrap; transition: all .35s var(--ease);
}
.scrub-steps li .k { display: none; }
.scrub-steps li.on { color: var(--on-primary); background: var(--primary); border-color: var(--primary); font-weight: 600; }
.scrub-steps li.done { color: var(--on-surface); border-color: rgba(255,192,74,0.5); }
.scrub-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--border); }
.scrub-progress i { display: block; height: 100%; width: calc(var(--p, 0) * 100%); background: var(--primary); }

/* Exploded PSD layer stack */
.stack { --n: 4; }
.stack .scrub-sticky { grid-template-rows: auto 1fr auto; }
.stack-stage { position: relative; align-self: center; justify-self: center; height: 100%; aspect-ratio: 4 / 5; max-width: 100%; perspective: 1400px; }
.stack-stage .layer {
  position: absolute; inset: 0; border-radius: 14px; overflow: hidden; background: var(--bg-deep);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 1px var(--border);
  transform-origin: 50% 100%;
  /* Each layer fans upward & backward by its index as --p grows. */
  transform:
    translate3d(0, calc(var(--p, 0) * var(--i) * -9%), calc(var(--p, 0) * var(--i) * -40px))
    rotateX(calc(var(--p, 0) * 52deg));
  transition: transform .1s linear;
}
.stack-stage .layer img { width: 100%; height: 100%; object-fit: cover; }
.stack-stage .layer .lbl {
  position: absolute; left: 0.8rem; top: 0.8rem; padding: 0.3rem 0.7rem; border-radius: 8px;
  background: rgba(0,0,0,0.6); color: #fff; font-size: 0.74rem; font-family: ui-monospace, Menlo, monospace;
  opacity: calc(var(--p, 0) * 1.5); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.stack-stage .layer .mask {
  position: absolute; right: 0.8rem; top: 0.8rem; width: 34px; height: 34px; border-radius: 6px;
  background: #111; border: 2px solid #fff; opacity: calc(var(--p, 0) * 1.5);
}
.stack-stage .layer .mask::after { content: ""; position: absolute; inset: 20%; border-radius: 50%; background: #fff; }
.stack-caption { text-align: center; color: var(--on-surface-dim); font-size: 0.9rem; opacity: calc((var(--p, 0) - 0.5) * 2.5); }

/* Runs-on-your-machine: window + copy */
.machine { display: grid; gap: 2rem; }
.window {
  border-radius: 14px; overflow: hidden; background: var(--bg-deep);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px var(--border);
  transform: perspective(1600px) rotateX(calc((1 - var(--p, 1)) * 10deg)) translateY(calc((1 - var(--p, 1)) * 40px));
}
.window img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.bullets { display: grid; gap: 1.1rem; }
.bullet { display: grid; grid-template-columns: 44px 1fr; gap: 0.9rem; align-items: start; }
.bullet .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border); display: grid; place-items: center; color: var(--primary); font-size: 1.2rem; }
.bullet p { color: var(--on-surface-dim); font-size: 0.95rem; }

/* Batch strip */
.strip-section { padding-block: clamp(4rem, 12vw, 8rem) 0; }
.strip-viewport { overflow: hidden; margin-top: 2rem; }
.strip {
  display: flex; gap: 0.8rem; padding: 0.5rem var(--gutter) 2.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.strip::-webkit-scrollbar { display: none; }
.strip figure { flex: 0 0 min(66vw, 300px); scroll-snap-align: center; position: relative; border-radius: 14px; overflow: hidden; background: var(--bg-deep); box-shadow: 0 0 0 1px var(--border); }
.strip img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.strip figcaption { position: absolute; left: 0.7rem; bottom: 0.7rem; padding: 0.25rem 0.6rem; border-radius: 999px; background: rgba(0,0,0,0.55); color: #fff; font-size: 0.7rem; font-family: ui-monospace, Menlo, monospace; }
.strip figure::after {
  content: "✓"; position: absolute; right: 0.7rem; top: 0.7rem; width: 26px; height: 26px; border-radius: 50%;
  background: var(--primary); color: var(--on-primary); display: grid; place-items: center; font-size: 0.85rem; font-weight: 800;
  opacity: var(--done, 1); transform: scale(var(--done, 1)); transition: all .4s var(--ease);
}
.timeline { display: grid; gap: 0.8rem; margin-top: 1.5rem; }
.timeline .t { padding: 1rem 1.2rem; border-left: 2px solid var(--primary); background: var(--surface); border-radius: 0 14px 14px 0; }
.timeline .t b { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.1rem; }
.timeline .t span { color: var(--on-surface-dim); font-size: 0.92rem; }

/* Client side: phones */
.phones { display: grid; gap: 1.2rem; margin-top: 2.5rem; justify-items: center; }
.phone {
  width: min(280px, 76vw); aspect-ratio: 9 / 19.5; border-radius: 40px; padding: 10px;
  background: #0d0f0e; box-shadow: 0 0 0 1px rgba(255,255,255,0.18), 0 40px 90px rgba(0,0,0,0.55);
  position: relative; transform: rotate(var(--tilt, 0deg));
}
.phone::before { content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 34%; height: 24px; border-radius: 999px; background: #0d0f0e; z-index: 2; }
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 30px; }
.phone figcaption { text-align: center; margin-top: 0.9rem; font-size: 0.92rem; color: var(--on-surface-dim); }
.phone-fig { display: grid; justify-items: center; }
.phone-fig b { display: block; color: var(--on-surface); font-family: var(--serif); font-weight: 500; font-size: 1.15rem; }

/* Plans */
.plans { display: grid; gap: 1rem; margin-top: 2.5rem; }
.plan { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; background: var(--surface); display: grid; gap: 0.9rem; align-content: start; }
.plan.free { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary) inset, 0 30px 80px rgba(255,192,74,0.08); background: linear-gradient(180deg, rgba(255,192,74,0.08), transparent 60%); }
.plan h3 { font-size: 1.35rem; }
.plan .price { font-family: var(--serif); font-size: 2rem; line-height: 1; }
.plan .price small { font-family: var(--sans); font-size: 0.8rem; color: var(--muted); display: block; margin-top: 0.4rem; }
.plan ul { list-style: none; display: grid; gap: 0.45rem; }
.plan li { color: var(--on-surface-dim); font-size: 0.93rem; padding-left: 1.4rem; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 800; }
.plan li.no { color: var(--muted); }
.plan li.no::before { content: "–"; color: var(--muted); }
.tiers { display: grid; gap: 0.8rem; margin-top: 1rem; }
.tier { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.9rem 1.1rem; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); }
.tier b { font-family: var(--serif); font-weight: 500; font-size: 1.05rem; }
.tier span { color: var(--on-surface-dim); font-size: 0.85rem; }
.tier .amt { color: var(--primary); font-weight: 700; white-space: nowrap; }
.packs { color: var(--on-surface-dim); font-size: 0.9rem; }

/* FAQ */
.faq { display: grid; gap: 0.7rem; max-width: 760px; margin: 2.5rem auto 0; }
.faq details { border: 1px solid var(--border); border-radius: 14px; background: var(--surface); }
.faq summary { cursor: pointer; font-weight: 600; padding: 1rem 1.2rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--primary); font-size: 1.3rem; line-height: 1; transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--on-surface-dim); font-size: 0.95rem; padding: 0 1.2rem 1.1rem; }

/* Final CTA + footer */
.final { padding: clamp(5rem, 14vw, 9rem) 0; text-align: center; background: radial-gradient(80% 60% at 50% 100%, rgba(255,192,74,0.14), transparent 70%); }
.final .logo { width: 92px; height: 92px; margin: 0 auto 1.5rem; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.55)); }
footer { padding: 2rem 0 calc(2.5rem + env(safe-area-inset-bottom)); border-top: 1px solid var(--border); color: var(--muted); font-size: 0.82rem; }
footer .wrap { display: grid; gap: 0.6rem; text-align: center; }
/* 44px tall, not 30. Measured on a 390px viewport (2026-09-16): every
   footer link was under the touch-target minimum, and these are the only
   navigation left once a visitor has scrolled the whole page. inline-flex so
   the extra height is in the target, not in the line spacing of the text. */
footer a {
  color: var(--on-surface-dim); text-decoration: none;
  display: inline-flex; align-items: center; min-height: 44px;
}

.deferred { content-visibility: auto; contain-intrinsic-size: auto 900px; }

/* ── Tablet / desktop ─────────────────────────────────────────────────── */
@media (min-width: 820px) {
  :root { --nav-h: 4rem; }
  .nav-links { display: flex; }
  .hero { padding-top: calc(var(--nav-h) + 4.5rem); gap: 3rem; }
  .cta-row { grid-auto-flow: column; width: auto; max-width: none; }
  .cta-row .btn { width: auto; }
  .facts { grid-template-columns: repeat(3, 1fr); }
  .scrub { height: calc(var(--n) * 80vh + var(--vh)); }
  .scrub-sticky { grid-template-rows: auto 1fr; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); column-gap: 3rem; align-items: center; padding-bottom: 2rem; }
  .scrub-head { grid-column: 1 / -1; }
  .scrub-stage { grid-row: 2; grid-column: 1; justify-self: end; }
  .scrub-steps { grid-row: 2; grid-column: 2; flex-direction: column; overflow: visible; padding: 0; margin: 0; gap: 0.6rem; align-self: center; max-width: 380px; }
  .scrub-steps li { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 0.8rem; padding: 0.85rem 1.05rem; border-radius: 14px; white-space: normal; font-size: 1rem; }
  .scrub-steps li .k { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--surface-2); font-size: 0.85rem; font-family: ui-monospace, Menlo, monospace; }
  .scrub-steps li.on .k { background: rgba(0,0,0,0.18); }
  .scrub-steps li.on { transform: translateX(6px); }
  .stack .scrub-sticky { grid-template-columns: minmax(0, 1fr); }
  .machine { grid-template-columns: 1.3fr 1fr; align-items: center; gap: 4rem; }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .phones { grid-template-columns: repeat(3, auto); align-items: end; gap: 2.5rem; }
  .phone-fig:nth-child(1) .phone { --tilt: -6deg; }
  .phone-fig:nth-child(3) .phone { --tilt: 6deg; }
  .plans { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  footer .wrap { grid-auto-flow: column; justify-content: space-between; text-align: left; }
}
@media (min-width: 1100px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 4rem; width: min(1180px, 100% - 2 * var(--gutter)); margin-inline: auto; padding-top: calc(var(--nav-h) + 2rem); }
  .hero-copy { justify-items: start; text-align: left; }
  .hero-copy h1 { max-width: 14ch; }
  .hero-copy .lede { margin: 0; }
  .hero-visual { margin: 0; justify-self: end; }
}

/* ── Motion preferences ───────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-visual, .window, .stack-stage .layer, .scrub-stage img, .scrub-steps li { transition: none; }
}
/* With JS off or reduced motion, scenes show their finished state. */
html.static .scrub { height: auto; }
html.static .scrub-sticky { position: static; height: auto; }
html.static .scrub-stage { aspect-ratio: 4 / 5; width: min(420px, 100%); height: auto; }
html.static .scrub-stage img:last-of-type { opacity: 1; }
html.static .scrub-steps li { color: var(--on-surface); }
html.static [data-scrub] { --p: 1; }
html.static .hero-visual { --hp: 0; }
