
        :root {
            --u08qt-primary: #D42323;
            --u08qt-primary-hover: #B71C1C;
            --u08qt-accent: #6C5CE7;
            --u08qt-text: #1D1D1F;
            --u08qt-text-muted: #6E6E73;
            --u08qt-bg: #FFFFFF;
            --u08qt-bg-secondary: #F5F5F7;
            --u08qt-glass: rgba(255, 255, 255, 0.8);
            --u08qt-container-width: 1320px;
        }

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

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

        .u08qt-container {
            width: 100%;
            max-width: var(--u08qt-container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        .u08qt-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: var(--u08qt-glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .u08qt-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            min-width: 0;
        }

        .u08qt-logo {
            flex-shrink: 0;
            display: flex;
            align-items: center;
        }

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

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

        .u08qt-menu-item a {
            text-decoration: none;
            color: var(--u08qt-text);
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

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

        .u08qt-menu-item.u08qt-active a {
            color: var(--u08qt-primary);
            position: relative;
        }

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

        /* Hero Section */
        .u08qt-hero {
            padding-top: 140px;
            padding-bottom: 96px;
            overflow: hidden;
            background: radial-gradient(circle at 90% 10%, rgba(212, 35, 35, 0.05) 0%, transparent 40%);
        }

        .u08qt-hero-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
            min-width: 0;
        }

        .u08qt-hero-content {
            flex: 1;
            min-width: 320px;
            word-break: break-word;
        }

        .u08qt-hero-title {
            font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 24px;
            color: var(--u08qt-text);
            white-space: normal;
        }

        .u08qt-hero-subtitle {
            font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
            color: var(--u08qt-text-muted);
            margin-bottom: 40px;
            max-width: 600px;
        }

        .u08qt-hero-image {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        .u08qt-hero-image img {
            width: 100%;
            height: auto;
            border-radius: 24px;
            box-shadow: 0 40px 80px rgba(0,0,0,0.12);
            transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1);
        }

        .u08qt-hero-image img:hover {
            transform: translateY(-10px);
        }

        .u08qt-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            min-width: 0;
        }

        .u08qt-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 16px;
        }

        .u08qt-btn-primary {
            background: linear-gradient(135deg, var(--u08qt-primary) 0%, #E53935 100%);
            color: #FFF;
            box-shadow: 0 8px 24px rgba(212, 35, 35, 0.25);
        }

        .u08qt-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(212, 35, 35, 0.35);
        }

        .u08qt-btn-secondary {
            background: #FFF;
            color: var(--u08qt-text);
            border: 1px solid rgba(0,0,0,0.1);
        }

        .u08qt-btn-secondary:hover {
            background: var(--u08qt-bg-secondary);
            border-color: rgba(0,0,0,0.2);
        }

        /* Intelligence Engine Matrix */
        .u08qt-section {
            padding: 96px 0;
        }

        .u08qt-section-light {
            background-color: var(--u08qt-bg-secondary);
        }

        .u08qt-section-header {
            text-align: center;
            margin-bottom: 64px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .u08qt-section-title {
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 16px;
        }

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

        .u08qt-card {
            background: #FFF;
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.03);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .u08qt-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 48px rgba(0,0,0,0.06);
        }

        .u08qt-card-tag {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(108, 92, 231, 0.1);
            color: var(--u08qt-accent);
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            align-self: flex-start;
        }

        .u08qt-card-title {
            font-size: 24px;
            font-weight: 700;
        }

        .u08qt-card-desc {
            color: var(--u08qt-text-muted);
            font-size: 16px;
            line-height: 1.7;
        }

        .u08qt-feature-list {
            list-style: none;
            margin-top: 10px;
        }

        .u08qt-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 15px;
            color: var(--u08qt-text);
        }

        .u08qt-feature-item::before {
            content: '✓';
            color: var(--u08qt-primary);
            font-weight: bold;
        }

        /* Collaboration Showcase */
        .u08qt-showcase {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 64px;
            min-width: 0;
        }

        .u08qt-showcase-image {
            flex: 1.2;
            min-width: 320px;
        }

        .u08qt-showcase-image img {
            width: 100%;
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        }

        .u08qt-showcase-text {
            flex: 1;
            min-width: 320px;
            word-break: break-word;
        }

        /* Benchmark Stats */
        .u08qt-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 48px;
            min-width: 0;
        }

        .u08qt-stat-item {
            flex: 1;
            min-width: 240px;
            padding: 32px;
            background: #FFF;
            border-radius: 16px;
            border-left: 4px solid var(--u08qt-primary);
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        }

        .u08qt-stat-value {
            font-size: 32px;
            font-weight: 800;
            color: var(--u08qt-primary);
            margin-bottom: 8px;
        }

        .u08qt-stat-label {
            font-size: 14px;
            color: var(--u08qt-text-muted);
            font-weight: 500;
        }

        /* Ecosystem Section */
        .u08qt-eco-banner {
            background: #111;
            color: #FFF;
            border-radius: 32px;
            padding: 64px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .u08qt-eco-banner h2 {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            margin-bottom: 24px;
            position: relative;
            z-index: 2;
        }

        .u08qt-eco-banner p {
            font-size: 18px;
            color: #AAA;
            max-width: 700px;
            margin: 0 auto 40px;
            position: relative;
            z-index: 2;
        }

        .u08qt-eco-image {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .u08qt-eco-image img {
            width: 100%;
            height: auto;
        }

        .u08qt-eco-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, #333 0%, #111 70%);
            opacity: 0.5;
        }

        /* Dynamic Section */
        .u08qt-news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .u08qt-news-item {
            padding: 24px;
            background: #FFF;
            border-radius: 12px;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .u08qt-news-item:hover {
            background: #FAFAFA;
            border-bottom-color: var(--u08qt-primary);
        }

        .u08qt-news-date {
            font-size: 13px;
            color: var(--u08qt-text-muted);
            margin-bottom: 8px;
        }

        .u08qt-news-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        /* Footer */
        .u08qt-footer {
            background: var(--u08qt-bg-secondary);
            padding: 80px 0 40px;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

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

        .u08qt-footer-brand {
            flex: 1.5;
            min-width: 280px;
        }

        .u08qt-footer-brand h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--u08qt-primary);
        }

        .u08qt-footer-links {
            flex: 1;
            min-width: 160px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .u08qt-footer-links h4 {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            color: var(--u08qt-text);
        }

        .u08qt-footer-links a {
            text-decoration: none;
            color: var(--u08qt-text-muted);
            font-size: 14px;
            transition: color 0.3s ease;
        }

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

        .u08qt-copyright {
            padding-top: 40px;
            border-top: 1px solid rgba(0,0,0,0.05);
            text-align: center;
            font-size: 13px;
            color: var(--u08qt-text-muted);
        }

        /* Mobile Adjustments */
        @media (max-width: 1024px) {
            .u08qt-nav {
                height: auto;
                padding: 16px 0;
            }
            .u08qt-menu {
                width: 100%;
                margin-top: 16px;
                justify-content: center;
                gap: 16px;
            }
        }

        @media (max-width: 768px) {
            .u08qt-hero-grid, .u08qt-showcase {
                flex-direction: column;
                text-align: center;
            }
            .u08qt-hero-content, .u08qt-hero-image, .u08qt-showcase-text, .u08qt-showcase-image {
                flex: none;
                width: 100%;
            }
            .u08qt-cta-group {
                justify-content: center;
            }
            .u08qt-section {
                padding: 64px 0;
            }
            .u08qt-grid {
                grid-template-columns: 1fr;
            }
            .u08qt-menu {
                display: none; /* In a real app, add a hamburger menu */
            }
            .u08qt-eco-banner {
                padding: 40px 24px;
            }
        }
    