/* ─── GLOBAL RESET & TOKENS ─── */
:root {
    --brand-black:  #0A0A0A;
    --brand-white:  #F5F5F0;
    --brand-accent: #C8FF00;
    --brand-muted:  #3A3A3A;
}

* {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--brand-black);
    color: var(--brand-white);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--brand-black); }
::-webkit-scrollbar-thumb {
    background: var(--brand-muted);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--brand-accent); }

/* Firefox */
* { scrollbar-width: thin; scrollbar-color: var(--brand-muted) var(--brand-black); }

/* ─── UTILITIES & HELPERS ─── */
.container-custom {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .container-custom {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

/* GSAP reveal helpers */
.reveal-word  { display: inline-block; overflow: hidden; }
.reveal-inner { display: inline-block; transform: translateY(110%); opacity: 0; }

/* Nav link underline effect */
.nav-link {
    position: relative;
    display: inline-block;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--brand-accent);
    transition: width .35s ease;
}
.nav-link:hover::after { width: 100%; }

/* Cursor glow */
.cursor-glow {
    pointer-events: none;
    position: fixed;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,255,0,.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: transform .05s linear;
    z-index: 9999;
}

/* ─── MOBILE MENU ─── */
#mobileMenu {
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

#mobileMenu.active {
    transform: translateX(0);
}
