/* ========================================================================
   v3 extras — outcomes band ("the 20-second version") + small overrides.
   Loaded after styles-v2.css and styles-v2-sections.css.
   ======================================================================== */

/* ── Outcomes band ────────────────────────────────────────────────────── */
.outcomes {
  background: var(--mist);
  border-bottom: 1px solid var(--ink-200);
}
.outcomes-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) var(--gutter);
}
.outcomes-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--azure);
  margin: 0 0 14px;
}
.outcomes-eyebrow::before {
  content: "";
  width: 18px; height: 2px;
  background: var(--azure);
}
.outcomes-title {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--oxford);
  margin: 0 0 8px;
  text-wrap: balance;
  max-width: 24ch;
}
.outcomes-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-600);
  margin: 0 0 clamp(28px, 3vw, 44px);
  max-width: 58ch;
  text-wrap: pretty;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .outcomes-grid { grid-template-columns: 1fr; } }
.outcome-card {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-xs);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.outcome-card:hover { border-color: var(--baby); box-shadow: var(--shadow-sm); }
.outcome-metric {
  align-self: flex-start;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--azure-press);
  background: var(--sky);
  padding: 4px 10px;
  border-radius: 0.5rem;
}
.outcome-card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--oxford);
  text-wrap: balance;
}
.outcome-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-700);
  text-wrap: pretty;
}

/* ── Stat footnote tweak: keep commits as a quiet supporting line ──────── */
.stat .foot .muted { color: var(--ink-400); }
