/* ============================================================================
   YOONKI — classic v2 "quiet version"
   Palette derived from the hero film: Seoul hanok cream + both cities' sky
   blue; ONE accent — international orange (Golden Gate steel = hanok wood).
   Typography-forward, Geist everywhere, decoration earns its place.
   ========================================================================== */

:root {
  --ink: #22262E;
  --ink-soft: #5A6270;
  --paper: #FAF7F1;
  --sky: #BFE0F2;
  --cream: #F4E8D4;
  --accent: #E8552F;            /* the one accent */
  --card: #FFFFFF;
  --hairline: rgba(34, 38, 46, 0.12);
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* NO smooth scrolling: gliding through an 1800vh scrubbed hero plays the
   whole film in fast-forward. Anchors teleport (JS) instead. */
html { scroll-behavior: auto; }

body {
  font-family: "Geist", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: #fff; }

a { color: inherit; }

/* ---------- top banner ---------- */
.game-banner {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  font-size: 13.5px;
  text-decoration: none;
  color: #F6F9FF;
  background: #1E2430;
}
.game-banner strong { color: #FFD94A; white-space: nowrap; }
.game-banner:hover strong { text-decoration: underline; }
/* one tidy line on phones: short copy, no awkward wrap */
.bn-short { display: none; }
@media (max-width: 720px) {
  .game-banner { font-size: 12.5px; padding: 8px 12px; white-space: nowrap; }
  .bn-long { display: none; }
  .bn-short { display: inline; }
}
.banner-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #57D98A;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.35; } }

/* ---------- corner nav ---------- */
.corner-nav {
  position: fixed;
  top: 52px; right: 22px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Geist Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.08em;
}
.corner-nav a { text-decoration: none; opacity: 0.85; }
.corner-nav a:hover { opacity: 1; color: var(--accent); }
.nav-socials { display: flex; gap: 12px; padding-left: 14px; border-left: 1px solid var(--hairline); }
/* small / short viewports: the hero film fills the frame with his FACE,
   so the horizontal row (which spans the whole width on a phone) would
   type right across it. Instead the nav hugs the right edge as a short
   vertical rail of frosted pills — sky territory in every scene, and the
   glass keeps it legible over the night-office frames too */
@media (max-width: 720px), (max-height: 560px) {
  .corner-nav {
    top: 46px; right: 10px;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    font-size: 11px;
  }
  .corner-nav a {
    opacity: 1;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(250, 247, 241, 0.68);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 10px rgba(20, 26, 38, 0.08);
  }
  .nav-socials { padding-left: 0; border-left: none; gap: 6px; }
  .nav-socials a { padding: 6px 10px; }
}

/* ---------- hero ---------- */
/* 4 scenes, unhurried scrub. Height + SCRUB_END (main.js) move TOGETHER:
   film scroll length = height x SCRUB_END must stay ~1188vh so the scenes
   keep their pacing — r26 trimmed only the post-film anchor tail */
.hero { height: 1320vh; position: relative; }
.hero-sticky {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 108%, var(--cream) 0%, rgba(244, 232, 212, 0) 55%),
    linear-gradient(180deg, var(--sky) 0%, #DDEFF9 60%, var(--paper) 100%);
}
#hero-canvas, #hero-poster, .hero-idle {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* the idle greeting loop sits under the scrub canvas; the two crossfade
   on the first scroll (and back again when you return to the top) */
.hero-idle { transition: opacity 0.4s ease; }
.hero-idle.off { opacity: 0; }
#hero-canvas { opacity: 0; transition: opacity 0.4s ease; }
#hero-poster { display: none; }
.no-scrub #hero-poster { display: block; }
.no-scrub #hero-canvas, .no-scrub .hero-idle { display: none; }

.hero-beats { position: absolute; inset: 0; pointer-events: none; }
/* beats live in the LOWER third (reference layout: type overlaps the
   character's legs, the face always reads clear) — big warm-white
   poster type rising out of a mask line, over a soft bottom scrim */
.beat {
  position: absolute;
  left: 50%; bottom: 15%;
  transform: translateX(-50%);
  opacity: 0;
  font-size: clamp(24px, 3.4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.015em;
  text-align: center;
  color: rgba(255, 246, 232, 0.96);
  text-shadow: 0 2px 12px rgba(15, 22, 34, 0.4), 0 1px 2px rgba(15, 22, 34, 0.45);
  white-space: nowrap;
  overflow: hidden;
  padding-bottom: 0.1em;               /* keep descenders inside the mask */
  will-change: opacity, transform;
}
/* chapter eyebrow — tiny mono marker above the line */
.beat::before {
  content: attr(data-k);
  display: block;
  font-family: "Geist Mono", monospace;
  font-size: clamp(10px, 0.85vw, 12px);
  font-weight: 600;
  letter-spacing: 0.34em;
  color: rgba(255, 246, 232, 0.72);
  margin-bottom: 0.85em;
  text-shadow: 0 1px 6px rgba(15, 22, 34, 0.5);
}
/* word-stagger mask-rise: --r counts 0..100 on the beat, each word (--i)
   rises out of the beat's clip box on its own slice of that ramp — the
   reveal only ever moves UP; exits are handled by opacity + a lift */
.beat .mk { display: inline-block; }
.beat .w2 {
  display: inline-block;
  transform: translateY(calc((1 - clamp(0, (var(--r, 0) - var(--i, 0) * 7) / 55, 1)) * 115%));
  will-change: transform;
}
.beat em { font-style: italic; font-weight: 800; color: #FF7A4D; text-shadow: 0 2px 14px rgba(15, 22, 34, 0.35); }
.beat strong { font-weight: 900; color: #FFC048; letter-spacing: 0.02em; text-shadow: 0 2px 14px rgba(15, 22, 34, 0.35); }

/* cinematic bottom scrim — fades in with the type so white copy reads
   over any frame without boxing the words */
.hero-scrim {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 62%;
  background: linear-gradient(180deg, rgba(16, 22, 34, 0) 0%,
    rgba(16, 22, 34, 0.18) 45%, rgba(16, 22, 34, 0.52) 100%);
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

/* film progress rail: how far through the hero story you are — ticks
   mark the four chapters (hello / Seoul / SF / the gist) */
.hero-progress {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  height: 34vh;
  width: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero-progress.on { opacity: 1; }
/* accent orange reads on the film's light AND dark scenes */
.hp-track {
  position: absolute;
  left: 6px; top: 0; bottom: 0;
  width: 2px;
  border-radius: 2px;
  background: rgba(34, 38, 46, 0.2);
  box-shadow: 0 0 0 1px rgba(255, 248, 236, 0.12);
  overflow: hidden;
}
.hp-fill {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 0%;
  background: var(--accent);
  border-radius: 2px;
}
.hp-tick {
  position: absolute;
  left: 3px;
  width: 8px; height: 2px;
  border-radius: 1px;
  background: rgba(34, 38, 46, 0.35);
}
@media (max-width: 720px) { .hero-progress { display: none; } }

.hero-lockin {
  position: absolute;
  left: 50%; bottom: 7.5vh;
  transform: translateX(-50%);
  width: min(1240px, 94vw);
  text-align: center;
  opacity: 0;
  will-change: transform, opacity;
}
/* chapter eyebrow, same voice as the beats */
.lockin-k {
  font-family: "Geist Mono", monospace;
  font-size: clamp(10px, 0.85vw, 12px);
  font-weight: 600;
  letter-spacing: 0.34em;
  color: rgba(255, 246, 232, 0.72);
  margin-bottom: 1.1em;
  text-shadow: 0 1px 6px rgba(15, 22, 34, 0.5);
}
.hero-headline {
  font-size: clamp(25px, 3.5vw, 50px);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-wrap: balance;
  color: rgba(255, 246, 232, 0.96);
  text-shadow: 0 2px 12px rgba(15, 22, 34, 0.4), 0 1px 2px rgba(15, 22, 34, 0.45);
}
.hero-headline strong {
  font-weight: 900;
  color: #FFC048;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 14px rgba(15, 22, 34, 0.35);
}
.hl-line { display: block; overflow: hidden; padding-bottom: 0.09em; }
.hl-line .mk {
  display: inline-block;
  transform: translateY(calc((100% - var(--r, 0%)) * 0.92));
  will-change: transform;
}
.hl-day { color: rgba(255, 248, 236, 0.6); }
.hl-accent { font-style: italic; font-weight: 800; color: #FF7A4D; }
.hero-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 13px 22px;
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: #FFF8EC;
  border: 2px solid var(--accent);
  border-radius: 4px;
  background: rgba(20, 26, 38, 0.25);
  backdrop-filter: blur(6px);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.2s ease, color 0.2s ease;
}
.hero-cta:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.cta-arrow { display: inline-block; transition: transform 0.25s ease; }
.hero-cta:hover .cta-arrow { transform: translateY(3px); }

.hero-scroll-hint {
  position: absolute;
  left: 50%; bottom: 22px;
  transform: translateX(-50%);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--ink-soft);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: opacity 0.4s ease;
}
.hero-scroll-hint span {
  width: 1.5px; height: 34px;
  background: linear-gradient(var(--ink-soft), transparent);
  animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); } 100% { opacity: 0; } }

/* ---------- shared section chrome ---------- */
section { position: relative; }
.sec-h {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding-top: 110px;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -0.03em;
}
.sec-kicker {
  display: block;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ---------- work ---------- */
.work { background: #fff; border-top: 1px solid var(--hairline); }
.work-stage { position: relative; width: min(1120px, 92vw); margin: 0 auto; }
#work-canvas { width: 100%; height: 380px; display: block; touch-action: pan-y; }
.work-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-bottom: 110px;
}
.work-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 20px 22px;
  opacity: 0.45;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
}
.work-card.lit {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(34, 38, 46, 0.10);
}
.work-card h3 { font-size: 17px; letter-spacing: -0.01em; display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.wc-when { font-family: "Geist Mono", monospace; font-size: 11.5px; color: var(--ink-soft); font-weight: 400; white-space: nowrap; }
.work-card p { margin-top: 10px; font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }

/* ---------- about ---------- */
.about { background: var(--paper); }
.about-reveal {
  width: min(880px, 90vw);
  margin: 0 auto;
  padding: 46px 0 130px;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.about-reveal .w {
  opacity: 0.14;
  transition: opacity 0.5s ease;
}
.about-reveal .w.on { opacity: 1; }

/* ---------- products ---------- */
.products {
  position: relative;
  background: linear-gradient(180deg, var(--paper) 0%, var(--sky) 140%);
  border-top: 1px solid var(--hairline);
  /* JS stretches this tall for the card-by-card scroll showcase */
}
.products-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.show-info {
  position: absolute;
  right: 5.5vw;
  top: 52%;
  transform: translateY(calc(-50% + var(--dy, 0px)));
  width: min(580px, 44vw);
  max-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px 30px;
  background: rgba(252, 250, 245, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(30, 36, 48, 0.1);
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}
/* the screenshot is the panel's flexible element: it shrinks first on
   short viewports so the story and the live link are NEVER clipped */
.show-info .si-shot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 28vh;
  min-height: 100px;
  flex: 0 1 auto;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  border: 1px solid rgba(34, 38, 46, 0.1);
  background: #E9EDF4;
  margin-bottom: 18px;
}
.show-info .si-shot[hidden] { display: none; }
.show-info .si-idx {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 14px;
}
.show-info h3 {
  font-size: clamp(26px, 2.6vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.show-info .si-tag {
  margin-top: 8px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.show-info .si-desc {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.64;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.show-info .si-visit {
  display: inline-block;
  align-self: flex-start;
  flex-shrink: 0;
  margin-top: 18px;
  font-family: "Geist Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.show-info .si-visit:hover { color: var(--accent); }
.show-info .si-visit[hidden] { display: none; }
.show-info.live { pointer-events: auto; }
@media (max-height: 780px) {
  .show-info h3 { font-size: 24px; }
  .show-info .si-desc { -webkit-line-clamp: 3; }
}

/* progress rail between the stack and the panel: one dot per project,
   the active one glows accent — click to jump the stack */
/* chapter index on the far left edge — out of the card/panel lockup */
.stack-rail {
  position: absolute;
  left: 4.5vw;
  top: 52%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.products-sticky.staged .stack-rail { opacity: 1; pointer-events: auto; }
.stack-rail button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(34, 38, 46, 0.22);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}
.stack-rail button:hover { background: rgba(34, 38, 46, 0.45); }
.stack-rail button.on {
  background: var(--accent);
  transform: scale(1.45);
}
@media (max-width: 760px) { .stack-rail { display: none; } }
@media (max-width: 760px) {
  .show-info {
    right: 50%;
    transform: translate(50%, var(--dy, 0px));
    top: auto;
    bottom: 3vh;
    width: 90vw;
    max-height: 46vh;
    padding: 18px 20px;
    text-align: center;
  }
  .show-info .si-shot { max-height: 18vh; margin-bottom: 12px; }
  .show-info h3 { font-size: 24px; }
  .show-info .si-desc { -webkit-line-clamp: 3; font-size: 13.5px; }
}
/* the hint lives at the very bottom of the pinned viewport, clear of the
   full-height card fan — a quiet mono caption, not body copy */
.products-hint {
  position: absolute;
  left: 50%;
  bottom: 5.5vh;
  transform: translateX(-50%);
  z-index: 1;
  margin: 0;
  width: max-content;
  max-width: 92vw;
  font-family: "Geist Mono", monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink-soft);
  pointer-events: none;
}
/* while the stack showcase runs, the header recedes so the stage owns
   the screen (the hint would otherwise collide with the info panel) */
.sec-h, .products-hint { transition: opacity 0.45s ease; }
.products-sticky.staged .sec-h,
.products-sticky.staged .products-hint { opacity: 0; }
/* the 3D stage fills the whole pinned viewport so the presented card
   sits at the true center of the screen; the (fading) header floats
   above it and stays out of the pointer's way */
.capsule-stage { position: absolute; inset: 0; }
.capsule-stage.fall { position: static; }      /* DOM fallback: normal flow */
.products-sticky .sec-h { position: relative; z-index: 1; pointer-events: none; }
/* author display rules must not defeat the hidden attribute (the
   no-WebGL / no-CDN fallback path toggles these) */
#capsule-canvas[hidden] { display: none; }
.capsule-fallback[hidden] { display: none; }
#capsule-canvas {
  width: 100%;
  height: 100%;
  display: block;
  touch-action: pan-y;
}
.capsule-stage.fall #capsule-canvas { height: min(620px, 78vh); }
.capsule-fallback {
  list-style: none;
  width: min(1120px, 92vw);
  margin: 30px auto;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.capsule-fallback li a, .capsule-fallback li span {
  display: flex; align-items: center; gap: 12px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-decoration: none;
  font-weight: 600;
}
.capsule-fallback img { width: 44px; height: 44px; }

.card-veil {
  position: fixed; inset: 0;
  z-index: 49;
  background: rgba(24, 28, 38, 0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.card-veil.open { opacity: 1; }
.card-veil[hidden] { display: none; }

.capsule-card {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -46%) scale(0.96);
  z-index: 50;
  width: min(560px, calc(100vw - 40px));
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(30, 36, 48, 0.35);
  padding: 20px 24px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.capsule-card.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cc-close {
  position: absolute; top: 10px; right: 14px;
  z-index: 2;
  font-size: 26px; line-height: 1;
  background: rgba(250, 247, 241, 0.85); border: none; cursor: pointer;
  border-radius: 50%;
  width: 32px; height: 32px;
  color: var(--ink-soft);
}
.cc-close:hover { color: var(--accent); }
.cc-shot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  margin-bottom: 16px;
  background: #EDEAE2;
}
.cc-shot[hidden] { display: none; }
.cc-head { display: flex; align-items: center; gap: 14px; }
.cc-sprite { image-rendering: pixelated; flex: 0 0 auto; }
.capsule-card h3 { font-size: 23px; letter-spacing: -0.02em; }
.cc-head p { color: var(--ink-soft); font-weight: 600; font-size: 14px; margin-top: 2px; }
.cc-desc { margin-top: 14px; font-size: 14.5px; line-height: 1.65; color: var(--ink); font-weight: 400 !important; }
.cc-visit {
  display: inline-block;
  margin-top: 18px;
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.cc-visit:hover { color: var(--accent); }
.cc-visit[hidden] { display: none; }

/* ---------- footer ---------- */
.footer {
  position: relative;
  background: #1E2430;
  color: #C7D0DE;
  padding: 54px 0 60px;
  text-align: center;
  overflow: hidden;
}
.footer nav { display: flex; justify-content: center; gap: 26px; font-size: 14px; }
.footer nav a { color: #F6F9FF; text-decoration: none; border-bottom: 1px solid transparent; }
.footer nav a:hover { border-color: var(--accent); color: #fff; }
.footer p { margin-top: 18px; font-size: 13px; color: #8A94A6; }
.peek {
  position: absolute;
  right: 4vw; bottom: -120px;
  transition: bottom 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  image-rendering: pixelated;
  transform: rotate(-6deg);
}
.footer.peeking .peek { bottom: -34px; }

/* ---------- small screens ---------- */
@media (max-width: 720px) {
  .hero { height: 955vh; }
  .beat { white-space: normal; width: 92vw; font-size: clamp(27px, 7.2vw, 40px); }
  .hero-headline { font-size: clamp(30px, 8.4vw, 44px); line-height: 1.24; }
  .work-cards { grid-template-columns: 1fr; }
  #work-canvas { height: 280px; }
  .hero-lockin { bottom: 9vh; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero { height: auto; }
  .hero-sticky { position: relative; height: 100svh; }
  .beat { display: none; }
  .hero-lockin { opacity: 1 !important; }
  /* no scrub JS runs, so nothing ever raises --r: the headline must not
     stay clipped inside its mask line */
  .mk { transform: none !important; }
  /* products: the accessible list replaces the animated showcase */
  .products-sticky { position: static; height: auto; overflow: visible; }
  .capsule-stage { position: static; }
  .show-info, .stack-rail { display: none; }
  .banner-dot, .hero-scroll-hint span { animation: none; }
  .about-reveal .w { opacity: 1; }
  .work-card { opacity: 1; transform: none; }
}
