.reveal {
  opacity: 0;
  transform: translateY(34px) scale(.98);
  filter: blur(8px);
  transition: opacity .85s cubic-bezier(.2,.8,.2,1), transform .85s cubic-bezier(.2,.8,.2,1), filter .85s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.feature-card,
.program-card,
.price-card,
.testimonial-card,
.result-card,
.value-card,
.trust-card {
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.feature-card:hover,
.price-card:hover,
.testimonial-card:hover,
.result-card:hover,
.value-card:hover,
.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, .5);
  box-shadow: var(--glow-red), var(--glow-cyan), 0 24px 70px rgba(0, 0, 0, .42);
}

.hero__media img,
.page-hero__media {
  will-change: transform;
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 9, 20, .42);
  }
  100% {
    box-shadow: 0 0 0 24px rgba(229, 9, 20, 0);
  }
}

@keyframes cueDrop {
  0% { transform: translate(-50%, 0); opacity: 1; }
  80% { transform: translate(-50%, 16px); opacity: 0; }
  100% { transform: translate(-50%, 16px); opacity: 0; }
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.play-button {
  animation: pulseRing 1.7s ease-out infinite;
}

.hero__media img {
  animation: heroBreath 10s ease-in-out infinite alternate;
}

@keyframes heroBreath {
  from { filter: saturate(1.15) contrast(1.08) brightness(.96); }
  to { filter: saturate(1.35) contrast(1.12) brightness(1.08); }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
