        /* CSS Variables - Light Theme */
        :root {
            --primary-500: #3B82F6;
            --primary-400: #60A5FA;
            --primary-700: #1D4ED8;
            --neutral-50: #F8FAFC;
            --neutral-100: #F1F5F9;
            --neutral-200: #E2E8F0;
            --neutral-400: #64748B;
            --neutral-700: #334155;
            --neutral-900: #0F172A;
            --success: #22C55E;
            --warning: #F59E0B;
            --error: #EF4444;
        }

        /* Global Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 50%, #F1F5F9 100%);
            color: var(--neutral-900);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .container {
            font-weight: 600;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
        }



        /* Main Layout */
        .main-layout {
            display: grid;
            grid-template-columns: 1fr 2fr;
            min-height: 100vh;
            position: relative;
            padding-top: 80px; /* Account for fixed header */
        }

        /* Left Content Area */
        .content-area {
            padding: 96px 0;
            z-index: 10;
            position: relative;
            background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.9) 100%);
        }

        /* Right Visual Area - Futuristic Patterned Panel */
        .visual-area {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, 
                rgba(248, 250, 252, 0.6) 0%, 
                rgba(226, 232, 240, 0.7) 30%,
                rgba(241, 245, 249, 0.8) 100%);
            border-left: 2px solid rgba(59, 130, 246, 0.3);
            box-shadow: 
                inset 0 0 50px rgba(59, 130, 246, 0.1),
                inset 0 0 100px rgba(59, 130, 246, 0.05);
            position: relative;
        }

        /* Futuristic Grid Pattern Overlay */
        .visual-area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
            background-size: 50px 50px, 50px 50px;
            animation: gridPulse 4s ease-in-out infinite;
            pointer-events: none;
            z-index: 1;
        }

        /* Circuit Pattern Overlay */
        .visual-area::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 2px, transparent 2px),
                radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.1) 2px, transparent 2px),
                radial-gradient(circle at 25% 75%, rgba(96, 165, 250, 0.1) 1px, transparent 1px),
                radial-gradient(circle at 75% 25%, rgba(96, 165, 250, 0.1) 1px, transparent 1px);
            background-size: 100px 100px, 100px 100px, 60px 60px, 60px 60px;
            animation: circuitFlow 6s linear infinite;
            pointer-events: none;
            z-index: 2;
        }

        @keyframes gridPulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        @keyframes circuitFlow {
            0% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(10px) translateY(-5px); }
            50% { transform: translateX(-5px) translateY(10px); }
            75% { transform: translateX(-10px) translateY(-10px); }
            100% { transform: translateX(0) translateY(0); }
        }

        /* Organic Abstract 3D Forms System */
        .organic-container {
            position: absolute;
            top: 20%;
            right: 10%;
            width: 1000px;
            height: 1000px;
            z-index: 1;
        }

        /* Main Organic Flow Form */
        .flow-form {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 400px;
            background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.9) 0%, 
                rgba(96, 165, 250, 0.8) 25%,
                rgba(147, 197, 253, 0.7) 50%,
                rgba(59, 130, 246, 0.9) 75%,
                rgba(30, 58, 138, 1) 100%);
            border-radius: 40% 60% 20% 80% / 60% 40% 60% 40%;
            box-shadow: 
                0 0 50px rgba(59, 130, 246, 0.6),
                inset 0 1px 3px rgba(255, 255, 255, 0.4),
                inset 0 -1px 3px rgba(30, 58, 138, 0.3);
            animation: gravitationalDrift 6s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
            filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.3));
        }

        /* Secondary Flowing Tendrils */
        .tendril {
            position: absolute;
            background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.7) 0%, 
                rgba(96, 165, 250, 0.6) 30%,
                rgba(147, 197, 253, 0.5) 70%,
                rgba(59, 130, 246, 0.8) 100%);
            border-radius: 30px;
            box-shadow: 
                0 0 30px rgba(59, 130, 246, 0.5),
                inset 0 1px 2px rgba(255, 255, 255, 0.3);
            filter: drop-shadow(0 15px 30px rgba(59, 130, 246, 0.4));
        }

        .tendril-1 {
            width: 180px;
            height: 280px;
            top: 20%;
            left: -80px;
            transform: rotate(-45deg);
            animation: tendrilDrift1 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
            border-radius: 40px;
        }

        .tendril-2 {
            width: 160px;
            height: 320px;
            top: 10%;
            right: -70px;
            transform: rotate(35deg);
            animation: tendrilDrift2 7s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
            border-radius: 50px;
        }

        .tendril-3 {
            width: 120px;
            height: 200px;
            bottom: 20%;
            left: -60px;
            transform: rotate(65deg);
            animation: tendrilDrift3 9s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
            border-radius: 35px;
        }

        /* Gravitational Clouds */
        .gravitational-cloud {
            position: absolute;
            background: radial-gradient(ellipse at center,
                rgba(147, 197, 253, 0.6) 0%, 
                rgba(96, 165, 250, 0.5) 30%,
                rgba(59, 130, 246, 0.4) 60%,
                transparent 100%);
            border-radius: 50%;
            animation: cloudDrift 12s linear infinite;
            filter: blur(8px);
            z-index: 5;
        }

        .cloud-1 {
            width: 300px;
            height: 150px;
            top: 15%;
            left: -100px;
            animation-delay: 0s;
        }

        .cloud-2 {
            width: 250px;
            height: 120px;
            top: 40%;
            right: -80px;
            animation-delay: 8s;
        }

        .cloud-3 {
            width: 200px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: 15s;
        }

        .cloud-4 {
            width: 280px;
            height: 140px;
            top: 60%;
            right: 30%;
            animation-delay: 5s;
        }

        .cloud-5 {
            width: 180px;
            height: 90px;
            top: 5%;
            left: 50%;
            animation-delay: 12s;
        }

        .cloud-6 {
            width: 320px;
            height: 180px;
            bottom: 40%;
            left: -120px;
            animation-delay: 3s;
        }

        .cloud-7 {
            width: 240px;
            height: 140px;
            top: 35%;
            right: -100px;
            animation-delay: 7s;
        }

        .cloud-8 {
            width: 280px;
            height: 160px;
            bottom: 10%;
            right: 40%;
            animation-delay: 11s;
        }

        /* Gravitational Vortices */
        .gravity-vortex {
            position: absolute;
            background: conic-gradient(from 0deg,
                rgba(59, 130, 246, 0.6) 0deg,
                rgba(96, 165, 250, 0.5) 90deg,
                rgba(147, 197, 253, 0.4) 180deg,
                rgba(59, 130, 246, 0.7) 270deg,
                rgba(59, 130, 246, 0.6) 360deg);
            border-radius: 50%;
            animation: vortexDrift 9s ease-in-out infinite;
            filter: blur(3px);
            z-index: 6;
        }

        .vortex-1 {
            width: 120px;
            height: 120px;
            top: 25%;
            left: 25%;
            animation-delay: 3s;
        }

        .vortex-2 {
            width: 80px;
            height: 80px;
            bottom: 30%;
            right: 20%;
            animation-delay: 10s;
        }

        .vortex-3 {
            width: 100px;
            height: 100px;
            top: 70%;
            left: 60%;
            animation-delay: 5s;
        }

        /* Atmospheric Mist */
        .atmospheric-mist {
            position: absolute;
            background: radial-gradient(circle, 
                rgba(147, 197, 253, 0.3) 0%,
                rgba(59, 130, 246, 0.2) 30%,
                transparent 70%);
            border-radius: 50%;
            animation: mistDrift 15s ease-in-out infinite;
            filter: blur(15px);
            pointer-events: none;
            z-index: 3;
        }

        .mist-1 {
            width: 500px;
            height: 400px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .mist-2 {
            width: 600px;
            height: 450px;
            bottom: -100px;
            right: -50px;
            animation-delay: 5s;
        }

        .mist-3 {
            width: 400px;
            height: 350px;
            top: 40%;
            right: 30%;
            animation-delay: 10s;
        }

        /* Atmospheric Particles */
        .particle {
            position: absolute;
            background: radial-gradient(circle, 
                rgba(59, 130, 246, 0.4) 0%, 
                rgba(96, 165, 250, 0.2) 40%,
                transparent 100%);
            border-radius: 50%;
            animation: particleDrift 10s linear infinite;
            filter: blur(1px);
        }

        .particle-1 {
            width: 4px;
            height: 4px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .particle-2 {
            width: 3px;
            height: 3px;
            top: 20%;
            right: 15%;
            animation-delay: 8s;
        }

        .particle-3 {
            width: 5px;
            height: 5px;
            bottom: 25%;
            left: 20%;
            animation-delay: 15s;
        }

        .particle-4 {
            width: 2px;
            height: 2px;
            top: 60%;
            right: 25%;
            animation-delay: 20s;
        }

        /* Organic Swirls */
        .swirl {
            position: absolute;
            background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.6) 0%, 
                rgba(96, 165, 250, 0.4) 50%,
                rgba(147, 197, 253, 0.3) 100%);
            border-radius: 50%;
            animation: swirlDrift 9s ease-in-out infinite;
            filter: blur(1.5px);
        }

        .swirl-1 {
            width: 100px;
            height: 100px;
            top: 15%;
            left: 40%;
            animation-direction: reverse;
        }

        .swirl-2 {
            width: 80px;
            height: 80px;
            bottom: 25%;
            right: 30%;
        }

        /* Organic Flow Ribbons */
        .flow-ribbon {
            position: absolute;
            background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.8) 0%, 
                rgba(96, 165, 250, 0.7) 30%,
                rgba(147, 197, 253, 0.5) 70%,
                rgba(30, 58, 138, 0.9) 100%);
            border-radius: 60px;
            box-shadow: 
                0 0 40px rgba(59, 130, 246, 0.5),
                inset 0 1px 3px rgba(255, 255, 255, 0.3);
            filter: drop-shadow(0 25px 50px rgba(59, 130, 246, 0.4));
        }

        .ribbon-1 {
            width: 200px;
            height: 400px;
            top: 10%;
            left: 20%;
            transform: rotate(15deg) skewX(-15deg);
            animation: ribbonDrift1 9s cubic-bezier(0.23, 1, 0.32, 1) infinite;
        }

        .ribbon-2 {
            width: 180px;
            height: 350px;
            top: 15%;
            right: 10%;
            transform: rotate(-20deg) skewX(15deg);
            animation: ribbonDrift2 8s cubic-bezier(0.23, 1, 0.32, 1) infinite;
        }

        .ribbon-3 {
            width: 150px;
            height: 300px;
            bottom: 5%;
            left: 25%;
            transform: rotate(45deg);
            animation: ribbonDrift3 10s cubic-bezier(0.23, 1, 0.32, 1) infinite;
        }

        /* Floating Orbs */
        .floating-orb {
            position: absolute;
            background: radial-gradient(circle, 
                rgba(59, 130, 246, 0.9) 0%, 
                rgba(96, 165, 250, 0.7) 40%,
                rgba(147, 197, 253, 0.5) 70%,
                rgba(30, 58, 138, 0.6) 100%);
            border-radius: 50%;
            box-shadow: 
                0 0 30px rgba(59, 130, 246, 0.6),
                inset 0 1px 2px rgba(255, 255, 255, 0.4);
            animation: orbDrift 5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
        }

        .orb-1 {
            width: 60px;
            height: 60px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 40px;
            height: 40px;
            top: 60%;
            right: 15%;
            animation-delay: 3s;
        }

        .orb-3 {
            width: 50px;
            height: 50px;
            bottom: 10%;
            left: 30%;
            animation-delay: 6s;
        }

        .orb-4 {
            width: 35px;
            height: 35px;
            top: 40%;
            right: 5%;
            animation-delay: 9s;
        }

        /* Organic Flow Spirals */
        .flow-spiral {
            position: absolute;
            background: conic-gradient(from 0deg, 
                rgba(59, 130, 246, 0.8) 0deg,
                rgba(96, 165, 250, 0.6) 90deg,
                rgba(147, 197, 253, 0.4) 180deg,
                rgba(59, 130, 246, 0.7) 270deg,
                rgba(59, 130, 246, 0.8) 360deg);
            border-radius: 50%;
            animation: spiralDrift 8s linear infinite;
            filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
        }

        .spiral-1 {
            width: 80px;
            height: 80px;
            top: 5%;
            right: 20%;
            animation-direction: reverse;
        }

        .spiral-2 {
            width: 60px;
            height: 60px;
            bottom: 15%;
            left: 15%;
            animation-delay: 4s;
        }

        /* Flowing Energy Streams */
        .energy-stream {
            position: absolute;
            background: linear-gradient(90deg, 
                transparent 0%,
                rgba(59, 130, 246, 0.8) 20%,
                rgba(96, 165, 250, 1) 50%,
                rgba(59, 130, 246, 0.8) 80%,
                transparent 100%);
            border-radius: 20px;
            animation: energyDrift 7s cubic-bezier(0.23, 1, 0.32, 1) infinite;
            filter: blur(0.5px);
        }

        .stream-1 {
            width: 200px;
            height: 4px;
            top: 30%;
            left: -50px;
            transform: rotate(-25deg);
        }

        .stream-2 {
            width: 150px;
            height: 3px;
            bottom: 40%;
            right: -40px;
            transform: rotate(35deg);
            animation-delay: 3s;
        }

        .stream-3 {
            width: 180px;
            height: 2px;
            top: 60%;
            left: -30px;
            transform: rotate(65deg);
            animation-delay: 1.5s;
        }

        /* Atmospheric Layers */
        .atmosphere-layer {
            position: absolute;
            background: radial-gradient(ellipse, 
                rgba(59, 130, 246, 0.1) 0%, 
                rgba(96, 165, 250, 0.05) 50%,
                transparent 100%);
            border-radius: 50%;
            animation: atmosphereDrift 15s linear infinite;
            filter: blur(8px);
        }

        .layer-1 {
            width: 400px;
            height: 300px;
            top: 10%;
            left: -50px;
            animation-delay: 0s;
        }

        .layer-2 {
            width: 350px;
            height: 250px;
            bottom: 15%;
            right: -40px;
            animation-delay: 10s;
        }

        .layer-3 {
            width: 300px;
            height: 200px;
            top: 40%;
            left: 60%;
            animation-delay: 20s;
        }

        /* Professional Orbiting Satellites - replaced with organic forms */

        /* Hero Content */
        .hero-title {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
            color: var(--neutral-900);
        }

        .hero-tagline {
            font-size: 24px;
            font-weight: 600;
            color: var(--neutral-700);
            margin-bottom: 16px;
        }

        .hero-subtitle {
            font-size: 16px;
            color: var(--neutral-700);
            margin-bottom: 48px;
        }

        .metrics {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-bottom: 48px;
        }

        .metric-item {
            text-align: left;
        }

        .metric-value {
            font-size: 40px;
            font-weight: 700;
            color: var(--primary-500);
            margin-bottom: 8px;
        }

        .metric-label {
            font-size: 14px;
            font-weight: 500;
            color: var(--neutral-700);
            letter-spacing: 0.02em;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 64px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
            color: white;
            padding: 16px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--neutral-900);
            padding: 16px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1px solid var(--neutral-400);
            cursor: pointer;
            font-size: 16px;
        }

        .btn-primary:hover, .btn-secondary:hover {
            transform: translateY(-4px);
        }

        .btn-primary:hover {
            box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
        }

        .btn-secondary:hover {
            border-color: var(--primary-500);
            background: rgba(59, 130, 246, 0.1);
        }

        /* Gravitational Drift Animations */
        @keyframes gravitationalDrift {
            0% { 
                transform: translate(-50%, -50%) translateY(-400px) translateX(-250px) rotate(-20deg) scale(0.6);
                opacity: 0.9;
                filter: blur(5px);
                box-shadow: 
                    0 0 30px rgba(59, 130, 246, 0.4),
                    inset 0 1px 3px rgba(255, 255, 255, 0.2);
            }
            20% { 
                transform: translate(-50%, -50%) translateY(-250px) translateX(-100px) rotate(-10deg) scale(0.8);
                opacity: 0.8;
                filter: blur(3px);
            }
            35% { 
                transform: translate(-50%, -50%) translateY(-80px) translateX(20px) rotate(5deg) scale(1.1);
                opacity: 1;
                filter: blur(1px);
            }
            50% { 
                transform: translate(-50%, -50%) translateY(120px) translateX(150px) rotate(-8deg) scale(1.05);
                opacity: 1;
                filter: blur(0.6px);
            }
            65% { 
                transform: translate(-50%, -50%) translateY(200px) translateX(80px) rotate(12deg) scale(0.9);
                opacity: 0.95;
                filter: blur(1.5px);
            }
            80% { 
                transform: translate(-50%, -50%) translateY(50px) translateX(-100px) rotate(-15deg) scale(1.2);
                opacity: 0.75;
                filter: blur(3px);
            }
            100% { 
                transform: translate(-50%, -50%) translateY(-400px) translateX(-250px) rotate(-20deg) scale(0.6);
                opacity: 0.9;
                filter: blur(5px);
            }
        }

        @keyframes tendrilDrift1 {
            0% { 
                transform: rotate(-50deg) translateY(-350px) translateX(-200px) scaleY(0.7);
                opacity: 0.7;
                filter: blur(5px);
            }
            20% { 
                transform: rotate(-48deg) translateY(-200px) translateX(-80px) scaleY(0.9);
                opacity: 0.9;
                filter: blur(3px);
            }
            35% { 
                transform: rotate(-44deg) translateY(-50px) translateX(30px) scaleY(1.2);
                opacity: 0.8;
                filter: blur(1.5px);
            }
            50% { 
                transform: rotate(-42deg) translateY(150px) translateX(120px) scaleY(1.1);
                opacity: 0.9;
                filter: blur(0.8px);
            }
            65% { 
                transform: rotate(-45deg) translateY(100px) translateX(-50px) scaleY(0.85);
                opacity: 0.7;
                filter: blur(1.2px);
            }
            80% { 
                transform: rotate(-47deg) translateY(-150px) translateX(-180px) scaleY(1.3);
                opacity: 0.75;
                filter: blur(3px);
            }
            100% { 
                transform: rotate(-50deg) translateY(-350px) translateX(-200px) scaleY(0.7);
                opacity: 0.7;
                filter: blur(5px);
            }
        }

        @keyframes tendrilDrift2 {
            0% { 
                transform: rotate(40deg) translateY(-160px) translateX(-15px) scaleX(0.85);
                opacity: 0.3;
                filter: blur(3.5px);
            }
            15% { 
                transform: rotate(38deg) translateY(-110px) translateX(-8px) scaleX(0.95);
                opacity: 0.8;
                filter: blur(2.5px);
            }
            30% { 
                transform: rotate(33deg) translateY(-50px) translateX(-5px) scaleX(1.1);
                opacity: 0.95;
                filter: blur(1.5px);
            }
            45% { 
                transform: rotate(32deg) translateY(0px) translateX(0px) scaleX(1.05);
                opacity: 0.9;
                filter: blur(0.8px);
            }
            60% { 
                transform: rotate(35deg) translateY(30px) translateX(8px) scaleX(0.9);
                opacity: 0.8;
                filter: blur(1.2px);
            }
            75% { 
                transform: rotate(38deg) translateY(-40px) translateX(12px) scaleX(1.15);
                opacity: 0.8;
                filter: blur(2.2px);
            }
            100% { 
                transform: rotate(40deg) translateY(-160px) translateX(-15px) scaleX(0.85);
                opacity: 0.3;
                filter: blur(3.5px);
            }
        }

        @keyframes tendrilDrift3 {
            0% { 
                transform: rotate(70deg) translateY(-140px) scale(0.75);
                opacity: 0.9;
                filter: blur(5px);
            }
            20% { 
                transform: rotate(68deg) translateY(-90px) scale(0.9);
                opacity: 0.4;
                filter: blur(3.5px);
            }
            35% { 
                transform: rotate(64deg) translateY(-30px) scale(1.2);
                opacity: 0.9;
                filter: blur(1.8px);
            }
            50% { 
                transform: rotate(65deg) translateY(20px) scale(1.1);
                opacity: 1;
                filter: blur(1px);
            }
            70% { 
                transform: rotate(67deg) translateY(-10px) scale(0.95);
                opacity: 0.9;
                filter: blur(1.5px);
            }
            85% { 
                transform: rotate(72deg) translateY(-70px) scale(1.25);
                opacity: 0.3;
                filter: blur(2.8px);
            }
            100% { 
                transform: rotate(70deg) translateY(-140px) scale(0.75);
                opacity: 0.9;
                filter: blur(5px);
            }
        }

        @keyframes ribbonDrift1 {
            0% { 
                transform: rotate(20deg) skewX(-18deg) translateY(-120px) translateX(-25px) scaleY(0.8);
                border-radius: 60px;
                opacity: 0.3;
                filter: blur(2.5px);
            }
            15% { 
                transform: rotate(18deg) skewX(-16deg) translateY(-80px) translateX(-15px) scaleY(0.9);
                border-radius: 70px;
                opacity: 0.8;
                filter: blur(1.8px);
            }
            30% { 
                transform: rotate(16deg) skewX(-14deg) translateY(-30px) translateX(-8px) scaleY(1.3);
                border-radius: 100px;
                opacity: 1;
                filter: blur(1px);
            }
            45% { 
                transform: rotate(15deg) skewX(-15deg) translateY(15px) translateX(0px) scaleY(1.1);
                border-radius: 85px;
                opacity: 1;
                filter: blur(0.8px);
            }
            60% { 
                transform: rotate(14deg) skewX(-12deg) translateY(-20px) translateX(12px) scaleY(0.85);
                border-radius: 65px;
                opacity: 0.7;
                filter: blur(1.2px);
            }
            80% { 
                transform: rotate(22deg) skewX(-20deg) translateY(-90px) translateX(20px) scaleY(1.4);
                border-radius: 120px;
                opacity: 0.4;
                filter: blur(2px);
            }
            100% { 
                transform: rotate(20deg) skewX(-18deg) translateY(-120px) translateX(-25px) scaleY(0.8);
                border-radius: 60px;
                opacity: 0.3;
                filter: blur(2.5px);
            }
        }

        @keyframes ribbonDrift2 {
            0% { 
                transform: rotate(-25deg) skewX(18deg) translateY(-100px) translateX(20px) scaleX(0.85);
                border-radius: 50px;
                opacity: 0.75;
                filter: blur(3px);
            }
            20% { 
                transform: rotate(-23deg) skewX(16deg) translateY(-60px) translateX(12px) scaleX(0.95);
                border-radius: 65px;
                opacity: 0.9;
                filter: blur(2px);
            }
            35% { 
                transform: rotate(-21deg) skewX(14deg) translateY(-10px) translateX(5px) scaleX(1.2);
                border-radius: 90px;
                opacity: 0.9;
                filter: blur(1.2px);
            }
            50% { 
                transform: rotate(-20deg) skewX(15deg) translateY(25px) translateX(0px) scaleX(1.1);
                border-radius: 75px;
                opacity: 1;
                filter: blur(0.8px);
            }
            70% { 
                transform: rotate(-19deg) skewX(13deg) translateY(-15px) translateX(-8px) scaleX(0.9);
                border-radius: 55px;
                opacity: 0.8;
                filter: blur(1.4px);
            }
            85% { 
                transform: rotate(-27deg) skewX(20deg) translateY(-80px) translateX(-15px) scaleX(1.35);
                border-radius: 110px;
                opacity: 0.8;
                filter: blur(2.3px);
            }
            100% { 
                transform: rotate(-25deg) skewX(18deg) translateY(-100px) translateX(20px) scaleX(0.85);
                border-radius: 50px;
                opacity: 0.75;
                filter: blur(3px);
            }
        }

        @keyframes ribbonDrift3 {
            0% { 
                transform: rotate(50deg) scaleY(0.7) translateY(-130px) translateX(-30px);
                border-radius: 35px;
                opacity: 0.6;
                filter: blur(4px);
            }
            18% { 
                transform: rotate(48deg) scaleY(0.9) translateY(-90px) translateX(-18px);
                border-radius: 45px;
                opacity: 0.4;
                filter: blur(2.8px);
            }
            32% { 
                transform: rotate(46deg) scaleY(1.3) translateY(-40px) translateX(-8px);
                border-radius: 70px;
                opacity: 0.95;
                filter: blur(1.5px);
            }
            48% { 
                transform: rotate(45deg) scaleY(1.2) translateY(10px) translateX(0px);
                border-radius: 60px;
                opacity: 0.9;
                filter: blur(0.8px);
            }
            65% { 
                transform: rotate(44deg) scaleY(0.95) translateY(-25px) translateX(15px);
                border-radius: 40px;
                opacity: 0.7;
                filter: blur(1.2px);
            }
            82% { 
                transform: rotate(52deg) scaleY(1.4) translateY(-100px) translateX(25px);
                border-radius: 85px;
                opacity: 0.3;
                filter: blur(3.2px);
            }
            100% { 
                transform: rotate(50deg) scaleY(0.7) translateY(-130px) translateX(-30px);
                border-radius: 35px;
                opacity: 0.6;
                filter: blur(4px);
            }
        }

        @keyframes orbDrift {
            0% { 
                transform: translateY(-250px) translateX(-180px) rotate(-15deg) scale(0.6);
                opacity: 0.6;
                filter: blur(4px);
                box-shadow: 
                    0 0 20px rgba(59, 130, 246, 0.3),
                    inset 0 1px 2px rgba(255, 255, 255, 0.2);
            }
            20% { 
                transform: translateY(-120px) translateX(-60px) rotate(-8deg) scale(0.85);
                opacity: 0.8;
                filter: blur(2.5px);
            }
            35% { 
                transform: translateY(20px) translateX(40px) rotate(3deg) scale(1.2);
                opacity: 1;
                filter: blur(1px);
            }
            50% { 
                transform: translateY(180px) translateX(120px) rotate(-5deg) scale(1.1);
                opacity: 1;
                filter: blur(0.6px);
                box-shadow: 
                    0 0 40px rgba(59, 130, 246, 1),
                    inset 0 1px 2px rgba(255, 255, 255, 0.6);
            }
            65% { 
                transform: translateY(80px) translateX(-30px) rotate(10deg) scale(0.9);
                opacity: 0.7;
                filter: blur(1.2px);
                box-shadow: 
                    0 0 35px rgba(59, 130, 246, 0.7),
                    inset 0 1px 2px rgba(255, 255, 255, 0.4);
            }
            80% { 
                transform: translateY(-100px) translateX(-200px) rotate(-12deg) scale(1.4);
                opacity: 0.75;
                filter: blur(3px);
            }
            100% { 
                transform: translateY(-250px) translateX(-180px) rotate(-15deg) scale(0.6);
                opacity: 0.6;
                filter: blur(4px);
                box-shadow: 
                    0 0 20px rgba(59, 130, 246, 0.3),
                    inset 0 1px 2px rgba(255, 255, 255, 0.2);
            }
        }

        @keyframes cloudDrift {
            0% { 
                transform: translateY(-500px) translateX(-200px) scale(0.7);
                opacity: 0.6;
                filter: blur(10px);
            }
            25% { 
                transform: translateY(-300px) translateX(-100px) scale(1.1);
                opacity: 0.4;
                filter: blur(8px);
            }
            50% { 
                transform: translateY(100px) translateX(50px) scale(0.9);
                opacity: 0.9;
                filter: blur(6px);
            }
            75% { 
                transform: translateY(300px) translateX(150px) scale(1.2);
                opacity: 0.3;
                filter: blur(9px);
            }
            100% { 
                transform: translateY(-500px) translateX(-200px) scale(0.7);
                opacity: 0.6;
                filter: blur(10px);
            }
        }

        @keyframes vortexDrift {
            0% { 
                transform: rotate(0deg) translateY(-400px) translateX(-150px) scale(0.8);
                opacity: 0.3;
                filter: blur(4px);
            }
            25% { 
                transform: rotate(90deg) translateY(-200px) translateX(-50px) scale(1.1);
                opacity: 0.9;
                filter: blur(2px);
            }
            50% { 
                transform: rotate(180deg) translateY(50px) translateX(80px) scale(0.9);
                opacity: 1;
                filter: blur(1px);
            }
            75% { 
                transform: rotate(270deg) translateY(200px) translateX(20px) scale(1.3);
                opacity: 0.75;
                filter: blur(3px);
            }
            100% { 
                transform: rotate(360deg) translateY(-400px) translateX(-150px) scale(0.8);
                opacity: 0.3;
                filter: blur(4px);
            }
        }

        @keyframes mistDrift {
            0% { 
                transform: translateY(-200px) translateX(-100px) scale(0.8);
                opacity: 0.4;
                filter: blur(15px);
            }
            25% { 
                transform: translateY(-100px) translateX(-50px) scale(1.1);
                opacity: 0.9;
                filter: blur(12px);
            }
            50% { 
                transform: translateY(50px) translateX(0px) scale(0.9);
                opacity: 0.8;
                filter: blur(10px);
            }
            75% { 
                transform: translateY(100px) translateX(75px) scale(1.2);
                opacity: 0.8;
                filter: blur(13px);
            }
            100% { 
                transform: translateY(-200px) translateX(-100px) scale(0.8);
                opacity: 0.4;
                filter: blur(15px);
            }
        }

        @keyframes particleDrift {
            0% { 
                transform: translateY(-200px) translateX(-50px) scale(0.5);
                opacity: 0.4;
                filter: blur(4px);
            }
            20% { 
                transform: translateY(-150px) translateX(-30px) scale(0.7);
                opacity: 0.3;
                filter: blur(3px);
            }
            40% { 
                transform: translateY(-80px) translateX(-10px) scale(1.2);
                opacity: 0.8;
                filter: blur(2px);
            }
            60% { 
                transform: translateY(20px) translateX(10px) scale(1);
                opacity: 0.7;
                filter: blur(1px);
            }
            80% { 
                transform: translateY(-60px) translateX(25px) scale(0.8);
                opacity: 0.4;
                filter: blur(2.5px);
            }
            100% { 
                transform: translateY(-200px) translateX(-50px) scale(0.5);
                opacity: 0.4;
                filter: blur(4px);
            }
        }

        @keyframes atmosphereDrift {
            0% { 
                transform: translateY(-300px) translateX(-100px) scale(0.8);
                opacity: 0.4;
                filter: blur(12px);
            }
            33% { 
                transform: translateY(-150px) translateX(-50px) scale(1.1);
                opacity: 0.3;
                filter: blur(8px);
            }
            66% { 
                transform: translateY(50px) translateX(30px) scale(0.9);
                opacity: 0.6;
                filter: blur(10px);
            }
            100% { 
                transform: translateY(-300px) translateX(-100px) scale(0.8);
                opacity: 0.4;
                filter: blur(12px);
            }
        }

        @keyframes spiralDrift {
            0% { 
                transform: rotate(0deg) translateY(-100px) scale(0.8);
                opacity: 0.3;
                filter: blur(2px);
            }
            25% { 
                transform: rotate(90deg) translateY(-50px) scale(1.1);
                opacity: 0.7;
                filter: blur(1px);
            }
            50% { 
                transform: rotate(180deg) translateY(10px) scale(1);
                opacity: 1;
                filter: blur(0.8px);
            }
            75% { 
                transform: rotate(270deg) translateY(-40px) scale(1.05);
                opacity: 0.9;
                filter: blur(1.2px);
            }
            100% { 
                transform: rotate(360deg) translateY(-100px) scale(0.8);
                opacity: 0.3;
                filter: blur(2px);
            }
        }

        @keyframes energyDrift {
            0% { 
                opacity: 0.6;
                transform: scaleY(0.8) translateY(-80px);
                filter: blur(3px);
            }
            20% { 
                opacity: 0.4;
                transform: scaleY(1.2) translateY(-40px);
                filter: blur(2px);
            }
            40% { 
                opacity: 0.7;
                transform: scaleY(1.8) translateY(0px);
                filter: blur(1px);
            }
            60% { 
                opacity: 0.9;
                transform: scaleY(1.4) translateY(20px);
                filter: blur(0.8px);
            }
            80% { 
                opacity: 0.8;
                transform: scaleY(1.1) translateY(-30px);
                filter: blur(1.8px);
            }
            100% { 
                opacity: 0.6;
                transform: scaleY(0.8) translateY(-80px);
                filter: blur(3px);
            }
        }

        @keyframes swirlRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes orbiterGlow {
            0%, 100% { 
                box-shadow: 
                    0 0 25px rgba(59, 130, 246, 0.5),
                    inset 0 1px 2px rgba(255, 255, 255, 0.3);
            }
            50% { 
                box-shadow: 
                    0 0 35px rgba(59, 130, 246, 0.8),
                    inset 0 1px 2px rgba(255, 255, 255, 0.4);
            }
        }

        @keyframes orbiterCore {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        @keyframes pathRotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        @keyframes orbit1 {
            from { transform: rotate(0deg) translateX(80px) rotate(0deg); }
            to { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
        }

        @keyframes orbit2 {
            from { transform: rotate(0deg) translateX(60px) rotate(0deg); }
            to { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
        }

        @keyframes orbit3 {
            from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
            to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
        }

        /* Web3 Network with Connecting Dots */
        .web3-network {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 20;
        }

        .network-dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background: linear-gradient(45deg, #00D4AA, #5B21B6, #3B82F6);
            border-radius: 50%;
            box-shadow: 
                0 0 10px rgba(0, 212, 170, 0.8),
                0 0 20px rgba(91, 33, 182, 0.6),
                0 0 30px rgba(59, 130, 246, 0.4);
            animation: networkPulse 2s ease-in-out infinite alternate;
        }

        .network-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(0, 212, 170, 0.8) 20%, 
                rgba(59, 130, 246, 0.9) 50%, 
                rgba(0, 212, 170, 0.8) 80%, 
                transparent 100%);
            border-radius: 2px;
            box-shadow: 0 0 5px rgba(0, 212, 170, 0.5);
            animation: connectionGlow 3s ease-in-out infinite alternate;
            opacity: 0;
        }

        .data-packet {
            position: absolute;
            width: 3px;
            height: 3px;
            background: linear-gradient(45deg, #00D4AA, #3B82F6);
            border-radius: 50%;
            box-shadow: 
                0 0 8px rgba(0, 212, 170, 1),
                0 0 15px rgba(59, 130, 246, 0.8);
            animation: dataFlow 4s linear infinite;
        }

        /* Network Dot Positions */
        .dot-1 { top: 20%; left: 30%; animation-delay: 0s; }
        .dot-2 { top: 35%; left: 60%; animation-delay: 0.3s; }
        .dot-3 { top: 50%; left: 25%; animation-delay: 0.6s; }
        .dot-4 { top: 65%; left: 70%; animation-delay: 0.9s; }
        .dot-5 { top: 80%; left: 40%; animation-delay: 1.2s; }
        .dot-6 { top: 25%; left: 80%; animation-delay: 1.5s; }
        .dot-7 { top: 55%; left: 85%; animation-delay: 1.8s; }
        .dot-8 { top: 70%; left: 15%; animation-delay: 2.1s; }
        .dot-9 { top: 15%; left: 50%; animation-delay: 2.4s; }
        .dot-10 { top: 85%; left: 75%; animation-delay: 2.7s; }

        /* Connection Lines */
        .line-1 { 
            top: 35%; left: 30%; 
            width: 180px; 
            transform: rotate(15deg);
            animation-delay: 1s;
        }
        .line-2 { 
            top: 42%; left: 25%; 
            width: 200px; 
            transform: rotate(45deg);
            animation-delay: 1.5s;
        }
        .line-3 { 
            top: 57%; left: 60%; 
            width: 150px; 
            transform: rotate(-25deg);
            animation-delay: 2s;
        }
        .line-4 { 
            top: 62%; left: 70%; 
            width: 120px; 
            transform: rotate(60deg);
            animation-delay: 2.5s;
        }
        .line-5 { 
            top: 72%; left: 15%; 
            width: 140px; 
            transform: rotate(75deg);
            animation-delay: 3s;
        }
        .line-6 { 
            top: 27%; left: 50%; 
            width: 160px; 
            transform: rotate(-15deg);
            animation-delay: 3.5s;
        }
        .line-7 { 
            top: 77%; left: 40%; 
            width: 110px; 
            transform: rotate(30deg);
            animation-delay: 4s;
        }
        .line-8 { 
            top: 33%; left: 80%; 
            width: 130px; 
            transform: rotate(-45deg);
            animation-delay: 4.5s;
        }

        /* Data Packets */
        .packet-1 { 
            top: 30%; left: 25%; 
            animation: dataFlow 4s linear infinite;
            animation-delay: 0s;
        }
        .packet-2 { 
            top: 60%; left: 75%; 
            animation: dataFlow 4s linear infinite;
            animation-delay: 1.3s;
        }
        .packet-3 { 
            top: 80%; left: 50%; 
            animation: dataFlow 4s linear infinite;
            animation-delay: 2.6s;
        }

        /* Web3 Network Animations */
        @keyframes networkPulse {
            0% { 
                transform: scale(0.8);
                opacity: 0.4;
                box-shadow: 
                    0 0 5px rgba(0, 212, 170, 0.4),
                    0 0 10px rgba(91, 33, 182, 0.3),
                    0 0 15px rgba(59, 130, 246, 0.2);
            }
            100% { 
                transform: scale(1.4);
                opacity: 1;
                box-shadow: 
                    0 0 15px rgba(0, 212, 170, 1),
                    0 0 30px rgba(91, 33, 182, 0.8),
                    0 0 45px rgba(59, 130, 246, 0.6);
            }
        }

        @keyframes connectionGlow {
            0% { 
                opacity: 0;
                box-shadow: 0 0 2px rgba(0, 212, 170, 0.2);
            }
            50% { 
                opacity: 1;
                box-shadow: 0 0 8px rgba(0, 212, 170, 0.8);
            }
            100% { 
                opacity: 0.7;
                box-shadow: 0 0 5px rgba(59, 130, 246, 0.6);
            }
        }

        @keyframes dataFlow {
            0% { 
                transform: translateX(0) scale(0.5);
                opacity: 0;
            }
            10% { 
                transform: translateX(10px) scale(1);
                opacity: 1;
            }
            90% { 
                transform: translateX(80px) scale(1);
                opacity: 1;
            }
            100% { 
                transform: translateX(100px) scale(0.5);
                opacity: 0;
            }
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(248, 250, 252, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0 24px;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            height: 80px;
        }

        .logo h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-600);
            margin: 0;
        }

        .nav {
            display: flex;
            gap: 32px;
        }

        .nav-link {
            text-decoration: none;
            color: var(--neutral-700);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-600);
        }

        .mobile-menu-button {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--neutral-700);
            cursor: pointer;
            padding: 8px;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

        .mobile-menu-button:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }

        /* Mobile Navigation Overlay */
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            z-index: 1100;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .mobile-nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-content {
            position: absolute;
            top: 0;
            right: 0;
            width: 280px;
            height: 100%;
            background: rgba(248, 250, 252, 0.95);
            backdrop-filter: blur(15px);
            padding: 24px;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        .mobile-nav-overlay.active .mobile-nav-content {
            transform: translateX(0);
        }

        .mobile-nav-close {
            background: none;
            border: none;
            font-size: 28px;
            color: var(--neutral-700);
            cursor: pointer;
            margin-bottom: 32px;
            padding: 8px;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

        .mobile-nav-close:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .mobile-nav-link {
            text-decoration: none;
            color: var(--neutral-700);
            font-weight: 500;
            font-size: 18px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            transition: color 0.3s ease;
        }

        .mobile-nav-link:hover {
            color: var(--primary-600);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .main-layout {
                grid-template-columns: 1fr;
            }
            
            .organic-container {
                width: 700px;
                height: 700px;
                right: 5%;
                top: 25%;
            }
            
            .hero-title {
                font-size: 48px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .metrics {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            /* Show mobile menu button */
            .mobile-menu-button {
                display: block;
            }
            
            /* Hide regular nav on mobile */
            .nav {
                display: none;
            }
            

            

            

            
            /* Make animations more prominent on mobile */
            .organic-container {
                position: absolute !important;
                opacity: 1 !important;
                visibility: visible !important;
                z-index: 1 !important;
                width: 600px !important;
                height: 600px !important;
                right: -10% !important;
                top: 20% !important;
            }
            
            /* Improve mobile layout */
            .main-layout {
                grid-template-columns: 1fr 2fr;
            }
            
            .content-area {
                padding: 48px 24px;
            }
            
            .hero-title {
                font-size: 32px;
                line-height: 1.2;
            }
            
            /* Ensure visual area is visible on mobile */
            .visual-area {
                position: relative !important;
                display: block !important;
                opacity: 1 !important;
                visibility: visible !important;
                z-index: 1 !important;
                background: linear-gradient(135deg, 
                    rgba(248, 250, 252, 0.3) 0%, 
                    rgba(226, 232, 240, 0.4) 30%,
                    rgba(241, 245, 249, 0.5) 100%) !important;
            }
            
            .organic-container {
                width: 500px;
                height: 500px;
                right: 5%;
                top: 35%;
            }

            /* Mobile Web3 Network Enhancement */
            .web3-network {
                z-index: 25 !important;
            }

            .network-dot {
                width: 3px !important;
                height: 3px !important;
                animation-duration: 1.5s !important;
            }

            .network-line {
                height: 0.5px !important;
                animation-duration: 2.5s !important;
            }

            .data-packet {
                width: 2px !important;
                height: 2px !important;
                animation-duration: 3s !important;
            }
        }

        /* Additional content sections */
        .content-section {
            margin-top: 96px;
            padding: 64px 0;
            border-top: 1px solid var(--neutral-200);
            background: var(--neutral-50);
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 48px;
            text-align: center;
            color: var(--neutral-900);
        }

        /* Extra Small Mobile Devices */
        @media (max-width: 480px) {
            .organic-container {
                width: 350px;
                height: 350px;
                right: 2%;
                top: 40%;
            }
            
            .hero-title {
                font-size: 28px;
            }
            
            .hero-tagline {
                font-size: 16px;
            }
            
            .hero-subtitle {
                font-size: 14px;
            }
            
            .metrics {
                gap: 12px;
            }
            
            .metric-value {
                font-size: 20px;
            }
            
            .metric-label {
                font-size: 12px;
            }
        }
        
        /* Reduce Motion Support */
        @media (prefers-reduced-motion: reduce) {
            .satellite-body,
            .solar-panel,
            .antenna,
            .thruster,
            .dish,
            .orbiter {
                animation: none;
            }
        }
