* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background-color: #202430 !important;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 5px;
    border: 2px solid #0f172a;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

::selection {
    background: rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
}

.container {
    background-color: #202430;
    gap: 12em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    min-height: 100vh;
    max-width: 1500px;
}

header,
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6em;
}

.btn-primary {
    background-color: #4640DE;
}

.badge-text {
    background-color: #757575;
    border-radius: 20px;
    color: #FFFFFF;
}

.hero-title span {
    color: #26A4FF;
    display: inline-block;
}

.stats-grid {
    grid-template-columns: repeat(3, 1fr);
}

.stat-card {
    background-color: #FFFFFF;
    color: #25324B;
    height: 300px;
    cursor: pointer;
}

.feature-card {
    background-color: #4640DE;
    color: #FFFFFF;
    min-height: 300px;
    cursor: pointer;
}

.btn-cta-primary {
    background-color: #4640DE;
}

.btn-cta-secondary {
    text-decoration: underline;
    text-decoration-color: #4640DE;
    color: #4640DE;
}

.footer-text span {
    color: #26A4FF;
}

.desktop-hide {
    display: none;
}




@media (max-width: 320px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        flex-direction: column !important;
    }

    .feature-card,
    .stat-card {
        max-width: 90%;
    }
}

@media (max-width: 800px) {
    .desktop-hide {
        display: block;
    }
}

@media (max-width: 950px) {
    .stats-grid {
        gap: 2em !important;
    }

    .stat-card {
        gap: 1em;
        height: 200px;
    }

    .stat-number {
        font-size: 2rem !important;
    }

    .stat-label {
        font-size: 1rem;
    }

    .features-section .section-title {
        font-size: 3.5rem !important;
    }

    .feature-card {
        padding: 3em 1.5em !important;
    }

    .feature-title {
        font-size: 1.2rem !important;
    }

    .feature-description {
        font-size: 1rem !important;
    }
}
