/* ==========================================
   animations.css - Keyframes & Micro-animations
   ========================================== */
@keyframes pulseGlow {
  0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232, 121, 26, 0.7); }
  70%  { transform: scale(1);    box-shadow: 0 0 0 8px rgba(232, 121, 26, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232, 121, 26, 0); }
}
