/* ==========================================================================
   Snor — landing site
   --------------------------------------------------------------------------
   Palette is lifted from the app itself: deep green-grey ground, moss accent.
   Type splits by job — Instrument Sans carries prose, JetBrains Mono carries
   structure (indices, labels, metadata). The mono is the product's own voice:
   this is a tool you drive from a shell.

   Layout note: boxes are reserved for things that are genuinely boxed — code,
   the download panel. Everything else is separated by rules and space, which
   is why the page does not read as a stack of identical cards.
   ========================================================================== */

:root {
  /* --- surfaces ------------------------------------------------------- */
  --ink:          #0b1110;
  --bg:           #111817;
  --bg-raise:     #161e1c;
  --bg-recess:    #0e1514;

  /* --- lines ---------------------------------------------------------- */
  --line:         #1f2826;
  --line-strong:  #2c3733;

  /* --- type ----------------------------------------------------------- */
  --text:         #b7bdb8;
  --text-strong:  #e4e7e2;
  --text-bright:  #f6f7f5;
  --muted:        #8c948e;
  --faint:        #5e665f;

  /* --- accent --------------------------------------------------------- */
  --accent:       #bcdf9c;
  --accent-deep:  #7d9a69;
  --accent-wash:  rgba(188, 223, 156, 0.07);
  --on-accent:    #0f1615;

  /* --- stacks --------------------------------------------------------- */
  --sans: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;

  /* --- layout --------------------------------------------------------- */
  --wrap:     1140px;
  --gutter:   28px;
  --header-h: 64px;
  --radius:   4px;
  --radius-lg: 8px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  /* Keeps anchor targets clear of the sticky header — without this every
     in-page jump parks the heading underneath the nav bar. */
  scroll-padding-top: calc(var(--header-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1;
}

::selection { background: var(--accent); color: var(--on-accent); }

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

img { max-width: 100%; }

/* Structural label: mono, uppercase, quiet. Used for indices, eyebrows,
   metadata keys, table headers — anywhere the page is labelling rather
   than speaking. */
.label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--faint);
}

.shell {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: var(--on-accent);
  padding: 10px 16px;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .site-header { background: rgba(17, 24, 23, 0.92); }
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: var(--text-bright);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  flex: none;
}
.brand-mark {
  align-self: center;
  width: 26px;
  height: 26px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.brand-tag {
  color: var(--faint);
  font-weight: 400;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s var(--ease);
}
.site-nav a:hover { color: var(--text-bright); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--text-strong);
  border-radius: var(--radius);
  padding: 7px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-toggle:hover { border-color: var(--accent-deep); color: var(--text-bright); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border-radius: var(--radius);
  padding: 13px 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.16s var(--ease), border-color 0.16s var(--ease),
              color 0.16s var(--ease), transform 0.16s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: #cbebad; }

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text-strong);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--accent-deep); background: var(--bg-raise); color: var(--text-bright); }

.btn-small { padding: 9px 14px; font-size: 13.5px; }
.btn-big   { padding: 15px 24px; font-size: 15.5px; }

/* --------------------------------------------------------------------------
   Hero — full-width editorial block, product shot below the rule
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: 72px 0 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -280px;
  left: 50%;
  width: 1100px;
  height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(188, 223, 156, 0.09), transparent 100%);
  pointer-events: none;
}
.hero > .shell { position: relative; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  flex-wrap: wrap;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}
.eyebrow .sep { color: var(--line-strong); }
.eyebrow .tag { color: var(--accent-deep); }

/* The headline's measure is deliberately wide: constrained to ~20ch it broke
   "agent-driven" across lines at the hyphen. At this size it settles into two
   clean lines on desktop. */
.hero h1 {
  margin: 0 0 22px;
  color: var(--text-bright);
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.032em;
  font-weight: 600;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.lede {
  margin: 0;
  max-width: 62ch;
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0 0;
}

/* Quickstart bar — one of the few genuinely "boxed" elements on the page. */
.quickstart {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
  max-width: 640px;
  background: var(--bg-recess);
  border: 1px solid var(--line);
  border-left: 2px solid var(--accent-deep);
  border-radius: var(--radius);
  padding: 11px 14px;
}
.quickstart code {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-bright);
}
.copy-btn {
  margin-left: auto;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  border-radius: 3px;
  padding: 5px 11px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.copy-btn:hover { color: var(--text-bright); border-color: var(--accent-deep); }
.copy-btn[data-state="done"] { color: var(--accent); border-color: var(--accent-deep); }

/* Ruled stats strip — replaces the four identical boxes. */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats > div {
  padding: 20px 24px 20px 0;
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.stats > div:first-child { border-left: 0; padding-left: 0; }
.stats dt {
  color: var(--text-bright);
  font-weight: 600;
  font-size: 25px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}
.stats dd {
  margin: 6px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--faint);
}

/* Framed product shot */
.frame {
  margin: 0;
  background: var(--bg-recess);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 2px 6px rgba(0, 0, 0, 0.5),
    0 30px 70px -24px rgba(0, 0, 0, 0.85);
}
.frame img { width: 100%; height: auto; display: block; }
.frame figcaption {
  font-size: 13px;
  color: var(--faint);
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  background: var(--bg-raise);
}
.frame figcaption .fig-dim { color: var(--accent-deep); }

.hero-shot { margin: 56px 0 0; }

.shot { margin: 34px 0 0; }

/* --------------------------------------------------------------------------
   Lean strip
   -------------------------------------------------------------------------- */

.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-recess); margin-top: 84px; }
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--faint);
}
.strip-inner span::before { content: "—"; margin-right: 10px; color: var(--line-strong); }

