:root {
    --lime: #BFFF00;
    --navy-dark: #0f172a;
    --slate-text: #64748b;
}

* {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
}

/* Typography & Layout */
h1,
h2,
h3,
h4 {
    letter-spacing: -0.02em;
}

/* Custom Shadow from Stitch */
.organic-shadow {
    box-shadow: 0 20px 50px -10px rgba(100, 116, 139, 0.12);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* List Style */
ul li span.bg-lime {
    background-color: var(--lime);
}

/* Footer CTA */
#footer-cta:hover {
    box-shadow: 0 0 30px rgba(191, 255, 0, 0.4);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .text-7xl {
        font-size: 3rem;
    }

    .-mt-32 {
        margin-top: -2rem;
    }
}