* {
            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;
            --success: #00ff88;
            --warning: #ffd60a;
        }

        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;
            margin-right: 2rem;
        }

        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: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .tag-line {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(255, 0, 110, 0.1);
            border: 1px solid var(--accent);
            border-radius: 30px;
            color: var(--accent);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        /* Content Sections */
        section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        h2 {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        h3 {
            font-size: clamp(1.25rem, 3vw, 1.75rem);
            margin: 2rem 0 1rem;
            color: var(--secondary);
        }

        h4 {
            font-size: 1.25rem;
            margin: 1.5rem 0 0.75rem;
            color: var(--primary);
        }

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

        /* Framework Cards */
        .framework-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .framework-card {
            background: rgba(123, 47, 247, 0.05);
            border: 1px solid rgba(123, 47, 247, 0.2);
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .framework-card:hover {
            transform: translateY(-5px);
            border-color: var(--secondary);
            box-shadow: 0 10px 30px rgba(123, 47, 247, 0.3);
        }

        /* Math Display */
        .math-block {
            background: rgba(0, 212, 255, 0.05);
            border-left: 3px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 8px;
            overflow-x: auto;
        }

        /* Code Blocks */
        pre {
            background: rgba(10, 14, 39, 0.8);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 8px;
            padding: 1.5rem;
            overflow-x: auto;
            margin: 1.5rem 0;
        }

        code {
            color: var(--success);
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
        }

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

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

        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Lists */
        ul {
            list-style: none;
            padding-left: 0;
        }

        li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        li::before {
            content: "▹";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        /* Highlight Boxes */
        .highlight-box {
            background: rgba(255, 0, 110, 0.1);
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 8px;
        }

        .success-box {
            background: rgba(0, 255, 136, 0.1);
            border-left: 4px solid var(--success);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 8px;
        }

        .warning-box {
            background: rgba(255, 214, 10, 0.1);
            border-left: 4px solid var(--warning);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 8px;
        }

        /* Process Flow */
        .process-flow {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .process-step {
            display: flex;
            align-items: flex-start;
            background: rgba(123, 47, 247, 0.05);
            border: 1px solid rgba(123, 47, 247, 0.3);
            border-radius: 8px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            border-color: var(--primary);
            transform: translateX(10px);
        }

        .step-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            margin-right: 1.5rem;
            min-width: 60px;
        }

        .step-content h4 {
            margin-top: 0;
            color: var(--light);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            nav {
                padding: 1rem;
            }
            
            nav a {
                display: block;
                margin: 0.5rem 0;
            }

            section {
                padding: 2rem 1rem;
            }

            .framework-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Footer */
        footer {
            background: var(--dark);
            padding: 3rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(0, 212, 255, 0.2);
        }

        footer a {
            color: var(--primary);
            text-decoration: none;
        }

        footer a:hover {
            color: var(--secondary);
        }
