:root {
    --bg: #080808;
    --text: #e0e0e0;
    --accent: #ccff00;
    --surface: #121212;
    --line: rgba(255, 255, 255, 0.05);
    --font-display: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100vw;
}

/* --- ATMOSPHERE --- */
.grid-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: -1;
    padding: 0 5vw;
}
.line { width: 1px;
    height: 100%;
    background: var(--line);
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- CURSOR --- */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;/* Removed CSS transition for position to let GSAP handle the heavy feel */
    transition: width 0.3s, height 0.3s;
}
.cursor.hovered { 
    width: 80px;
    height: 80px;
    background: white;
    opacity: 0.1;
}

/* --- HEADERS --- */
.section-header {
    padding: 0 5vw;
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1rem;
}
.section-header h2 { font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1;
    text-transform: uppercase;
}
.section-count { font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--accent);
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .broken-grid { 
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .large, .tall, .standard, .grid-text-block { 
        grid-column: 1 / -1;
        height: auto;
        margin-top: 0;
    }
    .img-wrapper { 
        height: 300px;
    }
    .video-wrapper { 
        padding-left: 0;
        height: 50vh;
    }
    .video-overlay-text { 
        font-size: 4rem;
    }
    nav { 
        padding: 1.5rem;
    }
    .menu { 
        display: none; /* Hide menu on mobile for simplicity in this demo */
    } 
}