/* ==========================================================================
   stats.css — key stats trust bar, overlapping the hero/about boundary
   ========================================================================== */

.stats {
  position: relative;
  z-index: 10;
  margin-top: -64px;
}

.stats__card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-7) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35em;
  flex: 1;
  min-width: 0;
}

.stats__number {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: var(--indigo-700);
  line-height: 1;
  background: var(--grad-ember);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats__number--text {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
}

.stats__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
  line-height: 1.4;
}
.stats__label small {
  font-weight: 500;
  color: var(--steel-600);
  font-size: 0.92em;
}

.stats__divider {
  width: 1px;
  align-self: stretch;
  background: var(--steel-200);
  flex: none;
}

@media (max-width: 860px) {
  .stats {
    margin-top: -40px;
  }
  .stats__card {
    flex-wrap: wrap;
    row-gap: var(--sp-6);
    padding: var(--sp-6) var(--sp-5);
  }
  .stats__item {
    width: calc(50% - var(--sp-3));
    flex: none;
  }
  .stats__divider {
    display: none;
  }
}

@media (max-width: 460px) {
  .stats__item {
    width: 100%;
  }
}
