
        :root {
            --hhx9et-primary: #1880ca;
            --hhx9et-primary-dark: #0e5a94;
            --hhx9et-ubuntu: #E95420;
            --hhx9et-text: #2d3436;
            --hhx9et-text-light: #636e72;
            --hhx9et-bg: #f9fbfc;
            --hhx9et-white: #ffffff;
            --hhx9et-border: #e1e8ed;
            --hhx9et-spacing-unit: 8px;
            --hhx9et-max-width: 1100px;
        }

        * {
            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(--hhx9et-bg);
            color: var(--hhx9et-text);
            line-height: 1.6;
            word-break: keep-all;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4 {
            line-height: 1.3;
            margin-bottom: calc(var(--hhx9et-spacing-unit) * 2);
            color: var(--hhx9et-primary-dark);
            white-space: normal;
        }

        p {
            margin-bottom: calc(var(--hhx9et-spacing-unit) * 3);
            font-size: clamp(1rem, 0.5vw + 0.8rem, 1.125rem);
            line-height: 1.8;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* Navigation */
        .hhx9et-navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--hhx9et-border);
            padding: calc(var(--hhx9et-spacing-unit) * 2) 0;
        }

        .hhx9et-nav-container {
            max-width: var(--hhx9et-max-width);
            margin: 0 auto;
            padding: 0 calc(var(--hhx9et-spacing-unit) * 3);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

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

        .hhx9et-logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        .hhx9et-menu {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: calc(var(--hhx9et-spacing-unit) * 2);
        }

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

        .hhx9et-menu a {
            text-decoration: none;
            color: var(--hhx9et-text-light);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .hhx9et-menu a:hover {
            color: var(--hhx9et-primary);
            background: rgba(24, 128, 202, 0.05);
        }

        .hhx9et-menu a.hhx9et-active {
            color: var(--hhx9et-primary);
            background: rgba(24, 128, 202, 0.1);
        }

        /* Hero Section */
        .hhx9et-hero {
            padding: calc(var(--hhx9et-spacing-unit) * 12) 0;
            background: radial-gradient(circle at top right, #eef5ff, var(--hhx9et-bg));
            position: relative;
            overflow: hidden;
        }

        .hhx9et-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(var(--hhx9et-border) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.3;
            z-index: 0;
        }

        .hhx9et-hero-content {
            position: relative;
            z-index: 1;
            max-width: var(--hhx9et-max-width);
            margin: 0 auto;
            padding: 0 calc(var(--hhx9et-spacing-unit) * 3);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: calc(var(--hhx9et-spacing-unit) * 6);
        }

        .hhx9et-hero-text {
            flex: 1 1 500px;
            min-width: 0;
        }

        .hhx9et-hero-title {
            font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(to right, var(--hhx9et-primary-dark), var(--hhx9et-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hhx9et-hero-subtitle {
            font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.4rem);
            color: var(--hhx9et-text-light);
            margin-bottom: 32px;
        }

        .hhx9et-hero-badge {
            display: inline-block;
            background: var(--hhx9et-ubuntu);
            color: white;
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 0.85rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Compatibility Grid */
        .hhx9et-section {
            padding: calc(var(--hhx9et-spacing-unit) * 10) 0;
            max-width: var(--hhx9et-max-width);
            margin: 0 auto;
            padding-left: calc(var(--hhx9et-spacing-unit) * 3);
            padding-right: calc(var(--hhx9et-spacing-unit) * 3);
        }

        .hhx9et-section-header {
            text-align: center;
            margin-bottom: calc(var(--hhx9et-spacing-unit) * 8);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hhx9et-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: calc(var(--hhx9et-spacing-unit) * 4);
        }

        .hhx9et-card {
            background: var(--hhx9et-white);
            border: 1px solid var(--hhx9et-border);
            border-radius: 16px;
            padding: calc(var(--hhx9et-spacing-unit) * 4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

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

        .hhx9et-card h3 {
            font-size: 1.25rem;
            margin-top: 16px;
        }

        .hhx9et-card-icon {
            width: 48px;
            height: 48px;
            background: rgba(24, 128, 202, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--hhx9et-primary);
            font-weight: bold;
        }

        /* Industry Specific Section */
        .hhx9et-industry-box {
            background: var(--hhx9et-primary-dark);
            color: white;
            border-radius: 24px;
            padding: calc(var(--hhx9et-spacing-unit) * 6);
            margin-top: calc(var(--hhx9et-spacing-unit) * 4);
        }

        .hhx9et-industry-box h2 {
            color: white;
        }

        .hhx9et-industry-item {
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding: calc(var(--hhx9et-spacing-unit) * 3) 0;
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .hhx9et-industry-item:last-child {
            border-bottom: none;
        }

        .hhx9et-industry-sector {
            flex: 0 0 220px;
            font-weight: 800;
            color: #79c2f5;
            min-width: 0;
        }

        .hhx9et-industry-details {
            flex: 1 1 300px;
            min-width: 0;
        }

        .hhx9et-config-tag {
            background: rgba(255, 255, 255, 0.15);
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.85rem;
            margin-top: 8px;
            display: inline-block;
        }

        /* Footer */
        .hhx9et-footer {
            background: #1e272e;
            color: #bdc3c7;
            padding: calc(var(--hhx9et-spacing-unit) * 8) 0;
            margin-top: calc(var(--hhx9et-spacing-unit) * 10);
        }

        .hhx9et-footer-container {
            max-width: var(--hhx9et-max-width);
            margin: 0 auto;
            padding: 0 calc(var(--hhx9et-spacing-unit) * 3);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 48px;
        }

        .hhx9et-footer-brand {
            flex: 1 1 300px;
            min-width: 0;
        }

        .hhx9et-footer-brand h2 {
            color: white;
            margin-bottom: 16px;
        }

        .hhx9et-footer-links {
            flex: 2 1 400px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 32px;
            min-width: 0;
        }

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

        .hhx9et-footer-links a {
            color: #8fa0a8;
            text-decoration: none;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        .hhx9et-footer-links a:hover {
            color: white;
        }

        .hhx9et-copyright {
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: 48px;
            padding-top: 24px;
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hhx9et-navbar {
                padding: 16px 0;
            }
            .hhx9et-menu {
                display: none; /* In a real scenario, implement a hamburger menu */
            }
            .hhx9et-hero-content {
                text-align: center;
            }
            .hhx9et-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Utils */
        .hhx9et-text-center { text-align: center; }
        .hhx9et-btn {
            display: inline-block;
            padding: 14px 32px;
            background: var(--hhx9et-primary);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .hhx9et-btn:hover {
            background: var(--hhx9et-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(24, 128, 202, 0.2);
        }
    