/* ============================================================
   Built on the Side, "The Operator's Manual"
   Warm paper · ink · burnt-clay accent · blueprint texture
   ============================================================ */

:root {
  --paper:      #f4efe6;
  --paper-2:    #efe8db;
  --ink:        #1c1b19;
  --ink-soft:   #4a463f;
  --ink-faint:  #8a8478;
  --line:       #d9d0bf;
  --clay:       #c24e2c;
  --clay-deep:  #a23d20;
  --clay-soft:  #e8c3ad;
  --pine:       #2f4538;
  --paper-edge: rgba(28, 27, 25, 0.08);

  --maxw: 1180px;
  --gutter: clamp(1.25rem, 4vw, 4rem);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --shadow-card: 0 1px 0 rgba(255,255,255,0.5) inset, 0 18px 40px -24px rgba(28,27,25,0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---------- textures: blueprint grid + grain ---------- */
.texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--paper-edge) 1px, transparent 1px),
    linear-gradient(90deg, var(--paper-edge) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 90% at 70% 0%, #000 0%, transparent 75%);
          mask-image: radial-gradient(120% 90% at 70% 0%, #000 0%, transparent 75%);
  opacity: 0.6;
}
.texture::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, .site-header, .site-footer { position: relative; z-index: 1; }

/* ---------- shared ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.btn {
  --bg: var(--ink);
  --fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 0.95em 1.4em;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn__arrow { transition: transform 0.3s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; }

.btn--primary { --bg: var(--clay); --fg: #fff; border-color: var(--clay-deep); box-shadow: 0 14px 28px -16px var(--clay-deep); }
.btn--primary:hover { --bg: var(--clay-deep); }
.btn--ghost { --bg: transparent; --fg: var(--ink); }
.btn--ghost:hover { --bg: var(--ink); --fg: var(--paper); }
.btn--invert { --bg: var(--paper); --fg: var(--ink); border-color: var(--paper); }
.btn--invert:hover { --bg: var(--clay); --fg: #fff; border-color: var(--clay); }

.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 0.9rem;
}
.kicker--invert { color: var(--clay-soft); }

.section { padding: clamp(3.5rem, 8vw, 7rem) var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.section__head { max-width: 46ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__title {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section__lede, .section__head .section__lede { margin-top: 1rem; color: var(--ink-soft); font-size: 1.08rem; max-width: 50ch; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--gutter);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.wordmark { display: inline-flex; align-items: center; gap: 0.55rem; text-decoration: none; color: var(--ink); }
.wordmark__mark { color: var(--clay); font-size: 1.1rem; line-height: 1; transform: translateY(1px); }
.wordmark__text { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; letter-spacing: -0.01em; }
.header-nav { display: inline-flex; align-items: center; gap: clamp(0.75rem, 2vw, 1.5rem); }
.header-link { font-weight: 600; font-size: 0.92rem; color: var(--ink-soft); text-decoration: none; }
.header-link:hover { color: var(--clay-deep); }
.header-cta { padding: 0.6em 1em; font-size: 0.9rem; }

/* ============================================================
   Hero
   ============================================================ */
.hero { max-width: var(--maxw); margin: 0 auto; padding: clamp(1.5rem, 3.5vw, 3rem) var(--gutter) clamp(2rem, 5vw, 3.5rem); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow { margin-bottom: 1rem; }
.eyebrow__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.45em 0.85em;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 540;
  font-size: clamp(2.25rem, 5.1vw, 3.9rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.hero__headline .line { display: block; }
.hero__headline .line--quiet { color: var(--ink-soft); font-style: italic; font-weight: 420; font-size: 0.62em; margin-top: 0.35em; letter-spacing: -0.02em; }

.num { font-variant-numeric: lining-nums; position: relative; }
.num--old s { color: var(--ink-faint); text-decoration-thickness: 3px; text-decoration-color: var(--clay); }
.num--new { color: var(--clay); padding: 0 0.06em; }
.num__pulse {
  position: absolute; left: 50%; top: 50%;
  width: 1.7em; height: 1.7em;
  transform: translate(-50%, -50%);
  border: 2px solid var(--clay);
  border-radius: 50%;
  opacity: 0;
  animation: pulse 3.2s var(--ease) 1.4s infinite;
}
@keyframes pulse {
  0%   { opacity: 0.5; transform: translate(-50%,-50%) scale(0.5); }
  70%  { opacity: 0; transform: translate(-50%,-50%) scale(1.3); }
  100% { opacity: 0; }
}

.hero__sub { margin-top: 1.05rem; font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: var(--ink-soft); max-width: 42ch; }
.hero__sub strong { color: var(--ink); }

/* capture form */
.capture { margin-top: 1.2rem; }
.capture__label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 0.6rem; }
.capture__row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.capture__input {
  flex: 1 1 240px;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  padding: 0.95em 1.1em;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.capture__input::placeholder { color: var(--ink-faint); }
.capture__input:focus-visible { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px var(--clay-soft); }
.capture__input[aria-invalid="true"] { border-color: var(--clay-deep); box-shadow: 0 0 0 3px rgba(194,78,44,0.18); }
.capture__help { margin-top: 0.7rem; font-size: 0.84rem; color: var(--ink-faint); font-family: var(--font-mono); letter-spacing: 0.01em; }
.capture__msg { margin-top: 0.7rem; font-size: 0.92rem; font-weight: 600; min-height: 1.2em; }
.capture__msg[data-state="error"] { color: var(--clay-deep); }
.capture__msg[data-state="success"] { color: var(--pine); }

/* receipt card */
.hero__receipt { align-self: stretch; }
.receipt {
  background: linear-gradient(180deg, #fffdf8, var(--paper-2));
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  padding: 1.4rem 1.5rem 1.2rem;
  position: relative;
  transform: rotate(0.7deg);
}
.receipt::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 4px;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(28,27,25,0.03) 30px, rgba(28,27,25,0.03) 31px);
}
.receipt__head { display: flex; align-items: center; gap: 0.55rem; padding-bottom: 0.9rem; border-bottom: 1.5px dashed var(--line); }
.receipt__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 4px var(--clay-soft); }
.receipt__title { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em; color: var(--ink-soft); }
.receipt__rows { padding: 0.4rem 0 0.2rem; }
.receipt__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.62rem 0; border-bottom: 1px dotted var(--line); }
.receipt__row dt { font-size: 0.9rem; color: var(--ink-soft); }
.receipt__row dd { font-family: var(--font-mono); font-weight: 600; font-size: 1rem; color: var(--ink); }
.receipt__row dd.strike { text-decoration: line-through; color: var(--ink-faint); }
.receipt__row dd.hot { color: var(--clay); font-size: 1.25rem; }
.receipt__foot { margin-top: 0.9rem; font-size: 0.78rem; color: var(--ink-faint); font-style: italic; text-align: center; }

