/* ============================================================
   Everyday Mac Tools: emt.css
   One committed theme: paper-white daylight, one silver MacBook.
   Type: Bricolage Grotesque (display) over the Mac's own
   system face (body) and ui-monospace (times, receipts, specs).
   The accent belongs to whichever tool holds the screen.
   ============================================================ */

@property --accent     { syntax: '<color>'; inherits: true; initial-value: #2e7cf6; }
@property --accent-ink { syntax: '<color>'; inherits: true; initial-value: #1d5fd0; }

:root {
  --bg:      #f6f7fa;   /* paper, a whisper cooler than white */
  --paper:   #ffffff;   /* product rows and labels */
  --sky:     #e6edfa;   /* daybreak: the wash behind the hero */
  --ink:     #17181a;
  --ink-2:   #2c2e33;
  --dim:     #5d6068;
  --faint:   #9a9da5;
  --hair:    rgba(23, 24, 26, .12);
  --hair-2:  rgba(23, 24, 26, .07);
  --brand:   #2e7cf6;   /* the Mac's own blue */
  --brand-ink: #1d5fd0;
  --alu-hi:  #ececee;
  --alu-mid: #c7c8cc;
  --alu-lo:  #9ea0a6;
  --accent:  #2e7cf6;
  --accent-ink: #1d5fd0;

  /* the six, taken from their own icons */
  --c-vkp: #4454b6;        --c-vkp-ink: #323f99;
  --c-basalt: #d0342c;     --c-basalt-ink: #a52a24;
  --c-manatee: #3b9ad0;    --c-manatee-ink: #1f6f9b;
  --c-mainspring: #c4934f; --c-mainspring-ink: #7f5623;
  --c-crumb: #5b63d6;      --c-crumb-ink: #3e45b3;
  --c-punchcard: #2b3150;  --c-punchcard-ink: #2b3150;

  --disp: "Bricolage Grotesque", "Avenir Next", "Futura", sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", "Segoe UI", sans-serif;
  --mono: ui-monospace, "SF Mono", "Menlo", "Cascadia Code", monospace;

  --nav-h: 64px;
  --gut: clamp(20px, 4vw, 48px);
  --mbw: min(680px, 92vw, calc((100vh - 500px) * 1.42));   /* hero: under the copy, Dock visible beneath */
  --mbw-act: min(720px, 50vw, calc((100vh - 310px) * 1.42)); /* an app open: fills the viewport beside the rail */
  --ease-out: cubic-bezier(.2, .9, .25, 1);
  --ease-spring: cubic-bezier(.3, 1.4, .4, 1);
}

body[data-act="1"] { --accent: var(--c-vkp);        --accent-ink: var(--c-vkp-ink); }
body[data-act="2"] { --accent: var(--c-basalt);     --accent-ink: var(--c-basalt-ink); }
body[data-act="3"] { --accent: var(--c-manatee);    --accent-ink: var(--c-manatee-ink); }
body[data-act="4"] { --accent: var(--c-mainspring); --accent-ink: var(--c-mainspring-ink); }
body[data-act="5"] { --accent: var(--c-crumb);      --accent-ink: var(--c-crumb-ink); }
body[data-act="6"] { --accent: var(--c-punchcard);  --accent-ink: var(--c-punchcard-ink); }

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

/* the display face, optically sized for the size it's set at */
.h2, .hero__h1, .rail__name, .prod__name, .prod__promise, .rule h3, .faq summary, .wordmark, .today__wm, .menu__item b, .lost__h1, .kit__card h3, .page__body h2 {
  font-family: var(--disp); font-optical-sizing: auto;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: --accent .9s ease, --accent-ink .9s ease;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); }
button { font: inherit; color: inherit; }
::selection { background: var(--accent-ink); color: var(--bg); }
:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 var(--gut); }
section[id], article[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }

.skip-link {
  position: absolute; left: -999px; top: 12px; z-index: 99;
  background: var(--ink); color: var(--bg); padding: 8px 14px; border-radius: 8px;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 12px; }

/* shared section furniture */
.eyebrow {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--dim);
}
.h2 {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(32px, 4.6vw, 56px); line-height: 1.02; letter-spacing: -.028em;
  text-wrap: balance; margin-top: 14px;
}
.sub { color: var(--dim); font-size: clamp(16px, 1.8vw, 19px); max-width: 36em; margin-top: 16px; }

/* generic reveal on scroll */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s var(--ease-out); }
.rv.in { opacity: 1; transform: none; }
.rv[data-d="1"] { transition-delay: .08s; } .rv[data-d="2"] { transition-delay: .16s; }
.rv[data-d="3"] { transition-delay: .24s; } .rv[data-d="4"] { transition-delay: .32s; }
.rv[data-d="5"] { transition-delay: .40s; }

/* ============================== top bar ============================== */

.top {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gut);
  transition: background .35s ease, box-shadow .35s ease, -webkit-backdrop-filter .35s, backdrop-filter .35s;
}
.top.is-scrolled {
  background: rgba(246, 247, 250, .8);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--hair);
}
.wordmark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--disp); font-weight: 600; font-size: 17px;
  letter-spacing: -.012em; text-decoration: none;
}
.wordmark b { font-weight: 800; }
.wordmark svg { display: block; flex: none; }
.rules .wordmark, .foot .wordmark { --bg: var(--bg); }
.top__links { display: flex; align-items: center; gap: clamp(16px, 2.6vw, 32px); }
.top__links a {
  text-decoration: none; font-size: 14.5px; color: var(--dim); font-weight: 500;
  position: relative; transition: color .25s;
}
.top__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out);
}
.top__links a:hover { color: var(--ink); }
.top__links a:hover::after { transform: scaleX(1); }
.top__links a.is-current { color: var(--ink); }
.top__links a.is-current::after { transform: scaleX(1); }
/* the Tools menu */
.menu { position: relative; }
.top__tools { display: none; }
.menu__btn {
  display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; cursor: pointer;
  font: 500 14.5px/1 var(--body); color: var(--dim); padding: 8px 0; transition: color .25s;
}
.menu__btn svg { transition: transform .3s var(--ease-out); }
.menu:hover .menu__btn, .menu.is-open .menu__btn, .menu__btn:focus-visible { color: var(--ink); }
.menu:hover .menu__btn svg, .menu.is-open .menu__btn svg { transform: rotate(180deg); }
.menu__panel {
  position: absolute; left: 50%; top: calc(100% + 10px); transform: translateX(-50%) translateY(6px);
  width: 560px; padding: 10px; border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid var(--hair); box-shadow: 0 30px 60px -30px rgba(23,24,26,.45), 0 2px 6px -2px rgba(23,24,26,.1);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, transform .3s var(--ease-out), visibility 0s linear .25s;
}
.menu__panel::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.menu:hover .menu__panel, .menu.is-open .menu__panel, .menu:focus-within .menu__panel {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%); transition-delay: 0s;
}
.menu__item {
  display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: center;
  padding: 10px 12px; border-radius: 12px; text-decoration: none; transition: background .2s;
}
.menu__item:hover, .menu__item:focus-visible { background: color-mix(in srgb, var(--ca, var(--brand)) 9%, transparent); }
.menu__item img { width: 40px; height: 40px; border-radius: 24%; box-shadow: 0 6px 12px -6px rgba(0,0,0,.45); }
.menu__item b { display: block; font-family: var(--disp); font-weight: 700; font-size: 15px; color: var(--ink); line-height: 1.2; }
.menu__item span { display: block; font-size: 13px; color: var(--dim); margin-top: 2px; }
.menu__foot {
  grid-column: 1 / -1; margin: 6px -4px -4px; padding: 12px 16px; border-top: 1px solid var(--hair-2);
  display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; color: var(--dim);
}
.menu__foot a { color: var(--ink); font-weight: 600; text-decoration: none; }
.menu__foot a:hover { color: var(--brand-ink); }

.top__hi {
  font-size: 14px !important; font-weight: 600 !important; color: var(--ink) !important;
  border: 1.5px solid var(--ink); border-radius: 999px; padding: 7px 14px;
  transition: background .25s, color .25s !important;
}
.top__hi::after { display: none; }
.top__hi:hover { background: var(--ink); color: var(--bg) !important; }

/* ============================== the stage ============================== */

.stage { height: calc(7 * 90vh); position: relative; }
.stage__vp::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 72vh; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, var(--sky) 0%, rgba(230, 237, 250, 0) 100%);
  opacity: var(--dawn, 1); transition: opacity .9s ease;
}
.stage__vp { position: sticky; top: 0; height: 100vh; overflow: hidden; }

