/* ==========================================================================
   eMarkss HUB — shared stylesheet (go.emarkss.com)
   Mobile-first, dependency-light, no build step. One file for every page.
   Design language: restrained, modern, high-contrast, generous whitespace.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* Brand */
  --ink:        #0d1b2a;   /* near-black navy for text */
  --ink-soft:   #38495a;   /* secondary text */
  --ink-faint:  #6a7886;   /* captions, meta */
  --line:       #e4e8ee;   /* hairline borders */
  --line-soft:  #eef1f5;
  --bg:         #ffffff;
  --bg-alt:     #f7f9fc;   /* tinted section background */
  --bg-ink:     #0d1b2a;   /* dark section */
  --brand:      #1f6feb;   /* primary blue */
  --brand-dark: #1858c2;
  --brand-ink:  #0a3b8c;
  --accent:     #0fb27a;   /* success / "live" green */
  --accent-dark:#0a8f61;
  --warn-bg:    #fff7e6;   /* draft / notice banner */
  --warn-line:  #f0d9a8;
  --warn-ink:   #6b4e16;

  /* Type */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
          Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
          "Liberation Mono", monospace;

  /* Geometry */
  --radius:    14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --maxw:      1080px;
  --maxw-prose: 760px;

  /* Depth */
  --shadow-sm: 0 1px 2px rgba(13,27,42,.06), 0 1px 1px rgba(13,27,42,.04);
  --shadow:    0 6px 24px rgba(13,27,42,.08), 0 2px 6px rgba(13,27,42,.05);
  --shadow-lg: 0 18px 50px rgba(13,27,42,.14);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink:       #eef2f7;
    --ink-soft:  #b8c2cf;
    --ink-faint: #8b97a5;
    --line:      #243042;
    --line-soft: #1b2536;
    --bg:        #0b1320;
    --bg-alt:    #0f1a2b;
    --bg-ink:    #060c16;
    --brand:     #4f93ff;
    --brand-dark:#3d82f0;
    --warn-bg:   #2a2310;
    --warn-line: #4d4220;
    --warn-ink:  #e7cf93;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --shadow:    0 6px 24px rgba(0,0,0,.45);
    --shadow-lg: 0 18px 50px rgba(0,0,0,.55);
  }
}

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px; /* clears sticky header on anchor jumps */
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(16px, 1rem + .1vw, 17px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }

a {
  color: var(--brand);
  text-decoration: none;
  text-underline-offset: 3px;
}
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  line-height: 1.18;
  letter-spacing: -.018em;
  color: var(--ink);
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 1.4rem + 3vw, 3.1rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2.15rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + .5vw, 1.35rem); }
p  { margin: 0 0 1rem; }

ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin: .3rem 0; }

code, kbd {
  font-family: var(--mono);
  font-size: .9em;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .1em .4em;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand) 55%, transparent);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: 8px;
  transition: top .15s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---- Layout primitives -------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 32px);
}
.prose { max-width: var(--maxw-prose); }

.section { padding-block: clamp(48px, 7vw, 88px); }
.section--tight { padding-block: clamp(36px, 5vw, 60px); }
.section--alt { background: var(--bg-alt); }
.section--ink {
  background:
    radial-gradient(120% 140% at 10% 0%, #15355e 0%, transparent 55%),
    radial-gradient(120% 140% at 100% 100%, #0b2a52 0%, transparent 50%),
    var(--bg-ink);
  color: #dfe8f4;
}
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--ink a { color: #9ec2ff; }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .85rem;
}
.section--ink .eyebrow { color: #7fb0ff; }

.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; }
.lead {
  font-size: clamp(1.05rem, 1rem + .4vw, 1.22rem);
  color: var(--ink-soft);
  line-height: 1.6;
}

.grid { display: grid; gap: clamp(16px, 2.4vw, 26px); }
@media (min-width: 620px)  { .grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px)  { .grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 860px)  { .grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  --_bg: var(--brand);
  --_fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font: inherit;
  font-weight: 650;
  line-height: 1;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--_bg);
  color: var(--_fg);
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s var(--ease), box-shadow .15s var(--ease),
              background .15s var(--ease), border-color .15s var(--ease);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--primary { --_bg: var(--brand); }
.btn--primary:hover { --_bg: var(--brand-dark); }
.btn--accent { --_bg: var(--accent); }
.btn--accent:hover { --_bg: var(--accent-dark); }
.btn--ghost {
  --_bg: transparent; --_fg: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.btn--ghost:hover { --_bg: var(--bg-alt); border-color: var(--ink-faint); }
.btn--on-ink {
  --_bg: #ffffff; --_fg: var(--ink);
}
.btn--on-ink.btn--ghost {
  --_bg: transparent; --_fg: #fff; border-color: rgba(255,255,255,.35);
}
.btn--on-ink.btn--ghost:hover { --_bg: rgba(255,255,255,.08); }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---- Cards -------------------------------------------------------------- */
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 2.6vw, 28px);
  box-shadow: var(--shadow-sm);
}
.card--pad-lg { padding: clamp(24px, 3vw, 36px); }
.section--alt .card { background: var(--bg); }

.icon-badge {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  color: var(--brand);
  margin-bottom: 14px;
  font-size: 1.25rem;
}
.icon-badge--green {
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent-dark);
}

