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

        html {
            overflow-x: hidden;
            width: 100%;
        }

        :root {
            --primary: #00d4ff;
            --secondary: #7b2ff7;
            --accent: #ff006e;
            --dark: #0a0e27;
            --darker: #050815;
            --light: #ffffff;
            --gray: #8892b0;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--darker);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
        }

        img, video, canvas, svg {
            max-width: 100%;
            height: auto;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        #neural-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1200px;
            padding: 2rem;
        }

        .glitch {
            font-size: 4rem;
            font-weight: 900;
            text-transform: uppercase;
            position: relative;
            text-shadow: 0.05em 0 0 var(--primary),
                        -0.03em -0.04em 0 var(--secondary),
                        0.025em 0.04em 0 var(--accent);
            animation: glitch 1.5s infinite;
        }

        @keyframes glitch {
            0% {
                text-shadow: 0.05em 0 0 var(--primary),
                            -0.03em -0.04em 0 var(--secondary),
                            0.025em 0.04em 0 var(--accent);
            }
            14% {
                text-shadow: 0.05em 0 0 var(--primary),
                            -0.03em -0.04em 0 var(--secondary),
                            0.025em 0.04em 0 var(--accent);
            }
            15% {
                text-shadow: -0.05em -0.025em 0 var(--primary),
                            0.025em 0.035em 0 var(--secondary),
                            -0.05em -0.05em 0 var(--accent);
            }
            49% {
                text-shadow: -0.05em -0.025em 0 var(--primary),
                            0.025em 0.035em 0 var(--secondary),
                            -0.05em -0.05em 0 var(--accent);
            }
            50% {
                text-shadow: 0.025em 0.05em 0 var(--primary),
                            0.05em 0 0 var(--secondary),
                            0 -0.05em 0 var(--accent);
            }
            99% {
                text-shadow: 0.025em 0.05em 0 var(--primary),
                            0.05em 0 0 var(--secondary),
                            0 -0.05em 0 var(--accent);
            }
            100% {
                text-shadow: -0.025em 0 0 var(--primary),
                            -0.025em -0.025em 0 var(--secondary),
                            -0.025em -0.05em 0 var(--accent);
            }
        }

        .subtitle {
            font-size: 1.5rem;
            color: var(--gray);
            margin: 2rem 0;
            font-weight: 300;
        }

        .metrics {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .metric {
            text-align: center;
        }

        .metric-value {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
        }

        .metric-label {
            font-size: 0.9rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Section Styling */
        section {
            justify-content: center;
            display: grid;
            align-items: center;
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        h2 {
            font-size: 3rem;
            margin-bottom: 3rem;
            text-align: center;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Innovation Showcase Grid */
        .innovation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
            justify-content: center;
            align-items: start;
            gap: 2rem;
            margin-top: 3rem;
        }

        .innovation-card {
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: 400px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 12px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .innovation-card::before {
            justify-content: 'center';
            position: absolute;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .innovation-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
        }

        .innovation-card:hover::before {
            opacity: 0.1;
        }

        .innovation-tag {
            display: inline-block;
            background: var(--secondary);
            color: var(--light);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .innovation-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .innovation-card p {
            color: var(--gray);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .innovation-stats {
            display: flex;
            gap: 2rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--gray);
            text-transform: uppercase;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--light);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
            justify-content: center;
            align-items: start;
            width: 100%;
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(123, 47, 247, 0.05));
            border: 2px solid transparent;
            border-radius: 16px;
            padding: 3rem;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--light);
        }

        .service-card ul {
            list-style: none;
            margin: 1.5rem 0;
        }

        .service-card li {
            padding: 0.5rem 0;
            color: var(--gray);
            position: relative;
            padding-left: 1.5rem;
        }

        .service-card li::before {
            content: "\25B8";
            position: absolute;
            left: 0;
            color: var(--primary);
}
        .price-tag {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin: 1.5rem 0;
        }

        .price-note {
            font-size: 0.9rem;
            color: var(--gray);
            font-style: italic;
        }

        /* Mathematical Framework Display */
        .math-framework {
            justify-content: center;
            align-items: center;
            background: rgba(255, 255, 255, 0.02);
            border-left: 4px solid var(--primary);
            padding: 2rem;
            margin: 2rem 0;
            border-radius: 8px;
            overflow-x: auto;
            max-width: 100%;
        }

        .math-framework h4 {
            color: var(--primary);
            margin-bottom: 1rem;
            word-wrap: break-word;
        }

        .math-framework p {
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        /* Ensure MathJax content scales properly */
        .math-framework mjx-container {
            max-width: 100%;
            overflow-x: auto;
            overflow-y: hidden;
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 47, 247, 0.1));
            border-radius: 20px;
            padding: 4rem;
            text-align: center;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-item a {
            color: var(--primary);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--light);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .glitch {
                font-size: 2rem;
                line-height: 1.2;
            }

            .subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .metrics {
                gap: 1.5rem;
                flex-direction: column;
            }

            .metric-value {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 1.8rem;
                padding: 0 1rem;
            }

            /* Base grid layout - Mobile optimized */
            .innovation-grid,
            .services-grid {
                display: grid;
                grid-template-columns: 1fr;
                justify-content: center;
                align-items: start;
                gap: 1.5rem;
                margin-top: 2rem;
            }

            .innovation-card,
            .service-card {
                padding: 1.5rem;
            }

            section {
                padding: 3rem 1rem;
            }

            .contact-section {
                padding: 2rem 1rem;
            }

            .contact-info {
                flex-direction: column;
                gap: 1.5rem;
            }

            .price-tag {
                font-size: 1.5rem;
            }

            .math-framework {
                padding: 1rem;
                font-size: 0.9rem;
                overflow-x: auto;
            }

            .innovation-stats {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            body {
                overflow-x: hidden;
            }

            .glitch {
                font-size: 1.5rem;
                word-wrap: break-word;
            }

            .subtitle {
                font-size: 0.9rem;
                line-height: 1.4;
            }

            .hero-content {
                padding: 1rem;
            }

            .metric-value {
                font-size: 2rem;
            }

            .metric-label {
                font-size: 0.75rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            h3 {
                font-size: 1.2rem;
            }

            .innovation-card h3 {
                font-size: 1.3rem;
            }

            .innovation-tag {
                font-size: 0.7rem;
                padding: 0.4rem 0.8rem;
            }

            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            section {
                padding: 2rem 0.75rem;
            }

            .innovation-grid,
            .services-grid {
                gap: 1.5rem;
            }

            .service-card {
                padding: 1.25rem;
            }

            .service-icon {
                font-size: 2rem;
            }

            .contact-item a {
                font-size: 0.95rem;
                word-break: break-word;
            }
        }
    