
        :root {
            --vm2i-primary: #0078d4;
            --vm2i-accent: #00d1ff;
            --vm2i-bg-dark: #0a0e14;
            --vm2i-bg-panel: #161b22;
            --vm2i-text-main: #e6edf3;
            --vm2i-text-dim: #8b949e;
            --vm2i-border: #30363d;
            --vm2i-success: #238636;
            --vm2i-spacing: 8px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
            background-color: var(--vm2i-bg-dark);
            color: var(--vm2i-text-main);
            line-height: 1.6;
            word-break: keep-all;
            overflow-x: hidden;
        }

        /* 布局容器 */
        .vm2i-layout-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* 导航栏 */
        .vm2i-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 14, 20, 0.85);
            backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid var(--vm2i-border);
        }

        .vm2i-nav-wrapper {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            min-height: 70px;
        }

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

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

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

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

        .vm2i-nav-item a:hover {
            color: var(--vm2i-accent);
        }

        .vm2i-nav-item.active a {
            color: var(--vm2i-accent);
            border-bottom: 2px solid var(--vm2i-accent);
            padding-bottom: 4px;
        }

        /* Hero 区 - 非对称布局 */
        .vm2i-hero {
            padding-top: 160px;
            padding-bottom: 80px;
            background: radial-gradient(circle at 10% 20%, rgba(0, 120, 212, 0.1) 0%, transparent 40%);
        }

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

        .vm2i-hero-text {
            flex: 1;
            min-width: 320px;
            word-break: break-word;
        }

        .vm2i-hero-text h1 {
            font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(to right, #fff, var(--vm2i-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .vm2i-hero-text p {
            font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
            color: var(--vm2i-text-dim);
            max-width: 600px;
            margin-bottom: 32px;
        }

        .vm2i-hero-visual {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        /* 模拟终端 UI */
        .vm2i-terminal-mockup {
            background: #1e1e1e;
            border-radius: 12px;
            border: 1px solid var(--vm2i-border);
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            padding: 20px;
            font-family: "Consolas", monospace;
            overflow: hidden;
        }

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

        .vm2i-terminal-body {
            color: #d4d4d4;
            font-size: 14px;
        }

        .vm2i-code-line { color: #9cdcfe; margin-bottom: 4px; }
        .vm2i-code-comment { color: #6a9955; }

        /* 内容板块 */
        .vm2i-section {
            padding: 96px 0;
            border-top: 1px solid var(--vm2i-border);
        }

        .vm2i-section-title {
            text-align: center;
            margin-bottom: 64px;
        }

        .vm2i-section-title h2 {
            font-size: clamp(2rem, 3vw, 2.5rem);
            margin-bottom: 16px;
        }

        /* 步骤卡片 */
        .vm2i-steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .vm2i-step-card {
            background: var(--vm2i-bg-panel);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid var(--vm2i-border);
            transition: transform 0.3s ease, border-color 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

        .vm2i-step-number {
            font-size: 48px;
            font-weight: 800;
            color: rgba(0, 209, 255, 0.1);
            position: absolute;
            top: 10px;
            right: 20px;
        }

        .vm2i-step-card h3 {
            margin-bottom: 16px;
            color: var(--vm2i-accent);
        }

        /* 详情区块 */
        .vm2i-detail-block {
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
            align-items: center;
            margin-bottom: 80px;
        }

        .vm2i-detail-block:nth-child(even) {
            flex-direction: row-reverse;
        }

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

        .vm2i-detail-image-box {
            flex: 1;
            min-width: 300px;
            background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
            border: 1px solid var(--vm2i-border);
            border-radius: 20px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* 提示框 */
        .vm2i-alert {
            background: rgba(0, 120, 212, 0.1);
            border-left: 4px solid var(--vm2i-primary);
            padding: 24px;
            margin-top: 24px;
            border-radius: 0 8px 8px 0;
        }

        /* 按钮 */
        .vm2i-btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            margin-top: 16px;
        }

        .vm2i-btn-primary {
            background: linear-gradient(135deg, var(--vm2i-primary) 0%, #005a9e 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 120, 212, 0.3);
        }

        .vm2i-btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0, 120, 212, 0.5);
        }

        /* 页脚 */
        .vm2i-footer {
            padding: 80px 0 40px;
            border-top: 1px solid var(--vm2i-border);
            background: #0d1117;
        }

        .vm2i-footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            margin-bottom: 64px;
        }

        .vm2i-footer-brand h4 {
            font-size: 20px;
            margin-bottom: 16px;
        }

        .vm2i-footer-links h5 {
            margin-bottom: 24px;
            color: var(--vm2i-text-dim);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }

        .vm2i-footer-links ul {
            list-style: none;
        }

        .vm2i-footer-links li {
            margin-bottom: 12px;
        }

        .vm2i-footer-links a {
            color: var(--vm2i-text-dim);
            text-decoration: none;
            transition: color 0.3s;
        }

        .vm2i-footer-links a:hover {
            color: var(--vm2i-accent);
        }

        .vm2i-copyright {
            text-align: center;
            color: var(--vm2i-text-dim);
            font-size: 14px;
            padding-top: 40px;
            border-top: 1px solid var(--vm2i-border);
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .vm2i-nav {
                display: none; /* 简化演示，实际应为汉堡菜单 */
            }
            .vm2i-hero {
                padding-top: 120px;
            }
            .vm2i-detail-block {
                gap: 32px;
            }
        }
    