
        :root {
            --mldow-primary: #3498db;
            --mldow-secondary: #2c3e50;
            --mldow-accent: #e67e22;
            --mldow-bg-light: #f8fafc;
            --mldow-text-dark: #1e293b;
            --mldow-text-muted: #64748b;
            --mldow-white: #ffffff;
            --mldow-card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            --mldow-radius: 16px;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--mldow-bg-light);
            color: var(--mldow-text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3 {
            line-height: 1.2;
            word-break: keep-all;
            overflow-wrap: break-word;
            margin-bottom: 24px;
        }

        p {
            line-height: 1.8;
            margin-bottom: 16px;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* Navigation */
        .mldow-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 16px 0;
            transition: all 0.3s ease;
        }

        .mldow-container-nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .mldow-logo {
            flex: 0 0 auto;
            max-width: 180px;
        }

        .mldow-logo img {
            max-width: 100%;
            height: auto;
            display: block;
        }

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

        .mldow-menu-item a {
            text-decoration: none;
            color: var(--mldow-text-dark);
            font-weight: 500;
            font-size: 14px;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .mldow-menu-item a:hover {
            color: var(--mldow-primary);
            background: rgba(52, 152, 219, 0.05);
        }

        .mldow-menu-item a.mldow-active {
            color: var(--mldow-white);
            background: var(--mldow-primary);
        }

        /* Hero Section - Unique Blueprint Style */
        .mldow-hero {
            padding: 160px 32px 96px;
            background: radial-gradient(circle at top right, #e0f2fe, transparent),
                        radial-gradient(circle at bottom left, #fef3c7, transparent);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .mldow-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(rgba(52, 152, 219, 0.05) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(52, 152, 219, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 0;
        }

        .mldow-hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .mldow-hero-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--mldow-secondary);
            margin-bottom: 24px;
        }

        .mldow-hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: var(--mldow-text-muted);
            margin-bottom: 40px;
        }

        /* Section Layouts */
        .mldow-section {
            padding: 96px 32px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .mldow-grid-nexus {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .mldow-card {
            background: var(--mldow-white);
            padding: 40px;
            border-radius: var(--mldow-radius);
            box-shadow: var(--mldow-card-shadow);
            transition: transform 0.3s ease;
            border: 1px solid rgba(0,0,0,0.03);
            min-width: 0;
        }

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

        .mldow-card-tag {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(52, 152, 219, 0.1);
            color: var(--mldow-primary);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .mldow-card-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .mldow-engine-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .mldow-engine-item {
            font-size: 13px;
            background: #f1f5f9;
            padding: 4px 10px;
            border-radius: 6px;
            color: var(--mldow-text-muted);
        }

        /* Feature Row Layout */
        .mldow-feature-row {
            display: flex;
            align-items: center;
            gap: 64px;
            margin-bottom: 96px;
            flex-wrap: wrap;
        }

        .mldow-feature-row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .mldow-feature-content {
            flex: 1;
            min-width: 300px;
        }

        .mldow-feature-visual {
            flex: 1;
            min-width: 300px;
            background: var(--mldow-secondary);
            height: 300px;
            border-radius: var(--mldow-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.1);
            font-size: 120px;
            font-weight: 900;
            box-shadow: 20px 20px 60px #d1d9e6, -20px -20px 60px #ffffff;
            overflow: hidden;
            position: relative;
        }

        .mldow-feature-visual::after {
            content: "MobaXterm Console";
            position: absolute;
            font-size: 14px;
            top: 20px;
            left: 20px;
            color: var(--mldow-primary);
            font-family: monospace;
        }

        /* Guide Steps */
        .mldow-steps {
            background: var(--mldow-secondary);
            color: var(--mldow-white);
            border-radius: 32px;
            padding: 64px;
            margin: 64px 32px;
        }

        .mldow-step-item {
            display: flex;
            gap: 32px;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }

        .mldow-step-number {
            font-size: 48px;
            font-weight: 900;
            color: var(--mldow-primary);
            opacity: 0.5;
            line-height: 1;
        }

        .mldow-step-body {
            flex: 1;
            min-width: 280px;
        }

        /* CTA Section */
        .mldow-cta {
            text-align: center;
            padding: 96px 32px;
            background: var(--mldow-primary);
            color: var(--mldow-white);
            margin: 64px 0 0;
        }

        .mldow-btn {
            display: inline-block;
            padding: 16px 40px;
            background: var(--mldow-white);
            color: var(--mldow-primary);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-top: 32px;
        }

        .mldow-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* Footer */
        .mldow-footer {
            background: #1a202c;
            color: #a0aec0;
            padding: 64px 32px;
        }

        .mldow-footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
        }

        .mldow-footer-brand h2 {
            color: var(--mldow-white);
            font-size: 24px;
            margin-bottom: 16px;
        }

        .mldow-footer-links h3 {
            color: var(--mldow-white);
            font-size: 16px;
            margin-bottom: 24px;
        }

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

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

        .mldow-footer-links a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.2s;
        }

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

        .mldow-copyright {
            text-align: center;
            margin-top: 64px;
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-size: 14px;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .mldow-container-nav {
                flex-direction: column;
                gap: 16px;
            }
            .mldow-menu {
                justify-content: center;
            }
            .mldow-section {
                padding: 64px 24px;
            }
            .mldow-feature-row {
                gap: 32px;
            }
            .mldow-steps {
                padding: 32px;
                margin: 32px 16px;
            }
        }

    