/* ==========================================================================
   MATMO LLC — dark editorial / cinematic
   Vibe archetype: Ethereal Glass (OLED-adjacent void, warm bone type, one ember accent)
   Layout archetypes: Editorial Split (hero) + Asymmetrical Bento (pillars)
   No external assets: no web fonts, no CDN, no remote images.
   ========================================================================== */

:root {
  /* Surface */
  --void:      #08080A;
  --void-2:    #0C0C0F;
  --surface:   #121216;
  --surface-2: #17171C;

  /* Ink */
  --bone:      #EDE8E0;
  --bone-dim:  #B4AFA7;
  --muted:     #85817B;
  --muted-2:   #5C5955;

  /* Accent — single, saturated, warm */
  --ember:     #FF5A2C;
  --ember-dim: #FF8A66;
  --ember-ink: #0A0A0C;

  /* Hairlines */
  --line:      rgba(237, 232, 224, .10);
  --line-soft: rgba(237, 232, 224, .06);
  --shell:     rgba(237, 232, 224, .035);

  /* Radii — exaggerated squircles with concentric inner cores */
  --r-shell:   34px;
  --r-core:    28px;   /* r-shell minus shell padding */
  --r-pill:    999px;
  --r-sm:      14px;

  /* Motion */
  --ease:      cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);

  /* Rhythm */
  --pad-section: 160px;
  --w-page:      1240px;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI Variable",
          "Segoe UI", system-ui, sans-serif;
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--void);
  color: var(--bone-dim);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; color: var(--bone); font-weight: 600; letter-spacing: -0.035em; line-height: 1.02; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

/* Film grain — fixed overlay only, never on scrolling content -------------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/></filter><rect width='140' height='140' filter='url(%23n)'/></svg>");
}

/* Ambient light — one warm bloom behind the hero, fixed ------------------- */
.bloom {
  position: fixed;
  top: -28vh;
  right: -14vw;
  width: 78vw;
  height: 78vw;
  max-width: 1100px;
  max-height: 1100px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(255, 90, 44, .13) 0%, rgba(255, 90, 44, .04) 38%, transparent 68%);
}

/* Layout ----------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--w-page); margin: 0 auto; padding: 0 40px; position: relative; z-index: 1; }
.section { padding: var(--pad-section) 0; position: relative; }
.section--tight { padding: 110px 0; }
.rule { height: 1px; background: var(--line-soft); border: 0; margin: 0; }

/* Typography ------------------------------------------------------------- */
.display {
  font-size: clamp(50px, 7.4vw, 108px);
  line-height: .92;
  letter-spacing: -0.05em;
  font-weight: 600;
}
.h1 { font-size: clamp(40px, 6vw, 78px); line-height: .98; letter-spacing: -0.045em; }
.h2 { font-size: clamp(34px, 4.6vw, 60px); line-height: 1.0; letter-spacing: -0.042em; }
.h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.12; letter-spacing: -0.03em; }
.h4 { font-size: 18px; line-height: 1.25; letter-spacing: -0.018em; font-weight: 600; }

.lead { font-size: clamp(18px, 1.55vw, 21px); line-height: 1.55; color: var(--muted); max-width: 52ch; }
.body { color: var(--bone-dim); }
.dim  { color: var(--muted); }
.small { font-size: 14px; line-height: 1.6; color: var(--muted); }
.measure { max-width: 60ch; }

.ember { color: var(--ember); }

/* Eyebrow pill ------------------------------------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--shell);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.eyebrow::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ember);
}
.eyebrow--plain::before { display: none; }

/* Buttons — pill, nested trailing icon ------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 9px 9px 26px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background-color .5s var(--ease), border-color .5s var(--ease),
              color .5s var(--ease), transform .35s var(--ease);
}
.btn__ico {
  width: 34px; height: 34px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform .5s var(--ease), background-color .5s var(--ease);
}
.btn__ico svg { width: 14px; height: 14px; }
.btn:active { transform: scale(.98); }
.btn:hover .btn__ico { transform: translate(3px, -2px) scale(1.06); }

.btn--ember { background: var(--ember); color: var(--ember-ink); }
.btn--ember .btn__ico { background: rgba(10, 10, 12, .16); }
.btn--ember:hover { background: var(--ember-dim); }

.btn--ghost { background: var(--shell); color: var(--bone); border-color: var(--line); }
.btn--ghost .btn__ico { background: rgba(237, 232, 224, .09); }
.btn--ghost:hover { border-color: rgba(237, 232, 224, .24); background: rgba(237, 232, 224, .06); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Text link with sliding rule --------------------------------------------- */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--bone);
  padding-bottom: 4px;
  position: relative;
}
.tlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 100%;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); }
.tlink span:last-child { transition: transform .5s var(--ease); }
.tlink:hover span:last-child { transform: translateX(4px); }

