/* Footer visitor / version widget — dark footer (landing) and light (terms) */

.footer-stats {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}
.footer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  min-width: 72px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-stat:last-child { border-right: none; }
.footer-stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}
.footer-stat-value {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  font-variant-numeric: tabular-nums;
}

.footer-stats--light {
  border-color: var(--mm-border, #e5e7eb);
  background: var(--mm-surface, #f9fafb);
}
.footer-stats--light .footer-stat {
  border-right-color: var(--mm-border, #e5e7eb);
}
.footer-stats--light .footer-stat-label {
  color: var(--mm-muted, #6b7280);
}
.footer-stats--light .footer-stat-value {
  color: var(--mm-text, #111827);
}
