@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}
.atc-pulse { animation: pulse 0.6s ease-in-out; }
