@media (prefers-reduced-motion: no-preference) {
  .reveal {
    animation: reveal-up 520ms ease both;
  }

  .reveal:nth-child(2) {
    animation-delay: 80ms;
  }

  .reveal:nth-child(3) {
    animation-delay: 140ms;
  }

  @keyframes reveal-up {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes pointRight {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(6px);
    }
  }

  .animate-point {
    display: inline-block;
    animation: pointRight 1.2s infinite ease-in-out;
  }

  @keyframes bmc-pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2) rotate(6deg);
    }
  }

  @keyframes bmc-steam {
    0%, 100% {
      transform: translateY(0) rotate(0deg);
    }
    50% {
      transform: translateY(-3px) rotate(4deg);
    }
  }
}

