@keyframes amazeta-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(2%, -3%) scale(1.05);
  }
}

@keyframes amazeta-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--amazeta-ease), transform 600ms var(--amazeta-ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.amazeta-badge {
  animation: amazeta-pulse 4s ease-in-out infinite;
}

.amazeta-badge:nth-child(2) {
  animation-delay: 0.5s;
}

.amazeta-badge:nth-child(3) {
  animation-delay: 1s;
}

.amazeta-badge:nth-child(4) {
  animation-delay: 1.5s;
}

.amazeta-badge:nth-child(5) {
  animation-delay: 2s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .amazeta-hero::before {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .amazeta-badge {
    animation: none;
  }

  .amazeta-modal__panel {
    transform: none;
    transition: none;
  }

  .amazeta-btn:hover,
  .amazeta-card:hover {
    transform: none;
  }
}
