/* ══════════════════════════════════════════════════════════════════════
   ALPHYI landing page
   Built from images/landing_page_mockup_v1.png (identity, section rhythm)
   and images/alphyi_concept.png (three products, shared-engine pipeline).

   Deliberately single-world: the mockups are a fixed dark editorial design
   with two light interstitial bands, so there is no theme swap — every
   surface and every colour on it is painted explicitly instead.
   ══════════════════════════════════════════════════════════════════════ */

:root {
  /* ground + raised surfaces (navy, never neutral grey) */
  --ink:        #050A18;
  --ink-2:      #091126;
  --ink-3:      #0E1833;
  --hair:       #1C2A4E;

  /* the signature gradient: cyan -> blue -> violet */
  --cyan:       #22D3EE;
  --blue:       #3B82F6;
  --violet:     #A855F7;
  --grad: linear-gradient(100deg, var(--cyan) 0%, var(--blue) 46%, var(--violet) 100%);

  /* type on dark */
  --text:       #EAF1FF;
  --muted:      #93A6CC;   /* grey biased toward the accent, not neutral */
  --faint:      #5F7199;

  /* the light interstitial bands */
  --paper:      #FFFFFF;
  --paper-2:    #F3F7FD;
  --paper-hair: #DEE7F5;
  --paper-text: #0A1633;
  --paper-mute: #5A6B8C;

  --shell: 1260px;
  --r: 16px;

  color-scheme: dark;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: Sora, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin: 0;
}

p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--cyan); color: #04121A; padding: 10px 16px; font-weight: 600;
}
.skip:focus { left: 8px; top: 8px; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 24px;
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* wide-tracked mono eyebrow — the mockup's recurring label device */
.eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0;
}
.eyebrow-dark { color: var(--blue); }

.arr { display: inline-block; transition: transform .22s ease; }
a:hover .arr { transform: translateX(4px); }

/* ── buttons ──────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 15px; font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-lg { padding: 14px 28px; font-size: 16px; }

.btn-grad {
  background: var(--grad);
  color: #04101F;
  box-shadow: 0 6px 26px -8px rgba(59, 130, 246, .8);
}
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -8px rgba(59,130,246,.95); }

.btn-ghost {
  background: rgba(255,255,255,.03);
  border-color: rgba(147, 166, 204, .45);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); border-color: var(--cyan); transform: translateY(-2px); }

/* ── nav ──────────────────────────────────────────────────────────── */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5, 10, 24, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.stuck { border-bottom-color: var(--hair); background: rgba(5,10,24,.95); }

.nav-in {
  display: flex; align-items: center; gap: 20px;
  min-height: 74px;
}

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark { height: 46px; width: auto; flex-shrink: 0; }
.brand-word {
  font-family: Sora, sans-serif; font-weight: 600;
  font-size: 23px; letter-spacing: .34em;
  padding-left: .1em;
}
.brand-tag {
  font-size: 12px; color: var(--faint);
  padding-left: 14px; margin-left: 4px;
  border-left: 1px solid var(--hair);
  line-height: 1.3; max-width: 130px;
}

.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a {
  font-size: 15px; color: var(--muted);
  padding: 6px 0; position: relative;
  transition: color .2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--grad); transition: right .25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }

.nav-cta { flex-shrink: 0; }

/* ── menu button ──────────────────────────────────────────────────── */

.nav-toggle {
  display: none;                      /* only ever shown by the query below */
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(147,166,204,.4);
  border-radius: 11px;
  cursor: pointer;
}
.nav-toggle:hover { background: rgba(255,255,255,.09); border-color: var(--cyan); }

.burger, .burger::before, .burger::after {
  width: 18px; height: 2px; border-radius: 2px;
  background: var(--text);
  transition: transform .24s ease, background .18s ease;
}
.burger { position: relative; display: block; }
.burger::before, .burger::after { content: ""; position: absolute; left: 0; }
.burger::before { transform: translateY(-6px); }
.burger::after  { transform: translateY(6px); }
/* the three bars fold into a cross once the sheet is open */
.nav.open .burger { background: transparent; }
.nav.open .burger::before { transform: rotate(45deg); }
.nav.open .burger::after  { transform: rotate(-45deg); }