/* ---- Header / nav ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: 1.18rem;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-ink));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: .95rem;
  box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; gap: clamp(12px, 2vw, 26px); }
.nav a {
  color: var(--ink-soft);
  font-weight: 550;
  font-size: .95rem;
}
.nav a:hover { color: var(--ink); text-decoration: none; }
.nav__links { display: none; gap: clamp(12px, 2vw, 26px); }
@media (min-width: 760px) { .nav__links { display: flex; align-items: center; } }

/* ---- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(52px, 8vw, 104px);
  background:
    radial-gradient(80% 120% at 85% -10%, color-mix(in srgb, var(--brand) 12%, transparent), transparent 60%),
    linear-gradient(180deg, var(--bg-alt), var(--bg));
}
.hero__grid {
  display: grid;
  gap: clamp(30px, 5vw, 56px);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
}
.hero h1 { margin-bottom: .55rem; }
.hero .lead { margin-bottom: 1.6rem; max-width: 36ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.1rem; }
.hero__fineprint {
  font-size: .9rem;
  color: var(--ink-faint);
  display: flex; flex-wrap: wrap; gap: .35rem 1.1rem;
}
.hero__fineprint span { display: inline-flex; align-items: center; gap: .4rem; }

/* Before/after demo visual (pure CSS browser mock) */
.mock {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mock__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.mock__dot { width: 11px; height: 11px; border-radius: 50%; background: #d6dce4; }
.mock__url {
  margin-left: 8px;
  font-family: var(--mono);
  font-size: .76rem;
  color: var(--ink-faint);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .25rem .7rem;
  flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock__body { display: grid; grid-template-columns: 1fr 1fr; }
.mock__pane { padding: 18px; }
.mock__pane--old { background: #f3f0ec; color: #7c756c; }
.mock__pane--new {
  background: linear-gradient(160deg, #ffffff, #f3f8ff);
  border-left: 1px solid var(--line);
}
.mock__tag {
  font-size: .64rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .5rem; border-radius: 999px;
  display: inline-block; margin-bottom: 12px;
}
.mock__tag--old { background: #e3ddd4; color: #8a8073; }
.mock__tag--new { background: color-mix(in srgb, var(--accent) 18%, #fff); color: var(--accent-dark); }
.mock .line { height: 9px; border-radius: 5px; background: currentColor; opacity: .16; margin: 8px 0; }
.mock .line.s  { width: 55%; }
.mock .line.m  { width: 78%; }
.mock .line.l  { width: 92%; }
.mock__pane--old .blk { height: 38px; background: #ddd5ca; border-radius: 6px; margin-bottom: 10px; }
.mock__pane--new .hero-img {
  height: 42px; border-radius: 8px; margin-bottom: 12px;
  background: linear-gradient(120deg, var(--brand), var(--accent));
  opacity: .9;
}
.mock__pane--new .pill {
  display: inline-block; height: 14px; width: 64px; border-radius: 999px;
  background: var(--brand); opacity: .85; margin-top: 6px;
}

/* ---- Logo / proof strip ------------------------------------------------- */
.proof {
  display: flex; flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
  justify-content: center;
}
.chip {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .85rem;
}

/* ---- Steps -------------------------------------------------------------- */
.steps { counter-reset: step; }
.step__num {
  width: 34px; height: 34px; flex: none;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: .95rem;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--ink-soft); margin-bottom: 0; }

/* ---- Pricing ------------------------------------------------------------ */
.region-switch {
  display: inline-flex;
  padding: 4px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin: 0 auto 30px;
  gap: 2px;
}
.region-switch button {
  font: inherit; font-weight: 650; font-size: .92rem;
  border: 0; background: transparent; color: var(--ink-soft);
  padding: .5rem 1.1rem; border-radius: 999px; cursor: pointer;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.region-switch button[aria-pressed="true"] {
  background: var(--bg);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.price-grid { align-items: stretch; }
.plan {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
}
.plan--featured {
  border-color: color-mix(in srgb, var(--brand) 50%, var(--line));
  box-shadow: var(--shadow);
  outline: 2px solid color-mix(in srgb, var(--brand) 22%, transparent);
  outline-offset: -2px;
}
.plan__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .03em;
  padding: .35rem .85rem; border-radius: 999px;
  box-shadow: var(--shadow-sm); white-space: nowrap;
}
.plan__name { font-size: 1.05rem; font-weight: 700; margin-bottom: .2rem; }
.plan__desc { color: var(--ink-faint); font-size: .92rem; margin-bottom: 1.1rem; }
.plan__price { display: flex; align-items: baseline; gap: .35rem; flex-wrap: wrap; }
.plan__price .amount { font-size: clamp(2.1rem, 1.6rem + 2vw, 2.7rem); font-weight: 800; letter-spacing: -.03em; }
.plan__price .per { color: var(--ink-faint); font-weight: 600; font-size: .98rem; }
.plan__setup { color: var(--ink-soft); font-size: .95rem; margin: .5rem 0 0; min-height: 1.4em; }
.plan__features { list-style: none; padding: 0; margin: 1.3rem 0; display: grid; gap: .6rem; }
.plan__features li { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink-soft); }
.plan__features svg { flex: none; margin-top: .28em; color: var(--accent); }
.plan__cta { margin-top: auto; }
.plan__note { font-size: .82rem; color: var(--ink-faint); margin-top: .8rem; text-align: center; }

/* ---- Chat mount --------------------------------------------------------- */
.chat-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
/* Skeleton/fallback shown until the chat widget script mounts into #emarkss-chat */
#emarkss-chat {
  min-height: 320px;
  display: flex;
}
#emarkss-chat:empty::before {
  content: "Loading assistant…";
  margin: auto;
  color: var(--ink-faint);
  font-size: .95rem;
}
.chat-fallback {
  padding: clamp(20px, 3vw, 30px);
  width: 100%;
}
.chat-fallback h3 { margin-bottom: .4rem; }
.chat-fallback p { color: var(--ink-soft); }
.chat-fallback__row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1rem; }

/* ---- FAQ / accordion ---------------------------------------------------- */
.faq-list { display: grid; gap: 12px; max-width: var(--maxw-prose); margin-inline: auto; }
details.qa {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
details.qa[open] { border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); }
details.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 650;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  color: var(--ink);
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: "+";
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--brand);
  transition: transform .2s var(--ease);
}
details.qa[open] summary::after { transform: rotate(45deg); }
details.qa .qa__body {
  padding: 0 1.2rem 1.15rem;
  color: var(--ink-soft);
}
details.qa .qa__body > :last-child { margin-bottom: 0; }

/* ---- Notice / draft banner --------------------------------------------- */
.notice {
  background: var(--warn-bg);
  border: 1px solid var(--warn-line);
  color: var(--warn-ink);
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
  font-size: .92rem;
  line-height: 1.55;
  display: flex; gap: .65rem; align-items: flex-start;
}
.notice strong { color: inherit; }
.notice__icon { flex: none; font-size: 1.05rem; line-height: 1.4; }
.notice--inline { margin: 0 0 1.6rem; }

.callout {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin: 1.4rem 0;
}
.callout > :last-child { margin-bottom: 0; }

/* ---- Legal / document pages -------------------------------------------- */
.doc { padding-block: clamp(36px, 5vw, 56px); }
.doc h2 {
  font-size: clamp(1.25rem, 1.1rem + .8vw, 1.6rem);
  margin-top: 2.4rem;
  padding-top: .4rem;
  scroll-margin-top: 90px;
}
.doc h2:first-of-type { margin-top: 1.6rem; }
.doc h3 { margin-top: 1.6rem; font-size: 1.1rem; }
.doc .doc__meta {
  color: var(--ink-faint);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-size: .94rem;
}
.doc th, .doc td {
  text-align: left;
  padding: .7rem .8rem;
  border: 1px solid var(--line);
  vertical-align: top;
}
.doc th { background: var(--bg-alt); font-weight: 650; }
.doc .token {
  font-family: var(--mono);
  font-size: .88em;
  background: color-mix(in srgb, var(--brand) 9%, var(--bg-alt));
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .08em .4em;
  color: var(--brand-ink);
  white-space: nowrap;
}
@media (prefers-color-scheme: dark) {
  .doc .token { color: #9ec2ff; }
}

.toc {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin-bottom: 2rem;
}
.toc strong { display: block; margin-bottom: .5rem; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }
.toc ol { margin: 0; padding-left: 1.2rem; columns: 2; column-gap: 2rem; }
@media (max-width: 560px) { .toc ol { columns: 1; } }
.toc li { margin: .2rem 0; }
.toc a { color: var(--ink-soft); }

/* ---- Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--bg-ink);
  color: #aab6c6;
  padding-block: clamp(40px, 5vw, 64px);
  font-size: .92rem;
}
.site-footer a { color: #cdd9ea; }
.site-footer a:hover { color: #fff; }
.footer__top {
  display: grid;
  gap: 28px;
  margin-bottom: 32px;
}
@media (min-width: 700px) {
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer__brand .brand { color: #fff; }
.footer__brand .brand__mark { box-shadow: none; }
.footer__brand p { color: #8e9bad; max-width: 34ch; margin-top: .8rem; }
.footer__col h4 {
  color: #fff;
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: .9rem; font-weight: 700;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer__legal {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  align-items: center; justify-content: space-between;
  color: #7f8da0; font-size: .85rem;
}
.footer__legal .company-block { max-width: 70ch; line-height: 1.6; }
.footer__legal .token-hint { color: #6f7e92; }

/* ---- Utilities ---------------------------------------------------------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--ink-faint); }
.small { font-size: .88rem; }
.stack > * + * { margin-top: 1rem; }
.nowrap { white-space: nowrap; }
.hide { display: none !important; }

/* Reveal-on-scroll (progressive; no-JS shows everything) */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
