/* ============================================================
   Aligno — marketing site
   One stylesheet for every page. Tokens first, then components.
   No external requests: fonts are self-hosted (the product is
   local-only; the site shouldn't leak visitors to a CDN either).
   ============================================================ */

/* ── Fonts ─────────────────────────────────────────────── */
@font-face { font-family: Inter; font-weight: 400; font-display: swap;
  src: url("../fonts/Inter-Regular.woff") format("woff"); }
@font-face { font-family: Inter; font-weight: 500; font-display: swap;
  src: url("../fonts/Inter-Medium.woff") format("woff"); }
@font-face { font-family: Inter; font-weight: 600; font-display: swap;
  src: url("../fonts/Inter-SemiBold.woff") format("woff"); }
@font-face { font-family: Inter; font-weight: 700; font-display: swap;
  src: url("../fonts/Inter-Bold.woff") format("woff"); }

/* ── Tokens ────────────────────────────────────────────── */
:root {
  /* surfaces */
  --bg:        #0B0C0E;
  --surface:   #111316;
  --surface-2: #16191D;
  --line:      rgba(255,255,255,.08);
  --line-2:    rgba(255,255,255,.14);

  /* text */
  --text:  #F4F6F9;
  --muted: #9AA1AC;
  --dim:   #7E858F;   /* WCAG AA on both bg and surfaces; #6C737E measured 4.09 */

  /* posture states — mirrored from app/core/constants.py */
  --green:  #2ED16E;
  --yellow: #D99830;
  --orange: #E8622E;
  --red:    #E83C32;
  --green-deep: rgba(46,209,110,.12);

  /* type */
  --f: Inter, -apple-system, "Segoe UI", system-ui, sans-serif;
  --t-hero: clamp(2.6rem, 6.2vw, 4.6rem);
  --t-h2:   clamp(1.9rem, 3.6vw, 3rem);
  --t-h3:   clamp(1.15rem, 1.6vw, 1.35rem);
  --t-lead: clamp(1.05rem, 1.5vw, 1.3rem);

  /* space + motion */
  --pad: clamp(1.25rem, 5vw, 2.5rem);
  --sec: clamp(3.75rem, 8vw, 6.5rem);
  --nav-h: 68px;
  --r:   16px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--f);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -.022em; font-weight: 700; text-wrap: balance; }
::selection { background: rgba(46,209,110,.28); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }

/* Keyboard users land on the nav first; this lets them jump the chrome. */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  padding: .7rem 1.2rem; border-radius: 0 0 10px 0;
  background: var(--green); color: #06210F; font-weight: 600; font-size: .9rem;
}
.skip-link:focus { left: 0; }

/* ── Layout ────────────────────────────────────────────── */
.wrap { max-width: 1180px; margin-inline: auto; padding-inline: var(--pad); }
.sec  { padding-block: var(--sec); position: relative; }
.sec--tight { padding-block: clamp(2.75rem, 6vw, 4.5rem); }
/* keep #anchors clear of the sticky nav */
section[id], main[id] { scroll-margin-top: calc(var(--nav-h) + 12px); }

.eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--green);
  display: flex; align-items: center; gap: .6rem; margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: .5;
}
h2.sec-title { font-size: var(--t-h2); margin-bottom: .9rem; max-width: 20ch; }
.sec-sub {
  color: var(--muted); font-size: var(--t-lead);
  /* 64ch, not 60ch: at 60ch the problem paragraph broke 5 lines with a one-word last
     line, and the early-access intro broke 3 with a two-character one. 64ch reflows
     both to full last lines and is still ~66 chars — inside the readable 45-75 range. */
  max-width: 64ch;
  /* `balance` rather than `pretty`: measured across all eight lead paragraphs it
     removed every orphaned last line (3 -> 0) and evened out the rest. Two of those
     paragraphs sit in narrow grid columns (518px / 695px) where no max-width here
     applies, so this is the only lever that reaches them. Chrome stops balancing
     past ~6 lines, which degrades to normal wrapping; unsupported browsers ignore it. */
  text-wrap: balance;
}

