@media (prefers-reduced-motion: no-preference) {
  .workbench,
  .feature-card,
  .price-card {
    animation: rise-in 460ms ease both;
  }

  .feature-card:nth-child(2),
  .price-card:nth-child(2) {
    animation-delay: 70ms;
  }

  .feature-card:nth-child(3),
  .price-card:nth-child(3) {
    animation-delay: 120ms;
  }

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