/* ═══════════════════════════════════════════════
   PROTON · luminous on deep ink
   three lights (proton coral, electron cyan, gold), liquid glass controls,
   full-bleed video hero, the protocol on the landing, docs, the nucleus
   ═══════════════════════════════════════════════ */

@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/unbounded-latin.woff2") format("woff2");
  font-weight: 200 900;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrumentserif-italic-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #0b0f1a;
  --bone: #f2efe6;
  --proton: #ff7a59;    /* the accent: the proton itself */
  --electron: #5ee0ff;  /* hover light */
  --gold: #ffd166;      /* the primary action: the road to gold */
  --display: "Unbounded", "Inter", system-ui, sans-serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif-italic: "Instrument Serif", Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-panel: cubic-bezier(0.22, 1, 0.36, 1);
  --bar-x: 24px;
  color-scheme: dark;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { max-width: 100%; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.92em; background: rgba(255, 255, 255, 0.08); padding: 0.1em 0.4em; border-radius: 6px; }
.font-italic-serif { font-family: var(--serif-italic); font-style: italic; }
.hidden { display: none !important; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 var(--bar-x); }

/* ── the star field: fixed, behind everything, above the ink ── */
#galaxy { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
#galaxy canvas { width: 100% !important; height: 100% !important; display: block; }
main, footer { position: relative; }

/* ── animation system ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-stagger { opacity: 0; animation: fadeSlideUp 0.8s var(--ease-out) forwards; }
.animate-fade { opacity: 0; animation: fadeIn 0.6s var(--ease-out) forwards; }
.delay-0 { animation-delay: 0ms; }
.delay-1 { animation-delay: 150ms; }
.delay-2 { animation-delay: 300ms; }
.delay-3 { animation-delay: 500ms; }
.delay-4 { animation-delay: 700ms; }
.delay-5 { animation-delay: 900ms; }
.delay-6 { animation-delay: 1100ms; }

/* ═══════════════ liquid glass ═══════════════
   Every control on the site is one glass surface. The rim refraction comes
   from the SVG filter installed by js/glass.js (Chromium: html.lg); the
   others keep this blurred glass, which already reads as the same material. */
