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

@keyframes cc-pulse-soft {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

@keyframes stat-glow {
  from {
    box-shadow: 0 0 0 0 rgba(219, 39, 119, 0.35);
  }
  to {
    box-shadow: 0 0 0 12px rgba(219, 39, 119, 0);
  }
}

.cc-animate-in {
  animation: cc-section-in 0.6s ease-out forwards;
}

.hero-bg-anim {
  animation: cc-pulse-soft 14s ease-in-out infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  .cc-animate-in,
  .hero-bg-anim,
  .stat-card--pulse {
    animation: none !important;
  }
}
