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

@keyframes cc-panel-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stat-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.35);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(20, 184, 166, 0);
  }
}

@keyframes stat-count-glow {
  from {
    color: #eaf7f1;
  }
  to {
    color: #14b8a6;
  }
}

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

.cc-panel-animate {
  animation: cc-panel-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.stat-ring-animate {
  animation: stat-pulse 2.4s ease-in-out infinite;
}

.stat-value-done {
  animation: stat-count-glow 0.6s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  .cc-banner-animate,
  .cc-panel-animate,
  .stat-ring-animate,
  .stat-value-done {
    animation: none !important;
  }
}
