
        :root {
            --eu06b-primary: #007bff;
            --eu06b-primary-dark: #0056b3;
            --eu06b-accent: #00f2fe;
            --eu06b-bg-dark: #0a0f1d;
            --eu06b-bg-light: #ffffff;
            --eu06b-text-main: #2d3436;
            --eu06b-text-muted: #636e72;
            --eu06b-glass: rgba(255, 255, 255, 0.9);
            --eu06b-spacing-unit: 8px;
            --eu06b-container-width: 1400px;
        }

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

        body {
            font-family: "Inter", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
            color: var(--eu06b-text-main);
            background-color: #f8f9fa;
            line-height: 1.6;
            overflow-x: hidden;
            word-break: keep-all;
        }

        /* Layout Helpers */
        .eu06b-container {
            max-width: var(--eu06b-container-width);
            margin: 0 auto;
            padding: 0 calc(var(--eu06b-spacing-unit) * 3);
            width: 100%;
        }

        .eu06b-flex {
            display: flex;
            flex-wrap: wrap;
        }

        .eu06b-flex-item {
            min-width: 0;
        }

        .eu06b-grid {
            display: grid;
            gap: calc(var(--eu06b-spacing-unit) * 3);
        }

        /* Typography */
        h1, h2, h3 {
            line-height: 1.2;
            word-break: break-word;
            white-space: normal;
        }

        .eu06b-fluid-h1 {
            font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
            font-weight: 800;
            margin-bottom: calc(var(--eu06b-spacing-unit) * 3);
            background: linear-gradient(135deg, #0a0f1d 0%, #007bff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .eu06b-fluid-h2 {
            font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem);
            font-weight: 700;
            margin-bottom: calc(var(--eu06b-spacing-unit) * 4);
        }

        .eu06b-text-content {
            font-size: clamp(1rem, 1vw + 0.5rem, 1.2rem);
            line-height: 1.8;
            color: var(--eu06b-text-muted);
            word-break: break-word;
        }

        /* Navigation */
        .eu06b-nav-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--eu06b-glass);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

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

        .eu06b-logo {
            flex-shrink: 0;
        }

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

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

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

        .eu06b-menu a:hover {
            color: var(--eu06b-primary);
            background: rgba(0, 123, 255, 0.05);
        }

        .eu06b-menu a.active {
            color: var(--eu06b-primary);
            font-weight: 700;
        }

        /* Hero Section */
        .eu06b-hero {
            padding-top: 160px;
            padding-bottom: 96px;
            background: radial-gradient(circle at top right, rgba(0, 123, 255, 0.05), transparent);
            position: relative;
        }

        .eu06b-hero-split {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
        }

        .eu06b-hero-content {
            flex: 1;
            min-width: 320px;
        }

        .eu06b-hero-visual {
            flex: 1.2;
            min-width: 320px;
            position: relative;
        }

        .eu06b-hero-image-wrapper {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.12);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }

        .eu06b-hero-image-wrapper:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .eu06b-hero-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }

        .eu06b-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(0, 123, 255, 0.1);
            color: var(--eu06b-primary);
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Buttons */
        .eu06b-btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 40px;
        }

        .eu06b-btn {
            display: inline-block;
            padding: 16px 36px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            text-align: center;
        }

        .eu06b-btn-primary {
            background: linear-gradient(135deg, var(--eu06b-primary) 0%, var(--eu06b-primary-dark) 100%);
            color: white;
            box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
        }

        .eu06b-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
        }

        .eu06b-btn-outline {
            border: 2px solid #e1e4e8;
            color: var(--eu06b-text-main);
        }

        .eu06b-btn-outline:hover {
            background: #f8f9fa;
            border-color: #d1d5da;
        }

        /* Feature Matrix Section */
        .eu06b-section {
            padding: 96px 0;
        }

        .eu06b-section-alt {
            background-color: #ffffff;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .eu06b-section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 64px;
        }

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

        .eu06b-matrix-card {
            background: #fdfdfd;
            padding: 40px;
            border-radius: 20px;
            border: 1px solid #f0f0f0;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .eu06b-matrix-card:hover {
            background: #ffffff;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            transform: translateY(-8px);
            border-color: var(--eu06b-primary);
        }

        .eu06b-card-standard {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--eu06b-primary);
            text-transform: uppercase;
            margin-bottom: 16px;
            display: block;
        }

        .eu06b-card-capability {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 16px;
            display: block;
        }

        /* Speed Visual Section */
        .eu06b-speed-box {
            display: flex;
            flex-wrap: wrap;
            background: var(--eu06b-bg-dark);
            border-radius: 32px;
            overflow: hidden;
            align-items: center;
        }

        .eu06b-speed-text {
            flex: 1;
            padding: 64px;
            color: white;
            min-width: 320px;
        }

        .eu06b-speed-image {
            flex: 1;
            min-width: 320px;
            height: 100%;
        }

        .eu06b-speed-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Archetypes Section */
        .eu06b-archetype-item {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 64px;
            align-items: center;
        }

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

        .eu06b-archetype-content {
            flex: 1;
            min-width: 300px;
        }

        .eu06b-archetype-persona {
            color: var(--eu06b-primary);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 8px;
            display: block;
        }

        .eu06b-feature-highlight {
            background: #eef6ff;
            padding: 16px 24px;
            border-left: 4px solid var(--eu06b-primary);
            border-radius: 0 8px 8px 0;
            margin-top: 24px;
        }

        .eu06b-feature-highlight strong {
            display: block;
            color: var(--eu06b-primary-dark);
            margin-bottom: 4px;
        }

        /* Footer */
        .eu06b-footer {
            background: #0a0f1d;
            color: #a0aec0;
            padding: 80px 0 40px;
        }

        .eu06b-footer-top {
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
            margin-bottom: 64px;
        }

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

        .eu06b-brand-name {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 24px;
            display: block;
        }

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

        .eu06b-footer-links h4 {
            color: white;
            margin-bottom: 12px;
        }

        .eu06b-footer-links a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.2s;
        }

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

        .eu06b-footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 40px;
            text-align: center;
            font-size: 0.9rem;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .eu06b-hero-split {
                gap: 32px;
            }
        }

        @media (max-width: 768px) {
            .eu06b-nav-container {
                height: 70px;
            }
            .eu06b-menu {
                display: none; /* Hide on mobile for simplicity, could add a burger menu */
            }
            .eu06b-hero {
                padding-top: 120px;
                text-align: center;
            }
            .eu06b-hero-image-wrapper {
                transform: none;
            }
            .eu06b-btn-group {
                justify-content: center;
            }
            .eu06b-speed-text {
                padding: 40px 24px;
            }
            .eu06b-archetype-item {
                text-align: center;
            }
            .eu06b-feature-highlight {
                border-left: none;
                border-top: 4px solid var(--eu06b-primary);
                border-radius: 8px;
            }
        }
    