/* ============================================================================
   ABOUT PAGE — extends the shared landing.css component system.
   Only page-specific helpers live here; everything else (sections, type,
   buttons, splits, steps, checklist, CTA) is reused from landing.css so the
   page stays fully consistent with the homepage and dashboard theme.
   ========================================================================= */

.about-hero {
  padding-top: clamp(56px, 8vw, 104px);
  text-align: center;
}

.about-hero .lp-display {
  margin-top: var(--space-5);
}

.about-hero__actions {
  margin-top: var(--space-7);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

/* Numeric figures — a clean monochrome data band (no icon cards) */
.about-figures {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-border);
  overflow: hidden;
}

.about-figure {
  background: var(--color-surface);
  padding: clamp(20px, 3vw, 28px);
}

.about-figure__value {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  font-feature-settings: "tnum";
  color: var(--color-text);
}

.about-figure__label {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-muted);
}

@media (min-width: 720px) {
  .about-figures--row {
    grid-template-columns: repeat(3, 1fr);
  }
}
