/* Vision landing (by Get Lonstern) - design system. Palette shared with the audit report. Motion: transform/opacity
   only, custom easing, reduced-motion aware. */

:root {
  --ink: #16202b;
  --ink-soft: #3a4653;
  --muted: #5f6b7a;
  --line: #e4e9ef;
  --line-soft: #eef2f7;
  --paper: #ffffff;
  --paper-alt: #f5f8fc;
  --paper-ink: #0f1720;
  --accent: #0b5fff;
  --accent-ink: #0a3fbf;
  --accent-tint: rgba(11, 95, 255, 0.09);
  --named: #0a7d3c;
  --sourced: #0b5fff;
  --no: #aeb8c4;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(16, 25, 34, 0.04), 0 6px 18px rgba(16, 25, 34, 0.05);
  --shadow-lg: 0 2px 8px rgba(16, 25, 34, 0.06), 0 30px 70px -24px rgba(16, 25, 34, 0.28);
  --wrap: 1240px;
  --gutter: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0; font-family: var(--font-sans); color: var(--ink); background: var(--paper);
  font-size: 17px; line-height: 1.62; letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.022em; line-height: 1.06; margin: 0; }
p { margin: 0; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: 800px; }
.center { text-align: center; }
.sprite { position: absolute; }

/* icons */
.ico { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6px; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ico--sm { width: 18px; height: 18px; }
.ico--xs { width: 15px; height: 15px; stroke-width: 1.8px; }

.skip-link { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; text-decoration: none; }
.skip-link:focus { left: 12px; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-weight: 550; letter-spacing: -0.01em; color: #fff; background: var(--bg);
  border: 1px solid transparent; border-radius: 999px; padding: 12px 22px; cursor: pointer; text-decoration: none;
  transition: transform 160ms var(--ease-out), background-color 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 1px 2px rgba(11, 63, 191, 0.28), 0 10px 22px -8px rgba(11, 95, 255, 0.55);
}
.btn:hover { background: var(--accent-ink); }
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 3px solid rgba(11, 95, 255, 0.35); outline-offset: 2px; }
.btn--sm { padding: 9px 17px; font-size: 15px; }
.btn--lg { padding: 15px 28px; font-size: 17px; }
.btn--block { width: 100%; }
.btn--light { background: #fff; color: var(--accent-ink); box-shadow: 0 12px 30px -10px rgba(0,0,0,0.5); }
.btn--light:hover { background: #eef3ff; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 40; background: rgba(255, 255, 255, 0.82); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid transparent; transition: border-color 200ms ease; }
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.wordmark { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); text-decoration: none; }
.wordmark__mark { width: 30px; height: 30px; display: inline-flex; flex: none; }
.wordmark__mark svg { width: 100%; height: 100%; display: block; border-radius: 8.5px; box-shadow: 0 2px 8px -1px rgba(11, 63, 191, 0.42); }
@media (hover: hover) and (pointer: fine) { .wordmark { transition: opacity 140ms ease; } .wordmark:hover { opacity: 0.82; } }

/* ---------- reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(16px); }
[data-reveal].is-in { opacity: 1; transform: none; transition: opacity 640ms var(--ease-out), transform 640ms var(--ease-out); }

/* ---------- tags / section heads ---------- */
.tag { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 550; letter-spacing: 0.01em; color: var(--accent-ink); background: var(--accent-tint); padding: 7px 13px; border-radius: 999px; margin-bottom: 20px; }
.tag .ico { color: var(--accent); }
.tag--ghost { color: var(--muted); background: transparent; border: 1px solid var(--line); padding: 6px 14px; }
.section__head { text-align: left; margin-bottom: 12px; }
.section__head .tag { margin: 0 0 18px; }
.section__head .section__title { max-width: none; }

/* ---------- hero ---------- */
.hero { padding: clamp(30px, 4vw, 64px) 0 clamp(44px, 5vw, 76px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: clamp(38px, 5vw, 64px); align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 22px; }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero__title { font-size: clamp(37px, 4.1vw, 57px); font-weight: 500; max-width: 18ch; }
.hero__sub { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-soft); margin-top: 22px; max-width: 50ch; }
.hero__cta { margin-top: 30px; display: flex; align-items: center; gap: 18px 22px; flex-wrap: wrap; }
.reassure { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.reassure .ico { color: var(--named); }
.engines--inline { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line-soft); }
.engines--inline li { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 500; color: var(--ink-soft); }
.engines__mark { width: 27px; height: 27px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; }
.engines__mark svg { display: block; }
.e-gpt { background: rgba(16, 163, 127, 0.13); color: #0e8f6f; }
.e-gem { background: rgba(66, 133, 244, 0.13); color: #2f6fe0; }
.e-plx { background: rgba(32, 128, 141, 0.14); color: #1a7280; }

/* hero mock */
.hero__mock { perspective: 1600px; }
.mock { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-lg); transform: rotate(0.5deg); }
.mock__bar { display: flex; align-items: center; gap: 10px; padding: 13px 17px; background: var(--paper-ink); }
.mock__dot { width: 9px; height: 9px; border-radius: 50%; background: #37e08b; box-shadow: 0 0 0 3px rgba(55, 224, 139, 0.18); flex: none; }
.mock__title { font-family: var(--font-mono); font-size: 12px; color: #aeb9c7; }
.mock__headline { padding: 22px 22px 6px; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.mock__count { font-family: var(--font-display); font-size: 42px; font-weight: 600; color: var(--ink); line-height: 1; }
.js-count { font-variant-numeric: tabular-nums; }
.mock__label { font-size: 14px; color: var(--muted); }
.mock__grid { padding: 10px 13px 12px; }
.mock__row { display: grid; grid-template-columns: 1fr 34px 34px 34px; align-items: center; gap: 6px; padding: 8px 9px; border-radius: 9px; }
.mock__row--head { padding-top: 2px; padding-bottom: 9px; }
.mock__row--head .mock__q, .mock__eng { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.mock__eng { text-align: center; }
.mock__row:not(.mock__row--head):nth-child(even) { background: var(--paper-alt); }
.mock__q { font-size: 13.5px; color: var(--ink-soft); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock__cell { width: 22px; height: 22px; margin: 0 auto; border-radius: 6px; display: grid; place-items: center; font-size: 12px; font-weight: 700; color: #fff; opacity: 0; transform: scale(0.6); }
.mock__cell.is-in { opacity: 1; transform: none; transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out); }
.mock__cell--named { background: var(--named); }
.mock__cell--sourced { background: var(--sourced); }
.mock__cell--no { background: #eef1f5; color: var(--no); box-shadow: inset 0 0 0 1px var(--line); }
.mock__foot { display: flex; gap: 17px; padding: 13px 22px 18px; border-top: 1px solid var(--line-soft); }
.key { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.chip { width: 11px; height: 11px; border-radius: 3px; display: inline-block; }
.chip--named { background: var(--named); }
.chip--sourced { background: var(--sourced); }
.chip--no { background: #eef1f5; box-shadow: inset 0 0 0 1px var(--line); }

/* ---------- engines strip ---------- */
.strip { padding: clamp(26px, 3vw, 40px) 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--paper-alt); }
.strip__inner { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: center; }
.strip__lead { font-size: 14px; color: var(--muted); max-width: 26ch; }
.strip__engines { display: grid; grid-template-columns: 1fr; gap: 14px; }
.ecard { display: flex; align-items: center; gap: 12px; padding: 15px 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.ecard .engines__mark { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; }
.ecard .ico { width: 20px; height: 20px; }
.ecard b { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.ecard span { font-size: 12.5px; color: var(--muted); display: block; }

/* ---------- audit form block ---------- */
.audit { padding: clamp(44px, 6vw, 88px) 0; }
.audit__grid { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 4vw, 56px); align-items: center; }
.section__title { font-size: clamp(28px, 3vw, 40px); max-width: 20ch; }
.section__title.center { max-width: none; margin: 0 auto; }
.section__lead { color: var(--ink-soft); font-size: 17px; margin-top: 16px; max-width: 48ch; }
.miniticks { margin-top: 22px; display: grid; gap: 11px; }
.miniticks li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink-soft); }
.miniticks .ico { color: var(--named); }

.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.form { padding: clamp(24px, 3vw, 32px); box-shadow: var(--shadow-lg); }
.field { margin-bottom: 15px; }
.field-row { display: flex; gap: 12px; }
.field--grow { flex: 1 1 auto; }
.field--state { flex: 0 0 108px; }
.field label { display: block; font-size: 13.5px; font-weight: 550; color: var(--ink-soft); margin-bottom: 7px; }
.opt { color: var(--muted); font-weight: 400; }
.field input, .field select { width: 100%; font: inherit; font-size: 16px; color: var(--ink); padding: 13px 15px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); transition: border-color 140ms ease, box-shadow 140ms ease; appearance: none; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%23697585' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 34px; }
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(11, 95, 255, 0.14); }
.field input::placeholder { color: #aab3bf; }
.field.is-invalid input, .field.is-invalid select { border-color: #c94a4a; box-shadow: 0 0 0 3px rgba(201, 74, 74, 0.12); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { font-size: 12.5px; color: var(--muted); margin-top: 12px; text-align: center; }
.form__msg { font-size: 14px; margin-top: 14px; text-align: center; min-height: 1px; }
.form__msg.is-error { color: #c94a4a; }
.form__msg.is-ok { color: var(--named); font-weight: 550; }
.noscript-note { margin-bottom: 16px; padding: 12px 14px; border-radius: var(--radius-sm); background: #fff5f5; border: 1px solid #f0d2d2; color: #9a3b3b; font-size: 14px; line-height: 1.5; }
.noscript-note a { color: inherit; font-weight: 600; }
.btn__spinner { display: none; width: 17px; height: 17px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; animation: spin 620ms linear infinite; }
.form.is-loading .btn__spinner { display: inline-block; }
.form.is-loading button[type=submit] { pointer-events: none; opacity: 0.86; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- sections ---------- */
.section { padding: clamp(56px, 7vw, 100px) 0; }
.section--alt { background: var(--paper-alt); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

/* steps */
.steps { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 44px; }
.step { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); overflow: hidden; }
.step__ico { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--accent-tint); color: var(--accent); margin-bottom: 20px; }
.step__ico .ico { width: 24px; height: 24px; }
.step__n { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }
.step h3 { font-size: 21px; margin-bottom: 9px; }
.step p { color: var(--ink-soft); font-size: 15.5px; }

/* what you get */
.report__grid { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 4vw, 56px); align-items: center; }
.ticks { margin: 24px 0 0; }
.ticks li { display: flex; gap: 13px; padding-bottom: 16px; color: var(--ink-soft); font-size: 16.5px; }
.ticks .ico { color: var(--named); margin-top: 2px; }
.note { margin-top: 8px; font-size: 14.5px; color: var(--muted); border-left: 2px solid var(--line); padding-left: 16px; max-width: 52ch; }
.report__aside { padding: 26px 26px 24px; }
.aside__head { display: flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.statline { display: grid; grid-template-columns: 84px 1fr auto; align-items: center; gap: 12px; margin-bottom: 15px; }
.statline b { font-size: 14px; font-weight: 550; }
.statline .bar { height: 9px; border-radius: 6px; background: var(--line-soft); overflow: hidden; }
.statline .bar i { display: block; height: 100%; width: var(--w); border-radius: 6px; background: linear-gradient(90deg, var(--accent), #4b86ff); transform: scaleX(0); transform-origin: left center; transition: transform 900ms var(--ease-out); }
.report__aside.is-in .bar i { transform: scaleX(1); }
.statline em { font-family: var(--font-mono); font-size: 12px; color: var(--muted); font-style: normal; }
.aside__gap { display: flex; gap: 11px; align-items: flex-start; margin-top: 20px; padding: 15px 16px; border-radius: var(--radius-sm); background: var(--accent-tint); font-size: 14px; color: var(--ink-soft); }
.aside__gap .ico { color: var(--accent); margin-top: 1px; }
.statfoot { font-size: 12.5px; color: var(--muted); margin-top: 14px; }

/* pillars */
.pillars { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 44px; }
.pillar { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.pillar__ico { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--accent-tint); color: var(--accent); margin-bottom: 20px; }
.pillar__ico .ico { width: 24px; height: 24px; }
.pillar h3 { font-size: 21px; margin-bottom: 10px; }
.pillar p { color: var(--ink-soft); font-size: 15.5px; }

/* faq */
.faq { margin-top: 20px; }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; padding: 21px 40px 21px 0; position: relative; font-weight: 550; font-size: 17px; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--muted); transition: transform 200ms var(--ease-out); }
.qa[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.qa p { color: var(--ink-soft); font-size: 15.5px; padding: 0 30px 22px 0; margin-top: -4px; }

/* final cta */
.finalcta { padding: clamp(70px, 9vw, 128px) 0; background: radial-gradient(120% 120% at 50% -20%, #1b2836, var(--paper-ink)); color: #fff; }
.finalcta__title { font-size: clamp(30px, 3.6vw, 46px); color: #fff; max-width: 22ch; margin: 0 0 30px; }
.finalcta__sub { font-size: 14px; color: #9fb0c2; margin-top: 18px; }

/* footer */
.footer { padding: 48px 0; border-top: 1px solid var(--line); background: var(--paper); }
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 18px; }
.footer__by { font-size: 14px; color: var(--ink-soft); margin-top: 14px; }
.footer__addr { font-size: 13px; color: var(--muted); margin-top: 6px; }
.footer__links { display: flex; gap: 20px; }
.footer__links a { display: inline-flex; align-items: center; min-height: 40px; font-size: 14px; color: var(--ink-soft); text-decoration: none; }
.footer__links a:hover { color: var(--accent); }
.footer__fine { font-size: 12.5px; color: var(--muted); max-width: 62ch; }

/* ---------- brand logos (fill-based) + premium ---------- */
.logo { width: 22px; height: 22px; fill: currentColor; flex: none; }
.logo--xs { width: 17px; height: 17px; }
.ecard .logo { width: 22px; height: 22px; }
.e-gem { background: linear-gradient(135deg, rgba(66, 133, 244, 0.16), rgba(217, 101, 112, 0.12)); }

/* hero premium glow (animated) */
.hero { position: relative; }
.hero .wrap { position: relative; z-index: 1; }
.hero__glow { position: absolute; top: -14%; right: -4%; width: 640px; height: 640px; max-width: 80vw; border-radius: 50%; z-index: 0; pointer-events: none; background: radial-gradient(circle, rgba(11, 95, 255, 0.15), rgba(124, 88, 200, 0.08) 45%, transparent 66%); filter: blur(14px); animation: glowDrift 17s ease-in-out infinite alternate; }
@keyframes glowDrift { from { transform: translate(0, 0) scale(1); opacity: 0.8; } to { transform: translate(-46px, 34px) scale(1.14); opacity: 1; } }
.hero__mock { position: relative; }
.hero__mock::before { content: ""; position: absolute; inset: -10% -8% -14% -8%; z-index: -1; background: radial-gradient(58% 58% at 62% 40%, rgba(11, 95, 255, 0.2), transparent 70%); filter: blur(26px); }
.btn--lg:hover { box-shadow: 0 2px 4px rgba(11, 63, 191, 0.3), 0 16px 44px -8px rgba(11, 95, 255, 0.72); }

/* final CTA: animated glow-orb background + masked grid */
.finalcta { position: relative; overflow: hidden; isolation: isolate; }
.finalcta__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(72px); opacity: 0.55; will-change: transform; }
.orb--1 { width: 520px; height: 520px; background: #0b5fff; top: -190px; left: -70px; animation: drift1 24s ease-in-out infinite alternate; }
.orb--2 { width: 460px; height: 460px; background: #7c58c8; bottom: -210px; right: -50px; animation: drift2 30s ease-in-out infinite alternate; }
.orb--3 { width: 340px; height: 340px; background: #1a7c8a; top: 28%; left: 54%; opacity: 0.42; animation: drift3 27s ease-in-out infinite alternate; }
@keyframes drift1 { to { transform: translate(80px, 46px) scale(1.14); } }
@keyframes drift2 { to { transform: translate(-66px, -40px) scale(1.1); } }
@keyframes drift3 { to { transform: translate(-58px, 40px) scale(1.2); } }
.grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px); background-size: 48px 48px; -webkit-mask-image: radial-gradient(120% 92% at 50% 26%, #000 32%, transparent 74%); mask-image: radial-gradient(120% 92% at 50% 26%, #000 32%, transparent 74%); }

/* ---------- responsive ---------- */
@media (min-width: 720px) {
  .steps, .pillars { grid-template-columns: repeat(3, 1fr); }
  /* engines: minmax(0,1fr) lets the 3 cards shrink so they never overflow the strip */
  .strip__engines { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__inner { grid-template-columns: 1fr auto; align-items: center; }
  .footer__fine { grid-column: 1 / -1; }
  /* desktop: centered section heads + final CTA (as before); left-aligned only on mobile */
  .section__head { text-align: center; }
  .finalcta .wrap { text-align: center; }
  .finalcta__title { margin-left: auto; margin-right: auto; }
}
@media (min-width: 940px) {
  :root { --gutter: 40px; }
  .hero__grid { grid-template-columns: 1.08fr 0.92fr; }
  .audit__grid { grid-template-columns: 0.92fr 1.08fr; }
  .report__grid { grid-template-columns: 1.05fr 0.95fr; }
  /* side-by-side lead + engines only once there is room; below this the strip stacks */
  .strip__inner { grid-template-columns: 0.7fr 2fr; }
}

/* ---------- touch + reduced motion ---------- */
@media (hover: hover) and (pointer: fine) {
  .qa summary:hover { color: var(--accent); }
  .footer__links a { transition: color 140ms ease; }
  .step, .pillar, .ecard { transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out); }
  .step:hover, .pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal], [data-reveal].is-in { opacity: 1; transform: none; transition: opacity 200ms ease; }
  .mock__cell { opacity: 1; transform: none; }
  .mock { transform: none; }
  .btn:active { transform: none; }
  .statline .bar i { transition: none; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}
