        :root {
            --bg-dark: #050505;
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.1);
            --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }



        /* --- Parallax Header --- */
        .parallax-hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background: #000;
        }

        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)), 
                        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=2072');
            background-size: cover;
            background-position: center;
            z-index: 1;
            transform: translateY(0);
            will-change: transform;
        }




        .hero-content {
            position: relative;
            z-index: 2;
            padding: 2rem;
            max-width: 900px;
        }

        .hero-content h1 {
            font-size: clamp(3rem, 10vw, 6rem);
            font-weight: 900;
            letter-spacing: -2px;
            text-transform: uppercase;
            background: linear-gradient(to bottom, #fff, #888);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }

        .hero-content p {
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            color: var(--accent-1);
            font-weight: 300;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        /* --- Global Layout Sections --- */
        .section-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 20px 0px 20px;
        }

        .reveal-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            /*margin-bottom: 50px;*/
            
            /* Enhanced Animation Base State */
            opacity: 0;
            transform: translateY(100px) scale(0.9);
            filter: blur(10px);
            transition: 
                opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
                filter 1.2s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: transform, opacity, filter;
            padding:40px;
            border-radius:20px;
            /*background:gray;*/
        }

        /* Active State (Revealed) */
        .reveal-grid.active {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0px);
        }

        /* State when hidden above (for scrolling back up) */
        .reveal-grid.hidden-above {
            opacity: 0;
            transform: translateY(-100px) scale(0.9);
            filter: blur(10px);
        }

        .reveal-grid.reverse {
            direction: rtl;
        }

        .reveal-grid.reverse .text-block {
            direction: ltr;
        }

        /* --- Visual Elements --- */
        .image-wrapper {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            /*aspect-ratio: 4/5;*/
            background: var(--glass-bg);
            border: 1px solid var(--border-main);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
            height:100%;
        }
        
        .reveal-grid.active .image-wrapper {
            transition-delay: 0.2s;
        }

        .image-wrapper svg {
            width: 60%;
            height: auto;
            filter: drop-shadow(0 0 20px var(--accent-1));
            transition: 0.6s ease-out;
        }

        .image-wrapper:hover svg {
            transform: scale(1.1);
            transition: 0.2s ease-out;
        }


        .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.6s ease-out;
        }

        .image-wrapper:hover img {
            transform: scale(1.12);
            transition: 0.2s ease-out;
        }


        .glow {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            filter: blur(80px);
            z-index: -1;
            opacity: 0.3;
        }

        .text-block{
            border-radius: 24px;
            background: var(--bg-surface1);
            border: 1px solid var(--border-main);
            height: 100%;
            padding:40px;
            box-shadow: 0 5px 30px 2px rgba(0, 0, 0, 0.5);
            transition: 0.6s ease-out;
        }

        .text-block:hover{
            border: 1px solid var(--accent-1);
            box-shadow: 0 5px 30px 2px var(--accent-1);
            transition: 0.25s ease-out;
            transform: scale(1.05)
        }


        .text-block h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            font-weight: 800;
            color: var(--text-main);
        }

        .text-block h3 {
            font-size: 0.9rem;
            color: var(--accent-1);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }
        
        .text-block p {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        /* --- Special Banner Section --- */
        .parallax-banner {
            position: relative;
            height: 60vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .banner-bg {
            position: absolute;
            top: -20%;
            left: 0;
            width: 100%;
            height: 140%;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('https://images.unsplash.com/photo-1614850523296-d8c1af93d400?auto=format&fit=crop&q=80&w=2070');
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            color: white;
            padding: 2rem;
            opacity: 0;
            transform: scale(0.8);
            transition: all 1s ease-out;
        }
        
        .banner-content.active {
            opacity: 1;
            transform: scale(1);
        }

        .banner-content h2 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            margin-bottom: 10px;
        }

        .banner-content p {
            font-size: 1.2rem;
            opacity: 0.8;
            font-style: italic;
        }

        /* --- Newsletter & CTA --- */
        .cta-section {
            text-align: center;
            padding: 120px 20px;
            background: radial-gradient(circle at center, #111 0%, #050505 100%);
        }

        .cta-section h2 {
            font-size: clamp(2.5rem, 7vw, 5rem);
            margin-bottom: 1rem;
        }

        .newsletter-card {
            max-width: 600px;
            margin: 60px auto;
            padding: 4rem 2rem;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 32px;
            backdrop-filter: blur(10px);
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
            opacity: 0;
            transform: translateY(50px);
        }
        
        .newsletter-card.active {
            opacity: 1;
            transform: translateY(0);
        }

        .newsletter-card h4 {
            color: var(--accent-1);
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .newsletter-card p {
            margin-bottom: 2rem;
            color: var(--text-dim);
        }

        .input-group {
            display: flex;
            gap: 10px;
            background: rgba(255,255,255,0.05);
            padding: 8px;
            border-radius: 50px;
            border: 1px solid var(--glass-border);
        }

        input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 0 20px;
            color: white;
            outline: none;
        }


        .social-links {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .social-links a {
            color: white;
            text-decoration: none;
            opacity: 0.6;
            transition: 0.3s;
        }

        .social-links a:hover {
            opacity: 1;
            color: var(--accent-1);
        }


        /* --- Mobile Responsiveness --- */
        @media (max-width: 768px) {
            .section-container{
                padding: 0px;    
            }
            
            .reveal-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-bottom: 0px;
                text-align: center;
            }
            .reveal-grid.reverse {
                direction: ltr;
            }
            .image-wrapper {
                aspect-ratio: 16/9;
                order: 2;
            }
            .input-group {
                flex-direction: column;
                background: transparent;
                border: none;
                padding: 0;
            }
            input {
                background: var(--glass-bg);
                padding: 15px;
                border-radius: 50px;
                margin-bottom: 10px;
                border: 1px solid var(--glass-border);
            }
            .btn {
                width: 100%;
            }
        }