.reveal {
  animation: rise-in 0.7s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

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

@keyframes particle-rise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  85% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) translateX(var(--drift, 34px));
    opacity: 0;
  }
}

@keyframes text-shimmer {
  0%,
  60%,
  100% {
    background-position: 0% center;
  }
  30% {
    background-position: 100% center;
  }
}

@keyframes badge-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70%,
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@keyframes cta-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.feature-grid,
.persona-grid,
.section-heading {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js-enabled .feature-grid:not(.in-view),
.js-enabled .persona-grid:not(.in-view),
.js-enabled .section-heading:not(.in-view) {
  opacity: 0;
  transform: translateY(24px);
}

.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .feature-grid,
  .persona-grid,
  .section-heading {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
