
        :root {
            --vm2i-primary: #0066ff;
            --vm2i-secondary: #00d2ff;
            --vm2i-dark: #0f172a;
            --vm2i-accent: #f59e0b;
            --vm2i-text: #334155;
            --vm2i-light: #f8fafc;
            --vm2i-white: #ffffff;
            --vm2i-border: #e2e8f0;
            --vm2i-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        }

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

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

        /* Fluid Typography */
        h1 { font-size: clamp(2.2rem, 5vw + 1rem, 4rem); line-height: 1.2; font-weight: 800; color: var(--vm2i-dark); margin-bottom: 24px; word-break: break-word; }
        h2 { font-size: clamp(1.8rem, 3vw + 0.5rem, 2.8rem); line-height: 1.3; font-weight: 700; color: var(--vm2i-dark); margin-bottom: 32px; word-break: break-word; }
        h3 { font-size: clamp(1.2rem, 2vw + 0.2rem, 1.8rem); font-weight: 600; margin-bottom: 16px; }
        p { font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem); line-height: 1.8; margin-bottom: 16px; overflow-wrap: break-word; }

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

        .vm2i-nav-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

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

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

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

        .vm2i-menu a {
            text-decoration: none;
            color: var(--vm2i-text);
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
            white-space: nowrap;
        }

        .vm2i-menu a:hover, .vm2i-menu a.active {
            color: var(--vm2i-primary);
        }

        /* Layout Helpers */
        .vm2i-section {
            padding: 96px 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .vm2i-container {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Hero Download Section */
        .vm2i-hero-wrap {
            background: var(--vm2i-gradient);
            padding: 140px 24px 80px;
            position: relative;
            overflow: hidden;
            color: var(--vm2i-white);
        }

        .vm2i-hero-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
            min-width: 0;
        }

        .vm2i-hero-text {
            flex: 1 1 500px;
            min-width: 0;
        }

        .vm2i-hero-text h1 { color: #fff; }
        .vm2i-hero-text p { color: #cbd5e1; margin-bottom: 40px; }

        .vm2i-download-card {
            flex: 1 1 400px;
            min-width: 0;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px;
            backdrop-filter: blur(20px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .vm2i-btn-primary {
            display: inline-block;
            background: linear-gradient(90deg, var(--vm2i-primary), var(--vm2i-secondary));
            color: white;
            padding: 18px 48px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            text-align: center;
            width: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
        }

        .vm2i-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
        }

        .vm2i-version-info {
            margin-top: 24px;
            font-size: 0.875rem;
            color: #94a3b8;
            display: flex;
            justify-content: space-between;
        }

        /* Feature Split Layout */
        .vm2i-split-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
            align-items: center;
            margin-top: 48px;
        }

        .vm2i-split-text { flex: 1 1 450px; min-width: 0; }
        .vm2i-split-visual {
            flex: 1 1 450px;
            min-width: 0;
            background: #000;
            border-radius: 16px;
            padding: 24px;
            font-family: 'Courier New', Courier, monospace;
            color: #10b981;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .vm2i-terminal-header {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
        }
        .vm2i-dot { width: 12px; height: 12px; border-radius: 50%; }
        .vm2i-dot-red { background: #ff5f56; }
        .vm2i-dot-yellow { background: #ffbd2e; }
        .vm2i-dot-green { background: #27c93f; }

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

        .vm2i-card {
            background: var(--vm2i-white);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid var(--vm2i-border);
            transition: all 0.3s;
        }

        .vm2i-card:hover {
            border-color: var(--vm2i-primary);
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        /* Dynamic Content Section */
        .vm2i-news-section {
            background: #fff;
            border-radius: 32px;
            margin: 40px 0;
            width: 100%;
        }

        /* Footer */
        .vm2i-footer {
            background: var(--vm2i-dark);
            color: #94a3b8;
            padding: 80px 24px 40px;
        }

        .vm2i-footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            justify-content: space-between;
        }

        .vm2i-footer-brand { flex: 1 1 300px; min-width: 0; }
        .vm2i-footer-brand h2 { color: #fff; margin-bottom: 16px; }
        .vm2i-footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            flex: 1 1 600px;
            min-width: 0;
        }

        .vm2i-link-group { flex: 1 1 150px; min-width: 0; }
        .vm2i-link-group h4 { color: #fff; margin-bottom: 24px; text-transform: uppercase; font-size: 0.875rem; letter-spacing: 0.05em; }
        .vm2i-link-group ul { list-style: none; }
        .vm2i-link-group ul li { margin-bottom: 12px; }
        .vm2i-link-group ul a { color: #94a3b8; text-decoration: none; transition: color 0.3s; font-size: 0.875rem; }
        .vm2i-link-group ul a:hover { color: #fff; }

        .vm2i-copyright {
            max-width: 1100px;
            margin: 64px auto 0;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.875rem;
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .vm2i-nav-inner { height: auto; padding: 16px; }
            .vm2i-menu { gap: 12px; margin-top: 12px; width: 100%; justify-content: center; }
            .vm2i-hero-wrap { padding-top: 120px; }
            .vm2i-section { padding: 64px 20px; }
        }
    