/* Misto Tech site styles.
   Tokens: design-system/tokens. Overrides from CLAUDE.md and README §3: General Sans display at 600,
   tight tracking, emphasis by weight and colour, never italics.
   Contrast: accent text on light grounds uses --sky-600; --sky-500 stays for navy grounds, icons and focus. */

:root {
  --navy-900: #070E22;
  --navy-800: #0B1530;
  --navy-700: #101D42;
  --navy-600: #16295C;
  --sky-600: #0D7FC0;
  --sky-650: #0C7BBA; /* sky-600 darkened 2% so white 13px text on it reaches 4.6:1 */
  --sky-500: #29A9E8;
  --sky-100: #DCEFFB;
  --white: #FFFFFF;
  --mist-50: #F7F9FD;
  --mist-100: #EEF2FB;
  --mist-200: #E2E8F5;
  --mist-300: #CBD4E8;
  --mist-400: #9AA6C2;
  --mist-500: #6B7794;
  --mist-600: #4A5470;

  --text-strong: var(--navy-800);
  --text-body: var(--mist-600);
  --text-muted: var(--mist-500);
  --text-accent: var(--sky-600);
  --text-accent-on-dark: var(--sky-500);
  --text-on-dark-muted: rgba(255, 255, 255, .72);

  --surface-page: var(--mist-100);
  --surface-card: var(--white);
  --surface-sunken: var(--mist-50);
  --surface-inverse: var(--navy-800);

  --border-subtle: var(--mist-200);
  --border-default: var(--mist-300);
  --border-on-dark: rgba(255, 255, 255, .14);

  --action-primary: var(--navy-800);
  --action-primary-hover: var(--navy-600);
  --focus-ring: var(--sky-500);
  --focus-halo: 0 0 0 3px rgba(41, 169, 232, .18);

  --shadow-card: 0 1px 2px rgba(11, 21, 48, .04), 0 10px 28px rgba(11, 21, 48, .06);
  --shadow-raised: 0 2px 4px rgba(11, 21, 48, .05), 0 18px 44px rgba(11, 21, 48, .10);
  --shadow-button: 0 1px 2px rgba(11, 21, 48, .18);
  --inner-hairline: inset 0 0 0 1px var(--border-subtle);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --dur-fast: 120ms;
  --dur-base: 220ms;
  --dur-slow: 420ms;

  --section-y: clamp(64px, 8vw, 120px);
  --section-intro: clamp(56px, 7vw, 96px);
  --gutter: clamp(20px, 4vw, 56px);
  --content-max: 1200px;

  --font-sans: "General Sans", "Helvetica Neue", Arial, sans-serif;
  --font-display: var(--font-sans);
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --text-display-1: clamp(44px, 5.4vw, 76px);
  --text-display-detail: clamp(40px, 4.6vw, 64px);
  --text-display-2: clamp(36px, 4vw, 56px);
  --text-display-3: clamp(28px, 2.6vw, 40px);
  --leading-display: 1.02;
  --tracking-display: -.028em;
  --text-eyebrow: 11.5px;
  --tracking-eyebrow: .14em;
}

/* ---------------------------------------------------------------- Base */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 110px; }
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p, ul, dl, dd { margin: 0; }
ul { padding: 0; list-style: none; }
p { text-wrap: pretty; }
img, svg, picture { display: block; max-width: 100%; }
input, textarea, button { font: inherit; }
a { color: var(--text-accent); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
a:hover { color: var(--navy-800); }
:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }
[hidden] { display: none !important; }
main:focus { outline: none; }

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  padding: 12px 18px; border-radius: var(--radius-pill);
  background: var(--navy-800); color: var(--white); font-size: 14px; font-weight: 600;
}
.skip-link:focus { top: 16px; color: var(--white); }

/* ---------------------------------------------------------------- Layout */

.shell { min-height: 100vh; display: flex; flex-direction: column; padding-top: 18px; }
main { flex: 1; }
.wrap { padding-inline: var(--gutter); }
.container { max-width: var(--content-max); margin-inline: auto; }
.section { padding-top: var(--section-y); }
.section--intro { padding-top: var(--section-intro); }
.section--tight { padding-top: clamp(40px, 5vw, 56px); }
.hero-section { padding-top: 24px; }
.footer-wrap { padding-top: var(--section-y); padding-bottom: 40px; }

