
        :root {
            --mwgls-primary: #007bff;
            --mwgls-secondary: #6c757d;
            --mwgls-accent: #00f2fe;
            --mwgls-dark: #0f172a;
            --mwgls-bg: #f8fafc;
            --mwgls-text: #1e293b;
            --mwgls-code-bg: #1e1e1e;
            --mwgls-terminal-green: #4ade80;
            --mwgls-spacing-unit: 8px;
        }

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

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

        /* 杂色纹理与扫描线背景 */
        body::before {
            content: "";
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.03;
            pointer-events: none;
            z-index: 9999;
        }

        .mwgls-scanline {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.05) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.01), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.01));
            background-size: 100% 4px, 3px 100%;
            pointer-events: none;
            z-index: 9998;
        }

        /* 导航栏 */
        .mwgls-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.1);
            padding: 1rem 5vw;
        }

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

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

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

        .mwgls-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            list-style: none;
            min-width: 0;
        }

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

        .mwgls-nav a:hover, .mwgls-nav a.active {
            color: var(--mwgls-primary);
            border-bottom: 2px solid var(--mwgls-primary);
        }

        /* 非对称Hero布局 */
        .mwgls-hero {
            display: flex;
            flex-wrap: wrap;
            min-height: 80vh;
            max-width: 1400px;
            margin: 0 auto;
            padding: 64px 5vw;
            align-items: center;
        }

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

        .mwgls-hero-visual {
            flex: 1 1 400px;
            min-width: 0;
            background: var(--mwgls-code-bg);
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }

        .mwgls-hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--mwgls-dark), var(--mwgls-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .mwgls-hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: var(--mwgls-secondary);
            margin-bottom: 40px;
            max-width: 600px;
        }

        /* 终端仿真窗口 */
        .mwgls-terminal-window {
            font-family: 'Fira Code', 'Courier New', monospace;
            color: #d1d5db;
        }

        .mwgls-terminal-header {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
        }

        .mwgls-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .mwgls-dot-red { background: #ff5f56; }
        .mwgls-dot-yellow { background: #ffbd2e; }
        .mwgls-dot-green { background: #27c93f; }

        .mwgls-terminal-line {
            margin-bottom: 8px;
            word-break: break-all;
        }

        .mwgls-cursor {
            display: inline-block;
            width: 10px;
            height: 20px;
            background: var(--mwgls-terminal-green);
            animation: blink 1s infinite;
            vertical-align: middle;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* 下载按钮 */
        .mwgls-btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .mwgls-btn {
            display: inline-block;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
        }

        .mwgls-btn-primary {
            background: var(--mwgls-primary);
            color: white;
            box-shadow: 0 10px 15px -3px rgba(0, 123, 255, 0.4);
        }

        .mwgls-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 25px -5px rgba(0, 123, 255, 0.5);
        }

        /* 解决方案区域 */
        .mwgls-section {
            padding: 96px 5vw;
            max-width: 1400px;
            margin: 0 auto;
        }

        .mwgls-section-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            text-align: center;
            margin-bottom: 64px;
        }

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

        .mwgls-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .mwgls-card:hover {
            transform: translateY(-8px);
            border-color: var(--mwgls-primary);
        }

        .mwgls-card-tag {
            display: inline-block;
            padding: 4px 12px;
            background: #e0f2fe;
            color: var(--mwgls-primary);
            font-size: 0.8rem;
            font-weight: 700;
            border-radius: 6px;
            margin-bottom: 16px;
        }

        .mwgls-card-h {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--mwgls-dark);
        }

        /* 动态内容区块 */
        .mwgls-dynamic-section {
            background: #f1f5f9;
            border-radius: 48px;
            margin: 0 2vw;
        }

        /* 页脚 */
        .mwgls-footer {
            background: var(--mwgls-dark);
            color: #94a3b8;
            padding: 64px 5vw;
        }

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

        .mwgls-footer-brand {
            flex: 1 1 300px;
            min-width: 0;
        }

        .mwgls-footer-brand h3 {
            color: white;
            margin-bottom: 16px;
            font-size: 1.5rem;
        }

        .mwgls-footer-links {
            flex: 2 1 600px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 24px;
            min-width: 0;
        }

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

        .mwgls-footer-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .mwgls-footer-links a:hover {
            color: white;
        }

        .mwgls-copyright {
            margin-top: 48px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.85rem;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .mwgls-hero-content {
                padding-right: 0;
                margin-bottom: 48px;
                text-align: center;
            }
            .mwgls-btn-group {
                justify-content: center;
            }
            .mwgls-nav {
                display: none; /* 简化移动端处理 */
            }
            .mwgls-nav-mobile-toggle {
                display: block;
            }
        }
    