.title-letter,
.title-year {
  transform-origin: 50% 100%;
}

@keyframes softPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes shimmerFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.9;
  }

  50% {
    transform: translate3d(0, -6px, 0);
    opacity: 1;
  }
}

.video-orb {
  animation: softPulse 6s ease-in-out infinite;
}

.highlight-vibe {
  animation: shimmerFloat 5.2s ease-in-out infinite;
}

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

  [data-reveal],
  [data-reveal-line],
  .title-letter,
  .title-year,
  .countdown-card,
  .hero-actions {
    opacity: 1 !important;
    transform: none !important;
  }
}
