/* auglu.org
   Shared type scale, compact content-first layouts and accessible navigation.
   One family (Instrument Sans, self-hosted). Navy and gold come from the wordmark. */

:root {
  --paper: #ffffff;
  --paper-2: #f5f5f7;
  --ink: #0f1a24;
  --ink-2: #485565;
  --ink-3: #626d7b;
  --line: #e1e4e8;
  --navy: #0c3b68;
  --navy-mid: #16508a;
  --navy-deep: #06182b;
  --gold: #dba653;
  --gold-ink: #8a6526;

  --font: "Instrument Sans", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial,
          "PingFang TC", "PingFang SC", "Noto Sans TC", "Noto Sans SC", "Microsoft JhengHei", sans-serif;

  --max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --nav-h: 72px;
  --subnav-h: 49px;
  --fs-body: 1.0625rem;
  --fs-small: .9375rem;
  --radius: 18px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --space-section: clamp(2rem, 3.6vw, 3.5rem);
  --space-block: clamp(1.25rem, 2.2vw, 2rem);

  --fs-display: clamp(2.375rem, 1.5rem + 2.8vw, 4.25rem);
  --fs-statement: clamp(1.625rem, 1.2rem + 1.35vw, 2.5rem);
  --fs-h2: clamp(1.625rem, 1.3rem + .85vw, 2.125rem);
  --fs-h3: clamp(1.125rem, 1.05rem + .25vw, 1.3rem);
  --fs-lead: clamp(1.0625rem, 1rem + .25vw, 1.1875rem);
}
/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "calt";
}
img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; }
p { margin: 0 0 1rem; max-width: 62ch; }
p:last-child { margin-bottom: 0; }
a { color: var(--navy); }
ul, ol, dl { margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }
.hero-full :focus-visible, .hero-photo :focus-visible, .hero-dark :focus-visible, .scene :focus-visible, .band :focus-visible, .footer :focus-visible, .nav:not(.is-scrolled):not(.is-open) :focus-visible { outline-color: var(--gold); }
body[data-nav="light"] .nav.is-scrolled :focus-visible, .nav.is-open :focus-visible { outline-color: var(--navy); }
:lang(zh) .display, :lang(zh) .h2, :lang(zh) .h3, :lang(zh) .statement-text { letter-spacing: 0; line-height: 1.25; }


.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--navy); color: #fff; padding: .6rem 1rem; border-radius: 8px; text-decoration: none;
}
.skip:focus { top: 1rem; }

/* Type */
.display {
  font-size: var(--fs-display);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 20ch;
  text-wrap: balance;
}
.h2 {
  font-size: var(--fs-h2);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 24ch;
  text-wrap: balance;
}
.h3 {
  font-size: var(--fs-h3);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: .45rem;
}
.lead {
  font-size: var(--fs-lead);
  line-height: 1.45;
  max-width: 44ch;
  margin-top: 1.1rem;
  color: var(--ink-2);
}
.intro {
  font-size: var(--fs-lead);
  line-height: 1.5;
  max-width: 56ch;
  color: var(--ink);
}
.muted { color: var(--ink-2); }
.address { color: var(--ink); font-weight: 500; border-left: 2px solid var(--gold); padding-left: 1rem; max-width: 52ch; margin-top: 1.25rem; }
.small { font-size: var(--fs-small); }
.meta { color: var(--ink-3); font-size: var(--fs-small); }