/* credibility strip */
.cred {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.cred__line { font-family: var(--font-display); font-size: clamp(1.15rem, 2.4vw, 1.6rem); font-weight: 420; line-height: 1.45; letter-spacing: -0.01em; max-width: 60ch; }
.cred__line strong { font-weight: 600; }
.cred__line em { color: var(--clay-deep); font-style: italic; }

/* ============================================================
   What you get
   ============================================================ */
.get__grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; counter-reset: none; }
.get__card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.6rem 1.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.get__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--clay-soft); }
.get__no { font-family: var(--font-mono); font-size: 0.85rem; color: var(--clay); letter-spacing: 0.1em; }
.get__card h3 { font-family: var(--font-display); font-weight: 560; font-size: 1.3rem; margin: 0.6rem 0 0.5rem; letter-spacing: -0.01em; }
.get__card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ============================================================
   System
   ============================================================ */
.system { border-top: 1px solid var(--line); }
.system__list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.2rem 2.5rem; }
.system__list li { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.system__idx {
  flex: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  width: 2rem; height: 2rem;
  display: grid; place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
}
.system__list h4 { font-family: var(--font-display); font-weight: 560; font-size: 1.15rem; letter-spacing: -0.01em; }
.system__list p { color: var(--ink-soft); font-size: 0.94rem; margin-top: 0.15rem; }

/* ============================================================
   Founding CTA
   ============================================================ */
.founding { max-width: none; padding: 0; margin: 0; }
.founding__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--ink);
  color: var(--paper);
  border-radius: 6px;
  padding: clamp(2.6rem, 6vw, 4.5rem) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* mismatch the max-width inner with page gutters */