/* ── hero ─────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 74% 38%, #10306B 0%, rgba(9,17,38,0) 62%),
    linear-gradient(180deg, #07102A 0%, #050A18 100%);
  border-bottom: 1px solid var(--hair);
}
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(38% 46% at 70% 44%, rgba(34,211,238,.20), transparent 70%),
    radial-gradient(34% 42% at 84% 62%, rgba(168,85,247,.22), transparent 70%);
  pointer-events: none;
}

.hero-in {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.12fr) auto;
  align-items: center;
  gap: 32px;
  padding-block: 64px 76px;
}

.hero-copy { max-width: 560px; }
.hero-copy h1 {
  font-size: clamp(38px, 5.4vw, 66px);
  margin: 18px 0 20px;
}
.lede {
  font-size: clamp(16px, 1.3vw, 18.5px);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stage { position: relative; min-width: 0; }
/* the mockup's own runner, keyed off its dark ground -- so it composites onto
   this hero rather than carrying a rectangle of someone else's background */
.hero-figure {
  display: block;
  width: 100%; max-width: 476px; height: auto;
  margin-inline: auto;
}

.hero-rail {
  display: flex; flex-direction: column; gap: 22px;
  align-self: center;
  border-left: 1px solid var(--hair);
  padding-left: 26px;
}
.rail-top {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cyan); line-height: 1.9;
}
.rail-steps {
  display: flex; flex-direction: column; gap: 9px;
  font-family: Sora, sans-serif; font-weight: 600;
  font-size: 15px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text);
  counter-reset: step;
}
.rail-steps li { color: var(--muted); }
.rail-steps li:first-child { color: var(--text); }
.rail-rule { display: block; width: 72px; height: 3px; background: var(--grad); border-radius: 2px; }

/* ── domains strip (light band) ───────────────────────────────────── */

.domains {
  background: var(--paper-2);
  color: var(--paper-text);
  padding-block: 32px 30px;
  border-bottom: 1px solid var(--paper-hair);
}
.domain-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 20px;
}
.domain-row li {
  display: flex; align-items: center; gap: 12px;
  padding-inline: 20px;
  border-left: 1px solid var(--paper-hair);
}
.domain-row li:first-child { border-left: 0; padding-left: 0; }
.domain-row svg {
  width: 30px; height: 30px; flex-shrink: 0;
  fill: none; stroke: var(--paper-text); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.domain-row span { font-size: 12.5px; line-height: 1.35; color: var(--paper-mute); }
.domain-row b {
  display: block; font-weight: 600; font-size: 13px;
  color: var(--paper-text); text-transform: uppercase; letter-spacing: .05em;
}

/* ── products ─────────────────────────────────────────────────────── */

.products { padding-block: 96px 104px; }

.sec-head { max-width: 760px; margin-bottom: 52px; }
.sec-head h2 { font-size: clamp(32px, 4vw, 50px); margin: 16px 0 20px; }
.sec-lede { color: var(--muted); font-size: 17px; max-width: 62ch; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 30px 28px 24px;
  border-radius: var(--r);
  background:
    linear-gradient(165deg, var(--accent-soft) 0%, rgba(14,24,51,0) 46%),
    var(--ink-2);
  border: 1px solid var(--hair);
  overflow: hidden;
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--accent);
}
.card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--hair));
  box-shadow: 0 22px 46px -22px var(--accent);
}

.card-kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.card h3 { font-size: 27px; letter-spacing: -.02em; }
.card-role { color: var(--muted); font-size: 14.5px; margin-top: 4px; }
/* the destination, shown because the card now leaves the site */
.card-host {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px; color: var(--faint);
  margin-top: 7px;
  transition: color .22s ease;
}
.card:hover .card-host, .card:focus-visible .card-host { color: var(--accent); }

.card-list {
  display: flex; flex-direction: column; gap: 11px;
  margin: 24px 0 26px;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
}
.card-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px; color: var(--text);
}
.card-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 11px; height: 11px; border-radius: 50%;
  border: 2px solid var(--accent);
}

.card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-top: auto;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--faint);
}
.card-foot .arr {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--accent); color: var(--accent);
  font-size: 15px;
}
.card:hover .card-foot .arr { background: var(--accent); color: var(--ink); }

/* ── shared engine ────────────────────────────────────────────────── */

