
        :root {
            --eu06b-primary: #0086eb;
            --eu06b-primary-dark: #005bb7;
            --eu06b-bg-dark: #0a0f16;
            --eu06b-surface: #161e29;
            --eu06b-text-main: #e1e7ef;
            --eu06b-text-dim: #94a3b8;
            --eu06b-accent: #00f2ff;
            --eu06b-gap: 8px;
            --eu06b-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(--eu06b-bg-dark);
            color: var(--eu06b-text-main);
            line-height: 1.6;
            overflow-x: hidden;
            word-break: break-word;
        }

        /* Navigation */
        .eu06b-nav-wrapper {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 15, 22, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

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

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

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

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

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

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

        .eu06b-menu a.eu06b-active {
            color: var(--eu06b-accent);
            border-bottom: 2px solid var(--eu06b-accent);
            padding-bottom: 4px;
        }

        /* Hero Section */
        .eu06b-hero {
            padding: 96px 24px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            text-align: center;
        }

        .eu06b-hero-content {
            max-width: 800px;
            z-index: 2;
            min-width: 0;
        }

        .eu06b-hero-badge {
            display: inline-block;
            background: rgba(0, 134, 235, 0.1);
            color: var(--eu06b-accent);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            margin-bottom: 24px;
            border: 1px solid rgba(0, 242, 255, 0.2);
        }

        .eu06b-hero h1 {
            font-size: clamp(2rem, 5vw + 1rem, 4rem);
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #fff 0%, #00f2ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: keep-all;
        }

        .eu06b-hero p {
            font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.4rem);
            color: var(--eu06b-text-dim);
            max-width: 650px;
            margin: 0 auto 48px;
        }

        .eu06b-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            min-width: 0;
        }

        .eu06b-btn {
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 200px;
        }

        .eu06b-btn-primary {
            background: var(--eu06b-primary);
            color: white;
            box-shadow: 0 10px 20px rgba(0, 134, 235, 0.3);
        }

        .eu06b-btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 134, 235, 0.4);
        }

        .eu06b-btn-outline {
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .eu06b-btn-outline:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-5px);
        }

        /* Matrix Grid */
        .eu06b-section {
            padding: 96px 24px;
            max-width: var(--eu06b-container-width);
            margin: 0 auto;
        }

        .eu06b-section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .eu06b-section-header h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            margin-bottom: 16px;
        }

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

        .eu06b-matrix-card {
            background: var(--eu06b-surface);
            padding: 32px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: border-color 0.3s ease;
            min-width: 0;
        }

        .eu06b-matrix-card:hover {
            border-color: var(--eu06b-primary);
        }

        .eu06b-matrix-tag {
            font-size: 12px;
            text-transform: uppercase;
            color: var(--eu06b-primary);
            letter-spacing: 1px;
            font-weight: 700;
            margin-bottom: 12px;
            display: block;
        }

        .eu06b-matrix-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: #fff;
        }

        .eu06b-matrix-card p {
            color: var(--eu06b-text-dim);
            font-size: 15px;
            line-height: 1.7;
        }

        /* Archetypes Section */
        .eu06b-archetype-container {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            background: linear-gradient(180deg, rgba(22, 30, 41, 0) 0%, rgba(22, 30, 41, 1) 100%);
            padding: 48px;
            border-radius: 32px;
            min-width: 0;
        }

        .eu06b-archetype-card {
            flex: 1;
            min-width: 280px;
            background: rgba(255, 255, 255, 0.03);
            padding: 40px;
            border-radius: 24px;
            display: flex;
            flex-direction: column;
        }

        .eu06b-persona-title {
            font-size: 14px;
            color: var(--eu06b-accent);
            margin-bottom: 8px;
        }

        .eu06b-archetype-card h4 {
            font-size: 22px;
            margin-bottom: 20px;
        }

        .eu06b-feature-highlight {
            margin-top: auto;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            font-style: italic;
            color: var(--eu06b-primary);
        }

        /* Dynamic Content Info Section */
        .eu06b-info-block {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 64px;
            margin-top: 64px;
        }

        .eu06b-info-text {
            flex: 1;
            min-width: 320px;
        }

        .eu06b-info-visual {
            flex: 1;
            min-width: 320px;
            background: linear-gradient(45deg, var(--eu06b-primary), var(--eu06b-accent));
            height: 400px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .eu06b-phone-mock {
            width: 240px;
            height: 480px;
            background: #000;
            border: 8px solid #333;
            border-radius: 36px;
            position: absolute;
            bottom: -40px;
            display: flex;
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }

        .eu06b-mock-ui {
            flex: 1;
            background: #111;
            border-radius: 20px;
            padding: 15px;
        }

        .eu06b-mock-line {
            height: 8px;
            background: #222;
            border-radius: 4px;
            margin-bottom: 12px;
            width: 100%;
        }

        .eu06b-mock-line.short { width: 60%; }
        .eu06b-mock-line.accent { background: var(--eu06b-primary); width: 80%; }

        /* Footer */
        .eu06b-footer {
            background: #05080c;
            padding: 64px 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

        .eu06b-footer-brand {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }

        .eu06b-footer-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
            margin-bottom: 32px;
        }

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

        .eu06b-copyright {
            color: #4b5563;
            font-size: 13px;
        }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .eu06b-nav-container {
                padding: 16px;
            }
            .eu06b-menu {
                display: none; /* In a real project, implement a hamburger menu */
            }
            .eu06b-hero {
                padding: 64px 16px;
            }
            .eu06b-section {
                padding: 64px 16px;
            }
            .eu06b-info-visual {
                height: 300px;
            }
            .eu06b-phone-mock {
                width: 180px;
                height: 360px;
                bottom: -20px;
            }
            .eu06b-archetype-container {
                padding: 24px;
            }
        }
    