
        :root {
            --k8qm-primary: #0052D4;
            --k8qm-secondary: #4361ee;
            --k8qm-accent: #00f2fe;
            --k8qm-text: #1d1d1f;
            --k8qm-bg: #f5f5f7;
            --k8qm-white: #ffffff;
            --k8qm-gray: #86868b;
            --k8qm-success: #34c759;
            --k8qm-spacing-unit: 8px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }

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

        .k8qm-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 calc(var(--k8qm-spacing-unit) * 3);
            width: 100%;
        }

        /* Navigation */
        .k8qm-nav-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .k8qm-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }

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

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

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

        .k8qm-menu li a {
            text-decoration: none;
            color: var(--k8qm-text);
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
            word-break: break-word;
        }

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

        /* Hero Section */
        .k8qm-hero {
            padding-top: 140px;
            padding-bottom: 96px;
            background: radial-gradient(circle at top right, #eef2f3, #ffffff);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .k8qm-hero::before {
            content: "";
            position: absolute;
            top: -10%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: var(--k8qm-accent);
            filter: blur(150px);
            opacity: 0.1;
            z-index: 0;
        }

        .k8qm-hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .k8qm-tag {
            display: inline-block;
            padding: 4px 16px;
            background: rgba(0, 82, 212, 0.1);
            color: var(--k8qm-primary);
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .k8qm-hero h1 {
            font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
            color: #000;
        }

        .k8qm-hero p {
            font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
            color: var(--k8qm-gray);
            margin-bottom: 40px;
            line-height: 1.5;
        }

        /* Performance Metrics Grid */
        .k8qm-benchmarks {
            padding: 64px 0;
            background: var(--k8qm-white);
        }

        .k8qm-grid-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .k8qm-metric-card {
            padding: 40px;
            background: var(--k8qm-bg);
            border-radius: 24px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            min-width: 0;
            border: 1px solid transparent;
        }

        .k8qm-metric-card:hover {
            transform: translateY(-8px);
            background: var(--k8qm-white);
            border-color: rgba(0, 82, 212, 0.2);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .k8qm-metric-value {
            font-size: 48px;
            font-weight: 800;
            color: var(--k8qm-primary);
            margin-bottom: 8px;
            display: block;
        }

        .k8qm-metric-name {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #000;
        }

        .k8qm-metric-desc {
            font-size: 15px;
            color: var(--k8qm-gray);
            line-height: 1.7;
            word-break: break-word;
        }

        /* Industry Solutions */
        .k8qm-solutions {
            padding: 96px 0;
            background: #000;
            color: #fff;
        }

        .k8qm-section-header {
            margin-bottom: 64px;
            max-width: 600px;
        }

        .k8qm-section-header h2 {
            font-size: clamp(2rem, 3vw + 0.5rem, 2.5rem);
            margin-bottom: 16px;
        }

        .k8qm-solution-item {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            padding: 48px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            align-items: center;
        }

        .k8qm-solution-info {
            flex: 1;
            min-width: 300px;
        }

        .k8qm-industry-tag {
            color: var(--k8qm-accent);
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 2px;
            font-weight: 700;
            margin-bottom: 16px;
            display: block;
        }

        .k8qm-solution-title {
            font-size: 28px;
            margin-bottom: 16px;
        }

        .k8qm-solution-impact {
            background: rgba(255,255,255,0.05);
            padding: 24px;
            border-left: 4px solid var(--k8qm-accent);
            font-style: italic;
            color: #ccc;
        }

        /* Roadmap Timeline */
        .k8qm-roadmap {
            padding: 96px 0;
            background: var(--k8qm-bg);
        }

        .k8qm-roadmap-container {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 48px;
        }

        .k8qm-roadmap-card {
            flex: 1;
            min-width: 280px;
            background: var(--k8qm-white);
            padding: 32px;
            border-radius: 20px;
            position: relative;
        }

        .k8qm-quarter {
            font-weight: 800;
            color: var(--k8qm-primary);
            font-size: 20px;
            margin-bottom: 12px;
            display: block;
        }

        /* Testimonials */
        .k8qm-testimonials {
            padding: 96px 0;
        }

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

        .k8qm-testimony-card {
            background: #fff;
            padding: 40px;
            border: 1px solid #eee;
            border-radius: 24px;
            position: relative;
        }

        .k8qm-testimony-content {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 24px;
            color: #333;
        }

        .k8qm-testimony-author {
            font-weight: 700;
            color: var(--k8qm-primary);
        }

        /* Footer */
        .k8qm-footer {
            background: #f9f9f9;
            padding: 80px 0 40px;
            border-top: 1px solid #eee;
        }

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

        .k8qm-footer-brand {
            flex: 2;
            min-width: 250px;
        }

        .k8qm-footer-brand h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 16px;
        }

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

        .k8qm-footer-links h4 {
            margin-bottom: 24px;
            font-size: 16px;
        }

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

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

        .k8qm-footer-links ul li a {
            text-decoration: none;
            color: var(--k8qm-gray);
            transition: color 0.3s;
        }

        .k8qm-footer-links ul li a:hover {
            color: var(--k8qm-primary);
        }

        .k8qm-copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #eee;
            color: var(--k8qm-gray);
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .k8qm-menu {
                display: none; /* In a real scenario, use a hamburger menu */
            }
            .k8qm-testimony-grid {
                grid-template-columns: 1fr;
            }
            .k8qm-hero h1 {
                font-size: 2.5rem;
            }
        }

        /* Utilities */
        .k8qm-text-gradient {
            background: linear-gradient(to right, var(--k8qm-primary), var(--k8qm-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .k8qm-btn {
            display: inline-block;
            padding: 16px 32px;
            background: var(--k8qm-primary);
            color: #fff;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .k8qm-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 82, 212, 0.2);
        }

        [data-dynamic-content="latest-articles"] {
            border-left: 2px solid var(--k8qm-primary);
            padding-left: 20px;
        }
    