/* Layout */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--space-section) 0; }
.section-alt { background: var(--paper-2); }
.section .wrap + .wrap { margin-top: var(--space-block); }
.split { display: grid; gap: 1rem clamp(2rem, 6vw, 6rem); align-items: start; }
.cols-3 { display: grid; gap: 1.75rem 3rem; }
.col p { color: var(--ink-2); }
.more { margin-top: 1.75rem; }
.roles { color: var(--ink-2); max-width: 62ch; margin-top: var(--space-block); padding-top: 1.25rem; border-top: 1px solid var(--line); }
.roles + .more { margin-top: 1rem; }
@media (min-width: 900px) {
  .split { grid-template-columns: 5fr 7fr; }
}
@media (min-width: 760px) {
  .cols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Links and buttons */
.link {
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 2px;
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 100% 1px, 0 1px;
  background-position: 0 100%, 0 100%;
  transition: background-size .45s var(--ease), background-position .45s var(--ease), color .25s;
}
.link:hover {
  color: var(--navy-mid);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
}
.link-light, .link-light:hover { color: #fff; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
  font-family: inherit; border: 1px solid transparent; cursor: pointer;
  background: var(--navy);
  color: #fff;
  padding: .85em 1.5em;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  transition: background .25s, transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.btn:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(12, 59, 104, .7); }
.btn:active { transform: translateY(0) scale(.98); box-shadow: none; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: #fff; box-shadow: 0 12px 28px -12px rgba(0, 0, 0, .55); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.75rem; margin-top: 1.5rem; }

/* Navigation */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  color: var(--ink);
  transition: background .4s, box-shadow .4s, color .3s;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; height: 100%;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
}
.brand { display: flex; align-items: center; gap: .65rem; position: relative; z-index: 3; text-decoration: none; }
.brand-mark, .brand-word { position: relative; display: block; }
.brand-mark { height: 32px; }
.brand-word { height: 20px; }
.brand img { height: 100%; width: auto; transition: opacity .35s; }
.brand-light { position: absolute; inset: 0; opacity: 0; }
.menu-list { list-style: none; display: flex; gap: 1.75rem; }
@media (min-width: 1000px) {
  .menu { display: flex; align-items: center; }
}
.menu-list a {
  position: relative;
  font-size: var(--fs-small); font-weight: 500; color: inherit; text-decoration: none; opacity: .82;
  padding: .7rem 0; transition: opacity .25s;
}
.menu-list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.menu-list a:hover, .menu-list a[aria-current] { opacity: 1; }
.menu-list a:hover::after, .menu-list a[aria-current]::after { transform: scaleX(1); }
.lang { list-style: none; display: flex; gap: .9rem; margin-left: 1.5rem; padding-left: 1.5rem; border-left: 1px solid rgba(127, 127, 127, .35); }
.lang a { font-size: .85rem; color: inherit; opacity: .7; text-decoration: none; transition: opacity .25s; }
.lang a:hover, .lang a[aria-current] { opacity: 1; }
.lang a[aria-current] { font-weight: 600; }
.nav.is-scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}
/* The blur only while the menu is closed: backdrop-filter turns the bar into the containing block for the fixed menu panel */
.nav.is-scrolled:not(.is-open) {
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
body[data-nav="light"] .nav:not(.is-scrolled):not(.is-open) { color: #fff; }
body[data-nav="light"] .nav:not(.is-scrolled):not(.is-open) .brand-dark { opacity: 0; }
body[data-nav="light"] .nav:not(.is-scrolled):not(.is-open) .brand-light { opacity: 1; }
.nav-toggle {
  display: none; align-items: center; gap: .6rem;
  background: none; border: 0; color: inherit; font: inherit; font-weight: 500; font-size: var(--fs-small);
  padding: .5rem 0 .5rem .5rem; min-height: 44px; cursor: pointer; position: relative; z-index: 3;
}
.nav-toggle-icon { position: relative; width: 20px; height: 14px; display: inline-block; }
.nav-toggle-icon i { position: absolute; left: 0; right: 0; height: 2px; background: currentColor; transition: transform .3s var(--ease), top .3s var(--ease); }
.nav-toggle-icon i:first-child { top: 1px; }
.nav-toggle-icon i:last-child { top: 11px; }
.nav.is-open .nav-toggle-icon i:first-child { top: 6px; transform: rotate(45deg); }
.nav.is-open .nav-toggle-icon i:last-child { top: 6px; transform: rotate(-45deg); }
@media (max-width: 999px) {
  .nav-toggle { display: inline-flex; }
  .menu {
    position: fixed; inset: 0; z-index: 2; height: 100vh; height: 100dvh;
    background: #fff; color: var(--ink);
    padding: calc(var(--nav-h) + 1.5rem) var(--gutter) max(2rem, env(safe-area-inset-bottom));
    display: none; flex-direction: column; gap: 2.5rem; overflow: auto; overscroll-behavior: contain;
  }
  .nav.is-open .menu { display: flex; }
  
  .nav.is-open { background: #fff; color: var(--ink); }
  .menu-list { flex-direction: column; gap: .2rem; }
  .menu-list a { display: block; font-size: 1.85rem; font-weight: 600; letter-spacing: -0.02em; padding: .55rem 0; opacity: 1; }
  .menu-list a::after { display: none; }
  .menu-list a[aria-current] { color: var(--navy); }
  .lang { margin: 0; padding: 0; border: 0; gap: 1.5rem; }
  .lang a { font-size: var(--fs-body); }
  body.menu-open { overflow: hidden; }
}

/* Heroes */
.hero { position: relative; }
.hero-full, .hero-photo, .hero-dark {
  color: #fff;
  background: var(--navy-deep);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-full { min-height: min(640px, 74svh); }
.hero-photo { min-height: 340px; }
.hero-dark { min-height: 340px; align-items: center; }
.hero-media {
  position: absolute; inset: 0;

}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(4, 12, 24, .85), rgba(4, 12, 24, .22)), linear-gradient(180deg, rgba(4, 12, 24, .65), transparent 40%);
}
.hero-dark .hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6, 24, 43, .7), rgba(6, 24, 43, .25));
}
.hero-content, .hero-dark .wrap { position: relative; width: 100%; }
.hero-content { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: clamp(2rem, 5vh, 3.5rem); }
.hero-dark .wrap { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 2rem; }
.hero-full .lead, .hero-photo .lead, .hero-dark .lead { color: rgba(255, 255, 255, .88); }
.hero-text { padding: calc(var(--nav-h) + clamp(2rem, 4vw, 3rem)) 0 clamp(1.5rem, 3vw, 2.5rem); }
.hero-text .meta { margin-top: 1.25rem; }
.hero-404 { min-height: 50svh; display: flex; align-items: center; }
.notfound-grid { display: grid; gap: 2rem; align-items: center; width: 100%; }
.notfound-mark svg, .notfound-mark img { width: clamp(9rem, 22vw, 16rem); height: auto; }
/* Animated marks arrive as <picture> with a static twin for reduced motion; lay them out as their image */
.watermark picture, .cta-mark picture, .footer-brand picture, .portrait-placeholder picture, .notfound-mark picture { display: contents; }
.hero-about { padding: calc(var(--nav-h) + clamp(2rem, 4vw, 3rem)) 0 clamp(1.5rem, 3vw, 2.5rem); }
.about-grid { display: grid; gap: 2rem; align-items: center; }
.about-text .meta { margin-top: .75rem; }
.about-text .profile { color: var(--ink-2); margin-top: 1.25rem; max-width: 60ch; font-size: var(--fs-body); line-height: 1.6; }
.portrait { margin: 0; }
.portrait img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); }
.portrait-placeholder { background: var(--paper-2); border-radius: var(--radius); aspect-ratio: 3 / 4; display: grid; place-items: center; }
.portrait-placeholder svg, .portrait-placeholder img { width: 46%; height: auto; aspect-ratio: auto; border-radius: 0; object-fit: contain; }
.about-text p:not(.lead) { color: var(--ink-2); margin-top: 1rem; }
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 4fr 8fr; gap: clamp(2rem, 6vw, 6rem); }
  .notfound-grid { grid-template-columns: 3fr 9fr; gap: clamp(2rem, 6vw, 6rem); }
}