.founding { padding: 0 var(--gutter); }
.founding__inner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 90% -10%, rgba(194,78,44,0.35), transparent 60%),
    radial-gradient(50% 60% at 0% 120%, rgba(194,78,44,0.18), transparent 60%);
  pointer-events: none;
}
.founding__inner > * { position: relative; }
.founding__title { font-family: var(--font-display); font-weight: 560; font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.02em; }
.founding__copy { margin: 1rem auto 1.8rem; max-width: 46ch; color: #e7ddcd; font-size: 1.1rem; }
.founding__copy strong { color: #fff; }
.price { font-family: var(--font-mono); color: var(--clay-soft); }
.founding__fine { margin-top: 1.2rem; font-size: 0.82rem; color: #b3a994; font-family: var(--font-mono); }

/* ============================================================
   Proof
   ============================================================ */
.proof { border-top: 1px solid var(--line); }
.proof__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.proof__photo-ph {
  aspect-ratio: 4 / 5;
  border: 1.5px dashed var(--ink-faint);
  border-radius: 4px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.4rem;
  background:
    repeating-linear-gradient(135deg, var(--paper-2), var(--paper-2) 14px, var(--paper) 14px, var(--paper) 28px);
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.proof__photo-ph small { color: var(--ink-faint); font-size: 0.72rem; }
.proof__photo-img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;            /* natural aspect ratio, no stretch/crop */
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.proof__copy p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.05rem; }
.proof__copy strong { color: var(--ink); }
.proof__pull {
  margin-top: 1.6rem;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--clay);
  background: var(--paper-2);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--ink);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { border-top: 1px solid var(--line); }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  letter-spacing: -0.01em;
  padding: 1.25rem 2.5rem 1.25rem 0;
  position: relative;
  transition: color 0.2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--clay);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item summary:hover { color: var(--clay-deep); }
.faq__item summary:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; }
.faq__item p { color: var(--ink-soft); font-size: 1.02rem; padding: 0 2.5rem 1.4rem 0; max-width: 62ch; }
.faq__item strong { color: var(--ink); }

/* ============================================================
   Final capture
   ============================================================ */
.capture-final { text-align: center; border-top: 1px solid var(--line); }
.capture-final__inner { max-width: 36rem; margin: 0 auto; }
.capture-final__title { font-family: var(--font-display); font-weight: 560; font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.02em; }
.capture-final__sub { margin: 0.9rem 0 1.8rem; color: var(--ink-soft); font-size: 1.1rem; }
.capture--big .capture__row { justify-content: center; }
.capture--big .capture__help, .capture--big .capture__msg { text-align: center; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); padding: clamp(2.5rem, 5vw, 4rem) var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.site-footer__top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.wordmark--footer .wordmark__text { font-size: 1.2rem; }
.site-footer__social { display: flex; gap: 1.2rem; }
.site-footer__social a { color: var(--ink-soft); text-decoration: none; font-size: 0.92rem; border-bottom: 1px solid transparent; transition: border-color 0.2s, color 0.2s; }
.site-footer__social a:hover { color: var(--clay-deep); border-color: var(--clay); }
.site-footer__tagline { margin-top: 1.5rem; font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: var(--ink-soft); max-width: 44ch; }
.site-footer__fine { margin-top: 1.2rem; font-size: 0.78rem; color: var(--ink-faint); font-family: var(--font-mono); }

