/* ── mission + stats ────────────────────────────────────────── */

.mission-h { max-width: 760px; }

.proof .lede { margin-top: 14px; }

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 40px 0 12px;
}

.stat {
  padding: 22px 26px 20px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  background: var(--card);
}

/* Number first, label under it — the original's order. */
.stat-label {
  font-size: 14.5px;
  color: var(--ink-2);
  margin-top: 10px;
}

.stat-n {
  font-family: var(--display);
  font-size: clamp(44px, 5.6vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.02em;
  /* Denim's default figures are proportional (1 is much narrower than
     0); tnum makes every digit 620/1000em so the roller's windows all
     match and the number doesn't jitter as digits change. */
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}



@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr; }
}