/* faint accent daylight behind the machine */
.spill {
  position: absolute; left: 50%; top: 58%; z-index: 1;
  width: min(1100px, 120vw); height: 60vh;
  transform: translate(-50%, -30%);
  background: radial-gradient(closest-side, var(--accent), transparent 70%);
  opacity: .1; filter: blur(70px); pointer-events: none;
  transition: background .9s ease;
}

/* ---------- hero copy ---------- */

.hero__copy {
  position: absolute; z-index: 30; left: 50%; top: clamp(72px, 9vh, 110px);
  transform: translateX(-50%);
  width: min(1040px, 94vw); text-align: center;
  transition: opacity .6s ease, transform .6s ease;
}
body:not([data-act="hero"]) .hero__copy {
  opacity: 0; transform: translateX(-50%) translateY(-28px); pointer-events: none;
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 18px;
  opacity: 0; transform: translateY(10px);
}
.hero__kicker i { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); display: inline-block; }
body.booted .hero__kicker { opacity: 1; transform: none; transition: opacity .6s ease .1s, transform .6s ease .1s; }

.hero__h1 {
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(40px, 6.2vw, 74px);
  line-height: .96; letter-spacing: -.034em; text-wrap: balance;
}
.hero__h1 span { display: inline-block; transform: translateY(1.15em); opacity: 0; }
body.booted .hero__h1 span {
  transform: none; opacity: 1;
  transition: transform .85s var(--ease-out), opacity .5s ease;
}
body.booted .hero__h1 span:nth-child(2) { transition-delay: .09s; }
body.booted .hero__h1 span:nth-child(3) { transition-delay: .18s; }
body.booted .hero__h1 span:nth-child(4) { transition-delay: .27s; }
body.booted .hero__h1 span:nth-child(5) { transition-delay: .36s; }
body.booted .hero__h1 span:nth-child(6) { transition-delay: .45s; }

.circled { position: relative; }
.circled__svg {
  position: absolute; left: -.16em; top: -.08em;
  width: calc(100% + .32em); height: calc(100% + .2em);
  overflow: visible; pointer-events: none;
}
.circled__svg path {
  stroke: var(--brand); stroke-width: 4; stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 660; stroke-dashoffset: 660;
}
body.booted .circled__svg path { animation: draw 1s ease 1.6s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero__sub {
  margin: 20px auto 0; max-width: 36em; color: var(--dim);
  font-size: clamp(16px, 2vw, 18px); text-wrap: pretty;
  opacity: 0; transform: translateY(14px);
}
.hero__cta {
  margin-top: 28px; display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(14px);
}
body.booted .hero__sub, body.booted .hero__cta {
  opacity: 1; transform: none;
  transition: opacity .7s ease .55s, transform .7s ease .55s;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 15.5px/1 var(--body);
  background: var(--ink); color: var(--bg);
  border: 0; border-radius: 999px; padding: 15px 24px 15px 26px; cursor: pointer;
  text-decoration: none;
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(23, 24, 26, .55); }
.btn:active { transform: translateY(0); }
.btn svg { transition: transform .3s var(--ease-out); }
.btn:hover svg { transform: translateY(3px); }
.btn--ghost {
  background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--hair);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }

/* ============================== the MacBook ============================== */

.mb__perspective {
  position: absolute; z-index: 20; left: 50%; top: clamp(412px, 47vh, 450px);
  transform: translate(-50%, 0);
  perspective: 1700px;
  transition: transform .9s cubic-bezier(.3, .7, .2, 1), top .9s cubic-bezier(.3, .7, .2, 1), opacity .4s ease;
}
body:not([data-act="hero"]) .stage__vp { --dawn: 0; }
body:not([data-act="hero"]) .mb__perspective {
  --mbw: var(--mbw-act);
  /* bottom of the Dock sits 5vh above the viewport edge: 95vh − Dock (92px) − machine height (width × .674) */
  top: calc(95vh - 92px - var(--mbw-act) * .674);
  transform: translate(-50%, 0) translateX(clamp(0px, 12vw, 200px));
}

.mb {
  width: var(--mbw); position: relative;
  transition: width .9s cubic-bezier(.3, .7, .2, 1);
  transform: rotateX(var(--ty, 0deg)) rotateY(var(--tx, 0deg));
  transform-style: preserve-3d;
}

.mb__lid {
  transform-origin: 50% 100%;
  transform: rotateX(-79deg);
  transition: transform 1.5s cubic-bezier(.34, 1.1, .35, 1);
  will-change: transform;
}
body.booted .mb__lid { transform: rotateX(0deg); }

.mb__screen {
  position: relative;
  aspect-ratio: 16 / 10.4;
  background: #000;
  border: calc(var(--mbw) / 160) solid #0c0c0e;
  border-radius: calc(var(--mbw) / 44);
  box-shadow:
    inset 0 0 0 1.5px #2c2b33,
    0 0 0 1.5px var(--alu-mid),
    0 24px 60px -18px rgba(26, 22, 17, .4);
  overflow: hidden;
  font-size: calc(var(--mbw) / 52);
  transition: font-size .9s cubic-bezier(.3, .7, .2, 1), border-width .9s, border-radius .9s;
}
.mb__notch {
  position: absolute; z-index: 12; top: 0; left: 50%; transform: translateX(-50%);
  width: 17%; height: 1.15em; background: #0c0c0e;
  border-radius: 0 0 .5em .5em;
}
.screen__mbar, .scenes { opacity: 0; transition: opacity .8s ease .8s; }
body.booted .screen__mbar, body.booted .scenes { opacity: 1; }

.screen__glass {
  position: absolute; inset: 0; z-index: 14; pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.09) 0%, rgba(255,255,255,.025) 28%, transparent 45%);
}

/* ---------- menu bar ---------- */

.screen__mbar {
  position: absolute; z-index: 10; inset: 0 0 auto 0; height: 1.9em;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 .9em;
  background: rgba(24, 24, 32, .5);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, .92); font-size: .82em;
}
.mbar__l { display: inline-flex; align-items: center; gap: .9em; letter-spacing: .01em; }
.mbar__apple { width: .9em; height: .9em; display: inline-block; fill: rgba(255,255,255,.9); }
.mbar__app { font-weight: 600; min-width: 5em; }
.mbar__r { display: inline-flex; align-items: center; gap: .55em; }
.st--wifi { width: .95em; height: .72em; background: rgba(255,255,255,.65); clip-path: polygon(50% 100%, 0 22%, 100% 22%); border-radius: .1em; }
.st--batt { width: 1.35em; height: .66em; border: .09em solid rgba(255,255,255,.5); border-radius: .16em; position: relative; }
.st--batt::before { content: ""; position: absolute; inset: .09em auto .09em .09em; width: 66%; background: rgba(255,255,255,.7); border-radius: .07em; }
.st--batt::after { content: ""; position: absolute; right: -.24em; top: 50%; transform: translateY(-50%); width: .12em; height: .3em; background: rgba(255,255,255,.5); border-radius: 0 .1em .1em 0; }
.mbar__clock { font-family: var(--mono); font-size: .95em; min-width: 3.6em; text-align: right; font-variant-numeric: tabular-nums; }

/* ---------- scenes ---------- */

.scenes { position: absolute; inset: 0; }
.scene { position: absolute; inset: 0; margin: 0; pointer-events: none; }
.scene__wall { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; background-size: 160% 160% !important; }
.scene.is-on .scene__wall { opacity: 1; animation: drift 36s ease-in-out infinite alternate; }
@keyframes drift { from { background-position: 0% 0%; } to { background-position: 100% 100%; } }

