/* Vanilla CSS extensions for Prime Credit Capital Landing Page */
/* Matches tailwind config animations and additions */

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animations */
@keyframes slideUp {
    0% { transform: translateY(24px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

/* Reveal on scroll utilities via intersection observer in JS */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Base resets & typography tweaks */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.025em;
}
