/* ============================================================
   The Data Section
   Figma node: 29:55 | Canvas: 1440px
   White bg, heading block + 3 stats + footnote
   ============================================================ */

.bs-data {
  background: #ffffff;
  padding: clamp(56px, 6.94vw, 100px) clamp(24px, 6.67vw, 96px);
  box-sizing: border-box;
  width: 100%;
}

/* ── Container ── */
.bs-data__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 3.89vw, 56px);
  text-align: center;
  width: 100%;
}

/* ── Header block: eyebrow + subheading, gap 12px ── */
.bs-data__header {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.83vw, 12px);
  width: 100%;
}

/* Eyebrow — Inter Bold 700, 54px, navy */
.bs-data__eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.75vw, 54px);
  line-height: 1.3;
  color: #21254a;
  margin: 0;
  text-transform: uppercase;
}

/* Subheading — Inter SemiBold 600, 32px, navy */
.bs-data__subheading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.22vw, 32px);
  line-height: 1.3;
  color: #21254a;
  margin: 0;
}

/* ── Stats row — 3 equal flex columns, gap 24px ── */
.bs-data__stats {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 1.67vw, 24px);
  width: 100%;
}

.bs-data__stat {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.11vw, 16px);
}

/* Big number — Inter Black 900, 76px, pure black */
.bs-data__stat-number {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5.28vw, 76px);
  line-height: 1.15;
  color: #000000;
  margin: 0;
}

/* Body area: description + citation, gap 8px */
.bs-data__stat-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

/* Stat description — Inter Regular 400, 22px, navy */
.bs-data__stat-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.53vw, 22px);
  line-height: 1.55;
  color: #21254a;
  margin: 0;
}

/* Citation — Inter Italic, 12px, navy 90% opacity */
.bs-data__stat-citation {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(10px, 0.83vw, 12px);
  line-height: 1.55;
  color: rgba(33, 37, 74, 0.9);
  margin: 0;
}

/* ── Footnote — Regular 400, 22px, centered, max 740px ── */
.bs-data__footnote {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.53vw, 22px);
  line-height: 1.55;
  color: #21254a;
  text-align: center;
  max-width: 740px;
  margin: 0;
}

/* ── Tablet: ≤ 1023px ── */
@media (max-width: 1023px) {
  .bs-data__stats {
    gap: clamp(16px, 3vw, 32px);
  }
}

/* ── Mobile: ≤ 599px — stack to 1 column ── */
@media (max-width: 599px) {
  .bs-data {
    padding: 40px 20px;
  }

  .bs-data__stats {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .bs-data__stat {
    flex: none;
    width: 100%;
    max-width: 320px;
  }

  .bs-data__stat-number {
    font-size: clamp(48px, 12vw, 64px);
  }
}
