
        :root {
            --mpr9yq-primary: #A855F7;
            --mpr9yq-primary-dark: #7E22CE;
            --mpr9yq-bg: #0F172A;
            --mpr9yq-surface: #1E293B;
            --mpr9yq-text-main: #F8FAFC;
            --mpr9yq-text-muted: #94A3B8;
            --mpr9yq-accent: #38BDF8;
            --mpr9yq-white: #FFFFFF;
            --mpr9yq-spacing-unit: 8px;
            --mpr9yq-container-width: 1300px;
        }

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

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

        /* Navigation */
        .mpr9yq-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mpr9yq-nav-container {
            max-width: var(--mpr9yq-container-width);
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

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

        .mpr9yq-logo img {
            height: 40px;
            display: block;
        }

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

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

        .mpr9yq-menu a {
            color: var(--mpr9yq-text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 8px 4px;
            position: relative;
        }

        .mpr9yq-menu a:hover, .mpr9yq-menu a.active {
            color: var(--mpr9yq-primary);
        }

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

        /* Hero Section - Asymmetric Layout */
        .mpr9yq-hero {
            padding: 160px 24px 80px;
            max-width: var(--mpr9yq-container-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
        }

        .mpr9yq-hero-content {
            flex: 1 1 500px;
            min-width: 0;
        }

        .mpr9yq-hero-title {
            font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--mpr9yq-white) 0%, var(--mpr9yq-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: keep-all;
        }

        .mpr9yq-hero-subtitle {
            font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
            color: var(--mpr9yq-text-muted);
            margin-bottom: 32px;
            max-width: 600px;
        }

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

        .mpr9yq-download-box {
            background: var(--mpr9yq-surface);
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }

        .mpr9yq-download-box:hover {
            transform: translateY(-8px);
        }

        /* Download Buttons */
        .mpr9yq-btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 24px;
        }

        .mpr9yq-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            min-width: 160px;
        }

        .mpr9yq-btn-primary {
            background: var(--mpr9yq-primary);
            color: var(--mpr9yq-white);
            box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
        }

        .mpr9yq-btn-primary:hover {
            background: var(--mpr9yq-primary-dark);
            box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
        }

        .mpr9yq-btn-outline {
            border: 2px solid var(--mpr9yq-primary);
            color: var(--mpr9yq-primary);
        }

        .mpr9yq-btn-outline:hover {
            background: rgba(168, 85, 247, 0.1);
        }

        /* Matrix Section */
        .mpr9yq-section {
            padding: 96px 24px;
            max-width: var(--mpr9yq-container-width);
            margin: 0 auto;
        }

        .mpr9yq-section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .mpr9yq-section-title {
            font-size: clamp(2rem, 3vw, 2.5rem);
            margin-bottom: 16px;
        }

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

        .mpr9yq-matrix-card {
            background: rgba(30, 41, 59, 0.5);
            padding: 32px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .mpr9yq-matrix-card:hover {
            background: rgba(30, 41, 59, 0.8);
            border-color: var(--mpr9yq-primary);
        }

        .mpr9yq-matrix-layer {
            color: var(--mpr9yq-primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            display: block;
        }

        .mpr9yq-matrix-tag {
            display: inline-block;
            background: rgba(56, 189, 248, 0.1);
            color: var(--mpr9yq-accent);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin: 4px;
        }

        /* Showcase Section */
        .mpr9yq-showcase-item {
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
            align-items: center;
            margin-bottom: 96px;
        }

        .mpr9yq-showcase-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .mpr9yq-showcase-text {
            flex: 1 1 400px;
            min-width: 0;
        }

        .mpr9yq-showcase-visual {
            flex: 1 1 400px;
            min-width: 0;
            background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
            padding: 40px;
            border-radius: 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Footer */
        .mpr9yq-footer {
            background: #020617;
            padding: 80px 24px 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

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

        .mpr9yq-footer-brand h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--mpr9yq-white);
        }

        .mpr9yq-footer-links h4 {
            margin-bottom: 20px;
            color: var(--mpr9yq-white);
        }

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

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

        .mpr9yq-footer-links a {
            color: var(--mpr9yq-text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .mpr9yq-copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--mpr9yq-text-muted);
            font-size: 0.9rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .mpr9yq-nav-container {
                flex-direction: column;
                gap: 16px;
            }
            .mpr9yq-menu {
                justify-content: center;
            }
            .mpr9yq-hero {
                padding-top: 200px;
            }
            .mpr9yq-hero-visual {
                order: -1;
            }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--mpr9yq-bg);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--mpr9yq-surface);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--mpr9yq-primary);
        }
    