:root {
            --primary: #00f2ff;
            --secondary: #7000ff;
            --bg-deep: #030712;
            --glass: rgba(15, 23, 42, 0.6);
            --border: rgba(0, 242, 255, 0.15);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            background-color: var(--bg-deep);
            color: #f8fafc;
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- KINETIC BACKGROUND --- */
        #kinetic-canvas {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            z-index: -1;
            background: radial-gradient(circle at 50% 50%, #050b18 0%, #030712 100%);
        }

        .bg-fixed {
            position: fixed; inset: 0; z-index: -1;
            background: 
                radial-gradient(circle at 10% 10%, rgba(0, 242, 255, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 90% 90%, rgba(112, 0, 255, 0.08) 0%, transparent 40%);
            pointer-events: none;
        }

        /* --- NAVIGATION --- */
        .nav-bar {
            display: flex; justify-content: space-between; align-items: center;
            padding: 1rem 5%;
            border-bottom: 1px solid var(--border);
            backdrop-filter: blur(12px);
            position: sticky; top: 0; z-index: 100;
        }

        .nav-links { display: flex; gap: 2rem; align-items: center; }
        .nav-links a { color: inherit; text-decoration: none; font-size: 0.85rem; transition: 0.3s; }
        .nav-links a:hover { color: var(--primary); }

        .menu-toggle { display: none; background: none; border: none; color: white; cursor: pointer; }

        /* --- HERO SECTION --- */
        .hero {
            padding: 80px 5% 40px;
            display: flex; align-items: center; justify-content: space-between; gap: 3rem;
        }
        .hero-text { flex: 1.2; z-index: 2; }
        .hero-visual { flex: 0.8; display: flex; justify-content: center; }
        .node-graphic {
            width: 100%; max-width: 400px; aspect-ratio: 1;
            background: radial-gradient(circle at center, rgba(0, 242, 255, 0.1) 0%, transparent 70%);
            display: flex; align-items: center; justify-content: center;
            border: 1px dashed var(--border);
        }

        /* --- TYPOGRAPHY --- */
        h1 {
            font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.2rem, 8vw, 4rem);
            line-height: 1.1; margin-bottom: 1.5rem;
            background: linear-gradient(to right, #fff 50%, #94a3b8);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.6rem, 5vw, 2.2rem); margin-bottom: 1.2rem; color: #fff; }
        h3 { font-family: 'Space Grotesk', sans-serif; margin-bottom: 1rem; }

        .tag-pill {
            display: inline-block; padding: 6px 14px;
            background: rgba(0, 242, 255, 0.1); border: 1px solid var(--primary);
            color: var(--primary); border-radius: 4px; font-size: 0.75rem;
            font-weight: 700; text-transform: uppercase; margin-bottom: 1rem;
        }

        /* --- CONTENT SECTIONS --- */
        .content-section { padding: 80px 5%; max-width: 1500px; margin: 0 auto; }
        
        .integration-strip {
            padding: 40px 0; background: rgba(255,255,255,0.02);
            text-align: center;
        }
        .logo-cloud {
            display: flex; justify-content: center; flex-wrap: wrap;
            gap: 2.5rem; margin-top: 1.5rem; opacity: 0.6; padding: 0 5%;
        }
        .logo-item { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1rem; }

        /* --- GRIDS & CARDS --- */
        .sales-grid, .differentiation-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem; margin: 2rem 0;
        }

        .feature-card, .diff-card {
            background: var(--glass); border: 1px solid var(--border);
            padding: 2rem; border-radius: 4px; backdrop-filter: blur(8px);
            transition: 0.3s;
        }
        .feature-card:hover, .diff-card:hover { border-color: var(--primary); transform: translateY(-5px); }

        .icon-circle {
            width: 50px; height: 50px; background: rgba(0, 242, 255, 0.1);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; color: var(--primary); margin-bottom: 1.2rem;
        }

        /* --- LISTS --- */
        .info-list {
            list-style: none; display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.2rem; margin: 2rem 0;
        }
        .info-list li {
            background: var(--glass); border: 1px solid var(--border);
            padding: 1.2rem; display: flex; align-items: center; gap: 1rem;
        }

        /* --- BLUEPRINT --- */
        .blueprint-container {
            background: #0f172a; border: 1px solid var(--border); border-radius: 8px;
            padding: 30px; margin: 30px 0; overflow-x: auto; 
            box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
        }
        .blueprint-container svg { min-width: 700px; height: auto; display: block; }
        .wire { fill: none; stroke: var(--primary); stroke-width: 1.5; opacity: 0.6; stroke-dasharray: 4; animation: flow 20s linear infinite; }
        @keyframes flow { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 0; } }
        .node { fill: #1e293b; stroke: #334155; }
        .node-header { fill: #334155; }
        .node-text { fill: #f8fafc; font-size: 10px; font-weight: 600; }
        .node-label { fill: #94a3b8; font-size: 8px; }

        /* --- BUTTONS --- */
        .btn {
            padding: 16px 32px; font-weight: 700; text-decoration: none;
            text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
            display: inline-block;
            cursor: pointer;
        }
        .btn-primary { background: var(--primary); color: var(--bg-deep); border: none; }
        .btn-outline { border: 1px solid var(--primary); color: var(--primary); margin-left: 1rem; }

        /* --- MOBILE ADAPTATIONS --- */
        @media (max-width: 768px) {
            .nav-links {
                display: none; position: absolute; top: 100%; left: 0; width: 100%;
                background: var(--bg-deep); flex-direction: column; padding: 2rem;
                border-bottom: 1px solid var(--border);
            }
            .nav-links.active { display: flex; }
            .menu-toggle { display: block; }
            
            .hero { flex-direction: column-reverse; text-align: center; padding: 40px 5%; }
            .hero-text h1 { font-size: 2.5rem; }
            .btn { width: 100%; margin: 5px 0; }
            .btn-outline { margin-left: 0; }

            .logo-cloud { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 1rem; }
            .logo-item { background: rgba(255,255,255,0.05); padding: 8px 15px; border-radius: 4px; }
            
            .content-section { padding: 50px 5%; }
        }