/* Magnor Marker — marketing site. Glass · Blue.
   Tokens lifted verbatim from the app (App.tsx) so the site and the product read as one thing.
   Self-contained by design: no webfont, no CDN, no third-party request of any kind. */

:root {
  --accent: #0062CC;
  --accent-press: #01386F;
  --t1: #0B2233;
  --t2: #3C5566;
  --t3: #5E7383;

  --sev-urgent: #E5484D;
  --sev-high: #F5811E;
  --sev-med: #E0A800;
  --sev-low: #0E9AAB;
  --green: #2BA66A;
  --green-closed: #5B9A2E;
  --violet: #7A5AF8;

  /* Blueprint family — the app's deck-plan palette. Used for every dark surface,
     so a dark band reads as "the plan" rather than as a generic dark section. */
  --navy: #0E3A66;
  --navy-hi: #11497C;
  --navy-lo: #0A2A4C;
  --navy-border: #1C568F;
  --bp-hull: #DCEAFB;
  --bp-room: #9FC2EA;
  --bp-line: #5E84B6;
  --bp-label: #E2EDF9;
  --bp-dim: #80A6CF;
  --bp-furn: #7FA6D2;

  /* The literal gradient string the app already emits at App.tsx:279 */
  --aurora: linear-gradient(135deg, #CFE6F7 0%, #E6F6F2 35%, #FBEFE0 70%, #EFE7FB 100%);

  --glass: rgba(255, 255, 255, .6);
  --glass-strong: rgba(255, 255, 255, .78);
  --hairline: rgba(11, 34, 51, .12);
  --hairline-soft: rgba(11, 34, 51, .10);

  --r-btn: 12px;
  --r-card: 16px;
  --r-hero: 18px;
  --r-chip: 14px;

  --shadow-lift: 0 24px 70px rgba(11, 34, 51, .28);
  --shadow-accent: 0 12px 28px rgba(0, 98, 204, .35);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;

  --gut: 24px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--t1);
  background: #F4F8FB;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* The aurora sits behind the whole upper page, fixed, so glass surfaces have
   something to refract. Fades out before the dark bands. */
.aurora {
  position: fixed;
  inset: 0;
  background: var(--aurora);
  z-index: -2;
}
.aurora::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(244, 248, 251, 0) 55%, #F4F8FB 100%);
}

img, svg { max-width: 100%; }
a { color: var(--accent); text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ── Type ─────────────────────────────────────────────────────────────── */
h1, h2, h3 { margin: 0; letter-spacing: -.01em; }
h1 { font-size: clamp(34px, 5.4vw, 56px); font-weight: 800; line-height: 1.06; letter-spacing: -.022em; }
h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; line-height: 1.12; letter-spacing: -.018em; }
h3 { font-size: 17px; font-weight: 700; }
p { margin: 0; line-height: 1.6; }

.lede { font-size: clamp(16px, 1.5vw, 19px); color: var(--t2); line-height: 1.6; }
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.eyebrow.on-navy { color: #8FC5F5; }
.meta { font-size: 12px; color: var(--t3); }

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 20px; border-radius: var(--r-btn);
  font-size: 15px; font-weight: 700; font-family: var(--font);
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(0, 98, 204, .35); }
.btn-primary:hover { background: var(--accent-press); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0, 98, 204, .4); }
.btn-ghost { background: rgba(0, 98, 204, .06); color: var(--accent); border-color: rgba(0, 98, 204, .4); }
.btn-ghost:hover { background: rgba(0, 98, 204, .1); }
.btn-onnavy { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .34); }
.btn-onnavy:hover { background: rgba(255, 255, 255, .2); }
.btn-sm { padding: 9px 15px; font-size: 13.5px; }
.btn .i { width: 17px; height: 17px; }

/* ── Nav ──────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: rgba(255, 255, 255, .55);
  border-bottom: .5px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}
.nav.stuck { background: rgba(255, 255, 255, .8); border-bottom-color: var(--hairline-soft); }
.nav-in { display: flex; align-items: center; gap: 14px; height: 62px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-wm { font-size: 18px; font-weight: 800; letter-spacing: .2px; color: var(--t1); }
.brand-wm b { color: var(--accent); font-weight: 800; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { font-size: 13.5px; font-weight: 600; color: var(--t2); }
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; gap: 9px; margin-left: 22px; }
@media (max-width: 900px) { .nav-links { display: none; } .nav-cta { margin-left: auto; } }
@media (max-width: 420px) { .nav-cta .btn-ghost { display: none; } }

/* Brand mark — accent rounded square, white ring over a white bar (App.tsx:1873) */
.mark { width: 34px; height: 34px; border-radius: 10px; background: var(--accent);
  display: grid; place-items: center; box-shadow: var(--shadow-accent); flex: none; }
