@keyframes glow-move {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -14px, 0) scale(1.04); }
}

@keyframes line-drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-16deg); opacity: 0.32; }
  50% { transform: translate3d(18px, -10px, 0) rotate(-16deg); opacity: 0.58; }
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255, 216, 77, 0.12); }
  50% { box-shadow: 0 0 0 11px rgba(255, 216, 77, 0.025); }
}

@keyframes shine-text {
  0% { background-position: 200% center; }
  100% { background-position: 0% center; }
}

@keyframes soft-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.glow {
  animation: glow-move 12s ease-in-out infinite;
}

.glow-yellow {
  animation-duration: 15s;
  animation-delay: -4s;
}

.line {
  animation: line-drift 13s ease-in-out infinite;
}

.line-two {
  animation-duration: 17s;
  animation-delay: -5s;
}

.brand img {
  animation: soft-breathe 5.5s ease-in-out infinite;
}

.status-dot {
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.accent {
  animation: shine-text 5.2s linear infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-left {
  transform: translateX(-18px);
}

.reveal-right {
  transform: translateX(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.card:nth-child(2).reveal {
  transition-delay: 0.08s;
}

.card:nth-child(3).reveal {
  transition-delay: 0.16s;
}

@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;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}
