/* Really Guy Labs — single site stylesheet. ALL styling lives here; no
   inline styles anywhere (see CLAUDE.md). Tokens come from the brand guide
   (_copy/really-guy-labs-brand-guide.html): electric blue, ink, and air.
   One breakpoint (900px) collapses the nav — keep it in sync with main.js. */

/* ---------- fonts: self-hosted variable woff2, latin subset ---------- */
@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/space-grotesk-var-latin.woff2") format("woff2");
  font-weight: 400 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/jetbrains-mono-var-latin.woff2") format("woff2");
  font-weight: 400 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-var-latin.woff2") format("woff2");
  font-weight: 400 600; font-style: normal; font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --color-primary: #1E6BFF;        /* Electric Blue — mark, links, key CTAs */
  --color-primary-bright: #4D8BFF; /* Bright Blue — accents, hovers */
  --color-primary-deep: #0B3FB5;   /* Deep Blue — pressed, shadow */
  --color-ink: #08080C;            /* page ground */
  --color-ink-2: #0C0C13;          /* alternate band */
  --color-graphite: #14141E;       /* cards / surfaces */
  --color-graphite-2: #1A1A26;
  --color-line: #24242F;
  --color-line-soft: #1C1C27;
  --color-white: #FFFFFF;
  --color-fog: #C7C7D6;            /* primary body text on dark */
  --color-slate: #8686A0;          /* secondary text */
  --color-slate-2: #54546A;        /* tertiary / muted */
  --color-ok: #48D597;
  --color-err: #FF6B6B;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --radius: 18px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  background: var(--color-ink); color: var(--color-white);
  font-family: var(--font-body); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--color-primary); color: #fff; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.tag-ns { display: none; }
.mono { font-family: var(--font-mono); }
.sp { font-family: var(--font-display); }
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
:focus-visible { outline: 2px solid var(--color-primary-bright); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--color-primary); color: #fff; padding: 12px 20px;
  border-radius: 0 0 10px 0; font-family: var(--font-mono); font-size: 13px;
}
.skip-link:focus { left: 0; }

/* ---------- the mark ---------- */
.rgblock {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-primary); border-radius: 24%; flex: none;
  color: #fff;
}
.rgblock svg { width: 64%; height: 64%; display: block; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-mono); font-weight: 500; font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 10px; cursor: pointer;
  border: 1px solid transparent; letter-spacing: .01em;
  transition: transform .15s, box-shadow .2s, background .2s, border-color .2s, color .2s;
}
.btn svg { width: 14px; height: 14px; flex: none; }
.btn--primary {
  background: var(--color-primary); color: #fff;
  box-shadow: 0 6px 20px rgba(30,107,255,.32);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(30,107,255,.5); }
