
        :root {
            --k8qm-primary: #007AFF;
            --k8qm-accent: #64FFDA;
            --k8qm-bg-dark: #0A192F;
            --k8qm-bg-light: #112240;
            --k8qm-text-main: #E6F1FF;
            --k8qm-text-dim: #8892B0;
            --k8qm-spacing-unit: 8px;
            --k8qm-container-width: 1100px;
        }

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

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

        /* Navigation */
        .k8qm-navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 25, 47, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(100, 255, 218, 0.1);
            padding: 16px 0;
        }

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

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

        .k8qm-logo img {
            height: 32px;
            width: auto;
            display: block;
        }

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

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

        .k8qm-menu-item a:hover, 
        .k8qm-menu-item a.active {
            color: var(--k8qm-accent);
        }

        /* Hero Section */
        .k8qm-hero {
            padding: 160px 24px 80px;
            text-align: center;
            background: radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.1) 0%, transparent 70%);
        }

        .k8qm-hero-content {
            max-width: 800px;
            margin: 0 auto;
            word-break: break-word;
        }

        .k8qm-hero h1 {
            font-size: clamp(2rem, 5vw + 1rem, 4rem);
            line-height: 1.1;
            margin-bottom: 24px;
            color: #fff;
        }

        .k8qm-hero p {
            font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
            color: var(--k8qm-text-dim);
            margin-bottom: 40px;
        }

        .k8qm-cta-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }

        .k8qm-btn {
            padding: 14px 28px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            min-width: 160px;
        }

        .k8qm-btn-primary {
            background-color: var(--k8qm-primary);
            color: white;
            border: 1px solid var(--k8qm-primary);
        }

        .k8qm-btn-primary:hover {
            background-color: transparent;
            color: var(--k8qm-primary);
        }

        /* Script Demo Section */
        .k8qm-script-showcase {
            max-width: var(--k8qm-container-width);
            margin: 0 auto 96px;
            padding: 48px;
            background: var(--k8qm-bg-light);
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            border: 1px solid rgba(100, 255, 218, 0.1);
        }

        .k8qm-code-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 24px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 12px;
        }

        .k8qm-code-block {
            background: #011627;
            padding: 24px;
            border-radius: 8px;
            font-family: "Fira Code", monospace;
            font-size: 14px;
            color: #d6deeb;
            overflow-x: auto;
            word-break: break-all;
            line-height: 1.8;
        }

        /* Benchmarks Grid */
        .k8qm-section-title {
            text-align: center;
            margin-bottom: 64px;
            padding: 0 24px;
        }

        .k8qm-section-title h2 {
            font-size: 32px;
            margin-bottom: 16px;
            color: var(--k8qm-accent);
        }

        .k8qm-benchmarks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            max-width: var(--k8qm-container-width);
            margin: 0 auto 96px;
            padding: 0 24px;
        }

        .k8qm-metric-card {
            background: var(--k8qm-bg-light);
            padding: 32px;
            border-radius: 12px;
            transition: transform 0.3s ease;
            min-width: 0;
        }

        .k8qm-metric-card:hover {
            transform: translateY(-10px);
        }

        .k8qm-metric-value {
            font-size: 40px;
            font-weight: 700;
            color: var(--k8qm-primary);
            margin-bottom: 8px;
        }

        .k8qm-metric-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        /* Solutions Matrix */
        .k8qm-solutions {
            background: rgba(100, 255, 218, 0.02);
            padding: 96px 0;
        }

        .k8qm-matrix-container {
            max-width: var(--k8qm-container-width);
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .k8qm-solution-item {
            flex: 1 1 calc(50% - 40px);
            min-width: 300px;
            display: flex;
            gap: 24px;
            margin-bottom: 48px;
        }

        .k8qm-solution-icon {
            font-size: 32px;
            background: var(--k8qm-bg-light);
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 1px solid var(--k8qm-accent);
            flex-shrink: 0;
        }

        /* Roadmap */
        .k8qm-roadmap {
            max-width: 800px;
            margin: 96px auto;
            padding: 0 24px;
        }

        .k8qm-roadmap-item {
            position: relative;
            padding-left: 48px;
            padding-bottom: 48px;
            border-left: 2px solid var(--k8qm-primary);
        }

        .k8qm-roadmap-item::before {
            content: '';
            position: absolute;
            left: -9px;
            top: 0;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--k8qm-accent);
            box-shadow: 0 0 10px var(--k8qm-accent);
        }

        .k8qm-roadmap-quarter {
            font-weight: 700;
            color: var(--k8qm-accent);
            margin-bottom: 8px;
        }

        /* Testimonials */
        .k8qm-testimonials {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            max-width: var(--k8qm-container-width);
            margin: 0 auto 96px;
            padding: 0 24px;
        }

        .k8qm-testimony-card {
            flex: 1 1 400px;
            background: var(--k8qm-bg-light);
            padding: 32px;
            border-radius: 12px;
            min-width: 0;
            position: relative;
        }

        .k8qm-testimony-content {
            font-style: italic;
            margin-bottom: 24px;
            color: var(--k8qm-text-dim);
        }

        .k8qm-testimony-author {
            font-weight: 600;
            color: var(--k8qm-accent);
        }

        /* Footer */
        .k8qm-footer {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 64px 24px;
            text-align: center;
            background: #020c1b;
        }

        .k8qm-footer-brand {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }

        .k8qm-footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
            margin-bottom: 32px;
            list-style: none;
        }

        .k8qm-footer-links a {
            color: var(--k8qm-text-dim);
            text-decoration: none;
            font-size: 14px;
        }

        .k8qm-footer-links a:hover {
            color: var(--k8qm-accent);
        }

        .k8qm-copyright {
            font-size: 12px;
            color: var(--k8qm-text-dim);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .k8qm-menu {
                display: none; /* In a real site, implement a hamburger menu */
            }
            
            .k8qm-matrix-container, .k8qm-benchmarks-grid {
                grid-template-columns: 1fr;
            }

            .k8qm-solution-item {
                flex: 1 1 100%;
            }

            .k8qm-hero {
                padding-top: 120px;
            }
            
            .k8qm-script-showcase {
                padding: 24px;
            }
        }
    