/* ============================================================
   Footer legal links + cookie consent
   ============================================================ */
.site-footer__legal { margin-top: 1rem; display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.site-footer__legal a, .linkbtn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.site-footer__legal a:hover, .linkbtn:hover { color: var(--clay-deep); border-color: var(--clay); }

.consent {
  position: fixed;
  left: 50%;
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  transform: translateX(-50%);
  z-index: 100;
  width: min(680px, calc(100vw - 1.5rem));
  background: var(--ink);
  color: var(--paper);
  border: 1px solid #2c2a27;
  border-radius: 8px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.55);
  animation: consent-in 0.5s var(--ease) both;
}
.consent[hidden] { display: none; }
@keyframes consent-in { from { opacity: 0; transform: translateX(-50%) translateY(12px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.consent__inner { display: flex; align-items: center; gap: 1.2rem; padding: 1rem 1.2rem; flex-wrap: wrap; }
.consent__text { font-size: 0.88rem; line-height: 1.45; color: #e7ddcd; flex: 1 1 280px; }
.consent__text a { color: #fff; text-decoration: underline; text-decoration-color: var(--clay); }
.consent__actions { display: flex; gap: 0.6rem; flex: 0 0 auto; }
.consent__btn { padding: 0.6em 1em; font-size: 0.9rem; }
.consent .btn--ghost { --fg: var(--paper); border-color: #4a463f; }
.consent .btn--ghost:hover { --bg: #2c2a27; --fg: #fff; border-color: #2c2a27; }
@media (max-width: 520px) {
  .consent__actions { width: 100%; }
  .consent__btn { flex: 1; justify-content: center; }
}

/* ============================================================
   Legal / policy pages
   ============================================================ */
.legal { max-width: 760px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 5rem) var(--gutter); }
.legal__back { display: inline-block; font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; color: var(--clay-deep); text-decoration: none; margin-bottom: 1.5rem; }
.legal__back:hover { text-decoration: underline; }
.legal h1 { font-family: var(--font-display); font-weight: 560; font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.02em; }
.legal__meta { font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-faint); margin: 0.6rem 0 2rem; }
.legal__note { background: var(--paper-2); border: 1px solid var(--line); border-left: 3px solid var(--clay); border-radius: 4px; padding: 1rem 1.2rem; font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 2.5rem; }
.legal h2 { font-family: var(--font-display); font-weight: 560; font-size: 1.4rem; letter-spacing: -0.01em; margin: 2.2rem 0 0.6rem; }
.legal p, .legal li { color: var(--ink-soft); font-size: 1rem; line-height: 1.65; }
.legal p { margin-top: 0.7rem; }
.legal ul { margin: 0.7rem 0 0 1.1rem; }
.legal li { margin-bottom: 0.4rem; }
.legal a { color: var(--clay-deep); }
.legal strong { color: var(--ink); }

/* ============================================================
   Reveal animation (load-in stagger)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); animation: reveal 0.8s var(--ease) forwards; animation-delay: calc(var(--d, 0) * 110ms + 80ms); }
@keyframes reveal { to { opacity: 1; transform: none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  /* copy + primary CTA first on mobile (90% of traffic); receipt card follows */
  .hero__receipt { max-width: 24rem; margin-top: 0.5rem; }
  .receipt { transform: none; }
  .get__grid { grid-template-columns: 1fr; }
  .system__list { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: 1fr; }
  .proof__photo { max-width: 18rem; }
}

@media (max-width: 560px) {
  .header-cta { display: none; }
  .capture__row { flex-direction: column; }
  /* in column flex, flex-basis maps to the main (vertical) axis, reset so the
     input keeps its content height instead of stretching to 240px */
  .capture__input { flex: 0 0 auto; }
  .capture__input, .capture .btn { width: 100%; }
  .capture .btn { justify-content: center; }
  .hero__headline .line--quiet { font-size: 0.7em; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; animation: none; }
  .num__pulse { animation: none; display: none; }
  .btn, .get__card { transition: none; }
}