/* the cursor that does the work in three of the scenes */
.cur {
  position: absolute; z-index: 5; width: 1.1em; height: 1.5em; left: 70%; top: 70%; opacity: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 30'%3E%3Cpath d='M3 2 L3 24 L8.6 18.6 L12.4 27.4 L16.4 25.6 L12.6 17 L20 17 Z' fill='%23000' stroke='%23fff' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
  filter: drop-shadow(0 .1em .2em rgba(0,0,0,.35));
}
.scene.is-on .cur--pdf   { animation: cur-pdf 2.3s ease-in-out .2s both; }
.scene.is-on .cur--fix   { animation: cur-fix 1.7s ease-in-out 0s both; }
.scene.is-on .cur--prefs { animation: cur-prefs 2.3s ease-in-out 0s both; }
@keyframes cur-pdf {
  0%   { left: 72%; top: 72%; opacity: 0; }
  8%   { left: 31%; top: 36%; opacity: 1; }
  14%  { left: 31%; top: 36%; }
  34%  { left: 68%; top: 36%; }
  40%  { left: 31%; top: 46%; }
  58%  { left: 68%; top: 46%; }
  64%  { left: 31%; top: 55%; }
  80%  { left: 62%; top: 55%; }
  92%  { left: 78%; top: 78%; opacity: 1; }
  100% { left: 80%; top: 82%; opacity: 0; }
}
@keyframes cur-fix {
  0%   { left: 4%;  top: 92%; opacity: 0; }
  10%  { opacity: 1; }
  66%  { left: 36%; top: 42%; opacity: 1; }
  78%  { left: 36%; top: 42%; }
  100% { left: 14%; top: 88%; opacity: 0; }
}
@keyframes cur-prefs {
  0%   { left: 48%; top: 80%; opacity: 0; }
  10%  { opacity: 1; }
  26%  { left: 63%; top: 37%; }
  34%  { left: 63%; top: 37%; }
  48%  { left: 63%; top: 46%; }
  54%  { left: 63%; top: 46%; }
  68%  { left: 63%; top: 55%; }
  74%  { left: 63%; top: 55%; }
  92%  { left: 74%; top: 80%; opacity: 1; }
  100% { left: 76%; top: 84%; opacity: 0; }
}
/* launch: up out of the Dock with a spring; minimize: back down into it */
.scene__app {
  position: absolute; inset: 0; transform-origin: 50% 125%;
  opacity: 0; transform: translateY(34%) scale(.1);
  transition: transform .42s cubic-bezier(.55, 0, .85, .45), opacity .22s ease .15s;
}
.scene.is-on .scene__app {
  opacity: 1; transform: none;
  transition: transform .75s cubic-bezier(.22, 1.25, .32, 1) .32s, opacity .3s ease .32s;
}
.scene--hero .scene__app { transform: translateY(6%) scale(.96); transition: transform .5s ease, opacity .3s ease; }
.scene--hero.is-on .scene__app { transition: transform .7s var(--ease-out) .1s, opacity .5s ease .1s; }

