/* ==========================================================================
   intro.css — lede paragraph and the stats row
   Split out of the original components.css; load order is preserved
   exactly, because several rules here depend on source order.
   ========================================================================== */

/* ---- Intro ---- */
.intro-lead {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.4;
  letter-spacing: -0.8px;
  color: var(--black);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-inline: 64px;
  border-left: 1px solid var(--lime-border);
}
.stat:first-child { padding-left: 0; border-left: none; }
.stat-label {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--lime-label);
}
.stat-value {
  font-size: clamp(32px, 3.6vw, 48px);
  letter-spacing: -0.96px;
  color: var(--black);
  white-space: nowrap;
}