/* Statement: readable immediately, without scroll-dependent opacity. */
.statement { position: relative; overflow: hidden; padding: var(--space-section) 0; }
.statement .wrap { position: relative; }
.statement-text {
  font-size: var(--fs-statement);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  max-width: 30ch;
  margin: 0;
  color: var(--ink);
}


/* Lists */
.rows .row {
  display: grid; gap: .3rem 3rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}
.rows .row:last-child { border-bottom: 1px solid var(--line); }
.rows dt { font-weight: 600; font-size: var(--fs-body); line-height: 1.35; }
.rows dt .meta { display: block; font-weight: 400; margin-top: .1rem; }
.rows dd { margin: 0; color: var(--ink-2); }
@media (min-width: 760px) {
  .rows .row { grid-template-columns: 5fr 7fr; }
}

.steps { list-style: none; counter-reset: step; }
.step {
  counter-increment: step;
  display: grid; grid-template-columns: 2.75rem 1fr; gap: .4rem 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  content: counter(step);
  font-weight: 600;
  color: var(--gold-ink);
  font-variant-numeric: tabular-nums;
  padding-top: .3rem;
  grid-row: 1 / span 2;
}
.step p { color: var(--ink-2); }
.step-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .3rem 1rem; }
.step-head .h3 { margin-bottom: .15rem; }

.plain { list-style: none; margin-top: 1.25rem; }
.plain li { padding: .65rem 0; border-top: 1px solid var(--line); color: var(--ink-2); }
.plain li:last-child { border-bottom: 1px solid var(--line); }
.plain.large { margin-top: 0; }
.plain.large li { font-size: var(--fs-h3); font-weight: 500; letter-spacing: -0.012em; padding: .8rem 0; color: var(--ink); }

.facts > div {
  display: grid; gap: .25rem 1.5rem;
  padding: .9rem 0;
  border-top: 1px solid var(--line);
}
.facts > div:last-child { border-bottom: 1px solid var(--line); }
.facts dt { font-weight: 600; }
.facts dd { margin: 0; color: var(--ink-2); }
.facts-contact dd { font-size: var(--fs-h3); font-weight: 500; letter-spacing: -0.012em; color: var(--ink); }
.facts-contact a { text-decoration: none; color: var(--navy); }
.facts-contact a:hover { color: var(--navy-mid); }
.facts + .small { margin-top: 1.25rem; }
@media (min-width: 640px) {
  .facts > div { grid-template-columns: 9rem 1fr; }
}

.posts { list-style: none; }
.posts a {
  display: flex; justify-content: space-between; align-items: baseline; gap: 2rem;
  padding: 1.05rem 0;
  border-top: 1px solid var(--line);
  color: inherit; text-decoration: none;
}
.posts li:last-child a { border-bottom: 1px solid var(--line); }
.post-title { font-size: var(--fs-h3); font-weight: 500; letter-spacing: -0.012em; line-height: 1.3; transition: color .3s, transform .45s var(--ease-out); }
.posts a:hover .post-title { color: var(--navy); transform: translateX(8px); }
.post-meta { display: flex; align-items: baseline; gap: .75rem; color: var(--ink-3); font-size: var(--fs-small); white-space: nowrap; font-variant-numeric: tabular-nums; transition: color .3s; }
.posts a:hover .post-meta { color: var(--ink); }
.post-source::before { content: ""; display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: currentColor; vertical-align: middle; margin-right: .75rem; }
@media (max-width: 640px) {
  .posts a { flex-direction: column; gap: .25rem; }
}

.posts-note { margin-top: 1rem; }
.prose { max-width: 66ch; }
.prose .h3 { margin-top: 2rem; }
.prose .h3:first-child { margin-top: 0; }
.prose p { color: var(--ink-2); }

.photo-break { height: clamp(10rem, 23vw, 18rem); overflow: hidden; }
.photo-break img { width: 100%; height: 100%; object-fit: cover; }

