/* ==========================================================================
   Animations — kept for compatibility; motion lives in performance.css
   ========================================================================== */

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes form-shake {
  0%, 100% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(-4px, 0, 0); }
  75% { transform: translate3d(4px, 0, 0); }
}
