
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-body);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--brand);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
a:hover { color: var(--brand-soft); text-decoration: underline; }
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}
h1 {
  font-family: var(--font-display);
  font-size: var(--display-md);
  line-height: var(--lh-snug);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
h2 {
  font-size: var(--display-sm);
  line-height: var(--lh-snug);
}
h2.section {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
h2.section .icon { color: var(--brand); width: 1.15em; height: 1.15em; }
p { margin: 0; }
p + p { margin-top: var(--space-3); }
.lead {
  font-size: var(--text-lead);
  line-height: var(--lh-lead);
  color: var(--ink-soft);
  max-width: 36rem;
}
/* Secondary copy: held a step down in SIZE for hierarchy, but kept at full
   ink (not muted gray) so it stays legible — dim gray body text is the main
   thing that makes a dark UI hard to read. */
.muted, .quiet { color: var(--ink); font-size: var(--text-xs); }
.stat { font-variant-numeric: tabular-nums; font-weight: 600; }
/* The one hero number on a screen (the qualifying-month count) carries the
   accent, matching the pin meter — energy from type + one orange. */
.stat.brand { color: var(--brand); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.icon {
  width: 1.05em; height: 1.05em;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  vertical-align: -0.18em; flex-shrink: 0;
}
.icon.icon-filled { stroke: none; fill: currentColor; }
.row { display: flex; gap: var(--space-3); align-items: center; flex-wrap: wrap; }
.stack > * + * { margin-top: var(--space-4); }
.cta-row { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-4); }
/* A submit-only form sits in a cta-row like a bare button: dissolve its box so
   the button itself becomes the flex item, aligned with sibling links. */
.cta-row > form { display: contents; }
