/* landing/css/landing.css */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Subtle gradient on hero */
header {
    background: linear-gradient(180deg, #f0f0ff 0%, #ffffff 100%);
}

/* Pulse animation for CTA hint */
@keyframes pulse-subtle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.animate-pulse {
    animation: pulse-subtle 2s ease-in-out infinite;
}