/* a day of light, dawn to dusk */
.scene--hero       .scene__wall { background: linear-gradient(168deg, #2a2f55 0%, #6d6b9e 55%, #c9b1cf 100%); }
.scene--vkp        .scene__wall { background: linear-gradient(165deg, #6f9fd6 0%, #b5c6e4 55%, #e3e8ef 100%); }
.scene--basalt     .scene__wall { background: linear-gradient(165deg, #5d84ac 0%, #90b4cf 60%, #d8e6ec 100%); }
.scene--manatee    .scene__wall { background: linear-gradient(165deg, #5fb3cf 0%, #a5d8d6 55%, #eef5ea 100%); }
.scene--mainspring .scene__wall { background: linear-gradient(165deg, #b8a58a 0%, #d7cab6 55%, #ece6dc 100%); }
.scene--crumb      .scene__wall { background: linear-gradient(165deg, #7d8fc9 0%, #a9a2cf 55%, #d3c4de 100%); }
.scene--punchcard  .scene__wall { background: linear-gradient(168deg, #2c3259 0%, #5d4b78 55%, #8a5f8f 100%); }

/* a generic Mac window the scenes share */
.win {
  position: absolute; overflow: hidden;
  background: #fbfbfc; border-radius: .7em;
  box-shadow: 0 1.4em 3.2em -1.2em rgba(10, 14, 30, .55), 0 0 0 1px rgba(0,0,0,.08);
  display: flex; flex-direction: column;
}
.win__bar {
  flex: none; height: 2.1em; display: flex; align-items: center; gap: .42em; padding: 0 .8em;
  background: #eeeef1; border-bottom: 1px solid rgba(0,0,0,.08);
  font-size: .76em; color: #5b5e66; position: relative;
}
.win__bar i { width: .66em; height: .66em; border-radius: 50%; }
.win__bar i:nth-child(1) { background: #ff5f57; }
.win__bar i:nth-child(2) { background: #febc2e; }
.win__bar i:nth-child(3) { background: #28c840; }
.win__title { position: absolute; left: 50%; transform: translateX(-50%); font-weight: 600; white-space: nowrap; }
.win__body { flex: 1; position: relative; min-height: 0; }
.win--dark { background: #1d1e26; box-shadow: 0 1.4em 3.2em -1.2em rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.08); }
.win--dark .win__bar { background: #26272f; border-bottom-color: rgba(255,255,255,.07); color: #c5c7cf; }

/* --- hero scene: today's desktop --- */

.today {
  position: absolute; left: 50%; top: 52%; transform: translate(-50%, -50%);
  width: 52%; border-radius: .9em; padding: 1.3em 1.5em 1.4em;
  background: rgba(20, 20, 30, .55);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 1.4em 3em -1em rgba(10, 10, 20, .6), inset 0 0 0 1px rgba(255,255,255,.12);
  color: #f3f1ea;
}
.today__date { font-family: var(--mono); font-size: .74em; letter-spacing: .12em; text-transform: uppercase; color: rgba(243,241,234,.6); }
.today__wm {
  font-family: var(--disp); font-weight: 700; font-size: 1.9em; line-height: 1.02; letter-spacing: -.015em;
  margin-top: .3em;
}
.today__hint {
  display: flex; align-items: center; gap: .6em; margin-top: 1.1em;
  font-family: var(--mono); font-size: .74em; color: rgba(243,241,234,.62);
}
.today__hint i { width: .5em; height: .5em; border-radius: 50%; background: var(--brand); display: inline-block; }
.scene.is-on .today__hint i { animation: pulse 1.8s ease infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(46,124,246,.55); } 60% { box-shadow: 0 0 0 .6em rgba(46,124,246,0); } }

/* --- 9:12: Voice Keyboard Pro: a Notes window + the mic pill --- */

.win--notes { left: 13%; right: 13%; top: 17%; bottom: 29%; }
.notes__body { padding: 1.3em 1.6em; }
.notes__h { font-family: var(--body); font-weight: 700; font-size: 1.05em; color: #2e3138; margin-bottom: .5em; }
.doc__line { font-size: .92em; color: #3a3d45; line-height: 1.7; overflow-wrap: break-word; }
.caret { display: inline-block; width: .12em; height: 1.1em; margin-left: .08em; background: var(--c-vkp); vertical-align: text-bottom; }
.scene.is-on .caret { animation: blink 1.05s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.vkp-pill {
  position: absolute; left: 50%; bottom: 19%; transform: translateX(-50%);
  transform-origin: 50% 100%;
  display: flex; align-items: center; gap: .8em;
  background: rgba(22, 23, 36, .94); border-radius: 99em; padding: .6em 1.1em .6em .85em;
  box-shadow: 0 .9em 2em -0.8em rgba(0,0,0,.7), inset 0 0 0 1px rgba(255,255,255,.1);
}
.vkp-key {
  font-family: var(--mono); font-size: .68em; color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.28); border-radius: .3em; padding: .1em .45em; letter-spacing: .05em;
}
.vkp-mic { width: .85em; height: .85em; border-radius: 50%; background: #8d96ff; }
.scene.is-on .vkp-mic { animation: micpulse 1.6s ease infinite; }
.scene.is-on .vkp-pill { animation: popin .5s var(--ease-spring) .75s backwards; }
@keyframes popin { from { transform: translateX(-50%) translateY(1em) scale(.4); opacity: 0; } to { transform: translateX(-50%); opacity: 1; } }
@keyframes micpulse { 0%,100% { box-shadow: 0 0 0 0 rgba(141,150,255,.5); } 55% { box-shadow: 0 0 0 .55em rgba(141,150,255,0); } }
.wave { display: inline-flex; align-items: center; gap: .22em; height: 1.3em; }
.wave i { width: .18em; height: 30%; border-radius: 99px; background: #8d96ff; }
.scene.is-on .wave i { animation: wave .9s ease-in-out infinite alternate; }
.wave i:nth-child(1) { animation-delay: 0s; }   .wave i:nth-child(2) { animation-delay: .1s; }
.wave i:nth-child(3) { animation-delay: .22s; } .wave i:nth-child(4) { animation-delay: .07s; }
.wave i:nth-child(5) { animation-delay: .3s; }  .wave i:nth-child(6) { animation-delay: .16s; }
.wave i:nth-child(7) { animation-delay: .26s; } .wave i:nth-child(8) { animation-delay: .05s; }
.wave i:nth-child(9) { animation-delay: .2s; }
@keyframes wave { from { height: 22%; } to { height: 100%; } }

/* --- 10:40: Basalt: a PDF window with a toolbar --- */

.win--pdf { left: 19%; right: 19%; top: 11%; bottom: 13%; }
.pdf__tools {
  display: flex; gap: .5em; padding: .55em .8em; border-bottom: 1px solid rgba(0,0,0,.07);
  background: #f5f5f7; font-size: .7em; color: #6a6d75;
}
.pdf__tools span { padding: .25em .6em; border-radius: .35em; }
.pdf__tools span.on { background: var(--c-basalt); color: #fff; font-weight: 600; }
.pdf__page {
  position: absolute; left: 14%; right: 14%; top: 3.2em; bottom: .9em;
  background: #fff; padding: 1.3em 1.4em;
  box-shadow: 0 .3em 1em -0.4em rgba(0,0,0,.35);
  display: flex; flex-direction: column; gap: .72em;
}
.pdf__title { font-family: var(--mono); font-size: .66em; letter-spacing: .12em; color: #3a3d44; margin-bottom: .3em; }
.pdf__l { height: .42em; border-radius: 99px; background: #dcdad3; position: relative; }
.pdf__l--short { width: 62%; }
.pdf__l--r1::after, .pdf__l--r2::after, .pdf__l--r3::after {
  content: ""; position: absolute; inset: -0.14em 0; background: #17181c; border-radius: .12em;
  transform: scaleX(0); transform-origin: left center;
}
.scene.is-on .pdf__l--r1::after { animation: redact .55s cubic-bezier(.6,0,.2,1) .5s forwards; }
.scene.is-on .pdf__l--r2::after { animation: redact .55s cubic-bezier(.6,0,.2,1) .95s forwards; }
.scene.is-on .pdf__l--r3::after { animation: redact .55s cubic-bezier(.6,0,.2,1) 1.4s forwards; }
@keyframes redact { to { transform: scaleX(1); } }
.pdf__stamp {
  position: absolute; right: 4%; bottom: 9%;
  font-family: var(--mono); font-size: .72em; letter-spacing: .1em;
  color: var(--c-basalt); border: .16em solid var(--c-basalt); border-radius: .3em;
  padding: .35em .6em; background: rgba(255,255,255,.92);
  transform: rotate(-8deg) scale(0); opacity: 0;
}
.scene.is-on .pdf__stamp { animation: stamp .4s var(--ease-spring) 2.1s forwards; }
@keyframes stamp { to { transform: rotate(-8deg) scale(1); opacity: 1; } }

/* --- Manatee: drop, repair --- */

.win--fix { left: 20%; right: 20%; top: 16%; bottom: 22%; }
.fix {
  position: absolute; left: 50%; top: 44%; transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 2em;
}
.fix__file { width: 4.8em; height: 6em; position: relative; flex: none; }
.fix__piece { position: absolute; inset: 0; background: #f1f2f5 !important; }
/* the crack itself, drawn on top; it closes when the file mends */
.fix__file--broken::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 60'%3E%3Cpolyline points='48,17 30,24 42,31 19,40 34,48 0,60' fill='none' stroke='%23646b78' stroke-width='2.6' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.scene.is-on .fix__file--broken::after { animation: crackfade .4s ease 1.55s forwards; }
@keyframes crackfade { to { opacity: 0; } }
.fix__file--ok { position: relative; }
.fix__file--ok, .fix__piece {
  border-radius: .5em .9em .5em .5em;
  background: #fff; box-shadow: 0 .8em 1.8em -0.9em rgba(20,30,40,.5), 0 0 0 1px rgba(0,0,0,.06);
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: .6em;
}
.fix__file--ok::before, .fix__piece::before { content: ""; position: absolute; right: 0; top: 0; width: 1.1em; height: 1.1em; background: linear-gradient(225deg, #fbfbfc 50%, #dcdde2 50%); border-radius: 0 .9em 0 .2em; }
.fix__ext { font-family: var(--mono); font-size: .74em; color: #5b5e66; }
/* the broken one: two pieces along a jagged tear, pulled apart */
.fix__piece--a { clip-path: polygon(0 0, 100% 0, 100% 28%, 62% 40%, 88% 52%, 40% 66%, 70% 80%, 0 100%); filter: saturate(.5) brightness(.95); transform: translate(-.22em, -.1em) rotate(-3deg); }
.fix__piece--b { clip-path: polygon(100% 28%, 62% 40%, 88% 52%, 40% 66%, 70% 80%, 0 100%, 100% 100%); filter: saturate(.5) brightness(.95); transform: translate(.55em, .45em) rotate(6deg); }
.fix__piece--b .fix__ext { visibility: hidden; }
.scene.is-on .fix__file--broken { animation: dragin 1.1s var(--ease-out) .15s backwards; }
@keyframes dragin { from { transform: translate(-150%, 130%) scale(.85) rotate(-8deg); opacity: .7; } to { transform: none; opacity: 1; } }
.scene.is-on .fix__piece--b { animation: mend .5s var(--ease-spring) 1.5s forwards; }
@keyframes mend { to { transform: none; filter: none; } }
.scene.is-on .fix__piece--a { animation: mendA .5s var(--ease-spring) 1.5s forwards; }
@keyframes mendA { to { transform: none; filter: none; } }
.fix__arrow { width: 2.4em; height: .28em; background: var(--c-manatee); border-radius: 99px; position: relative; }
.fix__arrow::after {
  content: ""; position: absolute; right: -0.12em; top: 50%; width: .85em; height: .85em;
  border-top: .28em solid var(--c-manatee); border-right: .28em solid var(--c-manatee);
  transform: translateY(-50%) rotate(45deg); border-radius: .1em;
}
.scene.is-on .fix__arrow { animation: nudge 1.2s ease 1.6s infinite; }
@keyframes nudge { 50% { transform: translateX(.35em); } }
.fix__file--ok { transform: scale(.6); opacity: 0; }
.scene.is-on .fix__file--ok { animation: healed .55s var(--ease-spring) 2.5s forwards; }
@keyframes healed { to { transform: scale(1); opacity: 1; } }
.fix__play {
  position: absolute; left: 50%; top: 40%; transform: translate(-50%, -50%);
  width: 1.9em; height: 1.9em; border-radius: 50%; background: var(--c-manatee);
  box-shadow: 0 .3em .8em -0.3em rgba(31,111,155,.6);
}
.fix__play::after { content: ""; position: absolute; left: 56%; top: 50%; transform: translate(-50%, -50%); border-left: .7em solid #fff; border-top: .42em solid transparent; border-bottom: .42em solid transparent; }
.fix__bar { position: absolute; left: 12%; right: 12%; bottom: 2.2em; height: .42em; border-radius: 99px; background: #e6e7ec; overflow: hidden; }
.fix__bar::after { content: ""; position: absolute; inset: 0; background: var(--c-manatee); transform: scaleX(0); transform-origin: left; border-radius: 99px; }
.scene.is-on .fix__bar::after { animation: fill 1.1s cubic-bezier(.4,0,.2,1) 1.4s forwards; }
@keyframes fill { to { transform: scaleX(1); } }
.fix__note {
  position: absolute; left: 0; right: 0; bottom: .7em; text-align: center;
  font-family: var(--mono); font-size: .7em; color: #5d6068;
}

/* --- 2:30: Mainspring: a settings window --- */

.win--prefs { left: 14%; right: 14%; top: 12%; bottom: 15%; }
.prefs { display: grid; grid-template-columns: 30% 1fr; height: 100%; }
.prefs__side { background: #f3f3f5; border-right: 1px solid rgba(0,0,0,.07); padding: .7em .5em; font-size: .72em; color: #3a3d45; }
.prefs__side span { display: block; padding: .35em .6em; border-radius: .35em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prefs__side span.on { background: var(--c-mainspring); color: #fff; font-weight: 600; }
.prefs__main { padding: .8em 1em; }
.prefs__h { font-weight: 700; font-size: .9em; color: #2e3138; margin-bottom: .3em; }
.recipe {
  display: flex; align-items: center; justify-content: space-between;
  padding: .55em .1em; font-size: .78em; color: #2e3138;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.recipe small { display: block; color: #7a7d85; font-size: .86em; }
.tog { width: 2.4em; height: 1.4em; border-radius: 99px; background: #d3d4da; position: relative; flex: none; margin-left: 1em; }
.tog i { position: absolute; top: .13em; left: .13em; width: 1.14em; height: 1.14em; border-radius: 50%; background: #fff; box-shadow: 0 .1em .3em rgba(0,0,0,.25); }
.scene.is-on .recipe:nth-child(2) .tog   { animation: togbg .01s linear .7s forwards; }
.scene.is-on .recipe:nth-child(2) .tog i { animation: togknob .35s var(--ease-spring) .7s forwards; }
.scene.is-on .recipe:nth-child(3) .tog   { animation: togbg .01s linear 1.18s forwards; }
.scene.is-on .recipe:nth-child(3) .tog i { animation: togknob .35s var(--ease-spring) 1.18s forwards; }
.scene.is-on .recipe:nth-child(4) .tog   { animation: togbg .01s linear 1.64s forwards; }
.scene.is-on .recipe:nth-child(4) .tog i { animation: togknob .35s var(--ease-spring) 1.64s forwards; }
@keyframes togbg   { to { background: #34c759; } }
@keyframes togknob { to { transform: translateX(1em); } }
.recipes__badge {
  display: inline-block; margin-top: .8em;
  font-family: var(--mono); font-size: .62em; letter-spacing: .08em;
  color: var(--c-mainspring-ink); border: 1px solid currentColor; border-radius: 99px; padding: .3em .8em;
  opacity: 0;
}
.scene.is-on .recipes__badge { animation: fadeup .5s ease 2s forwards; }
@keyframes fadeup { from { opacity: 0; transform: translateY(.4em); } to { opacity: 1; transform: none; } }

/* --- Crumb: a treemap of the disk --- */

.win--disk { left: 11%; right: 11%; top: 10%; bottom: 14%; }
.disk { position: absolute; inset: .8em; display: flex; flex-direction: column; gap: .6em; }
.disk__map {
  flex: 1; display: grid; gap: .25em;
  grid-template-columns: 30fr 22fr 16fr 14fr 18fr; grid-template-rows: 1fr 1fr 1fr;
  grid-template-areas: "a b c c g" "a b e f g" "a d d f h";
}
.tm {
  position: relative; border-radius: .35em; overflow: hidden; font-style: normal;
  background: linear-gradient(180deg, #d7daf3, #b7bcea); box-shadow: inset 0 0 0 1px rgba(45,55,130,.14);
  padding: .45em .5em; display: flex; flex-direction: column; justify-content: flex-end; gap: .05em;
  font-family: var(--mono); color: #262a5c; line-height: 1.2;
}
.tm b { font-size: .56em; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tm span { font-size: .52em; opacity: .7; }
.tm em { position: absolute; top: .4em; right: .4em; font-style: normal; font-size: .46em; letter-spacing: .08em; text-transform: uppercase; padding: .2em .5em; border-radius: 99px; background: #fff; color: var(--c-crumb-ink); box-shadow: 0 1px 2px rgba(0,0,0,.12); }
.tm--a { grid-area: a; } .tm--b { grid-area: b; } .tm--c { grid-area: c; } .tm--d { grid-area: d; }
.tm--e { grid-area: e; } .tm--f { grid-area: f; } .tm--g { grid-area: g; } .tm--h { grid-area: h; }
.tm.pop { background: linear-gradient(180deg, #fff0c9, #f6c864); box-shadow: inset 0 0 0 1px rgba(150,100,10,.2); color: #5a3d07; }
.scene.is-on .tm { animation: rise .5s ease backwards; animation-delay: var(--d); }
@keyframes rise { from { transform: scale(.7); opacity: 0; } }
.scene.is-on .tm.pop { animation: rise .5s ease backwards, popaway .5s cubic-bezier(.5,0,.8,.4) forwards; animation-delay: var(--d), calc(1.6s + var(--d)); }
@keyframes popaway { 60% { transform: scale(1.06); opacity: 1; } to { transform: scale(.1); opacity: 0; } }
.disk__foot { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--mono); font-size: .72em; color: #3a3d45; }
.disk__tag { display: inline-flex; align-items: center; gap: .5em; }
.disk__tag i { width: .8em; height: .8em; border-radius: .2em; background: linear-gradient(180deg, #fff0c9, #f6c864); box-shadow: inset 0 0 0 1px rgba(150,100,10,.25); }
.disk__foot b { font-size: 1.5em; color: var(--c-crumb-ink); font-weight: 700; font-variant-numeric: tabular-nums; }

/* --- 6:00: Punchcard: the slot prints the receipt --- */

.printer {
  position: absolute; left: 50%; top: 9%; transform: translateX(-50%); z-index: 2;
  width: 42%; height: 1.6em; border-radius: .5em;
  background: linear-gradient(180deg, #2a2d3e, #1b1d2a);
  box-shadow: 0 .6em 1.4em -0.6em rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.08);
}
.printer::after { content: ""; position: absolute; left: 6%; right: 6%; bottom: .3em; height: .22em; border-radius: 99px; background: #05060a; }
.printer__lamp { position: absolute; right: .7em; top: .5em; width: .4em; height: .4em; border-radius: 50%; background: #ff5f57; }
.scene.is-on .printer__lamp { animation: lamp .6s steps(1) .1s 4; }
@keyframes lamp { 50% { background: #3ddc84; } }
.receipt { position: absolute; left: 50%; top: calc(9% + 1.2em); bottom: 0; transform: translateX(-50%); width: 34%; overflow: hidden; }
.receipt__paper {
  background: #f7f1e1; color: #1d2237; border-radius: 0 0 .3em .3em;
  padding: 1.1em 1.2em 1.4em;
  font-family: var(--mono); font-size: .72em; line-height: 1.7;
  box-shadow: 0 1.2em 2.6em -1.2em rgba(10,10,20,.7);
  transform: translateY(-103%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - .55em),
    95% 100%, 90% calc(100% - .55em), 85% 100%, 80% calc(100% - .55em),
    75% 100%, 70% calc(100% - .55em), 65% 100%, 60% calc(100% - .55em),
    55% 100%, 50% calc(100% - .55em), 45% 100%, 40% calc(100% - .55em),
    35% 100%, 30% calc(100% - .55em), 25% 100%, 20% calc(100% - .55em),
    15% 100%, 10% calc(100% - .55em), 5% 100%, 0 calc(100% - .55em));
}
.scene.is-on .receipt__paper { animation: print 2.1s cubic-bezier(.25,.8,.3,1) .35s forwards; }
@keyframes print { to { transform: translateY(0); } }
.receipt__head { text-align: center; font-weight: 700; letter-spacing: .3em; font-size: 1.1em; }
.receipt__sub  { text-align: center; opacity: .65; margin-bottom: .6em; }
.receipt__row  { display: flex; justify-content: space-between; border-bottom: 1px dashed rgba(29,34,55,.25); }
.receipt__row--total { border-bottom: 0; border-top: 1.5px solid #1d2237; margin-top: .5em; font-weight: 700; }
.receipt__stamp {
  margin: .7em auto 0; width: max-content;
  font-weight: 700; letter-spacing: .2em; color: #e0452f;
  border: .18em solid #e0452f; border-radius: .25em; padding: .1em .5em;
  transform: rotate(-6deg) scale(0); opacity: 0;
}
.scene.is-on .receipt__stamp { animation: stamp2 .35s var(--ease-spring) 2.5s forwards; }
@keyframes stamp2 { to { transform: rotate(-6deg) scale(1); opacity: .9; } }
.receipt__gag { text-align: center; margin-top: .5em; font-style: italic; opacity: .75; }
.receipt__barcode { display: flex; justify-content: center; gap: .12em; margin-top: .7em; height: 1.6em; }
.receipt__barcode i { width: .1em; background: #1d2237; }
.receipt__barcode i:nth-child(3n)  { width: .24em; }
.receipt__barcode i:nth-child(4n)  { width: .06em; }
.receipt__barcode i:nth-child(5n)  { width: .17em; }

/* the notification, once the receipt is ready */
.notif {
  position: absolute; z-index: 6; top: 2.6em; right: .8em; width: 42%;
  display: flex; align-items: center; gap: .7em; padding: .7em .8em;
  background: rgba(250, 250, 248, .92); border-radius: .8em;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 1em 2.4em -1em rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.6);
  color: #17181a; font-size: .72em; line-height: 1.3;
  transform: translateX(120%); opacity: 0;
}
.notif img { width: 2.6em; height: 2.6em; border-radius: 24%; flex: none; }
.notif b { display: block; font-weight: 700; }
.notif span { color: #5d6068; }
.notif em { font-style: normal; color: #9a9da5; font-size: .85em; align-self: flex-start; margin-left: auto; }
.scene.is-on .notif { animation: notif .6s var(--ease-spring) 3.1s forwards; }
@keyframes notif { to { transform: none; opacity: 1; } }

/* ---------- base: silver aluminum ---------- */

.mb__base {
  position: relative; z-index: 2;
  width: calc(var(--mbw) * 1.14); margin-left: calc(var(--mbw) * -0.07);
  height: calc(var(--mbw) / 42);
  background: linear-gradient(180deg, var(--alu-hi), var(--alu-mid) 55%, var(--alu-lo) 100%);
  border-radius: 0 0 calc(var(--mbw) / 34) calc(var(--mbw) / 34);
  box-shadow: 0 1px 0 rgba(26,22,17,.25);
}
.mb__thumb {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: calc(var(--mbw) / 6.5); height: calc(var(--mbw) / 110);
  background: var(--alu-lo); border-radius: 0 0 99px 99px;
}
.mb__shadow {
  position: absolute; left: 50%; bottom: calc(var(--mbw) / -18); transform: translateX(-50%);
  width: calc(var(--mbw) * 1.05); height: calc(var(--mbw) / 12);
  background: radial-gradient(closest-side, rgba(26,22,17,.3), transparent);
  filter: blur(8px); z-index: 0;
}

/* ---------- the Dock: at the foot of the machine, and the navigation ---------- */

.dockbar {
  position: absolute; z-index: 6; left: 50%; top: 100%; transform: translateX(-50%);
  margin-top: clamp(12px, 2.2vh, 22px);
  display: flex; align-items: flex-end; gap: 10px; padding: 9px 11px;
  background: rgba(255, 255, 255, .7);
  -webkit-backdrop-filter: blur(18px) saturate(160%); backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(23, 24, 26, .09); border-radius: 22px;
  box-shadow: 0 24px 48px -24px rgba(23, 24, 26, .4), inset 0 1px 0 rgba(255, 255, 255, .85);
}
.dockbar__app {
  position: relative; border: 0; background: none; padding: 0; cursor: pointer;
  width: var(--di, 56px); height: var(--di, 56px);
}
/* the label above, like macOS */
.dockbar__app::before {
  content: attr(data-label); position: absolute; left: 50%; bottom: calc(100% + 14px); transform: translate(-50%, 4px);
  background: rgba(23, 24, 26, .92); color: #fff; font: 600 12.5px/1 var(--body); white-space: nowrap;
  padding: 7px 10px; border-radius: 8px; opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .25s var(--ease-out);
}
.dockbar__app:hover::before, .dockbar__app:focus-visible::before { opacity: 1; transform: translate(-50%, 0); }
/* the open-app dot beneath */
.dockbar__app::after {
  content: ""; position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--ink); opacity: 0; transition: opacity .3s;
}
.dockbar__app.is-open::after { opacity: .9; }
.dockbar__app:focus-visible { outline: none; }
.dockbar__app:focus-visible .dockbar__ic { outline: 2px solid var(--accent-ink); outline-offset: 3px; border-radius: 26%; }
/* magnification (hover), on the wrapper */
.dockbar__ic {
  display: block; width: 100%; height: 100%;
  transform: scale(var(--s, 1)) translateY(calc((var(--s, 1) - 1) * -16px));
  transform-origin: bottom center; transition: transform .12s ease-out;
}
/* arrival on boot, one by one; bounce on launch: both on the image */
.dockbar__ic img {
  width: 100%; height: 100%; border-radius: 24%;
  box-shadow: 0 8px 16px -8px rgba(0, 0, 0, .5);
  opacity: 0; transform: translateY(16px) scale(.5);
  transition: opacity .35s ease, transform .5s var(--ease-spring);
}
.dockbar__app.in .dockbar__ic img { opacity: 1; transform: none; }
.dockbar__app.is-open .dockbar__ic img { animation: bounce .95s ease .05s; }
@keyframes bounce {
  0%   { transform: none; }
  18%  { transform: translateY(-24px); }
  36%  { transform: none; }
  52%  { transform: translateY(-12px); }
  66%  { transform: none; }
  78%  { transform: translateY(-5px); }
  90%, 100% { transform: none; }
}

/* ============================== act rail ============================== */

.rail {
  position: absolute; z-index: 30; left: max(clamp(24px, 5.5vw, 88px), calc(50% - 640px));
  top: calc(95vh - 92px - var(--mbw-act) * .337);
  transform: translateY(-50%);
  width: min(400px, 32vw);
}
.rail__act {
  position: absolute; top: 50%; left: 0; right: 0;
  transform: translateY(-46%) translateX(-18px);
  opacity: 0; pointer-events: none;
  transition: opacity .5s ease, transform .55s var(--ease-out);
}
body[data-act="1"] .rail__act[data-act="1"],
body[data-act="2"] .rail__act[data-act="2"],
body[data-act="3"] .rail__act[data-act="3"],
body[data-act="4"] .rail__act[data-act="4"],
body[data-act="5"] .rail__act[data-act="5"],
body[data-act="6"] .rail__act[data-act="6"] {
  opacity: 1; transform: translateY(-50%); pointer-events: auto;
}
.rail__time {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-ink); transition: color .9s ease;
}
.rail__time::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 1px; }
.rail__name {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(34px, 4vw, 56px); line-height: 1; letter-spacing: -.03em;
  margin: 14px 0 16px; text-wrap: balance;
}
.rail__line { color: var(--ink-2); font-size: clamp(16px, 1.5vw, 18px); max-width: 28em; text-wrap: pretty; }
.rail__meta { display: flex; align-items: center; gap: 16px; margin-top: 22px; flex-wrap: wrap; }
.rail__price {
  font-family: var(--mono); font-size: 13px; letter-spacing: .04em;
  color: var(--accent-ink); background: color-mix(in srgb, var(--accent) 12%, transparent);
  border-radius: 999px; padding: 6px 12px; transition: color .9s, background .9s;
}
.rail__link {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  font-weight: 600; font-size: 15.5px; color: var(--ink);
}
.rail__link svg { transition: transform .3s var(--ease-out); }
.rail__link:hover { color: var(--accent-ink); }
.rail__link:hover svg { transform: translateX(4px); }

/* ============================== bands & tables (shared) ============================== */

.band { position: relative; z-index: 2; background: var(--bg); padding: clamp(72px, 11vh, 128px) 0; }
.band--warm { background: #f3f3f0; }
.band--line { border-top: 1px solid var(--hair); }
.sec__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.sec__head--row .sub { margin-top: 12px; }
.sec__aside { font-size: 14.5px; color: var(--dim); max-width: 26em; }
.sec__aside a { color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1.5px solid var(--hair); }
.sec__aside a:hover { border-color: var(--ink); }

/* ============================== faq ============================== */

.faq { border-top: 1px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--hair); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 4px; font-family: var(--disp); font-weight: 700; font-size: 19px; letter-spacing: -.01em; color: var(--ink);
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand-ink); }
.faq summary i {
  flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--hair); position: relative; transition: transform .35s var(--ease-out), border-color .2s;
}
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 1.5px; background: var(--ink); transform: translate(-50%, -50%); }
.faq summary i::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .35s var(--ease-out); }
.faq details[open] summary i { transform: rotate(180deg); border-color: var(--ink); }
.faq details[open] summary i::after { transform: translate(-50%, -50%) rotate(0); }
.faq__a { padding: 0 4px 22px; color: var(--dim); font-size: 16px; line-height: 1.65; max-width: 40em; text-wrap: pretty; }
.faq__a a { color: var(--ink); }

/* ============================== inner pages ============================== */

.page { padding: calc(var(--nav-h) + clamp(48px, 8vh, 96px)) 0 clamp(72px, 11vh, 128px); position: relative; z-index: 2; }
.page__head { max-width: 760px; }
.page__body { max-width: 720px; margin-top: clamp(32px, 5vh, 56px); }
.page__body h2 { font-family: var(--disp); font-weight: 700; font-size: 24px; letter-spacing: -.015em; margin: 40px 0 12px; }
.page__body h2:first-child { margin-top: 0; }
.page__body p, .page__body li { font-size: 17px; line-height: 1.7; color: var(--ink-2); text-wrap: pretty; }
.page__body p + p { margin-top: 1em; }
.page__body ul { padding-left: 1.2em; margin-top: .6em; }
.page__body li + li { margin-top: .4em; }
.page__body a { color: var(--ink); }
.page__meta { font-family: var(--mono); font-size: 13px; color: var(--faint); margin-top: 18px; }

/* press kit */
.kit { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(28px, 4vh, 44px); }
.kit__card { background: var(--paper); border: 1px solid var(--hair); border-radius: 22px; padding: 22px; }
.kit__card h3 { font-family: var(--disp); font-weight: 700; font-size: 18px; letter-spacing: -.01em; }
.kit__card p { font-size: 14px; color: var(--dim); margin-top: 6px; line-height: 1.5; }
.kit__preview { height: 150px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; background: var(--bg); border: 1px solid var(--hair-2); }
.kit__preview--dark { background: var(--ink); }
.kit__preview img { width: 72px; height: 72px; border-radius: 24%; box-shadow: 0 10px 20px -10px rgba(0,0,0,.5); }
.kit__dl { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-weight: 600; font-size: 14px; color: var(--ink); text-decoration: none; }
.kit__dl:hover { color: var(--brand-ink); }
.kit__dl + .kit__dl { margin-left: 16px; }
.swatches { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; margin-top: 20px; }
.swatch { border-radius: 14px; border: 1px solid var(--hair); overflow: hidden; background: var(--paper); }
.swatch i { display: block; height: 64px; }
.swatch b { display: block; font-size: 13.5px; padding: 10px 12px 2px; }
.swatch span { display: block; font-family: var(--mono); font-size: 12px; color: var(--dim); padding: 0 12px 10px; }
.icons-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.icons-row a { display: block; }
.icons-row img { width: 64px; height: 64px; border-radius: 24%; box-shadow: 0 8px 16px -8px rgba(0,0,0,.5); transition: transform .3s var(--ease-spring); }
.icons-row a:hover img { transform: translateY(-4px); }

/* ============================== the six: product rows ============================== */

.products { position: relative; z-index: 2; background: var(--paper); padding: clamp(80px, 12vh, 150px) 0 clamp(72px, 11vh, 128px); border-top: 1px solid var(--hair); }
.prods { margin-top: clamp(36px, 6vh, 72px); border-top: 1px solid var(--ink); }
.prod {
  --ca: var(--brand); --ca-ink: var(--brand-ink);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px); align-items: start;
  padding: clamp(40px, 6vh, 72px) 0; border-bottom: 1px solid var(--hair);
  position: relative;
}
.prod:nth-child(even) { grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr); }
.prod:nth-child(even) .prod__main { order: 2; }
.prod--vkp { --ca: var(--c-vkp); --ca-ink: var(--c-vkp-ink); }           .prod--basalt { --ca: var(--c-basalt); --ca-ink: var(--c-basalt-ink); }
.prod--manatee { --ca: var(--c-manatee); --ca-ink: var(--c-manatee-ink); } .prod--mainspring { --ca: var(--c-mainspring); --ca-ink: var(--c-mainspring-ink); }
.prod--crumb { --ca: var(--c-crumb); --ca-ink: var(--c-crumb-ink); }       .prod--punchcard { --ca: var(--c-punchcard); --ca-ink: var(--c-punchcard-ink); }
.prod__icon {
  width: 96px; height: 96px; border-radius: 24%;
  box-shadow: 0 14px 28px -14px rgba(0,0,0,.5), 0 0 0 1px rgba(0,0,0,.04);
  margin-bottom: 26px;
}
.prod:hover .prod__icon { animation: bounce .95s ease; }
.prod__job { color: var(--ca-ink); }
.prod__name { font-family: var(--disp); font-weight: 700; font-size: clamp(30px, 3.4vw, 44px); letter-spacing: -.025em; line-height: 1.02; margin-top: 10px; }
.prod__promise { font-family: var(--disp); font-weight: 500; font-size: clamp(19px, 1.8vw, 23px); letter-spacing: -.012em; line-height: 1.3; margin-top: 12px; color: var(--ink-2); max-width: 22em; text-wrap: balance; }
.prod__does { list-style: none; margin-top: 22px; max-width: 34em; }
.prod__does li { position: relative; padding: 11px 0 11px 26px; color: var(--dim); font-size: 16px; line-height: 1.55; border-top: 1px solid var(--hair-2); text-wrap: pretty; }
.prod__does li b { color: var(--ink); font-weight: 600; }
.prod__does li::before { content: ""; position: absolute; left: 2px; top: 19px; width: 10px; height: 10px; border-radius: 50%; background: var(--ca); opacity: .9; }
.prod__for { margin-top: 10px; font-size: 15px; font-weight: 600; color: var(--ca-ink); }
.prod__go { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-weight: 600; font-size: 15.5px; color: var(--ink); text-decoration: none; }

/* the media column: the app's own screen, and the label under it */
.prod__media { position: sticky; top: calc(var(--nav-h) + 24px); display: grid; gap: 18px; container-type: inline-size; }
.shot {
  position: relative; aspect-ratio: 16 / 10.4; border-radius: 16px; overflow: hidden; background: #0c0c0e;
  font-size: 8px; font-size: calc(100cqw / 52);
  box-shadow: 0 34px 60px -34px color-mix(in srgb, var(--ca) 55%, rgba(23,24,26,.55)), 0 0 0 1px rgba(0,0,0,.08);
  transform: translateZ(0);
}
.shot .screen__mbar { opacity: 1; transition: none; }
.shot .scene { position: absolute; inset: 0; }
.shot .scene__wall { opacity: 1; }
.prod__go svg { transition: transform .3s var(--ease-out); }
.prod__go:hover { color: var(--ca-ink); }
.prod__go:hover svg { transform: translateX(4px); }

/* the label on the box */
.plate {
  position: relative;
  background: var(--bg); border: 1px solid var(--hair); border-radius: 18px; padding: 18px 20px 8px;
  font-family: var(--mono); font-size: 13px; color: var(--ink-2);
  box-shadow: 0 24px 48px -36px rgba(23,24,26,.35);
  transform: rotate(0.4deg); transition: transform .5s var(--ease-spring), box-shadow .4s;
}
.prod:nth-child(even) .plate { transform: rotate(-0.4deg); }
.prod:hover .plate { transform: rotate(0) translateY(-3px); box-shadow: 0 30px 50px -34px color-mix(in srgb, var(--ca) 45%, rgba(23,24,26,.4)); }
.plate::before { content: ""; position: absolute; left: 20px; right: 20px; top: 0; height: 3px; background: var(--ca); border-radius: 0 0 3px 3px; }
.plate__head { display: flex; justify-content: space-between; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); padding: 4px 0 12px; border-bottom: 1px solid var(--ink); }
.plate__head span:first-child { color: var(--ink); font-weight: 600; }
.plate__row { display: grid; grid-template-columns: 92px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--hair); }
.plate__row:last-child { border-bottom: 0; }
.plate dt { color: var(--faint); letter-spacing: .06em; text-transform: uppercase; font-size: 11px; padding-top: 2px; }
.plate dd { color: var(--ink); line-height: 1.45; }

/* ============================== house rules (on ink) ============================== */

.rules { padding: clamp(80px, 12vh, 150px) 0; background: var(--ink); color: var(--bg); position: relative; z-index: 2; }
.rules .eyebrow { color: #8c8f98; }
.rules .sub { color: #a9acb5; }
.rules__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 96px); align-items: start;
}
.rules__lead { position: sticky; top: calc(var(--nav-h) + 32px); }
.rules__list { list-style: none; }
.rule { padding: 28px 0; border-bottom: 1px solid rgba(250,250,248,.14); position: relative; }
.rule:first-child { padding-top: 6px; }
.rule h3 {
  font-family: var(--disp); font-weight: 700; font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -.02em; line-height: 1.15; display: inline; color: var(--bg);
  background-image: linear-gradient(var(--brand), var(--brand));
  background-repeat: no-repeat; background-position: 0 100%; background-size: 0% 3px;
  transition: background-size .6s var(--ease-out) .15s;
}
.rule.in h3 { background-size: 100% 3px; }
.rule p { color: #a9acb5; font-size: 16.5px; line-height: 1.65; margin-top: 12px; max-width: 36em; text-wrap: pretty; }
.rule p em { font-style: normal; color: var(--bg); box-shadow: inset 0 -.45em rgba(46,124,246,.35); }
.rules ::selection { background: var(--brand); color: #fff; }

/* ============================== help: directory + questions ============================== */

.help { position: relative; z-index: 2; background: var(--bg); padding: clamp(80px, 12vh, 150px) 0; }
.help__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(36px, 6vw, 96px); align-items: start; }
.help__lead { position: sticky; top: calc(var(--nav-h) + 32px); }
.help__mail {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 26px;
  font-family: var(--mono); font-size: 16px; font-weight: 600; color: var(--ink); text-decoration: none;
  border-bottom: 2px solid var(--brand); padding-bottom: 4px; transition: color .25s;
}
.help__mail svg { transition: transform .3s var(--ease-out); }
.help__mail:hover { color: var(--brand-ink); }
.help__mail:hover svg { transform: translateX(4px); }

/* ============================== company ============================== */

.colophon { border-top: 1px solid var(--ink); padding-top: 18px; font-size: 14.5px; }
.colophon dl { margin-top: 14px; }
.colophon dl > div { display: grid; grid-template-columns: 84px 1fr; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--hair); }
.colophon dt { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); padding-top: 3px; }
.colophon dd { color: var(--ink-2); line-height: 1.5; }
.colophon dd a { color: var(--ink); text-decoration: none; border-bottom: 1.5px solid var(--hair); }
.colophon dd a:hover { border-color: var(--ink); }

/* ============================== the shop ============================== */

.shop { padding: 0 0 clamp(80px, 12vh, 150px); background: var(--bg); position: relative; z-index: 2; }
.shop__grid {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(36px, 6vw, 96px); align-items: start;
  border-top: 1px solid var(--hair); padding-top: clamp(56px, 8vh, 96px);
}
.shop__body p { font-size: clamp(17px, 1.9vw, 19px); line-height: 1.7; max-width: 34em; margin-top: 1.1em; color: var(--ink-2); text-wrap: pretty; }
.shop__body p:first-of-type { margin-top: 22px; }
.shop__sign { font-family: var(--mono); font-size: 14px; color: var(--dim); margin-top: 1.6em !important; }
/* ============================== footer ============================== */

.foot { background: var(--bg); border-top: 1px solid var(--hair); padding: 56px 0 48px; position: relative; z-index: 2; }
.foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.foot__note { color: var(--dim); font-size: 15px; margin-top: 14px; max-width: 26em; font-style: italic; }
.foot h4 { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.foot ul { list-style: none; display: grid; gap: 9px; }
.foot li a { text-decoration: none; color: var(--ink-2); font-size: 15px; display: inline-flex; align-items: center; gap: 9px; transition: color .2s; }
.foot li a:hover { color: var(--brand-ink); }
.foot li a img { width: 18px; height: 18px; border-radius: 24%; }
.foot li a small { font-family: var(--mono); font-size: 11.5px; color: var(--faint); }
.foot__legal {
  display: flex; gap: 10px 18px; flex-wrap: wrap; align-items: center;
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--hair-2);
  color: var(--faint); font-size: 13.5px;
}
.foot__legal a { color: var(--dim); text-decoration: none; }
.foot__legal a:hover { color: var(--ink); }
.foot__legal .sp { flex: 1; }

/* ============================== responsive ============================== */

@media (max-width: 1000px) {
  :root {
    --mbw: min(560px, 90vw, calc((100vh - 440px) * 1.35));
    --mbw-act: min(560px, 90vw, calc((100vh - 470px) * 1.35));
    --di: 44px;
  }
  .mb__perspective { top: clamp(330px, 42vh, 560px); }
  body:not([data-act="hero"]) .mb__perspective { top: 9vh; transform: translate(-50%, 0); }
  .dockbar { gap: 8px; padding: 8px 10px; border-radius: 18px; }
  .dockbar__app::before { display: none; }
  .rail {
    left: 50%; top: auto; bottom: clamp(88px, 14vh, 130px); transform: translateX(-50%);
    width: min(600px, 90vw); text-align: center;
  }
  .rail__name { font-size: clamp(28px, 6vw, 38px); }
  .rail__act { top: auto; bottom: 0; transform: translateY(10px); }
  body[data-act="1"] .rail__act[data-act="1"], body[data-act="2"] .rail__act[data-act="2"],
  body[data-act="3"] .rail__act[data-act="3"], body[data-act="4"] .rail__act[data-act="4"],
  body[data-act="5"] .rail__act[data-act="5"], body[data-act="6"] .rail__act[data-act="6"] { transform: translateY(0); }
  .rail__time { justify-content: center; }
  .rail__name { font-size: clamp(28px, 6vw, 38px); margin: 8px 0 8px; }
  .rail__line { font-size: 15px; margin: 0 auto; max-width: 32em; }
  .rail__meta { justify-content: center; margin-top: 14px; }
  .rules__grid, .shop__grid { grid-template-columns: 1fr; gap: 32px; }
  .prod, .prod:nth-child(even) { grid-template-columns: 1fr; gap: 28px; }
  .prod:nth-child(even) .prod__main { order: 0; }
  .prod__media { position: static; }
  .plate { transform: none !important; }
  .help__grid { grid-template-columns: 1fr; }
  .help__lead { position: static; }
  .kit { grid-template-columns: 1fr 1fr; }
  .menu { display: none; }
  .top__tools { display: inline; }
  .rules__lead { position: static; }
  .foot__grid { grid-template-columns: 1fr 1fr 1fr; }
  .foot__grid > div:first-child { grid-column: 1 / -1; }
  .top__links a:not(.top__hi):not(.top__tools) { display: none; }
}

@media (max-width: 640px) {
  .stage { height: calc(7 * 100vh); }
  :root { --mbw: min(560px, 90vw, calc((100vh - 580px) * 1.35)); }
  .mb__perspective { top: clamp(460px, 55vh, 600px); }
  .hero__kicker { white-space: nowrap; letter-spacing: .1em; font-size: 11.5px; }
  .hero__cta .btn--ghost { display: none; }
  .kit { grid-template-columns: 1fr; }
  .prod__icon { width: 72px; height: 72px; }
  .colophon dl > div { grid-template-columns: 1fr; gap: 2px; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  :root { --di: 40px; }
  .dockbar { gap: 6px; padding: 7px 9px; }
  .rail { bottom: clamp(74px, 11vh, 100px); }
  .rail__line { font-size: 14.5px; }
}

@media (max-width: 440px) {
  .wordmark span { display: none; }
  .wordmark svg { width: 34px; height: 28px; }
}

@media (max-height: 640px) {
  .hero__copy { top: 72px; }
  .hero__sub { display: none; }
}

/* ============================== reduced motion ============================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mb__lid { transition: none; transform: rotateX(0); }
  .screen__mbar, .scenes, .dock { transition: none; opacity: 1; }
  .hero__h1 span, .hero__kicker { transform: none; opacity: 1; transition: none; }
  .hero__sub, .hero__cta { opacity: 1; transition: none; }
  .dockbar__ic img { transition: none; }
  .dockbar__app.is-open .dockbar__ic img { animation: none; }
  .hero__sub, .hero__cta { transform: none; }
  .circled__svg path { stroke-dashoffset: 0; animation: none; }
  .scene__wall, .scene__app, .scene.is-on .scene__app { transition-duration: .01s; transition-delay: 0s; }
  .scene.is-on .caret, .scene.is-on .wave i, .scene.is-on .vkp-mic, .scene.is-on .today__hint i,
  .scene.is-on .fix__arrow, .scene.is-on .fix__file--broken, .scene.is-on .printer__lamp, .scene.is-on .cur, .scene.is-on .scene__wall { animation: none; }
  .scene.is-on .fix__piece--a, .scene.is-on .fix__piece--b, .scene.is-on .tm { animation-duration: .01s; animation-delay: 0s; }
  .scene.is-on .vkp-pill, .scene.is-on .notif { animation-duration: .01s; animation-delay: 0s; }
  .scene.is-on .notif { transform: none; opacity: 1; }
  .scene.is-on .pdf__l--r1::after, .scene.is-on .pdf__l--r2::after, .scene.is-on .pdf__l--r3::after,
  .scene.is-on .pdf__stamp, .scene.is-on .fix__file--ok, .scene.is-on .fix__bar::after, .scene.is-on .recipes__badge,
  .scene.is-on .receipt__paper, .scene.is-on .receipt__stamp,
  .scene.is-on .recipe .tog, .scene.is-on .recipe .tog i { animation-duration: .01s; animation-delay: 0s; }
  .mb__perspective, .mb, .mb__screen, .hero__copy, .rv, .rail__act, .rule h3, .plate { transition-duration: .01s; transition-delay: 0s; }
  body { transition: none; }
}