.grid--spaced { margin-top: 40px; }
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: 18px; }
.grid-steps { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 560px) { .grid-steps { grid-template-columns: minmax(0, 1fr); } }
@media (min-width: 1080px) { .grid-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.grid-two { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: clamp(28px, 4vw, 56px); }
.grid-two--center { align-items: center; }
.grid-two--start { align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }

/* ---------------------------------------------------------------- Type */

.h1, .h2, .h3 { font-family: var(--font-display); font-weight: 600; color: var(--text-strong); text-wrap: pretty; }
.h1 { font-size: var(--text-display-1); line-height: var(--leading-display); letter-spacing: var(--tracking-display); }
.h1--detail { font-size: var(--text-display-detail); }
.h2 { font-size: var(--text-display-2); line-height: var(--leading-display); letter-spacing: var(--tracking-display); }
.h2--on-dark { font-size: var(--text-display-3); color: var(--white); }
.h3 { font-size: 24px; line-height: 1.1; letter-spacing: -.02em; }
.accent { color: var(--text-accent); }
.hero .accent, .panel .accent { color: var(--text-accent-on-dark); }
.page-title { margin-top: 22px; }
.lead, .body { font-size: 16px; line-height: 1.6; color: var(--text-body); }
.lead { margin-top: 18px; }

.text-link { font-size: 14px; font-weight: 600; color: var(--text-strong); white-space: nowrap; }
.text-link:hover { color: var(--sky-600); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: var(--text-eyebrow); letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase; line-height: 1; white-space: nowrap;
  background: var(--surface-card); color: var(--text-strong); border: 1px solid var(--border-subtle);
}
.eyebrow::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--sky-500); }
.eyebrow--dark { background: rgba(255, 255, 255, .08); color: var(--white); border-color: var(--border-on-dark); }
@media (max-width: 420px) { .eyebrow { white-space: normal; line-height: 1.3; } }

.section-heading .eyebrow { margin-bottom: 20px; }

.section-head-row { display: flex; flex-wrap: wrap; gap: 20px 40px; justify-content: space-between; align-items: flex-end; }
.section-head-row__link { display: inline-flex; align-items: flex-end; min-height: 44px; padding-bottom: 6px; }

.icon { flex: none; }

/* ---------------------------------------------------------------- Nav */

.site-header { position: sticky; top: 14px; z-index: 40; }

