        /* Fonts chargées via <link> dans HTML — @import supprimé (bloquait le rendu) */

        @font-face {
            font-family: 'Rifton';
            src: url('Rifton Font/rifton-regular.woff2') format('woff2'),
                 url('Rifton Font/rifton-regular.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Rifton';
            src: url('Rifton Font/rifton-italic.woff2') format('woff2'),
                 url('Rifton Font/rifton-italic.otf') format('opentype');
            font-weight: normal;
            font-style: italic;
            font-display: swap;
        }

        /* Design System Variables - Mode Sombre */
        :root {
            color-scheme: dark;
            /* COLORS - Background */
            --color-background-base: #080809;
            --color-background-secondary: #1C1C1E;
            --color-background-card: #0D1D32;
            --color-background-elevated: #2A2A2E;

            /* COLORS - Text */
            --color-text-primary: #FFFDF6;
            --color-text-secondary: #A8A8A8;
            --color-text-tertiary: #86868B;
            --color-text-informational: #929292;

            /* COLORS - Accent & Action */
            --color-accent-action: #EE4408;
            --color-accent-secondary: #F34C0A;
            --color-confirm-validity: #0A2A53;
            --color-focus-tracker: #404025;

            /* COLORS - Borders & UI */
            --color-border-subtle: rgba(255, 255, 255, 0.08);
            --color-border-default: rgba(255, 255, 255, 0.1);
            --color-border-strong: rgba(255, 255, 255, 0.15);

            /* COLORS - Interactive States */
            --color-interactive-hover: rgba(255, 255, 255, 0.08);
            --color-interactive-active: rgba(238, 68, 8, 0.1);
            --color-interactive-disabled: rgba(255, 255, 255, 0.3);

            /* COLORS - Semantic */
            --color-success: #34C759;
            --color-warning: #FF9500;
            --color-error: #FF3B30;

            /* Typography */
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Rifton', serif;

            /* Font Sizes */
            --text-h1: 48px;
            --text-h2: 32px;
            --text-h3: 24px;
            --text-body: 16px;
            --text-small: 14px;
            --text-caption: 12px;

            /* Spacing */
            --space-8: 8px;
            --space-16: 16px;
            --space-24: 24px;
            --space-32: 32px;
            --space-48: 48px;
            --space-64: 64px;
            --space-96: 96px;
            --space-120: 120px;

            /* Layout */
            --container-max: 1200px;
            --navbar-height: 72px;
            --btn-height: 48px;
            --btn-radius: 8px;
        }

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

        html, body {
            overflow-x: hidden; /* fallback iOS <16 */
            overflow-x: clip;   /* iOS 16+ : clip ne crée pas de scroll context (> hidden) */
            width: 100%;
            max-width: 100%;
        }

        /* Color System Override Rules - Enforce semantic color usage */
        /* Primary text color override */
        h1, h2, h3, p, label, span {
            color: inherit; /* Use cascade from parent */
        }

        body {
            background-color: var(--color-background-base);
            color: var(--color-text-primary);
            font-family: var(--font-primary);
            font-size: var(--text-body);
            line-height: 1.6;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--navbar-height);
            background: rgba(5, 6, 8, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border-default);
            padding: 0 var(--space-48);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
        }

        .navbar-logo {
            font-family: var(--font-display);
            font-size: 20px;
            color: var(--color-text-primary);
            text-decoration: none;
            font-weight: normal;
        }

        .navbar-title {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            font-size: 18px;
            font-weight: 600;
            color: var(--color-text-primary);
            margin: 0;
            font-family: var(--font-primary);
            letter-spacing: -0.3px;
        }

        .navbar-links {
            display: flex;
            gap: var(--space-32);
            align-items: center;
        }

        .navbar-link {
            font-family: var(--font-primary);
            font-size: var(--text-small);
            font-weight: 500;
            color: var(--color-text-secondary);
            text-decoration: none;
            transition: all 0.2s ease;
            position: relative;
        }

        .navbar-link:hover {
            color: var(--color-text-primary);
            transform: translateY(-1px);
        }

        .navbar-link.cta {
            background-color: transparent;
            color: rgba(255,255,255,0.70);
            padding: 8px 18px;
            border-radius: var(--btn-radius);
            border: 1px solid rgba(255,255,255,0.18);
            font-weight: 600;
        }

        .navbar-link.cta:hover {
            background-color: rgba(255,255,255,0.06);
            color: rgba(255,255,255,0.90);
            border-color: rgba(255,255,255,0.30);
            transform: none;
        }

        /* Container System */
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--space-24);
        }

        /* Button System */
        .btn {
            font-family: var(--font-primary);
            font-size: var(--text-body);
            font-weight: 600;
            height: var(--btn-height);
            padding: 0 var(--space-32);
            border-radius: var(--btn-radius);
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            min-width: 180px;
        }

        .btn-primary {
            background-color: var(--color-accent-action);
            color: var(--color-text-primary);
            box-shadow: 0 4px 20px rgba(255, 94, 0, 0.4);
        }

        .btn-primary:hover {
            background-color: #ff5d1a;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 94, 0, 0.6);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.08);
            color: var(--color-text-primary);
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            transform: translateY(-2px);
        }

        /* Typography System */
        .overline {
            font-size: var(--text-small);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--color-accent-action);
        }

        h1, .h1 {
            font-size: var(--text-h1);
            font-weight: 700;
            line-height: 1.2;
            color: var(--color-text-primary);
        }

        h2, .h2 {
            font-size: var(--text-h2);
            font-weight: 600;
            line-height: 1.3;
            color: var(--color-text-primary);
        }

        h3, .h3 {
            font-size: var(--text-h3);
            font-weight: 600;
            line-height: 1.4;
            color: var(--color-text-primary);
        }

        p, button, a, span, div {
            font-family: var(--font-primary);
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding-top: calc(var(--navbar-height) + var(--space-96));
            padding-bottom: var(--space-96);
            overflow: hidden;
        }

        /* Video Background */
        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        /* Effet de grain cinématique - très léger */
        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
            opacity: 0.15;
            z-index: 2;
            pointer-events: none;
            mix-blend-mode: overlay;
        }

        /* Overlay avec dégradé sophistiqué - sans flou */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(10, 10, 15, 0.65) 0%,
                rgba(10, 10, 15, 0.5) 40%,
                rgba(255, 94, 0, 0.1) 70%,
                rgba(10, 10, 15, 0.6) 100%
            );
            z-index: 1;
        }

        /* Flou radial - net au centre, flou sur les bords */
        .hero-overlay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            backdrop-filter: blur(0px);
            -webkit-backdrop-filter: blur(0px);
            mask-image: radial-gradient(
                ellipse at center,
                transparent 0%,
                transparent 30%,
                rgba(0, 0, 0, 0.3) 50%,
                rgba(0, 0, 0, 0.7) 70%,
                rgba(0, 0, 0, 1) 100%
            );
            -webkit-mask-image: radial-gradient(
                ellipse at center,
                transparent 0%,
                transparent 30%,
                rgba(0, 0, 0, 0.3) 50%,
                rgba(0, 0, 0, 0.7) 70%,
                rgba(0, 0, 0, 1) 100%
            );
        }

        /* Couche de flou externe - centre net, bords flous */
        .hero-section > .hero-blur-outer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            mask-image: radial-gradient(
                ellipse at center,
                transparent 0%,
                transparent 25%,
                rgba(0, 0, 0, 0.4) 50%,
                rgba(0, 0, 0, 0.8) 75%,
                rgba(0, 0, 0, 1) 100%
            );
            -webkit-mask-image: radial-gradient(
                ellipse at center,
                transparent 0%,
                transparent 25%,
                rgba(0, 0, 0, 0.4) 50%,
                rgba(0, 0, 0, 0.8) 75%,
                rgba(0, 0, 0, 1) 100%
            );
            z-index: 1;
            pointer-events: none;
        }

        /* Effet de vignette */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                ellipse at center,
                transparent 0%,
                rgba(10, 10, 15, 0.3) 60%,
                rgba(10, 10, 15, 0.7) 100%
            );
            z-index: 4;
            pointer-events: none;
        }

        .hero-section.fade-out {
            opacity: 0;
        }

        .hero-content {
            position: relative;
            z-index: 5;
            max-width: 800px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: heroFadeIn 1.2s ease-out;
        }

        @keyframes heroFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-overline {
            font-family: var(--font-display);
            font-size: var(--text-small);
            font-weight: normal;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--color-text-secondary);
            margin-bottom: 0;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }

        /* Grille verticale stricte du hero */
        .hero-overline + .hero-title {
            margin-top: var(--space-16);
        }

        .hero-title {
            font-family: var(--font-primary);
            font-size: var(--text-h1);
            font-weight: 700;
            line-height: 1.2;
            color: var(--color-text-primary);
            margin-bottom: 0;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
        }

        .hero-title-line {
            display: block;
        }

        .hero-title-line + .hero-title-line {
            margin-top: 0.14em;
        }

        .hero-title-desktop .hero-title-line:first-child,
        .hero-title-mobile .hero-title-line:first-child {
            opacity: 0.72;
            font-size: 0.9em;
            font-weight: 600;
            letter-spacing: -0.035em;
        }

        .hero-title-desktop .hero-title-line:last-child {
            font-size: 1.08em;
            font-weight: 700;
            letter-spacing: -0.045em;
        }

        .hero-title-mobile,
        .hero-scroll-label {
            display: none;
        }

        .hero-scroll-line {
            display: block;
        }

        .hero-title-mobile .hero-title-line:first-child {
            white-space: nowrap;
            font-size: 1em;
            letter-spacing: -0.04em;
        }

        .hero-title-mobile .hero-title-line:nth-child(2) {
            margin-top: 0.16em;
            opacity: 0.92;
            font-size: 0.98em;
        }

        .hero-title-mobile .hero-title-line:nth-child(3) {
            margin-top: 0.24em;
            font-size: 1.1em;
            font-weight: 700;
            letter-spacing: -0.045em;
        }

        .hero-title-accent {
            color: inherit;
        }

        .hero-title + .hero-subtitle {
            margin-top: var(--space-16);
        }

        .hero-subtitle {
            font-family: var(--font-primary);
            font-size: var(--text-h3);
            font-weight: 500;
            color: var(--color-text-secondary);
            line-height: 1.5;
            margin-bottom: 0;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
        }

        .hero-subtitle-mobile,
        .btn-label-mobile {
            display: none;
        }

        .hero-subtitle + .hero-description {
            margin-top: var(--space-24);
        }

        .hero-description {
            font-family: var(--font-primary);
            font-size: var(--text-body);
            color: var(--color-text-secondary);
            line-height: 1.7;
            max-width: 600px;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
            margin-bottom: 0;
        }

        .hero-description + .hero-ctas {
            margin-top: var(--space-32);
        }

        .hero-ctas {
            display: flex;
            gap: var(--space-16);
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 0;
        }

        .hero-ctas + .hero-reassurance {
            margin-top: var(--space-16);
        }

        .hero-reassurance {
            font-size: var(--text-caption);
            color: var(--color-text-secondary);
            margin-bottom: 0;
        }

        .hero-reassurance + .features-grid {
            margin-top: var(--space-48);
        }

        .cta-secondary {
            background: transparent;
            border: 2px solid #FFFDF6;
            color: #FFFDF6;
            font-family: 'Inter', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            padding: 18px 48px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-secondary:hover {
            background: #FFFDF6;
            color: #080809;
            transform: translateY(-2px);
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-24);
            max-width: 900px;
            margin: 0 auto;
        }

        .feature-card {
            background: rgba(20, 20, 30, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: var(--space-24);
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(12px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .feature-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 94, 0, 0.4);
            background: rgba(25, 25, 35, 0.7);
            box-shadow: 0 12px 40px rgba(255, 94, 0, 0.2);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto var(--space-16);
        }

        .feature-card .feature-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-text-primary);
            margin-bottom: var(--space-8);
            letter-spacing: 0;
        }

        .feature-desc {
            font-size: var(--text-small);
            color: var(--color-text-secondary);
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
                gap: var(--space-16);
            }
        }

        /* Scroll Indicator — Hero */
        .hero-section .scroll-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            justify-content: center;
            padding-top: 2.5rem;
            padding-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.35);
            animation: scrollBounce 2.4s ease-in-out infinite;
            z-index: 6;
        }

        .hero-section .scroll-indicator svg {
            width: 26px;
            height: auto;
        }

        @keyframes scrollBounce {
            0%, 100% {
                transform: translateY(0);
                opacity: 0.35;
            }
            50% {
                transform: translateY(8px);
                opacity: 0.65;
            }
        }

        h1 {
            font-family: 'Rifton', serif;
            font-size: 8rem;
            font-weight: normal;
            color: #FFFDF6;
            margin-bottom: 2rem;
            letter-spacing: -2px;
        }

        h2 {
            font-family: 'Rifton', serif;
            font-size: 4rem;
            font-weight: normal;
            color: #FFFDF6;
            margin-bottom: 2rem;
            letter-spacing: -1px;
        }

        .tagline {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            color: #929292;
            margin-bottom: 3rem;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .cta-button {
            background-color: #EE4408;
            font-family: 'Inter', sans-serif;
            color: #FFFDF6;
            font-size: 1.2rem;
            font-weight: 600;
            padding: 18px 48px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.2s ease, background-color 0.2s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background-color: #F34C0A;
            transform: translateY(-2px);
        }

        .cta-button:active {
            transform: translateY(0);
        }

        .objectif-section .cta-button {
            max-width: 180px;
            padding: 14px 32px;
            font-size: 0.95rem;
            margin-top: 24px;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .objectif-section .cta-button {
                max-width: 100%;
                width: 100%;
                padding: 14px 28px;
                font-size: 0.9rem;
            }
        }

        .back-button {
            position: fixed;
            top: 30px;
            left: 30px;
            background: transparent;
            color: #929292;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            padding: 12px 24px;
            border: 1px solid #929292;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            z-index: 100;
        }

        .back-button:hover {
            color: #FFFDF6;
            border-color: #FFFDF6;
            transform: translateY(-2px);
        }

        .back-button:active {
            transform: translateY(0);
        }

        /* Projection Section - Section introspective */
        /* Projection */
        .projection-section {
            background: #080809;
        }

        .projection-inner {
            max-width: 720px;
            margin: 0 auto;
            padding: 120px 24px 96px;
            text-align: center;
        }

        .projection-text {
            font-family: var(--font-primary);
            font-size: 2.5rem;
            line-height: 1.25;
            font-weight: 600;
            color: var(--color-text-primary);
            margin: 0;
        }

        .projection-subtitle {
            margin: 40px 0 32px;
            font-family: var(--font-primary);
            font-size: 1.0625rem;
            line-height: 1.6;
            color: #a1a1a6;
        }

        .projection-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        .projection-tag {
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.02);
            color: var(--color-text-primary);
            font-family: var(--font-primary);
            font-size: 0.9375rem;
            line-height: 1;
            padding: 9px 22px;
            border-radius: 999px;
            cursor: pointer;
            outline: none;
            transition: background-color 0.18s ease,
                        transform 0.18s ease,
                        box-shadow 0.18s ease,
                        border-color 0.18s ease;
        }

        .projection-tag:hover,
        .projection-tag:focus-visible {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-1px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
        }

        .projection-tag:active {
            transform: translateY(0);
            box-shadow: none;
        }

        @media (max-width: 900px) {
            .projection-inner {
                padding: 96px 20px 80px;
            }

            .projection-text {
                font-size: 2rem;
            }
        }

        @media (max-width: 600px) {
            .projection-inner {
                padding: 80px 16px 72px;
            }

            .projection-text {
                font-size: 1.75rem;
            }

            .projection-subtitle {
                font-size: 1rem;
            }

            .projection-tags {
                gap: 10px;
            }

            .projection-tag {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
        }

        /* Descente Section - Apple Style Cinematic */
        .descente-section {
            background: #080809;
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            position: relative;
            overflow: hidden;
            height: 50vh;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .descente-split-container {
            display: flex;
            gap: 0;
            align-items: stretch;
            height: calc(55vh - 30px);
            position: relative;
        }

        .descente-split-container > div:first-child {
            flex: 0 0 50%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            padding: 60px 50px;
            overflow: visible;
            position: relative;
            z-index: 5;
        }

        .descente-split-container > div:last-child {
            flex: 0 0 50%;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .descente-video-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 0;
            overflow: hidden;
            box-shadow: none;
        }

        .descente-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: filter 0.3s ease;
            filter: brightness(0.7);
            transform: scale(1.25);
        }

        .descente-video-wrapper:hover .descente-video {
            filter: brightness(0.8);
        }

        .descente-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(5, 6, 8, 0.4) 0%,
                rgba(14, 14, 20, 0.3) 30%,
                rgba(238, 68, 8, 0.08) 50%,
                rgba(5, 6, 8, 0.4) 100%
            );
            pointer-events: none;
            z-index: 2;
            border-left: 1px solid rgba(238, 68, 8, 0.2);
        }

        /* Cinematic Vignette Effect */
        .descente-video-overlay::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                ellipse at center,
                transparent 0%,
                rgba(5, 6, 8, 0.2) 60%,
                rgba(5, 6, 8, 0.5) 100%
            );
            pointer-events: none;
        }

        .descente-container {
            width: 100%;
        }

        .descente-container-text {
            margin-top: 0;
        }

        .descente-text {
            font-family: var(--font-primary);
            font-size: 18px;
            font-weight: 400;
            color: #FFFDF6;
            line-height: 1.7;
            text-align: left;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation-fill-mode: forwards;
        }

        .descente-text.visible {
            opacity: 0.92;
            transform: translateY(0);
        }

        .descente-text-first {
            font-size: 28px;
            font-weight: 700;
            color: #FFFDF6;
            opacity: 0;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
            transform: translateY(30px);
            animation-fill-mode: forwards;
        }

        .descente-text-first.visible {
            opacity: 1;
            transform: translateY(0);
            animation: textReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        @keyframes textReveal {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .descente-text-final {
            font-weight: 600;
            opacity: 0;
            margin-bottom: 0;
            margin-top: 8px;
            transform: translateY(20px);
        }

        .descente-text-final.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .descente-text:last-child {
            margin-bottom: 0;
        }

        /* Apple-style Sophisticated Effects */
        .descente-container-text {
            position: relative;
            z-index: 6;
        }

        /* Subtle glow on hover */
        .descente-container-text:hover .descente-text-first {
            text-shadow: 0 0 30px rgba(238, 68, 8, 0.15);
            transition: text-shadow 0.6s ease;
        }

        /* Enhanced text container styles */
        .descente-text {
            position: relative;
            z-index: 2;
        }

        /* Smooth line separator effect */
        .descente-text-final::after {
            content: '';
            display: block;
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, rgba(238, 68, 8, 0.5), transparent);
            margin-top: 12px;
            transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .descente-text-final.visible::after {
            width: 40px;
        }

        @media (max-width: 1024px) {
            .descente-section {
                padding: 50px 0 0 0;
            }

            .descente-split-container > div:first-child {
                padding: 60px 40px;
            }

            .descente-container {
                max-width: 400px;
            }

            .descente-text {
                font-size: 16px;
            }

            .descente-text-first {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .descente-section {
                padding: 40px 0 0 0;
            }

            .descente-split-container {
                flex-direction: column;
                min-height: auto;
                height: auto;
            }

            .descente-split-container > div:first-child {
                flex: none;
                padding: 50px 24px;
                min-height: auto;
            }

            .descente-split-container > div:last-child {
                flex: none;
                min-height: 60vh;
            }

            .descente-video-wrapper {
                height: 60vh;
                min-height: 400px;
            }

            .descente-container {
                max-width: 100%;
            }

            .descente-text {
                font-size: 16px;
                line-height: 1.65;
                margin-bottom: 18px;
            }

            .descente-text-first {
                font-size: 20px;
                margin-bottom: 20px;
            }

            .descente-text-final {
                margin-top: 6px;
            }
        }

        /* Descente */
        .descente-section {
            background: #080809;
        }

        .descente-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 96px 24px 120px;
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
            gap: 72px;
            align-items: center;
        }

        .descente-text-block {
            max-width: 640px;
        }

        .descente-kicker {
            font-family: var(--font-primary);
            font-size: 0.875rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #a1a1a6;
            margin: 0 0 24px;
        }

        .descente-paragraph {
            margin: 0 0 18px;
            font-family: var(--font-primary);
            font-size: 1.0625rem;
            line-height: 1.7;
            color: var(--color-text-primary);
        }

        .descente-paragraph-strong {
            font-weight: 600;
            color: var(--color-text-primary);
        }

        /* Vidéo */
        .descente-video-shell {
            display: flex;
            justify-content: center;
        }

        .descente-video-frame {
            width: 100%;
            max-width: 520px;
            aspect-ratio: 4 / 3;
            border-radius: 18px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 28px 80px rgba(0, 0, 0, 0.75);
        }

        .descente-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .descente-inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .descente-text-block {
                max-width: 100%;
            }

            .descente-video-frame {
                max-width: 100%;
            }
        }

        @media (max-width: 600px) {
            .descente-inner {
                padding: 72px 16px 96px;
            }
        }

        /* Le Message Section - Apple Design Guidelines */
        .message-section {
            background-color: #080809;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 60px 60px;
            perspective: 1200px;
        }

        .message-glass-hand {
            position: absolute;
            left: -10%;
            bottom: 0;
            width: 45%;
            height: auto;
            max-width: 600px;
            object-fit: contain;
            z-index: 1;
            transform-origin: bottom left;
            animation: handRotateIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
            opacity: 0;
        }

        @keyframes handRotateIn {
            from {
                transform: rotateY(-90deg) rotateZ(-25deg);
                opacity: 0;
            }
            to {
                transform: rotateZ(25deg);
                opacity: 1;
            }
        }

        .message-container {
            max-width: 850px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .message-content {
            text-align: center;
            opacity: 0;
            animation: fadeInMessage 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
            max-width: 950px;
        }

        @keyframes fadeInMessage {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .message-line {
            font-family: var(--font-primary);
            color: var(--color-text-primary);
            margin: 0;
            line-height: 1.3;
            font-weight: 400;
            letter-spacing: -0.3px;
        }

        .message-line-1 {
            font-size: 18px;
            opacity: 0.65;
            margin-bottom: 120px;
            letter-spacing: 0.2px;
            font-weight: 400;
            line-height: 1.5;
        }

        .message-line-2 {
            font-size: 52px;
            font-weight: 700;
            margin-bottom: 120px;
            letter-spacing: -1.2px;
            line-height: 1.15;
        }

        .message-line-3 {
            font-size: 26px;
            opacity: 0.75;
            margin-bottom: 100px;
            font-weight: 500;
            line-height: 1.4;
        }

        .message-line-4 {
            font-size: 30px;
            font-weight: 600;
            line-height: 1.4;
            letter-spacing: -0.6px;
        }

        .message-emphasis {
            color: #EE4408;
            font-weight: 700;
            display: inline;
        }

        .eisenhower-section {
            background-color: #080809;
            padding: 120px 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .eisenhower-container {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: flex-start;
        }

        .eisenhower-title {
            grid-column: 1 / -1;
            text-align: center;
            margin-bottom: -10px;
        }

        .eisenhower-title h2 {
            font-family: var(--font-primary);
            font-size: var(--text-h3);
            font-weight: 500;
            color: var(--color-text-secondary);
            line-height: 1.5;
            margin-bottom: 0;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
        }

        .title-rifton {
            font-family: var(--font-display);
            font-weight: 700;
            color: var(--color-text-primary);
            text-shadow: none;
            font-size: 2.7em;
        }

        .eisenhower-matrix {
            display: flex;
            justify-content: center;
        }

        .matrix-wrapper {
            position: relative;
            background: #080809;
            padding: 24px 32px 40px;
            border-radius: 20px;
            max-width: 500px;
            width: 100%;
        }

        .axis {
            position: absolute;
            font-family: var(--font-primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: #FFFDF6;
            font-size: 12px;
            opacity: 0.9;
            white-space: nowrap;
        }

        .axis-top-left {
            top: 16px;
            left: 25%;
            transform: translateX(-50%);
        }

        .axis-top-right {
            top: 16px;
            left: 75%;
            transform: translateX(-50%);
        }

        .axis-left-top {
            top: 25%;
            left: -6%;
            transform: translate(-50%, -50%);
        }

        .axis-left-bottom {
            top: 75%;
            left: -10%;
            transform: translate(-50%, -50%);
            width: 60px;
            text-align: left;
            line-height: 1.2;
            white-space: normal;
        }

        .matrix {
            position: relative;
            width: 500px;
            height: 500px;
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 10px;
        }

        .cell {
            position: relative;
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            border-radius: 12px;
            background-clip: padding-box;
            overflow: hidden;
        }

        .cell--do { background: #0D0D0F; }
        .cell--plan { background: #121216; }
        .cell--delegate { background: #16171B; }
        .cell--drop { background: #1B1C20; }

        .cell::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            border: 1px solid rgba(146, 146, 146, 0.18);
            mix-blend-mode: normal;
            pointer-events: none;
        }

        .cell:hover {
            filter: brightness(1.03);
        }

        .cell-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            font-weight: 500;
            color: rgba(146, 146, 146, 0.9);
            margin-bottom: 6px;
        }

        .cell-verb {
            font-weight: 700;
            font-size: 18px;
            color: #FFFDF6;
        }

        .task {
            position: absolute;
            width: 160px;
            padding: 12px 16px 12px 18px;
            border-radius: 10px;
            background: #262730;
            border: 1px solid rgba(255, 255, 255, 0.09);
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 8px;
            color: #FFFDF6;
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 0, 0, 0.5);
            animation: move-task 12s cubic-bezier(0.22, 0.61, 0.36, 1) infinite, float-curve 6s ease-in-out infinite;
            transform-origin: center center;
        }

        .task-content {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .task .title {
            font-size: 12px;
            font-weight: 600;
        }

        .task .meta {
            font-size: 11px;
            font-weight: 400;
            color: rgba(146, 146, 146, 0.75);
        }

        .task-handle {
            width: 8px;
            display: flex;
            flex-direction: column;
            gap: 3px;
            opacity: 0.7;
            flex-shrink: 0;
        }

        .task-handle-dot {
            width: 3px;
            height: 3px;
            border-radius: 999px;
            background: rgba(255, 255, 246, 0.7);
        }

        .cursor-icon {
            position: absolute;
            width: 26px;
            height: auto;
            bottom: -8px;
            right: -8px;
            pointer-events: none;
            opacity: 0.95;
        }

        .matrix-wrapper:hover .task {
            box-shadow: 0 26px 70px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(0, 0, 0, 0.6);
        }

        @keyframes move-task {
            0% { top: 23%; left: 6%; }
            25% { top: 23%; left: 56%; }
            50% { top: 73%; left: 56%; }
            75% { top: 73%; left: 6%; }
            100% { top: 23%; left: 6%; }
        }

        @keyframes float-curve {
            0% { transform: translate(-1px, -2px) scale(1); }
            25% { transform: translate(2px, -1px) scale(1.01); }
            50% { transform: translate(1px, 2px) scale(1); }
            75% { transform: translate(-2px, 1px) scale(1.01); }
            100% { transform: translate(-1px, -2px) scale(1); }
        }

        .eisenhower-text {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            padding-top: 64px;
        }

        .eisenhower-text h2 {
            font-family: var(--font-primary);
            font-size: 48px;
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: 28px;
            letter-spacing: -1px;
        }

        .eisenhower-text p {
            font-family: var(--font-primary);
            font-size: 20px;
            font-weight: 400;
            color: rgba(255, 253, 246, 0.85);
            line-height: 1.5;
            opacity: 0.9;
        }

        .eisenhower-subtitle-main {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .eisenhower-subtitle-desc {
            font-size: 16px;
            font-weight: 400;
            color: rgba(255, 253, 246, 0.65);
            margin: 0;
        }

        .eisenhower-subtitle-extra {
            font-size: 14px;
            font-weight: 400;
            color: rgba(255, 253, 246, 0.50);
            margin: 8px 0 0 0;
            line-height: 1.4;
        }

        .matrix-body {
            display: none;
        }

        .matrix-side-labels {
            display: none;
        }

        /* Eisenhower Tablet */
        @media (max-width: 1024px) {
            .eisenhower-section {
                padding: 80px 40px;
                min-height: auto;
            }

            .eisenhower-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .eisenhower-text {
                padding-top: 40px;
            }

            .eisenhower-text h2 {
                font-size: 36px;
                margin-bottom: 20px;
            }

            .eisenhower-text p {
                font-size: 16px;
            }

            .matrix {
                width: 400px;
                height: 400px;
            }

            .matrix-wrapper {
                max-width: 400px;
            }
        }

        /* Eisenhower Mobile */
        @media (max-width: 768px) {
            .eisenhower-section {
                padding: 60px 20px;
            }

            .eisenhower-title {
                margin-bottom: 40px;
            }

            .eisenhower-title h2 {
                font-size: 14px;
                margin-bottom: 16px;
            }

            .title-rifton {
                font-size: 1.8em;
            }

            .eisenhower-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .eisenhower-text {
                padding-top: 0;
                text-align: center;
            }

            .eisenhower-text h2 {
                font-size: 24px;
                margin-bottom: 16px;
            }

            .eisenhower-text p {
                font-size: 14px;
                text-align: center;
            }

            .eisenhower-subtitle-main {
                font-size: 16px;
                margin-bottom: 10px;
            }

            .eisenhower-subtitle-desc {
                font-size: 13px;
            }

            .eisenhower-subtitle-extra {
                font-size: 12px;
            }

            .matrix {
                width: 280px;
                height: 280px;
                margin-top: 20px;
                gap: 6px;
            }

            .matrix-wrapper {
                max-width: 280px;
                padding: 16px 20px 24px;
            }

            .cell {
                padding: 16px;
            }

            .cell-label {
                font-size: 8px;
                margin-bottom: 4px;
            }

            .cell-verb {
                font-size: 14px;
            }

            .axis {
                font-size: 10px;
            }

            .task {
                width: 120px;
                padding: 10px 12px 10px 14px;
                font-size: 11px;
                border-radius: 8px;
            }

            .task .title {
                font-size: 10px;
            }

            .task .meta {
                font-size: 9px;
            }
        }

        @media (max-width: 768px) {
            .message-section {
                height: auto;
                min-height: 100vh;
                padding: 60px 0;
            }

            .message-container {
                padding: 40px 20px;
            }

            .message-line-1 {
                font-size: 16px;
                margin-bottom: 50px;
            }

            .message-line-2 {
                font-size: 32px;
                margin-bottom: 60px;
                line-height: 1.3;
            }

            .message-line-3 {
                font-size: 18px;
                margin-bottom: 50px;
            }

            .message-line-4 {
                font-size: 20px;
                line-height: 1.4;
            }
        }

        /* ========================================
           NEW SECTIONS CSS (9-Section Restructuring)
           ======================================== */

        /* SECTION 2: PAIN - Identification ICP */
        .pain-section {
            padding: var(--space-96) var(--space-24);
            background: linear-gradient(
                180deg,
                var(--color-background-base) 0%,
                rgba(238, 68, 8, 0.03) 50%,
                var(--color-background-base) 100%
            );
            position: relative;
            overflow: hidden;
        }

        .pain-section .section-overline {
            display: inline-block;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-text-tertiary);
            margin-bottom: var(--space-24);
            font-family: var(--font-primary);
        }

        .pain-section h2 {
            font-size: var(--text-h2);
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: var(--space-16);
            line-height: 1.3;
            max-width: 600px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--color-text-secondary);
            margin-bottom: var(--space-64);
            font-weight: 400;
            max-width: 600px;
        }

        /* Pain Grid Layout */
        .pain-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--space-24);
            margin-bottom: var(--space-64);
            max-width: 1200px;
        }

        .pain-card {
            background: rgba(28, 28, 30, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--color-border-subtle);
            border-radius: 16px;
            padding: var(--space-32);
            transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .pain-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(238, 68, 8, 0.1) 0%,
                transparent 100%
            );
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .pain-card:hover {
            background: rgba(44, 44, 46, 0.5);
            border-color: var(--color-accent-action);
            transform: translateY(-4px);
        }

        .pain-card:hover::before {
            opacity: 1;
        }

        .pain-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--color-text-primary);
            margin-bottom: var(--space-16);
            line-height: 1.4;
            font-family: var(--font-primary);
        }

        .pain-card p {
            font-size: 15px;
            color: var(--color-text-secondary);
            line-height: 1.6;
            font-family: var(--font-primary);
            margin: 0;
        }

        /* Pain Conclusion */
        .pain-conclusion {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.8;
            max-width: 860px;
            text-align: left;
            margin: 0;
            font-family: var(--font-primary);
        }

        .pain-conclusion strong {
            color: #ffffff;
            font-weight: 700;
        }

        .pain-mobile {
            display: none;
        }

        /* Pain Section — Liste pure */
        .pain-section {
            padding: 120px 0;
            background: #000;
        }

        .pain-inner {
            max-width: 780px;
            margin: 0 auto;
            padding: 0 var(--space-48);
        }

        .pain-list {
            margin: var(--space-64) 0;
        }

        .pain-item {
            display: grid;
            grid-template-columns: 48px 1fr;
            gap: 24px;
            padding: 52px 0;
        }

        .pain-number {
            font-size: 11px;
            font-weight: 800;
            color: var(--color-accent-action);
            letter-spacing: 3px;
            font-family: var(--font-primary);
            padding-top: 10px;
        }

        .pain-content {
            flex: 1;
        }

        .pain-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 16px;
        }

        .pain-title {
            font-size: clamp(26px, 3.2vw, 42px);
            font-weight: 700;
            color: #ffffff;
            margin: 0;
            letter-spacing: -0.03em;
            line-height: 1.15;
            font-family: var(--font-primary);
            max-width: 600px;
        }

        .pain-icon {
            width: clamp(26px, 3.2vw, 42px);
            height: clamp(26px, 3.2vw, 42px);
            object-fit: contain;
            flex-shrink: 0;
            filter: brightness(0) invert(1);
            opacity: 1;
        }

        /* Scroll reveal — état initial */
        .pain-reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pain-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .pain-body {
            font-size: 16px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.7;
            font-family: var(--font-primary);
            margin: 0;
            max-width: 540px;
        }

        .pain-separator {
            height: 1px;
            background: rgba(255, 255, 255, 0.06);
            width: 100%;
        }

        /* Pain Statements Format (legacy) */
        .pain-intro {
            font-size: 20px;
            font-weight: 600;
            color: var(--color-text-secondary);
            margin-bottom: var(--space-48);
            font-family: var(--font-primary);
            max-width: 800px;
        }

        .pain-statements {
            display: flex;
            flex-direction: column;
            max-width: 800px;
            margin-bottom: var(--space-64);
        }

        .pain-statement {
            padding: var(--space-48) 0;
        }

        .statement-text {
            font-size: clamp(28px, 4vw, 52px);
            font-weight: 700;
            color: var(--color-text-primary);
            line-height: 1.15;
            margin-bottom: 14px;
            font-family: var(--font-primary);
            letter-spacing: -0.02em;
        }

        .statement-second {
            color: var(--color-accent-action);
        }

        .statement-context {
            font-size: 16px;
            color: var(--color-text-tertiary);
            font-weight: 400;
            line-height: 1.5;
            font-family: var(--font-primary);
            margin: 0;
        }

        .pain-divider {
            width: 100%;
            height: 1px;
            background: var(--color-border-subtle);
        }

        /* Responsive: Pain Section */
        @media (max-width: 768px) {
            .pain-section {
                padding: var(--space-64) var(--space-24);
            }

            .pain-section h2 {
                font-size: 28px;
            }

            .section-subtitle {
                font-size: 16px;
                margin-bottom: var(--space-48);
            }

            .pain-grid {
                grid-template-columns: 1fr;
                gap: var(--space-16);
                margin-bottom: var(--space-48);
            }

            .pain-card {
                padding: var(--space-24);
            }

            .pain-inner {
                padding: 0 var(--space-24);
            }

            .pain-item {
                gap: 24px;
                padding: 32px 0;
            }

            .pain-title {
                font-size: 22px;
            }

            .statement-text {
                font-size: 28px;
            }

            .pain-statement {
                padding: 32px 0;
            }

            .pain-conclusion {
                font-size: 14px;
            }

            .pain-inner {
                padding: 0 var(--space-24);
            }

            .pain-item {
                grid-template-columns: 36px 1fr;
                gap: 16px;
                padding: 36px 0;
            }

            .pain-title {
                font-size: 24px;
            }

            .pain-body {
                max-width: 100%;
            }

            .pain-icon {
                width: 26px;
                height: 26px;
            }
        }

        /* SECTION 4: MARKET GAP - Market Problem Analysis */
        /* SECTION 5: MARKET GAP — Apple Bento Redesign */
        .market-gap-section {
            background: #080809;
            padding: 72px 24px 32px;
            position: relative;
            overflow: hidden;
        }

        .mg-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        /* Header */
        .mg-header {
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 56px;
        }

        .mg-overline {
            display: inline-flex;
            align-items: center;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.55);
            margin-bottom: 18px;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 999px;
            padding: 5px 16px;
        }

        .mg-title {
            font-size: clamp(28px, 4.5vw, 48px);
            font-weight: 700;
            letter-spacing: -1.5px;
            line-height: 1.2;
            margin: 0 0 24px 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .mg-title-bright {
            display: block;
            color: #FFFFFF;
        }

        .mg-title-dim {
            display: block;
            color: rgba(255,255,255,0.38);
            margin-top: 4px;
        }

        .mg-subtitle {
            font-size: 15px;
            color: #A1A1AA;
            font-weight: 400;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            margin: 0;
            line-height: 1.6;
        }

        .problem-copy-mobile {
            display: none;
        }

        /* Statement — replaces bento */
        .mg-statement {
            margin-bottom: 52px;
        }

        .mg-conclusion {
            font-size: clamp(16px, 1.8vw, 19px);
            font-weight: 500;
            color: #ffffff;
            text-align: center;
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.5;
            border-top: 1px solid rgba(255,255,255,0.07);
            padding-top: 36px;
            opacity: 0;
            transform: translateY(14px);
            transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
        }

        .section-bridge {
            display: none;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            margin-top: 28px;
            color: rgba(255, 255, 255, 0.5);
        }

        .section-bridge-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .mg-tools-list {
            display: flex;
            flex-direction: column;
            gap: 2px;
            margin-bottom: 52px;
        }

        .mg-tool-line {
            font-size: clamp(22px, 2.8vw, 40px);
            font-weight: 500;
            color: rgba(255, 253, 246, 0.35);
            letter-spacing: -0.03em;
            line-height: 1.35;
            position: relative;
            margin: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            opacity: 0;
            transform: translateX(-28px);
            transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .mg-tool-line.is-visible {
            opacity: 1;
            transform: translateX(0);
        }

        .mg-tool-line.is-struck {
            opacity: 0.28;
            transition: opacity 0.5s ease 0.15s, transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .mg-tool-name {
            color: rgba(255, 253, 246, 0.82);
            font-weight: 700;
        }

        .mg-tool-line::after {
            content: '';
            position: absolute;
            left: 0;
            top: 52%;
            width: 0;
            height: 2px;
            background: rgba(238, 68, 8, 0.85);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mg-tool-line.is-struck::after {
            width: 100%;
        }

        .mg-conclusion.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .mg-uvp {
            font-size: clamp(28px, 3.8vw, 56px);
            font-weight: 800;
            color: var(--accent-orange);
            letter-spacing: -0.04em;
            line-height: 1.1;
            margin: 24px 0 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            opacity: 0;
            transform: translateY(18px) scale(0.97);
            transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mg-uvp.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Problem List — card + text layout */
        .problem-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-bottom: 40px;
            text-align: left;
            max-width: 760px;
            margin-left: auto;
            margin-right: auto;
        }

        .problem-item {
            display: flex;
            align-items: center;
            gap: 48px;
            opacity: 0;
            transform: translateY(14px);
            transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .problem-item.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .problem-visual {
            flex-shrink: 0;
            width: 280px;
            height: 160px;
            background: #121212;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.05);
            display: flex;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
            padding: 20px 24px;
        }

        .problem-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #eeeeee;
            margin: 0 0 5px;
            letter-spacing: -0.02em;
        }

        .problem-highlight {
            display: block;
            color: #d1d1d1;
            font-weight: 500;
            font-size: 1rem;
            margin: 0 0 5px;
        }

        .problem-desc {
            color: #8a8a8a;
            font-size: 1rem;
            margin: 0;
            line-height: 1.5;
        }

        /* --- Visual 1: Dot grid --- */
        .prob-grid-dots {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 7px;
            width: 100%;
        }
        .prob-dot {
            aspect-ratio: 1;
            background: #222222;
            border-radius: 3px;
        }
        .prob-dot.active { background: #ff3b1f; }

        /* --- Visual 2: To-do list (checkbox + bar) --- */
        .prob-todo {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 100%;
        }
        .prob-todo-row {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .prob-todo-check {
            width: 13px;
            height: 13px;
            border-radius: 3px;
            flex-shrink: 0;
        }
        .prob-todo-bar {
            height: 10px;
            border-radius: 5px;
        }
        .prob-todo-row.done .prob-todo-check { background: #ff3b1f; }
        .prob-todo-row.done .prob-todo-bar   { background: #ff3b1f; }
        .prob-todo-row.pending .prob-todo-check { background: #222222; }
        .prob-todo-row.pending .prob-todo-bar   { background: #222222; }

        /* --- Visual 3: Streak cards --- */
        .prob-streak-cards {
            display: flex;
            gap: 10px;
            align-items: center;
            justify-content: center;
        }
        .prob-scard {
            width: 48px;
            height: 66px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .prob-scard.done {
            background: rgba(255, 59, 31, 0.14);
        }
        .prob-scard.done::after {
            content: '';
            width: 14px;
            height: 9px;
            border-left: 2.5px solid #ff3b1f;
            border-bottom: 2.5px solid #ff3b1f;
            transform: rotate(-45deg);
            margin-top: -3px;
        }
        .prob-scard.missed {
            background: #1a1a1a;
            border: 1px solid #252528;
        }
        .prob-scard.today {
            background: transparent;
            border: 2px solid #2e2e32;
        }

        /* --- Visual 4: Gamification sunburst + star --- */
        .prob-sunburst {
            width: 100%;
            height: 100%;
            background: repeating-conic-gradient(
                rgba(255, 255, 255, 0.04) 0deg 12deg,
                transparent 12deg 24deg
            );
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Bento Grid (kept for reference, unused) */
        .mg-bento {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 12px;
            margin-bottom: 48px;
        }

        .mg-card {
            background: #1C1C1E;
            border: 1px solid rgba(146, 146, 146, 0.12);
            border-radius: 16px;
            padding: 36px;
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 1px 0 rgba(255, 253, 246, 0.04);
        }

        .mg-card--large { grid-column: 1 / 3; grid-row: 1; }
        .mg-card--tall  { grid-column: 3;     grid-row: 1 / 3; }
        .mg-card--small { grid-column: 1;     grid-row: 2; }
        .mg-card--mini  { grid-column: 2;     grid-row: 2; display: flex; flex-direction: column; justify-content: center; }

        .mg-card-label {
            display: block;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #EE4408;
            margin-bottom: 10px;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .mg-card-title {
            font-size: 20px;
            font-weight: 600;
            color: #FFFDF6;
            letter-spacing: -0.4px;
            margin: 0 0 10px 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.2;
        }

        .mg-card-body {
            font-size: 14px;
            font-weight: 500;
            color: #929292;
            line-height: 1.6;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            margin: 0;
        }

        /* Todo visual */
        .mg-visual-todo {
            margin-top: 24px;
            display: flex;
            flex-direction: column;
            gap: 9px;
        }

        .mg-todo-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: #3A3A3C;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .mg-todo-item.checked { color: #404025; }
        .mg-todo-item.pending { color: #3A3A3C; }
        .mg-todo-icon { flex-shrink: 0; }
        .mg-todo-item.checked .mg-todo-icon { color: #404025; }
        .mg-todo-item.pending .mg-todo-icon { color: #EE4408; opacity: 0.5; }

        /* Maze visual */
        .mg-visual-maze { margin-top: 24px; opacity: 0.8; }

        /* Broken pipeline visual */
        .mg-broken-pipeline {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 16px;
        }

        .mg-bp-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .mg-bp-on {
            background: #EE4408;
            box-shadow: 0 0 6px rgba(238, 68, 8, 0.6);
        }

        .mg-bp-off {
            background: rgba(163, 21, 13, 0.35);
            box-shadow: 0 0 4px rgba(163, 21, 13, 0.25);
        }

        .mg-bp-line {
            flex: 1;
            height: 1px;
            background: #2C2C2E;
            min-width: 12px;
        }

        .mg-bp-broken {
            background: repeating-linear-gradient(
                90deg,
                rgba(163, 21, 13, 0.5) 0,
                rgba(163, 21, 13, 0.5) 3px,
                transparent 3px,
                transparent 8px
            );
        }

        /* Stat mini */
        .mg-stat-number {
            font-size: 72px;
            font-weight: 700;
            color: #EE4408;
            letter-spacing: -4px;
            line-height: 1;
            margin: 0 0 8px 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .mg-stat-label {
            font-size: 13px;
            color: #86868b;
            line-height: 1.4;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            margin: 0;
        }

        /* Pipeline */
        .mg-pipeline {
            background: #0A0A0A;
            border: 1px solid #1C1C1E;
            border-radius: 14px;
            padding: 24px 32px 28px;
        }

        .mg-pipeline-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .mg-pipeline-label {
            font-size: 9px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: #48484a;
            font-family: 'Roboto Mono', 'SF Mono', 'Courier New', monospace;
            margin: 0;
        }

        .mg-pipeline-live {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 9px;
            font-weight: 400;
            letter-spacing: 0.12em;
            text-transform: lowercase;
            color: #48484a;
            font-family: 'Roboto Mono', monospace;
        }

        .mg-status-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #30D158;
            box-shadow: 0 0 5px rgba(48, 209, 88, 0.7);
            flex-shrink: 0;
        }

        .mg-pipeline-track {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .mg-pill {
            background: #141414;
            border: 1px solid #2C2C2E;
            border-radius: 6px;
            padding: 7px 14px;
            font-size: 11px;
            font-weight: 400;
            color: #AEAEB2;
            font-family: 'Roboto Mono', 'SF Mono', 'Courier New', monospace;
            white-space: nowrap;
            flex-shrink: 0;
            letter-spacing: 0.03em;
        }

        .mg-arrow {
            font-family: 'Roboto Mono', monospace;
            font-size: 12px;
            color: #EE4408;
            opacity: 0.55;
            flex-shrink: 0;
            line-height: 1;
        }

        .mg-pipeline-caption {
            font-size: 11px;
            color: #48484a;
            text-align: center;
            font-family: 'Roboto Mono', monospace;
            margin: 0;
            letter-spacing: 0.03em;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .market-gap-section { padding: 80px 20px; }

            .mg-bento {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                gap: 10px;
            }

            .mg-card--large,
            .mg-card--tall,
            .mg-card--small,
            .mg-card--mini { grid-column: 1; grid-row: auto; }

            .mg-pipeline { padding: 20px 16px 24px; }

            .mg-pipeline-track { flex-wrap: wrap; gap: 6px; justify-content: center; }

            .mg-pill { font-size: 10px; padding: 5px 10px; }

            .mg-arrow { font-size: 10px; }

            .mg-stat-number { font-size: 52px; }
        }

        /* SECTION A: MENTAL — OSCILLATION */
        .duality-section {
            background: radial-gradient(ellipse 90% 60% at 50% 45%, #0a1022 0%, #010307 55%, #000000 100%);
            padding: 72px clamp(24px, 12vw, 120px) 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: background 1.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .duality-section.state-high {
            background: radial-gradient(ellipse 90% 75% at 50% 45%, #150a03 0%, #060200 55%, #000000 100%);
        }

        .mental-glow {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            height: 380px;
            border-radius: 50%;
            filter: blur(120px);
            pointer-events: none;
            z-index: 0;
            background: rgba(12, 18, 55, 0.08);
            transition: background 1.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .duality-section.state-high .mental-glow {
            background: rgba(200, 68, 8, 0.18);
        }

        .duality-container {
            max-width: 680px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .duality-overline {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: rgba(70, 110, 200, 0.42);
            margin: 0 0 64px 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            transition: color 1.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .duality-section.state-high .duality-overline {
            color: rgba(180, 95, 35, 0.42);
        }

        /* Mental Oscillator */
        .mental-oscillator {
            position: relative;
            width: 100%;
            min-height: 300px;
            margin-bottom: 200px;
            padding-bottom: 8%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
        }

        .mental-state {
            position: absolute;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            opacity: 0;
            transform: translateY(18px);
            filter: blur(8px);
            transition: opacity 0.95s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.95s cubic-bezier(0.4, 0, 0.2, 1),
                        filter 0.95s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            will-change: opacity, transform, filter;
        }

        .mental-state.is-active {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
            pointer-events: auto;
        }

        .mental-phase-label {
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.22em;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .mental-state--low .mental-phase-label {
            color: rgba(90, 130, 220, 0.55);
        }

        .mental-state--high .mental-phase-label {
            color: rgba(220, 155, 70, 0.5);
        }

        .mental-words {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            width: fit-content;
            margin: 0 auto;
        }

        .mental-words .mental-word:nth-child(2) {
            padding-left: 0;
        }

        .mental-words .mental-word:nth-child(3) {
            padding-left: 0;
        }

        .mental-word {
            font-size: clamp(28px, 5vw, 44px);
            font-weight: 600;
            letter-spacing: -0.04em;
            line-height: 1.05;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .mental-state--low .mental-word {
            color: rgba(130, 170, 255, 0.55);
        }

        .mental-word--cold {
            color: rgba(90, 148, 255, 0.92) !important;
        }

        .mental-state--high .mental-word {
            color: rgba(255, 238, 208, 0.80);
        }

        .mental-word--warm {
            background: linear-gradient(135deg, #F07020 0%, #FFA040 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent !important;
        }

        /* Weight utility classes — requires Inter 300–900 loaded */
        .mw-light   { font-weight: 300; }
        .mw-regular { font-weight: 400; }
        .mw-medium  { font-weight: 500; }
        .mw-black   { font-weight: 800; }

        .mental-forge-note {
            font-size: 11px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            margin: 4px 0 0;
        }

        .mental-state--low .mental-forge-note {
            color: rgba(80, 130, 255, 0.38);
        }

        .mental-forge-note--result {
            color: rgba(200, 130, 50, 0.42);
        }

        /* Truth block */
        .mental-truth-block {
            margin-bottom: 52px;
            text-align: center;
        }

        .mental-truth-line {
            font-size: clamp(18px, 2vw, 22px);
            font-weight: 400;
            color: rgba(255, 253, 246, 0.6);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            letter-spacing: -0.02em;
            line-height: 1.5;
            margin: 0 0 8px;
        }

        .mental-truth-line--em {
            font-weight: 700;
            color: #FFFDF6;
            margin: 0;
            font-size: clamp(20px, 2.4vw, 26px);
            letter-spacing: -0.03em;
        }

        /* Punchline */
        .duality-pivot {
            font-size: 18px;
            font-weight: 400;
            line-height: 1.4;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            margin: 0;
            letter-spacing: -0.02em;
            transition: color 1.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .duality-section.state-low .duality-pivot {
            color: rgba(90, 148, 255, 0.82);
        }

        .duality-section.state-high .duality-pivot {
            color: rgba(210, 140, 60, 0.90);
        }

        @media (max-width: 768px) {
            .duality-section { padding: 80px 6vw 100px; }
            .mental-oscillator { min-height: 250px; margin-bottom: 100px; padding-bottom: 6%; }
            .mental-word { font-size: clamp(26px, 7vw, 36px); }
            .mental-glow { width: 100vw; height: 50vw; }
            .mental-words .mental-word:nth-child(2) { padding-left: 0; }
            .mental-words .mental-word:nth-child(3) { padding-left: 0; }
            .duality-overline { font-size: 12px; margin: 0 0 48px 0; }
        }

        /* VALUES SECTION — Apple-style moments */
        /* ── VALEURS ── */
        .vals-section {
            background: #000;
            padding: 80px 64px 96px;
            border-top: 1px solid rgba(255,255,255,0.07);
            position: relative;
            overflow: hidden;
        }

        .vals-tag {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.25);
            margin: 0 0 56px;
        }

        .vals-list {
            display: flex;
            flex-direction: column;
        }

        .vals-item {
            display: flex;
            align-items: baseline;
            gap: 40px;
            padding: 36px 0;
            border-bottom: 1px solid rgba(255,255,255,0.07);
        }

        .vals-item:first-child {
            border-top: 1px solid rgba(255,255,255,0.07);
        }

        .vals-num {
            font-size: 12px;
            font-weight: 500;
            color: rgba(255,255,255,0.2);
            letter-spacing: 0.06em;
            flex-shrink: 0;
            width: 28px;
        }

        .vals-content {
            display: flex;
            align-items: baseline;
            gap: 48px;
            flex: 1;
        }

        .vals-word {
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 700;
            letter-spacing: -0.03em;
            color: #fff;
            margin: 0;
            flex-shrink: 0;
            width: clamp(180px, 22vw, 300px);
        }

        .vals-line {
            font-size: 14px;
            color: rgba(255,255,255,0.38);
            line-height: 1.65;
            margin: 0;
            max-width: 480px;
        }

        @media (max-width: 768px) {
            .vals-section { padding: 64px 24px 80px; }
            .vals-content { flex-direction: column; gap: 10px; }
            .vals-word { width: auto; }
        }

        /* ── BENTO SECTION ── */
        .bento-section {
            background: #000;
            padding: 80px 48px 96px;
            border-top: 1px solid rgba(255,255,255,0.07);
        }

        .bento-tag {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.28);
            margin: 0 0 36px;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .bento-card--a { grid-column: 1; }
        .bento-card--b { grid-column: 2; }
        .bento-card--c { grid-column: 1 / -1; }

        .bento-card {
            background: #0d0d0d;
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .bento-card--c {
            flex-direction: row;
        }

        /* Body */
        .bento-body {
            padding: 28px 28px 24px;
            flex-shrink: 0;
        }

        .bento-card--c .bento-body {
            max-width: 340px;
        }

        .bento-title {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: -0.03em;
            color: #fff;
            margin: 0 0 12px;
            line-height: 1.3;
        }

        .bento-dim {
            color: rgba(255,255,255,0.38);
        }

        .bento-desc {
            font-size: 13px;
            color: rgba(255,255,255,0.4);
            line-height: 1.65;
            margin: 0 0 18px;
        }

        .bento-features {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .bento-features p {
            font-size: 12px;
            color: rgba(255,255,255,0.5);
            margin: 0;
            padding-left: 14px;
            position: relative;
        }

        .bento-features p::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--accent-orange);
            opacity: 0.7;
        }

        /* Widget base */
        .bento-widget {
            border-top: 1px solid rgba(255,255,255,0.06);
            background: rgba(255,255,255,0.022);
            padding: 20px 24px 24px;
            flex: 1;
        }

        .bento-card--c .bento-widget {
            border-top: none;
            border-left: 1px solid rgba(255,255,255,0.06);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .w-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
        }

        .w-label {
            font-size: 11px;
            color: rgba(255,255,255,0.28);
            font-weight: 500;
            letter-spacing: 0.04em;
        }

        .w-status {
            font-size: 10px;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 20px;
            letter-spacing: 0.04em;
        }

        .w-status--on {
            background: rgba(249, 115, 22, 0.12);
            color: var(--accent-orange);
            border: 1px solid rgba(249, 115, 22, 0.2);
        }

        /* KPI widget */
        .w-big {
            font-size: 44px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.04em;
            line-height: 1;
            margin-bottom: 12px;
        }

        .w-unit {
            font-size: 18px;
            font-weight: 400;
            color: rgba(255,255,255,0.3);
        }

        .w-bar {
            height: 3px;
            background: rgba(255,255,255,0.07);
            border-radius: 2px;
            margin-bottom: 16px;
        }

        .w-fill {
            height: 100%;
            background: var(--accent-orange);
            border-radius: 2px;
        }

        .w-rows { display: flex; flex-direction: column; gap: 0; }

        .w-row {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            color: rgba(255,255,255,0.45);
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }

        .w-row:last-child { border-bottom: none; }
        .w-row.w-muted { color: rgba(255,255,255,0.2); }

        .w-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            flex-shrink: 0;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .w-dot--done { background: var(--accent-orange); border-color: var(--accent-orange); }
        .w-dot--active { background: rgba(249,115,22,0.35); border-color: var(--accent-orange); }

        /* Timeline widget */
        .wt-track {
            display: flex;
            align-items: center;
            margin: 4px 0 14px;
            gap: 0;
        }

        .wt-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }

        .wt-step span {
            font-size: 10px;
            color: rgba(255,255,255,0.2);
            letter-spacing: 0.03em;
        }

        .wt-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            border: 1.5px solid rgba(255,255,255,0.18);
        }

        .wt-done .wt-dot { background: var(--accent-orange); border-color: var(--accent-orange); }
        .wt-plateau .wt-dot { background: rgba(90,148,255,0.3); border-color: rgba(90,148,255,0.5); }

        .wt-line {
            flex: 1;
            height: 1.5px;
            background: rgba(255,255,255,0.08);
            margin-bottom: 18px;
        }

        .wt-line--done { background: rgba(249,115,22,0.4); }
        .wt-line--plateau { background: rgba(90,148,255,0.25); }

        .wt-badge {
            display: inline-block;
            font-size: 11px;
            padding: 4px 10px;
            background: rgba(90,148,255,0.08);
            border: 1px solid rgba(90,148,255,0.18);
            border-radius: 20px;
            color: rgba(120,170,255,0.7);
        }

        /* Roadmap widget */
        .wr-track {
            display: flex;
            align-items: flex-start;
            gap: 0;
            margin-top: 8px;
        }

        .wr-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .wr-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent-orange);
            border: 2px solid var(--accent-orange);
            flex-shrink: 0;
        }

        .wr-dot--empty {
            background: transparent;
            border-color: rgba(255,255,255,0.2);
        }

        .wr-active .wr-dot {
            width: 13px;
            height: 13px;
            background: var(--accent-orange);
            box-shadow: 0 0 0 4px rgba(249,115,22,0.15);
        }

        .wr-line {
            flex: 1;
            height: 1.5px;
            background: rgba(255,255,255,0.08);
            margin-top: 5px;
        }

        .wr-line.wr-done { background: rgba(249,115,22,0.4); }

        .wr-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
        }

        .wr-year {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255,255,255,0.6);
        }

        .wr-sub {
            font-size: 10px;
            color: rgba(255,255,255,0.25);
        }

        .wr-here {
            color: var(--accent-orange);
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .bento-section { padding: 64px 20px 80px; }
            .bento-grid { grid-template-columns: 1fr; }
            .bento-card--a, .bento-card--b, .bento-card--c { grid-column: 1; }
            .bento-card--c { flex-direction: column; }
            .bento-card--c .bento-body { max-width: 100%; }
            .bento-card--c .bento-widget { border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
        }

        /* SECTION 5: SOLUTION - CarryIT Architecture */
        .solution-section {
            padding: 64px var(--space-24) var(--space-96);
            background: linear-gradient(
                180deg,
                var(--color-background-base) 0%,
                rgba(238, 68, 8, 0.02) 50%,
                var(--color-background-base) 100%
            );
            position: relative;
            overflow: hidden;
        }

        .solution-section .section-overline {
            display: inline-block;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-text-tertiary);
            margin-bottom: var(--space-24);
            font-family: var(--font-primary);
        }

        .solution-section h2 {
            font-size: var(--text-h2);
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: var(--space-16);
            line-height: 1.3;
            max-width: 700px;
        }

        /* ── SOLUTION SECTION — Feature Blocks ── */

        .sol-header {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 96px;
            padding: 0 24px;
        }

        .sol-header h2 {
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 700;
            letter-spacing: -1.5px;
            line-height: 1.1;
            color: #fff;
            margin: 0 0 16px;
        }

        .sol-header .section-subtitle {
            font-size: 16px;
            color: rgba(255,255,255,0.45);
            margin: 0;
            line-height: 1.6;
        }

        .sol-subtitle-mobile {
            display: none;
        }

        .feature-blocks {
            display: flex;
            flex-direction: column;
            gap: 100px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .feature-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .feature-block:nth-child(even) .feature-text { order: 2; }
        .feature-block:nth-child(even) .feature-visual { order: 1; }

        .feature-step {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: #ff3b1f;
            margin-bottom: 20px;
        }

        .feature-title {
            font-size: clamp(22px, 2.5vw, 32px);
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.03em;
            line-height: 1.2;
            margin: 0 0 16px;
        }

        .feature-desc {
            font-size: 15px;
            color: rgba(255,255,255,0.45);
            line-height: 1.7;
            margin: 0;
        }

        .feature-desc-mobile {
            display: none;
        }

        /* Skeleton card base */
        .sk-card {
            background: #111113;
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 20px;
            padding: 32px;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 14px;
        }

        .sk-card-center { align-items: center; text-align: center; }

        /* Skeleton bar */
        .sk-bar {
            height: 10px;
            background: #1e1e22;
            border-radius: 5px;
            flex-shrink: 0;
        }

        .sk-bar.sk-accent { background: rgba(255,59,31,0.25); }

        /* Card 1 — Ambition */
        .sk-field-label {
            height: 8px;
            width: 80px;
            background: #1e1e22;
            border-radius: 4px;
        }

        .sk-field {
            height: 40px;
            background: #181818;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 10px;
        }

        .sk-chips {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .sk-chip {
            height: 26px;
            width: 70px;
            background: #1a1a1e;
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 999px;
        }

        .sk-chip.sk-short { width: 50px; }
        .sk-chip.sk-long { width: 90px; }

        /* Card 2 — SMART */
        .sk-smart-row {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .sk-letter {
            font-size: 13px;
            font-weight: 700;
            color: rgba(255,255,255,0.2);
            width: 16px;
            flex-shrink: 0;
        }

        /* Card 3 — KPI */
        .sk-kpi-unit {
            font-size: 13px;
            font-weight: 600;
            color: #ff3b1f;
            letter-spacing: 0.05em;
        }

        .sk-kpi-value {
            font-size: 56px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -3px;
            line-height: 1;
        }

        .sk-kpi-sub {
            height: 8px;
            width: 120px;
            background: #1e1e22;
            border-radius: 4px;
            margin: 4px auto 0;
        }

        /* Card 4 — Jalons (horizontal timeline) */
        .sk-timeline {
            display: flex;
            align-items: flex-start;
            gap: 0;
            padding: 16px 0;
        }

        .sk-milestone {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .sk-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #2a2a2e;
            border: 2px solid #333;
            flex-shrink: 0;
        }

        .sk-dot.sk-dot-done {
            background: #ff3b1f;
            border-color: #ff3b1f;
        }

        .sk-ml-lbl {
            font-size: 9px;
            font-weight: 500;
            color: rgba(255,255,255,0.3);
            letter-spacing: 0.04em;
            white-space: nowrap;
        }

        .sk-tl-line {
            flex: 1;
            height: 2px;
            background: #222226;
            margin-top: 6px;
        }

        .sk-tl-line.sk-tl-done { background: rgba(255,59,31,0.4); }

        /* Card 5 — Exécution */
        .sk-task {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .sk-check {
            width: 16px;
            height: 16px;
            border-radius: 4px;
            background: rgba(255,59,31,0.2);
            flex-shrink: 0;
            position: relative;
        }

        .sk-check::after {
            content: '';
            position: absolute;
            left: 3px;
            top: 1px;
            width: 8px;
            height: 5px;
            border-left: 2px solid #ff3b1f;
            border-bottom: 2px solid #ff3b1f;
            transform: rotate(-45deg);
        }

        .sk-check.sk-check-empty {
            background: #1e1e22;
            border: 1px solid #2a2a2e;
        }

        .sk-check.sk-check-empty::after { display: none; }
        .sk-task-done .sk-bar { background: rgba(255,59,31,0.2); }

        /* Card 6 — Dashboard */
        .sk-card-dashboard {
            min-height: 320px;
            gap: 16px;
        }

        /* 2-col grid */
        .sk-db-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            flex: 1;
        }

        /* SMART card (gauche) */
        .sk-db-smart-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 12px;
            padding: 14px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .sk-db-proj-name {
            height: 14px;
            width: 70%;
            background: rgba(255,255,255,0.12);
            border-radius: 4px;
        }

        .sk-db-date-badge {
            height: 18px;
            width: 110px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 999px;
        }

        .sk-db-smart-rows {
            display: flex;
            flex-direction: column;
            gap: 7px;
        }

        .sk-db-srow {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sk-db-sl {
            font-size: 9px;
            font-weight: 700;
            color: rgba(255,255,255,0.25);
            width: 10px;
            flex-shrink: 0;
        }

        .sk-db-sbar {
            height: 6px;
            background: rgba(255,255,255,0.07);
            border-radius: 3px;
        }

        .sk-db-sbar-accent { background: rgba(255,59,31,0.2); }

        /* KPI card (droite) */
        .sk-db-kpi-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 12px;
            padding: 14px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .sk-db-kpi-label {
            height: 8px;
            width: 55%;
            background: rgba(255,255,255,0.07);
            border-radius: 3px;
        }

        .sk-db-dotchart {
            flex: 1;
            min-height: 64px;
            display: flex;
        }

        .sk-db-linechart {
            width: 100%;
            height: 100%;
            min-height: 64px;
            overflow: visible;
        }

        /* Séparateur */
        .sk-db-sep {
            height: 1px;
            background: rgba(255,255,255,0.06);
        }

        /* To-do list (bas) */
        .sk-db-tasks {
            display: flex;
            flex-direction: column;
            gap: 9px;
        }

        .sk-db-task {
            display: flex;
            align-items: center;
            gap: 9px;
        }

        .sk-db-check {
            width: 10px;
            height: 10px;
            border-radius: 2px;
            background: rgba(255,59,31,0.25);
            flex-shrink: 0;
            position: relative;
        }

        .sk-db-check::after {
            content: '';
            position: absolute;
            inset: 2px;
            background: #ff3b1f;
            border-radius: 1px;
        }

        .sk-db-check-empty {
            background: transparent;
            border: 1.5px solid rgba(255,255,255,0.15);
        }

        .sk-db-check-empty::after { display: none; }

        .sk-db-taskbar {
            height: 6px;
            background: #1e1e22;
            border-radius: 3px;
        }

        .sk-db-task-done .sk-db-taskbar { background: rgba(255,59,31,0.15); }

        /* Responsive */
        @media (max-width: 900px) {
            .feature-block {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .feature-block:nth-child(even) .feature-text { order: 1; }
            .feature-block:nth-child(even) .feature-visual { order: 2; }
            .feature-blocks { gap: 64px; padding: 0 20px; }
        }

/* ── EXAMPLES SECTION ───────────────────────────────────────────── */
/* ─── CINEMA SECTION — Quote → Dashboard ─── */
.cinema-section {
    height: 90vh;
    background: #080809;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
}


/* Header */
.cin-header {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.cin-overline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #EE4408;
    margin: 0;
    font-family: var(--font-primary);
}

.cin-subtitle {
    font-size: clamp(16px, 1.6vw, 20px);
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.cin-dots {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.cin-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    transition: background 0.4s ease, transform 0.4s ease;
}

.cin-dot.active {
    background: rgba(238, 68, 8, 0.8);
    transform: scale(1.3);
}

/* Quote layer */
.cin-quote-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    filter: blur(0px);
    transition: opacity 0.8s ease, filter 0.8s ease;
    pointer-events: none;
}

.cin-quote-wrap.q-in {
    opacity: 1;
    filter: blur(0px);
}

.cin-quote-wrap.q-blur {
    opacity: 0;
    filter: blur(14px);
}

.cin-quote {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(26px, 3.4vw, 44px);
    font-style: normal;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.70);
    letter-spacing: -0.03em;
    text-align: center;
    max-width: 640px;
    line-height: 1.3;
    margin: 0 32px;
}

/* Dashboard layer */
.cin-dashboard-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 55px;
    opacity: 0;
    filter: blur(18px);
    transform: scale(0.93) translateY(28px);
    transition: opacity 2.4s cubic-bezier(0.16,1,0.3,1) 0.1s,
                filter 2s cubic-bezier(0.16,1,0.3,1),
                transform 2.2s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
}

.cin-dashboard-wrap.d-in {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1) translateY(0);
}

.cin-dashboard-wrap.d-in .cin-dashboard {
    pointer-events: auto;
}

/* Shine overlay + default tilt */
.cin-dashboard {
    position: relative;
    transform: perspective(900px) rotateX(-3deg) rotateY(-3deg);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.cin-dashboard::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at var(--shine-x, 50%) var(--shine-y, 50%),
        rgba(255, 255, 255, 0.07) 0%,
        rgba(255, 255, 255, 0.03) 30%,
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 10;
}

.cin-dashboard.is-hovered::after {
    opacity: 1;
}


/* Scroll hint — bottom of cinema section */
.cin-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 20;
    pointer-events: none;
    animation: cin-hint-bob 2.4s ease-in-out infinite;
}

.cin-scroll-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-primary);
    text-transform: none;
}

.cin-scroll-hint svg {
    color: rgba(255, 255, 255, 0.40);
    width: 18px;
    height: 18px;
}

@keyframes cin-hint-bob {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50%       { transform: translateY(5px); opacity: 1; }
}

.cin-dashboard-wrap.d-out {
    opacity: 0;
    filter: blur(4px);
    transform: scale(1.02);
    transition: opacity 0.7s ease, filter 0.7s ease, transform 0.7s ease;
}

.cin-dashboard {
    width: 100%;
    max-width: 900px;
    min-height: min(380px, 46vh) !important;
    padding: 22px !important;
    gap: 24px !important;
    background: linear-gradient(
        160deg,
        rgba(32, 32, 36, 0.97) 0%,
        rgba(20, 20, 23, 0.99) 100%
    ) !important;
    border: 1px solid rgba(238,68,8,0.14) !important;
    border-top-color: rgba(238,68,8,0.40) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 -20px 60px  rgba(210, 65, 8, 0.20),
        0 -60px 130px rgba(190, 55, 8, 0.12),
        0 -100px 220px rgba(170, 45, 8, 0.07),
        0 -140px 320px rgba(150, 40, 8, 0.04),
        0 32px 80px rgba(0,0,0,0.6) !important;
}

/* Boost internal card sizes for epic reveal */
.cin-dashboard .sk-db-grid {
    flex: 1;
    gap: 20px;
    align-items: stretch;
}

.cin-dashboard .sk-db-smart-card,
.cin-dashboard .sk-db-kpi-card {
    padding: 18px;
    border-radius: 14px;
    background: linear-gradient(
        150deg,
        rgba(255,255,255,0.07) 0%,
        rgba(255,255,255,0.025) 100%
    ) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    border-top-color: rgba(255,255,255,0.18) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.09),
        0 6px 20px rgba(0,0,0,0.35) !important;
}

.cin-dashboard .sk-db-smart-card {
    padding-top: 20px;
}

.cin-dashboard .sk-db-proj-name {
    height: 18px;
    width: 65%;
    background: rgba(255,255,255,0.14);
}

.cin-dashboard .sk-db-date-badge {
    height: 22px;
    width: 130px;
}

.cin-dashboard .sk-db-smart-rows {
    gap: 14px;
}

.cin-dashboard .sk-db-sbar {
    height: 8px;
}

.cin-dashboard .sk-db-sep {
    margin: 4px 0;
}

.cin-dashboard .sk-db-tasks {
    gap: 14px;
}

.cin-dashboard .sk-db-taskbar {
    height: 8px;
}

.cin-dashboard .sk-db-check {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: rgba(238, 68, 8, 0.18);
    border: 1.5px solid rgba(238, 68, 8, 0.5);
}

.cin-dashboard .sk-db-check-empty {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.18);
}

.cin-dashboard .sk-db-check-empty::after {
    display: none;
}

/* ─── Dashboard texte réel ─── */
.cin-db-proj {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    font-family: var(--font-primary);
    min-height: 16px;
}

.cin-db-date {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    padding: 3px 11px;
    font-family: var(--font-primary);
    align-self: flex-start;
}

.cin-db-smart-text {
    font-size: 13px;
    color: rgba(255,255,255,0.70);
    font-family: var(--font-primary);
    line-height: 1.4;
    flex: 1;
}

.cin-smart-accent {
    color: rgba(238, 68, 8, 0.75);
    font-weight: 500;
}

/* Date row neutre (ligne T) */
.cin-date-text {
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    font-family: var(--font-primary);
    font-size: 13px;
}

.cin-sl-accent {
    color: rgba(238, 68, 8, 0.75) !important;
}

/* Override sk-db-srow pour texte */
.cin-dashboard .sk-db-srow {
    align-items: center;
    padding: 6px 0;
    gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cin-dashboard .sk-db-srow:last-child {
    border-bottom: none;
}

/* Header interne de la carte SMART : nom du projet + date badge */
.cin-smart-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 12px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cin-smart-proj-name {
    font-size: 16px;
    font-weight: 800;
    color: rgba(255,255,255,0.90);
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
    line-height: 1;
    flex: 1;
}

.cin-smart-date-badge {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255,255,255,0.38);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 3px 10px;
    font-family: var(--font-primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.cin-smart-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.cin-smart-sublabel {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    font-family: var(--font-primary);
    line-height: 1;
}

.cin-dashboard .sk-db-sl {
    font-size: 13px;
    font-weight: 900;
    width: 24px;
    flex-shrink: 0;
    text-align: center;
    color: rgba(255,255,255,0.80);
    letter-spacing: 0;
}

/* KPI texte */
.cin-db-kpi-unit {
    font-size: 16px;
    font-weight: 700;
    color: rgba(238, 68, 8, 0.95);
    letter-spacing: -0.01em;
    font-family: var(--font-primary);
    line-height: 1;
}

.cin-db-kpi-desc {
    font-size: 10px;
    color: rgba(255,255,255,0.28);
    font-family: var(--font-primary);
    margin-top: 4px;
    margin-bottom: 6px;
}

/* KPI recall sous la valeur */
.cin-kpi-recall {
    font-size: 9px;
    color: rgba(255,255,255,0.22);
    font-family: var(--font-primary);
    margin-top: 5px;
    line-height: 1.35;
}

/* KPI stats block (nouveau) */
.cin-stats-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cin-stats-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-primary);
}

.cin-progress-bar-wrap {
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 4px;
}

.cin-progress-bar {
    height: 100%;
    background: rgba(238,68,8,0.7);
    border-radius: 999px;
    transition: width 0.6s ease;
}

.cin-progress-legend {
    font-size: 9px;
    color: rgba(255,255,255,0.2);
    font-family: var(--font-primary);
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

/* KPI main description */
.cin-kpi-main {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    font-family: var(--font-primary);
    line-height: 1.4;
    margin-top: 4px;
}

/* Task labels */
.cin-db-task-label {
    font-size: 12px;
    color: rgba(255,255,255,0.62);
    font-family: var(--font-primary);
    line-height: 1;
}

.cin-db-task-label.done {
    color: rgba(255,255,255,0.18);
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,0.10);
}

/* ── SKELETON → FILL ANIMATION ─────────────────────────────────── */
.cin-sk-fill-wrap {
    position: relative;
    flex: 1;
    height: 14px;
    display: flex;
    align-items: center;
}

.cin-sk-bar {
    transition: opacity 0.45s ease;
    flex-shrink: 0;
}

.cin-real-text {
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.52);
    font-family: var(--font-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
    transition: opacity 0.5s ease 0.1s;
}

.cin-real-accent {
    color: rgba(238, 68, 8, 0.8);
    font-weight: 500;
}

.cin-real-proj {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

/* Date badge : wrapper dimensions + pilule quand remplie */
.cin-wrap-date {
    height: 18px;
    align-self: flex-start;
    width: 110px;
}

.cin-real-date {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 0 10px;
    height: 18px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    right: auto;
    width: auto;
}

/* KPI label */
.cin-real-kpi {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    right: 0;
}

/* Quand is-filled : barres disparaissent, texte apparaît */
.cin-dashboard.is-filled .cin-sk-bar {
    opacity: 0;
}

.cin-dashboard.is-filled .cin-real-text {
    opacity: 1;
}

/* ── END SKELETON → FILL ─────────────────────────────────────── */

/* Epic title + inner column wrapper */
.cin-db-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    max-width: 900px;
}

.cin-db-header-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cin-db-title-label {
    font-size: clamp(11px, 1.2vw, 14px);
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(238, 68, 8, 0.55);
    text-align: center;
    font-family: var(--font-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.cin-db-epic-title {
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #FFFDF6;
    font-family: var(--font-primary);
    text-align: center;
    line-height: 1;
    margin-bottom: 8px;
}

/* Section labels inside dashboard */
.cin-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(238, 68, 8, 0.90);
    margin: 0 0 12px 0;
    font-family: var(--font-primary);
}

/* Bottom grid : Jalons + Prochaines Actions */
.cin-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Jalons section */
.cin-jalons-section {
    display: flex;
    flex-direction: column;
}

/* Prochaines Actions */
.cin-actions-section {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255,255,255,0.06);
    padding-left: 24px;
}

.cin-actions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cin-action-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.cin-action-dot {
    font-size: 10px;
    color: rgba(238, 68, 8, 0.7);
    font-family: var(--font-primary);
    flex-shrink: 0;
    line-height: 1;
}

/* Tasks card — bloc indépendant en bas du dashboard */
.cin-tasks-card {
    margin-top: 4px;
    padding: 16px 20px;
    background: linear-gradient(
        150deg,
        rgba(255,255,255,0.055) 0%,
        rgba(255,255,255,0.018) 100%
    );
    border: 1px solid rgba(255,255,255,0.09);
    border-top-color: rgba(255,255,255,0.15);
    border-radius: 12px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.07),
        0 4px 14px rgba(0,0,0,0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cin-action-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(238, 68, 8, 0.90);
    margin-bottom: 12px;
    font-family: var(--font-primary);
}

/* Milestone timeline */
.cin-jalons-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

.cin-milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
}

/* Connecteur entre milestones */
.cin-milestone:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 9px;
    left: calc(50% + 9px);
    right: calc(-50% + 9px);
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.cin-milestone.done:not(:last-child)::after {
    background: rgba(238,68,8,0.35);
}

.cin-milestone-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.15);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 700;
    color: rgba(255,255,255,0.25);
    font-family: var(--font-primary);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.cin-milestone.done .cin-milestone-dot {
    background: rgba(238,68,8,0.15);
    border-color: rgba(238,68,8,0.7);
    color: rgba(238,68,8,0.9);
}

.cin-milestone-label {
    font-size: 10px;
    font-family: var(--font-primary);
    color: rgba(255,255,255,0.3);
    text-align: center;
    line-height: 1.2;
    max-width: 90px;
}

.cin-milestone.done .cin-milestone-label {
    color: rgba(255,255,255,0.65);
}

/* LEGACY — kept for reference (unused) */
.examples-section {
    padding: 80px 24px;
    background: linear-gradient(
        180deg,
        #080809 0%,
        rgba(238, 68, 8, 0.025) 50%,
        #080809 100%
    );
    border-top: 1px solid rgba(255,255,255,0.07);
}

.examples-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.examples-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
    margin: 12px 0 10px;
}

.examples-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 52px;
}

.examples-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

/* ─── TRANSFORM CARD ─── */
.ex-transform-card {
    position: relative;
    background: #111113;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    overflow: hidden;
    min-height: 260px;
    transition: border-color 0.3s ease;
}

.ex-transform-card:hover {
    border-color: rgba(238, 68, 8, 0.18);
}

.ex-card-num {
    position: absolute;
    top: 18px;
    left: 24px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.13);
    z-index: 3;
    font-family: var(--font-primary);
}

/* Both states overlay each other */
.ex-state {
    position: absolute;
    inset: 0;
    padding: 42px 32px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity 0.35s ease, filter 0.35s ease;
}

/* ─── QUOTE STATE ─── */
.ex-state-quote {
    align-items: center;
    text-align: center;
    gap: 20px;
    opacity: 1;
    filter: blur(0px);
}

.ex-big-quote {
    font-size: clamp(17px, 2.2vw, 23px);
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.3);
    line-height: 1.45;
    letter-spacing: -0.02em;
    margin: 0;
    filter: blur(2.5px);
}

.ex-vague-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(160, 90, 10, 0.1);
    border: 1px solid rgba(160, 90, 10, 0.2);
    color: rgba(200, 130, 40, 0.55);
}

/* ─── GOAL CARD STATE ─── */
.ex-state-goal {
    opacity: 0;
    filter: blur(10px);
    justify-content: flex-start;
    gap: 0;
    padding-top: 40px;
}

.ex-gc-smart {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}

.ex-gc-overline {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(238, 68, 8, 0.8);
}

.ex-gc-obj {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0;
}

.ex-gc-sep {
    height: 1px;
    background: rgba(255,255,255,0.05);
    flex-shrink: 0;
    margin-bottom: 14px;
}

.ex-gc-kpi-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.ex-gc-row-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
    min-width: 42px;
}

.ex-gc-kpi-unit {
    font-size: 13px;
    font-weight: 700;
    color: rgba(238, 68, 8, 0.9);
    letter-spacing: 0.04em;
}

.ex-gc-kpi-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.32);
}

/* Timeline */
.ex-gc-tl-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.ex-gc-tl-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.18);
}

.ex-gc-tl {
    display: flex;
    align-items: flex-start;
}

.ex-gc-ms {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.ex-gc-ms-lbl {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.28);
    white-space: nowrap;
    font-weight: 500;
    line-height: 1;
}

.ex-gc-ms.target .ex-gc-ms-lbl {
    background: linear-gradient(135deg, #F07020 0%, #FFA040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.ex-gc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1e1e22;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.ex-gc-dot.done {
    background: rgba(238, 68, 8, 0.3);
    border-color: rgba(238, 68, 8, 0.45);
}

.ex-gc-dot.target-dot {
    background: linear-gradient(135deg, #F07020, #FFA040);
    border-color: transparent;
    box-shadow: 0 0 8px rgba(238, 68, 8, 0.4);
}

.ex-gc-line {
    flex: 1;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 4px;
}

.ex-structured-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(238, 68, 8, 0.08);
    border: 1px solid rgba(238, 68, 8, 0.25);
    color: rgba(238, 100, 50, 0.85);
}

/* ─── TRANSFORM TOGGLE ─── */
.ex-transform-card.is-transformed .ex-state-quote {
    opacity: 0;
    filter: blur(14px);
    pointer-events: none;
}

.ex-transform-card.is-transformed .ex-state-goal {
    opacity: 1;
    filter: blur(0px);
}

@media (max-width: 768px) {
    .ex-state { padding: 40px 20px 20px; }
    .ex-big-quote { font-size: 17px; }
    .ex-gc-obj { font-size: 13px; }
    .ex-gc-ms-lbl { font-size: 8px; }
}

        /* ── OLD pipeline compact (unused) ── */
        .pipeline-track {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin-bottom: 56px;
            flex-wrap: nowrap;
        }

        .pipeline-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .pnode-num {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #ff3b1f;
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pnode-label {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            white-space: nowrap;
        }

        .pnode-desc {
            font-size: 11px;
            color: rgba(255,255,255,0.3);
            text-align: center;
            white-space: nowrap;
            line-height: 1.3;
        }

        .pipeline-connector {
            flex: 1;
            height: 1px;
            background: rgba(255,255,255,0.1);
            min-width: 24px;
            max-width: 80px;
            margin-bottom: 24px;
        }

        /* Exemple intégré */
        .solution-example {
            display: flex;
            align-items: flex-start;
            gap: 24px;
            background: #111113;
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px;
            padding: 32px;
            max-width: 760px;
            margin: 0 auto;
        }

        .ex-before, .ex-after {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .ex-label {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.35);
        }

        .ex-quote {
            font-size: 17px;
            font-weight: 500;
            color: rgba(255,255,255,0.5);
            font-style: italic;
            margin: 0;
            line-height: 1.4;
        }

        .ex-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 999px;
            align-self: flex-start;
        }

        .ex-vague {
            background: rgba(255,255,255,0.05);
            color: rgba(255,255,255,0.35);
            border: 1px solid rgba(255,255,255,0.08);
        }

        .ex-structured {
            background: rgba(255,59,31,0.12);
            color: #ff3b1f;
            border: 1px solid rgba(255,59,31,0.25);
        }

        .ex-arrow {
            font-size: 20px;
            color: rgba(255,255,255,0.2);
            padding-top: 28px;
            flex-shrink: 0;
        }

        .ex-rows {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .ex-row {
            display: flex;
            gap: 10px;
            align-items: baseline;
        }

        .ex-key {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #ff3b1f;
            flex-shrink: 0;
            min-width: 60px;
        }

        .ex-val {
            font-size: 14px;
            color: rgba(255,255,255,0.75);
            line-height: 1.4;
        }

        /* Responsive: Solution Section */
        @media (max-width: 768px) {
            .solution-section {
                padding: var(--space-64) var(--space-24);
            }

            .solution-section h2 {
                font-size: 28px;
            }

            .pipeline-steps {
                gap: var(--space-48);
            }

            .pipeline-step h3 {
                font-size: 22px;
            }

            .step-number {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .examples {
                gap: var(--space-8);
            }

            .kpi-examples {
                grid-template-columns: 1fr;
            }

            .smart-list {
                gap: var(--space-8);
            }
        }

        /* SECTION 6: DEMO - Concrete Case Studies */
        .demo-section {
            padding: var(--space-96) var(--space-24);
            background: linear-gradient(
                180deg,
                var(--color-background-base) 0%,
                rgba(238, 68, 8, 0.02) 50%,
                var(--color-background-base) 100%
            );
            position: relative;
            overflow: hidden;
        }

        .demo-section .section-overline {
            display: inline-block;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-text-tertiary);
            margin-bottom: var(--space-24);
            font-family: var(--font-primary);
        }

        .demo-section h2 {
            font-size: var(--text-h2);
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: var(--space-16);
            line-height: 1.3;
            max-width: 700px;
        }

        .demo-section .section-subtitle {
            margin-bottom: var(--space-64);
        }

        /* Demo Cases Grid */
        .demo-cases {
            display: flex;
            flex-direction: column;
            gap: var(--space-64);
            max-width: 1100px;
            margin: 0 auto;
        }

        .demo-case {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: var(--space-32);
            align-items: start;
            padding: var(--space-32);
            background: rgba(28, 28, 30, 0.3);
            border: 1px solid var(--color-border-subtle);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .demo-case:hover {
            background: rgba(44, 44, 46, 0.4);
            border-color: var(--color-border-default);
        }

        .demo-before,
        .demo-after {
            position: relative;
        }

        .demo-before h3,
        .demo-after h3 {
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--color-text-tertiary);
            margin-bottom: var(--space-16);
            font-family: var(--font-primary);
        }

        .demo-ambition {
            font-size: 16px;
            font-weight: 500;
            color: var(--color-text-primary);
            margin-bottom: var(--space-16);
            font-style: italic;
            font-family: var(--font-primary);
        }

        .demo-status {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 6px 12px;
            border-radius: 4px;
            margin-top: var(--space-16);
            font-family: var(--font-primary);
        }

        .status-vague {
            background: rgba(238, 68, 8, 0.15);
            color: var(--color-accent-action);
        }

        .status-structured {
            background: rgba(52, 199, 89, 0.15);
            color: var(--color-success);
        }

        .demo-arrow {
            font-size: 24px;
            font-weight: 700;
            color: var(--color-accent-action);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100px;
            font-family: var(--font-primary);
        }

        .demo-plan {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: var(--space-16);
        }

        .demo-plan li {
            font-size: 14px;
            color: var(--color-text-secondary);
            line-height: 1.6;
            font-family: var(--font-primary);
            padding-left: var(--space-24);
            position: relative;
        }

        .demo-plan li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--color-success);
            font-weight: bold;
        }

        .demo-plan strong {
            color: var(--color-text-primary);
        }

        .demo-plan ul {
            list-style: none;
            padding: 0;
            margin: var(--space-8) 0 0 0;
            display: flex;
            flex-direction: column;
            gap: var(--space-6);
        }

        .demo-plan ul li {
            padding-left: var(--space-20);
            font-size: 13px;
            color: var(--color-text-tertiary);
        }

        .demo-plan ul li::before {
            content: '→';
        }

        /* Responsive: Demo Section */
        @media (max-width: 968px) {
            .demo-case {
                grid-template-columns: 1fr;
                gap: var(--space-24);
            }

            .demo-arrow {
                transform: rotate(90deg);
                min-height: auto;
                padding: var(--space-16) 0;
            }
        }

        @media (max-width: 768px) {
            .demo-section {
                padding: var(--space-64) var(--space-24);
            }

            .demo-section h2 {
                font-size: 28px;
            }

            .demo-cases {
                gap: var(--space-32);
            }

            .demo-case {
                padding: var(--space-20);
                gap: var(--space-16);
            }

            .demo-plan li {
                font-size: 13px;
            }
        }

        /* SECTION 7: DIFFERENTIATION - Why Carry IT */
        .differentiation-section {
            padding: var(--space-96) var(--space-24);
            background: linear-gradient(
                180deg,
                var(--color-background-base) 0%,
                rgba(238, 68, 8, 0.02) 50%,
                var(--color-background-base) 100%
            );
            position: relative;
            overflow: hidden;
        }

        .differentiation-section .section-overline {
            display: inline-block;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-accent-action);
            margin-bottom: var(--space-24);
            font-family: var(--font-primary);
        }

        .differentiation-section h2 {
            font-size: var(--text-h2);
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: var(--space-16);
            line-height: 1.3;
        }

        .differentiation-section .section-subtitle {
            margin-bottom: var(--space-64);
        }

        /* Not List */
        .not-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--space-32);
            margin-bottom: var(--space-96);
            max-width: 1200px;
        }

        .not-item {
            background: rgba(28, 28, 30, 0.4);
            border: 1px solid rgba(238, 68, 8, 0.2);
            border-radius: 12px;
            padding: var(--space-32);
            transition: all 0.3s ease;
        }

        .not-item:hover {
            background: rgba(44, 44, 46, 0.5);
            border-color: var(--color-accent-action);
            transform: translateY(-2px);
        }

        .not-item h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--color-text-primary);
            margin-bottom: var(--space-12);
            font-family: var(--font-primary);
        }

        .not-item p {
            font-size: 14px;
            color: var(--color-text-secondary);
            line-height: 1.6;
            font-family: var(--font-primary);
            margin: 0 0 var(--space-12) 0;
        }

        .not-why {
            font-size: 13px !important;
            color: var(--color-text-tertiary) !important;
            margin-top: var(--space-12) !important;
            padding-top: var(--space-12);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Is Section */
        .is-section {
            margin-bottom: var(--space-96);
        }

        .is-section h2 {
            font-size: 28px;
            margin-bottom: var(--space-48);
            margin-top: 0;
        }

        .is-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-32);
            max-width: 1200px;
        }

        .is-item {
            background: linear-gradient(
                135deg,
                rgba(238, 68, 8, 0.08) 0%,
                rgba(238, 68, 8, 0.03) 100%
            );
            border: 1px solid rgba(238, 68, 8, 0.2);
            border-radius: 12px;
            padding: var(--space-32);
            transition: all 0.3s ease;
        }

        .is-item:hover {
            background: linear-gradient(
                135deg,
                rgba(238, 68, 8, 0.12) 0%,
                rgba(238, 68, 8, 0.05) 100%
            );
            border-color: var(--color-accent-action);
            transform: translateY(-2px);
        }

        .is-item h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--color-text-primary);
            margin-bottom: var(--space-12);
            font-family: var(--font-primary);
        }

        .is-item p {
            font-size: 14px;
            color: var(--color-text-secondary);
            line-height: 1.6;
            font-family: var(--font-primary);
            margin: 0 0 var(--space-8) 0;
        }

        .is-detail {
            font-size: 13px !important;
            color: var(--color-text-tertiary) !important;
            margin-top: var(--space-8) !important;
        }

        /* Comparison Table */
        .comparison-table {
            background: rgba(28, 28, 30, 0.3);
            border: 1px solid var(--color-border-subtle);
            border-radius: 12px;
            padding: var(--space-32);
            max-width: 1100px;
            overflow-x: auto;
        }

        .comparison-table h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--color-text-primary);
            margin-bottom: var(--space-24);
            font-family: var(--font-primary);
        }

        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .comparison-table thead {
            border-bottom: 2px solid var(--color-border-default);
        }

        .comparison-table th {
            text-align: left;
            padding: var(--space-16);
            font-size: 14px;
            font-weight: 600;
            color: var(--color-text-primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-family: var(--font-primary);
        }

        .comparison-table td {
            padding: var(--space-16);
            font-size: 13px;
            color: var(--color-text-secondary);
            line-height: 1.6;
            border-bottom: 1px solid var(--color-border-subtle);
            font-family: var(--font-primary);
        }

        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }

        /* Responsive: Differentiation Section */
        @media (max-width: 768px) {
            .differentiation-section {
                padding: var(--space-64) var(--space-24);
            }

            .differentiation-section h2 {
                font-size: 28px;
            }

            .not-list {
                grid-template-columns: 1fr;
                gap: var(--space-24);
                margin-bottom: var(--space-48);
            }

            .is-grid {
                grid-template-columns: 1fr;
                gap: var(--space-24);
            }

            .comparison-table {
                padding: var(--space-20);
                overflow-x: auto;
            }

            .comparison-table table {
                min-width: 100%;
            }

            .comparison-table th,
            .comparison-table td {
                padding: var(--space-12);
                font-size: 12px;
            }
        }

        /* SECTION 8: PHILOSOPHY - Mentalité & Identity */
        .philosophy-section {
            padding: var(--space-96) var(--space-24);
            background: linear-gradient(
                180deg,
                var(--color-background-base) 0%,
                rgba(238, 68, 8, 0.02) 50%,
                var(--color-background-base) 100%
            );
            position: relative;
            overflow: hidden;
        }

        .philosophy-section .section-overline {
            display: inline-block;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-text-tertiary);
            margin-bottom: var(--space-24);
            font-family: var(--font-primary);
        }

        .philosophy-section h2 {
            font-size: var(--text-h2);
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: var(--space-16);
            line-height: 1.3;
            max-width: 700px;
        }

        .philosophy-section .section-subtitle {
            margin-bottom: var(--space-64);
        }

        /* Philosophy Principles */
        .philosophy-principles {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--space-48);
            max-width: 1200px;
            margin-bottom: var(--space-96);
        }

        .principle {
            position: relative;
            padding-left: var(--space-32);
        }

        .principle::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 40px;
            background: var(--color-accent-action);
            border-radius: 2px;
        }

        .principle h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: var(--space-12);
            font-family: var(--font-primary);
        }

        .principle p {
            font-size: 15px;
            color: var(--color-text-secondary);
            line-height: 1.7;
            font-family: var(--font-primary);
            margin: 0 0 var(--space-12) 0;
        }

        .principle-detail {
            font-size: 14px !important;
            color: var(--color-text-tertiary) !important;
        }

        /* Philosophy Quote */
        .philosophy-quote {
            background: linear-gradient(
                135deg,
                rgba(238, 68, 8, 0.08) 0%,
                rgba(238, 68, 8, 0.03) 100%
            );
            border: 1px solid rgba(238, 68, 8, 0.2);
            border-radius: 12px;
            padding: var(--space-48);
            margin-bottom: var(--space-64);
            max-width: 900px;
            text-align: center;
        }

        .philosophy-quote blockquote {
            font-size: 16px;
            color: var(--color-text-secondary);
            line-height: 1.9;
            font-style: italic;
            margin: 0;
            font-family: var(--font-primary);
        }

        /* Philosophy Rule */
        .philosophy-rule {
            background: rgba(28, 28, 30, 0.4);
            border: 2px solid var(--color-accent-action);
            border-radius: 12px;
            padding: var(--space-48);
            max-width: 900px;
            text-align: center;
        }

        .rule-text {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-text-tertiary);
            display: block;
            margin-bottom: var(--space-24);
            font-family: var(--font-primary);
        }

        .rule-statement {
            font-size: 20px;
            font-weight: 600;
            color: var(--color-text-primary);
            line-height: 1.8;
            font-family: var(--font-primary);
        }

        /* Responsive: Philosophy Section */
        @media (max-width: 768px) {
            .philosophy-section {
                padding: var(--space-64) var(--space-24);
            }

            .philosophy-section h2 {
                font-size: 28px;
            }

            .philosophy-principles {
                grid-template-columns: 1fr;
                gap: var(--space-32);
                margin-bottom: var(--space-48);
            }

            .philosophy-quote {
                padding: var(--space-32);
                margin-bottom: var(--space-48);
            }

            .philosophy-quote blockquote {
                font-size: 14px;
            }

            .philosophy-rule {
                padding: var(--space-32);
            }

            .rule-statement {
                font-size: 16px;
            }
        }

        /* SECTION 9: PROOF - Credibility & Validation */
        .proof-section {
            padding: var(--space-96) var(--space-24);
            background: linear-gradient(
                180deg,
                var(--color-background-base) 0%,
                rgba(238, 68, 8, 0.02) 50%,
                var(--color-background-base) 100%
            );
            position: relative;
            overflow: hidden;
        }

        .proof-section .section-overline {
            display: inline-block;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-text-tertiary);
            margin-bottom: var(--space-24);
            font-family: var(--font-primary);
        }

        .proof-section h2 {
            font-size: var(--text-h2);
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: var(--space-16);
            line-height: 1.3;
            max-width: 700px;
        }

        .proof-section .section-subtitle {
            margin-bottom: var(--space-64);
        }

        /* Methods Grid */
        .methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-32);
            margin-bottom: var(--space-96);
            max-width: 1200px;
        }

        .method-card {
            background: rgba(28, 28, 30, 0.3);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--color-border-subtle);
            border-radius: 12px;
            padding: var(--space-32);
            transition: all 0.3s ease;
        }

        .method-card:hover {
            background: rgba(44, 44, 46, 0.4);
            border-color: var(--color-border-default);
            transform: translateY(-2px);
        }

        .method-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: var(--space-12);
            font-family: var(--font-primary);
        }

        .method-origin {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--color-accent-action);
            margin-bottom: var(--space-12) !important;
        }

        .method-card p {
            font-size: 14px;
            color: var(--color-text-secondary);
            line-height: 1.6;
            font-family: var(--font-primary);
            margin: 0;
        }

        /* Proof Statement */
        .proof-statement {
            text-align: center;
            max-width: 900px;
            margin: 0 auto var(--space-96);
        }

        .proof-statement p {
            font-size: 16px;
            color: var(--color-text-secondary);
            line-height: 1.8;
            font-family: var(--font-primary);
            margin-bottom: var(--space-16);
        }

        .statement-emphasis {
            font-size: 18px !important;
            font-weight: 600 !important;
            color: var(--color-text-primary) !important;
        }

        /* Proof Science */
        .proof-science {
            background: rgba(238, 68, 8, 0.08);
            border: 1px solid rgba(238, 68, 8, 0.2);
            border-radius: 12px;
            padding: var(--space-48);
            max-width: 1000px;
            margin: 0 auto;
        }

        .proof-science h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: var(--space-32);
            text-align: center;
            font-family: var(--font-primary);
        }

        .science-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: var(--space-24);
        }

        .science-list li {
            font-size: 15px;
            color: var(--color-text-secondary);
            line-height: 1.7;
            font-family: var(--font-primary);
            padding-left: var(--space-32);
            position: relative;
        }

        .science-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--color-accent-action);
            font-weight: bold;
            font-size: 18px;
        }

        .science-list strong {
            color: var(--color-text-primary);
            font-weight: 600;
        }

        /* Responsive: Proof Section */
        @media (max-width: 768px) {
            .proof-section {
                padding: var(--space-64) var(--space-24);
            }

            .proof-section h2 {
                font-size: 28px;
            }

            .methods-grid {
                grid-template-columns: 1fr;
                gap: var(--space-24);
                margin-bottom: var(--space-48);
            }

            .proof-science {
                padding: var(--space-32);
            }

            .proof-science h3 {
                font-size: 18px;
                margin-bottom: var(--space-24);
            }

            .science-list {
                gap: var(--space-16);
            }

            .science-list li {
                font-size: 14px;
            }
        }

        /* SECTION 3: DOULEURS (VIDEO) - Full Screen Cinématique */
        .douleurs-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background: #000;
        }

        .douleurs-video-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .douleurs-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .douleurs-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E"),
                linear-gradient(
                    180deg,
                    rgba(0, 0, 0, 0.2) 0%,
                    rgba(0, 0, 0, 0) 50%,
                    rgba(0, 0, 0, 0.4) 100%
                );
            background-repeat: repeat, no-repeat;
            background-size: 300px 300px, 100% 100%;
            pointer-events: none;
        }

        .douleurs-subtitle {
            position: absolute;
            bottom: 220px;
            left: 50%;
            transform: translateX(-50%);
            color: #FFFDF6;
            font-size: 24px;
            font-weight: 400;
            text-align: center;
            max-width: 90%;
            line-height: 1.4;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            letter-spacing: -0.5px;
            z-index: 10;
        }

        @media (max-width: 768px) {
            .douleurs-subtitle {
                font-size: 18px;
                bottom: 140px;
            }
        }

        /* Arc de cercle smooth avec blur */
        .douleurs-blur-dome {
            display: none;
        }

        /* CTA avec question et scroll indicator */
        .douleurs-cta {
            position: absolute;
            bottom: 72px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            z-index: 25;
            white-space: nowrap;
        }

        .douleurs-cta h3 {
            color: #FFFDF6;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 10px;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            letter-spacing: -0.3px;
        }

        /* Scroll indicator */
        .scroll-indicator {
            display: flex;
            justify-content: center;
            align-items: center;
            color: #FFFDF6;
            animation: bounce 2s infinite;
        }

        .scroll-indicator svg {
            width: 24px;
            height: 24px;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-8px);
            }
            60% {
                transform: translateY(-4px);
            }
        }

        @media (max-width: 768px) {
            .douleurs-blur-dome {
                width: 100%;
                max-width: 600px;
                height: 300px;
            }

            .douleurs-subtitle {
                bottom: 158px;
            }

            .douleurs-cta {
                bottom: 60px;
                white-space: normal;
                width: 90%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .douleurs-cta h3 {
                font-size: 16px;
                margin-bottom: 10px;
                text-align: center;
            }

            .scroll-indicator {
                width: 100%;
                justify-content: center;
            }
        }

        /* SECTION 4: MENTAL STATES - Interactive Toggle */
        .mental-states-section {
            background: #080809;
            padding: 100px 24px;
            transition: background 0.7s ease;
            position: relative;
            overflow: hidden;
        }

        .mental-states-section.cold-state {
            background: #00090f;
        }

        .mental-container {
            max-width: 820px;
            margin: 0 auto;
            text-align: center;
        }

        .mental-header {
            margin-bottom: 64px;
        }

        .mental-overline {
            transition: color 0.7s ease;
        }

        .mental-states-section.cold-state .mental-overline {
            color: #4BA3D4;
        }

        .mental-title {
            font-size: clamp(28px, 4vw, 52px);
            font-weight: 700;
            color: #FFFDF6;
            letter-spacing: -1.5px;
            line-height: 1.05;
            margin: 0;
        }

        /* Arena: mots gauche | roue | mots droite */
        .mental-arena {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 52px;
            margin-bottom: 64px;
        }

        .mental-words {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .mental-words-left { text-align: right; }
        .mental-words-right { text-align: left; }

        .mental-word {
            display: block;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-weight: 700;
            color: #EE4408;
            letter-spacing: -0.5px;
            line-height: 1.1;
            transition: color 0.5s ease, opacity 0.2s ease, transform 0.2s ease;
        }

        /* Tailles variées pour la profondeur */
        .mental-word.mw-lg { font-size: clamp(24px, 3.2vw, 40px); }
        .mental-word.mw-md { font-size: clamp(20px, 2.5vw, 32px); }
        .mental-word.mw-sm { font-size: clamp(16px, 2vw, 24px); opacity: 0.65; }
        .mental-word.mw-xs { font-size: clamp(13px, 1.6vw, 18px); opacity: 0.4; }

        .mental-states-section.cold-state .mental-word {
            color: #4BA3D4;
        }

        /* Roue centrale */
        .mental-wheel-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .mental-wheel {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: transparent;
            border: 2px solid #EE4408;
            cursor: pointer;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: border-color 0.7s ease, box-shadow 0.7s ease, transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 0 28px rgba(238, 68, 8, 0.3), inset 0 0 20px rgba(238, 68, 8, 0.06);
            outline: none;
            flex-shrink: 0;
        }

        .mental-wheel:hover {
            box-shadow: 0 0 44px rgba(238, 68, 8, 0.5), inset 0 0 20px rgba(238, 68, 8, 0.1);
        }

        .mental-states-section.cold-state .mental-wheel {
            border-color: #4BA3D4;
            box-shadow: 0 0 28px rgba(75, 163, 212, 0.35), inset 0 0 20px rgba(75, 163, 212, 0.08);
            transform: rotate(180deg);
        }

        .mental-states-section.cold-state .mental-wheel:hover {
            box-shadow: 0 0 44px rgba(75, 163, 212, 0.5), inset 0 0 20px rgba(75, 163, 212, 0.12);
        }

        .wheel-icon {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.35s ease;
        }

        .wheel-icon-warm { color: #EE4408; opacity: 1; }
        .wheel-icon-cold { color: #4BA3D4; opacity: 0; }

        .mental-states-section.cold-state .wheel-icon-warm { opacity: 0; }
        .mental-states-section.cold-state .wheel-icon-cold { opacity: 1; }

        .mental-caption {
            font-size: 15px;
            color: rgba(255, 253, 246, 0.35);
            letter-spacing: -0.2px;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-style: italic;
            transition: color 0.7s ease;
            margin: 0;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .mental-states-section {
                padding: 80px 20px;
            }

            .mental-header {
                margin-bottom: 44px;
            }

            .mental-arena {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto auto;
                gap: 20px 16px;
                margin-bottom: 44px;
            }

            .mental-words-left {
                grid-column: 1;
                grid-row: 1;
                text-align: center;
            }

            .mental-words-right {
                grid-column: 2;
                grid-row: 1;
                text-align: center;
            }

            .mental-wheel-wrapper {
                grid-column: 1 / -1;
                grid-row: 2;
            }

            .mental-word.mw-lg,
            .mental-word.mw-md,
            .mental-word.mw-sm,
            .mental-word.mw-xs {
                font-size: 15px;
                opacity: 1;
            }

            .mental-wheel {
                width: 84px;
                height: 84px;
            }
        }

        /* SECTION 2: PAIN SECTION */
        .pain-section {
            background: var(--color-background-base);
            padding: var(--space-96) var(--space-24);
        }

        .pain-section .container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .section-overline {
            font-size: var(--text-caption);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--color-accent-action);
            margin-bottom: var(--space-24);
            display: block;
        }

        .section-subtitle {
            font-size: var(--text-body);
            color: var(--color-text-secondary);
            line-height: 1.6;
            margin-top: var(--space-16);
        }

        .pain-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-32);
            margin-top: var(--space-64);
        }

        .pain-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--color-border-default);
            border-radius: 16px;
            padding: var(--space-32);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .pain-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--color-accent-action);
            transform: translateY(-4px);
        }

        .pain-card h3 {
            font-size: var(--text-h3);
            color: var(--color-text-primary);
            margin-bottom: var(--space-16);
            line-height: 1.3;
        }

        .pain-card p {
            font-size: var(--text-body);
            color: var(--color-text-secondary);
            line-height: 1.7;
        }

        .pain-conclusion {
            text-align: center;
            margin-top: var(--space-64);
            font-size: var(--text-body);
            line-height: 1.7;
            color: var(--color-text-secondary);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .pain-conclusion strong {
            color: var(--color-text-primary);
            font-weight: 600;
        }


        .tools-comparison {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: var(--space-24);
            margin-top: var(--space-64);
        }

        .tool-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--color-border-subtle);
            border-radius: 12px;
            padding: var(--space-24);
            text-align: center;
        }

        .tool-card h3 {
            font-size: var(--text-body);
            font-weight: 600;
            color: var(--color-text-primary);
            margin-bottom: var(--space-12);
        }

        .tool-problem {
            font-size: var(--text-small);
            color: var(--color-accent-action);
            font-weight: 600;
            margin-bottom: var(--space-8);
        }

        .tool-card p {
            font-size: var(--text-small);
            color: var(--color-text-secondary);
            line-height: 1.5;
        }

        .pipeline-missing {
            margin-top: var(--space-64);
            text-align: center;
            padding: var(--space-48);
            background: rgba(238, 68, 8, 0.03);
            border: 1px solid rgba(238, 68, 8, 0.1);
            border-radius: 16px;
        }

        .pipeline-flow {
            font-size: var(--text-h3);
            font-weight: 700;
            color: var(--color-accent-action);
            margin: var(--space-24) 0;
            letter-spacing: 0.1em;
            font-family: var(--font-primary);
        }

        .pipeline-conclusion {
            font-size: var(--text-body);
            color: var(--color-text-secondary);
            line-height: 1.6;
        }

        .pipeline-conclusion strong {
            color: var(--color-text-primary);
            font-weight: 600;
        }

        /* SECTION 5: SOLUTION SECTION */
        .solution-section {
            background: linear-gradient(180deg, var(--color-background-base) 0%, rgba(238, 68, 8, 0.02) 50%, var(--color-background-base) 100%);
            padding: var(--space-96) var(--space-24);
        }

        .pipeline-steps {
            display: flex;
            flex-direction: column;
            gap: var(--space-96);
            max-width: 900px;
            margin: var(--space-64) auto 0;
        }

        .pipeline-step {
            position: relative;
            padding-left: var(--space-64);
        }

        .step-number {
            position: absolute;
            left: 0;
            top: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: var(--color-accent-action);
            border-radius: 50%;
            color: white;
            font-weight: 700;
            font-size: 20px;
        }

        .pipeline-step h3 {
            font-size: var(--text-h2);
            color: var(--color-text-primary);
            margin-bottom: var(--space-8);
            font-weight: 700;
        }

        .pipeline-step h4 {
            font-size: var(--text-body);
            font-weight: 600;
            color: var(--color-text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: var(--space-24);
        }

        .pipeline-step p {
            font-size: var(--text-body);
            color: var(--color-text-secondary);
            line-height: 1.7;
            margin-bottom: var(--space-24);
        }

        .examples {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-12);
            margin-top: var(--space-16);
        }

        .example-tag {
            display: inline-block;
            background: rgba(238, 68, 8, 0.1);
            border: 1px solid rgba(238, 68, 8, 0.2);
            color: var(--color-text-primary);
            padding: var(--space-8) var(--space-16);
            border-radius: 20px;
            font-size: var(--text-small);
            font-weight: 500;
        }

        .kpi-examples {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: var(--space-16);
            margin-top: var(--space-24);
        }

        .kpi-example {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--color-border-subtle);
            border-radius: 12px;
            padding: var(--space-16);
            text-align: center;
        }

        .kpi-unit {
            display: block;
            font-size: var(--text-small);
            font-weight: 700;
            color: var(--color-accent-action);
            margin-bottom: var(--space-8);
        }

        .kpi-desc {
            display: block;
            font-size: var(--text-small);
            color: var(--color-text-secondary);
            line-height: 1.4;
        }

        .step-detail {
            font-size: var(--text-small);
            color: var(--color-text-secondary);
            font-style: italic;
            margin-top: var(--space-12);
        }

        /* Grid pour cartes SMART (adapted from jalon.html) */
        .grid-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            width: 100%;
            margin-top: 20px;
        }

        .card {
            background: rgba(28, 28, 30, 0.75);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-radius: 16px;
            padding: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.2s ease;
            min-height: 80px;
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            background: rgba(44, 44, 46, 0.85);
            transform: translateY(-2px);
            border-color: var(--color-accent-action);
        }

        .card.kpi-main {
            grid-column: span 2;
            background: rgba(30, 15, 5, 0.8);
            border: 1px solid rgba(255, 90, 31, 0.2);
            min-height: 70px;
            padding: 14px 16px;
        }

        .card-title {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--color-text-secondary);
            margin-bottom: 8px;
        }

        .card-content {
            font-size: 14px;
            font-weight: 500;
            color: var(--color-text-primary);
            line-height: 1.5;
        }

        .card-content.kpi-value {
            font-size: 18px;
            font-weight: 700;
        }

        /* SECTION 6: DEMO SECTION */
        .demo-section {
            background: var(--color-background-base);
            padding: var(--space-96) var(--space-24);
        }

        .demo-cases {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-64);
            margin-top: var(--space-64);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .demo-case {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: var(--space-32);
            align-items: center;
        }

        .demo-before, .demo-after {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--color-border-subtle);
            border-radius: 16px;
            padding: var(--space-32);
        }

        .demo-before h3, .demo-after h3 {
            font-size: var(--text-body);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--color-text-secondary);
            margin-bottom: var(--space-16);
        }

        .demo-ambition {
            font-size: var(--text-h3);
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: var(--space-16);
            line-height: 1.3;
        }

        .demo-status {
            display: inline-block;
            padding: var(--space-8) var(--space-16);
            border-radius: 20px;
            font-size: var(--text-small);
            font-weight: 600;
        }

        .demo-status.status-vague {
            background: rgba(255, 153, 0, 0.1);
            color: #FFB74D;
        }

        .demo-status.status-structured {
            background: rgba(34, 197, 89, 0.1);
            color: #34C759;
        }

        .demo-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--color-accent-action);
            font-weight: 700;
        }

        .demo-plan {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .demo-plan li {
            font-size: var(--text-body);
            color: var(--color-text-secondary);
            margin-bottom: var(--space-16);
            line-height: 1.6;
        }

        .demo-plan strong {
            color: var(--color-text-primary);
            font-weight: 600;
        }

        .demo-plan ul {
            list-style: none;
            padding-left: var(--space-16);
            margin: var(--space-8) 0;
        }

        .demo-plan ul li {
            margin-bottom: var(--space-8);
        }

        .demo-screenshots {
            margin-top: var(--space-96);
            text-align: center;
        }

        .demo-screenshots h3 {
            font-size: var(--text-h3);
            color: var(--color-text-primary);
            margin-bottom: var(--space-48);
            font-weight: 700;
        }

        .screenshots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--space-32);
            max-width: 900px;
            margin: 0 auto;
        }

        .screenshots-grid img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* SECTION 7: DIFFERENTIATION SECTION */
        .differentiation-section {
            background: var(--color-background-base);
            padding: var(--space-96) var(--space-24);
        }

        .not-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-32);
            margin-top: var(--space-64);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .not-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--color-border-subtle);
            border-radius: 16px;
            padding: var(--space-32);
        }

        .not-item h3 {
            font-size: var(--text-body);
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: var(--space-16);
        }

        .not-item p {
            font-size: var(--text-body);
            color: var(--color-text-secondary);
            line-height: 1.6;
            margin-bottom: var(--space-12);
        }

        .not-why {
            font-size: var(--text-small);
            color: var(--color-accent-action);
            font-style: italic;
            margin-top: var(--space-12);
            padding-top: var(--space-12);
            border-top: 1px solid var(--color-border-subtle);
        }

        .is-list {
            margin-top: var(--space-96);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .is-list h2 {
            font-size: var(--text-h2);
            color: var(--color-text-primary);
            margin-bottom: var(--space-48);
            font-weight: 700;
        }

        .is-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: var(--space-32);
        }

        .is-item {
            background: rgba(238, 68, 8, 0.05);
            border: 1px solid rgba(238, 68, 8, 0.2);
            border-radius: 16px;
            padding: var(--space-32);
        }

        .is-item h3 {
            font-size: var(--text-body);
            font-weight: 700;
            color: var(--color-accent-action);
            margin-bottom: var(--space-16);
        }

        .is-item p {
            font-size: var(--text-body);
            color: var(--color-text-secondary);
            line-height: 1.6;
        }

        .is-detail {
            font-size: var(--text-small);
            color: var(--color-text-secondary);
            margin-top: var(--space-8);
            font-style: italic;
        }

        .comparison-table {
            margin-top: var(--space-96);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .comparison-table h3 {
            font-size: var(--text-body);
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: var(--space-32);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
            border: 1px solid var(--color-border-subtle);
            border-radius: 12px;
            overflow: hidden;
        }

        .comparison-table th,
        .comparison-table td {
            padding: var(--space-24);
            text-align: left;
            border-bottom: 1px solid var(--color-border-subtle);
            font-size: var(--text-small);
            color: var(--color-text-secondary);
            line-height: 1.6;
        }

        .comparison-table th {
            background: rgba(255, 255, 255, 0.03);
            font-weight: 700;
            color: var(--color-text-primary);
        }

        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }

        /* DIFFERENTIATION — Statement + Feature rows */
        .differentiation-section {
            background: #000;
            padding: 0;
        }

        .differentiation-section .feature-blocks {
            padding-top: 20px;
            padding-bottom: 100px;
        }

        .diff-statement {
            padding: 100px 40px 0;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .diff-stmt-a {
            font-size: clamp(18px, 2.4vw, 36px);
            font-weight: 600;
            letter-spacing: -0.02em;
            color: rgba(255,255,255,0.25);
            margin: 0 0 12px;
            line-height: 1.2;
        }

        .diff-stmt-b {
            font-size: clamp(26px, 4vw, 62px);
            font-weight: 800;
            letter-spacing: -0.04em;
            color: #fff;
            margin: 0;
            line-height: 1.05;
        }

        .diff-accent {
            color: var(--accent-orange, #EE4408);
        }

        .diff-stmt-c {
            font-size: clamp(15px, 1.6vw, 22px);
            font-weight: 500;
            color: rgba(255,255,255,0.45);
            margin: 28px 0 0;
            line-height: 1.5;
            letter-spacing: -0.01em;
        }

        .diff-uvp {
            margin: 0;
            padding: 28px 80px 56px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.2);
        }

        .diff-features {
            padding: 0 80px 72px;
            max-width: 720px;
        }

        .diff-feat {
            display: block;
            padding: 40px 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .diff-feat:last-child {
            border-bottom: none;
        }

        .diff-feat-left {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 12px;
        }

        .diff-feat-num {
            font-size: 12px;
            font-weight: 700;
            color: var(--accent-orange, #EE4408);
            font-family: var(--font-mono, monospace);
            flex-shrink: 0;
        }

        .diff-feat-name {
            font-size: clamp(18px, 2.2vw, 26px);
            font-weight: 800;
            color: #fff;
            margin: 0;
            letter-spacing: -0.02em;
        }

        .diff-feat-desc {
            font-size: 15px;
            color: rgba(255,255,255,0.5);
            line-height: 1.7;
            margin: 0;
            padding-left: 30px;
        }

        /* Face Nord manifesto */
        .diff-nord {
            padding: 56px 40px 48px;
            border-top: 1px solid rgba(255,255,255,0.06);
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .diff-nord-tag {
            display: block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--accent-orange, #EE4408);
            margin-bottom: 18px;
        }

        .diff-nord-line {
            font-size: clamp(28px, 4vw, 58px);
            font-weight: 800;
            letter-spacing: -0.04em;
            color: #fff;
            margin: 0 0 20px;
            line-height: 1.05;
            max-width: 820px;
        }

        .diff-nord-uvp {
            font-size: 14px;
            font-weight: 500;
            color: rgba(255,255,255,0.35);
            letter-spacing: 0.02em;
            margin: 0;
        }

        @media (max-width: 768px) {
            .diff-nord { padding: 48px 24px 40px; }
            .diff-statement { padding: 60px 24px 0; }
        }

        /* No badge — signe interdit */
        .sk-no-badge {
            width: 130px;
            height: 130px;
            display: block;
        }

        /* Year calendar */
        .sk-year-calendar {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Failure circles — 1009 échecs à documenter */
        .sk-failure-circles {
            width: 100%;
            max-width: 320px;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        .sk-w-zero {
            background: transparent;
            border-color: rgba(255,255,255,0.07);
        }

        .sk-w-accent {
            background: rgba(255,59,31,0.7);
            border-color: rgba(255,59,31,0.5);
        }

        @media (max-width: 768px) {
            .diff-statement { padding: 64px 24px 32px; max-width: 100%; }
            .diff-uvp { padding: 16px 24px 44px; }
            .diff-features { padding: 0 24px 64px; max-width: 100%; }
            .diff-feat { padding: 32px 0; }
            .diff-feat-desc { padding-left: 0; }
            .diff-feat-name {
                max-width: none;
                width: 100%;
                text-wrap: balance;
            }
            .diff-feat-desc {
                max-width: none;
                width: 100%;
            }
            .diff-nord-line {
                max-width: none;
                width: 100%;
            }
            .sk-week { width: 22px; height: 22px; }
        }

        /* FOUNDER SECTION */
        .founder-section {
            background: #050505;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 120px 80px;
            position: relative;
            overflow: hidden;
        }

        .founder-inner {
            max-width: 860px;
            display: flex;
            gap: 64px;
            align-items: flex-start;
        }

        .founder-photo {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 50%;
            flex-shrink: 0;
            filter: grayscale(20%);
        }

        .founder-text {
            flex: 1;
        }

        .founder-tag {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.22);
            margin: 0 0 48px;
        }

        .founder-quote {
            font-size: clamp(20px, 2.6vw, 36px);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.25;
            color: #fff;
            margin: 0 0 40px;
            padding: 0;
            border: none;
            font-style: normal;
        }

        /* Facts — 3 lignes brutes */
        .founder-facts {
            margin: 0 0 40px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .founder-fact {
            font-size: 14px;
            font-weight: 600;
            color: rgba(255,255,255,0.6);
            padding-left: 16px;
            border-left: 2px solid rgba(238,68,8,0.5);
            line-height: 1.4;
            margin: 0;
        }

        .founder-name {
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            margin: 0 0 28px;
            letter-spacing: -0.02em;
        }

        .founder-role-inline {
            font-size: 12px;
            font-weight: 600;
            color: var(--accent-orange, #EE4408);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            vertical-align: middle;
        }

        .founder-role {
            display: none;
        }

        .founder-story {
            font-size: 15px;
            color: rgba(255,255,255,0.45);
            line-height: 1.8;
            margin: 0 0 14px;
        }

        .founder-story--accent {
            color: rgba(255,255,255,0.75);
            font-weight: 500;
            font-style: italic;
            border-left: 2px solid #EE4408;
            padding-left: 14px;
            margin-top: 20px;
        }

        .founder-sign {
            font-size: 17px;
            font-weight: 800;
            color: #fff;
            margin: 28px 0 0;
            letter-spacing: -0.02em;
        }

        @media (max-width: 768px) {
            .founder-section { padding: 80px 24px; }
            .founder-inner { flex-direction: column; gap: 32px; }
            .founder-photo { width: 120px; height: 120px; }
            .founder-stats { flex-wrap: wrap; }
            .founder-stat { flex: 1 1 45%; }
        }

        /* SECTION 8: PHILOSOPHY SECTION */
        .philosophy-section {
            background: var(--color-background-base);
            padding: var(--space-96) var(--space-24);
        }

        .philosophy-principles {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: var(--space-48);
            margin-top: var(--space-64);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .principle {
            text-align: center;
        }

        .principle h3 {
            font-size: var(--text-h3);
            color: var(--color-text-primary);
            margin-bottom: var(--space-16);
            font-weight: 700;
        }

        .principle p {
            font-size: var(--text-body);
            color: var(--color-text-secondary);
            line-height: 1.7;
        }

        .principle-detail {
            font-size: var(--text-body);
            color: var(--color-text-secondary);
            margin-top: var(--space-16);
            font-style: italic;
        }

        .philosophy-quote {
            margin-top: var(--space-96);
            padding: var(--space-48);
            background: rgba(238, 68, 8, 0.03);
            border-left: 4px solid var(--color-accent-action);
            border-radius: 12px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .philosophy-quote blockquote {
            margin: 0;
            font-size: var(--text-body);
            line-height: 1.8;
            color: var(--color-text-primary);
            font-style: italic;
        }

        .philosophy-rule {
            margin-top: var(--space-64);
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .rule-text {
            font-size: var(--text-body);
            color: var(--color-text-secondary);
            margin-bottom: var(--space-16);
        }

        .rule-statement {
            font-size: var(--text-h3);
            font-weight: 700;
            color: var(--color-text-primary);
            line-height: 1.4;
        }

        /* SECTION 9: PROOF SECTION */
        .proof-section {
            background: var(--color-background-base);
            padding: var(--space-96) var(--space-24);
        }

        .methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: var(--space-32);
            margin-top: var(--space-64);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .method-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--color-border-subtle);
            border-radius: 16px;
            padding: var(--space-32);
        }

        .method-card h3 {
            font-size: var(--text-body);
            font-weight: 700;
            color: var(--color-accent-action);
            margin-bottom: var(--space-12);
        }

        .method-origin {
            font-size: var(--text-small);
            color: var(--color-text-secondary);
            font-weight: 500;
            margin-bottom: var(--space-12);
        }

        .method-card p {
            font-size: var(--text-small);
            color: var(--color-text-secondary);
            line-height: 1.6;
        }

        .proof-statement {
            margin-top: var(--space-64);
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .proof-statement p {
            font-size: var(--text-body);
            color: var(--color-text-secondary);
            line-height: 1.7;
            margin-bottom: var(--space-16);
        }

        .statement-emphasis {
            font-size: var(--text-h3);
            font-weight: 700;
            color: var(--color-text-primary);
            line-height: 1.4;
        }

        .proof-science {
            margin-top: var(--space-64);
            background: rgba(238, 68, 8, 0.03);
            border: 1px solid rgba(238, 68, 8, 0.1);
            border-radius: 16px;
            padding: var(--space-32);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .proof-science h3 {
            font-size: var(--text-body);
            font-weight: 700;
            color: var(--color-accent-action);
            margin-bottom: var(--space-24);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .proof-science ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .proof-science li {
            font-size: var(--text-body);
            color: var(--color-text-secondary);
            line-height: 1.7;
            margin-bottom: var(--space-16);
        }

        .proof-science li:last-child {
            margin-bottom: 0;
        }

        .proof-science strong {
            color: var(--color-text-primary);
            font-weight: 600;
        }

        /* IMPROVED MANIFEST SECTION */
        .manifest-transformation {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: var(--space-32);
            margin-top: var(--space-64);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            align-items: center;
        }

        .transformation-before, .transformation-after {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--color-border-subtle);
            border-radius: 12px;
            padding: var(--space-24);
        }

        .transformation-before h3, .transformation-after h3 {
            font-size: var(--text-body);
            font-weight: 700;
            color: var(--color-text-secondary);
            margin-bottom: var(--space-16);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .transformation-before ul, .transformation-after ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .transformation-before li, .transformation-after li {
            font-size: var(--text-small);
            color: var(--color-text-secondary);
            line-height: 1.6;
            margin-bottom: var(--space-8);
        }

        .transformation-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--color-accent-action);
            font-weight: 700;
        }

        .manifest-email-form {
            display: flex;
            gap: var(--space-16);
            justify-content: center;
            flex-wrap: wrap;
            margin-top: var(--space-48);
        }

        .manifest-email-input {
            padding: 14px 20px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.05);
            color: var(--color-text-primary);
            font-size: var(--text-body);
            font-family: var(--font-primary);
            min-width: 280px;
            outline: none;
            transition: border-color 0.2s;
        }

        .manifest-email-input::placeholder {
            color: rgba(255,255,255,0.3);
        }

        .manifest-email-input:focus {
            border-color: var(--accent-orange);
        }

        .manifest-contract {
            text-align: center;
            font-size: var(--text-small);
            color: var(--color-text-secondary);
            margin-top: var(--space-16);
            margin-bottom: var(--space-48);
        }

        .manifest-warning {
            background: rgba(238, 68, 8, 0.05);
            border: 1px solid rgba(238, 68, 8, 0.15);
            border-radius: 16px;
            padding: var(--space-32);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .manifest-warning p {
            font-size: var(--text-body);
            color: var(--color-text-secondary);
            line-height: 1.7;
            margin-bottom: var(--space-16);
        }

        .manifest-warning p:last-child {
            margin-bottom: 0;
        }

        .warning-emphasis {
            color: var(--color-text-primary);
            font-weight: 700;
        }

        /* Responsive adjustments for new sections */
        @media (max-width: 768px) {
            .demo-case {
                grid-template-columns: 1fr;
            }

            .demo-arrow {
                transform: rotate(90deg);
                margin: var(--space-16) 0;
            }

            .manifest-transformation {
                grid-template-columns: 1fr;
            }

            .transformation-arrow {
                transform: rotate(90deg);
                margin: var(--space-16) 0;
            }

            .grid-layout {
                grid-template-columns: 1fr;
            }

            .card.kpi-main {
                grid-column: span 1;
            }

            .pipeline-steps {
                gap: var(--space-48);
            }

            .philosophy-principles {
                grid-template-columns: 1fr;
            }
        }

        /* Manifest Section */
        .manifest-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: auto;
            padding: 80px 20px 80px 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .manifest-text {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            line-height: 1.55;
            color: #FFFDF6;
            margin-bottom: 2rem;
            text-align: left;
            max-width: 600px;
        }

        .manifest-text p {
            margin-bottom: 1rem;
        }

        .manifest-text p:last-child {
            margin-bottom: 0;
        }

        /* Story Blocks - Apple Style */
        .story-block {
            min-height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 80px 20px;
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1s ease-out, transform 1s ease-out;
            position: relative;
        }

        .story-block.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Story Block avec Image Background */
        .story-block-image {
            min-height: 100vh;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        .story-block-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(8, 8, 9, 0.5);
            z-index: 1;
        }

        .story-block-image > * {
            position: relative;
            z-index: 2;
        }

        /* Story Block Dark - Style "SUCCESS" */
        .story-block-dark {
            min-height: 100vh;
            background: linear-gradient(135deg, #080809 0%, #1a1a1a 50%, #2a2a2a 100%);
        }

        /* Hero 5 Years - Full Screen Apple Style */
        /* Hero Image Section */
        .hero-5years {
            position: relative;
            width: 100vw;
            height: 100vh;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            background-image: image-set(url('Images/5years.webp') type('image/webp'), url('Images/5years.jpg') type('image/jpeg'));
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            overflow: hidden;
        }

        .hero-5years::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
            z-index: 1;
        }

        .hero-5years-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            padding: var(--space-64);
            margin-left: var(--space-64);
            background: rgba(5, 6, 10, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-5years-overline {
            font-size: var(--text-small);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--color-accent-action);
            margin-bottom: var(--space-16);
        }

        .hero-5years-title {
            font-family: var(--font-primary);
            font-size: var(--text-h1);
            line-height: 1.2;
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: var(--space-16);
        }

        .hero-5years-subtitle {
            font-size: 20px;
            line-height: 1.6;
            color: var(--color-text-secondary);
            margin-bottom: var(--space-32);
        }

        .hero-5years-number {
            color: var(--color-accent-action);
            font-weight: 700;
        }

        .hero-5years-ctas {
            display: flex;
            gap: var(--space-16);
            flex-wrap: wrap;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .big-question {
            font-family: 'Rifton', serif;
            font-size: clamp(2.5rem, 8vw, 5.5rem);
            line-height: 1.1;
            color: #FFFDF6;
            margin-bottom: 2rem;
            font-weight: normal;
            letter-spacing: -1px;
        }

        .big-statement {
            font-family: 'Rifton', serif;
            font-size: clamp(2rem, 6vw, 4.5rem);
            line-height: 1.15;
            color: #EE4408;
            margin-bottom: 1.5rem;
            font-weight: normal;
            letter-spacing: -1px;
        }

        .highlight-number {
            color: #EE4408;
            font-size: 1.2em;
            font-weight: bold;
        }

        .highlight-you {
            color: #EE4408;
            font-weight: 700;
            font-style: italic;
        }

        .story-text-large {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1.8rem, 4vw, 3rem);
            line-height: 1.3;
            color: #FFFDF6;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .story-text-medium {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1.4rem, 3vw, 2.2rem);
            line-height: 1.4;
            color: #FFFDF6;
            margin-bottom: 1.2rem;
            font-weight: 500;
        }

        .story-text {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1.1rem, 2.5vw, 1.6rem);
            line-height: 1.6;
            color: #929292;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .story-text-small {
            font-family: 'Inter', sans-serif;
            font-size: clamp(0.95rem, 2vw, 1.2rem);
            line-height: 1.7;
            color: #6B6B6B;
            margin-bottom: 0.8rem;
            font-weight: 400;
        }

        .story-text-emphasis {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1.2rem, 2.8vw, 1.8rem);
            line-height: 1.5;
            color: #FFFDF6;
            margin-bottom: 1rem;
            font-weight: 600;
            font-style: italic;
        }

        .story-list {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1.3rem, 3vw, 2rem);
            line-height: 1.8;
            color: #FFFDF6;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .final-statement {
            min-height: 80vh;
        }

        .smart-separator {
            margin: 3rem 0 2.5rem 0;
            padding-left: 20px;
        }

        .smart-line {
            width: 100%;
            height: 4px;
            background-color: #EE4408;
            margin-bottom: 1.5rem;
        }

        .smart-separator h3 {
            font-family: 'Rifton', serif;
            font-size: 2.5rem;
            color: #FFFDF6;
            margin-bottom: 0.8rem;
            letter-spacing: 2px;
        }

        .smart-separator p {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: #929292;
            line-height: 1.6;
            max-width: 550px;
        }

        .process-steps {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin: 3rem 0;
            flex-wrap: wrap;
        }

        .process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 140px;
        }

        .process-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 1rem;
        }

        .process-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .process-icon svg {
            width: 100%;
            height: 100%;
            fill: #EE4408;
        }

        .process-label {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #FFFDF6;
            margin-bottom: 0.3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .process-desc {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: #929292;
            font-weight: 500;
        }

        .process-arrow {
            font-size: 2.5rem;
            color: #EE4408;
            font-weight: bold;
        }

        .hidden {
            display: none;
        }

        /* Objectif Section */
        /* =========================================
           APPLE WEB DESIGN SYSTEM (ADAPTED FOR CarryIT SMART OBJECTIVES)
           ========================================= */

        :root {
            /* --- COULEURS CARRY IT --- */
            --bg-body: #080809;       /* Noir Profond */
            --bg-card: #1C1C1E;       /* Surface Secondaire */
            --text-main: #FFFDF6;     /* Blanc Cassé */
            --text-muted: #86868B;    /* Gris Apple Web */
            --accent: #EE4408;        /* Orange Vif */
            --accent-glow: rgba(238, 68, 8, 0.4);

            /* --- METRICS APPLE --- */
            --content-width: 680px;   /* Largeur de lecture standard Apple */
            --radius-btn: 980px;      /* Pill shape complet */
            --radius-card: 20px;      /* Arrondi des cartes modernes iOS/Web */

            /* --- TYPO SUISSE (Inter calibrée comme SF Pro) --- */
            --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --tracking-tight: -0.022em; /* Le secret du look Apple */

            /* --- GLASSMORPHISM --- */
            --glass: rgba(28, 28, 30, 0.85);
            --blur: 20px;
        }

        .smart-container {
            display: none;
            width: 100%;
            min-height: 100vh;
            background-color: var(--bg-body);
            color: var(--text-main);
            font-family: var(--font);
            -webkit-font-smoothing: antialiased;
            flex-direction: column;
        }

        .smart-container.active {
            display: flex;
        }

        /* 1. NAVIGATION MINIMALISTE (Style Apple Configurator) */
        .global-nav {
            padding: 0 24px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(8, 8, 9, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255,255,255,0.08);
            overflow: hidden;
        }

        .nav-logo { display: none; }
        .nav-steps { display: none; }
        .nav-close {
            background: rgba(255,255,255,0.1);
            border: none; width: 28px; height: 28px; border-radius: 50%;
            color: white; cursor: pointer; display: grid; place-items: center;
        }

        /* 2. PROGRESS BAR (Fine et élégante) */
        .progress-bar {
            width: 100%;
            height: 2px;
            background: #222;
            position: absolute;
            bottom: 0;
            left: 0;
        }
        .progress-fill {
            width: 16.66%;
            height: 100%;
            background: var(--accent);
            box-shadow: 0 0 10px var(--accent-glow);
            transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        /* 3. CONTENU CENTRAL (Le "Workflow") */
        .stage-container {
            flex: 1;
            width: 100%;
            max-width: var(--content-width);
            margin: 0 auto;
            padding: 60px 24px 140px; /* Padding bas pour le sticky footer */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .objectif-step {
            display: none;
            opacity: 0;
            animation: fadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }

        .objectif-step.active {
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 1;
        }

        .objectif-step.hidden {
            display: none;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* HEADERS */
        .eyebrow {
            color: var(--accent);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
        }

        h1 {
            font-size: 48px; /* Taille Apple Web standard */
            font-weight: 700;
            letter-spacing: 0.02em; /* Espacement augmenté pour meilleure lisibilité */
            line-height: 1.05;
            margin: 0 0 24px 0;
        }

        .subtitle {
            font-size: 21px; /* Taille Intro */
            line-height: 1.5;
            color: var(--text-muted);
            font-weight: 400;
            margin-bottom: 48px;
            max-width: 90%;
        }

        /* 4. INPUT CARD (Le coeur de l'interaction) */
        .input-card {
            background: var(--color-background-card);
            border-radius: var(--radius-card);
            padding: 6px; /* Padding pour le focus ring eventuel */
            border: 1px solid rgba(255,255,255,0.08);
            transition: border-color 0.3s, transform 0.3s;
        }

        .input-card:focus-within {
            border-color: var(--accent);
        }

        .textarea-container {
            position: relative;
            background: #141415; /* Un poil plus foncé que la carte */
            border-radius: 14px;
            padding: 20px;
        }

        textarea {
            width: 100%;
            min-height: 140px;
            background: transparent;
            border: none;
            color: var(--text-main);
            font-family: var(--font);
            font-size: 24px; /* Gros texte très lisible */
            line-height: 1.4;
            resize: none;
        }
        textarea::placeholder { color: #444; }

        /* AI TOOLBAR (Intégrée à la carte) */
        .ai-toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 16px;
        }

        .hint-text {
            font-size: 13px;
            color: #555;
            font-weight: 500;
        }

        .ai-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(238, 68, 8, 0.15), rgba(238, 68, 8, 0.05));
            border: 1px solid rgba(238, 68, 8, 0.3);
            padding: 10px 18px;
            border-radius: 99px;
            color: var(--accent);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        .ai-btn:hover {
            background: linear-gradient(135deg, rgba(238, 68, 8, 0.25), rgba(238, 68, 8, 0.1));
            transform: translateY(-1px);
        }

        /* 5. STICKY FOOTER (L'Action) */
        .sticky-footer {
            position: fixed;
            bottom: 0; left: 0; right: 0;
            padding: 24px;
            background: var(--glass);
            backdrop-filter: blur(var(--blur));
            -webkit-backdrop-filter: blur(var(--blur));
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            justify-content: flex-end;
            z-index: 200;
        }

        .footer-inner {
            width: 100%;
            max-width: var(--content-width);
            margin: 0 auto;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .main-btn {
            background: var(--accent);
            color: white;
            font-family: var(--font);
            font-size: 17px;
            font-weight: 600;
            padding: 16px 40px;
            border-radius: var(--radius-btn);
            border: none;
            cursor: pointer;
            transition: transform 0.1s, box-shadow 0.2s;
            box-shadow: 0 4px 24px rgba(238, 68, 8, 0.25);
        }
        .main-btn:active { transform: scale(0.97); }

        /* MOBILE ADAPTATION */
        @media (max-width: 600px) {
            h1 { font-size: 34px; }
            .subtitle { font-size: 18px; }
            .stage-container { padding: 40px 24px 120px; }
            .footer-inner { justify-content: center; }
            .main-btn { width: 100%; }
            .ai-toolbar { flex-direction: column; gap: 12px; align-items: flex-start; }
            .ai-btn { width: 100%; justify-content: center; }
        }

        /* Dashboard Section */
        .dashboard-section {
            display: none;
            min-height: 100vh;
            background-color: #080809;
            padding: 60px 40px;
        }

        .dashboard-section.active {
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }

        .dashboard-container {
            width: 100%;
            max-width: 1400px;
            padding: 48px 48px;
            margin: 0 auto;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
        }

        .dashboard-title {
            font-family: 'Inter', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: #FFFDF6;
            letter-spacing: -0.5px;
            margin: 0;
        }

        .btn-create {
            background-color: #EE4408;
            color: #FFFDF6;
            padding: 10px 20px;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            text-decoration: none;
        }

        .btn-create:hover {
            background-color: #FF6D2A;
            transform: translateY(-2px);
        }

        .btn-create-secondary {
            display: flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 8px 14px;
            border-radius: 6px;
            color: var(--color-text-secondary);
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            white-space: nowrap;
        }

        .btn-create-secondary:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.3);
            color: var(--color-text-primary);
        }

        /* Carrousel */
        .carousel-container {
            position: relative;
            width: 100%;
            overflow: visible;
            padding: 0 80px;
        }

        .carousel-wrapper {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-item {
            min-width: 100%;
            max-width: 100%;
            flex-shrink: 0;
            padding: 24px 16px 32px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

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

        .carousel-nav {
            display: flex;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            z-index: 10;
        }

        .carousel-nav:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-nav.disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .carousel-nav.disabled:hover {
            transform: translateY(-50%) scale(1);
        }

        .carousel-nav.left {
            left: -70px;
        }

        .carousel-nav.right {
            right: -70px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 24px;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .carousel-dot.active {
            background: #EE4408;
            width: 24px;
            border-radius: 4px;
        }

        /* Grid pour les cartes du carousel */
        .carousel-cards-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            align-items: stretch;
        }

        /* Plan d'Action (JALONS) span toute la largeur */
        .carousel-cards-grid > div:nth-child(3) {
            grid-column: 1 / -1;
        }

        /* Carte SMART Simplifiée */
        .smart-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 0;
            overflow: hidden;
        }

        .smart-card-item {
            padding: 12px 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: flex-start;
            gap: 12px;
            transition: background 0.2s ease;
        }

        .smart-card-item:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .smart-card-item:last-child {
            border-bottom: none;
        }

        .history-item {
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .history-item.active {
            background: rgba(238, 68, 8, 0.12);
            transform: translateX(2px);
        }

        .history-item.auto {
            opacity: 0.85;
        }

        .smart-circle {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(64, 64, 37, 0.2);
            border: 1.5px solid var(--color-focus-tracker);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: var(--color-focus-tracker);
            flex-shrink: 0;
        }

        .smart-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .smart-label {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: #C7C7CC;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0.9;
        }

        .smart-value {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            line-height: 1.5;
            color: #FFFFFF;
            font-weight: 500;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 16px 20px;
            }

            .navbar-logo {
                font-size: 1.2rem;
            }

            .navbar-links {
                gap: 16px;
            }

            .navbar-link {
                font-size: 0.85rem;
            }

            .navbar-link.cta {
                padding: 8px 16px;
            }

            .logo {
                width: 150px;
            }

            h1 {
                font-size: 4rem;
            }

            h2 {
                font-size: 2.5rem;
            }

            .tagline {
                font-size: 0.95rem;
                text-align: center;
            }

            .cta-button {
                font-size: 1rem;
                padding: 14px 36px;
            }

            .back-button {
                top: 20px;
                left: 20px;
                font-size: 0.9rem;
                padding: 10px 20px;
            }

            .manifest-text {
                font-size: 0.9rem;
                line-height: 1.5;
            }

            /* Objectif Section Mobile */
            .objectif-section {
                padding: 120px 24px 60px 24px;
                justify-content: flex-start;
            }

            .objectif-section > * {
                max-width: 100%;
            }

            .objectif-section h2 {
                font-size: 1.75rem;
                margin-bottom: 1.2rem;
            }

            .objectif-intro {
                font-size: 1rem;
                margin-bottom: 2rem;
                max-width: 100%;
                line-height: 1.6;
                color: rgba(255, 255, 255, 0.9);
            }

            .objectif-form {
                width: 100%;
            }

            .objectif-input {
                font-size: 1rem;
                padding: 16px 18px;
                min-height: 56px;
            }

            .prompt-button {
                font-size: 0.9rem;
                padding: 16px 24px;
                width: 100%;
                min-height: 52px;
            }

            .input-container {
                flex-direction: column;
                gap: 12px;
            }

            .hint-text {
                font-size: 0.85rem;
                margin: 12px 0 24px 0;
                color: rgba(255, 255, 255, 0.65);
            }

            .progress-stepper {
                top: 60px;
                padding: 8px 10px;
                gap: 4px;
                max-width: calc(100% - 20px);
            }

            .step {
                font-size: 0.65rem;
                padding: 6px 10px;
                white-space: nowrap;
                flex-shrink: 0;
            }

            .carousel-dots {
                bottom: 20px;
            }

            .carousel-dot {
                width: 6px;
                height: 6px;
            }

            .carousel-dot.active {
                width: 18px;
            }

            .carousel-indicator {
                top: 50px;
                font-size: 0.65rem;
            }

            .nav-arrow {
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
                opacity: 0.6;
                background-color: rgba(8, 8, 9, 0.5);
            }

            .nav-arrow:active {
                opacity: 1;
                background-color: rgba(238, 68, 8, 0.9);
            }

            .nav-arrow.left {
                left: 12px;
            }

            .nav-arrow.right {
                right: 12px;
            }

            .scroll-indicator {
                bottom: 60px;
                width: 28px;
                height: 28px;
            }

            .back-button {
                top: 15px;
                left: 15px;
                padding: 8px 16px;
                font-size: 0.85rem;
            }

            .nav-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .nav-arrow.left {
                left: 15px;
            }

            .nav-arrow.right {
                right: 15px;
            }

            /* Navbar Mobile */
            .navbar {
                padding: 0 var(--space-24);
            }

            .navbar-links {
                gap: var(--space-16);
            }

            .navbar-link {
                font-size: 13px;
            }

            /* Hero Section Mobile */
            .hero-section {
                padding-top: calc(var(--navbar-height) + var(--space-48));
                padding-bottom: var(--space-64);
            }

            /* Optimisation vidéo mobile */
            .hero-video-bg {
                object-position: center center;
                transform: scale(1.1);
            }

            .hero-overlay {
                background: linear-gradient(
                    135deg,
                    rgba(10, 10, 15, 0.9) 0%,
                    rgba(10, 10, 15, 0.8) 40%,
                    rgba(255, 94, 0, 0.15) 70%,
                    rgba(10, 10, 15, 0.85) 100%
                );
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 20px;
            }

            .hero-description {
                font-size: 15px;
            }

            .hero-ctas {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                min-width: auto;
            }

            /* Hero 5 Years Mobile */
            .hero-5years {
                background-attachment: scroll;
                align-items: flex-end;
                background-position: center center;
            }

            .hero-5years::before {
                background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
            }

            .hero-5years-content {
                margin-left: 0;
                max-width: 100%;
                padding: var(--space-32) var(--space-24);
                background: rgba(5, 6, 10, 0.85);
                border-radius: 16px 16px 0 0;
            }

            .hero-5years-title {
                font-size: 28px;
                text-align: center;
            }

            .hero-5years-subtitle {
                font-size: 16px;
                text-align: center;
            }

            .hero-5years-ctas {
                flex-direction: column;
                width: 100%;
            }

            .dashboard-title {
                font-size: 1.8rem;
                margin-bottom: 2rem;
            }

            .smart-card {
                border-radius: 12px;
            }

            .smart-card-item {
                padding: 20px;
                gap: 16px;
            }

            .smart-circle {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .smart-label {
                font-size: 0.85rem;
            }

            .smart-value {
                font-size: 0.85rem;
            }

            .dashboard-container {
                padding: 40px 16px;
            }

            .carousel-nav.left {
                left: 10px;
            }

            .carousel-nav.right {
                right: 10px;
            }

            .carousel-dots {
                margin-top: 16px;
            }

            /* Dashboard Mobile Optimisations */
            .dashboard-section {
                padding: 60px 0;
            }

            .dashboard-container {
                padding: 24px 16px;
                max-width: 100%;
            }

            .dashboard-header {
                flex-direction: column;
                gap: 16px;
                margin-bottom: 24px;
            }

            .dashboard-title {
                font-size: 1.5rem;
                text-align: center;
            }

            .btn-create {
                width: 100%;
            }

            /* Carousel Mobile */
            .carousel-cards-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .carousel-wrapper {
                overflow: visible;
            }

            .carousel-item {
                min-width: 100%;
                padding: 0 8px;
            }

            .carousel-nav {
                width: 40px;
                height: 40px;
            }

            .carousel-nav svg {
                width: 20px;
                height: 20px;
            }

            .carousel-nav.left {
                left: 8px;
            }

            .carousel-nav.right {
                right: 8px;
            }

            /* SMART Card Mobile */
            .smart-card {
                border-radius: 12px;
                padding: 0;
                min-height: auto !important;
            }

            .smart-card > div:first-child {
                padding: 12px 16px !important;
            }

            .smart-card-item {
                padding: 16px 18px;
                gap: 16px;
                align-items: flex-start;
                border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
            }

            .smart-circle {
                width: 28px;
                height: 28px;
                font-size: 0.8rem;
                min-width: 28px;
                flex-shrink: 0;
            }

            .smart-content {
                text-align: left;
                flex: 1;
                gap: 2px;
            }

            .smart-label {
                font-size: 0.7rem;
                text-transform: uppercase;
                letter-spacing: 0.3px;
                color: #B0B0B0;
                font-weight: 600;
                opacity: 0.8;
            }

            .smart-value {
                font-size: 0.75rem;
                line-height: 1.3;
                color: #FFFFFF;
            }
        }

        /* iPad et Landscape - Optimisations pour tablettes */
        @media (min-width: 769px) and (max-width: 1024px) {
            .dashboard-section {
                padding: 60px 20px;
            }

            .dashboard-container {
                max-width: 900px;
                padding: 40px 32px;
            }

            .carousel-cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            /* Objectif Section Tablet */
            .objectif-section {
                padding: 120px 24px 40px 24px;
            }

            .objectif-section > * {
                max-width: 80%;
            }

            .objectif-section h2 {
                font-size: 2rem;
            }

            .progress-stepper {
                padding: 6px 12px;
                gap: 4px;
            }

            .step {
                font-size: 0.65rem;
                padding: 5px 12px;
            }
        }

        /* iPad Pro et écrans larges */
        @media (min-width: 1025px) {
            .carousel-cards-grid {
                grid-template-columns: 1fr 1fr;
            }

            .dashboard-container {
                max-width: 1400px;
            }
        }

        /* Landscape Mode */
        @media (orientation: landscape) and (max-height: 600px) {
            .dashboard-section {
                padding: 40px 20px;
            }

            .carousel-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
        }

        /* Modal pour ajouter une mesure */
        .measure-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .measure-modal-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .measure-modal {
            background: #111113;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 32px;
            max-width: 480px;
            width: 90%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .measure-modal-title {
            font-size: 20px;
            font-weight: 600;
            color: #FFFDF6;
            margin-bottom: 8px;
            font-family: 'Inter', sans-serif;
        }

        .measure-modal-subtitle {
            font-size: 13px;
            color: #929292;
            margin-bottom: 24px;
            font-family: 'Inter', sans-serif;
        }

        .measure-form-group {
            margin-bottom: 20px;
        }

        .measure-form-label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: #404025;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            font-family: 'Inter', sans-serif;
        }

        .measure-form-input {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: #FFFDF6;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            transition: all 0.2s ease;
            box-sizing: border-box;
        }

        .measure-form-input:focus {
            outline: none;
            border-color: #404025;
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(64, 64, 37, 0.1);
        }

        .measure-form-input::placeholder {
            color: #666;
        }

        .measure-form-actions {
            display: flex;
            gap: 12px;
            margin-top: 28px;
        }

        .measure-btn {
            flex: 1;
            padding: 12px 16px;
            border: none;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .measure-btn-primary {
            background: #404025;
            color: #FFFDF6;
        }

        .measure-btn-primary:hover {
            background: #505032;
        }

        .measure-btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: #929292;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .measure-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .measure-error {
            color: #FF6B6B;
            font-size: 12px;
            margin-top: 6px;
            font-family: 'Inter', sans-serif;
            display: none;
        }

        .measure-error.show {
            display: block;
        }

        /* ============================================================
           SECTION 10: MANIFEST - Final Transformation CTA (Redesigned)
           ============================================================ */

        /* ─── CTA / Manifest Section ──────────────────────────────────── */
        .manifest-section {
            padding: 180px var(--space-24) 100px;
            background: var(--color-background-base);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .manifest-glow {
            position: absolute;
            top: 40%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            height: 600px;
            background: radial-gradient(ellipse at center, rgba(238, 68, 8, 0.10) 0%, rgba(238, 68, 8, 0.04) 40%, transparent 70%);
            pointer-events: none;
            filter: blur(40px);
        }

        .manifest-glow-secondary {
            position: absolute;
            bottom: -20%;
            left: 0;
            right: 0;
            height: 400px;
            background: radial-gradient(ellipse at center, rgba(238, 68, 8, 0.06) 0%, transparent 70%);
            pointer-events: none;
            filter: blur(60px);
        }

        .manifest-line-top {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 80px;
            background: linear-gradient(to bottom, transparent, rgba(238, 68, 8, 0.3), transparent);
        }

        .manifest-container {
            max-width: 640px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .manifest-overline {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--color-accent-action);
            margin-bottom: 32px;
            font-family: var(--font-primary);
            padding: 6px 16px;
            border: 1px solid rgba(238, 68, 8, 0.2);
            border-radius: 100px;
            background: rgba(238, 68, 8, 0.06);
        }

        .manifest-headline {
            font-family: var(--font-display);
            font-size: clamp(38px, 5vw, 60px);
            font-weight: normal;
            font-style: italic;
            color: var(--color-text-primary);
            line-height: 1.08;
            letter-spacing: -0.025em;
            margin-bottom: 24px;
        }

        .manifest-sub {
            font-size: 17px;
            color: var(--color-text-secondary);
            line-height: 1.7;
            margin-bottom: 52px;
            font-family: var(--font-primary);
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }

        .manifest-contract {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.3);
            margin-top: 24px;
            font-family: var(--font-primary);
            letter-spacing: 0.06em;
        }

        /* ─── CTA Demo Button ─────────────────────────────────────────── */
        .btn-cta-demo {
            padding: 18px 52px;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.04em;
            height: auto;
            border-radius: 10px;
            box-shadow:
                0 0 0 1px rgba(238, 68, 8, 0.3),
                0 8px 32px rgba(238, 68, 8, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .btn-cta-demo:hover {
            box-shadow:
                0 0 0 1px rgba(238, 68, 8, 0.5),
                0 20px 60px rgba(238, 68, 8, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .manifest-section {
                padding: 120px var(--space-24) 80px;
            }
            .manifest-headline {
                font-size: clamp(32px, 8vw, 44px);
            }
            .manifest-sub {
                font-size: 15px;
                margin-bottom: 40px;
            }
            .manifest-line-top {
                height: 48px;
            }
            .btn-cta-demo {
                padding: 16px 40px;
                width: 100%;
                max-width: 320px;
            }
        }

        /* ─── Site Footer ─────────────────────────────────────────────── */
        .site-footer {
            position: relative;
            background: #060607;
            border-top: none;
            padding: 0;
            font-family: var(--font-primary);
        }

        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            max-width: 600px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
        }

        .site-footer .footer-inner {
            position: relative;
            z-index: 1;
            max-width: 1120px;
            margin: 0 auto;
            padding: 32px 40px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
        }

        .site-footer .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .site-footer .footer-logo {
            width: 24px;
            height: 24px;
            opacity: 0.7;
        }

        .site-footer .footer-tagline {
            font-size: 12px;
            color: rgba(255,255,255,0.28);
            font-weight: 400;
            letter-spacing: 0;
            white-space: nowrap;
            margin: 0;
        }

        .site-footer .footer-nav {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .site-footer .footer-nav a {
            font-size: 12px;
            color: rgba(255,255,255,0.38);
            text-decoration: none;
            transition: color 0.25s ease;
            white-space: nowrap;
            letter-spacing: 0.01em;
        }

        .site-footer .footer-nav a:hover {
            color: rgba(255,255,255,0.7);
        }

        .site-footer .footer-nav a.footer-nav-accent {
            color: var(--color-accent-action);
            font-weight: 500;
        }

        .site-footer .footer-nav a.footer-nav-accent:hover {
            color: #ff5a20;
        }

        .site-footer .footer-contact a {
            font-size: 12px;
            color: rgba(255,255,255,0.28);
            text-decoration: none;
            transition: color 0.25s ease;
            white-space: nowrap;
        }

        .site-footer .footer-contact a:hover {
            color: rgba(255,255,255,0.6);
        }

        .site-footer .footer-social {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .site-footer .footer-social a {
            color: rgba(255,255,255,0.25);
            transition: color 0.25s ease;
            display: flex;
            align-items: center;
        }

        .site-footer .footer-social a:hover {
            color: var(--color-accent-action);
        }

        .site-footer .footer-bottom {
            position: relative;
            z-index: 1;
            max-width: 1120px;
            margin: 20px auto 0;
            padding: 16px 40px 20px;
            border-top: 1px solid rgba(255,255,255,0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            color: rgba(255,255,255,0.16);
        }

        .site-footer .footer-bottom a {
            color: rgba(255,255,255,0.2);
            text-decoration: none;
            transition: color 0.25s ease;
        }

        .site-footer .footer-bottom a:hover {
            color: rgba(255,255,255,0.45);
        }

        .site-footer .footer-bottom-sep {
            display: inline-block;
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            margin: 0 12px;
            vertical-align: middle;
        }

        @media (max-width: 768px) {
            .site-footer .footer-inner {
                flex-wrap: wrap;
                padding: 24px 20px 0;
                gap: 16px 24px;
                justify-content: center;
            }
            .site-footer .footer-brand {
                width: 100%;
                justify-content: center;
            }
            .site-footer .footer-nav {
                gap: 16px;
            }
            .site-footer .footer-bottom {
                padding: 14px 20px 16px;
                flex-wrap: wrap;
                justify-content: center;
                gap: 4px 0;
            }
        }

        @media (max-width: 480px) {
            .site-footer .footer-nav {
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px 16px;
            }
            .site-footer .footer-contact {
                width: 100%;
                text-align: center;
            }
        }

        /* ============================================================
           RESPONSIVE HARDENING - INDEX
           ============================================================ */

        img,
        svg,
        video,
        canvas {
            max-width: 100%;
        }

        .hero-content,
        .pain-content,
        .problem-text,
        .feature-text,
        .feature-visual,
        .sk-card,
        .cin-db-inner,
        .cin-dashboard,
        .vals-content,
        .founder-text,
        .site-footer .footer-inner > * {
            min-width: 0;
        }

        @media (max-width: 1024px) {
            .hero-content {
                max-width: min(820px, calc(100% - 48px));
            }

            .problem-item {
                gap: 24px;
                align-items: flex-start;
            }

            .problem-visual {
                width: min(240px, 34vw);
                height: auto;
                aspect-ratio: 14 / 8;
            }

            .feature-block {
                gap: 48px;
            }

            .feature-blocks {
                padding-left: 24px;
                padding-right: 24px;
            }

            .cinema-section {
                height: clamp(700px, 100svh, 960px);
            }
        }

        @media (max-width: 768px) {
            .navbar {
                min-height: var(--navbar-height);
                padding: max(12px, env(safe-area-inset-top)) 16px 12px;
                gap: 10px;
            }

            .navbar-logo {
                font-size: 0.98rem;
                white-space: nowrap;
                letter-spacing: -0.04em;
                min-height: 44px;
                display: inline-flex;
                align-items: center;
            }

            .navbar-links {
                gap: 8px;
                flex-wrap: nowrap;
                justify-content: flex-end;
            }

            .navbar-link {
                font-size: 11px;
                min-height: 44px;
                display: inline-flex;
                align-items: center;
                padding-left: 4px;
                padding-right: 4px;
            }

            .navbar-link.cta {
                padding: 0 11px;
                min-height: 44px;
            }

            .hero-section {
                min-height: 100svh;
                height: 100svh;
                padding: calc(var(--navbar-height) + env(safe-area-inset-top, 0px) + 10px) 0 20px;
            }

            .hero-content {
                width: 100%;
                max-width: 100%;
                padding: 0 16px;
                min-height: calc(100svh - var(--navbar-height) - env(safe-area-inset-top, 0px) - 30px);
                justify-content: center;
                gap: 14px;
            }

            .hero-overline {
                font-size: 11px;
                letter-spacing: 0.16em;
            }

            .hero-title {
                font-size: 32px;
                line-height: 0.96;
                max-width: none;
                text-wrap: unset;
                letter-spacing: -0.03em;
            }

            .hero-title-mobile .hero-title-line:first-child {
                font-size: 0.84em;
                opacity: 0.68;
            }

            .hero-title-mobile .hero-title-line:nth-child(2) {
                font-size: 0.94em;
                opacity: 0.9;
            }

            .hero-title-mobile .hero-title-line:nth-child(3) {
                font-size: 1.12em;
            }

            .hero-title-desktop {
                display: none;
            }

            .hero-title-mobile {
                display: block;
            }

            .hero-title + .hero-subtitle {
                margin-top: 4px;
            }

            .hero-subtitle {
                font-size: 14px;
                line-height: 1.5;
                max-width: 18em;
                text-wrap: balance;
            }

            .hero-subtitle-desktop,
            .btn-label-desktop,
            .hero-description,
            .hero-reassurance,
            .features-grid {
                display: none;
            }

            .hero-subtitle-mobile,
            .btn-label-mobile {
                display: inline;
            }

            .hero-ctas {
                width: 100%;
                max-width: 280px;
                align-self: center;
                gap: 10px;
                margin-top: 8px;
            }

            .btn {
                width: 100%;
                min-height: 46px;
                height: 46px;
                padding: 0 18px;
                font-size: 15px;
            }

            .hero-video-bg {
                object-position: center center;
                transform: scale(1.08);
            }

            .hero-section .scroll-indicator {
                position: absolute;
                left: 0;
                right: 0;
                bottom: 34px;
                padding: 0;
                width: 100%;
                height: auto;
                justify-content: center;
                align-items: center;
                text-align: center;
            }

            .hero-scroll-label {
                display: inline;
                font-size: 13px;
                font-weight: 600;
                color: rgba(255, 255, 255, 0.82);
                letter-spacing: -0.01em;
                max-width: 240px;
                line-height: 1.35;
            }

            .hero-section .scroll-indicator svg {
                color: rgba(255, 255, 255, 0.55);
            }

            .pain-section,
            .market-gap-section,
            .solution-section,
            .duality-section,
            .vals-section,
            .founder-section,
            .manifest-section {
                padding-left: 20px;
                padding-right: 20px;
            }

            .pain-inner,
            .mg-container,
            .feature-blocks,
            .founder-inner {
                max-width: 100%;
                padding-left: 0;
                padding-right: 0;
            }

            .problem-item {
                flex-direction: column;
                gap: 16px;
            }

            .problem-visual {
                width: 100%;
                max-width: none;
                min-height: 140px;
                aspect-ratio: 16 / 9;
            }

            .feature-blocks {
                gap: 60px;
            }

            .feature-block {
                gap: 22px;
            }

            .solution-section .feature-block:nth-child(even) .feature-text,
            .differentiation-section .feature-block:nth-child(even) .feature-text {
                order: 2;
            }

            .solution-section .feature-block:nth-child(even) .feature-visual,
            .differentiation-section .feature-block:nth-child(even) .feature-visual {
                order: 1;
            }

            .solution-section {
                padding-top: 20px;
                padding-bottom: 84px;
            }

            .sol-header {
                width: min(100%, 326px);
                max-width: 100%;
                margin: 0 auto 34px;
                padding: 0;
                text-align: center;
            }

            .sol-header .section-overline {
                margin-bottom: 10px;
            }

            .sol-header h2 {
                font-size: clamp(26px, 6.2vw, 38px);
                line-height: 1.04;
                letter-spacing: -0.04em;
                margin-bottom: 10px;
                max-width: none;
                width: 100%;
                margin-left: auto;
                margin-right: auto;
                text-wrap: balance;
            }

            .sol-header .section-subtitle {
                max-width: none;
                width: 100%;
                margin: 0 auto;
                font-size: 13px;
                line-height: 1.46;
                color: rgba(255, 255, 255, 0.54);
                text-wrap: balance;
            }

            .sol-subtitle-desktop {
                display: none;
            }

            .sol-subtitle-mobile {
                display: inline;
            }

            .feature-text,
            .feature-visual {
                width: min(100%, 326px);
                margin-left: auto;
                margin-right: auto;
            }

            .feature-visual {
                order: 1;
            }

            .feature-text {
                order: 2;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }

            .feature-step {
                margin-bottom: 7px;
                font-size: 10px;
                letter-spacing: 0.14em;
                color: rgba(255, 255, 255, 0.48);
            }

            .feature-title {
                font-size: 1.32rem;
                line-height: 1.06;
                letter-spacing: -0.03em;
                margin-bottom: 10px;
                max-width: none;
                width: 100%;
                text-wrap: balance;
            }

            .feature-desc {
                font-size: 0.88rem;
                line-height: 1.56;
                max-width: none;
                width: 92%;
                color: rgba(255, 255, 255, 0.48);
            }

            .feature-desc-desktop {
                display: none;
            }

            .feature-desc-mobile {
                display: inline;
            }

            .sk-card {
                padding: 20px;
                border-radius: 18px;
                min-height: unset;
            }

            .sk-timeline {
                overflow-x: auto;
                padding-bottom: 8px;
            }

            .sk-db-grid {
                grid-template-columns: 1fr;
            }

            /* ── Cinema section mobile : layout normal flow ── */
            .cinema-section {
                height: auto;
                min-height: auto;
                overflow: visible;
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                padding-top: calc(var(--navbar-height) + 32px);
                padding-bottom: 60px;
            }

            .cin-quote-wrap {
                display: none;
            }

            .cin-header {
                position: relative;
                top: auto;
                padding: 0 20px 28px;
                text-align: center;
            }

            .cin-dashboard-wrap {
                position: relative;
                inset: auto;
                display: block;
                padding: 0;
                opacity: 1 !important;
                filter: none !important;
                transform: none !important;
                pointer-events: auto !important;
            }

            .cin-db-inner,
            .cin-dashboard {
                width: 100%;
                max-width: 100%;
            }

            .cin-db-inner {
                padding: 0 16px;
            }

            .cin-db-epic-title {
                display: none;
            }

            .cin-dashboard {
                min-height: auto !important;
                padding: 18px !important;
                gap: 18px !important;
                transform: none !important;
            }

            .cin-dashboard .sk-db-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .cin-scroll-hint {
                position: relative;
                bottom: auto;
                padding: 0 20px;
                margin-top: 32px;
            }

            .cin-scroll-label {
                max-width: 290px;
                text-align: center;
            }

            .mental-oscillator {
                min-height: 220px;
                margin-bottom: 72px;
            }

            .mental-state {
                width: 100%;
            }

            .vals-item {
                gap: 20px;
                align-items: flex-start;
            }

            .vals-word,
            .founder-quote,
            .diff-nord-line,
            .manifest-headline {
                text-wrap: balance;
            }

            .founder-inner {
                margin: 0 auto;
            }

            .founder-photo {
                align-self: flex-start;
            }

            .site-footer .footer-inner {
                padding-left: 20px;
                padding-right: 20px;
            }

            .site-footer .footer-tagline,
            .site-footer .footer-contact a {
                white-space: normal;
                text-align: center;
            }

            .site-footer .footer-nav a {
                padding: 12px 0;
                display: inline-flex;
                align-items: center;
                min-height: 44px;
            }

            .site-footer .footer-social a {
                padding: 14px;
                min-height: 44px;
                min-width: 44px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            :root {
                --navbar-height: 64px;
                --space-24: 20px;
                --space-32: 24px;
                --space-48: 32px;
                --space-64: 48px;
            }

            .navbar {
                align-items: center;
            }

            .navbar-logo {
                font-size: 0.92rem;
            }

            .navbar-links {
                width: auto;
                justify-content: flex-end;
                gap: 6px;
            }

            .hero-title {
                font-size: 29px;
            }

            .hero-subtitle {
                font-size: 13px;
            }

            .hero-section {
                padding-top: calc(var(--navbar-height) + 8px);
                padding-bottom: 18px;
            }

            .btn {
                min-height: 44px;
                height: 44px;
                font-size: 14px;
            }

            .pain-item {
                grid-template-columns: 1fr;
            }

            .pain-number {
                padding-top: 0;
            }

            .pain-row {
                align-items: flex-start;
                gap: 12px;
            }

            .pain-title {
                font-size: 22px;
            }

            .pain-body,
            .mg-subtitle,
            .feature-desc,
            .founder-story,
            .manifest-sub {
                font-size: 14px;
                line-height: 1.65;
            }

            .problem-title {
                font-size: 1.1rem;
            }

            .feature-step {
                margin-bottom: 8px;
                font-size: 10px;
                letter-spacing: 0.14em;
                color: rgba(255, 255, 255, 0.48);
            }

            .solution-section {
                padding-top: 14px;
                padding-bottom: 76px;
            }

            .sol-header {
                margin-bottom: 28px;
            }

            .sol-header h2 {
                font-size: 1.7rem;
                line-height: 1.02;
                margin-bottom: 10px;
                max-width: none;
                width: 100%;
                text-wrap: balance;
            }

            .sol-header .section-subtitle {
                max-width: none;
                width: 100%;
                font-size: 12px;
                line-height: 1.42;
            }

            .feature-blocks {
                gap: 48px;
            }

            .feature-block {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .solution-section .feature-block:nth-child(even) .feature-text,
            .differentiation-section .feature-block:nth-child(even) .feature-text {
                order: 2;
            }

            .solution-section .feature-block:nth-child(even) .feature-visual,
            .differentiation-section .feature-block:nth-child(even) .feature-visual {
                order: 1;
            }

            .feature-text,
            .feature-visual {
                width: min(100%, 326px);
            }

            .feature-visual {
                order: 1;
            }

            .feature-text {
                order: 2;
            }

            .feature-step {
                font-size: 12px;
                letter-spacing: 0.11em;
                margin-bottom: 10px;
            }

            .feature-title {
                font-size: 1.18rem;
                line-height: 1.12;
                margin-bottom: 12px;
                max-width: none;
                width: 100%;
                text-wrap: balance;
            }

            .feature-desc {
                font-size: 0.88rem;
                line-height: 1.52;
                max-width: none;
                width: 100%;
                color: rgba(255, 255, 255, 0.5);
            }

            .feature-desc-desktop {
                display: none;
            }

            .feature-desc-mobile {
                display: inline;
            }

            .sk-card-dashboard {
                min-height: 280px;
            }

            .sk-kpi-value {
                font-size: 48px;
            }

            .sk-ml-lbl {
                font-size: 8px;
            }

            .cin-db-inner {
                padding: 0 14px;
            }

            .cin-dashboard {
                padding: 14px !important;
            }

            .cin-smart-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .cin-dashboard .sk-db-srow {
                align-items: flex-start;
            }

            .cin-db-task-label {
                line-height: 1.35;
            }

            .diff-statement,
            .diff-nord,
            .differentiation-section .feature-blocks {
                padding-left: 20px;
                padding-right: 20px;
            }
        }

        @media (max-width: 768px) {
            .pain-section {
                padding: 96px 20px 80px;
                border-top: 1px solid rgba(255, 255, 255, 0.05);
            }

            .pain-section .section-overline {
                display: block;
                margin-bottom: 10px;
                font-size: 10px;
                letter-spacing: 0.16em;
                color: rgba(255, 255, 255, 0.42);
            }

            .pain-inner {
                max-width: 100%;
            }

            .pain-content {
                min-width: 0;
            }

            .pain-list {
                margin: 40px 0 28px;
            }

            .pain-item {
                grid-template-columns: 52px 1fr;
                gap: 18px;
                padding: 34px 0;
                align-items: start;
            }

            .pain-number {
                font-size: 18px;
                line-height: 1;
                letter-spacing: 0.08em;
                padding-top: 2px;
            }

            .pain-row {
                gap: 12px;
                margin-bottom: 14px;
                align-items: flex-start;
            }

            .pain-title {
                flex: 1;
                font-size: clamp(18px, 4.8vw, 23px);
                line-height: 1.06;
                max-width: none;
                width: 100%;
                letter-spacing: -0.04em;
                text-wrap: balance;
            }

            .pain-icon {
                width: 32px;
                height: 32px;
                margin-top: 3px;
            }

            .pain-body {
                font-size: 13.5px;
                line-height: 1.66;
                max-width: none;
                width: 92%;
                color: rgba(255, 255, 255, 0.58);
            }

            .pain-conclusion {
                font-size: 14px;
                line-height: 1.45;
                max-width: 24ch;
                margin-top: 8px;
            }

            .pain-desktop {
                display: none;
            }

            .pain-mobile {
                display: inline;
            }
        }

        @media (max-width: 480px) {
            .pain-section {
                padding: 88px 20px 72px;
            }

            .pain-list {
                margin-top: 34px;
            }

            .pain-item {
                grid-template-columns: 44px 1fr;
                gap: 14px;
                padding: 30px 0;
            }

            .pain-number {
                font-size: 16px;
            }

            .pain-title {
                font-size: 18px;
                max-width: none;
                width: 100%;
            }

            .pain-icon {
                width: 28px;
                height: 28px;
            }

            .pain-body {
                font-size: 13px;
                line-height: 1.64;
                max-width: none;
                width: 92%;
            }

            .pain-conclusion {
                display: block;
                font-size: 13px;
                line-height: 1.5;
                max-width: 24ch;
            }
        }

        @media (max-width: 768px) {
            .market-gap-section {
                padding: 48px 20px 18px;
            }

            .mg-header {
                margin-bottom: 52px;
            }

            .mg-overline {
                margin-bottom: 14px;
            }

            .mg-title {
                margin-bottom: 26px;
                max-width: none;
                width: 100%;
                text-wrap: balance;
            }

            .mg-subtitle {
                max-width: none;
                width: 100%;
                margin-left: auto;
                margin-right: auto;
                line-height: 1.55;
            }

            .problem-copy-desktop {
                display: none;
            }

            .problem-copy-mobile {
                display: inline;
            }

            .problem-list {
                gap: 56px;
                margin-bottom: 28px;
            }

            .section-bridge {
                display: flex;
                margin-top: 10px;
            }

            .problem-item {
                align-items: center;
                gap: 22px;
            }

            .problem-item:not(:last-child) {
                padding-bottom: 18px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

            .problem-visual,
            .problem-text {
                width: min(100%, 356px);
                margin-left: auto;
                margin-right: auto;
            }

            .problem-visual {
                min-height: 132px;
                aspect-ratio: 16 / 8.8;
                padding: 18px 20px;
                border-radius: 18px;
            }

            .problem-text {
                text-align: left;
                padding: 0 2px;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }

            .problem-title {
                font-size: 1.42rem;
                line-height: 1.12;
                margin-bottom: 16px;
                letter-spacing: -0.025em;
                max-width: none;
                width: 100%;
                text-wrap: balance;
            }

            .problem-highlight {
                font-size: 1rem;
                font-weight: 600;
                line-height: 1.38;
                margin-bottom: 8px;
                color: rgba(255, 255, 255, 0.82);
                width: 100%;
            }

            .problem-desc {
                font-size: 0.95rem;
                line-height: 1.72;
                max-width: none;
                width: 92%;
                color: rgba(255, 255, 255, 0.46);
            }

            .prob-grid-dots {
                gap: 6px;
                max-width: 100%;
            }

            .prob-streak-cards {
                gap: 8px;
            }

            .prob-scard {
                width: 42px;
                height: 58px;
                border-radius: 10px;
            }
        }

        @media (max-width: 480px) {
            .market-gap-section {
                padding: 44px 20px 12px;
            }

            .mg-header {
                margin-bottom: 46px;
            }

            .mg-subtitle {
                max-width: none;
                width: 100%;
                font-size: 0.95rem;
            }

            .problem-list {
                gap: 44px;
            }

            .section-bridge {
                margin-top: 8px;
                gap: 6px;
            }

            .section-bridge-label {
                font-size: 10px;
                letter-spacing: 0.13em;
            }

            .problem-visual,
            .problem-text {
                width: min(100%, 326px);
            }

            .problem-visual {
                min-height: 122px;
                padding: 16px 18px;
                border-radius: 16px;
            }

            .problem-title {
                font-size: 1.18rem;
                line-height: 1.14;
                margin-bottom: 16px;
                max-width: none;
                width: 100%;
                text-wrap: balance;
            }

            .problem-highlight {
                font-size: 0.92rem;
                font-weight: 600;
                line-height: 1.4;
                margin-bottom: 6px;
                width: 100%;
            }

            .problem-desc {
                font-size: 0.88rem;
                line-height: 1.7;
                max-width: none;
                width: 92%;
            }

            .prob-grid-dots {
                gap: 6px;
            }

            .prob-todo {
                gap: 8px;
            }

            .prob-todo-row {
                gap: 8px;
            }

            .prob-todo-check {
                width: 11px;
                height: 11px;
            }

            .prob-todo-bar {
                height: 8px;
            }

            .prob-scard {
                width: 40px;
                height: 56px;
                border-radius: 9px;
            }

            .prob-sunburst svg {
                width: 50px;
                height: 48px;
            }
        }

        @media (hover: none) and (pointer: coarse) {
            .hero-title-desktop,
            .hero-subtitle-desktop,
            .btn-label-desktop,
            .hero-description,
            .hero-reassurance,
            .features-grid,
            .pain-desktop,
            .problem-copy-desktop,
            .sol-subtitle-desktop,
            .feature-desc-desktop {
                display: none !important;
            }

            .hero-title-mobile,
            .hero-subtitle-mobile,
            .btn-label-mobile,
            .pain-mobile,
            .problem-copy-mobile,
            .sol-subtitle-mobile,
            .feature-desc-mobile {
                display: inline !important;
            }

            .hero-title-mobile {
                display: block !important;
            }

            .hero-section {
                min-height: 100svh;
                height: 100svh;
                padding: calc(var(--navbar-height) + env(safe-area-inset-top, 0px) + 10px) 0 20px;
            }

            .hero-content {
                width: 100%;
                max-width: 100%;
                padding: 0 16px;
                min-height: calc(100svh - var(--navbar-height) - env(safe-area-inset-top, 0px) - 30px);
                justify-content: center;
                gap: 14px;
            }

            .hero-title {
                font-size: 32px;
                line-height: 0.96;
                max-width: none;
                text-wrap: unset;
                letter-spacing: -0.03em;
            }

            .hero-title-mobile .hero-title-line:first-child {
                font-size: 0.84em;
                opacity: 0.68;
            }

            .hero-title-mobile .hero-title-line:nth-child(2) {
                font-size: 0.94em;
                opacity: 0.9;
            }

            .hero-title-mobile .hero-title-line:nth-child(3) {
                font-size: 1.12em;
            }

            .hero-title + .hero-subtitle {
                margin-top: 4px;
            }

            .hero-subtitle {
                font-size: 14px;
                line-height: 1.5;
                max-width: 18em;
                text-wrap: balance;
            }

            .hero-ctas {
                width: 100%;
                max-width: 280px;
                align-self: center;
                gap: 10px;
                margin-top: 8px;
            }

            .btn {
                width: 100%;
                min-height: 46px;
                height: 46px;
                padding: 0 18px;
                font-size: 15px;
            }

            .hero-section .scroll-indicator {
                position: absolute;
                left: 0;
                right: 0;
                bottom: 34px;
                padding: 0;
                width: 100%;
                height: auto;
                justify-content: center;
                align-items: center;
                text-align: center;
            }

            .hero-scroll-label {
                display: inline;
                font-size: 13px;
                font-weight: 600;
                color: rgba(255, 255, 255, 0.82);
                letter-spacing: -0.01em;
                max-width: 240px;
                line-height: 1.35;
            }

            .pain-section,
            .market-gap-section,
            .solution-section,
            .differentiation-section,
            .vals-section,
            .founder-section,
            .manifest-section {
                padding-left: 20px;
                padding-right: 20px;
            }

            .pain-inner,
            .mg-container,
            .feature-blocks,
            .founder-inner {
                max-width: 100%;
                padding-left: 0;
                padding-right: 0;
            }

            .pain-item {
                grid-template-columns: 44px 1fr;
                gap: 14px;
                padding: 30px 0;
            }

            .pain-title {
                font-size: 18px;
                max-width: none;
                width: 100%;
            }

            .pain-body {
                font-size: 13px;
                line-height: 1.64;
                max-width: none;
                width: 92%;
            }

            .market-gap-section {
                padding-top: 44px;
                padding-bottom: 12px;
            }

            .mg-header {
                margin-bottom: 46px;
            }

            .mg-title,
            .mg-subtitle {
                max-width: none;
                width: 100%;
            }

            .mg-bento {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }

            .mg-card--large,
            .mg-card--tall,
            .mg-card--small,
            .mg-card--mini { grid-column: 1; grid-row: auto; }

            .problem-list {
                gap: 44px;
            }

            .problem-item {
                flex-direction: column;
                gap: 16px;
            }

            .problem-visual,
            .problem-text {
                width: min(100%, 326px);
                margin-left: auto;
                margin-right: auto;
            }

            .problem-visual {
                min-height: 122px;
                padding: 16px 18px;
                border-radius: 16px;
            }

            .problem-title {
                font-size: 1.18rem;
                line-height: 1.14;
                margin-bottom: 16px;
                max-width: none;
                width: 100%;
                text-wrap: balance;
            }

            .problem-highlight {
                font-size: 0.92rem;
                line-height: 1.4;
                margin-bottom: 6px;
                width: 100%;
            }

            .problem-desc {
                font-size: 0.88rem;
                line-height: 1.7;
                max-width: none;
                width: 92%;
            }

            .solution-section {
                padding-top: 14px;
                padding-bottom: 76px;
            }

            .sol-header {
                width: min(100%, 326px);
                margin: 0 auto 28px;
                padding: 0;
                text-align: center;
            }

            .sol-header h2 {
                font-size: 1.7rem;
                line-height: 1.02;
                margin-bottom: 10px;
                max-width: none;
                width: 100%;
                text-wrap: balance;
            }

            .sol-header .section-subtitle {
                max-width: none;
                width: 100%;
                font-size: 12px;
                line-height: 1.42;
            }

            .feature-blocks {
                gap: 48px;
            }

            .feature-block {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .solution-section .feature-block:nth-child(even) .feature-text,
            .differentiation-section .feature-block:nth-child(even) .feature-text {
                order: 2;
            }

            .solution-section .feature-block:nth-child(even) .feature-visual,
            .differentiation-section .feature-block:nth-child(even) .feature-visual {
                order: 1;
            }

            .feature-text,
            .feature-visual {
                width: min(100%, 326px);
                margin-left: auto;
                margin-right: auto;
            }

            .feature-step {
                font-size: 10px;
                letter-spacing: 0.14em;
                margin-bottom: 8px;
            }

            .feature-title {
                font-size: 1.18rem;
                line-height: 1.12;
                margin-bottom: 12px;
                max-width: none;
                width: 100%;
                text-wrap: balance;
            }

            .feature-desc {
                font-size: 0.88rem;
                line-height: 1.52;
                max-width: none;
                width: 92%;
            }

            .diff-statement,
            .diff-nord,
            .differentiation-section .feature-blocks {
                padding-left: 20px;
                padding-right: 20px;
            }

            .diff-feat-name,
            .diff-feat-desc,
            .diff-nord-line {
                max-width: none;
                width: 100%;
            }
        }

        body.is-mobile .hero-title-desktop,
        body.is-mobile .hero-subtitle-desktop,
        body.is-mobile .btn-label-desktop,
        body.is-mobile .hero-description,
        body.is-mobile .hero-reassurance,
        body.is-mobile .features-grid,
        body.is-mobile .pain-desktop,
        body.is-mobile .problem-copy-desktop,
        body.is-mobile .sol-subtitle-desktop,
        body.is-mobile .feature-desc-desktop {
            display: none !important;
        }

        body.is-mobile .hero-title-mobile,
        body.is-mobile .hero-subtitle-mobile,
        body.is-mobile .btn-label-mobile,
        body.is-mobile .pain-mobile,
        body.is-mobile .problem-copy-mobile,
        body.is-mobile .sol-subtitle-mobile,
        body.is-mobile .feature-desc-mobile {
            display: inline !important;
        }

        body.is-mobile .hero-title-mobile {
            display: block !important;
        }

        body.is-mobile .hero-section {
            min-height: 100svh;
            height: 100svh;
            padding: calc(var(--navbar-height) + env(safe-area-inset-top, 0px) + 10px) 0 20px;
        }

        body.is-mobile .hero-content {
            width: 100%;
            max-width: 100%;
            padding: 0 16px;
            min-height: calc(100svh - var(--navbar-height) - env(safe-area-inset-top, 0px) - 30px);
            justify-content: center;
            gap: 14px;
        }

        body.is-mobile .hero-title {
            font-size: 32px;
            line-height: 0.96;
            max-width: none;
            text-wrap: unset;
            letter-spacing: -0.03em;
        }

        body.is-mobile .hero-title-mobile .hero-title-line:first-child {
            font-size: 0.84em;
            opacity: 0.68;
        }

        body.is-mobile .hero-title-mobile .hero-title-line:nth-child(2) {
            font-size: 0.94em;
            opacity: 0.9;
        }

        body.is-mobile .hero-title-mobile .hero-title-line:nth-child(3) {
            font-size: 1.12em;
        }

        body.is-mobile .hero-title + .hero-subtitle {
            margin-top: 4px;
        }

        body.is-mobile .hero-subtitle {
            font-size: 14px;
            line-height: 1.5;
            max-width: 18em;
            text-wrap: balance;
        }

        body.is-mobile .hero-ctas {
            width: 100%;
            max-width: 280px;
            align-self: center;
            gap: 10px;
            margin-top: 8px;
        }

        body.is-mobile .btn {
            width: 100%;
            min-height: 46px;
            height: 46px;
            padding: 0 18px;
            font-size: 15px;
        }

        body.is-mobile .hero-section .scroll-indicator {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 34px;
            padding: 0;
            width: 100%;
            height: auto;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        body.is-mobile .hero-scroll-label {
            display: inline;
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.82);
            letter-spacing: -0.01em;
            max-width: 240px;
            line-height: 1.35;
        }