.engine {
  background:
    radial-gradient(60% 70% at 78% 40%, rgba(59,130,246,.16), transparent 70%),
    var(--ink-2);
  border-block: 1px solid var(--hair);
  padding-block: 84px;
}
.engine-in {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.engine h2 { font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 14px; }

.pipeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 40px;
  counter-reset: p;
}
.pipeline li {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  padding: 22px 18px 20px;
  border-radius: 14px;
  background: var(--ink-3);
  border: 1px solid var(--hair);
}
/* the arrow encodes a real sequence: each stage consumes the last one's output */
.pipeline li:not(:last-child)::after {
  content: "";
  position: absolute; right: -11px; top: 50%;
  width: 8px; height: 8px;
  border-top: 2px solid var(--blue); border-right: 2px solid var(--blue);
  transform: translateY(-50%) rotate(45deg);
}
.pipe-i {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--blue);
  background: rgba(59,130,246,.12);
  margin-bottom: 8px;
}
.pipe-i svg {
  width: 21px; height: 21px;
  fill: none; stroke: var(--cyan); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.pipeline b { font-family: Sora, sans-serif; font-size: 17px; }
.pipe-sub { font-size: 13px; color: var(--muted); line-height: 1.45; }

.pipe-foot {
  margin-top: 22px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--faint);
}

