/* Proof band for the case-study detail page: three headline figures on the
   brand blue field, sitting between the approach (split) and the testimonial.
   Reuses the intro-band color language (teal eyebrow, white heads, light copy)
   so it reads as a sibling of the blue overview band rather than a bolt-on. */

.stats {
  background-color: var(--dozen-blue);
  padding-block: var(--space-60);
}

.stats__eyebrow {
  margin: 0 0 var(--space-40);
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--dozen-teal);
}

.stats__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-40);
}

.stats__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.stats__figure {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: clamp(3rem, 2.1rem + 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--pure-white);
}

.stats__mark {
  margin-left: 0.08em;
  font-size: 0.5em;
  vertical-align: baseline;
  color: var(--dozen-teal);
}

.stats__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--h4-size);
  line-height: var(--h4-leading);
  /* Lightened from --light-purple, matching the intro band's vetted on-blue
     body color so it clears AA at the smaller mobile size. */
  color: #cdc9ec;
}

@media (min-width: 1024px) {
  .stats {
    padding-block: var(--space-80);
  }

  .stats__eyebrow {
    margin-bottom: var(--space-60);
    font-style: normal;
    font-size: var(--h4-size);
    line-height: var(--h4-leading);
  }

  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 82px;
  }
}