.nav {
  display: flex; align-items: center; gap: 24px;
  padding: 14px 18px 14px 22px; border-radius: var(--radius-pill);
  background: var(--surface-card); border: 1px solid var(--border-subtle); box-shadow: var(--shadow-card);
}
.nav__logo { display: flex; flex: none; }
.nav__logo-img { height: 40px; width: auto; }
.nav__links { display: flex; gap: 4px; margin-left: auto; }
.nav__link {
  display: inline-flex; align-items: center; min-height: 44px; padding: 12px 14px;
  border-radius: var(--radius-pill); font-size: 14px; font-weight: 500; color: var(--text-body); white-space: nowrap;
  transition: background-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.nav__link:hover { background: var(--mist-50); color: var(--text-strong); }
.nav__link[aria-current="page"] { background: var(--mist-100); color: var(--navy-800); }
.nav__cta { min-height: 44px; }

.mnav { display: none; }
@media (max-width: 800px) {
  .nav { display: none; }
  .mnav { display: block; }
}
.mnav__bar {
  display: flex; align-items: center; gap: 12px; padding: 10px 10px 10px 18px;
  background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-pill); box-shadow: var(--shadow-card);
}
.mnav__logo { display: flex; flex: none; }
.mnav__logo-img { height: 34px; width: auto; }
.mnav__toggle {
  margin-left: auto; flex: none; width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid var(--border-subtle); background: var(--mist-50); border-radius: var(--radius-pill);
  color: var(--navy-800); cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.mnav__toggle:hover { background: var(--mist-100); border-color: var(--mist-300); }
.mnav__icon { display: grid; place-items: center; }
.icon--toggle { width: 20px; height: 20px; }
.mnav__panel {
  margin-top: 10px; padding: 10px; display: flex; flex-direction: column; gap: 2px;
  background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
}
html:not(.js) .mnav__panel[hidden] { display: flex !important; }
html:not(.js) .mnav__toggle { display: none; }
.mnav__link {
  display: flex; align-items: center; min-height: 48px; padding: 0 16px; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 500; color: var(--text-body);
  transition: background-color var(--dur-fast) var(--ease-out);
}
.mnav__link:hover { background: var(--mist-100); color: var(--text-strong); }
.mnav__link[aria-current="page"] { background: var(--mist-100); color: var(--navy-800); }
.mnav__cta {
  margin-top: 8px; min-height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill); background: var(--navy-800); color: var(--white); font-size: 15px; font-weight: 600;
  transition: background-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.mnav__cta:hover { background: var(--navy-600); color: var(--white); }
.mnav__cta:active { transform: scale(.985); }

/* ---------------------------------------------------------------- Buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px; flex: 0 0 auto;
  min-height: 46px; padding: 11px 22px; border: 1px solid transparent; border-radius: var(--radius-pill);
  font-family: var(--font-sans); font-size: 14px; font-weight: 600; line-height: 1; letter-spacing: -.005em;
  white-space: nowrap; text-decoration: none; cursor: pointer;
  transition: background-color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.btn:active { transform: scale(.985); }
.btn--arrow { padding: 9px 9px 9px 22px; }
.btn__badge {
  width: 28px; height: 28px; display: inline-grid; place-items: center; border-radius: var(--radius-pill);
  background: var(--mist-100); transition: transform var(--dur-base) var(--ease-out);
}
.btn__icon { width: 14px; height: 14px; }
.btn:hover .btn__badge { transform: rotate(45deg); }

.btn--primary { background: var(--action-primary); color: var(--white); box-shadow: var(--shadow-button); }
.btn--primary:hover { background: var(--action-primary-hover); color: var(--white); }
.btn--primary .btn__badge { background: rgba(255, 255, 255, .16); }
.btn--secondary { background: var(--surface-card); color: var(--text-strong); border-color: var(--border-default); }
.btn--secondary:hover { background: var(--mist-50); border-color: var(--mist-400); color: var(--text-strong); }
.btn--on-dark { background: var(--white); color: var(--navy-800); }
.btn--on-dark:hover { background: var(--mist-100); color: var(--navy-800); }
.btn--ghost-dark { background: rgba(255, 255, 255, .10); color: var(--white); }
.btn--ghost-dark:hover { background: rgba(255, 255, 255, .20); color: var(--white); }
.btn[disabled] { opacity: .45; cursor: not-allowed; box-shadow: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ---------------------------------------------------------------- Cards */

.card {
  display: block; min-width: 0; padding: 28px;
  background: var(--surface-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); color: var(--text-body);
}
.card--interactive, .step { transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.card--interactive:hover, .step:hover { transform: translateY(-2px); box-shadow: var(--shadow-raised); color: var(--text-body); }
.card--interactive:active { transform: translateY(-2px) scale(.985); }
.card--pad-sm { padding: 20px; }
.card--pad-lg { padding: 30px; }
.card--pad-xl { padding: 32px; }
.card__title { margin: 20px 0 10px; }
.card__title--lg { font-size: 26px; }
.card__text { font-size: 14px; line-height: 1.6; color: var(--text-body); }
.icon--card { width: 22px; height: 22px; color: var(--sky-500); }

.step { display: flex; flex-direction: column; padding: 24px 26px; }
.step__num { align-self: flex-end; font-family: var(--font-mono); font-size: 30px; font-weight: 500; line-height: 1; letter-spacing: -.02em; color: var(--navy-700); }
.step .card__title { margin: 22px 0 8px; font-size: 22px; letter-spacing: -.01em; }
.step .card__text { line-height: 1.55; max-width: 46ch; }

.service-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.service-card__num { font-family: var(--font-mono); font-size: var(--text-eyebrow); letter-spacing: var(--tracking-eyebrow); color: var(--text-body); }
.service-card__body { margin-bottom: 18px; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  flex: 0 0 auto; padding: 6px 12px; border-radius: var(--radius-pill); white-space: nowrap;
  font-family: var(--font-mono); font-size: var(--text-eyebrow); letter-spacing: .08em; text-transform: uppercase; line-height: 1.2;
  color: var(--text-body); background: var(--surface-sunken); box-shadow: var(--inner-hairline);
}
.tag--white { background: var(--white); }
.detail-tags { margin-top: 22px; }
.back-link { margin-top: 26px; }

.meta { display: flex; flex-direction: column; gap: 16px; }
.meta-row { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border-subtle); }
.meta-row__key { font-family: var(--font-mono); font-size: var(--text-eyebrow); letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--text-body); white-space: nowrap; }
.meta-row__val { font-size: 15px; font-weight: 600; color: var(--text-strong); white-space: nowrap; }
.meta__cta { margin-top: 16px; }

