.trz-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--trz-ease), transform 0.7s var(--trz-ease);
}
.trz-reveal.is-in {
  opacity: 1;
  transform: none;
}

.trz-hero-copy > * {
  opacity: 0;
  transform: translateY(16px);
  animation: trz-rise 0.8s var(--trz-ease) forwards;
}
.trz-hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.trz-hero-copy > *:nth-child(2) { animation-delay: 0.15s; }
.trz-hero-copy > *:nth-child(3) { animation-delay: 0.25s; }
.trz-hero-copy > *:nth-child(4) { animation-delay: 0.35s; }
.trz-hero-copy > *:nth-child(5) { animation-delay: 0.45s; }

@keyframes trz-rise {
  to { opacity: 1; transform: none; }
}

.trz-rate-row.is-pulse {
  animation: trz-pulse 1.8s var(--trz-ease) infinite;
}
@keyframes trz-pulse {
  0%, 100% { box-shadow: inset 3px 0 0 var(--trz-cyan); }
  50% { box-shadow: inset 3px 0 0 var(--trz-blue), 0 0 0 4px rgba(31, 111, 255, 0.08); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .trz-reveal { opacity: 1; transform: none; }
  .trz-hero-copy > * { opacity: 1; transform: none; animation: none; }
  .trz-marquee-track { animation: none; }
  .trz-hero-stage .trz-float { animation: none; }
}

@media (max-width: 768px) {
  .trz-marquee-track { animation-duration: 55s; }
  .trz-rate-row.is-pulse { animation: none; }
}