/* ── Nav ───────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s;
}
.nav.is-stuck {
  background: rgba(11,12,14,.78);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav-in {
  max-width: 1180px; margin-inline: auto; padding: 1rem var(--pad);
  display: flex; align-items: center; gap: 2rem;
}
.brand {
  font-weight: 700; letter-spacing: .16em; font-size: .88rem;
  display: flex; align-items: center; gap: .55rem;
}
.brand-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(46,209,110,.16);
}
.nav-links { display: none; gap: 1.9rem; margin-left: auto; }
.nav-links a {
  font-size: .92rem; color: var(--muted); font-weight: 500;
  white-space: nowrap; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
/* Below this the links don't fit beside the CTA — the footer carries them instead. */
@media (min-width: 720px) { .nav-links { display: flex; } }
@media (max-width: 719px) { .nav-in .btn { margin-left: auto; } }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .82rem 1.5rem; border-radius: 100px;
  font-weight: 600; font-size: .95rem; font-family: inherit;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background .2s, border-color .2s, box-shadow .2s;
}
.btn-arrow { transition: transform .25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }
.btn--primary {
  background: var(--green); color: #06210F;
  box-shadow: 0 6px 24px -8px rgba(46,209,110,.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -10px rgba(46,209,110,.75); }
.btn--ghost { border-color: var(--line-2); color: var(--text); }
.btn--ghost:hover { border-color: var(--muted); background: rgba(255,255,255,.04); }
.btn--sm { padding: .58rem 1.15rem; font-size: .87rem; }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3.5rem, 8vw, 6rem);
}
.hero::before {                       /* ambient glow */
  content: ""; position: absolute; inset: -30% 0 auto -10%;
  width: 900px; height: 900px; pointer-events: none;
  background: radial-gradient(circle, rgba(46,209,110,.13) 0%, transparent 62%);
  filter: blur(20px);
}
.hero-grid {
  position: relative; display: grid; gap: clamp(2.5rem, 5vw, 4.5rem);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.02fr .98fr; } }

.hero h1 { font-size: var(--t-hero); margin-bottom: 1.4rem; }
.hero h1 .accent { color: var(--green); display: block; }
.hero-lead {
  font-size: var(--t-lead); color: var(--muted);
  max-width: 46ch; margin-bottom: 2.2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.4rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: .55rem 1.5rem;
  font-size: .84rem; color: var(--dim); font-weight: 500;
}
.hero-meta span { display: flex; align-items: center; gap: .45rem; }
.hero-meta svg { width: 15px; height: 15px; flex: none; color: var(--green); }

/* ── Replay panel (the signature piece) ────────────────── */
.replay {
  background: linear-gradient(168deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: 22px;
  padding: 1.15rem 1.15rem 1rem;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.02) inset;
}
.replay-bar {
  display: flex; align-items: center; gap: .55rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--dim); margin-bottom: .9rem;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232,60,50,.55); }
  70%     { opacity: .7; box-shadow: 0 0 0 7px rgba(232,60,50,0); }
}
.replay-tag { margin-left: auto; color: var(--dim); letter-spacing: .08em; }

.replay-stage {
  display: grid; grid-template-columns: 1fr 122px; gap: .9rem;
  align-items: center;
}
@media (max-width: 440px) {
  .replay-stage { grid-template-columns: 1fr 96px; gap: .5rem; }
  .gauge-num { font-size: 1.55rem; }
  .replay-bar { font-size: .62rem; letter-spacing: .09em; }
  .replay-tag { display: none; }
}

.stage-svg {
  background: radial-gradient(ellipse at 55% 78%, rgba(255,255,255,.035), transparent 70%);
  border-radius: 14px; width: 100%; height: auto;
}