.card--faq { display: flex; flex-wrap: wrap; gap: 10px 40px; padding: 26px; }
.faq__q { flex: 1 1 260px; }
.faq__a { flex: 2 1 340px; }

/* ---------------------------------------------------------------- Hero, panels, media */

.hero {
  position: relative; overflow: hidden; display: grid; align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: clamp(32px, 4vw, 56px);
  padding: clamp(32px, 4.5vw, 60px); background: var(--navy-800); border-radius: var(--radius-xl);
}
.hero-glow {
  /* Rests fully off, so the hero is flat navy until the pointer is over it. */
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  transition: opacity 320ms var(--ease-out);
  background: radial-gradient(900px circle at var(--mx, 18%) var(--my, 8%),
    rgba(41, 169, 232, .55), rgba(41, 169, 232, .26) 30%,
    rgba(41, 169, 232, .10) 52%, rgba(41, 169, 232, 0) 72%);
}
.hero__copy, .hero .media { position: relative; }
.hero__title { margin-top: 22px; max-width: 15ch; color: var(--white); }
.hero__text { margin-top: 16px; max-width: 44ch; color: var(--text-on-dark-muted); }

.panel { padding: clamp(36px, 4.5vw, 60px); background: var(--surface-inverse); border-radius: var(--radius-xl); color: var(--text-on-dark-muted); }
.panel--split { display: flex; flex-wrap: wrap; gap: 28px 48px; align-items: center; justify-content: space-between; }
.panel__title { margin-top: 22px; }
.position { display: flex; flex-wrap: wrap; gap: 28px 56px; align-items: flex-end; padding: clamp(36px, 4.5vw, 64px); }
.position__statement { flex: 1 1 460px; }
.position__caption { flex: 0 1 200px; font-family: var(--font-mono); font-size: var(--text-eyebrow); letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--text-on-dark-muted); }

.ship { padding: 26px; background: rgba(255, 255, 255, .06); border: 1px solid var(--border-on-dark); border-radius: var(--radius-lg); }
.ship__title { margin-bottom: 10px; font-size: 17px; font-weight: 600; line-height: 1.3; color: var(--white); }
.ship__text { font-size: 14px; line-height: 1.6; color: var(--text-on-dark-muted); }

.media { position: relative; min-width: 0; overflow: hidden; background: var(--mist-100); }
.media picture, .media img { width: 100%; height: 100%; }
.media img { object-fit: cover; }
.media--hero { aspect-ratio: 4 / 3; border-radius: var(--radius-lg); border: 1px solid var(--border-on-dark); }
.media--band { margin-top: clamp(32px, 4vw, 48px); aspect-ratio: 21 / 9; border-radius: var(--radius-xl); background: var(--mist-200); }
.media--band img { object-position: 68% center; }
@media (max-width: 640px) { .media--band { aspect-ratio: 16 / 9; } }
.media--portrait { aspect-ratio: 4 / 5; border-radius: var(--radius-md); background: var(--mist-200); }
.media--empty { display: grid; place-items: center; padding: 24px; text-align: center; }
.media__label { font-family: var(--font-mono); font-size: var(--text-eyebrow); letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--text-body); }

