/* ============================================================================
   copyleast — About page
   Two image/text splits, value-card grids, a dark "by the numbers" block.
   ========================================================================== */

/* ── Image / text splits ──────────────────────────────────────────────────── */
.about-split {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .about-split--mission {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }
  .about-split--trust {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
  }
}
.about-fig {
  margin-inline: auto;
  width: 100%;
  max-width: 20rem;
}
@media (min-width: 1024px) {
  .about-fig--mission {
    max-width: 24rem;
  }
}
.about-fig__cap {
  margin-top: var(--sp-3);
  text-align: center;
  color: var(--neutral-400);
}
/* Seal figure: after the copy on mobile, before it on desktop (order-last → lg:order-first). */
.about-fig--seal {
  order: 2;
}
@media (min-width: 1024px) {
  .about-fig--seal {
    order: -1;
  }
}

/* ── Value / promise card grids ───────────────────────────────────────────── */
.about-cards {
  margin-top: 3.5rem;
  display: grid;
  gap: var(--sp-4);
}
@media (min-width: 768px) {
  .about-cards--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about-card__title {
  margin-top: var(--sp-8);
  color: var(--neutral-950);
}
.about-card__body {
  margin-top: var(--sp-3);
  color: var(--neutral-500);
  line-height: 1.625;
}

/* ── By the numbers — dark evidence block ─────────────────────────────────── */
.numbers {
  background: var(--neutral-950);
  color: var(--neutral-0);
  padding-block: var(--sp-20);
}
@media (min-width: 768px) {
  .numbers {
    padding-block: 7rem; /* 112px */
  }
}
.numbers__head {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}
.numbers__overline {
  color: var(--brand-500);
}
.numbers__title {
  margin-top: var(--sp-4);
  color: var(--neutral-0);
}
.numbers__lead {
  margin-inline: auto;
  margin-top: var(--sp-5);
  max-width: var(--max-ui);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--neutral-300);
}
.numbers__grid {
  margin-inline: auto;
  margin-top: 3.5rem;
  max-width: 56rem;
  display: grid;
  gap: 2.5rem 2rem;
}
@media (min-width: 640px) {
  .numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .numbers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.numbers__figure {
  font-family: var(--font-mono);
  color: var(--brand-500);
}
.numbers__label {
  margin-top: var(--sp-2);
  color: var(--neutral-400);
  line-height: 1.625;
}

/* CTA reassurance link */
.cta-banner__reassurance a {
  font-weight: 500;
  color: var(--brand-700);
  text-underline-offset: 4px;
}
.cta-banner__reassurance a:hover {
  text-decoration: underline;
}
