
        :root {
            --mwgls-brand-blue: #005bb7;
            --mwgls-brand-dark: #1a1c1e;
            --mwgls-accent-cyan: #00d4ff;
            --mwgls-bg-light: #f4f7fa;
            --mwgls-text-main: #2c3e50;
            --mwgls-text-muted: #666;
            --mwgls-code-bg: #282c34;
            --mwgls-spacing-unit: 8px;
            --mwgls-container-width: 1400px;
        }

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

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

        /* Scanline Texture Effect */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.03) 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: 9999;
        }

        /* Typography */
        h1, h2, h3 {
            font-weight: 700;
            line-height: 1.2;
            white-space: normal;
            word-break: break-word;
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: calc(var(--mwgls-spacing-unit) * 4); }
        p { font-size: clamp(1rem, 2vw + 0.5rem, 1.15rem); line-height: 1.8; margin-bottom: 1.5rem; word-break: break-word; }

        /* Asymmetric Layout - Side Navigation */
        .mwgls-page-wrapper {
            display: flex;
            flex-wrap: wrap;
            min-height: 100vh;
        }

        .mwgls-sidebar {
            flex: 0 0 280px;
            background: var(--mwgls-brand-dark);
            color: white;
            padding: calc(var(--mwgls-spacing-unit) * 4);
            position: sticky;
            top: 0;
            height: 100vh;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .mwgls-logo {
            margin-bottom: calc(var(--mwgls-spacing-unit) * 6);
        }

        .mwgls-logo img {
            width: 180px;
            height: auto;
            display: block;
        }

        .mwgls-nav-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: calc(var(--mwgls-spacing-unit) * 2);
        }

        .mwgls-nav-item a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 1rem;
            padding: 12px 16px;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: block;
        }

        .mwgls-nav-item a:hover {
            background: rgba(255,255,255,0.1);
            color: var(--mwgls-accent-cyan);
            transform: translateX(5px);
        }

        .mwgls-nav-item.mwgls-active a {
            background: var(--mwgls-brand-blue);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 91, 183, 0.3);
        }

        /* Main Content Container */
        .mwgls-main-content {
            flex: 1;
            min-width: 0;
            background: white;
        }

        /* Hero Section - Card Style */
        .mwgls-hero {
            padding: calc(var(--mwgls-spacing-unit) * 12) calc(var(--mwgls-spacing-unit) * 6);
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            min-height: 80vh;
        }

        .mwgls-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.2;
            z-index: 1;
        }

        .mwgls-hero-container {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            color: white;
        }

        .mwgls-hero-tag {
            display: inline-block;
            padding: 6px 16px;
            background: var(--mwgls-brand-blue);
            font-family: 'Courier New', Courier, monospace;
            font-size: 0.9rem;
            margin-bottom: 24px;
            border-radius: 4px;
        }

        .mwgls-hero h1 {
            margin-bottom: 24px;
            text-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .mwgls-hero p {
            max-width: 700px;
            color: #cbd5e1;
        }

        /* Section Blocks */
        .mwgls-section {
            padding: calc(var(--mwgls-spacing-unit) * 12) 5%;
            max-width: var(--mwgls-container-width);
            margin: 0 auto;
        }

        /* Enterprise Solutions - Code Block Style */
        .mwgls-solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .mwgls-solution-card {
            background: var(--mwgls-code-bg);
            color: #abb2bf;
            padding: 32px;
            border-radius: 12px;
            border-left: 4px solid var(--mwgls-brand-blue);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

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

        .mwgls-solution-card h3 {
            color: var(--mwgls-accent-cyan);
            font-family: 'Courier New', Courier, monospace;
            margin-bottom: 16px;
            font-size: 1.25rem;
        }

        .mwgls-solution-card p {
            font-size: 1rem;
            line-height: 1.6;
        }

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

        .mwgls-feature-row.mwgls-reverse {
            flex-direction: row-reverse;
        }

        .mwgls-feature-content {
            flex: 1;
            min-width: 320px;
        }

        .mwgls-feature-visual {
            flex: 1.2;
            min-width: 320px;
        }

        .mwgls-feature-visual img {
            width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }

        .mwgls-feature-visual img:hover {
            transform: scale(1.02);
        }

        .mwgls-btn {
            display: inline-block;
            padding: 16px 32px;
            background: var(--mwgls-brand-blue);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(0, 91, 183, 0.2);
        }

        .mwgls-btn:hover {
            background: #00448d;
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 91, 183, 0.3);
        }

        /* Footer */
        .mwgls-footer {
            background: var(--mwgls-brand-dark);
            color: #94a3b8;
            padding: 64px 5% 32px;
        }

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

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

        .mwgls-footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
        }

        .mwgls-footer-col h5 {
            color: white;
            margin-bottom: 20px;
        }

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

        .mwgls-footer-col ul li {
            margin-bottom: 12px;
        }

        .mwgls-footer-col ul li a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }

        .mwgls-footer-col ul li a:hover {
            color: white;
        }

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

        /* Responsive */
        @media (max-width: 1024px) {
            .mwgls-sidebar {
                flex: 0 0 100%;
                height: auto;
                position: relative;
                padding: 24px;
            }
            .mwgls-nav-list {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }
            .mwgls-nav-item a {
                padding: 8px 12px;
                font-size: 0.9rem;
            }
            .mwgls-logo {
                text-align: center;
                margin-bottom: 20px;
            }
            .mwgls-logo img {
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .mwgls-feature-row {
                gap: 32px;
            }
            .mwgls-nav-list {
                gap: 8px;
            }
            .mwgls-hero {
                padding: 64px 24px;
                text-align: center;
            }
            .mwgls-hero p {
                margin: 0 auto 24px;
            }
        }
    