@keyframes cc-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cc-panel-in {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes stat-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.25);
  }
  50% {
    box-shadow: 0 0 24px 2px rgba(168, 85, 247, 0.2);
  }
}

@keyframes hero-orbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cc-animate-banner {
  animation: cc-fade-in 0.45s ease-out forwards;
}

.cc-animate-panel {
  animation: cc-panel-in 0.35s ease-out forwards;
}

.stat-card-pulse {
  animation: stat-glow 4s ease-in-out infinite;
}

.hero-deco-ring {
  animation: hero-orbit 48s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .cc-animate-banner,
  .cc-animate-panel,
  .stat-card-pulse,
  .hero-deco-ring {
    animation: none;
  }
}

.stat-number {
  font-variant-numeric: tabular-nums;
}