.btn--ghost { background: transparent; border-color: var(--color-line); color: #fff; }
.btn--ghost:hover { border-color: var(--color-primary-bright); color: var(--color-primary-bright); }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

/* ---------- header / nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(14px); background: rgba(8,8,12,.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--color-line-soft); background: rgba(8,8,12,.9); }
.site-header__inner {
  max-width: var(--container); margin: 0 auto; padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: inline-flex; align-items: center; font-size: 20px; }
.brand__prompt { font-family: var(--font-mono); font-weight: 700; color: var(--color-primary-bright); margin-right: .3em; }
.brand__wm { font-family: var(--font-display); font-weight: 700; letter-spacing: -.03em; }
.brand__block { margin-left: .2em; width: .95em; height: 1.2em; }
.brand__labs { font-family: var(--font-mono); margin-left: .6em; font-size: 11px; letter-spacing: .3em; color: var(--color-primary-bright); font-weight: 700; }
.brand--sm { font-size: 18px; }

.site-nav { display: flex; align-items: center; gap: 30px; }
.nav-item { position: relative; }
.nav-top { font-size: 14px; color: var(--color-fog); transition: color .2s; }
.nav-top:hover { color: #fff; }
.nav-cta { color: #fff; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 34px; padding: 8px; gap: 5px;
  flex-direction: column; justify-content: center;
}
.nav-toggle__bar { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 80px;
}
.hero__grid { position: absolute; inset: 0; z-index: 0; opacity: .5; }
.hero__glow {
  position: absolute; top: -10%; right: -5%;
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(30,107,255,.22), rgba(30,107,255,0) 62%);
  z-index: 0; pointer-events: none; filter: blur(10px);
}
.hero__in { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 40px; width: 100%; }
.term-line {
  font-family: var(--font-mono); font-size: 15px; color: var(--color-slate);
  margin-bottom: 26px; display: inline-flex; align-items: center;
  border: 1px solid var(--color-line); background: rgba(20,20,30,.6);
  padding: 9px 16px; border-radius: 100px;
}
.term-line__p { color: var(--color-primary-bright); margin-right: .6em; }
.term-line__typed { color: var(--color-fog); }
.caret {
  display: inline-block; width: 8px; height: 1.05em; background: var(--color-primary);
  margin-left: 3px; transform: translateY(2px); animation: blink 1.05s steps(1) infinite;
}
@keyframes blink { 0%, 50% { opacity: 1 } 50.01%, 100% { opacity: 0 } }

.hero__h {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(44px, 7.2vw, 92px); line-height: 1.02;
  letter-spacing: -.03em; text-wrap: balance; margin-bottom: 26px;
}
.q { color: var(--color-primary-bright); }
.strike { color: var(--color-slate-2); text-decoration: line-through; text-decoration-color: var(--color-primary); text-decoration-thickness: 3px; }
.hero__sub { font-size: clamp(17px, 2vw, 21px); color: var(--color-fog); max-width: 600px; margin-bottom: 36px; line-height: 1.55; }
.hero__sub b { color: #fff; font-weight: 600; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__cta .btn { font-size: 14px; padding: 14px 24px; }
.hero__meta { margin-top: 54px; display: flex; gap: 34px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 12.5px; color: var(--color-slate); }
.hero__meta b { color: var(--color-primary-bright); font-weight: 700; }

/* ---------- section scaffold ---------- */
.section { position: relative; padding: 110px 0; }
.section--alt { background: var(--color-ink-2); border-top: 1px solid var(--color-line-soft); border-bottom: 1px solid var(--color-line-soft); }
.section--alt-top { background: var(--color-ink-2); border-top: 1px solid var(--color-line-soft); }
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--color-primary-bright);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--color-primary); }
h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 4.4vw, 46px); letter-spacing: -.02em;
  line-height: 1.06; text-wrap: balance; margin-bottom: 16px;
}
.sec-lead { color: var(--color-slate); font-size: 17px; max-width: 620px; line-height: 1.6; }
.sec-title--tight { margin-bottom: 34px; }

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- thesis strip ---------- */
.thesis {
  padding: 80px 0;
  border-top: 1px solid var(--color-line-soft); border-bottom: 1px solid var(--color-line-soft);
  background: linear-gradient(180deg, var(--color-ink), var(--color-ink-2));
}
.thesis__big {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 4vw, 44px); letter-spacing: -.02em;
  line-height: 1.25; text-wrap: balance; max-width: 900px;
  color: var(--color-slate-2);
}
.thesis__big .hl { color: #fff; }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.card {
  background: linear-gradient(180deg, var(--color-graphite), var(--color-ink-2));
  border: 1px solid var(--color-line); border-radius: var(--radius); padding: 28px;
  transition: border-color .25s, transform .25s; position: relative; overflow: hidden;
}
.card:hover { border-color: var(--color-primary-deep); transform: translateY(-3px); }
.card__ic {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(30,107,255,.12); border: 1px solid rgba(77,139,255,.28);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--color-primary-bright);
}
.card__ic svg { width: 20px; height: 20px; }
.card h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--color-slate); font-size: 14px; line-height: 1.55; }
.card__tag {
  position: absolute; top: 20px; right: 22px; font-family: var(--font-mono);
  font-size: 10px; color: var(--color-slate-2); letter-spacing: .08em;
}

/* ---------- steps ---------- */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 54px;
  border: 1px solid var(--color-line); border-radius: var(--radius); overflow: hidden;
}
.step { padding: 30px 26px; border-right: 1px solid var(--color-line); position: relative; background: var(--color-ink-2); }
.step:last-child { border-right: none; }
.step__n { font-family: var(--font-mono); font-size: 12px; color: var(--color-primary-bright); letter-spacing: .1em; margin-bottom: 16px; }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--color-slate); font-size: 13.5px; line-height: 1.5; }
.step__arrow {
  position: absolute; top: 30px; right: -9px; width: 18px; height: 18px;
  color: var(--color-slate-2); z-index: 2; background: var(--color-ink); border-radius: 50%;
}