.team__name { margin: 20px 0 6px; }
.team__role { margin-bottom: 12px; font-family: var(--font-mono); font-size: var(--text-eyebrow); letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--text-accent); }

/* ---------------------------------------------------------------- Contact */

.contact-list { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 600; color: var(--text-strong); }
.contact-list a { color: var(--text-strong); }
.contact-list a:hover { color: var(--sky-600); }
.icon--contact { width: 20px; height: 20px; color: var(--sky-500); }

.form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.label { font-size: 14px; font-weight: 600; color: var(--text-strong); }
.input {
  width: 100%; padding: 13px 16px; font-size: 16px; line-height: 1.4; color: var(--text-strong);
  background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-sm);
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.input::placeholder { color: var(--text-muted); opacity: 1; }
.input:hover { border-color: var(--mist-400); }
.input:focus { outline: none; border-color: var(--sky-500); box-shadow: var(--focus-halo); }
.input:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }
.input--area { min-height: 120px; resize: vertical; line-height: 1.55; }

.choices { min-width: 0; margin: 0; padding: 0; border: 0; }
.choices legend { padding: 0; margin-bottom: 10px; }
.choice-list { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { position: relative; flex: 0 0 auto; }
.choice input { position: absolute; top: 0; left: 0; width: 1px; height: 1px; margin: 0; opacity: 0; }
.choice label {
  display: inline-flex; align-items: center; min-height: 40px; padding: 9px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle); background: var(--surface-sunken); color: var(--navy-800);
  font-size: 13px; font-weight: 600; line-height: 1.2; white-space: nowrap; cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.choice label:hover { box-shadow: var(--focus-halo); }
.choice input:checked + label { background: var(--sky-650); border-color: var(--sky-650); color: var(--white); }
.choice input:focus-visible + label { outline: 2px solid var(--focus-ring); outline-offset: 2px; }

.form-error { padding: 12px 14px; border-radius: var(--radius-sm); background: var(--surface-sunken); box-shadow: var(--inner-hairline); font-size: 14px; color: var(--text-strong); }
.success__title { margin-bottom: 12px; font-family: var(--font-display); font-size: 32px; font-weight: 600; line-height: 1.08; letter-spacing: -.024em; color: var(--text-strong); }
.success__title:focus { outline: none; }

/* ---------------------------------------------------------------- Footer */

.site-footer { padding: 48px 44px 28px; background: var(--surface-inverse); border-radius: var(--radius-xl); color: var(--text-on-dark-muted); }
.footer__grid { display: grid; grid-template-columns: minmax(220px, 1.3fr) repeat(auto-fit, minmax(130px, 1fr)); gap: 40px; }
.footer__logo { display: inline-flex; }
.footer__logo-img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.footer__blurb { margin-top: 18px; max-width: 34ch; font-size: 14px; line-height: 1.6; }
.footer__cta { margin-top: 22px; }
.footer__title { margin-bottom: 16px; font-family: var(--font-display); font-size: 20px; font-weight: 400; line-height: 1.2; color: var(--white); }
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.footer__col a { font-size: 14px; color: var(--text-on-dark-muted); overflow-wrap: anywhere; }
.footer__col a:hover { color: var(--white); }
.footer__legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  margin-top: 44px; padding-top: 18px; border-top: 1px solid var(--border-on-dark);
  font-size: 12.5px; color: rgba(255, 255, 255, .55);
}
@media (max-width: 800px) {
  .footer__col--menu, .footer__col--services, .footer__col--contact { display: none; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .footer__cta { width: 100%; min-height: 48px; }
  .site-footer { padding: 32px 24px 22px; }
  .footer__legal { margin-top: 28px; flex-direction: column; gap: 8px; }
}

/* ---------------------------------------------------------------- Motion */

@media (prefers-reduced-motion: no-preference) {
  .reveal [data-reveal] {
    opacity: 0; transform: translateY(16px);
    transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  }
  .reveal [data-reveal="in"] { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  /* Scroll fade-in and the cursor-following glow stay off: the .reveal class is never added
     (see build.mjs head script) and site.js skips the glow. Hover and press feedback is kept.
     It is 120 to 220ms, pointer-triggered, and moves nothing the reader is trying to read. */
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; }
}
