/* ===================================================================
   Smallstacks — minimal, Apple/Tesla-inspired design system
   =================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* color — near-monochrome */
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --bg-dark: #000000;
  --bg-dark-2: #161617;
  --ink: #1d1d1f;
  --ink-soft: #6e6e73;
  --ink-faint: #86868b;
  --line: #e5e5e7;
  --line-strong: #d2d2d7;
  --line-dark: #2a2a2c;
  --white: #ffffff;
  --accent: #0071e3;        /* used sparingly — links, key word, focus */
  --accent-bright: #2997ff; /* accent on dark backgrounds */

  /* type */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: var(--font-body);

  /* shape */
  --radius: 18px;
  --radius-lg: 24px;
  --radius-pill: 980px;
  --container: 1120px;

  /* shadow — used minimally */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .05);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, .08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .12);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.07; letter-spacing: -0.03em; font-weight: 600; }

::selection { background: var(--ink); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 28px; }
.container--narrow { max-width: 760px; }
.section { padding: 120px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: #f5f5f7; }
.section--dark .section__lead { color: #a1a1a6; }

.section__head { max-width: 720px; margin: 0 auto 72px; text-align: center; }
.section__title { font-size: clamp(2rem, 1.2rem + 3vw, 3.4rem); font-weight: 600; letter-spacing: -0.035em; }
.section--dark .section__title { color: #fff; }
.section__lead { color: var(--ink-soft); font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem); margin-top: 18px; font-weight: 400; }
.section__lead--left { margin-inline: 0; }

/* ---------- Eyebrow (plain, no pill) ---------- */
.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .02em;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow--center { display: block; }
.section--dark .eyebrow { color: var(--accent-bright); }

.grad { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 11px; --pad-x: 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 500; font-size: 1rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--radius-pill);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease, opacity .2s ease;
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #000; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); }
.section--dark .btn--primary { background: #fff; color: var(--ink); }
.section--dark .btn--primary:hover { background: #f5f5f7; }
.section--dark .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .3); }
.section--dark .btn--ghost:hover { border-color: #fff; }
.btn--lg { --pad-y: 14px; --pad-x: 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Header / nav (slim, hide-on-scroll) ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), border-color .3s ease, background .3s ease;
}
.header.is-scrolled { border-color: var(--line); }
.header.is-hidden { transform: translateY(-100%); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }

.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 1.2rem; letter-spacing: -0.02em; }
.brand__mark { display: inline-flex; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav__link { font-weight: 400; font-size: .92rem; color: var(--ink-soft); transition: color .18s ease; }
.nav__link:hover { color: var(--ink); }
.nav__cta { color: #fff; font-weight: 500; }
.nav__cta:hover { color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero (centered) ---------- */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero__glow { display: none; }
.hero__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero__title { font-size: clamp(2.7rem, 1.4rem + 5.4vw, 5rem); font-weight: 600; letter-spacing: -0.04em; max-width: 16ch; }
.hero__sub { font-size: clamp(1.15rem, 1rem + .7vw, 1.5rem); color: var(--ink-soft); margin-top: 22px; max-width: 40ch; font-weight: 400; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; justify-content: center; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 26px; list-style: none; padding: 0; margin-top: 30px; color: var(--ink-faint); font-size: .9rem; font-weight: 400; justify-content: center; }
.hero__trust li { display: inline-flex; align-items: center; gap: 7px; }

.check { color: var(--accent); font-weight: 600; }
.section--dark .check { color: var(--accent-bright); }

/* Hero visual — AI assistant chat mock (flat, monochrome) */
.hero__visual { position: relative; margin-top: 64px; width: 100%; max-width: 440px; }
.chat {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.chat__head { display: flex; align-items: center; gap: 12px; padding: 16px 18px; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.chat__avatar { width: 40px; height: 40px; flex: none; border-radius: 50%; display: grid; place-items: center; font-weight: 600; color: #fff; background: var(--ink); }
.chat__id { display: flex; flex-direction: column; line-height: 1.3; text-align: left; }
.chat__id strong { font-size: 1rem; font-weight: 600; }
.chat__status { font-size: .8rem; color: var(--ink-faint); display: inline-flex; align-items: center; gap: 6px; }
.chat__status i { width: 7px; height: 7px; border-radius: 50%; background: #2fd158; }
.chat__body { padding: 22px 18px; display: flex; flex-direction: column; gap: 12px; }
.msg { max-width: 84%; padding: 11px 15px; font-size: .92rem; line-height: 1.45; border-radius: 18px; text-align: left; opacity: 0; animation: msgIn .5s ease forwards; }
.msg--them { align-self: flex-start; background: var(--bg-alt); color: var(--ink); border-bottom-left-radius: 5px; }
.msg--you { align-self: flex-end; background: var(--ink); color: #fff; border-bottom-right-radius: 5px; }
.msg:nth-child(1) { animation-delay: .25s; }
.msg:nth-child(2) { animation-delay: 1s; }
.msg:nth-child(3) { animation-delay: 1.75s; }
.msg:nth-child(4) { animation-delay: 2.5s; }
@keyframes msgIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.chat__input { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 4px 14px 16px; padding: 10px 10px 10px 16px; border: 1px solid var(--line); border-radius: var(--radius-pill); color: var(--ink-faint); font-size: .9rem; }
.chat__send { width: 30px; height: 30px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; font-size: .78rem; }

/* floating chips removed for a cleaner, product-forward look */
.float-chip { display: none; }

/* ---------- Stats ---------- */
.stats { border-top: 1px solid var(--line); background: var(--bg); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 72px 28px; }
.stat { text-align: center; }
.stat__num { display: block; font-weight: 600; font-size: clamp(2.2rem, 1.4rem + 2.4vw, 3.2rem); letter-spacing: -0.04em; color: var(--ink); }
.stat__label { color: var(--ink-soft); font-size: .95rem; margin-top: 4px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  position: relative; padding: 8px 4px;
}
.step__num { font-weight: 600; font-size: .85rem; color: var(--ink-faint); letter-spacing: .02em; }
.step__icon { font-size: 2rem; margin: 18px 0 16px; filter: grayscale(1); }
.step h3 { font-size: 1.35rem; margin-bottom: 10px; letter-spacing: -0.02em; }
.step p { color: var(--ink-soft); }

/* ---------- Features / services ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.feature {
  background: var(--bg); padding: 40px 34px;
  transition: background .25s ease;
}
.feature:hover { background: var(--bg-alt); }
.feature__icon {
  width: 48px; height: 48px; display: grid; place-items: center; font-size: 1.6rem;
  margin-bottom: 20px; filter: grayscale(1);
}
.feature h3 { font-size: 1.25rem; margin-bottom: 8px; letter-spacing: -0.02em; }
.feature p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- Who it's for ---------- */
.industries { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry {
  display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center;
  background: var(--bg-alt); border-radius: var(--radius); padding: 32px 18px;
  font-weight: 500; font-size: 1rem; color: var(--ink);
  transition: transform .25s ease, background .25s ease;
}
.industry:hover { transform: translateY(-3px); background: #ececee; }
.industry__icon { font-size: 2rem; filter: grayscale(1); }
.industries__note { text-align: center; color: var(--ink-soft); margin-top: 32px; }
.industries__note a { color: var(--accent); font-weight: 500; }

/* value badges (pricing head) */
.value-badges { list-style: none; padding: 0; margin: 28px auto 0; max-width: 760px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; }
.value-badges li { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: .94rem; color: var(--ink-soft); }

/* ---------- Why / no-tech (dark) ---------- */
.why { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.why__list { list-style: none; padding: 0; margin: 28px 0 34px; display: grid; gap: 16px; }
.why__list li { display: flex; gap: 12px; color: #d2d2d7; }
.why__compare { display: grid; gap: 16px; }
.compare-card { background: var(--bg-dark-2); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: 28px 30px; }
.compare-card h4 { font-size: 1.15rem; color: #fff; margin-bottom: 18px; letter-spacing: -0.02em; }
.compare-card ul { list-style: none; padding: 0; display: grid; gap: 13px; }
.compare-card li { display: flex; align-items: center; gap: 12px; color: #d2d2d7; font-size: .98rem; }
.compare-card li::before { content: "✓"; font-weight: 600; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; font-size: .72rem; flex: none; }
.compare-card li.yes::before { background: rgba(41, 151, 255, .16); color: var(--accent-bright); }
.compare-card li.no::before { content: "✕"; background: rgba(255, 255, 255, .07); color: #86868b; }
.compare-card--muted { opacity: .6; }
.compare-card--muted li { color: #a1a1a6; }

/* ---------- Pricing ---------- */
.billing-toggle { display: inline-flex; gap: 4px; padding: 4px; background: var(--bg-alt); border-radius: var(--radius-pill); margin-top: 28px; }
.billing-toggle__btn { font-weight: 500; font-size: .92rem; color: var(--ink-soft); padding: 9px 22px; border-radius: var(--radius-pill); transition: background .25s ease, color .25s ease; display: inline-flex; align-items: center; gap: 8px; }
.billing-toggle__btn.is-active { background: var(--ink); color: #fff; }
.billing-toggle .save { font-size: .72rem; opacity: .8; }
.billing-toggle__btn.is-active .save { opacity: .7; }

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 32px; position: relative;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.plan:hover { box-shadow: var(--shadow-md); }
.plan--featured { border: 2px solid var(--ink); }
.plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; font-weight: 500; font-size: .76rem; letter-spacing: .02em; padding: 5px 16px; border-radius: var(--radius-pill); }
.plan__name { font-size: 1.4rem; letter-spacing: -0.02em; }
.plan__for { color: var(--ink-faint); font-size: .95rem; margin-top: 6px; min-height: 44px; }
.plan__price { display: flex; align-items: baseline; gap: 2px; margin: 16px 0 4px; }
.plan__domain { color: var(--ink-faint); font-size: .88rem; margin: 0 0 24px; }
.plan__currency { font-weight: 500; font-size: 1.4rem; color: var(--ink-soft); }
.plan__amount { font-weight: 600; font-size: 3.2rem; letter-spacing: -0.04em; }
.plan__per { color: var(--ink-faint); font-weight: 400; }
.plan__cta { width: 100%; margin-bottom: 26px; }
.plan__list { list-style: none; padding: 0; display: grid; gap: 14px; }
.plan__list li { display: flex; gap: 11px; color: var(--ink-soft); font-size: .96rem; }
.pricing__note { text-align: center; color: var(--ink-faint); font-size: .92rem; margin-top: 32px; max-width: 760px; margin-inline: auto; }
.pricing__note a { color: var(--accent); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 34px 30px; display: flex; flex-direction: column; gap: 24px; }
.quote blockquote { font-size: 1.15rem; color: var(--ink); line-height: 1.5; letter-spacing: -0.01em; }
.quote figcaption { display: flex; align-items: center; gap: 13px; font-size: .9rem; color: var(--ink-soft); }
.avatar { width: 44px; height: 44px; flex: none; border-radius: 50%; display: grid; place-items: center; font-weight: 600; color: #fff; background: var(--ink); font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; font-weight: 500; font-size: 1.15rem; letter-spacing: -0.01em; padding: 26px 4px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.6rem; font-weight: 300; color: var(--ink-faint); transition: transform .3s ease; flex: none; line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--ink-soft); padding: 0 4px 26px; max-width: 68ch; }

/* ---------- Closing CTA (centered, no form) ---------- */
.cta__inner { max-width: 720px; margin-inline: auto; text-align: center; }
.cta__points { list-style: none; padding: 0; margin: 30px 0 36px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; }
.cta__points li { display: inline-flex; align-items: center; gap: 10px; color: #d2d2d7; font-size: .96rem; }

/* ---------- Request page (start.html) ---------- */
.request { padding: 140px 0 110px; }
.request__head { max-width: 660px; margin: 0 auto 44px; text-align: center; }
.request__head .section__title { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); }
.request-form { max-width: 640px; margin-inline: auto; display: grid; gap: 22px; }
.request-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { display: grid; gap: 8px; }
.field label { font-size: .9rem; font-weight: 500; color: var(--ink); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-strong);
  border-radius: 12px; padding: 13px 15px; transition: border-color .2s ease;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); }

/* plan picker (segmented control) */
.plan-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.plan-picker input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.plan-picker label {
  display: flex; flex-direction: column; align-items: center; gap: 3px; text-align: center;
  border: 1px solid var(--line-strong); border-radius: 14px; padding: 16px 10px; cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.plan-picker .pp-name { font-weight: 600; }
.plan-picker .pp-price { color: var(--ink-soft); font-size: .9rem; }
.plan-picker .pp-domain { color: var(--ink-faint); font-size: .76rem; }
.plan-picker input:checked + label { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); background: var(--bg-alt); }
.plan-picker input:focus-visible + label { outline: 2px solid var(--accent); outline-offset: 2px; }

.form-note { font-size: .96rem; min-height: 1.2em; text-align: center; }
.form-note.is-success { color: #1c8a3b; font-weight: 500; }
.form-note.is-error { color: #c0392b; font-weight: 500; }
.request__back { display: inline-flex; align-items: center; gap: 6px; justify-self: center; color: var(--ink-soft); font-size: .95rem; }
.request__back:hover { color: var(--ink); }

/* ---------- Legal pages (privacy / terms) ---------- */
.legal { padding: 130px 0 100px; }
.legal__doc { max-width: 760px; margin-inline: auto; }
.legal__doc h1 { font-size: clamp(1.9rem, 1.4rem + 2vw, 2.7rem); }
.legal__updated { color: var(--ink-faint); font-size: .95rem; margin: 12px 0 28px; }
.legal__doc h2 { font-size: 1.35rem; letter-spacing: -0.02em; margin: 42px 0 12px; }
.legal__doc h3 { font-size: 1.08rem; letter-spacing: -0.01em; margin: 22px 0 8px; }
.legal__doc p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 14px; }
.legal__doc ul { margin: 0 0 16px; padding-left: 1.25em; display: grid; gap: 8px; }
.legal__doc li { color: var(--ink-soft); line-height: 1.6; }
.legal__doc a { color: var(--accent); }
.legal__doc strong { color: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-dark); color: #86868b; padding: 72px 0 32px; border-top: 1px solid var(--line-dark); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 56px; }
.footer__brand .brand { color: #fff; }
.footer__tag { margin-top: 16px; max-width: 34ch; color: #86868b; font-size: .95rem; }
.footer__email { display: inline-block; margin-top: 14px; color: #d2d2d7; font-size: .95rem; }
.footer__email:hover { color: #fff; }
.footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.footer__col { display: grid; gap: 12px; align-content: start; }
.footer__col h4 { color: #f5f5f7; font-size: .9rem; font-weight: 500; margin-bottom: 4px; }
.footer__col a { color: #86868b; font-size: .92rem; transition: color .18s ease; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line-dark); font-size: .85rem; color: #6e6e73; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a:hover { color: #fff; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2, .6, .2, 1), transform .7s cubic-bezier(.2, .6, .2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .why { grid-template-columns: 1fr; gap: 44px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 60px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(255, 255, 255, .98); backdrop-filter: blur(20px);
    padding: 14px 28px 22px; border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__link { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav__cta { margin-top: 12px; text-align: center; }
  .nav-toggle { display: flex; }

  .section { padding: 88px 0; }
  .section__head { margin-bottom: 52px; }
  .steps, .features, .pricing, .quotes { grid-template-columns: 1fr; }
  .features { gap: 1px; }
  .stats__grid, .industries { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
  .stats__grid { padding: 56px 28px; }
  .request-form .row { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  body { font-size: 16px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; }
}

/* ---------- 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; }
  .reveal { opacity: 1; transform: none; }
  .msg { opacity: 1; }
}
