/* css/landing.css */
/* Minimal styles for the landing page (index.php) to avoid inline style bloat */

body {
    font-family: 'Inter', sans-serif;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.95); }
}

.animate-fade-in {
    animation: fadeIn 0.3s forwards ease-out;
}

.animate-fade-out {
    animation: fadeOut 0.3s forwards ease-out;
}