/* Content-first feature panels. No pinned scenes, stacked hidden copy or viewport-height spacers. */
.scene { background: var(--navy-deep); color: #fff; }
.scene-stage {
  max-width: var(--max); margin: 0 auto; padding: var(--space-section) var(--gutter);
  display: grid; gap: 2rem clamp(2rem, 4vw, 4rem); align-items: center;
}
.scene-text { min-width: 0; order: 1; }
.scene-media { position: relative; min-width: 0; order: 2; }
.scene-media > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.scene-stack { display: grid; gap: .75rem; }
.scene-stack img { width: 100%; aspect-ratio: 16 / 4.5; object-fit: cover; border-radius: 10px; }
.scene-h2 { font-size: var(--fs-h2); font-weight: 600; line-height: 1.15; letter-spacing: -.025em; margin-bottom: 1.5rem; }
.scene-steps { display: grid; list-style: none; }
.scene-step { border-top: 1px solid #ffffff26; padding: 1rem 0; }
.scene-step:last-child { padding-bottom: 0; }
.scene-step .h3 { display: flex; align-items: baseline; gap: .8rem; color: #fff; }
.scene-number { color: var(--gold); font-size: var(--fs-small); font-weight: 500; font-variant-numeric: tabular-nums; }
.scene-step p { color: #d2dae3; font-size: var(--fs-body); line-height: 1.6; margin: .5rem 0 0; max-width: 56ch; }
.scene-navy { background: linear-gradient(115deg, #06182b, #0c3b68); }
.scene-mock { position: relative; z-index: 1; }
.scene-mock .mock { max-width: none; }
@media (min-width: 900px) { .scene-stage { grid-template-columns: 1fr 1.15fr; } }
@media (max-width: 899px) {
  .scene-media > img { max-height: 240px; aspect-ratio: 16 / 9; }
  .scene-stack { grid-template-columns: repeat(3, 1fr); }
  .scene-stack img { aspect-ratio: 4 / 3; }
}

/* Dark product band on the home page */
.band {
  position: relative; overflow: hidden;
  color: #fff; background: var(--navy-deep);
  padding: var(--space-section) 0;
}
.band-media { position: absolute; inset: 0; }
.band-media img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.band-grid { position: relative; z-index: 1; display: grid; gap: 2.5rem; align-items: center; }
/* The product band's copy sits on its own panel, so the photograph behind it can stay busy */
.band-text {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  background: rgba(6, 24, 43, .84);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08), 0 30px 60px -30px rgba(0, 0, 0, .7);
}
.band-text .h2 { color: #fff; }
.band-text .intro { color: #fff; }
.band-text p { color: rgba(255, 255, 255, .84); }
@media (min-width: 900px) {
  .band-grid { grid-template-columns: 5fr 7fr; gap: clamp(2rem, 6vw, 6rem); }
}

/* Product mock (decorative) */
.mock {
  font-size: clamp(7px, 1.05vw, 11px);
  width: 100%; max-width: 72em;
  background: #0e2a47; color: #dce6f2;
  border-radius: 1.3em;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255, 255, 255, .08);
  overflow: hidden;
}
.mock-chrome { display: flex; align-items: center; gap: .6em; padding: 1em 1.4em; background: #0a2340; border-bottom: 1px solid rgba(255, 255, 255, .06); }
.mock-chrome i { width: .9em; height: .9em; border-radius: 50%; background: rgba(255, 255, 255, .18); }
.mock-url { margin-left: 1em; font-size: 1.1em; color: rgba(255, 255, 255, .45); background: rgba(255, 255, 255, .06); padding: .35em 1.2em; border-radius: .6em; }
.mock-body { display: grid; grid-template-columns: 15em 1fr; min-height: 36em; }
.mock-side { background: #0a2340; padding: 1.6em 1.2em; border-right: 1px solid rgba(255, 255, 255, .06); }
.mock-dot { display: block; width: 2.2em; height: 2.2em; border-radius: .6em; background: var(--gold); margin-bottom: 1.6em; }
.mock-side ul { list-style: none; }
.mock-side li { font-size: 1.25em; padding: .55em .8em; border-radius: .5em; color: rgba(255, 255, 255, .6); white-space: nowrap; }
.mock-side li.on { background: rgba(255, 255, 255, .08); color: #fff; }
.mock-main { padding: 1.8em 2em; }
.mock-head { padding: .6em .8em 1.2em; margin: -.6em -.8em 1.2em; border-radius: .8em; }
.mock-title { display: flex; align-items: center; gap: 1em; margin-bottom: .6em; }
.mock-title .ln { margin: 0; flex: 0 0 auto; }
.ln {
  display: block; height: 1.1em; border-radius: .4em; margin: .55em 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, .3) 45%, rgba(255, 255, 255, .2) 100%);
  background-size: 220% 100%;

}
.ln.thin { height: .7em; background-image: linear-gradient(90deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .2) 45%, rgba(255, 255, 255, .12) 100%); }
.w24 { width: 24%; } .w36 { width: 36%; } .w38 { width: 38%; } .w45 { width: 45%; } .w48 { width: 48%; }
.w58 { width: 58%; } .w66 { width: 66%; } .w74 { width: 74%; } .w80 { width: 80%; } .w92 { width: 92%; }
.mock-chip { font-size: 1.05em; padding: .3em .9em; border-radius: 99em; background: rgba(219, 166, 83, .18); color: var(--gold); white-space: nowrap; }
.mock-chip.ok { background: rgba(120, 200, 150, .15); color: #9be0b5; }
.mock-chip.tier { margin-left: auto; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4em; }
.mock-wide { grid-column: 1 / -1; }
.mock-panel { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .08); border-radius: .8em; padding: 1.3em 1.4em; }
.mock-panel-h { display: flex; align-items: center; gap: .8em; font-size: 1.25em; font-weight: 600; margin-bottom: .8em; color: #fff; }
.mock-sec { font-size: 1.05em; color: rgba(255, 255, 255, .55); margin-top: 1em; }
.mock-check { list-style: none; }
.mock-check li { font-size: 1.15em; padding: .45em 0 .45em 2em; position: relative; color: rgba(255, 255, 255, .85); }
.mock-check li::before { content: ""; position: absolute; left: 0; top: .78em; width: 1.05em; height: 1.05em; border-radius: 50%; background: #2f8f5b; }
.mock-check li::after { content: ""; position: absolute; left: .32em; top: 1.02em; width: .45em; height: .25em; border-left: .16em solid #fff; border-bottom: .16em solid #fff; transform: rotate(-45deg); }
.mock-log { list-style: none; }
.mock-log li { display: grid; grid-template-columns: 4em 1fr; gap: 1em; align-items: center; font-size: 1.1em; color: rgba(255, 255, 255, .5); }
.mock-log .ln { margin: .45em 0; }
/* Lighthouse as a background presence */
.watermark { position: absolute; z-index: 0; pointer-events: none; right: -4%; bottom: -10%; width: clamp(18rem, 42vw, 40rem); }
.watermark img { width: 100%; height: auto; }
.watermark-light, .watermark-ink { opacity: 1; }
.scene-progress { display: none; }
.statement .watermark { right: 3%; top: 6%; bottom: 6%; height: 88%; width: auto; max-width: 40vw; transform: none; }
.statement .watermark img { width: auto; height: 100%; }
.scene .watermark { right: 2%; bottom: -6%; width: clamp(14rem, 34vw, 30rem); }
@media (max-width: 899px) {
  .watermark { width: 60vw; right: -12%; }
  .scene .watermark { display: none; }
}

/* Floating back-to-top button, shown once the reader is a screen or more down the page */
.to-top {
  position: fixed; right: max(1.25rem, env(safe-area-inset-right)); bottom: max(1.25rem, env(safe-area-inset-bottom)); z-index: 90;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(12, 59, 104, .25);
  background: rgba(255, 255, 255, .92); color: var(--navy); font-size: 1.1rem; line-height: 1; cursor: pointer;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px -12px rgba(6, 24, 43, .5);
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background-color .2s;
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: #fff; }
html.arcade-open .to-top, body.menu-open .to-top { opacity: 0; pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .to-top { transition: none; transform: none; } }

/* Closing call to action */
.cta-grid { display: grid; gap: 1.25rem clamp(2rem, 5vw, 5rem); align-items: center; }
.cta .actions { margin-top: 1.5rem; }
.cta-mark { display: none; }
.cta-mark img { width: 100%; max-width: 11rem; height: auto; }
@media (min-width: 900px) {
  .cta-grid { grid-template-columns: 5fr 5fr 2fr; }
  .cta-mark { display: block; justify-self: end; }
}

/* Contact: details beside a message composer that opens the visitor's own email app */
.contact-grid { display: grid; gap: 2.5rem clamp(2rem, 5vw, 5rem); align-items: start; }
.compose { background: var(--paper-2); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 2rem); }
.compose-head { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.compose-head .h3 { margin-bottom: .25rem; }
.compose-head p { max-width: 40ch; }
.compose-mark { flex: 0 0 3.25rem; }
.compose-mark img { width: 100%; height: auto; }
.field { display: block; margin-bottom: .9rem; }
.field span { display: block; font-size: var(--fs-small); font-weight: 500; color: var(--ink-2); margin-bottom: .35rem; }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: .7rem .85rem; transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 8rem; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(12, 59, 104, .12); }
.compose-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 1.25rem; }
.compose-actions .link { background-color: transparent; border: 0; font: inherit; font-weight: 500; cursor: pointer; padding: 0 0 2px; }
.compose-fallback { margin-top: 1rem; }
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 5fr 7fr; }
}

/* Footer */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .78);
  padding: clamp(2.5rem, 6vw, 4.25rem) 0 2rem;
  font-size: var(--fs-small);
}
.footer-top { display: grid; gap: 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; text-decoration: none; align-self: start; }
.footer-brand .footer-mark { height: 60px; width: auto; }
.footer-brand img:not(.footer-mark) { height: 20px; width: auto; }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.footer-h { font-size: var(--fs-small); font-weight: 600; color: #fff; margin-bottom: .75rem; }
.footer ul { list-style: none; }
.footer li { margin: .4rem 0; }
.footer a {
  color: inherit; text-decoration: none;
  background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 1px;
  transition: color .25s, background-size .4s var(--ease);
}
.footer a:hover { color: #fff; background-size: 100% 1px; }
.footer-brand:hover { background: none; }
.footer-disclaimer {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  max-width: none; color: rgba(255, 255, 255, .6); font-size: var(--fs-small);
}
.footer-base { display: flex; flex-wrap: wrap; gap: .75rem 2rem; margin-top: 1.25rem; color: rgba(255, 255, 255, .72); font-size: var(--fs-small); }
@media (min-width: 900px) {
  .footer-top { grid-template-columns: 5fr 7fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

/* Navigation within longer pages */
.page-nav { position: sticky; top: var(--nav-h); z-index: 70; background: #fffffff5; border-bottom: 1px solid var(--line); }
.page-nav .wrap { display: flex; align-items: center; gap: 1.6rem; min-height: var(--subnav-h); overflow-x: auto; }
.page-nav-label { flex-shrink: 0; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); }
.page-nav a { flex-shrink: 0; display: inline-flex; align-items: center; min-height: 48px; color: var(--ink-2); font-size: var(--fs-small); font-weight: 500; text-decoration: none; border-bottom: 2px solid transparent; }
.page-nav a:hover, .page-nav a[aria-current] { color: var(--navy); border-bottom-color: var(--gold); }
main [id] { scroll-margin-top: calc(var(--nav-h) + var(--subnav-h) + 20px); }
main:focus { outline: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
[hidden] { display: none !important; }
button, input, textarea { font: inherit; }
button:disabled { opacity: .6; cursor: not-allowed; }
.wrap > *, .split > *, .cols-3 > *, .contact-grid > * { min-width: 0; }
a, .facts dd { overflow-wrap: anywhere; }
.menu-list a, .btn { overflow-wrap: normal; }
.cols-3-inner { grid-template-columns: 1fr; gap: 1.25rem; }
.cols-3 .col { border-top: 2px solid var(--line); padding-top: 1rem; }

.about-text .profile { font-size: var(--fs-body); }
.portrait-placeholder { width: 100%; max-width: 240px; aspect-ratio: 1; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 240px 1fr; } }
.compose { border: 1px solid var(--line); }
.compose .btn { max-width: 100%; }
.field input, .field textarea { font-size: 1rem; }
.compose-status { margin-top: 1rem; font-size: var(--fs-small); color: var(--navy); }
.footer-base { align-items: center; }
.footer .back-top { margin-left: auto; min-height: 36px; display: inline-flex; align-items: center; }
.arcade-trigger { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; min-height: 40px; padding: .5rem; border: 1px solid #ffffff2e; border-radius: 8px; background: transparent; color: #c1ccd8; cursor: pointer; transition: color .2s, border-color .2s; }
.arcade-trigger:hover, .arcade-trigger:focus-visible { color: var(--gold); border-color: var(--gold); }
.arcade-trigger svg { width: 18px; height: 18px; fill: currentColor; }
html.arcade-open { overflow: hidden; }
@media (max-width: 999px) {
  html.no-js .nav { position: static; height: auto; background: #fff; color: var(--ink); }
  html.no-js .nav-inner { flex-wrap: wrap; padding-top: 1rem; padding-bottom: 1rem; }
  html.no-js .nav .brand-dark { opacity: 1; } html.no-js .nav .brand-light { opacity: 0; }
  html.no-js .nav-toggle { display: none; }
  html.no-js .menu { position: static; display: block; padding: 0; }
  html.no-js .menu-list { flex-direction: row; flex-wrap: wrap; gap: .5rem 1.5rem; }
  html.no-js .menu-list a { font-size: 1rem; letter-spacing: normal; padding: .4rem 0; }
  html.no-js .page-nav { top: 0; }
}
@media (max-width: 480px) {
  .nav-inner { gap: .75rem; } .brand-word { height: 17px; } .brand-mark { height: 28px; }
  .page-nav-label { display: none; } .page-nav .wrap { gap: 1.25rem; }
  .footer-brand { gap: .65rem; } .footer-brand img:not(.footer-mark) { height: 17px; }
  .footer .back-top { margin-left: 0; }
  .portrait-placeholder { max-width: 150px; }
  .hero-full { min-height: 0; } .hero-content { padding-top: calc(var(--nav-h) + 2.75rem); padding-bottom: 2.5rem; }
  .menu-list a { font-size: 1.625rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
@media print {
  .nav, .footer, .page-nav, .hero-media, .hero-scrim, .watermark, dialog { display: none !important; }
  body { font-size: 11pt; }
  .hero, .scene, .band, .section { min-height: 0; color: #000; background: #fff; padding: 1rem 0; }
  .scene-step p, .scene-step .h3, .band-text p, .hero .lead { color: #000; }
  .scene-stage { display: block; }
  .scene-media, .band-visual { display: none; }
  .wrap { max-width: none; }
}

/* Finishing motion: decorative or feedback only; never gates content or adds scroll distance. */
:root { --motion-fast: 160ms; --motion-ui: 240ms; --motion-once: 560ms; }
.btn, .link, .menu-list a, .footer a, .page-nav a, .arcade-trigger {
  transition-duration: var(--motion-ui);
}
.menu-list a:focus-visible { opacity: 1; }
.menu-list a:focus-visible::after { transform: scaleX(1); }
.page-nav a { transition: color var(--motion-fast), border-color var(--motion-ui); }
.field input, .field textarea { transition: border-color var(--motion-fast), box-shadow var(--motion-fast), background-color var(--motion-fast); }
.field:focus-within > span { color: var(--navy); }
.field input:user-invalid, .field textarea:user-invalid { border-color: #9b3030; }
.compose { transition: border-color var(--motion-ui), box-shadow var(--motion-ui); }
.compose:focus-within { border-color: #9daebb; box-shadow: 0 8px 24px -20px #0c3b6866; }
.compose-status:empty { display: none; }
.compose-status[data-state="error"] { color: #963b24; }
.compose-status[data-state="success"] { color: #205636; }
.contact-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.compose [aria-busy="true"] { cursor: progress; }
.compose .btn:disabled { transform: none; box-shadow: none; }
.posts a { transition: background-color var(--motion-ui), transform var(--motion-ui); }
.hero-content::before { content: ""; display: block; width: 3.25rem; height: 2px; margin-bottom: 1.25rem; background: var(--gold); transform-origin: left; }
@keyframes gold-arrive { from { transform: scaleX(.5); } to { transform: scaleX(1); } }
@keyframes mark-settle { from { transform: translateY(4px) rotate(-3deg); } to { transform: translateY(0) rotate(0); } }
@media (prefers-reduced-motion: no-preference) {
  .motion-ready .hero-content::before { animation: gold-arrive var(--motion-once) var(--ease-out) 1; }
  .cta-mark.motion-arrive { animation: mark-settle var(--motion-once) var(--ease-out) 1; }
  @media (max-width: 999px) {
    html.js .menu { display: flex; visibility: hidden; opacity: 0; transform: translateY(-8px); pointer-events: none;
      transition: opacity var(--motion-ui), transform var(--motion-ui), visibility 0s var(--motion-ui); }
    html.js .nav.is-open .menu { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto;
      transition-delay: 0s; }
  }
}
@media (hover: hover) and (pointer: fine) {
  .posts a:hover { background-color: #f5f7f9; transform: translateX(3px); }
  .arcade-trigger:hover { transform: translateY(-2px); }
}
@media (hover: none) { .btn:hover { transform: none; box-shadow: none; } }
html.page-hidden *, html.page-hidden *::before, html.page-hidden *::after { animation-play-state: paused !important; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .btn:hover, .posts a:hover, .arcade-trigger:hover { transform: none; }
}


/* =========================================================================================
   Scroll motion layer, restored 8 September 2026.
   Applies only when the script runs and the visitor has not asked for reduced motion
   (html.motion-ready). Otherwise the static layout above stands, exactly as delivered.
   ========================================================================================= */
:root { --ease-out: cubic-bezier(.16, 1, .3, 1); }
html.motion-ready main { animation: page-in .6s var(--ease) both; }
@keyframes page-in { from { opacity: 0; } to { opacity: 1; } }

/* Hero: settle, then drift very slowly; text rises in sequence; the image moves at a quarter of scroll speed */
html.motion-ready .hero-media { transform: scale(1.04); animation: hero-settle 2.2s var(--ease) forwards, hero-drift 30s ease-in-out 2.2s infinite alternate; }
html.motion-ready .hero-media img { will-change: transform; }
html.motion-ready .hero-content > *, html.motion-ready .hero-dark .wrap > *, html.motion-ready .hero-text .wrap > *, html.motion-ready .about-grid > * { animation: rise .9s var(--ease) both; }
html.motion-ready .hero-content > :nth-child(2), html.motion-ready .hero-dark .wrap > :nth-child(2), html.motion-ready .hero-text .wrap > :nth-child(2), html.motion-ready .about-grid > :nth-child(2) { animation-delay: .12s; }
html.motion-ready .hero-content > :nth-child(3), html.motion-ready .hero-text .wrap > :nth-child(3) { animation-delay: .24s; }
@keyframes hero-settle { to { transform: scale(1); } }
@keyframes hero-drift { from { transform: scale(1); } to { transform: scale(1.06); } }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* Statement: the words brighten as the reader scrolls */
html.motion-ready .statement-text .w { opacity: .18; }

/* Reveals: sections rise into place, staggered; images wipe in */
html.motion-ready .rv { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d, 0ms); }
html.motion-ready .rv.in { opacity: 1; transform: none; }
html.motion-ready .rv-wipe { clip-path: inset(6% 0 6% 0 round var(--radius)); transform: scale(1.04); opacity: 0; transition: clip-path 1.1s var(--ease-out), transform 1.4s var(--ease-out), opacity .5s; }
html.motion-ready .rv-wipe.in { clip-path: inset(0 0 0 0 round 0); transform: none; opacity: 1; }
html.motion-ready .photo-break .rv-wipe { clip-path: inset(0 0 100% 0); transform: scale(1.08); opacity: 1; }
html.motion-ready .photo-break .rv-wipe.in { clip-path: inset(0); transform: none; }

/* Pinned scenes and the mock sequence apply only where there is room to pin: on short viewports
   (a phone held sideways) the static two-column layout stays, so nothing is cramped or hidden. */
@media (min-height: 521px) {
/* Pinned scenes: the stage holds while the steps change */
html.motion-ready .scene { position: relative; height: calc(var(--steps, 3) * 52vh + 24vh); height: calc(var(--steps, 3) * 52svh + 24svh); }
html.motion-ready .scene[data-steps="2"] { --steps: 2; }
html.motion-ready .scene[data-steps="3"] { --steps: 3; }
html.motion-ready .scene[data-steps="4"] { --steps: 4; }
html.motion-ready .scene[data-steps="5"] { --steps: 5; }
html.motion-ready .scene-stage {
  position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden;
  max-width: none; margin: 0; padding: 0; gap: 0;
  display: grid; grid-template-rows: 1fr; grid-template-columns: 1fr; align-items: stretch;
}
html.motion-ready .scene-media { position: absolute; inset: 0; order: 0; }
html.motion-ready .scene-media > img { width: 100%; height: 100%; max-height: none; aspect-ratio: auto; border-radius: 0; object-fit: cover; transform: scale(1.12); will-change: transform; }
html.motion-ready .scene-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6, 24, 43, .92) 0%, rgba(6, 24, 43, .55) 50%, rgba(6, 24, 43, .1) 100%); }
html.motion-ready .scene-stack { display: block; gap: 0; }
html.motion-ready .scene-stack img { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; border-radius: 0; object-fit: cover; opacity: 0; transform: scale(1.06); transition: opacity 1s var(--ease), transform 1.6s var(--ease-out); }
html.motion-ready .scene-stack img:first-child, html.motion-ready .scene[data-active="0"] .scene-stack img:nth-child(1) { opacity: 1; transform: none; }
html.motion-ready .scene[data-active="1"] .scene-stack img:first-child, html.motion-ready .scene[data-active="2"] .scene-stack img:first-child { opacity: 0; transform: scale(1.06); }
html.motion-ready .scene[data-active="1"] .scene-stack img:nth-child(2), html.motion-ready .scene[data-active="2"] .scene-stack img:nth-child(3) { opacity: 1; transform: none; }
html.motion-ready .scene-text { position: relative; z-index: 2; order: 0; display: flex; align-items: flex-end; padding: calc(var(--nav-h) + 1.5rem) var(--gutter) 2rem; }
html.motion-ready .scene-inner { width: 100%; max-width: 30rem; }
html.motion-ready .scene-h2 { font-size: .95rem; font-weight: 500; line-height: 1.4; letter-spacing: 0; color: rgba(255, 255, 255, .7); margin-bottom: 1.25rem; }
html.motion-ready .scene-steps { display: grid; }
html.motion-ready .scene-step { grid-area: 1 / 1; border: 0; padding: 0; pointer-events: none; }
html.motion-ready .scene-step .h3 { display: block; font-size: var(--fs-h2); line-height: 1.08; letter-spacing: -0.025em; color: #fff; opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease-out), transform .7s var(--ease-out); }
html.motion-ready .scene-step .scene-number { display: block; margin-bottom: .6rem; }
html.motion-ready .scene-step p { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease-out), transform .7s var(--ease-out); color: rgba(255, 255, 255, .84); font-size: 1.1rem; line-height: 1.55; margin-top: .9rem; max-width: 32ch; }
html.motion-ready .scene-step.is-active { pointer-events: auto; }
html.motion-ready .scene-step.is-active .h3, html.motion-ready .scene-step.is-active p { opacity: 1; transform: none; }
html.motion-ready .scene-step.is-active p { transition-delay: .1s; }
html.motion-ready .scene-progress { display: block; position: relative; height: 2px; background: rgba(255, 255, 255, .18); margin-top: 1.75rem; }
html.motion-ready .scene-progress span { position: absolute; inset: 0 auto 0 0; width: 0; background: var(--gold); box-shadow: 0 0 8px rgba(219, 166, 83, .7); }
html.motion-ready .scene-navy { background: radial-gradient(120% 90% at 82% 18%, #16508a 0%, #0c3b68 45%, #06182b 100%); }
html.motion-ready .scene-navy .scene-media::after { display: none; }
html.motion-ready .scene-mock { position: absolute; inset: 0; z-index: 1; display: flex; align-items: flex-start; justify-content: center; padding: calc(var(--nav-h) + .5rem) var(--gutter) 0; }
html.motion-ready .scene-mock .mock { max-width: 72em; transform: scale(.9); transform-origin: top center; }
@media (min-width: 900px) {
  html.motion-ready .scene-stage { grid-template-columns: 44% 56%; }
  html.motion-ready .scene-text { align-items: center; padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); }
  html.motion-ready .scene-media::after { background: linear-gradient(90deg, rgba(6, 24, 43, .94) 0%, rgba(6, 24, 43, .8) 32%, rgba(6, 24, 43, .18) 62%, rgba(6, 24, 43, 0) 100%); }
  html.motion-ready .scene-mock { left: 44%; right: 0; align-items: center; padding: var(--nav-h) 4vw 0 0; }
  html.motion-ready .scene-mock .mock { transform: none; }
}
@media (max-width: 899px) {
  html.motion-ready .scene-mock { height: 46svh; }
  html.motion-ready .scene-navy .scene-text { align-items: flex-end; }
  html.motion-ready .scene-step p { font-size: 1rem; }
  html.motion-ready .scene .watermark { display: none; }
}

/* Product mock: the skeleton shimmers, and inside a pinned scene the highlighted panel plays its rows in */
html.motion-ready .ln { animation: shimmer 4.5s linear infinite; }
html.motion-ready [data-hl] { transition: opacity .5s var(--ease), box-shadow .5s var(--ease); }
html.motion-ready .scene.is-pinned [data-hl] { opacity: .45; }
html.motion-ready .scene.is-pinned [data-hl].is-hl { opacity: 1; box-shadow: 0 0 0 2px var(--gold), 0 0 24px -6px rgba(219, 166, 83, .6); }
html.motion-ready .scene .mock-check li::before { transform: scale(0); }
html.motion-ready .scene .mock-check li::after { transform: scale(0) rotate(-45deg); }
html.motion-ready .scene [data-hl].is-hl .mock-check li::before { animation: pop .45s var(--ease-out) both; animation-delay: calc(var(--i, 0) * .18s + .15s); }
html.motion-ready .scene [data-hl].is-hl .mock-check li::after { animation: tick .35s var(--ease-out) both; animation-delay: calc(var(--i, 0) * .18s + .3s); }
html.motion-ready .scene [data-hl].is-hl .mock-panel-h .mock-chip { animation: pop .5s var(--ease-out) both; animation-delay: .2s; }
html.motion-ready .scene [data-hl].is-hl .ln.thin { animation: grow .8s var(--ease-out) both, shimmer 4.5s linear infinite; animation-delay: calc(var(--i, 0) * .09s + .1s), 0s; transform-origin: left; }
html.motion-ready .scene [data-hl].is-hl .mock-log li { animation: rise .55s var(--ease-out) both; animation-delay: calc(var(--i, 0) * .14s + .1s); }
}

@keyframes shimmer { from { background-position: 120% 0; } to { background-position: -120% 0; } }
@keyframes pop { from { transform: scale(0); opacity: 0; } 70% { transform: scale(1.12); opacity: 1; } to { transform: scale(1); opacity: 1; } }
@keyframes tick { from { transform: scale(0) rotate(-45deg); } to { transform: scale(1) rotate(-45deg); } }
@keyframes grow { from { transform: scaleX(0); opacity: 0; } to { transform: scaleX(1); opacity: 1; } }

@media print {
  html.motion-ready .scene { height: auto; }
  html.motion-ready .scene-stage { position: static; height: auto; display: block; }
  html.motion-ready .scene-step .h3, html.motion-ready .scene-step p { opacity: 1; transform: none; }
}
