
        :root {
            --vm2i-primary: #1a5fb4;
            --vm2i-secondary: #00b894;
            --vm2i-dark: #1e272e;
            --vm2i-light: #f5f6fa;
            --vm2i-accent: #6c5ce7;
            --vm2i-text: #2d3436;
            --vm2i-white: #ffffff;
            --vm2i-gap-base: 8px;
            --vm2i-container-width: 1320px;
        }

        * {
            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: break-word;
            overflow-wrap: break-word;
        }

        /* Typography */
        h1, h2, h3, h4 {
            line-height: 1.2;
            color: var(--vm2i-dark);
            white-space: normal;
            font-weight: 800;
        }

        p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Navigation */
        .vm2i-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: calc(var(--vm2i-gap-base) * 2) 0;
            transition: all 0.3s ease;
        }

        .vm2i-nav-container {
            max-width: var(--vm2i-container-width);
            margin: 0 auto;
            padding: 0 5vw;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

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

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

        .vm2i-menu {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: calc(var(--vm2i-gap-base) * 3);
            min-width: 0;
        }

        .vm2i-menu-item a {
            text-decoration: none;
            color: var(--vm2i-text);
            font-size: 15px;
            font-weight: 600;
            transition: color 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

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

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

        .vm2i-menu-item.active a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--vm2i-primary);
            border-radius: 2px;
        }

        /* Hero Section - Unique Split Layout */
        .vm2i-hero {
            padding-top: 160px;
            padding-bottom: 80px;
            background: linear-gradient(135deg, #ffffff 0%, #eef2f7 100%);
            position: relative;
            overflow: hidden;
        }

        .vm2i-hero::before {
            content: 'PROXY';
            position: absolute;
            top: 10%;
            right: -5%;
            font-size: 20vw;
            font-weight: 900;
            color: rgba(26, 95, 180, 0.03);
            pointer-events: none;
            z-index: 1;
        }

        .vm2i-hero-grid {
            max-width: var(--vm2i-container-width);
            margin: 0 auto;
            padding: 0 5vw;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .vm2i-hero-content {
            flex: 1 1 500px;
            min-width: 0;
            padding-right: 48px;
        }

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

        .vm2i-hero-title {
            font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
            margin-bottom: 24px;
            background: linear-gradient(to right, var(--vm2i-dark), var(--vm2i-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .vm2i-hero-subtitle {
            font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
            color: #57606f;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .vm2i-proxy-card {
            background: var(--vm2i-white);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.8);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }

        .vm2i-proxy-card:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .vm2i-status-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: var(--vm2i-secondary);
            border-radius: 50%;
            margin-right: 8px;
            box-shadow: 0 0 10px var(--vm2i-secondary);
        }

        /* Info Sections */
        .vm2i-section {
            padding: 96px 0;
            max-width: var(--vm2i-container-width);
            margin: 0 auto;
            padding-left: 5vw;
            padding-right: 5vw;
        }

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

        .vm2i-feature-card {
            background: var(--vm2i-white);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .vm2i-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border-color: var(--vm2i-primary);
        }

        .vm2i-step-number {
            font-size: 48px;
            font-weight: 900;
            color: rgba(26, 95, 180, 0.1);
            margin-bottom: 16px;
            display: block;
        }

        /* Tutorial Layout */
        .vm2i-tutorial-row {
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
            align-items: center;
            margin-bottom: 96px;
        }

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

        .vm2i-tutorial-text {
            flex: 1 1 450px;
            min-width: 0;
        }

        .vm2i-tutorial-image {
            flex: 1 1 450px;
            min-width: 0;
            background: #dfe6e9;
            border-radius: 32px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 0 50px rgba(0,0,0,0.05);
        }

        /* Stylized placeholder visual since no real image provided */
        .vm2i-mock-ui {
            width: 80%;
            height: 70%;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            padding: 20px;
        }

        .vm2i-mock-line {
            height: 10px;
            background: #f1f2f6;
            margin-bottom: 15px;
            border-radius: 5px;
        }

        .vm2i-mock-line.short { width: 40%; }
        .vm2i-mock-line.mid { width: 70%; }

        /* CTA Section */
        .vm2i-cta-box {
            background: var(--vm2i-dark);
            border-radius: 40px;
            padding: 80px 40px;
            text-align: center;
            color: var(--vm2i-white);
            position: relative;
            overflow: hidden;
        }

        .vm2i-cta-box h2 {
            color: var(--vm2i-white);
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 24px;
        }

        .vm2i-btn {
            display: inline-block;
            padding: 18px 48px;
            background: var(--vm2i-primary);
            color: var(--vm2i-white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(26, 95, 180, 0.3);
        }

        .vm2i-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(26, 95, 180, 0.4);
            background: var(--vm2i-accent);
        }

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

        .vm2i-footer-grid {
            max-width: var(--vm2i-container-width);
            margin: 0 auto;
            padding: 0 5vw;
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
        }

        .vm2i-footer-col {
            flex: 1 1 200px;
            min-width: 0;
        }

        .vm2i-brand-name {
            font-size: 24px;
            font-weight: 900;
            color: var(--vm2i-primary);
            margin-bottom: 20px;
        }

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

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

        .vm2i-footer-links a {
            text-decoration: none;
            color: #636e72;
            transition: color 0.3s ease;
        }

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

        .vm2i-copyright {
            text-align: center;
            margin-top: 64px;
            padding-top: 32px;
            border-top: 1px solid rgba(0,0,0,0.05);
            color: #b2bec3;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .vm2i-hero-content { padding-right: 0; text-align: center; margin-bottom: 64px; }
            .vm2i-hero-grid { justify-content: center; }
            .vm2i-nav-container { justify-content: center; gap: 20px; }
        }

        @media (max-width: 768px) {
            .vm2i-menu {
                justify-content: center;
                gap: 15px;
            }
            .vm2i-section { padding: 64px 5vw; }
            .vm2i-tutorial-row { gap: 32px; }
            .vm2i-tutorial-image { height: 300px; }
        }
    