/* Floating island nav ----------------------------------------------------- */
.nav-shell {
  position: sticky;
  top: 22px;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 22px 20px 0;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 11px 11px 11px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(12, 12, 15, .72);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 22px 60px -30px rgba(0, 0, 0, .9), inset 0 1px 0 rgba(237, 232, 224, .07);
}
.nav__brand img { height: 26px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color .4s var(--ease);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a[aria-current="page"] { color: var(--bone); }
.nav .btn { padding: 7px 7px 7px 18px; font-size: 14px; }
.nav .btn__ico { width: 28px; height: 28px; }
.nav .btn__ico svg { width: 12px; height: 12px; }

/* Hamburger — morphs into an X */
.burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: var(--shell);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  padding: 0;
}
.burger i {
  position: absolute;
  left: 11px;
  width: 16px; height: 1.5px;
  background: var(--bone);
  border-radius: 2px;
  transition: transform .55s var(--ease), opacity .3s var(--ease);
}
.burger i:nth-child(1) { top: 16px; }
.burger i:nth-child(2) { top: 22px; }
.burger[aria-expanded="true"] i:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger[aria-expanded="true"] i:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* Full-screen menu overlay */
.menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(8, 8, 10, .86);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.menu[data-open="true"] { opacity: 1; visibility: visible; }
.menu a {
  font-size: clamp(38px, 11vw, 62px);
  font-weight: 600;
  letter-spacing: -0.045em;
  color: var(--bone);
  padding: 12px 0;
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.menu[data-open="true"] a { opacity: 1; transform: translateY(0); }
.menu[data-open="true"] a:nth-child(1) { transition-delay: .08s; }
.menu[data-open="true"] a:nth-child(2) { transition-delay: .14s; }
.menu[data-open="true"] a:nth-child(3) { transition-delay: .20s; }
.menu[data-open="true"] a:nth-child(4) { transition-delay: .26s; }
.menu[data-open="true"] a:nth-child(5) { transition-delay: .32s; }

/* Hero — editorial split -------------------------------------------------- */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 122px 0 72px;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: 84px;
  align-items: center;
  width: 100%;
}
.hero .display { margin: 26px 0 0; }
.hero .lead { margin-top: 26px; }
.hero .btn-row { margin-top: 36px; }

.hero__aside { padding-bottom: 0; }
.hero__stat + .hero__stat { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.hero__stat b {
  display: block;
  font-size: 34px;
  font-weight: 600;
  color: var(--bone);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hero__stat span { display: block; margin-top: 9px; font-size: 13.5px; color: var(--muted); }

.hero--page { min-height: 0; padding: 190px 0 40px; align-items: flex-start; }
.hero--page .lead { margin-top: 30px; }
.hero--page .h1 { margin-top: 30px; }

/* Acronym strip ----------------------------------------------------------- */
.acronym { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.acro {
  padding: 40px 34px 40px 0;
  border-left: 1px solid var(--line-soft);
  padding-left: 34px;
}
.acro:first-child { border-left: 0; padding-left: 0; }
.acro__key {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 18px;
}
.acro__key i { font-style: normal; color: var(--muted-2); }
.acro h3 { margin-bottom: 12px; }
.acro p { font-size: 15px; color: var(--muted); }

/* Double-bezel card ------------------------------------------------------- */
.shell {
  background: var(--shell);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-shell);
  padding: 7px;
  transition: border-color .6s var(--ease), transform .6s var(--ease);
}
.shell:hover { border-color: rgba(237, 232, 224, .16); }
.core {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border-radius: var(--r-core);
  box-shadow: inset 0 1px 0 rgba(237, 232, 224, .07);
  padding: 40px;
  height: 100%;
}
.core--tall { padding: 48px 44px; }

/* Bento ------------------------------------------------------------------- */
.bento { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; }
.bento > .b-7  { grid-column: span 7; }
.bento > .b-5  { grid-column: span 5; }
.bento > .b-6  { grid-column: span 6; }
.bento > .b-4  { grid-column: span 4; }
.bento > .b-8  { grid-column: span 8; }
.bento > .b-12 { grid-column: span 12; }

.card__idx {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .26em;
  color: var(--muted-2);
  font-variant-numeric: tabular-nums;
  margin-bottom: 26px;
}
.core h3 + p { margin-top: 16px; color: var(--muted); font-size: 15.5px; }

.tick { display: grid; gap: 12px; margin-top: 28px; }
.tick li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--bone-dim);
}
.tick li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ember);
  opacity: .8;
}

/* Section heading block --------------------------------------------------- */
.shead { max-width: 62ch; margin-bottom: 72px; }
.shead .h2 { margin-top: 26px; }
.shead p { margin-top: 24px; }

