* {
            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;
            --gold: #ffd700;
        }

        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;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(5, 8, 21, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 212, 255, 0.2);
            z-index: 1000;
            padding: 1rem 2rem;
        }

        nav a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding-top: 80px;
        }

        #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: 3rem 2rem;
        }

        h1 {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--gold), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            font-size: clamp(1rem, 2.5vw, 1.5rem);
            color: var(--gray);
            margin-bottom: 2rem;
        }

        /* Section Styling */
        section {
            padding: 4rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        h2 {
            font-size: clamp(1.8rem, 4vw, 3rem);
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--gold), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h3 {
            font-size: clamp(1.3rem, 3vw, 2rem);
            color: var(--primary);
            margin-bottom: 1rem;
        }

        h4 {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            color: var(--light);
            margin-bottom: 1rem;
        }

        p {
            color: var(--gray);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        /* Pathway Cards */
        .pathway-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .pathway-card {
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pathway-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 212, 255, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

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

        .pathway-card:hover::before {
            opacity: 1;
        }

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

        .math-framework h4 {
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .math-framework mjx-container {
            max-width: 100%;
            overflow-x: auto;
            overflow-y: hidden;
        }

        /* Translation Boxes */
        .translation-box {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(123, 47, 247, 0.05));
            border-left: 4px solid var(--secondary);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 8px;
        }

        .translation-box h5 {
            color: var(--secondary);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold);
            display: block;
            margin-bottom: 0.5rem;
        }

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

        /* Comparison Table */
        .table-wrapper {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 2rem 0;
        }

        .comparison-table {
            width: 100%;
            min-width: 600px;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            overflow: hidden;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .comparison-table th {
            background: rgba(255, 215, 0, 0.1);
            color: var(--gold);
            font-weight: 700;
        }

        .comparison-table tr:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        /* CTA Button */
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold), var(--primary));
            color: var(--dark);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            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(255, 215, 0, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            nav {
                padding: 1rem;
            }

            section {
                padding: 2rem 1rem;
            }

            .hero-content {
                padding: 2rem 1rem;
            }

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

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

            .comparison-table {
                font-size: 0.9rem;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                min-height: 50vh;
            }

            .stat-value {
                font-size: 1.8rem;
            }

            .pathway-card {
                padding: 1.5rem;
            }

            .comparison-table {
                font-size: 0.85rem;
            }
        }
