@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(78, 216, 157, 0.12);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(78, 216, 157, 0.04);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.reveal {
  animation: fade-up 650ms cubic-bezier(0.2, 0.75, 0.3, 1) both;
}

.reveal-delay {
  animation-delay: 120ms;
}

.status-dot {
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
