/* V3 cleanup: keeps the mobile entry state visible after its transition. */
@media (max-width: 760px) {
  @keyframes fade-up {
    from {
      opacity: 0;
      transform: translateY(12px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
