
        :root {
            --vm2i-primary: #0078d4;
            --vm2i-primary-dark: #005a9e;
            --vm2i-accent: #00f2fe;
            --vm2i-bg: #f8fafc;
            --vm2i-card-bg: #ffffff;
            --vm2i-text: #1e293b;
            --vm2i-text-light: #64748b;
            --vm2i-nav-bg: rgba(255, 255, 255, 0.85);
            --vm2i-terminal-bg: #0f172a;
            --vm2i-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
            --vm2i-radius: 16px;
            --vm2i-gap: 8px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--vm2i-text);
            background-color: var(--vm2i-bg);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: break-word;
        }

        /* Fluid Typography */
        h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4rem); line-height: 1.1; font-weight: 800; }
        h2 { font-size: clamp(1.8rem, 3vw + 0.5rem, 2.5rem); margin-bottom: 24px; font-weight: 700; }
        p { font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem); color: var(--vm2i-text-light); }

        .vm2i-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            min-width: 0;
        }

        /* Navigation */
        .vm2i-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: var(--vm2i-nav-bg);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 16px 0;
        }

        .vm2i-nav-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            min-width: 0;
        }

        .vm2i-logo {
            flex-shrink: 0;
            min-width: 0;
        }

        .vm2i-logo img {
            height: 32px;
            display: block;
        }

        .vm2i-menu {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 16px;
            min-width: 0;
        }

        .vm2i-menu-link {
            text-decoration: none;
            color: var(--vm2i-text);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .vm2i-menu-link:hover {
            background: rgba(0, 120, 212, 0.1);
            color: var(--vm2i-primary);
        }

        .vm2i-menu-link.active {
            background: var(--vm2i-primary);
            color: white;
        }

        /* Hero Section - Blueprint Style */
        .vm2i-hero {
            padding: 160px 0 96px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        .vm2i-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(var(--vm2i-primary) 0.5px, transparent 0.5px);
            background-size: 32px 32px;
            opacity: 0.1;
        }

        .vm2i-hero-content {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            min-width: 0;
        }

        .vm2i-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(0, 120, 212, 0.1);
            color: var(--vm2i-primary);
            border-radius: 20px;
            font-weight: 600;
            margin-bottom: 24px;
            font-size: 14px;
        }

        .vm2i-hero h1 {
            margin-bottom: 24px;
            background: linear-gradient(to right, #1e293b, #0078d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Section Layouts */
        .vm2i-section {
            padding: 96px 0;
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        .vm2i-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            width: 100%;
        }

        /* Config Cards */
        .vm2i-step-card {
            background: var(--vm2i-card-bg);
            border-radius: var(--vm2i-radius);
            padding: 40px;
            box-shadow: var(--vm2i-shadow);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            min-width: 0;
            border: 1px solid rgba(0,0,0,0.03);
        }

        .vm2i-step-card:hover {
            transform: translateY(-8px);
        }

        .vm2i-step-num {
            font-size: 48px;
            font-weight: 900;
            color: rgba(0, 120, 212, 0.1);
            margin-bottom: 16px;
            line-height: 1;
        }

        /* Terminal Mockup */
        .vm2i-terminal-box {
            background: var(--vm2i-terminal-bg);
            border-radius: 12px;
            padding: 24px;
            color: #fff;
            font-family: 'Courier New', Courier, monospace;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            margin-top: 32px;
            position: relative;
            overflow: hidden;
            min-width: 0;
        }

        .vm2i-terminal-header {
            display: flex;
            gap: 6px;
            margin-bottom: 16px;
        }

        .vm2i-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .vm2i-dot.red { background: #ff5f56; }
        .vm2i-dot.yellow { background: #ffbd2e; }
        .vm2i-dot.green { background: #27c93f; }

        .vm2i-code-line {
            color: #a5b4fc;
            margin-bottom: 8px;
        }

        .vm2i-code-highlight {
            color: var(--vm2i-accent);
        }

        /* Split Section */
        .vm2i-split {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 64px;
            min-width: 0;
        }

        .vm2i-split-text {
            flex: 1;
            min-width: 300px;
        }

        .vm2i-split-visual {
            flex: 1;
            min-width: 300px;
            background: white;
            padding: 32px;
            border-radius: 24px;
            border: 2px dashed #e2e8f0;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        /* CSS-based Key Graphic */
        .vm2i-key-visual {
            width: 120px;
            height: 120px;
            background: var(--vm2i-primary);
            border-radius: 50%;
            position: relative;
            box-shadow: 0 0 30px rgba(0,120,212,0.4);
        }
        .vm2i-key-visual::after {
            content: 'SSH';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: 800;
        }

        /* CTA Section */
        .vm2i-cta {
            background: var(--vm2i-text);
            color: white;
            text-align: center;
            padding: 80px 24px;
            border-radius: 32px;
            margin: 64px auto;
            max-width: 1000px;
            min-width: 0;
        }

        .vm2i-cta h2 { color: white; }

        .vm2i-button {
            display: inline-block;
            padding: 16px 40px;
            background: var(--vm2i-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            margin-top: 24px;
        }

        .vm2i-button:hover {
            background: var(--vm2i-primary-dark);
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* Footer */
        .vm2i-footer {
            background: #fff;
            padding: 64px 0 32px;
            border-top: 1px solid #eee;
        }

        .vm2i-footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 48px;
            min-width: 0;
        }

        .vm2i-footer-brand {
            flex: 2;
            min-width: 250px;
        }

        .vm2i-footer-links {
            flex: 1;
            min-width: 150px;
            list-style: none;
        }

        .vm2i-footer-links li { margin-bottom: 12px; }
        .vm2i-footer-links a { text-decoration: none; color: var(--vm2i-text-light); transition: color 0.3s; }
        .vm2i-footer-links a:hover { color: var(--vm2i-primary); }

        .vm2i-copyright {
            margin-top: 48px;
            padding-top: 24px;
            border-top: 1px solid #f1f5f9;
            text-align: center;
            font-size: 14px;
            color: var(--vm2i-text-light);
            width: 100%;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .vm2i-menu {
                display: none; /* In a real site, implement a toggle */
            }
            .vm2i-section { padding: 48px 0; }
            .vm2i-grid { grid-template-columns: 1fr; }
            .vm2i-split { flex-direction: column; }
            .vm2i-split-visual { order: -1; }
        }
    