/* readouts */
.gauge { text-align: center; }
.gauge-ring { position: relative; width: 100%; max-width: 118px; margin-inline: auto; }
.gauge-num {
  position: absolute; inset: 0; display: grid; place-content: center;
  font-size: 1.95rem; font-weight: 700; letter-spacing: -.03em;
  font-variant-numeric: tabular-nums; transition: color .5s var(--ease);
}
.state-pill {
  margin-top: .55rem; display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .7rem; border-radius: 100px;
  font-size: .72rem; font-weight: 600; letter-spacing: .02em;
  border: 1px solid currentColor; transition: color .5s var(--ease);
}
.state-pill i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.gauge-dev {
  margin-top: .5rem; font-size: .7rem; color: var(--dim);
  font-variant-numeric: tabular-nums;
}
.gauge-dev b { color: var(--muted); font-weight: 600; }

/* timeline */
.replay-time { margin-top: .85rem; }
.track {
  position: relative; height: 3px; border-radius: 3px;
  background: rgba(255,255,255,.09);
}
.track-fill {
  position: absolute; inset: 0 auto 0 0; width: 0%;
  background: var(--green); border-radius: 3px; transition: background .5s var(--ease);
}
.track-buzz {
  position: absolute; top: 50%; width: 2px; height: 9px;
  border-radius: 2px; background: var(--orange);
  transform: translate(-50%, -50%); opacity: .55;
}
.replay-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: .6rem; font-size: .68rem; color: var(--dim);
}
.replay-foot b { color: var(--muted); font-weight: 600; font-variant-numeric: tabular-nums; }

/* buzz banner */
.buzz-flag {
  position: absolute; left: 50%; top: 12px; transform: translate(-50%, -8px);
  display: flex; align-items: center; gap: .4rem;
  padding: .28rem .7rem; border-radius: 100px;
  background: rgba(232,98,46,.16); border: 1px solid rgba(232,98,46,.5);
  color: #FFC9A8; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s var(--ease);
}
.buzz-flag.on { opacity: 1; transform: translate(-50%, 0); }
.stage-holder { position: relative; }

/* ── Proof strip ───────────────────────────────────────── */
.proof {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.018), transparent);
}
.proof-grid {
  display: grid; gap: 1px; background: var(--line);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) { .proof-grid { grid-template-columns: repeat(4, 1fr); } }
.proof-cell { background: var(--bg); padding: 1.9rem 1.4rem; text-align: center; }
.proof-n {
  font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700;
  letter-spacing: -.03em; color: var(--green);
  font-variant-numeric: tabular-nums; line-height: 1.1;
}
.proof-l { font-size: .82rem; color: var(--muted); margin-top: .3rem; }

/* ── Generic cards ─────────────────────────────────────── */
.cards { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.6rem;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.card:hover { transform: translateY(-3px); border-color: var(--line-2); background: var(--surface-2); }
.card-ico {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-content: center;
  background: var(--green-deep); color: var(--green); margin-bottom: 1rem;
}
.card-ico svg { width: 19px; height: 19px; }
.card h3 { font-size: var(--t-h3); margin-bottom: .5rem; font-weight: 600; }
.card p { color: var(--muted); font-size: .93rem; }

/* ── Steps ─────────────────────────────────────────────── */
.steps { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { background: var(--surface); padding: 1.7rem 1.4rem; position: relative; }
.step-n {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  color: var(--green); margin-bottom: .8rem;
}
.step h3 { font-size: 1.02rem; margin-bottom: .4rem; font-weight: 600; }
.step p { font-size: .88rem; color: var(--muted); }

/* ── Compare (before / after crossfade) ────────────────── */
.compare-shell {
  position: relative; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface);
}
.compare-shell picture { display: block; }
.compare-shell img { width: 100%; display: block; }
.compare-layer {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .7s var(--ease);
}
.compare-shell.is-after .compare-layer { opacity: 1; }
.compare-layer img { height: 100%; object-fit: cover; }

/* corner state badge */
.compare-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .34rem .78rem; border-radius: 100px;
  font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  background: rgba(11,12,14,.82); backdrop-filter: blur(8px);
  border: 1px solid var(--line-2); color: var(--red);
  transition: color .5s var(--ease);
}
.compare-badge i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.compare-shell.is-after .compare-badge { color: var(--green); }

