/* Extracted from index.html (was an inline <style> block). */
        /* ===== DESKTOP: Bento Layout ===== */
        .bento-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 50px 20px 80px 20px;
            min-height: calc(100vh - 100px);
            display: flex;
            align-items: flex-start;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            grid-template-rows: auto 1fr;
            gap: 24px;
            width: 100%;
        }

        .bento-hero {
            grid-column: 1 / 2;
            grid-row: 1 / 2;
            padding-right: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .bento-title {
            font-family: 'Futura', sans-serif;
            font-weight: bold;
            font-size: clamp(4rem, 7vw, 6rem);
            line-height: 0.95;
            letter-spacing: -0.02em;
            color: var(--color-ink);
            margin-bottom: 0;
            word-break: keep-all;
            overflow-wrap: normal;
            hyphens: none;
        }

        .bento-info {
            grid-column: 2 / 3;
            grid-row: 1 / 2;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding-bottom: 20px;
        }

        .bento-subtitle {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 1.25rem;
            line-height: 1.4;
            color: var(--color-accent-dark);
            margin-bottom: 20px;
            max-width: 450px;
        }

        .tech-marker {
            font-family: 'Futura', sans-serif;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--color-text-strong);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .tech-marker::before {
            content: '';
            display: block;
            width: 32px;
            height: 1px;
            background-color: var(--color-ink);
        }

        .bento-portal-container {
            grid-column: 1 / 3;
            grid-row: 2 / 3;
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 24px;
            margin-top: 20px;
        }

        .portal-card {
            border-radius: 15px;
            padding: 32px 40px;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 280px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .portal-card:hover {
            transform: translateY(-5px);
        }

        .portal-card.dark {
            background-color: var(--color-ink);
            color: var(--color-surface-2);
        }

        .portal-card.dark .portal-title,
        .portal-card.dark .portal-desc,
        .portal-card.dark .portal-label,
        .portal-card.dark .portal-arrow {
            color: var(--color-surface-2);
        }

        .portal-card.dark:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .portal-card.light {
            background-color: var(--color-surface);
            border: 1px solid transparent;
            color: var(--color-ink);
        }

        .portal-card.light:hover {
            border-color: var(--color-ink);
            background-color: var(--color-surface-2);
        }

        .portal-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .portal-card .portal-header,
        .portal-card .portal-main {
            transition: transform 0.3s ease;
            will-change: transform;
        }

        .portal-label {
            font-family: 'Futura', sans-serif;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            opacity: 0.7;
            margin-top: 5px;
            margin-bottom: 10px;
            display: block;
        }

        .portal-main {
            margin-top: auto;
        }

        .portal-title {
            font-family: 'Futura', sans-serif;
            font-weight: bold;
            font-size: 2.5rem;
            margin: 0 0 20px 0;
            line-height: 1.1;
        }

        .portal-desc {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 1rem;
            opacity: 0.8;
            margin: 0;
            max-width: 90%;
            line-height: 1.5;
        }

        .portal-arrow {
            position: absolute;
            bottom: 40px;
            right: 40px;
            font-size: 2rem;
            font-family: 'Futura', sans-serif;
            font-weight: lighter;
            transition: transform 0.3s ease;
        }

        .portal-card:hover .portal-arrow {
            transform: translateX(-8px);
        }

        .portal-card:hover .portal-header,
        .portal-card:hover .portal-main {
            transform: translateX(8px);
        }

        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .portal-card.dark:hover .grid-overlay {
            opacity: 1;
        }

        .char {
            display: inline-block;
            opacity: 0;
            animation: revealChar 0.1s forwards;
        }

        @keyframes revealChar {
            to { opacity: 1; }
        }

        /* ===== MOBILE: Editorial Layout ===== */
        .editorial-container {
            display: none;
        }

        .editorial-layout {
            display: flex;
            width: 100%;
            border-top: 1px solid #e0e0e0;
        }

        .editorial-main {
            flex: 1.3;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 1px solid #e0e0e0;
            background-color: var(--color-bg);
        }

        .editorial-title {
            font-family: 'Futura', sans-serif;
            font-weight: bold;
            font-size: clamp(4rem, 7vw, 7rem);
            line-height: 0.9;
            letter-spacing: -0.03em;
            color: var(--color-ink);
            margin-bottom: 40px;
            word-break: keep-all;
            overflow-wrap: normal;
            hyphens: none;
        }

        .editorial-subtitle {
            font-family: 'Futura Neue', Helvetica, Arial, sans-serif;
            font-size: 1.5rem;
            line-height: 1.4;
            color: var(--color-accent-dark);
            max-width: 600px;
            margin-bottom: 60px;
        }

        .editorial-side {
            flex: 0.7;
            display: flex;
            flex-direction: column;
        }

        .side-portal {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px;
            text-decoration: none;
            position: relative;
            transition: all 0.4s ease;
        }

        .side-portal.top {
            background-color: var(--color-ink);
            color: var(--color-surface-2);
            border-bottom: 1px solid #333;
        }

        .side-portal.bottom {
            background-color: var(--color-surface);
            color: var(--color-ink);
        }

        .side-portal-label {
            font-family: 'Futura', sans-serif;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            opacity: 0.6;
            margin-bottom: 20px;
        }

        .side-portal-title {
            font-family: 'Futura', sans-serif;
            font-weight: bold;
            font-size: 3rem;
            margin: 0 0 15px 0;
            line-height: 1;
        }

        .side-portal.top .side-portal-title,
        .side-portal.top .side-portal-desc {
            color: var(--color-surface-2);
        }

        .side-portal-desc {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 1.1rem;
            opacity: 0.8;
            margin: 0;
            max-width: 300px;
            line-height: 1.5;
        }

        .side-arrow {
            position: absolute;
            top: 40px;
            right: 40px;
            font-size: 2rem;
            font-family: 'Futura', sans-serif;
        }

        /* ===== Responsive Switching ===== */
        @media (max-width: 992px) {
            /* Hide bento, show editorial on mobile */
            .bento-container {
                display: none;
            }

            .editorial-container {
                display: flex;
                max-width: 1400px;
                margin: 0 auto;
                padding: 0;
                min-height: calc(100vh - 100px);
                align-items: stretch;
                overflow: hidden;
            }

            .editorial-layout {
                flex-direction: column;
            }

            .editorial-main {
                border-right: none;
                padding: 60px 30px;
                border-bottom: 1px solid #e0e0e0;
            }

            .editorial-title {
                font-size: 4rem;
            }

            .side-portal {
                padding: 40px 30px;
                min-height: 300px;
            }
        }

        /* Method Section - Workflow */
        .ent-method-section {
            padding: 80px 20px;
            overflow: hidden;
        }

        .ent-method-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .ent-method-header .ent-section-title {
            font-family: 'Futura', sans-serif;
            font-weight: normal;
            font-size: 3rem;
            margin: 0 0 15px 0;
            text-align: center;
        }

        .ent-workflow {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
        }

        .ent-workflow-line {
            position: absolute;
            top: 45px;
            left: 10%;
            right: 10%;
            height: 2px;
            background-color: transparent;
        }

        .ent-workflow-line-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background-color: var(--color-ink);
            animation: workflow-fill 6s linear infinite;
        }

        @keyframes workflow-fill {
            0% { width: 0; }
            40% { width: 100%; }
            70% { width: 100%; }
            71% { width: 0; }
            100% { width: 0; }
        }

        .ent-workflow-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }

        .ent-workflow-step {
            text-align: center;
        }

        .ent-workflow-node {
            width: 90px;
            height: 90px;
            background-color: var(--color-surface-2);
            border: 2px solid var(--color-ink);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            position: relative;
            z-index: 1;
        }

        .ent-workflow-node i {
            font-size: 1.8rem;
            color: var(--color-ink);
        }

        .ent-workflow-number {
            position: absolute;
            top: -8px;
            right: -8px;
            width: 28px;
            height: 28px;
            background-color: var(--color-ink);
            color: var(--color-surface-2);
            border-radius: 50%;
            font-family: 'Futura', sans-serif;
            font-weight: bold;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ent-workflow-title {
            font-family: 'Futura', sans-serif;
            font-weight: bold;
            font-size: 1.05rem;
            margin-bottom: 10px;
            color: var(--color-ink);
        }

        .ent-workflow-desc {
            font-size: 0.9rem;
            color: var(--color-text);
            line-height: 1.5;
            max-width: 200px;
            margin: 0 auto;
        }

        .ent-method-conclusion {
            text-align: center;
            margin-top: 70px;
            font-family: 'Futura', sans-serif;
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--color-ink);
            letter-spacing: 0.3px;
        }

        .ent-method-conclusion-wrapper {
            text-align: center;
        }

        @media (max-width: 900px) {
            .ent-workflow-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 30px;
            }

            .ent-workflow-line {
                display: none;
            }

            .ent-workflow-step {
                opacity: 1;
                transform: none;
                animation: none;
            }
        }

        @media (max-width: 500px) {
            .ent-workflow-steps {
                grid-template-columns: 1fr;
            }

            .ent-method-conclusion {
                padding: 20px 25px;
                font-size: 1rem;
            }
        }

        /* Trust Section */
        .trust-section {
            text-align: center;
            padding: 60px 20px;
        }

        .trust-label {
            font-family: 'Futura', sans-serif;
            font-size: 3rem;
            font-weight: normal;
            color: var(--color-ink);
            margin-bottom: 40px;
            display: block;
            word-break: keep-all;
            overflow-wrap: normal;
            hyphens: none;
        }

        .trust-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 64px;
            flex-wrap: wrap;
            max-width: 1000px;
            margin: 0 auto;
        }

        .trust-item {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .trust-item-logo {
            max-width: 160px;
            height: 60px;
            object-fit: contain;
            margin-bottom: 12px;
            opacity: 0.8;
            filter: grayscale(100%);
            transition: all 0.3s ease;
        }

        .trust-item:hover .trust-item-logo {
            opacity: 1;
            filter: grayscale(0%);
        }

        .trust-item-logo.logo-havas {
            max-width: 200px;
        }

        .trust-item-desc {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 0.85rem;
            color: var(--color-text);
        }

        @media (max-width: 768px) {
            .trust-grid {
                gap: 32px;
            }

            .trust-item-logo {
                max-width: 120px;
                height: 50px;
            }

            .trust-item-logo.logo-havas {
                max-width: 160px;
            }
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--color-ink);
            color: var(--color-bg);
            padding: 80px 40px 0 40px;
        }

        .cta-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: end;
            max-width: 1200px;
            margin: 0 auto;
        }

        .cta-content {
            padding-bottom: 110px;
        }

        .cta-content h2 {
            font-family: 'Futura', sans-serif;
            font-weight: bold;
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--color-surface-2);
            word-break: keep-all;
            overflow-wrap: normal;
            hyphens: none;
        }

        .cta-content p {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--color-surface-2);
            margin-bottom: 30px;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--color-surface);
            color: var(--color-ink);
            padding: 14px 30px;
            border-radius: 15px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            border: 2px solid var(--color-surface);
            transition: all 0.25s ease;
        }

        .cta-button:hover {
            background-color: var(--color-ink);
            color: var(--color-surface);
        }

        .cta-image {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            align-self: end;
        }

        .cta-phone-preview {
            width: 70%;
            max-width: 420px;
        }

        .cta-phone-preview-clip {
            overflow: hidden;
            border-radius: 26px 26px 0 0;
            height: 520px;
            position: relative;
        }

        .cta-phone-preview-clip img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: top;
        }

        .cta-phone-preview-line {
            display: none;
        }

        @media (max-width: 900px) {
            .cta-section {
                padding: 60px 20px;
            }

            .cta-layout {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
                align-items: center;
            }

            .cta-content {
                padding-bottom: 0;
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            .cta-image {
                order: -1;
                align-items: center;
                align-self: auto;
            }

            .cta-phone-preview {
                width: 80%;
                margin: 0 auto;
            }

            .cta-phone-preview-clip {
                height: 300px;
                position: relative;
                border-radius: 26px;
            }

            .cta-phone-preview-clip img {
                height: 100%;
                object-fit: cover;
                object-position: top;
            }

            .cta-phone-preview-line {
                display: block;
                height: 2px;
                width: 100%;
                background-color: rgba(246, 241, 235, 0.9);
            }
        }

        /* Press Section */
        .press-section {
            padding: 60px 20px;
            text-align: center;
        }

        .press-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 60px;
            max-width: 900px;
            margin: 0 auto;
        }

        .press-logos a {
            display: block;
        }

        .press-logos img {
            height: 50px;
            width: auto;
            max-width: 180px;
            object-fit: contain;
            filter: grayscale(0%);
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .press-logos a:hover img {
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .press-logos img {
                height: 40px;
                max-width: 140px;
            }
        }
