/* Custom Properties & Fonts */
:root {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html, body {
    overflow-x: hidden;
    position: relative;
}


body {
    background-color: #050505;
    color: white;
}


/* Glassmorphism Effect */
.glass {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-mesh {
    background-image: 
        radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(124, 58, 237, 0.1) 0px, transparent 50%);
}

#mobile-menu {
    position: fixed; /* Ensures it stays in place */
    inset: 0;       /* Covers the whole screen */
    background: #050505; /* Solid dark background matching your body */
    z-index: 40;    /* Sits above content but below the main nav */
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Accordion Styles */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-btn.active svg {
    transform: rotate(180deg);
}

/* Text Gradients */
.text-gradient {
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}