/* ==========================================================================
   Home — Page-specific styles for homepage
   ========================================================================== */

/* Social proof strip — inside the hero card */
.proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-2xl);
  border-top: 1px solid var(--color-border);
}

.proof__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  min-width: 0;
}

.proof__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  font-size: 18px;
  flex-shrink: 0;
}

.proof__text {
  display: flex;
  flex-direction: column;
}

.proof__value {
  font-size: 15px;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  line-height: 1.2;
}

.proof__label {
  font-size: 11px;
  color: var(--color-text-secondary);
  font-family: var(--font-mono);
}

/* Vertical dividers */
.proof__divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* Mobile: stack proof items */
@media (max-width: 768px) {
  .proof {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-lg);
  }

  .proof__divider {
    display: none;
  }

  .proof__item {
    width: 100%;
  }
}
