/* KTI Animations */
@keyframes dgrFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dgrPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233, 69, 96, .4); }
  50%      { box-shadow: 0 0 0 12px rgba(233, 69, 96, 0); }
}
.kti-fade-up { animation: dgrFadeUp 500ms var(--ease) both; }
.kti-cta { animation: dgrPulse 2.4s var(--ease) infinite; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0ms !important;
    transition-duration: 0ms !important;
  }
}
