/* ═══════════════════════════════════════════
   STATS BAR — 숫자 강조 바
   ═══════════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, #091e30 0%, #0c2d48 100%);
  padding: 48px 0;
}
.stats-container {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  text-align: center;
}
.stats-row {
  display: flex; justify-content: center; align-items: baseline; gap: 32px;
}
.stats-row-top .stat-number {
  font-size: 48px; display: inline-block;
}
.stat-clock {
  display: flex; align-items: flex-end; justify-content: center; gap: 16px;
}
.dial-group {
  display: inline-flex; align-items: baseline; gap: 0;
}
.dial-group small {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 16px; color: rgba(255,255,255,0.5);
  margin-left: 2px;
}
.dial-static {
  font-variant-numeric: tabular-nums;
  letter-spacing: 2px;
}
.dial {
  display: inline-block; overflow: hidden;
  height: 1.15em; width: 0.5em;
  position: relative;
  font-variant-numeric: tabular-nums;
}
.dial-col {
  display: flex; flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.dial-col span {
  height: 1.15em; display: flex; align-items: center; justify-content: center;
}
.stats-container {
  position: relative;
  min-height: 120px;
}
#stats-phase1 {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  z-index: 2;
}
#stats-phase1.visible { opacity: 1; transform: translateY(0); }
#stats-phase1.fade-out { opacity: 0; transform: translateY(-20px); }
#stats-phase2 {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  z-index: 2;
}
#stats-phase2.visible { opacity: 1; }
#stats-phase2.fade-out { opacity: 0; transform: translateY(-20px); }
#stats-phase2 .stat-clock { justify-content: center; }
#stats-phase3 {
  display: flex; flex-direction: column; align-items: center;
  opacity: 0;
  transition: opacity 0.7s ease-out;
}
#stats-phase3.visible { opacity: 1; }
.clock-unit {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.clock-unit.visible { opacity: 1; transform: translateY(0); }

.stats-row-bottom { display: flex; justify-content: center; gap: 64px; }
.stats-row-bottom .stat-anim { min-width: 140px; }
.stats-row-bottom .stat-number { min-width: 100px; }
.stats-title {
  color: #fff;
  font-size: 40px; font-weight: 700; letter-spacing: 1px;
}
.stat-anim {
  text-align: center;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.stat-anim.visible { opacity: 1; transform: translateY(0); }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: inline-block; min-width: 80px;
}
.stat-unit {
  font-size: 24px; font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-left: 2px;
  vertical-align: baseline;
}
.stat-label {
  font-size: 18px; color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