.pill {
  position: relative; isolation: isolate;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    0 10px 30px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(14px) saturate(1.6) brightness(1.06);
  backdrop-filter: blur(14px) saturate(1.6) brightness(1.06);
  transition: background 200ms, border-color 200ms, transform 150ms var(--ease-out), box-shadow 200ms;
}
.pill::before {
  /* the gloss: light on the upper half, under the content */
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 55%, rgba(255, 255, 255, 0) 100%);
}
html.lg .pill {
  -webkit-backdrop-filter: url(#lg) blur(3px) saturate(1.6) brightness(1.06);
  backdrop-filter: url(#lg) blur(3px) saturate(1.6) brightness(1.06);
}
.pill:hover {
  background: rgba(255, 255, 255, 0.13); border-color: rgba(255, 255, 255, 0.46);
}
.pill:active { transform: scale(0.98); }
.pill:focus-visible {
  outline: 2px solid var(--electron); outline-offset: 3px;
}

/* the brighter glass, for the first hero pill */
.glass-bright { background: rgba(255, 255, 255, 0.17); border-color: rgba(255, 255, 255, 0.42); }
.glass-bright:hover { background: rgba(255, 255, 255, 0.24); }

/* ── navbar: a floating bar, clear at the top, smoked glass once the page scrolls ── */
.nav {
  position: fixed; top: 20px; left: 0; right: 0; z-index: 50;
  display: flex; flex-direction: column; align-items: center; padding: 0 16px; pointer-events: none;
}
.nav-inner {
  position: relative; width: 100%; max-width: 1680px; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5px 0 16px; border-radius: 16px; border: 1px solid transparent; background: transparent;
  transition: max-width 0.5s, background 0.5s, border-color 0.5s, padding 0.5s, box-shadow 0.5s;
  pointer-events: auto;
}
.nav.scrolled .nav-inner {
  max-width: 1276px;
  background: rgba(11, 15, 26, 0.55);
  -webkit-backdrop-filter: blur(24px) saturate(1.4); backdrop-filter: blur(24px) saturate(1.4);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28), inset 0 0.5px 0 rgba(255, 255, 255, 0.08);
}
.nav-left { display: flex; align-items: center; min-width: 0; }
.nav-logo { display: flex; align-items: center; gap: 9px; color: #fff; }
.nav-logo img { height: 20px; width: auto; display: block; }
.nav-wordmark { font-family: var(--display); font-weight: 500; font-size: 11px; letter-spacing: 0.14em; line-height: 1; }
.nav-divider { display: none; color: #fff; font-size: 18px; font-weight: 300; user-select: none; margin: 0 8px 0 18px; }
.nav-links { position: relative; display: none; align-items: center; gap: 8px; }
.nav-link-highlight {
  position: absolute; top: 0; left: 0; border-radius: 12px;
  background: rgba(11, 15, 26, 0.45);
  -webkit-backdrop-filter: blur(24px) saturate(1.4); backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2), inset 0 0.5px 0 rgba(255, 255, 255, 0.06);
  opacity: 0; pointer-events: none;
  transition: transform 0.3s var(--ease-out), width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.2s;
}
.nav-link {
  position: relative; z-index: 1; color: rgba(255, 255, 255, 0.86);
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em; padding: 6px 10px; border-radius: 12px;
  transition: color 0.15s var(--ease-out), transform 0.12s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:active { transform: scale(0.96); }
.nav-right { display: flex; align-items: center; gap: 6px; }
.nav-icon-btn, .nav-mini {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  height: 36px; padding: 0 12px; border-radius: 10px;
  font-size: 13px; font-weight: 500; color: #aaa;
  border: 1px solid transparent; background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(32px) saturate(1.3); backdrop-filter: blur(32px) saturate(1.3);
  cursor: pointer;
  transition: background 0.15s var(--ease-out), color 0.15s var(--ease-out), transform 0.12s var(--ease-out);
}
.nav-icon-btn { width: 36px; padding: 0; }
.nav-icon-btn svg { width: 16px; height: 16px; }
.nav-mini { color: #fff; padding: 0 10px; }
.nav-icon-btn:hover, .nav-mini:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.nav-icon-btn:active, .nav-mini:active { transform: scale(0.97); }
.nav-cta {
  position: relative; flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; height: 32px; padding: 0 12px; white-space: nowrap;
  font-size: 12px; font-weight: 600; color: var(--ink);
  border-radius: 8px; border: 3px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(125deg, #6f7a89 0%, #c3cdda 18%, #ffffff 34%, #a4afbe 52%, #e9eef5 68%, #97a2b1 84%, #6b7583 100%);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.38), 0 0 22px rgba(190, 210, 235, 0.16);
  transition: box-shadow 0.3s, transform 0.12s var(--ease-out);
}
.nav-cta::before {
  content: ""; position: absolute; inset: 0; z-index: 1; border-radius: 6px; pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  background-size: 200% 100%; animation: nav-shine 8s ease-in-out infinite;
}
.nav-cta-label { position: relative; z-index: 2; }
.nav-cta-desktop { display: none; }
.nav-cta:hover { box-shadow: 0 2px 18px rgba(0, 0, 0, 0.44), 0 0 32px rgba(190, 210, 235, 0.3); }
.nav-cta:active { transform: scale(0.97); }
@keyframes nav-shine { 0% { background-position: 200% 0; } 35%, 100% { background-position: -200% 0; } }
.nav a:focus-visible, .nav button:focus-visible { outline: 2px solid var(--electron); outline-offset: 3px; }

/* ── hero ── */
.hero { position: relative; width: 100%; height: 100vh; height: 100svh; overflow: hidden; }
.hero-video {
  position: absolute; inset: 0;
  /* the video dissolves into the star field instead of ending on a line */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 52%, rgba(0, 0, 0, 0.55) 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 52%, rgba(0, 0, 0, 0.55) 78%, transparent 100%);
}
.hero-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-video.failed video { display: none; }
.hero-video.failed { background: radial-gradient(ellipse at 50% 60%, #1a2238 0%, var(--ink) 70%); }

.hero-content {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; padding: 72px var(--bar-x) 210px;
  /* the bottom padding reserves room for .bottom (pinned, absolute) so the
     vertically centered content never collides with it on short viewports */
}
.headline { text-align: center; margin-top: -2rem; }
.headline h1 {
  font-family: var(--display); font-weight: 300;
  letter-spacing: -0.025em; line-height: 1.1;
  font-size: 3rem;
}
.headline h1 + h1 { margin-top: 0.25rem; }
.headline .font-italic-serif { font-weight: 400; letter-spacing: 0; }

.cta-row {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  margin-top: 40px;
}
.pill {
  display: flex; align-items: center; gap: 12px;
  border-radius: 9999px; padding: 12px 22px 12px 26px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.1em;
}
.well {
  width: 28px; height: 28px; border-radius: 9999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  transition: background 300ms;
}
.well-proton { background: var(--proton); }
.well svg { width: 12px; height: 12px; margin-left: 1px; fill: #fff; color: #fff; }
.well-proton svg { fill: #1a0c06; color: #1a0c06; }

/* ── bottom bar ── */
.bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  padding: 0 var(--bar-x) 32px;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between;
  gap: 24px;
}
.desc { max-width: 24rem; font-size: 14px; line-height: 1.625; color: rgba(255, 255, 255, 0.8); }
.desc a { color: var(--proton); }
.desc a:hover { text-decoration: underline; }
.trust { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.trust-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); white-space: pre; }
.trust-card {
  border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 8px; padding: 20px 32px;
  display: flex; align-items: center; justify-content: center; min-width: 160px;
  font-size: 20px; letter-spacing: 0.15em; color: rgba(255, 255, 255, 0.9); white-space: nowrap;
}

/* ═══════════════ shared page chrome (docs + nucleus) ═══════════════ */
.kicker { display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: 10px; }
.section-head { max-width: 62ch; margin-bottom: 28px; }
.section-head h2 { font-family: var(--display); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.15; margin: 0 0 10px; }
.lead { color: rgba(255, 255, 255, 0.68); font-size: 1.02rem; }
.block { padding-top: 96px; padding-bottom: 96px; }
section[id] { scroll-margin-top: 96px; }

/* ── landing chapters: type, air, hairlines, nothing else ── */
.chapter { padding-top: 128px; padding-bottom: 32px; max-width: 920px; margin-left: auto; margin-right: auto; }
.chapter + .chapter { border-top: 1px solid rgba(255, 255, 255, 0.08); margin-top: 96px; }
.chapter-title {
  font-family: var(--display); font-weight: 300; letter-spacing: -0.02em; line-height: 1.08;
  font-size: clamp(2rem, 4.6vw, 3.6rem); margin: 0 0 28px;
}
.chapter-title .font-italic-serif { font-weight: 400; letter-spacing: 0; }
.chapter-text { max-width: 60ch; font-size: 1.08rem; line-height: 1.7; color: rgba(255, 255, 255, 0.72); margin: 0; }
.chapter-text a { color: #fff; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(255, 255, 255, 0.35); }
.chapter-text a:hover { text-decoration-color: #fff; }

.strip {
  display: flex; align-items: baseline; column-gap: clamp(14px, 3vw, 34px); row-gap: 34px; flex-wrap: wrap;
  margin-top: 56px; font-family: var(--display); font-weight: 300; font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  color: rgba(255, 255, 255, 0.38);
}
.strip span { position: relative; }
.strip .strip-iron { color: #c9d0da; padding-right: clamp(14px, 3vw, 34px); border-right: 1px solid rgba(255, 255, 255, 0.35); }
.strip .strip-iron i { position: absolute; left: 0; top: 100%; margin-top: 6px; font: 500 0.66rem var(--sans); letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); font-style: normal; }
.strip .strip-gold { color: var(--gold); }

.rows { margin-top: 8px; }
.row-line {
  display: grid; grid-template-columns: 200px 1fr; gap: 24px; align-items: baseline;
  padding: 26px 0; border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.row-line:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.row-k { font-family: var(--display); font-weight: 500; font-size: 0.9rem; letter-spacing: 0.04em; color: #fff; }
.row-line p { margin: 0; font-size: 1.05rem; line-height: 1.65; color: rgba(255, 255, 255, 0.72); max-width: 56ch; }


/* ── reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ── docs page ── */
.doc { display: grid; grid-template-columns: 220px 1fr; gap: 48px; padding-top: 128px; padding-bottom: 80px; }
.doc > * { min-width: 0; } /* the tables scroll inside .tbl-wrap; they must not widen the column */
.toc { position: sticky; top: 112px; align-self: start; font-size: 0.9rem; }
.toc a { display: block; padding: 6px 0 6px 12px; color: rgba(255, 255, 255, 0.5); border-left: 2px solid transparent; }
.toc a:hover, .toc a.active { color: #fff; border-color: var(--proton); }
.toc-h { font-family: var(--display); font-weight: 500; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; padding-left: 14px; margin-bottom: 8px; }
article { max-width: 720px; }
article h1 { font-family: var(--display); font-weight: 500; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; line-height: 1.08; margin: 0 0 14px; }
article h2 { font-family: var(--display); font-weight: 500; font-size: clamp(1.35rem, 2.2vw, 1.7rem); margin: 52px 0 12px; }
article h2::after { content: ""; display: block; width: 42px; height: 2px; border-radius: 2px; margin-top: 10px; background: var(--proton); }
article h3 { font-family: var(--display); font-weight: 500; font-size: 1.05rem; margin: 24px 0 8px; }
article p, article li { color: rgba(255, 255, 255, 0.72); line-height: 1.65; }
article ul, article ol { padding-left: 22px; }
article li { margin-bottom: 6px; }
.note { border-left: 2px solid var(--proton); padding: 6px 0 6px 16px; color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; margin: 18px 0; }
.note.blue { border-left-color: var(--gold); }
.tbl-wrap { overflow-x: auto; }
.tbl { width: 100%; border-collapse: collapse; font-size: 0.92rem; margin: 14px 0 6px; background: rgba(255, 255, 255, 0.025); border-radius: 12px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.09); }
.tbl th, .tbl td { text-align: left; padding: 11px 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.07); vertical-align: top; }
.tbl th { font-family: var(--display); font-weight: 500; font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255, 255, 255, 0.45); background: rgba(255, 255, 255, 0.03); }
.tbl tr:last-child td { border-bottom: 0; }

.law { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 18px; }
.law-item { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: start; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 14px 16px; }
.law-id { font-family: var(--display); font-weight: 500; font-size: 0.78rem; color: var(--electron); border: 1px solid rgba(94, 224, 255, 0.55); border-radius: 9999px; padding: 3px 0; text-align: center; }
.law-item p { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 0.94rem; }

.faq details { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 12px; padding: 4px 18px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 500; padding: 12px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; color: #fff; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--display); color: rgba(255, 255, 255, 0.5); }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding-bottom: 12px; margin: 0; color: rgba(255, 255, 255, 0.68); }

/* ── shared footer ── */
footer { border-top: 1px solid rgba(255, 255, 255, 0.09); margin-top: 120px; padding: 40px 0 56px; color: rgba(255, 255, 255, 0.5); font-size: 0.88rem; }
.foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px 32px; align-items: flex-start; }
.foot-brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 500; letter-spacing: 0.1em; color: #fff; }
.foot-brand img { height: 26px; width: auto; display: block; }
.foot-links { display: flex; flex-wrap: wrap; gap: 16px; }
.foot-links a:hover { color: #fff; }
.foot-ca {
  display: flex; flex-wrap: wrap; gap: 6px 18px; margin: 26px 0 0; padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.82rem; color: rgba(255, 255, 255, 0.45);
}
.foot-ca span:first-child { color: rgba(255, 255, 255, 0.7); }
.legal { margin-top: 20px; max-width: 90ch; font-size: 0.82rem; line-height: 1.55; }

/* ── breakpoints ── */
@media (min-width: 640px) {
  .cta-row { flex-direction: row; }
  .headline h1 { font-size: 3.75rem; }
}
@media (min-width: 768px) {
  :root { --bar-x: 40px; }
  .nav { padding: 0 24px; }
  .nav-inner { padding: 0 8px 0 20px; border-radius: 14px; }
  .nav-divider { display: inline; }
  .nav-links { display: flex; }
  .nav-mini { display: none; }
  .nav-right { gap: 12px; }
  .nav-wordmark { font-size: 14px; letter-spacing: 0.18em; }
  .nav-logo img { height: 24px; }
  .nav-cta { height: 36px; padding: 0 20px; font-size: 13px; border-width: 5px; border-radius: 10px; }
  .nav-cta-desktop { display: inline; }
  .nav-cta-mobile { display: none; }
  .hero-content { padding: 72px var(--bar-x) 130px; }
  .headline h1 { font-size: 4.5rem; }
  .headline h1 + h1 { margin-top: 0.5rem; margin-left: 4rem; }
  .cta-row { margin-top: 56px; }
  .bottom { padding: 0 var(--bar-x) 40px; flex-direction: row; align-items: flex-end; }
  .desc { font-size: 16px; }
}
@media (min-width: 1024px) {
  .headline h1 { font-size: 6.5rem; }
}

@media (max-width: 900px) {
  .law { grid-template-columns: 1fr; }
  .block { padding-top: 72px; padding-bottom: 72px; }
  .chapter { padding-top: 88px; }
  .chapter + .chapter { margin-top: 64px; }
  .row-line { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .doc { grid-template-columns: 1fr; gap: 24px; padding-top: 112px; }
  .toc { position: static; display: flex; flex-wrap: wrap; gap: 4px 16px; }
  .toc-h { width: 100%; }
  .toc a { border-left: 0; padding-left: 0; }
}
@media (max-width: 370px) {
  .nav-wordmark { display: none; }
}
@media (max-height: 620px) {
  /* very short viewports (a resized window, a landscape phone): stop trying
     to vertically center against .bottom's height and just sit near the top,
     small enough to always clear it */
  .hero-content { justify-content: flex-start; padding-top: 88px; padding-bottom: 16px; }
  .headline { margin-top: 0; }
  .headline h1 { font-size: 1.8rem; }
  .headline h1 + h1 { margin-top: 0.15rem; }
  .cta-row { margin-top: 12px; gap: 8px; }
  .cta-row .pill { padding: 9px 18px; font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .animate-stagger, .animate-fade { animation-duration: 1ms; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
