:root {
    --primary: #ff52d9;
    --accent: #ff9100;
    --bg: #030303;
    --glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Lenis Recommended CSS */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Animations */
@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.scroll-line-anim {
    animation: scrollDown 1.5s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.scanlines {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(255, 255, 255, 0.02) 50.5%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 10;
}

/* Navigation */
nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    pointer-events: none;
    z-index: 100;
}
nav * { pointer-events: auto; }

.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 99;
    opacity: 0.15;
    background: radial-gradient(#222 0.5px, transparent 0.5px);
    background-size: 3px 3px;
}

/* Typography Enhancements */
.text-shadow-glow {
    text-shadow: 0 0 40px rgba(255, 82, 217, 0.3);
}

.logo-glow {
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 82, 217, 0.5);
}

/* GSAP Reveal Bases */
.reveal-left, .reveal-right, .hero-sub, .hero-title, .hero-desc, .hero-cta {
    opacity: 0;
}

/* Scrollbar tweaks */
.custom-scrollbar::-webkit-scrollbar { width: 5px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
.custom-scrollbar::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); }

@media (max-width: 1024px) {
    /* Full hide on mobile to keep it clinical */
    ::-webkit-scrollbar { display: none !important; width: 0 !important; }
    * { -ms-overflow-style: none !important; scrollbar-width: none !important; }
    .custom-scrollbar::-webkit-scrollbar { display: none !important; }
}
