
        :root {
            --vm2i-primary: #0066FF;
            --vm2i-secondary: #00D1FF;
            --vm2i-dark: #0A0F1E;
            --vm2i-gray-dark: #1E2538;
            --vm2i-gray-light: #F4F7FA;
            --vm2i-text: #E0E6ED;
            --vm2i-text-muted: #8E9AAF;
            --vm2i-white: #FFFFFF;
            --vm2i-accent: #00FFC2;
            --vm2i-spacing-unit: 8px;
            --vm2i-container-width: 1140px;
        }

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

        body {
            font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
            background-color: var(--vm2i-dark);
            color: var(--vm2i-text);
            line-height: 1.6;
            overflow-x: hidden;
            word-break: keep-all;
        }

        /* 布局基础 */
        .vm2i-container {
            max-width: var(--vm2i-container-width);
            margin: 0 auto;
            padding: 0 calc(var(--vm2i-spacing-unit) * 3);
            width: 100%;
        }

        .vm2i-flex {
            display: flex;
            flex-wrap: wrap;
        }

        .vm2i-flex-item {
            min-width: 0;
        }

        /* 导航栏 */
        .vm2i-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 15, 30, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .vm2i-nav-container {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .vm2i-logo {
            display: flex;
            align-items: center;
        }

        .vm2i-logo img {
            height: 40px;
            width: auto;
        }

        .vm2i-nav-list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: calc(var(--vm2i-spacing-unit) * 3);
        }

        .vm2i-nav-link {
            text-decoration: none;
            color: var(--vm2i-text-muted);
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .vm2i-nav-link:hover, .vm2i-nav-link.active {
            color: var(--vm2i-accent);
        }

        /* Hero 区域 - 独特非对称布局 */
        .vm2i-hero {
            padding-top: 180px;
            padding-bottom: 96px;
            background: radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.15) 0%, transparent 40%);
            position: relative;
        }

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

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

        .vm2i-hero-title {
            font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 24px;
            word-break: break-word;
            background: linear-gradient(135deg, #FFF 0%, #00D1FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .vm2i-hero-subtitle {
            font-size: clamp(1.1rem, 1vw + 0.5rem, 1.3rem);
            color: var(--vm2i-text-muted);
            margin-bottom: 40px;
            max-width: 600px;
        }

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

        /* 模拟终端界面 */
        .vm2i-terminal-mockup {
            background: var(--vm2i-gray-dark);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
            padding: 24px;
            font-family: "Fira Code", monospace;
            position: relative;
            overflow: hidden;
        }

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

        .vm2i-dot { width: 12px; height: 12px; border-radius: 50%; }
        .vm2i-red { background: #FF5F56; }
        .vm2i-yellow { background: #FFBD2E; }
        .vm2i-green { background: #27C93F; }

        .vm2i-code-line {
            margin-bottom: 8px;
            font-size: 0.9rem;
            display: flex;
            gap: 12px;
        }

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

        /* 特性区块 - 卡片流布局 */
        .vm2i-features {
            padding: 96px 0;
            background-color: rgba(255, 255, 255, 0.02);
        }

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

        .vm2i-section-tag {
            color: var(--vm2i-primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 16px;
        }

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

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

        .vm2i-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 40px;
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }

        .vm2i-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--vm2i-primary);
        }

        .vm2i-card-icon {
            font-size: 2.5rem;
            margin-bottom: 24px;
            color: var(--vm2i-primary);
        }

        .vm2i-card-title {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--vm2i-white);
        }

        .vm2i-card-body {
            color: var(--vm2i-text-muted);
            font-size: 1rem;
            line-height: 1.7;
        }

        /* 步骤解析 - 垂直错位布局 */
        .vm2i-workflow {
            padding: 96px 0;
        }

        .vm2i-step-item {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 80px;
            gap: 48px;
        }

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

        .vm2i-step-content {
            flex: 1;
            min-width: 320px;
        }

        .vm2i-step-number {
            font-size: 4rem;
            font-weight: 900;
            opacity: 0.1;
            margin-bottom: -20px;
            display: block;
        }

        .vm2i-step-title {
            font-size: 2rem;
            margin-bottom: 24px;
            color: var(--vm2i-accent);
        }

        .vm2i-step-desc {
            font-size: 1.1rem;
            color: var(--vm2i-text-muted);
            margin-bottom: 24px;
            word-break: break-word;
        }

        .vm2i-step-visual {
            flex: 1;
            min-width: 320px;
            background: linear-gradient(135deg, #1E2538 0%, #0A0F1E 100%);
            border-radius: 24px;
            padding: 32px;
            border: 1px solid rgba(0, 209, 255, 0.2);
            text-align: center;
        }

        /* 按钮样式 */
        .vm2i-btn {
            display: inline-block;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 1.1rem;
        }

        .vm2i-btn-primary {
            background: linear-gradient(90deg, var(--vm2i-primary), var(--vm2i-secondary));
            color: white;
            box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
        }

        .vm2i-btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 102, 255, 0.4);
        }

        /* 动态内容区标记 */
        .vm2i-dynamic-section {
            padding: 96px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* 页脚 */
        .vm2i-footer {
            padding: 80px 0 40px;
            background: #050810;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

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

        .vm2i-footer-brand-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--vm2i-white);
            margin-bottom: 24px;
        }

        .vm2i-footer-text {
            color: var(--vm2i-text-muted);
            font-size: 0.9rem;
            max-width: 300px;
        }

        .vm2i-footer-heading {
            font-size: 1.1rem;
            color: var(--vm2i-white);
            margin-bottom: 24px;
            font-weight: 600;
        }

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

        .vm2i-footer-link {
            display: block;
            color: var(--vm2i-text-muted);
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .vm2i-footer-link:hover {
            color: var(--vm2i-primary);
        }

        .vm2i-copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--vm2i-text-muted);
            font-size: 0.85rem;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .vm2i-nav-list {
                display: none; /* 简化移动端处理 */
            }
            .vm2i-hero-title {
                text-align: center;
            }
            .vm2i-hero-subtitle {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }
            .vm2i-hero-visual {
                order: -1;
            }
            .vm2i-step-item, .vm2i-step-item:nth-child(even) {
                flex-direction: column;
            }
        }
    