/* Numbered process — staggered, not a boring 3-col ------------------------ */
.proc { display: grid; gap: 0; }
.proc__row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  padding: 46px 0;
  border-top: 1px solid var(--line-soft);
  align-items: start;
  transition: background-color .6s var(--ease);
}
.proc__row:last-child { border-bottom: 1px solid var(--line-soft); }
.proc__n {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .26em;
  color: var(--ember);
  font-variant-numeric: tabular-nums;
  padding-top: 7px;
}
.proc__row p { color: var(--muted); font-size: 15.5px; }

/* Marquee-ish sector list ------------------------------------------------- */
.sectors { display: flex; flex-wrap: wrap; gap: 12px; }
.sectors li {
  padding: 11px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--shell);
  font-size: 14.5px;
  color: var(--bone-dim);
  transition: border-color .5s var(--ease), color .5s var(--ease);
}
.sectors li:hover { border-color: rgba(255, 90, 44, .45); color: var(--bone); }

/* Facts ------------------------------------------------------------------- */
.facts { border-top: 1px solid var(--line-soft); }
.facts__row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 36px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}
.facts__k { font-size: 13.5px; color: var(--muted); letter-spacing: .02em; }
.facts__v { font-size: 15.5px; color: var(--bone); }

/* Quote / callout --------------------------------------------------------- */
.pull {
  border-left: 2px solid var(--ember);
  padding: 6px 0 6px 30px;
}
.pull p { font-size: clamp(20px, 2.2vw, 27px); line-height: 1.35; letter-spacing: -0.03em; color: var(--bone); }
.pull cite { display: block; margin-top: 20px; font-style: normal; font-size: 13.5px; color: var(--muted); }

/* CTA band ---------------------------------------------------------------- */
.cta .core { padding: 96px 60px; text-align: center; }
.cta .lead { margin: 26px auto 0; }
.cta .btn-row { justify-content: center; margin-top: 42px; }

/* Form -------------------------------------------------------------------- */
.form { display: grid; gap: 24px; }
.field { display: grid; gap: 9px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--bone-dim); letter-spacing: .01em; }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 16px;
  color: var(--bone);
  background: var(--void-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  width: 100%;
  transition: border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.field select { appearance: none; }
.field option { background: var(--void-2); color: var(--bone); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(255, 90, 44, .6);
  box-shadow: 0 0 0 3px rgba(255, 90, 44, .12);
}
.field textarea { min-height: 158px; resize: vertical; }
.field--row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.field .hint { font-size: 13px; color: var(--muted-2); }
.consent { display: flex; gap: 13px; align-items: flex-start; }
.consent input { width: 17px; height: 17px; margin-top: 4px; flex: none; accent-color: var(--ember); }
.consent label { font-weight: 400; font-size: 14px; color: var(--muted); }
.consent a { color: var(--bone-dim); text-decoration: underline; text-underline-offset: 3px; }

/* Legal pages ------------------------------------------------------------- */
.legal { padding: 40px 0 150px; }
.legal__layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 80px; align-items: start; }
.toc { position: sticky; top: 130px; }
.toc__title { font-size: 10.5px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 20px; }
.toc ol { counter-reset: toc; display: grid; gap: 11px; }
.toc li { counter-increment: toc; }
.toc a { font-size: 13.5px; color: var(--muted); line-height: 1.45; display: block; transition: color .4s var(--ease); }
.toc a::before { content: counter(toc) ". "; color: var(--muted-2); }
.toc a:hover { color: var(--bone); }

.prose { max-width: 68ch; }
.prose h2 {
  font-size: 24px;
  letter-spacing: -0.03em;
  margin: 62px 0 18px;
  scroll-margin-top: 130px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 17px; margin: 32px 0 12px; }
