/* Metrics Bar (Proof Bar) Styles — Scoped under .common-metrics */
.common-metrics {
  --mb-bg: oklch(18% 0.04 260);
  --mb-surface: rgba(255, 255, 255, 0.04);
  --mb-fg: #fff;
  --mb-muted: rgba(255, 255, 255, 0.5);
  --mb-soft: rgba(255, 255, 255, 0.85);
  --mb-border: rgba(255, 255, 255, 0.08);
  --mb-accent: oklch(58% 0.20 30);
  --mb-exclusive: oklch(25% 0.04 255);
  --mb-font-display: 'Playfair Display', Georgia, serif;
  --mb-font-strong: 'Montserrat', sans-serif;
  --mb-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  --mb-font-mono: 'JetBrains Mono', ui-monospace, monospace;
  background:
    radial-gradient(farthest-side at 100% 100%, oklch(58% 0.20 30 / 40%) 0%, transparent 60%),
    radial-gradient(farthest-corner at 85% 100%, oklch(48% 0.18 30 / 20%) 0%, transparent 50%),
    linear-gradient(160deg, oklch(18% 0.04 260) 0%, oklch(21% 0.04 255) 50%, oklch(23% 0.05 45) 100%);
  position: relative;
  overflow: hidden;
  padding: 40px 0 60px;
}

.common-metrics::before {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 0;
}

.common-metrics::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 0;
}

.common-metrics .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.common-metrics .metrics-label {
  text-align: center;
  font-family: var(--mb-font-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin-bottom: 32px;
}

/* Metrics Card Pattern (Aura) */
.common-metrics .metrics-card-aura {
  border: 1px solid var(--mb-border);
  border-radius: 16px;
  background: var(--mb-surface);
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  box-shadow: 0 0 60px oklch(58% 0.20 30 / 10%);
  margin: 40px 0;
}

@media (max-width: 768px) {
  .common-metrics .metrics-card-aura {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 40px;
  }
}

.common-metrics .metric-item-aura {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common-metrics .metric-num-aura {
  font-family: var(--mb-font-display);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.common-metrics .metric-title-aura {
  font-family: var(--mb-font-strong);
  font-weight: 600;
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.common-metrics .metric-desc-aura {
  font-family: var(--mb-font-body);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-top: 4px;
}