/* toggle */
.compare-switch {
  display: inline-flex; padding: 4px; margin-top: .9rem;
  border: 1px solid var(--line); border-radius: 100px; background: var(--surface);
}
.compare-switch button {
  border: 0; background: none; cursor: pointer; font-family: inherit;
  padding: .48rem 1.05rem; border-radius: 100px;
  font-size: .84rem; font-weight: 600; color: var(--muted);
  transition: background .3s var(--ease), color .3s;
}
.compare-switch button[aria-pressed="true"] { background: rgba(255,255,255,.09); color: var(--text); }

/* ── Quote / tester result ─────────────────────────────── */
.quote-block {
  border-left: 2px solid var(--green); padding-left: clamp(1.2rem, 3vw, 2.2rem);
  max-width: 52ch;
}
.quote-block .big {
  font-size: clamp(1.35rem, 2.6vw, 1.95rem); font-weight: 600;
  letter-spacing: -.02em; line-height: 1.35; margin-bottom: 1rem;
}
.quote-block .who { font-size: .86rem; color: var(--dim); }
.split {
  display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split img { border-radius: var(--r); border: 1px solid var(--line); }
/* Portrait photos are tall enough to swallow a whole viewport — cap them. */
.split .media { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.split .media img { border: 0; border-radius: 0; width: 100%; max-height: 460px; object-fit: cover; object-position: center 32%; }

/* A light-background product shot needs framing on a dark page, or it reads
   as a bright slab rather than a photograph. */
.studio {
  flex: none; width: min(210px, 40vw); padding: .55rem;
  border-radius: 14px; border: 1px solid var(--line); background: var(--surface);
}
.studio img { border-radius: 9px; display: block; width: 100%; }
.sec-head { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
/* Was display:none below 700px — which hid the only clear photo of the device from
   every phone visitor, on a page selling a physical product. Show it full-width
   under the heading instead. */
@media (max-width: 700px) {
  .sec-head { flex-direction: column; align-items: stretch; gap: 1.4rem; }
  .studio { width: 100%; max-width: 320px; margin-inline: auto; }
}

/* ── Video clip (9:16, plays only while on screen) ─────── */
.clip {
  position: relative; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line); background: #000;
}
.clip-vid {
  display: block; width: 100%; max-height: 520px;
  object-fit: cover; object-position: center 28%;
}
.clip-cap {
  position: absolute; inset: auto 0 0 0;
  padding: 2.6rem 1.1rem .95rem;
  background: linear-gradient(transparent, rgba(0,0,0,.55) 38%, rgba(0,0,0,.88));
  font-size: .92rem; font-weight: 500; color: #fff; line-height: 1.4;
}
.clip-tag {
  display: block; margin-bottom: .3rem;
  font-size: .66rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green);
}

/* ── Specs ─────────────────────────────────────────────── */
.spec-list { border-top: 1px solid var(--line); }
.spec-row {
  display: grid; grid-template-columns: 1fr; gap: .2rem;
  padding: 1.05rem .2rem; border-bottom: 1px solid var(--line);
}
@media (min-width: 640px) { .spec-row { grid-template-columns: 210px 1fr; gap: 1.5rem; align-items: baseline; } }
.spec-k { font-size: .82rem; color: var(--dim); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.spec-v { color: var(--muted); font-size: .96rem; }
.spec-v b { color: var(--text); font-weight: 600; }

/* ── Who's building it ─────────────────────────────────── */
/* A personal note, set off from the marketing sections around it: a rule down the
   left rather than a card, so it reads as an aside instead of another feature. */
.maker {
  border-left: 2px solid var(--line-2);
  padding-left: clamp(1.1rem, 3vw, 2rem);
  max-width: 68ch;
}
.maker-name {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600; margin-bottom: .9rem;
}

/* ── Early access ──────────────────────────────────────── */
.offer {
  border: 1px solid var(--line-2); border-radius: 20px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  padding: clamp(1.8rem, 4vw, 2.8rem);
  display: grid; gap: 2rem; grid-template-columns: 1fr;
}
@media (min-width: 860px) { .offer { grid-template-columns: 1.16fr .84fr; gap: 2.6rem; } }
.price { display: flex; align-items: baseline; gap: .5rem; margin-bottom: .3rem; }
.price .amt { font-size: clamp(2.6rem, 6vw, 3.6rem); font-weight: 700; letter-spacing: -.04em; }
.price .cur { font-size: 1.4rem; font-weight: 600; color: var(--muted); }
.price-tag {
  font-size: .8rem; font-weight: 600; color: var(--muted);
  align-self: center; line-height: 1.3; padding-bottom: .2rem;
}
.price-note { color: var(--dim); font-size: .86rem; margin-bottom: 1.6rem; }
.ticks-lead {
  font-size: .84rem; font-weight: 600; color: var(--text);
  margin-bottom: .9rem; padding-bottom: .8rem;
  border-bottom: 1px solid var(--line);
}
.ticks { display: grid; gap: .7rem; margin-bottom: 1.8rem; }
.tick { display: flex; gap: .7rem; align-items: flex-start; font-size: .93rem; color: var(--muted); }
.tick svg { width: 17px; height: 17px; color: var(--green); flex: none; margin-top: .2rem; }

.honest {
  border: 1px solid rgba(217,152,48,.28); background: rgba(217,152,48,.06);
  border-radius: 14px; padding: 1.2rem 1.3rem;
}
.honest h3 {
  font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: .7rem;
}
.honest p { font-size: .9rem; color: var(--muted); margin-bottom: .7rem; }
.honest p:last-child { margin-bottom: 0; }

/* form */
/* The early-access CTA. No form: the site collects nothing, so there is no input,
   no processor and nothing to disclose. */
.reach { display: flex; flex-wrap: wrap; gap: .6rem; }
.reach .btn svg { width: 16px; height: 16px; flex: none; }
/* Both labels start "Message me on ..." now, so the pair needs to be a little tighter
   to sit on one line in the offer column. Still wraps on narrow screens. */
.reach .btn { padding: .78rem 1.15rem; font-size: .9rem; gap: .45rem; }

.reach-note { font-size: .78rem; color: var(--dim); margin-top: .9rem; max-width: 46ch; }

/* ── Footer ────────────────────────────────────────────── */
.foot { border-top: 1px solid var(--line); padding-block: 3rem 2.5rem; }
.foot-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; }
.foot-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.foot-links a { font-size: .88rem; color: var(--muted); transition: color .2s; }
.foot-links a:hover { color: var(--text); }
.foot-social { display: flex; gap: .6rem; }
.foot-social a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-content: center;
  border: 1px solid var(--line); color: var(--muted);
  transition: color .2s, border-color .2s, transform .2s var(--ease);
}
.foot-social a:hover { color: var(--green); border-color: var(--green); transform: translateY(-2px); }
.foot-social svg { width: 18px; height: 18px; }
.foot-note { font-size: .8rem; color: var(--dim); margin-top: 2rem; }

/* ── Scroll reveal ─────────────────────────────────────── */
/* Scoped to .js (set by an inline script in <head>) so that with JavaScript
   disabled — or if aligno.js fails to load — the content is simply visible
   rather than a page of invisible elements. */
.js [data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: var(--d, 0ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ── Reduced motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