.prose p { margin: 0 0 17px; font-size: 16.5px; line-height: 1.68; color: var(--bone-dim); }
.prose ul, .prose ol { margin: 0 0 20px; padding-left: 22px; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose li { margin-bottom: 10px; font-size: 16.5px; line-height: 1.68; color: var(--bone-dim); }
.prose strong { color: var(--bone); font-weight: 600; }
.prose a { color: var(--ember); text-decoration: underline; text-underline-offset: 3px; }
.prose address { font-style: normal; color: var(--bone-dim); }
.doc-meta {
  display: flex; flex-wrap: wrap; gap: 30px;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 52px;
  font-size: 13.5px;
  color: var(--muted);
}
.doc-meta strong { color: var(--bone); font-weight: 600; }

/* Footer ------------------------------------------------------------------ */
.foot { border-top: 1px solid var(--line-soft); padding: 100px 0 44px; }
.foot__top { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: 56px; }
.foot__brand img { height: 28px; margin-bottom: 26px; }
.foot__brand address { font-style: normal; font-size: 14px; color: var(--muted); line-height: 1.8; }
.foot__col h4 { font-size: 10.5px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 20px; }
.foot__col ul { display: grid; gap: 12px; }
.foot__col a { font-size: 14px; color: var(--muted); transition: color .4s var(--ease); }
.foot__col a:hover { color: var(--bone); }
.foot__bottom {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 13px; color: var(--muted-2);
}
.foot__note { margin-top: 20px; max-width: 84ch; font-size: 12.5px; line-height: 1.7; color: var(--muted-2); }

/* Skip link --------------------------------------------------------------- */
.skip {
  position: absolute; left: -9999px; top: 10px;
  background: var(--ember); color: var(--ember-ink);
  padding: 11px 20px; border-radius: var(--r-pill);
  font-weight: 600; z-index: 70;
}
.skip:focus { left: 20px; }

/* Scroll reveal ----------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(46px);
  filter: blur(9px);
  transition: opacity .95s var(--ease-out), transform .95s var(--ease-out), filter .95s var(--ease-out);
  will-change: transform, opacity;
}
[data-reveal].is-in { opacity: 1; transform: none; filter: blur(0); will-change: auto; }
[data-reveal-delay="1"] { transition-delay: .09s; }
[data-reveal-delay="2"] { transition-delay: .18s; }
[data-reveal-delay="3"] { transition-delay: .27s; }
[data-reveal-delay="4"] { transition-delay: .36s; }

/* Short viewports — keep the hero CTA above the fold on 720p-class laptops -- */
@media (min-width: 1081px) and (max-height: 840px) {
  .hero { padding: 96px 0 44px; }
  .hero .display { font-size: clamp(46px, 5.9vw, 82px); margin-top: 20px; }
  .hero .lead { margin-top: 20px; font-size: 17px; }
  .hero .btn-row { margin-top: 24px; }
  .hero__grid { gap: 64px; }
  .hero__stat b { font-size: 29px; }
  .hero__stat + .hero__stat { margin-top: 16px; padding-top: 16px; }
  .hero__stat span { margin-top: 7px; font-size: 13px; }
}

/* Responsive -------------------------------------------------------------- */
@media (max-width: 1080px) {
  :root { --pad-section: 118px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 64px; align-items: start; }
  .hero__aside { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
  .hero__stat + .hero__stat { margin-top: 0; padding-top: 0; border-top: 0; }
  .acronym { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .acro { padding: 30px 24px 30px 30px; }
  .acro:nth-child(odd) { border-left: 0; padding-left: 0; }
  .bento > [class^="b-"] { grid-column: span 6; }
  .legal__layout { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .toc { position: static; }
  .foot__top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px; }
  .proc__row { grid-template-columns: 90px minmax(0, 1fr); }
  .proc__row p { grid-column: 2; }
}

@media (max-width: 768px) {
  :root { --pad-section: 86px; --r-shell: 26px; --r-core: 20px; }
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .nav__links { display: none; }
  .nav .btn { display: none; }
  .burger { display: block; }
  .nav { width: 100%; justify-content: space-between; padding: 10px 10px 10px 18px; }
  .nav-shell { padding: 16px 16px 0; top: 14px; }
  .hero { padding: 128px 0 68px; }
  .hero .display { margin-top: 22px; }
  .hero .lead { margin-top: 22px; }
  .hero .btn-row { margin-top: 28px; }
  .hero--page { padding: 140px 0 24px; }
  .hero__aside { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .hero__stat + .hero__stat { padding-top: 22px; border-top: 1px solid var(--line-soft); }
  .acronym { grid-template-columns: minmax(0, 1fr); }
  .acro { padding: 26px 0; border-left: 0; padding-left: 0; border-top: 1px solid var(--line-soft); }
  .acro:first-child { border-top: 0; }
  .bento { gap: 14px; }
  .bento > [class^="b-"] { grid-column: span 12; }
  .core { padding: 30px 26px; }
  .core--tall { padding: 32px 26px; }
  .cta .core { padding: 56px 26px; }
  .proc__row { grid-template-columns: minmax(0, 1fr); gap: 12px; padding: 32px 0; }
  .proc__row p { grid-column: 1; }
  .facts__row { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .field--row { grid-template-columns: minmax(0, 1fr); }
  .foot__top { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .foot { padding: 72px 0 36px; }
  .bloom { top: -12vh; right: -40vw; width: 130vw; height: 130vw; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
}

@media print {
  body { background: #fff; color: #111; }
  body::after, .bloom, .nav-shell, .menu, .foot, .toc { display: none; }
  .prose p, .prose li, .prose h2, .prose h3 { color: #111; }
  .legal { padding: 0; }
  .legal__layout { grid-template-columns: 1fr; }
}