.mark i { display: block; width: 11px; height: 11px; border-radius: 50%; border: 3px solid #fff; margin-bottom: 2px; }
.mark u { display: block; width: 15px; height: 2.5px; border-radius: 2px; background: #fff; }

/* ── Sections ─────────────────────────────────────────────────────────── */
section { padding: clamp(64px, 9vw, 108px) 0; }
.sec-head { max-width: 660px; margin-bottom: 44px; }
.sec-head p { margin-top: 14px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.navy { background: var(--navy); color: #fff; position: relative; }
.navy h2, .navy h3 { color: #fff; }
.navy .lede, .navy p { color: #B9D4EE; }
.navy .meta { color: var(--bp-dim); }
/* faint plan grid on dark bands — the same 80px pitch the blueprint uses */
.navy::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 80px 80px;
}
.navy .wrap { position: relative; }

/* ── Cards ────────────────────────────────────────────────────────────── */
.card {
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: .5px solid var(--hairline);
  border-radius: var(--r-card);
  padding: 22px;
}
.navy .card { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); backdrop-filter: none; -webkit-backdrop-filter: none; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--t2); }
.navy .card p { color: #A9C6E4; }

.grid { display: grid; gap: 18px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.ico {
  width: 38px; height: 38px; border-radius: var(--r-btn);
  background: rgba(0, 98, 204, .1); display: grid; place-items: center; margin-bottom: 14px;
}
.ico .i { width: 19px; height: 19px; color: var(--accent); }
.navy .ico { background: rgba(255, 255, 255, .1); }
.navy .ico .i { color: #8FC5F5; }
.i { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.i.fill { fill: currentColor; stroke: none; }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero { padding-top: clamp(48px, 7vw, 84px); padding-bottom: clamp(56px, 7vw, 92px); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero h1 { margin-bottom: 20px; }
.hero .lede { max-width: 30em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin-top: 16px; font-size: 12.5px; color: var(--t3); display: flex; align-items: center; gap: 7px; }
.hero-note .i { width: 14px; height: 14px; color: var(--green); }

.plan-card {
  border-radius: var(--r-hero); overflow: hidden; background: var(--navy);
  border: 1.5px solid var(--navy-border); box-shadow: var(--shadow-lift);
}
/* The GA is portrait (1200×1690) but the hero column is wide, so cap the height and
   let the SVG scale to fit inside it. The card's navy shows through either side —
   which reads as the plan's own ground, not as empty space. */
.plan-card svg { display: block; width: 100%; height: clamp(400px, 64vh, 640px); }
@media (max-width: 940px) { .plan-card svg { height: clamp(420px, 78vh, 700px); } }
.plan-cap {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 11px 14px; background: rgba(7, 26, 48, .55);
  border-top: 1px solid rgba(220, 234, 251, .16);
  font-size: 11.5px; color: var(--bp-dim);
}
.plan-cap .dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }

/* ── Blueprint SVG ────────────────────────────────────────────────────── */
.bp-grid { stroke: rgba(255, 255, 255, .045); stroke-width: 1; }
.bp-hull-o { fill: rgba(255, 255, 255, .035); stroke: var(--bp-hull); stroke-width: 5; stroke-linejoin: round; }
.bp-hull-i { fill: none; stroke: #6E93C2; stroke-width: 1.6; }
.bp-line { stroke: var(--bp-line); fill: none; }
.bp-room { fill: rgba(255, 255, 255, .05); stroke: var(--bp-room); stroke-width: 1.8; }
.bp-outline { fill: rgba(159, 194, 234, .05); stroke: #B7D2F0; stroke-width: 2.4; }
.bp-furn { fill: rgba(159, 194, 234, .10); stroke: var(--bp-furn); stroke-width: 1.6; }
.bp-lbl { fill: var(--bp-label); font: 700 18px var(--font); }
.bp-dim { fill: var(--bp-dim); font: 11px var(--font); }
.bp-tb1 { fill: #EAF2FB; font: 700 19px var(--font); }
.bp-tb2 { fill: #AFC8E8; font: 12px var(--font); }
.bp-tb3 { fill: var(--bp-dim); font: 11px var(--font); }

/* Pins. Tip lands on the point; head carries the status glyph. */
.pin { cursor: pointer; }
.pin .body { stroke: #fff; stroke-width: 2.2; }
.pin .glyph { stroke: #fff; stroke-width: 2.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.pin:hover .body { stroke: var(--accent); stroke-width: 2.8; }
.halo { fill: none; stroke: var(--accent); stroke-width: 3; transform-box: fill-box; transform-origin: center; animation: halo 1.3s linear infinite; }
@keyframes halo {
  from { transform: scale(.7); opacity: .8; }
  to   { transform: scale(2.1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .halo { animation: none; opacity: .35; } }

/* Hover card on a hero pin */
.pin-pop { opacity: 0; transition: opacity .18s ease; pointer-events: none; }
.pin-g:hover .pin-pop, .pin-g:focus-within .pin-pop { opacity: 1; }
.pop-bg { fill: rgba(255, 255, 255, .96); stroke: rgba(11, 34, 51, .14); stroke-width: 1; }
.pop-t { fill: var(--t1); font: 700 21px var(--font); }
.pop-m { fill: var(--t3); font: 17px var(--font); }

/* ── Steps (D2) ───────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: s; }
@media (max-width: 940px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; }
.step-n {
  width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: #fff;
  font-size: 13px; font-weight: 800; display: grid; place-items: center; margin-bottom: 14px;
}
.step-art {
  height: 132px; border-radius: var(--r-card); background: var(--navy);
  border: 1px solid var(--navy-border); margin-bottom: 14px; overflow: hidden;
}
.step-art svg { display: block; width: 100%; height: 100%; }
.step h3 { margin-bottom: 6px; }
.step p { font-size: 13.5px; color: var(--t2); }

/* ── Legend (D3) ──────────────────────────────────────────────────────── */
.legend { display: flex; flex-wrap: wrap; gap: 26px; align-items: flex-start; }
.leg-col { display: flex; flex-direction: column; gap: 12px; }
.leg-row { display: flex; align-items: center; gap: 11px; font-size: 13.5px; color: #C9DEF2; }
.leg-row svg { flex: none; }
.leg-h { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--bp-dim); }

/* ── Chips ────────────────────────────────────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--r-chip);
  border: .5px solid rgba(11, 34, 51, .15); font-size: 12px; color: var(--t2);
  background: rgba(255, 255, 255, .5);
}
.chip .d { width: 7px; height: 7px; border-radius: 50%; }
.chip.on { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 700; }
.navy .chip { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .16); color: #C9DEF2; }

/* ── Split rows ───────────────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.split.rev .split-art { order: -1; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } .split.rev .split-art { order: 0; } }
.split h2 { margin-bottom: 16px; }
.ticks { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ticks li { display: flex; gap: 11px; font-size: 14.5px; color: var(--t2); line-height: 1.5; }
.ticks .i { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 2px; }
.navy .ticks li { color: #B9D4EE; }
.navy .ticks .i { color: #8FC5F5; }

/* ── AI ask mock ──────────────────────────────────────────────────────── */
.ask {
  display: flex; align-items: center; gap: 9px; height: 46px; padding: 0 15px;
  border-radius: 23px; border: .5px solid var(--hairline); background: rgba(255, 255, 255, .62);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.ask .i { color: var(--accent); width: 17px; height: 17px; flex: none; }
.ask span { font-size: 14px; color: var(--t3); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.ask .go { margin-left: auto; color: var(--t3); }
.ask-ex { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.ask-ex button {
  font-family: var(--font); font-size: 12.5px; color: var(--t2); cursor: pointer;
  padding: 7px 12px; border-radius: 10px; border: .5px solid var(--hairline);
  background: rgba(255, 255, 255, .5); transition: all .15s ease;
}
.ask-ex button:hover, .ask-ex button.on { border-color: var(--accent); color: var(--accent); background: rgba(0, 98, 204, .07); }

/* ── Document mockup (D5) ─────────────────────────────────────────────── */
.doc {
  background: #fff; border-radius: 10px; padding: 26px 24px;
  box-shadow: var(--shadow-lift); border: 1px solid #e3e8ec; color: #1a2b38;
  font-size: 12.5px; max-width: 520px;
}
.doc-h { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px;
  border-bottom: 2px solid #1a2b38; padding-bottom: 12px; margin-bottom: 14px; }
.doc-h h4 { margin: 0; font-size: 16px; font-weight: 800; }
.doc-h .meta { font-size: 10.5px; color: #99a7b1; margin-top: 3px; }
.doc-sec { font-size: 9.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #5E7383; margin: 16px 0 8px; }
.doc-chk { display: flex; flex-direction: column; gap: 6px; }
.doc-chk div { display: flex; gap: 8px; align-items: center; font-size: 12px; }
.doc-chk .bx { width: 12px; height: 12px; border: 1.4px solid #99a7b1; border-radius: 2px; flex: none; }
.doc-chk .bx.on { background: var(--green-closed); border-color: var(--green-closed); }
.doc-job { border: 1px solid #e3e8ec; border-radius: 6px; padding: 10px 12px; margin-bottom: 7px; }
.doc-job b { font-size: 12.5px; display: block; margin-bottom: 3px; }
.doc-job .r { display: flex; gap: 8px; align-items: center; }
.sevchip { font-size: 8.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: #fff; padding: 2px 7px; border-radius: 3px; }
.doc-ph { display: flex; gap: 6px; margin-top: 8px; }
.doc-ph div { flex: 1; height: 42px; border-radius: 4px; background: #F6F8FA; border: 1px solid #e3e8ec;
  display: grid; place-items: center; font-size: 8.5px; color: #99a7b1; letter-spacing: .05em; }
.doc-foot { margin-top: 14px; padding-top: 10px; border-top: 1px solid #f0f3f5; font-size: 9.5px; color: #99a7b1; }

/* ── Inventory rows (D6) ──────────────────────────────────────────────── */
.inv-row { display: flex; align-items: center; gap: 11px; padding: 11px 0; border-bottom: .5px solid rgba(255,255,255,.1); }
.inv-row:last-child { border-bottom: 0; }
.inv-row .nm { font-size: 14px; font-weight: 600; color: #fff; }
.inv-row .mt { font-size: 11px; color: var(--bp-dim); margin-top: 1px; }
.flag { font-size: 9.5px; font-weight: 700; letter-spacing: .05em; padding: 3px 7px; border-radius: 4px; }
.flag.out { background: rgba(229, 72, 77, .18); color: #FF9A9D; }
.flag.low { background: rgba(224, 168, 0, .18); color: #F4CB57; }
.order { margin-left: auto; font-size: 12.5px; font-weight: 700; color: #8FC5F5; white-space: nowrap; }

/* ── Task row mock ────────────────────────────────────────────────────── */
.tk { display: flex; align-items: center; gap: 11px; padding: 10px 0; border-bottom: .5px solid var(--hairline-soft); }
.tk:last-child { border-bottom: 0; }
.tk .d { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.tk .sev { font-size: 11px; font-weight: 700; }
.tk .ti { font-size: 14px; font-weight: 600; color: var(--t1); margin-top: 1px; }
.tk .mt { font-size: 11px; color: var(--t3); margin-top: 1px; }
.tk .rt { margin-left: auto; font-size: 12px; color: var(--t3); white-space: nowrap; }

/* ── Pricing ──────────────────────────────────────────────────────────── */
.price { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
@media (max-width: 860px) { .price { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
.tier { position: relative; }
.tier.feat { border-color: rgba(0, 98, 204, .45); box-shadow: 0 14px 40px rgba(0, 98, 204, .13); }
.tier-n { font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: .04em; text-transform: uppercase; }
.tier-p { font-size: 34px; font-weight: 800; margin: 10px 0 2px; letter-spacing: -.02em; }
.tier-p small { font-size: 14px; font-weight: 600; color: var(--t3); letter-spacing: 0; }
.tier-s { font-size: 12.5px; color: var(--t3); }
.tier ul { list-style: none; margin: 18px 0 20px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.tier li { display: flex; gap: 9px; font-size: 13.5px; color: var(--t2); }
.tier li .i { width: 15px; height: 15px; color: var(--green); flex: none; margin-top: 2px; }
.tier .btn { width: 100%; justify-content: center; }
.badge {
  position: absolute; top: -10px; right: 18px;
  background: var(--accent); color: #fff; font-size: 10.5px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px; letter-spacing: .03em;
}
.badge.soft { background: rgba(0, 98, 204, .12); color: var(--accent); }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq { max-width: 780px; margin: 0 auto; }
details {
  border-bottom: .5px solid var(--hairline); padding: 18px 0;
}
summary {
  cursor: pointer; font-size: 15.5px; font-weight: 700; color: var(--t1);
  list-style: none; display: flex; align-items: center; gap: 12px;
}
summary::-webkit-details-marker { display: none; }
summary .i { width: 17px; height: 17px; color: var(--accent); margin-left: auto; flex: none; transition: transform .2s ease; }
details[open] summary .i { transform: rotate(45deg); }
details p { margin-top: 12px; font-size: 14.5px; color: var(--t2); padding-right: 30px; }

/* ── Final CTA + footer ───────────────────────────────────────────────── */
.final { text-align: center; }
.final h2 { margin-bottom: 16px; }
.final .lede { max-width: 540px; margin: 0 auto; }
.final .hero-cta { justify-content: center; }

footer { padding: 40px 0; border-top: .5px solid var(--hairline); }
.foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot .meta { margin-left: auto; }
@media (max-width: 620px) { .foot .meta { margin-left: 0; width: 100%; } }

/* ── Scroll reveal ────────────────────────────────────────────────────── */
/* Opt-IN, not opt-out: content is visible by default and only hidden once JS has
   confirmed it can reveal it again (html.js-anim). Without this, any failure to
   run the observer — no JS, a script error, a background/hidden tab where
   IntersectionObserver never fires — leaves the entire page permanently blank. */
.js-anim .rv { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.js-anim .rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-anim .rv { opacity: 1; transform: none; transition: none; }
}

/* Anything wide scrolls inside its own container — the page body never does. */
.scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }
