/* The promise, stated as three figures. Tint band against the white agents grid
   above it, with the cards taking white so they still read as cards. */
.impact {
  background: var(--paper-warm);
  padding: clamp(48px, 7vh, 88px) 0;
  border-bottom: 1px solid var(--rule);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.impact-card {
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: clamp(24px, 3vw, 36px) clamp(18px, 2vw, 28px);
  text-align: center;
  min-width: 0;
}

.impact-value {
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--accent);
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.impact-label {
  font-size: var(--text-sm);
  line-height: var(--leading-body);
  color: var(--ink-muted);
  margin: 10px 0 0;
}

@media (max-width: 860px) {
  .impact-grid { grid-template-columns: minmax(0, 1fr); }
}
