/* Reserve this file for non-GSAP keyframes only. */

@keyframes softPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.86; }
}

.soft-pulse {
  animation: softPulse 2.4s ease-in-out infinite;
}