/* ---------- featured build ---------- */
.feat {
  display: grid; grid-template-columns: 1.05fr .95fr;
  border: 1px solid var(--color-line); border-radius: 22px; overflow: hidden; margin-top: 20px;
}
.feat__left { padding: 44px 46px; display: flex; flex-direction: column; justify-content: center; background: var(--color-graphite); }
.feat__badge {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--color-primary-bright);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.feat__badge .rgblock { width: 16px; height: 16px; }
.feat h3 { font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: -.02em; margin-bottom: 12px; }
.feat p { color: var(--color-fog); font-size: 15px; line-height: 1.6; margin-bottom: 22px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-family: var(--font-mono); font-size: 11px; color: var(--color-slate); border: 1px solid var(--color-line); border-radius: 100px; padding: 6px 12px; }
.feat__right {
  background: linear-gradient(150deg, #0d1a3d, #0a0a12 70%); position: relative;
  min-height: 320px; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.mockcard {
  width: 78%; background: rgba(10,12,22,.7); border: 1px solid var(--color-line);
  border-radius: 14px; box-shadow: 0 24px 60px rgba(0,0,0,.5); overflow: hidden;
}
.mockcard__bar { display: flex; gap: 6px; padding: 11px 14px; border-bottom: 1px solid var(--color-line); }
.mockcard__bar i { width: 9px; height: 9px; border-radius: 50%; background: #33334a; display: block; }
.mockcard__body { padding: 18px; }
.mockcard__hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mockcard__lg { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.mockcard__lg span { color: var(--color-ok); }
.mockcard__pill { font-family: var(--font-mono); font-size: 9px; background: var(--color-primary); color: #fff; padding: 4px 9px; border-radius: 100px; }
.mockcard__rows { display: flex; flex-direction: column; gap: 9px; }
.mockcard__row {
  display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.03);
  border: 1px solid var(--color-line-soft); border-radius: 9px; padding: 9px 11px;
}
.mockcard__th { width: 34px; height: 24px; border-radius: 5px; background: linear-gradient(135deg, #1E6BFF, #4D8BFF); flex: none; }
.mockcard__ln { flex: 1; height: 7px; border-radius: 4px; background: #26263a; }
.mockcard__ln--s { width: 52%; flex: none; }
.mockcard__pr { font-family: var(--font-mono); font-size: 10px; color: var(--color-ok); }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about__portrait {
  position: relative; border-radius: 20px; border: 1px solid var(--color-line);
  overflow: hidden; background: radial-gradient(120% 120% at 30% 20%, #12183a, #0a0a12);
}
.about__portrait img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: 50% 22%; }
.about__tagchip {
  position: absolute; bottom: 22px; left: 22px; font-family: var(--font-mono);
  font-size: 12px; color: var(--color-fog); background: rgba(8,8,12,.7);
  border: 1px solid var(--color-line); padding: 8px 14px; border-radius: 100px;
}
.about__qfloat { position: absolute; top: 26px; right: 26px; width: 56px; height: 70px; box-shadow: 0 12px 30px rgba(30,107,255,.4); }
.about p { color: var(--color-fog); font-size: 15.5px; line-height: 1.7; margin-bottom: 16px; }
.about p.muted { color: var(--color-slate); }
.about b { color: #fff; font-weight: 600; }
.about__sig { font-family: var(--font-mono); font-size: 13px; color: var(--color-slate); margin-top: 8px; }
.about__sig b { color: #fff; font-weight: 500; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.stat { border: 1px solid var(--color-line); border-radius: 16px; padding: 26px 28px; background: var(--color-ink-2); }
.stat__big { font-family: var(--font-display); font-weight: 700; font-size: 34px; letter-spacing: -.02em; color: #fff; }
.stat__lbl { color: var(--color-slate); font-size: 13.5px; margin-top: 6px; }

/* ---------- contact ---------- */
.contact {
  border-top: 1px solid var(--color-line-soft);
  background: radial-gradient(90% 120% at 80% 0%, rgba(30,107,255,.1), rgba(30,107,255,0) 55%);
}
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.contact__lead { color: var(--color-fog); font-size: 16px; line-height: 1.65; margin-bottom: 24px; }
.assur { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.assur__a { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--color-fog); }
.assur__a svg { flex: none; margin-top: 3px; width: 17px; height: 17px; color: var(--color-primary-bright); }

.terminal { background: #0a0a11; border: 1px solid var(--color-line); border-radius: 16px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.terminal__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--color-line); background: var(--color-graphite); }
.terminal__bar i { width: 11px; height: 11px; border-radius: 50%; background: #2b2b3d; display: block; }
.terminal__ttl { margin-left: 10px; font-family: var(--font-mono); font-size: 12px; color: var(--color-slate); }
.terminal form { padding: 26px 28px 30px; }

.fld { margin-bottom: 20px; }
.fld label { display: block; font-family: var(--font-mono); font-size: 12px; color: var(--color-primary-bright); margin-bottom: 8px; letter-spacing: .02em; }
.fld .req { color: var(--color-slate-2); }
.fld input, .fld textarea {
  width: 100%; background: var(--color-ink); border: 1px solid var(--color-line);
  border-radius: 10px; padding: 13px 15px; color: #fff;
  font-family: var(--font-body); font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}
.fld input::placeholder, .fld textarea::placeholder { color: var(--color-slate-2); }
.fld input:focus, .fld textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(30,107,255,.18); }
.fld textarea { resize: vertical; min-height: 112px; line-height: 1.55; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit { width: 100%; justify-content: center; font-size: 14px; padding: 15px; margin-top: 4px; }
.formnote { font-family: var(--font-mono); font-size: 11.5px; color: var(--color-slate-2); margin-top: 14px; text-align: center; }
.form-turnstile { margin-bottom: 18px; }
.form-error {
  display: none; font-family: var(--font-mono); font-size: 12.5px; line-height: 1.5;
  color: var(--color-err); border: 1px solid rgba(255,107,107,.35);
  background: rgba(255,107,107,.08); border-radius: 10px; padding: 11px 14px; margin-bottom: 18px;
}
.form-error.is-shown { display: block; }
.success { display: none; padding: 40px 28px; text-align: center; font-family: var(--font-mono); }
.success.is-shown { display: block; }
.success .rgblock { width: 44px; height: 44px; margin: 0 auto 20px; }
.success__ok { color: var(--color-ok); font-size: 15px; margin-bottom: 10px; }
.success__sub { color: var(--color-slate); font-size: 13px; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--color-line-soft); padding: 50px 0 46px; }
.site-footer__row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.site-footer__links { display: flex; gap: 24px; font-size: 13px; color: var(--color-slate); flex-wrap: wrap; }
.site-footer__links a:hover { color: #fff; }
.site-footer__legal { font-family: var(--font-mono); font-size: 12.5px; color: var(--color-slate-2); }
.site-footer__contact { max-width: var(--container); margin: 18px auto 0; padding: 0 40px; font-family: var(--font-mono); font-size: 12.5px; color: var(--color-slate); }

/* ---------- prose (privacy policy, 404) ---------- */
.prose { padding: 150px 0 110px; }
.prose__inner { max-width: 760px; }
.prose h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 5vw, 52px); letter-spacing: -.02em; line-height: 1.06; margin-bottom: 28px; }
.prose h2 { font-size: clamp(22px, 3vw, 28px); margin-top: 40px; margin-bottom: 12px; }
.prose h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin-top: 28px; margin-bottom: 8px; }
.prose p, .prose li { color: var(--color-fog); font-size: 16px; line-height: 1.7; }
.prose p, .prose ul, .prose ol { margin-bottom: 16px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--color-primary-bright); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: #fff; }
.prose .btn { text-decoration: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--color-ink); border-top: 1px solid var(--color-line-soft);
    border-bottom: 1px solid var(--color-line-soft); padding: 8px 0 18px;
  }
  .site-nav.is-open { display: flex; }
  .nav-top { display: block; padding: 14px 40px; font-size: 15px; }
  .nav-cta { margin: 10px 40px 0; justify-content: center; }
}
@media (max-width: 860px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--color-line); }
  .step__arrow { display: none; }
  .feat { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 32px; }
  .about__portrait { max-width: 360px; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .frow { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--color-line); }
  .step:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  .wrap, .site-header__inner, .hero__in, .site-footer__contact { padding-left: 22px; padding-right: 22px; }
  .section, .thesis { padding: 80px 0; }
  .feat__left { padding: 32px 26px; }
  .terminal form { padding: 22px 20px 26px; }
  .site-footer__row { flex-direction: column; align-items: flex-start; }
  .nav-top { padding-left: 22px; padding-right: 22px; }
  .nav-cta { margin-left: 22px; margin-right: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