/* --------------------------------------------------------------------------
   Sections — numbered, rule-topped
   -------------------------------------------------------------------------- */

.sec { padding-top: 84px; }

.sec-head {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 0 20px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.sec-num {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-deep);
  letter-spacing: 0.06em;
  padding-top: 7px;
}
.sec-head h2 {
  margin: 0;
  max-width: 24ch;
  color: var(--text-bright);
  font-size: clamp(25px, 3.1vw, 36px);
  line-height: 1.14;
  letter-spacing: -0.024em;
  font-weight: 600;
  text-wrap: balance;
}
.sec-lede {
  margin: 14px 0 0;
  max-width: 66ch;
  color: var(--muted);
  font-size: 16.5px;
}
.sec-head .sec-lede code { font-family: var(--mono); font-size: 14px; color: var(--text-strong); }

.sec-body { margin-top: 34px; }

/* Two-column prose (Why) */
.prose-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 48px;
  margin-left: 88px;
}
.prose-2 p { margin: 0; color: var(--muted); font-size: 16.5px; }
.prose-2 p:first-child { color: var(--text); }

/* --------------------------------------------------------------------------
   Feature layouts — deliberately two different patterns so the page has
   rhythm instead of one card grid repeated down the scroll.
   -------------------------------------------------------------------------- */

/* Pattern A: lead feature + two supporting (Flow Mode) */
.feature-split {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.f-lead {
  grid-column: span 7;
  background: linear-gradient(160deg, var(--accent-wash), transparent 62%), var(--bg-raise);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
}
.f-side {
  grid-column: span 5;
  display: grid;
  gap: 16px;
  align-content: start;
}
.f-mini {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.f-mini:hover { border-color: var(--line-strong); background: var(--bg-raise); }

.f-lead h3, .f-mini h3 {
  margin: 0 0 9px;
  color: var(--text-bright);
  font-weight: 600;
  letter-spacing: -0.012em;
}
.f-lead h3 { font-size: 20px; }
.f-mini h3 { font-size: 16.5px; }
.f-lead p, .f-mini p { margin: 0; color: var(--muted); }
.f-lead p { font-size: 15.5px; max-width: 54ch; }
.f-mini p { font-size: 14.5px; }
.f-lead code, .f-mini code { font-family: var(--mono); font-size: 13px; color: var(--text-strong); }

/* Pattern B: ruled spec list (Editor) */
.spec {
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}
.spec-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 0 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.spec-row dt {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-strong);
  padding-top: 4px;
}
.spec-row dd { margin: 0; color: var(--muted); font-size: 16px; }
.spec-row dd code { font-family: var(--mono); font-size: 13.5px; color: var(--text-strong); }

/* Key hint rows (shared) */
.keys {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  font-size: 14px;
  color: var(--muted);
}
.keys li { display: flex; align-items: center; gap: 10px; }

kbd {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-strong);
  background: var(--bg-raise);
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  padding: 3px 7px;
  line-height: 1.4;
  white-space: nowrap;
}

code { font-family: var(--mono); }

/* --------------------------------------------------------------------------
   Dim Mode — copy beside a tight shot
   -------------------------------------------------------------------------- */

.split-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 40px;
  align-items: start;
  margin-left: 88px;
}
.split-2 .shot { margin-top: 0; }

/* Checklist — a small marker with hanging indent; colour carries meaning
   (moss = true, faint = a limit rather than a feature). */
.checklist {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  color: var(--muted);
  font-size: 15.5px;
}
.checklist li { position: relative; padding-left: 20px; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--accent-deep);
}
.checklist.is-limits li::before { background: var(--line-strong); }

/* --------------------------------------------------------------------------
   Tables — rules only, no outer box
   -------------------------------------------------------------------------- */

.table-wrap { margin-top: 30px; overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  border-top: 1px solid var(--line-strong);
}
th, td {
  text-align: left;
  padding: 13px 18px 13px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--faint);
  padding-top: 11px;
  padding-bottom: 11px;
}
td { color: var(--muted); font-variant-numeric: tabular-nums; }
td:first-child { color: var(--text-strong); }
/* Keep the label column from claiming half the table. */
th:first-child, td:first-child { width: 32%; }
td strong { color: var(--accent); font-weight: 600; }
tbody tr:hover td { background: rgba(255, 255, 255, 0.015); }