.engine-rail { border-left: 1px solid var(--hair); padding-left: 30px; }
.engine-facts { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.engine-facts dt {
  font-family: Sora, sans-serif; font-weight: 600; font-size: 15px;
  color: var(--text); margin-bottom: 3px;
}
.engine-facts dd { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ── mission (light band) ─────────────────────────────────────────── */

.mission {
  background: var(--paper);
  color: var(--paper-text);
  padding-block: 76px;
}
.mission-in {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(0, 1.03fr) minmax(0, .95fr);
  gap: 44px;
  align-items: center;
}

.mission-art {
  position: relative;
  margin: 0;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(150deg, #0B1734 0%, #142A5C 100%);
  /* the mockup sets photo and readout SIDE BY SIDE inside one rounded panel,
     not card-over-photo; 25/13 makes the photo slot exactly the crop aspect */
  aspect-ratio: 25 / 13;
}
.mission-photo {
  position: absolute; left: 0; top: 0;
  width: 68%; height: 100%;
  object-fit: cover;
}

.readout {
  position: absolute; right: 9px; top: 9px; bottom: 9px;
  width: 29%; max-width: none;
  padding: 12px 12px 10px;
  border-radius: 13px;
  background: rgba(6, 12, 28, .8);
  backdrop-filter: blur(9px);
  border: 1px solid rgba(147,166,204,.22);
  color: var(--text);
  display: flex; flex-direction: column;
}
.readout-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
}
.readout-live { color: var(--cyan); font-size: 9px; }
.readout-score {
  font-family: Sora, sans-serif; font-weight: 800; font-size: 34px;
  line-height: 1; margin: 5px 0 10px;
  font-variant-numeric: tabular-nums;
}
.bars { display: flex; flex-direction: column; gap: 8px; }
.bars div { font-size: 11px; line-height: 1.3; color: var(--muted); }
.bars i {
  display: block; height: 4px; border-radius: 2px; margin-top: 4px;
  background: rgba(147,166,204,.22);
  position: relative;
}
.bars i::after {
  content: ""; position: absolute; inset: 0 auto 0 0;
  width: var(--v); border-radius: 2px;
  background: var(--grad);
}
.readout-note {
  margin-top: auto; padding-top: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px; letter-spacing: .07em; text-transform: uppercase;
  white-space: nowrap;
  color: var(--faint);
}

.dark-h2 { color: var(--paper-text); font-size: clamp(27px, 3vw, 38px); }
.mission-copy h2 { margin: 14px 0 18px; }
.mission-copy p { color: var(--paper-mute); font-size: 15.5px; margin-bottom: 26px; max-width: 46ch; }
.mission-copy .btn-grad { color: #FFFFFF; }

.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 24px;
  border-left: 1px solid var(--paper-hair);
  padding-left: 34px;
}
.benefits li { display: flex; flex-direction: column; gap: 5px; }
.b-i {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--bi); margin-bottom: 8px;
}
.b-i svg {
  width: 23px; height: 23px;
  fill: none; stroke: var(--bf); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.benefits b { font-family: Sora, sans-serif; font-size: 15.5px; color: var(--paper-text); }
.benefits span { font-size: 13.5px; color: var(--paper-mute); line-height: 1.5; }

/* ── impact band ──────────────────────────────────────────────────── */

.impact {
  position: relative; overflow: hidden;
  background:
    radial-gradient(70% 120% at 72% 100%, #123C86 0%, rgba(5,10,24,0) 62%),
    linear-gradient(180deg, #060D22 0%, #04091A 100%);
  padding-block: 58px;
}
/* starfield: two tiled radial dots, cheaper and crisper than an image */
.impact-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.4px 1.4px at 22% 28%, rgba(210,230,255,.55), transparent),
    radial-gradient(1.2px 1.2px at 68% 62%, rgba(180,215,255,.45), transparent),
    radial-gradient(1.6px 1.6px at 84% 22%, rgba(255,255,255,.4), transparent),
    radial-gradient(1.2px 1.2px at 42% 78%, rgba(160,200,255,.4), transparent);
  background-size: 220px 190px, 310px 240px, 180px 260px, 260px 210px;
  opacity: .6;
  pointer-events: none;
}

.impact-in {
  position: relative;
  display: flex; flex-wrap: wrap; align-items: center; gap: 36px;
}
.impact-copy { flex: 1 1 320px; }
.impact-copy h2 { font-size: clamp(26px, 2.9vw, 37px); margin-top: 12px; }

.stats {
  display: flex; gap: 34px;
  padding-left: 34px;
  border-left: 1px solid var(--hair);
}
.stats dt {
  font-family: Sora, sans-serif; font-weight: 800; font-size: 30px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.stats dd {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--faint); line-height: 1.7; margin-top: 4px;
}
.impact-cta { margin-left: auto; }

/* ── footer ───────────────────────────────────────────────────────── */

.foot {
  background: var(--ink);
  border-top: 1px solid var(--hair);
  padding-block: 26px;
}
.foot-in { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 28px; }
.brand-sm .brand-mark { height: 32px; width: auto; }
.brand-sm .brand-word { font-size: 18px; }
.foot-tag { font-size: 13.5px; color: var(--muted); }
.foot-links { display: flex; flex-wrap: wrap; gap: 22px; margin-left: auto; }
.foot-links a { font-size: 13.5px; color: var(--muted); }
.foot-links a:hover { color: var(--cyan); }
.foot-copy { font-size: 12px; color: var(--faint); }

/* ── responsive ───────────────────────────────────────────────────── */

@media (max-width: 1180px) {
  .hero-in { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .hero-rail { grid-column: 1 / -1; border-left: 0; padding-left: 0; }
  .hero-rail .rail-steps { flex-direction: row; flex-wrap: wrap; gap: 22px; }
  .domain-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px 0; }
  .domain-row li:nth-child(3n+1) { border-left: 0; padding-left: 0; }
  .mission-in { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefits { grid-column: 1 / -1; border-left: 0; padding-left: 0; }
  .engine-in { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .engine-rail { border-left: 0; border-top: 1px solid var(--hair); padding-left: 0; padding-top: 26px; }
}

@media (max-width: 900px) {
  .nav-cta { margin-left: auto; }
  .hero-in { grid-template-columns: minmax(0, 1fr); padding-block: 44px 56px; }
  .hero-stage { order: 3; }
  .stats { padding-left: 0; border-left: 0; }
  .impact-cta { margin-left: 0; }
}

/* Collapse to a button when the viewport is phone-width, and on any portrait
   device up to tablet size -- a 1080x1920 monitor turned portrait still has
   ample room for the full row, so width is part of the test, not just
   orientation. */
@media (max-width: 900px), (orientation: portrait) and (max-width: 1024px) {
  .brand-tag { display: none; }
  .nav-toggle { display: flex; order: 2; }
  .nav-cta { order: 1; margin-left: auto; }

  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    margin-left: 0;
    padding: 4px 24px 14px;
    background: var(--ink);
    border-bottom: 1px solid var(--hair);
  }
  .nav.open .nav-links { display: flex; }

  .nav-links a { font-size: 16px; padding: 14px 0; border-bottom: 1px solid var(--hair); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }   /* the underline sweep is a row idiom */
}

@media (max-width: 640px) {
  .shell { padding-inline: 18px; }

  /* the row has to fit unaided: an overflowing nav widens the document and
     every section below it then renders off-screen */
  .nav-in { gap: 12px; min-height: 66px; }
  .brand { gap: 9px; }
  .brand-mark { height: 38px; }
  .brand-word { font-size: 18px; letter-spacing: .2em; }
  .nav-cta { padding: 9px 16px; font-size: 14px; }
  .nav-toggle { width: 40px; height: 40px; }
  .nav-links { padding-inline: 18px; }
  .domain-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .domain-row li { border-left: 0; padding-left: 0; }
  .mission-in { grid-template-columns: minmax(0, 1fr); }
  .benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 18px; }
  .readout { width: 32%; }
  .stats { flex-wrap: wrap; gap: 22px; }
  .foot-links { margin-left: 0; }
  .hero-copy h1 { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
