
        :root {
            --mtq8-primary: #0052cc;
            --mtq8-secondary: #00c2ff;
            --mtq8-bg-dark: #0a0e14;
            --mtq8-text-main: #2d3436;
            --mtq8-text-light: #636e72;
            --mtq8-white: #ffffff;
            --mtq8-accent: #f3f6fb;
            --mtq8-gradient: linear-gradient(135deg, #0052cc 0%, #00c2ff 100%);
            --mtq8-glass: rgba(255, 255, 255, 0.8);
            --mtq8-spacing-unit: 8px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--mtq8-text-main);
            line-height: 1.7;
            background-color: var(--mtq8-white);
            overflow-x: hidden;
        }

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

        p {
            margin-bottom: 1.5rem;
        }

        /* Layout */
        .mtq8-container {
            max-width: 85vw;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header & Nav */
        .mtq8-header {
            position: fixed;
            top: 24px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            z-index: 1000;
            background: var(--mtq8-glass);
            backdrop-filter: blur(12px);
            border-radius: 48px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .mtq8-nav-wrapper {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 32px;
        }

        .mtq8-logo {
            min-width: 0;
            display: flex;
            align-items: center;
        }

        .mtq8-logo img {
            height: 32px;
            width: auto;
        }

        .mtq8-menu {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 20px;
        }

        .mtq8-menu li {
            min-width: 0;
        }

        .mtq8-menu a {
            text-decoration: none;
            color: var(--mtq8-text-main);
            font-size: clamp(0.9rem, 1vw + 0.2rem, 1.1rem);
            font-weight: 500;
            padding: 8px 12px;
            transition: all 0.3s ease;
            position: relative;
        }

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

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

        .mtq8-menu a.mtq8-active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            background: var(--mtq8-primary);
            border-radius: 50%;
        }

        /* Hero Section */
        .mtq8-hero {
            padding-top: 180px;
            padding-bottom: 96px;
            background: radial-gradient(circle at 90% 10%, rgba(0, 82, 204, 0.05) 0%, transparent 40%),
                        radial-gradient(circle at 10% 90%, rgba(0, 194, 255, 0.05) 0%, transparent 40%);
            text-align: center;
        }

        .mtq8-hero-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(0, 82, 204, 0.1);
            color: var(--mtq8-primary);
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 24px;
            font-weight: 600;
        }

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

        .mtq8-hero-subtitle {
            font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
            color: var(--mtq8-text-light);
            max-width: 800px;
            margin: 0 auto 48px;
        }

        /* Download Section */
        .mtq8-download-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
            margin-top: 48px;
        }

        .mtq8-download-card {
            flex: 1;
            min-width: 280px;
            max-width: 340px;
            background: var(--mtq8-white);
            padding: 40px;
            border-radius: 24px;
            border: 1px solid #edf2f7;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .mtq8-download-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        .mtq8-distro-icon {
            width: 48px;
            height: 48px;
            background: var(--mtq8-accent);
            border-radius: 12px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--mtq8-primary);
        }

        .mtq8-card-title {
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        .mtq8-card-desc {
            font-size: 0.95rem;
            color: var(--mtq8-text-light);
            margin-bottom: 24px;
        }

        .mtq8-btn {
            display: inline-block;
            padding: 14px 28px;
            background: var(--mtq8-gradient);
            color: var(--mtq8-white);
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            transition: opacity 0.3s ease;
            text-align: center;
            width: 100%;
        }

        .mtq8-btn:hover {
            opacity: 0.9;
        }

        /* Collaboration Section */
        .mtq8-feature-section {
            padding: 96px 0;
            background-color: #fafbfc;
        }

        .mtq8-split-layout {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 64px;
            margin-bottom: 96px;
        }

        .mtq8-split-content {
            flex: 1;
            min-width: 320px;
        }

        .mtq8-split-visual {
            flex: 1;
            min-width: 320px;
            background: var(--mtq8-white);
            border-radius: 32px;
            padding: 40px;
            box-shadow: 0 32px 64px rgba(0,0,0,0.03);
            border: 1px solid #f1f1f1;
        }

        .mtq8-tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 24px;
        }

        .mtq8-tag {
            background: var(--mtq8-white);
            border: 1px solid #e2e8f0;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 0.85rem;
            color: var(--mtq8-text-light);
        }

        /* Metrics */
        .mtq8-metrics-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            padding: 64px 0;
            border-top: 1px solid #eee;
        }

        .mtq8-metric-item {
            flex: 1;
            min-width: 200px;
            text-align: center;
        }

        .mtq8-metric-value {
            font-size: 3rem;
            font-weight: 800;
            color: var(--mtq8-primary);
            margin-bottom: 8px;
        }

        .mtq8-metric-label {
            font-weight: 600;
            color: var(--mtq8-text-main);
        }

        .mtq8-metric-context {
            font-size: 0.9rem;
            color: var(--mtq8-text-light);
        }

        /* News Section */
        .mtq8-news-section {
            padding: 96px 0;
        }

        .mtq8-section-header {
            margin-bottom: 48px;
            text-align: center;
        }

        /* Footer */
        .mtq8-footer {
            background: var(--mtq8-bg-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 80px 0 40px;
        }

        .mtq8-footer-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            justify-content: space-between;
            margin-bottom: 64px;
        }

        .mtq8-footer-brand {
            flex: 2;
            min-width: 300px;
        }

        .mtq8-footer-brand h4 {
            color: var(--mtq8-white);
            font-size: 1.5rem;
            margin-bottom: 24px;
        }

        .mtq8-footer-links {
            flex: 1;
            min-width: 150px;
        }

        .mtq8-footer-links h5 {
            color: var(--mtq8-white);
            margin-bottom: 24px;
            font-size: 1.1rem;
        }

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

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

        .mtq8-footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s;
        }

        .mtq8-footer-links a:hover {
            color: var(--mtq8-white);
        }

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

        /* Responsive */
        @media (max-width: 1024px) {
            .mtq8-nav-wrapper {
                padding: 12px 16px;
            }
            .mtq8-menu {
                gap: 10px;
            }
        }

        @media (max-width: 768px) {
            .mtq8-header {
                top: 0;
                width: 100%;
                border-radius: 0;
            }
            .mtq8-menu {
                display: none; /* In a real app, a hamburger menu would trigger this */
            }
            .mtq8-hero {
                padding-top: 140px;
            }
            .mtq8-split-visual {
                order: -1;
            }
        }

        /* Decorative Elements */
        .mtq8-code-block {
            background: #1e1e1e;
            color: #d4d4d4;
            padding: 20px;
            border-radius: 12px;
            font-family: monospace;
            font-size: 0.85rem;
            margin-bottom: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .mtq8-code-cursor {
            border-left: 2px solid var(--mtq8-secondary);
            animation: blink 1s infinite;
        }
        @keyframes blink { 50% { opacity: 0; } }
    