/* Landing-specific overrides; base typography comes from Tailwind app-shell + input.css */

.animate-text {
  animation: slideUpFade 0.8s ease-out forwards;
  opacity: 0;
}

.animate-button {
  animation: scaleIn 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

#mobile-menu.hidden {
  display: none;
}

#mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 40;
  backdrop-filter: blur(8px);
}

@media (prefers-reduced-motion: reduce) {
  .animate-text,
  .animate-button {
    animation: none;
    opacity: 1;
    transform: none;
  }
  html { scroll-behavior: auto; }
}