/* --------------------------------------------------------------------------
   Not / Roadmap
   -------------------------------------------------------------------------- */

.pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 56px;
  margin-left: 88px;
}
.pair h3 {
  margin: 0 0 4px;
  color: var(--text-bright);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.pair .checklist { margin-top: 18px; }

.roadmap {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 15.5px;
}
.roadmap li { counter-increment: step; position: relative; padding-left: 34px; }
.roadmap li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.1em;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--accent-deep);
  letter-spacing: 0.04em;
}
.note { margin: 22px 0 0; font-size: 14px; color: var(--faint); }

/* --------------------------------------------------------------------------
   Download
   -------------------------------------------------------------------------- */

.dl {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--bg-raise);
  overflow: hidden;
}
.dl::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep) 45%, transparent);
}
.dl-main { padding: 36px 38px; }
.dl-main h2 {
  margin: 12px 0 10px;
  color: var(--text-bright);
  font-size: clamp(24px, 2.8vw, 32px);
  letter-spacing: -0.024em;
  font-weight: 600;
}
.dl-main .lede { font-size: 16px; }

.dl-meta {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.dl-meta li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  align-items: baseline;
}
.dl-meta .label { padding-top: 2px; }
.dl-meta code, .dl-meta strong {
  color: var(--text-strong);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 400;
  word-break: break-all;
}
.dl-meta strong { color: var(--accent); }
.dl .cta-row { margin-top: 26px; }

.dl-side {
  padding: 36px 38px;
  background: var(--bg-recess);
  border-left: 1px solid var(--line);
}
.dl-side h3 {
  margin: 0 0 18px;
  color: var(--text-bright);
  font-size: 16px;
  font-weight: 600;
}
.dl-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: dlstep;
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 15px;
}
.dl-steps li { counter-increment: dlstep; position: relative; padding-left: 32px; }
.dl-steps li::before {
  content: counter(dlstep);
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--accent-deep);
}
.dl-side .quickstart { margin-top: 22px; max-width: none; }
.dl-side .note { margin-top: 20px; line-height: 1.55; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  margin-top: 96px;
  border-top: 1px solid var(--line);
  background: var(--bg-recess);
  padding: 34px 0 44px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-brand {
  margin: 0 0 6px;
  color: var(--text-bright);
  font-weight: 600;
  font-size: 15px;
}
.footer-brand span { color: var(--faint); font-weight: 400; }
.footer-meta { margin: 0; font-size: 13px; color: var(--faint); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s var(--ease);
}
.footer-links a:hover { color: var(--text-bright); }
.footer-rule {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--faint);
  line-height: 1.6;
}
.footer-rule p { margin: 0; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .brand-tag { display: none; }
}

@media (max-width: 980px) {
  :root { --gutter: 22px; }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    margin: 0;
    padding: 14px var(--gutter) 20px;
    flex-direction: column;
    gap: 2px;
    background: var(--bg-raise);
    border-bottom: 1px solid var(--line-strong);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.8);
  }
  .site-nav a { padding: 9px 0; font-size: 15px; }
  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .header-inner { position: relative; }

  .hero { padding-top: 52px; }
  .hero h1 { max-width: none; }
  .hero-shot { margin-top: 44px; }

  .sec { padding-top: 64px; }
  .sec-head { grid-template-columns: 1fr; gap: 0; }
  .sec-num { padding-top: 0; margin-bottom: 10px; }

  .prose-2, .split-2, .pair { margin-left: 0; }
  .prose-2, .split-2, .pair { grid-template-columns: 1fr; gap: 22px; }

  .f-lead, .f-side { grid-column: span 12; }
  .f-side { gap: 16px; }

  .spec-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .spec-row dt { padding-top: 0; }

  .dl { grid-template-columns: 1fr; }
  .dl-side { border-left: 0; border-top: 1px solid var(--line); }
  .dl-main, .dl-side { padding: 28px 24px; }

  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats > div { padding: 16px 0 16px 20px; }
  .stats > div:nth-child(odd) { border-left: 0; padding-left: 0; }
  .stats > div:nth-child(n + 3) { border-top: 1px solid var(--line); }
}

@media (max-width: 560px) {
  .hero h1 { font-size: clamp(32px, 9vw, 40px); }
  .lede { font-size: 16.5px; }
  .cta-row .btn { width: 100%; }
  .stats { grid-template-columns: 1fr; }
  .stats > div { padding-left: 0; border-left: 0; }
  .stats > div + div { border-top: 1px solid var(--line); }
  .dl-meta li { grid-template-columns: 1fr; gap: 4px; }
}

/* --------------------------------------------------------------------------
   Motion preferences
   -------------------------------------------------------------------------- */

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