/* Front-page stat ribbon - label on top, value below, equal height */
.fp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  padding: 28px 0;
}
.fp-stat {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--rule);
}
.fp-stat:last-child {
  border-right: none;
}
.fp-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-stat-value {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.fp-stat--signal .fp-stat-value {
  color: var(--signal);
}
@media (max-width: 768px) {
  .fp-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }
  .fp-stat:nth-child(2) {
    border-right: none;
  }
  .fp-stat-value {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .fp-stats {
    grid-template-columns: 1fr;
    gap: 16px 0;
  }
  .fp-stat {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 16px;
  }
  .fp-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
