/* =====================================================================
   Onboarding Agency — recueil du besoin pour un site internet
   ---------------------------------------------------------------------
   Peau héritée de l'onboarding VideoFunnel (sol clair, cartes blanches,
   violet franc, gros titres Manrope). Un tunnel en colonne unique — les
   ÉTAPES occupent le centre de l'en-tête.

   Parti pris : des BLOCS gros et respirants, un par question, empilés dans
   une colonne principale ; l'aside (conseils, repères) colle à l'écran.
   Cartes et pastilles cliquables partout : le client clique d'abord,
   écrit ensuite.
   ===================================================================== */

:root {
    --font: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    --display: Sora, "DM Sans", Inter, sans-serif;

    --ink: #252336;
    --ink-2: #47445a;
    --muted: #6f6d7d;
    --faint: #8b8898;

    --paper: #ffffff;
    --ground: #f7f6f3;
    --ground-2: #efedf2;
    --line: #e5e2e8;
    --line-strong: #d6d1dc;

    --purple: #6657e8;
    --purple-dark: #5142cc;
    --purple-soft: #f0edff;
    --purple-line: #d7d0fb;
    --green: #239b6b;
    --green-soft: #eaf7f1;
    --green-ink: #3f705e;
    --amber: #c88325;
    --amber-soft: #fff5e5;
    --red: #d2483a;
    --red-soft: #fdecea;
    --red-ink: #8c2f24;

    --shadow: 0 18px 50px rgba(38, 34, 57, .09);
    --shadow-soft: 0 5px 18px rgba(38, 34, 57, .06);
    --ring-focus: 0 0 0 4px rgba(102, 87, 232, .12);

    --flame: linear-gradient(100deg, #6657E8 0%, #A34FE0 38%, #EE5D68 74%, #F5A73B 100%);
    --progress: linear-gradient(90deg, var(--purple), #a067e4, #e06a5a);
    --cta: linear-gradient(135deg, #6b5be9, #5948d5);
    --cta-final: linear-gradient(135deg, var(--purple), #c65550);

    --radius: 18px;
    --radius-lg: 26px;
    --ease: cubic-bezier(.22, 1, .36, 1);

    --header-h: 84px;
    --navbar-h: 86px;
}

* { box-sizing: border-box; }
html, body { width: 100%; height: 100%; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--ground);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

button, input, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
:focus-visible { outline: 3px solid var(--purple); outline-offset: 3px; border-radius: 8px; }

svg {
    width: 20px; height: 20px; flex: none;
    fill: none; stroke: currentColor;
    stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}

.hidden { display: none !important; }

/* ---------- Voix typographiques partagées ---------- */
.eyebrow {
    display: block;
    color: var(--purple);
    font-size: 13.5px; font-weight: 800;
    letter-spacing: .06em; text-transform: uppercase;
}
.small { font-size: 13px; color: var(--muted); line-height: 1.5; }

.tag {
    display: inline-flex; align-items: center;
    padding: 4px 11px; border-radius: 999px;
    font-size: 12.5px; font-weight: 700;
    color: var(--muted); background: var(--ground-2);
}
.tag svg { width: 13px; height: 13px; }
.tag.indigo { color: var(--purple-dark); background: var(--purple-soft); }
.tag.amber  { color: var(--amber); background: var(--amber-soft); }
.tag.green  { color: var(--green-ink); background: var(--green-soft); }

/* =====================================================================
   Coquille : en-tête / zone de travail / barre de navigation
   ===================================================================== */
.shell {
    display: grid;
    width: 100%; min-width: 0; height: 100%;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: var(--header-h) minmax(0, 1fr) auto;
}

.top {
    position: relative; z-index: 20;
    display: grid;
    /* La marque et les actions prennent leur largeur naturelle, les étapes
       gardent tout le reste : leurs libellés ne sont jamais tronqués. */
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center; justify-content: space-between;
    gap: 18px; padding: 0 26px;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.brand { display: inline-flex; width: fit-content; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { display: inline-flex; align-items: center; }
.brand-lockup { display: block; width: auto; height: 34px; object-fit: contain; flex: none; }
.brand-mark-compact { display: none; width: 36px; height: 36px; object-fit: contain; flex: none; }
.brand-logo.lg { justify-content: center; }
.brand-logo.lg .brand-lockup { height: 62px; }
.brand-pill {
    padding: 4px 9px; border-radius: 999px;
    color: var(--purple-dark); background: var(--purple-soft);
    font-size: 13px; font-weight: 700; white-space: nowrap;
}


/* Les étapes : au centre, grandes, toujours lisibles. */
.journey-nav { width: 100%; min-width: 0; }
.steps { display: flex; align-items: stretch; justify-content: center; gap: 4px; }
.step-seg {
    /* Largeur dictée par le libellé : on l'affiche en entier ou pas du tout
       (sous 1500px, seule l'étape en cours garde le sien). */
    flex: 0 1 auto;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 9px 9px; border-radius: 13px;
    font-size: 14.5px; font-weight: 600; color: var(--muted);
    text-decoration: none; white-space: nowrap;
    border: 1.5px solid transparent;
    transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.step-seg:hover { background: var(--ground); color: var(--ink); }
.step-seg .n {
    display: grid; place-items: center; flex: none;
    width: 25px; height: 25px; border-radius: 50%;
    font-family: var(--display); font-size: 12.5px; font-weight: 800;
    color: var(--muted); background: var(--ground-2);
    transition: all .2s;
}
.step-seg .n svg { width: 13px; height: 13px; }
.step-seg.now {
    color: var(--purple-dark); background: #fff;
    border-color: var(--purple-line);
    box-shadow: var(--shadow-soft);
    font-weight: 700;
}
.step-seg.now .n { color: #fff; background: var(--purple); }
/* Une étape faite ET en cours reste violette : on montre d'abord où l'on est. */
.step-seg.done:not(.now) .n { color: #fff; background: var(--green); }
.step-seg.recap { flex: 0 0 auto; }

.top-right { display: flex; align-items: center; gap: 8px; justify-self: end; }

.saved {
    display: inline-flex; min-height: 42px; align-items: center; gap: 8px;
    padding: 0 13px; border-radius: 12px;
    color: var(--green-ink); background: var(--green-soft);
    border: 1px solid #d7ece3;
    font-size: 13.5px; font-weight: 600;
    transition: color .2s, background .2s;
}
.saved svg { width: 16px; height: 16px; }
.saved.busy { color: var(--amber); background: var(--amber-soft); border-color: #f3e3c4; }
.saved.busy svg { animation: spin .9s linear infinite; }
.saved.err { color: var(--red-ink); background: var(--red-soft); border-color: #f3cfc9; }
@keyframes spin { to { transform: rotate(360deg); } }

.pause-btn {
    display: inline-flex; min-height: 42px; align-items: center; gap: 8px;
    padding: 0 13px; border-radius: 12px;
    color: var(--muted); font-size: 13.5px; font-weight: 600;
    transition: all .18s;
}
.pause-btn svg { width: 16px; height: 16px; }
.pause-btn:hover { color: var(--ink); background: var(--ground); }

/* ---------- L'en-tête se replie par le décor, jamais par les étapes ----------
   Les libellés d'étapes sont la boussole du parcours : ils passent avant la
   pastille de marque et avant les libellés des boutons de droite. Les seuils
   sont mesurés sur le libellé le plus long (« Vos recommandations »). */
@media (max-width: 1600px) { .brand-pill { display: none; } }
@media (max-width: 1470px) { .pause-btn span { display: none; } }
@media (max-width: 1330px) { .saved span { display: none; } .saved { padding: 0 10px; } }

@media (max-width: 1250px) {
    /* Vraiment plus la place : seule l'étape en cours garde son libellé.
       Mieux vaut aucun libellé qu'un libellé coupé. */
    .step-seg span:not(.n) { display: none; }
    .step-seg.now span:not(.n) { display: inline; }
    .step-seg.now { flex: 0 0 auto; }
}

@media (max-width: 1080px) {
    .top { gap: 14px; padding: 0 16px; }
}
@media (max-width: 720px) {
    .brand-logo:not(.lg) .brand-lockup { display: none; }
    .brand-logo:not(.lg) .brand-mark-compact { display: block; }
}

/* ---------- La barre de navigation basse ---------- */
.navbar {
    position: relative; z-index: 20;
    display: grid; width: 100%; min-width: 0;
    grid-template-columns: 1fr auto 1fr;
    align-items: center; gap: 20px;
    height: var(--navbar-h); padding: 0 30px;
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(16px);
}
.nav-back {
    display: inline-flex; width: fit-content; min-height: 50px;
    align-items: center; gap: 9px; padding: 0 18px;
    border-radius: 14px; font-size: 15px; font-weight: 700;
    color: var(--muted); text-decoration: none;
}
.nav-back:hover { color: var(--ink); background: var(--ground); }
.nav-back.off { visibility: hidden; }
.nav-hint { color: var(--faint); font-size: 14px; text-align: center; }
.nav-continue {
    display: inline-flex; min-height: 56px; min-width: 220px;
    align-items: center; justify-content: center; gap: 10px;
    justify-self: end; padding: 0 28px;
    border-radius: 16px; font-size: 16.5px; font-weight: 700;
    color: #fff; background: var(--cta); text-decoration: none;
    box-shadow: 0 12px 28px rgba(88, 68, 207, .32);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.nav-continue:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(88, 68, 207, .4); }
.nav-continue:disabled { opacity: .6; transform: none; cursor: wait; }
.nav-continue.final { background: var(--cta-final); box-shadow: 0 12px 28px rgba(170, 70, 100, .32); }

@media (max-width: 720px) {
    .navbar { padding: 0 14px; gap: 10px; grid-template-columns: auto 1fr; }
    .nav-hint { display: none; }
    .nav-continue { width: 100%; min-width: 0; }
}

/* =====================================================================
   Boutons et champs
   ===================================================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 46px; padding: 0 18px; border-radius: 13px;
    font-size: 14.5px; font-weight: 700; white-space: nowrap;
    text-decoration: none;
    transition: background .18s, color .18s, border-color .18s,
                transform .18s var(--ease), box-shadow .18s;
}
.btn svg { width: 17px; height: 17px; }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn.ghost { color: var(--muted); }
.btn.ghost:hover:not(:disabled) { background: var(--ground); color: var(--ink); }
.btn.soft { color: var(--ink-2); background: #fff; border: 1.5px solid var(--line-strong); }
.btn.soft:hover:not(:disabled) { border-color: var(--purple-line); transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn.primary { color: #fff; background: var(--cta); box-shadow: 0 8px 20px rgba(88, 68, 207, .2); }
.btn.primary:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(88, 68, 207, .28); }
.btn.flame { color: #fff; background: var(--cta-final); box-shadow: 0 8px 22px rgba(160, 60, 90, .22); }
.btn.flame:hover:not(:disabled) { transform: translateY(-1px); }
.btn.lg { min-height: 54px; padding: 0 26px; font-size: 16px; border-radius: 15px; }
.btn.sm { min-height: 38px; padding: 0 13px; font-size: 13px; border-radius: 10px; }
.btn.block { width: 100%; }

.input {
    width: 100%; padding: 15px 18px; border-radius: 14px;
    background: #fff; border: 1.5px solid var(--line-strong); outline: none;
    font-size: 16px; transition: border-color .2s, box-shadow .2s;
    box-shadow: var(--shadow-soft);
}
.input:focus { border-color: var(--purple); box-shadow: var(--ring-focus); }
.field-label {
    display: block; margin-bottom: 7px;
    font-size: 14.5px; font-weight: 700; color: var(--ink-2);
}
.field-label small { float: right; font-weight: 500; color: var(--faint); }

/* ---------- L'orbe — la signature de la marque ---------- */
.orb {
    position: relative; display: inline-block; flex: none;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--flame);
    box-shadow: 0 6px 16px rgba(102, 87, 232, .3), inset 0 1px 2px rgba(255, 255, 255, .5);
}
.orb::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    background: radial-gradient(42% 42% at 32% 28%, rgba(255, 255, 255, .78), transparent 62%);
}
.orb.lg { width: 60px; height: 60px; }
.orb.breathe { animation: breathe 3.2s ease-in-out infinite; }
@keyframes breathe {
    0%, 100% { transform: scale(1); box-shadow: 0 6px 16px rgba(102, 87, 232, .3); }
    50% { transform: scale(1.06); box-shadow: 0 9px 22px rgba(102, 87, 232, .42); }
}

/* =====================================================================
   Landing Dixia V3 — l'agence en mouvement
   ---------------------------------------------------------------------
   Le réseau n'est plus un décor : sept expertises construisent une vraie
   interface au centre. Les lumières de fond restent lisses et vectorielles.
   ===================================================================== */
.landing-page {
    min-height: 100%;
    overflow: hidden;
    color: #f8f7fc;
    background: #080711;
}

.agency-landing {
    --landing-ink: #f8f7fc;
    --landing-muted: #cbc7d8;
    --landing-dim: #9791a7;
    --landing-line: rgba(255, 255, 255, .13);
    --engine-tilt-x: 0deg;
    --engine-tilt-y: 0deg;
    --engine-shift-x: 0px;
    --engine-shift-y: 0px;
    --grid-step: 92px;
    position: relative;
    isolation: isolate;
    width: 100%;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
    color: var(--landing-ink);
    background: #080711;
    transition: opacity .42s ease, transform .55s var(--ease), filter .42s ease;
}
@supports (height: 100dvh) { .agency-landing { height: 100dvh; } }

.agency-landing::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: calc(var(--grid-step) * -1);
    opacity: .18;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 92px 92px;
    -webkit-mask-image: linear-gradient(105deg, #000 0%, rgba(0, 0, 0, .65) 42%, transparent 78%);
    mask-image: linear-gradient(105deg, #000 0%, rgba(0, 0, 0, .65) 42%, transparent 78%);
    animation: atmosphere-grid 34s linear infinite;
}
.agency-landing::after {
    content: "";
    position: absolute;
    z-index: 20;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .1), #f7f6f3 72%);
    transition: opacity .42s ease;
}
.agency-landing.is-leaving { opacity: .2; transform: scale(1.025); filter: blur(8px); }
.agency-landing.is-leaving::after { opacity: 1; }

.agency-atmosphere {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.atmosphere-orb {
    position: absolute;
    border-radius: 50%;
    filter: none;
    transform: translate3d(0, 0, 0);
    background-repeat: no-repeat;
    will-change: transform, opacity;
}
.atmosphere-orb-violet {
    width: min(74vw, 1240px);
    aspect-ratio: 1.2;
    right: -18vw;
    top: -43%;
    opacity: .86;
    background:
        radial-gradient(ellipse at 68% 31%, rgba(109, 92, 240, .38) 0%, rgba(109, 92, 240, .28) 17%, rgba(109, 92, 240, .16) 35%, rgba(109, 92, 240, .07) 51%, rgba(109, 92, 240, .025) 62%, transparent 73%),
        radial-gradient(ellipse at 28% 72%, rgba(174, 72, 218, .22) 0%, rgba(174, 72, 218, .12) 29%, rgba(174, 72, 218, .045) 49%, transparent 70%);
    animation: atmosphere-violet 18s ease-in-out infinite alternate;
}
.atmosphere-orb-rose {
    width: min(62vw, 1040px);
    aspect-ratio: 1.16;
    right: 10%;
    bottom: -48%;
    opacity: .78;
    background:
        radial-gradient(ellipse at 34% 64%, rgba(230, 91, 137, .28) 0%, rgba(230, 91, 137, .18) 20%, rgba(230, 91, 137, .085) 41%, rgba(230, 91, 137, .025) 59%, transparent 72%),
        radial-gradient(ellipse at 78% 32%, rgba(93, 76, 226, .25) 0%, rgba(93, 76, 226, .12) 31%, rgba(93, 76, 226, .035) 52%, transparent 69%);
    animation: atmosphere-rose 23s ease-in-out infinite alternate;
}
.atmosphere-orb-amber {
    width: min(46vw, 720px);
    aspect-ratio: 1.18;
    left: 5%;
    bottom: -40%;
    opacity: .66;
    background:
        radial-gradient(ellipse at 38% 62%, rgba(245, 167, 59, .16) 0%, rgba(245, 167, 59, .08) 31%, rgba(245, 167, 59, .025) 53%, transparent 70%),
        radial-gradient(ellipse at 72% 38%, rgba(238, 93, 104, .18) 0%, rgba(238, 93, 104, .07) 35%, transparent 67%);
    animation: none;
    will-change: auto;
}
.atmosphere-wave {
    position: absolute;
    width: min(72vw, 1120px);
    aspect-ratio: 1.7;
    right: -25%;
    bottom: -22%;
    border: 1px solid rgba(162, 136, 255, .16);
    border-radius: 50%;
    opacity: .7;
    transform: rotate(-10deg);
    box-shadow:
        0 0 0 58px rgba(184, 104, 232, .032),
        0 0 0 126px rgba(238, 93, 104, .018),
        inset 0 0 60px rgba(102, 87, 232, .035);
    animation: atmosphere-wave 32s ease-in-out infinite alternate;
}
.atmosphere-wave-b {
    width: min(48vw, 760px);
    right: auto;
    left: -26%;
    bottom: 18%;
    opacity: .36;
    transform: rotate(18deg);
    animation: none;
}
.atmosphere-current {
    position: absolute;
    width: 118vw;
    height: 1px;
    left: -28vw;
    top: 32%;
    opacity: .42;
    background: linear-gradient(90deg, transparent 4%, rgba(112, 89, 240, .18) 28%, rgba(196, 85, 219, .86) 51%, rgba(238, 93, 104, .38) 69%, transparent 96%);
    box-shadow: 0 0 16px rgba(130, 98, 245, .32), 0 7px 28px rgba(219, 83, 160, .14);
    transform: rotate(-13deg) translate3d(-8vw, 0, 0);
    will-change: transform, opacity;
    animation: atmosphere-current-a 17s ease-in-out infinite alternate;
}
.atmosphere-current-b {
    width: 92vw;
    left: 29vw;
    top: 68%;
    opacity: .3;
    transform: rotate(21deg) translate3d(12vw, 0, 0);
    animation: atmosphere-current-b 23s ease-in-out infinite alternate;
}
@keyframes atmosphere-grid {
    to { transform: translate3d(var(--grid-step), var(--grid-step), 0); }
}
@keyframes atmosphere-violet {
    0% { transform: translate3d(0, 0, 0); opacity: .72; }
    46% { opacity: .96; }
    100% { transform: translate3d(-8vw, 9vh, 0); opacity: .82; }
}
@keyframes atmosphere-rose {
    0% { transform: translate3d(0, 0, 0); opacity: .64; }
    52% { opacity: .88; }
    100% { transform: translate3d(9vw, -8vh, 0); opacity: .72; }
}
@keyframes atmosphere-wave {
    to { transform: translate3d(-4vw, -3vh, 0) rotate(3deg) scale(1.04); opacity: .48; }
}
@keyframes atmosphere-current-a {
    0% { transform: rotate(-13deg) translate3d(-8vw, 0, 0) scaleX(.96); opacity: .24; }
    48% { opacity: .54; }
    100% { transform: rotate(-7deg) translate3d(14vw, -4vh, 0) scaleX(1.08); opacity: .32; }
}
@keyframes atmosphere-current-b {
    0% { transform: rotate(21deg) translate3d(12vw, 0, 0); opacity: .18; }
    55% { opacity: .4; }
    100% { transform: rotate(15deg) translate3d(-13vw, 5vh, 0) scaleX(1.1); opacity: .22; }
}

.agency-masthead {
    position: absolute;
    z-index: 8;
    top: max(clamp(20px, 2.7vw, 42px), env(safe-area-inset-top));
    left: max(clamp(22px, 4.2vw, 84px), env(safe-area-inset-left));
    right: max(clamp(22px, 4.2vw, 84px), env(safe-area-inset-right));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    animation: agency-reveal .75s var(--ease) both;
}
.agency-logo {
    display: inline-flex;
    min-width: 0;
    min-height: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    border: 0;
    border-radius: 0;
    color: #fbfaff;
    background: none;
    box-shadow: none;
    text-decoration: none;
    backdrop-filter: none;
    filter: drop-shadow(0 9px 24px rgba(0, 0, 0, .38));
    transition: transform .22s var(--ease), filter .22s ease;
}
.agency-logo:hover { transform: translateY(-1px); box-shadow: none; filter: drop-shadow(0 12px 28px rgba(97, 73, 220, .28)); }
.agency-logo > img {
    display: block;
    width: 37px;
    height: 37px;
    filter: drop-shadow(0 0 14px rgba(163, 79, 224, .25));
}
.agency-logo > span {
    font-family: var(--display);
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.055em;
}
.agency-status {
    display: inline-flex;
    min-height: 43px;
    padding: 0 16px;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    color: var(--landing-muted);
    background: rgba(18, 14, 32, .56);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045), 0 12px 35px rgba(0, 0, 0, .16);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .025em;
    backdrop-filter: blur(18px);
}
.agency-status > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8dffca;
    box-shadow: 0 0 0 5px rgba(82, 221, 158, .09), 0 0 18px rgba(82, 221, 158, .7);
    animation: agency-status 2.8s ease-in-out infinite;
}
.agency-status strong { color: #fff; font-weight: 700; }
.agency-status i { width: 1px; height: 14px; background: rgba(255, 255, 255, .18); }
@keyframes agency-status { 50% { transform: scale(.72); opacity: .62; } }

.agency-hero {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(450px, .94fr) minmax(540px, 1.06fr);
    align-items: center;
    gap: clamp(10px, 2.4vw, 52px);
    width: min(100%, 1800px);
    height: 100%;
    margin: 0 auto;
    padding: clamp(100px, 11vh, 138px) clamp(26px, 4.2vw, 84px) clamp(72px, 8vh, 96px);
}
.agency-copy {
    position: relative;
    z-index: 4;
    display: block;
    width: 100%;
    max-width: 800px;
    height: auto;
    padding-left: clamp(0px, 1.4vw, 22px);
}
.agency-copy::after { display: none; }
.agency-eyebrow {
    display: flex;
    margin-bottom: clamp(15px, 2.1vh, 24px);
    align-items: center;
    gap: 13px;
    color: var(--landing-muted);
    font-size: clamp(11px, .85vw, 14px);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    animation: agency-reveal .72s var(--ease) .12s both;
}
.agency-eyebrow > span {
    display: inline-grid;
    min-width: 40px;
    height: 27px;
    padding: 0 8px;
    place-items: center;
    border: 1px solid rgba(171, 142, 255, .34);
    border-radius: 8px;
    color: #c3b4ff;
    background: rgba(102, 87, 232, .11);
    box-shadow: inset 0 0 18px rgba(102, 87, 232, .06);
    font-family: var(--display);
    font-size: 10px;
    letter-spacing: .08em;
}
.agency-copy h1 {
    max-width: 820px;
    font-family: var(--display);
    font-size: clamp(50px, min(5.7vw, 10.3vh), 104px);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.068em;
    text-wrap: balance;
    animation: agency-title-in .88s var(--ease) .18s both;
}
.agency-copy h1 em {
    display: block;
    width: fit-content;
    padding-right: .06em;
    color: transparent;
    background: linear-gradient(100deg, #8e82ff 0%, #bd67e9 36%, #f16d88 70%, #ffc061 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 28px rgba(194, 88, 222, .19));
    font-style: normal;
}
.agency-lead {
    max-width: 690px;
    margin-top: clamp(17px, 2.5vh, 30px);
    color: var(--landing-muted);
    font-size: clamp(15.5px, 1.22vw, 20px);
    line-height: 1.56;
    text-wrap: pretty;
    animation: agency-reveal .78s var(--ease) .34s both;
}
.agency-roleline { display: none; }
.agency-action {
    display: flex;
    margin-top: clamp(21px, 3.4vh, 36px);
    align-items: center;
    gap: 19px;
    animation: agency-reveal .8s var(--ease) .46s both;
}
.agency-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    min-width: 258px;
    min-height: 64px;
    padding: 7px 8px 7px 25px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(115deg, #6657e8 0%, #8b54dd 45%, #d55493 100%);
    box-shadow: 0 15px 40px rgba(102, 87, 232, .34), 0 0 50px rgba(213, 84, 147, .13), inset 0 1px 0 rgba(255, 255, 255, .35);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .24s var(--ease), box-shadow .24s ease;
}
.agency-cta::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 120px;
    height: 170%;
    left: -150px;
    top: -35%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
    transform: skewX(-18deg);
    animation: agency-cta-glint 2.3s ease-in-out 1.5s 1 both;
}
.agency-cta:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(102, 87, 232, .43), 0 0 70px rgba(213, 84, 147, .2), inset 0 1px 0 rgba(255, 255, 255, .4); }
.agency-cta:focus-visible { outline-color: #fff; outline-offset: 5px; }
.agency-cta-arrow {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    flex: none;
    border-radius: 14px;
    color: #33294e;
    background: rgba(255, 255, 255, .94);
    box-shadow: inset 0 1px 0 #fff;
    transition: transform .24s var(--ease), background .24s ease;
}
.agency-cta-arrow svg { width: 19px; height: 19px; }
.agency-action > p { color: var(--landing-dim); font-size: 12.5px; line-height: 1.45; }
.agency-action-mobile { display: none; }
@keyframes agency-cta-glint {
    0%, 63% { transform: translateX(0) skewX(-18deg); opacity: 0; }
    70% { opacity: 1; }
    88%, 100% { transform: translateX(490px) skewX(-18deg); opacity: 0; }
}
.agency-proof {
    display: flex;
    margin-top: clamp(22px, 3.8vh, 40px);
    align-items: center;
    gap: clamp(15px, 1.8vw, 28px);
    animation: agency-reveal .8s var(--ease) .58s both;
}
.agency-proof > span { display: grid; gap: 1px; white-space: nowrap; }
.agency-proof strong {
    color: #fff;
    font-family: var(--display);
    font-size: clamp(13px, .98vw, 17px);
    font-weight: 700;
    letter-spacing: -.025em;
}
.agency-proof small { color: var(--landing-dim); font-size: clamp(11.5px, .82vw, 12.5px); }
.agency-proof > i { width: 1px; height: 30px; background: linear-gradient(transparent, rgba(255, 255, 255, .2), transparent); }
.agency-mobile-story-action { display: none; }

.agency-engine {
    position: relative;
    z-index: 2;
    justify-self: end;
    width: min(50vw, 840px);
    aspect-ratio: 1;
    margin-right: 0;
    opacity: 1;
    -webkit-mask-image: none;
    mask-image: none;
}
.engine-perspective {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(var(--engine-tilt-x)) rotateY(var(--engine-tilt-y)) translate3d(var(--engine-shift-x), var(--engine-shift-y), 0);
    transition: transform .24s ease-out;
}
.engine-halo {
    position: absolute;
    inset: 19%;
    border-radius: 50%;
    opacity: .34;
    background: #745cff;
    box-shadow: -9vw 6vh 0 rgba(220, 78, 158, .6), 8vw -5vh 0 rgba(245, 167, 59, .2);
    filter: blur(clamp(44px, 4.2vw, 66px));
    animation: engine-halo-drift 13s ease-in-out infinite alternate;
}
@keyframes engine-halo-drift { to { transform: translate3d(2.5%, -3%, 0) rotate(8deg) scale(1.07); } }
.engine-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(180, 159, 255, .2);
    border-radius: 50%;
    pointer-events: none;
}
.engine-orbit::before, .engine-orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: #a895ff;
    box-shadow: 0 0 18px rgba(168, 149, 255, .85);
}
.engine-orbit-outer {
    width: 76%;
    height: 76%;
    transform: translate(-50%, -50%) rotateX(65deg) rotateZ(-8deg);
    animation: engine-orbit 25s linear infinite;
}
.engine-orbit-inner {
    width: 54%;
    height: 54%;
    border-color: rgba(238, 93, 104, .2);
    transform: translate(-50%, -50%) rotateX(67deg) rotateZ(48deg);
}
.engine-orbit-outer::before { width: 6px; height: 6px; left: 11%; top: 18%; }
.engine-orbit-outer::after { width: 4px; height: 4px; right: 8%; bottom: 24%; background: #f2819d; }
.engine-orbit-inner::before { width: 5px; height: 5px; right: 7%; top: 27%; background: #f5a73b; }
.engine-orbit-inner::after { width: 3px; height: 3px; left: 12%; bottom: 19%; }
@keyframes engine-orbit { to { transform: translate(-50%, -50%) rotateX(65deg) rotateZ(352deg); } }
.engine-links { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.engine-beams-base path, .engine-beams-flow path {
    fill: none;
    stroke: url(#agency-beam);
    stroke-linecap: round;
}
.engine-beams-base path { stroke-width: 1.35; opacity: .46; }
.engine-beams-flow path {
    stroke-width: 2.25;
    opacity: .95;
    stroke-dasharray: .035 .105;
    stroke-dashoffset: 0;
    animation: engine-beam-flow 3.8s linear var(--beam-delay) infinite;
}
.engine-link-nodes circle {
    fill: #c5b6ff;
    stroke: rgba(255, 255, 255, .85);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 8px rgba(168, 149, 255, .95));
}
@keyframes engine-beam-flow { to { stroke-dashoffset: -1; } }

.engine-core {
    --site-cycle: 9.6s;
    --site-delay: 2.2s;
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    display: flex;
    width: 38%;
    min-width: 248px;
    aspect-ratio: 1.28;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(150deg, rgba(37, 31, 65, .97), rgba(13, 11, 24, .95));
    box-shadow: 0 34px 76px rgba(0, 0, 0, .52), 0 0 90px rgba(102, 87, 232, .22), inset 0 1px 0 rgba(255, 255, 255, .14);
    backdrop-filter: blur(24px);
    opacity: 0;
    scale: .8;
    animation: engine-core-in .92s var(--ease) .36s forwards;
}
.engine-core::before {
    content: "";
    position: absolute;
    z-index: 8;
    inset: -1px;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(125deg, rgba(157, 135, 255, .5), transparent 31%, transparent 66%, rgba(241, 109, 136, .38));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
}
.engine-core-shine {
    position: absolute;
    z-index: 7;
    width: 140%;
    height: 55%;
    left: -52%;
    top: 2%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .075), transparent);
    transform: rotate(-34deg);
    animation: engine-shine 3s ease-in-out 1.3s 1 both;
    pointer-events: none;
}
@keyframes engine-core-in { to { scale: 1; opacity: 1; } }
@keyframes engine-shine {
    0%, 55% { transform: translateX(-35%) rotate(-34deg); opacity: 0; }
    68% { opacity: 1; }
    88%, 100% { transform: translateX(125%) rotate(-34deg); opacity: 0; }
}
.engine-core-top {
    position: relative;
    z-index: 2;
    display: flex;
    height: 27px;
    min-height: 27px;
    padding: 0 10px;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    background: rgba(255, 255, 255, .018);
}
.engine-core-top > span { width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 255, 255, .3); }
.engine-core-top > span:nth-child(1) { background: #f16d88; }
.engine-core-top > span:nth-child(2) { background: #f5a73b; }
.engine-core-top > span:nth-child(3) { background: #7ce4b3; }
.site-address {
    position: relative;
    width: 42%;
    height: 7px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 999px;
    background: rgba(255, 255, 255, .045);
}
.site-address b {
    position: absolute;
    width: 35%;
    height: 2px;
    left: 9%;
    top: 2px;
    border-radius: 999px;
    background: rgba(202, 194, 222, .35);
}
.site-demo {
    position: relative;
    z-index: 2;
    min-height: 0;
    flex: 1;
    overflow: hidden;
    --site-page-extra: 44px;
    --site-scroll-y: -44px;
}
.site-demo-viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.site-demo-viewport::after {
    content: "";
    position: absolute;
    z-index: 4;
    width: 100%;
    height: 28px;
    left: 0;
    top: -34px;
    opacity: .46;
    background: linear-gradient(180deg, transparent, rgba(164, 135, 255, .13), transparent);
    pointer-events: none;
    animation: site-scan var(--site-cycle) ease-in-out var(--site-delay) infinite;
}
.site-demo-page {
    display: grid;
    width: 100%;
    height: calc(100% + var(--site-page-extra));
    grid-template-rows: 12px minmax(52px, 1fr) 30px 34px;
    gap: 7px;
    padding: 9px 13px 8px 11px;
    will-change: transform;
    animation: site-page-scroll var(--site-cycle) var(--ease) var(--site-delay) infinite;
}
.site-demo-nav { display: flex; align-items: center; justify-content: space-between; }
.site-demo-brand {
    display: grid;
    width: 13px;
    height: 13px;
    place-items: center;
    border-radius: 4px;
    color: #fff;
    background: linear-gradient(135deg, #7766f2, #dd5c9d);
    font-family: var(--display);
    font-size: 5.5px;
    font-style: normal;
    font-weight: 800;
}
.site-demo-nav > span { display: flex; align-items: center; gap: 4px; }
.site-demo-nav > span b { display: block; width: 17px; height: 2px; border-radius: 99px; background: rgba(227, 222, 239, .24); }
.site-demo-nav > span b:last-child { width: 10px; background: rgba(142, 130, 255, .58); }
.site-demo-hero {
    display: grid;
    min-height: 0;
    grid-template-columns: 1.06fr .94fr;
    gap: 8px;
    align-items: stretch;
}
.site-demo-copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; align-items: flex-start; }
.site-demo-copy > i { display: block; border-radius: 99px; opacity: 0; transform: translateY(5px); animation: site-piece-in .55s var(--ease) forwards; }
.site-demo-kicker { width: 28%; height: 3px; margin-bottom: 6px; background: #9d85ff; animation-delay: 1.08s !important; }
.site-demo-title { height: 6px; background: #f7f4ff; }
.site-demo-title-a { width: 91%; animation-delay: 1.18s !important; }
.site-demo-title-b { width: 67%; margin-top: 4px; animation-delay: 1.28s !important; }
.site-demo-text { width: 78%; height: 2px; margin-top: 7px; background: rgba(220, 214, 232, .32); animation-delay: 1.38s !important; }
.site-demo-button { position: relative; width: 37%; height: 10px; margin-top: 8px; overflow: hidden; background: linear-gradient(90deg, #6f5deb, #d25b9d); box-shadow: 0 3px 10px rgba(114, 83, 233, .35); animation-delay: 1.48s !important; }
.site-demo-button::after {
    content: "";
    position: absolute;
    width: 45%;
    height: 180%;
    left: -60%;
    top: -40%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
    transform: skewX(-18deg);
    animation: site-button-glint var(--site-cycle) ease-in-out var(--site-delay) infinite;
}
.site-demo-art.site-ai-canvas {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 9px;
    background:
        radial-gradient(circle at 80% 18%, rgba(124, 228, 179, .22), transparent 31%),
        radial-gradient(circle at 15% 92%, rgba(237, 102, 139, .28), transparent 42%),
        linear-gradient(145deg, #44358e 0%, #271d57 47%, #17122e 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 8px 22px rgba(7, 4, 18, .22);
    opacity: 0;
    transform: scale(.82) rotate(3deg);
    animation: site-art-in .78s var(--ease) 1.18s forwards;
}
.site-ai-grid {
    position: absolute;
    z-index: 0;
    inset: 0;
    opacity: .42;
    background-image:
        linear-gradient(rgba(255, 255, 255, .065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .065) 1px, transparent 1px);
    background-size: 14% 20%;
    -webkit-mask-image: linear-gradient(135deg, rgba(0, 0, 0, .9), transparent 88%);
    mask-image: linear-gradient(135deg, rgba(0, 0, 0, .9), transparent 88%);
}
.site-ai-module {
    position: absolute;
    z-index: 2;
    display: block;
    border: 1px solid rgba(222, 215, 255, .22);
    border-radius: 6px;
    background: linear-gradient(145deg, rgba(17, 13, 38, .79), rgba(31, 23, 65, .62));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 5px 12px rgba(6, 4, 18, .18);
}
.site-ai-module-copy {
    width: 47%;
    height: 66%;
    left: 8%;
    top: 17%;
    animation: site-ai-module-copy var(--site-cycle) var(--ease) var(--site-delay) infinite;
}
.site-ai-module-copy i,
.site-ai-module-copy b { position: absolute; display: block; left: 12%; border-radius: 99px; }
.site-ai-module-copy i:first-child {
    width: 27%;
    height: 2px;
    top: 17%;
    background: #7ce4b3;
    box-shadow: 0 0 5px rgba(124, 228, 179, .38);
}
.site-ai-module-copy i:nth-child(2) {
    width: 71%;
    height: 3px;
    top: 32%;
    background: #f7f4ff;
    box-shadow: 0 7px 0 rgba(247, 244, 255, .72);
}
.site-ai-module-copy b {
    width: 34%;
    height: 13%;
    bottom: 14%;
    background: linear-gradient(90deg, #7564ed, #e35e94);
    box-shadow: 0 3px 8px rgba(117, 100, 237, .28);
}
.site-ai-module-media {
    display: grid;
    width: 30%;
    height: 39%;
    right: 8%;
    top: 17%;
    padding: 8%;
    grid-template-columns: 1.25fr .75fr;
    grid-template-rows: 1fr 1fr;
    gap: 7%;
    animation: site-ai-module-media var(--site-cycle) var(--ease) var(--site-delay) infinite;
}
.site-ai-module-media i {
    display: block;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 3px;
    background: linear-gradient(145deg, rgba(159, 135, 255, .88), rgba(221, 84, 155, .72));
}
.site-ai-module-media i:first-child { grid-row: 1 / 3; background: linear-gradient(155deg, #8e76f4, #c653c1 58%, #ed668b); }
.site-ai-module-media i:nth-child(2) { background: rgba(124, 228, 179, .38); }
.site-ai-module-media i:nth-child(3) { background: rgba(255, 255, 255, .14); }
.site-ai-module-metrics {
    display: flex;
    width: 30%;
    height: 22%;
    right: 8%;
    bottom: 17%;
    padding: clamp(2px, .32vw, 4px) clamp(4px, .65vw, 7px);
    align-items: flex-end;
    justify-content: space-between;
    animation: site-ai-module-metrics var(--site-cycle) var(--ease) var(--site-delay) infinite;
}
.site-ai-module-metrics i { display: block; width: 18%; border-radius: 2px 2px 1px 1px; background: linear-gradient(#a88fff, #745cf0); }
.site-ai-module-metrics i:nth-child(1) { height: 40%; }
.site-ai-module-metrics i:nth-child(2) { height: 82%; background: linear-gradient(#7ce4b3, #5e8ee8); }
.site-ai-module-metrics i:nth-child(3) { height: 60%; background: linear-gradient(#ed829c, #c557c1); }
.site-ai-link {
    position: absolute;
    z-index: 1;
    width: 18%;
    height: 1px;
    left: 51%;
    transform-origin: left;
    background: linear-gradient(90deg, rgba(158, 132, 255, .2), #a98cff, rgba(124, 228, 179, .58));
    box-shadow: 0 0 5px rgba(158, 132, 255, .5);
}
.site-ai-link::before,
.site-ai-link::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 2px;
    top: -.5px;
    border-radius: 50%;
    background: #cbbfff;
    box-shadow: 0 0 4px currentColor;
}
.site-ai-link::before { left: 0; }
.site-ai-link::after { right: 0; color: #7ce4b3; }
.site-ai-link-a { top: 40%; transform: rotate(-13deg); }
.site-ai-link-b { top: 61%; transform: rotate(14deg); }
.site-ai-core {
    position: absolute;
    z-index: 4;
    display: grid;
    width: clamp(17px, 19%, 27px);
    aspect-ratio: 1;
    left: 58%;
    top: 51%;
    place-items: center;
    border: 1px solid rgba(196, 181, 255, .47);
    border-radius: 50%;
    background: rgba(15, 11, 32, .94);
    box-shadow: 0 0 0 3px rgba(127, 100, 235, .12), 0 0 16px rgba(143, 112, 255, .48);
    transform: translate(-50%, -50%);
    animation: site-ai-core-pulse var(--site-cycle) ease-in-out var(--site-delay) infinite;
}
.site-ai-core::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(158, 132, 255, .28);
    border-radius: 50%;
    animation: site-ai-ring var(--site-cycle) ease-out var(--site-delay) infinite;
}
.site-ai-core i {
    display: block;
    width: 47%;
    aspect-ratio: 1;
    clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
    background: linear-gradient(135deg, #fff 4%, #ad99ff 47%, #7ce4b3);
    filter: drop-shadow(0 0 4px rgba(177, 155, 255, .8));
}
.site-ai-core b { position: absolute; width: 3px; height: 3px; right: 1px; top: 1px; border-radius: 50%; background: #7ce4b3; box-shadow: 0 0 5px #7ce4b3; }
.site-ai-scan {
    position: absolute;
    z-index: 5;
    width: 22%;
    top: 6%;
    bottom: 6%;
    left: 0;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), rgba(124, 228, 179, .16), transparent);
    mix-blend-mode: screen;
    pointer-events: none;
    animation: site-ai-scan var(--site-cycle) ease-in-out var(--site-delay) infinite;
}
.site-ai-module,
.site-ai-core,
.site-ai-core::before,
.site-ai-scan { animation-fill-mode: both; }
.site-demo-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.site-demo-cards > i {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 6px;
    background: rgba(255, 255, 255, .055);
    opacity: 0;
    transform: translateY(8px);
    animation: site-card-in .62s var(--ease) forwards;
}
.site-demo-cards > i::before {
    content: "";
    position: absolute;
    width: 38%;
    height: 3px;
    left: 8px;
    top: 7px;
    border-radius: 99px;
    background: rgba(222, 215, 237, .34);
    box-shadow: 0 7px 0 rgba(222, 215, 237, .12);
}
.site-demo-cards > i:nth-child(1) { animation-delay: 1.58s; }
.site-demo-cards > i:nth-child(2) { animation-delay: 1.7s; }
.site-demo-cards > i:nth-child(3) { animation-delay: 1.82s; }
.site-demo-lower {
    display: grid;
    grid-template-columns: 1.18fr .82fr .82fr;
    gap: 5px;
}
.site-demo-lower > span {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 6px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(102, 87, 232, .045));
}
.site-demo-lower > span i {
    position: absolute;
    width: 8px;
    height: 8px;
    left: 7px;
    top: 7px;
    border-radius: 3px;
    background: linear-gradient(135deg, #7564ed, #e35e94);
    box-shadow: 0 0 9px rgba(136, 92, 235, .28);
}
.site-demo-lower > span b {
    position: absolute;
    width: 42%;
    height: 2px;
    left: 7px;
    bottom: 7px;
    border-radius: 99px;
    background: rgba(222, 215, 237, .27);
    box-shadow: 0 -5px 0 rgba(222, 215, 237, .1);
}
.site-demo-lower > span::after {
    content: "";
    position: absolute;
    width: 19px;
    height: 8px;
    right: 6px;
    bottom: 7px;
    border-top: 1px solid rgba(130, 241, 192, .75);
    border-right: 1px solid rgba(157, 132, 255, .58);
    transform: skewY(-24deg);
    opacity: 0;
    filter: drop-shadow(0 0 4px rgba(124, 228, 179, .35));
    animation: site-lower-live var(--site-cycle) ease-in-out var(--site-delay) infinite;
}
.site-demo-scrollbar {
    position: absolute;
    z-index: 6;
    width: 2px;
    right: 3px;
    top: 8px;
    bottom: 8px;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(255, 255, 255, .06);
}
.site-demo-scrollbar b {
    display: block;
    width: 100%;
    height: 24%;
    border-radius: inherit;
    background: linear-gradient(#9b84ff, #ed668b);
    box-shadow: 0 0 7px rgba(159, 130, 255, .55);
    animation: site-scrollbar var(--site-cycle) var(--ease) var(--site-delay) infinite;
}
.site-demo-cursor {
    position: absolute;
    z-index: 5;
    width: 11px;
    height: 15px;
    left: 27%;
    top: 51%;
    background: #fff;
    clip-path: polygon(0 0, 100% 65%, 62% 72%, 79% 100%, 61% 100%, 46% 76%, 18% 96%);
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .42));
    opacity: 0;
    animation: site-cursor var(--site-cycle) var(--ease) var(--site-delay) infinite;
}
.site-demo-cursor svg { display: none; }
.site-demo-build {
    position: relative;
    z-index: 2;
    display: flex;
    height: 24px;
    min-height: 24px;
    padding: 0 10px;
    align-items: center;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    color: #c9c2d8;
    background: rgba(4, 3, 10, .22);
}
.site-demo-build > span { position: relative; width: 29px; height: 3px; overflow: hidden; border-radius: 99px; background: rgba(255, 255, 255, .09); }
.site-demo-build > span i { display: block; width: 100%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #7463ed, #ed668b); transform-origin: left; animation: site-build var(--site-cycle) var(--ease) var(--site-delay) infinite; }
.site-demo-build strong { overflow: hidden; font-size: 7.3px; font-weight: 700; letter-spacing: -.01em; white-space: nowrap; text-overflow: ellipsis; }
.site-demo-build small { margin-left: auto; color: #7ce4b3; font-size: 6.5px; font-weight: 700; text-transform: uppercase; }
@keyframes site-piece-in { to { opacity: 1; transform: none; } }
@keyframes site-art-in { to { opacity: 1; transform: none; } }
@keyframes site-card-in { to { opacity: 1; transform: none; } }
@keyframes site-ai-module-copy {
    0%, 5%, 100% { opacity: .5; transform: translateX(-5px); }
    13%, 88% { opacity: 1; transform: none; }
}
@keyframes site-ai-module-media {
    0%, 13%, 100% { opacity: .36; transform: translateY(-5px); }
    22%, 88% { opacity: 1; transform: none; }
}
@keyframes site-ai-module-metrics {
    0%, 21%, 100% { opacity: .3; transform: translateY(5px); }
    30%, 88% { opacity: 1; transform: none; }
}
@keyframes site-ai-core-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(.96); }
    50% { transform: translate(-50%, -50%) scale(1.04); }
}
@keyframes site-ai-ring {
    0%, 28% { opacity: 0; transform: scale(.72); }
    48% { opacity: .62; }
    72%, 100% { opacity: 0; transform: scale(1.28); }
}
@keyframes site-ai-scan {
    0%, 28% { opacity: 0; transform: translateX(-110%); }
    36% { opacity: .78; }
    68% { opacity: .52; transform: translateX(470%); }
    76%, 100% { opacity: 0; transform: translateX(470%); }
}
@keyframes site-build {
    0%, 7% { transform: scaleX(.08); }
    31% { transform: scaleX(.42); }
    67%, 84% { transform: scaleX(1); }
    100% { transform: scaleX(.08); }
}
@keyframes site-page-scroll {
    0%, 32% { transform: translate3d(0, 0, 0); }
    44%, 68% { transform: translate3d(0, var(--site-scroll-y), 0); }
    82%, 100% { transform: translate3d(0, 0, 0); }
}
@keyframes site-scrollbar {
    0%, 32% { transform: translateY(0); }
    44%, 68% { transform: translateY(312%); }
    82%, 100% { transform: translateY(0); }
}
@keyframes site-scan {
    0%, 34% { transform: translateY(0); opacity: 0; }
    42% { opacity: .46; }
    64% { opacity: .28; }
    76%, 100% { transform: translateY(210px); opacity: 0; }
}
@keyframes site-cursor {
    0%, 8% { opacity: 0; transform: translate3d(-9px, -8px, 0); }
    12% { opacity: 1; }
    26% { opacity: 1; transform: translate3d(22px, 26px, 0) scale(1); }
    29% { opacity: 1; transform: translate3d(22px, 26px, 0) scale(.72); }
    32% { opacity: 1; transform: translate3d(22px, 26px, 0) scale(1); }
    38%, 100% { opacity: 0; transform: translate3d(34px, 10px, 0); }
}
@keyframes site-button-glint {
    0%, 20%, 100% { transform: translateX(0) skewX(-18deg); opacity: 0; }
    24% { opacity: .8; }
    35% { transform: translateX(260%) skewX(-18deg); opacity: 0; }
}
@keyframes site-lower-live {
    0%, 41%, 100% { opacity: 0; transform: skewY(-24deg) scaleX(.55); }
    50%, 68% { opacity: 1; transform: skewY(-24deg) scaleX(1); }
    78% { opacity: 0; }
}

.engine-agents { list-style: none; margin: 0; padding: 0; }
.engine-agent {
    position: absolute;
    z-index: 6;
    left: var(--x);
    top: var(--y);
    translate: -50% -50%;
    display: flex;
    min-width: 160px;
    min-height: 58px;
    padding: 8px 14px 8px 8px;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    color: #fff;
    background: rgba(18, 14, 32, .76);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .065);
    backdrop-filter: blur(16px);
    opacity: 0;
    scale: .72;
    animation: engine-agent-in .72s var(--ease) calc(.48s + var(--delay)) forwards;
}
.engine-agent::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    right: 8px;
    top: 8px;
    border-radius: 50%;
    background: #7ce4b3;
    box-shadow: 0 0 9px rgba(124, 228, 179, .74);
}
.engine-agent > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    flex: none;
    border: 1px solid rgba(159, 138, 255, .17);
    border-radius: 12px;
    color: #c5b9ff;
    background: rgba(102, 87, 232, .16);
}
.engine-agent:nth-child(3n + 2) > span { color: #f29cb0; background: rgba(238, 93, 104, .12); border-color: rgba(238, 93, 104, .16); }
.engine-agent:nth-child(3n) > span { color: #f7c97c; background: rgba(245, 167, 59, .11); border-color: rgba(245, 167, 59, .15); }
.engine-agent svg { width: 18px; height: 18px; stroke-width: 1.7; }
.engine-agent > div { display: grid; min-width: 0; gap: 2px; }
.engine-agent strong { font-size: 12.6px; line-height: 1.2; font-weight: 600; white-space: nowrap; }
.engine-agent.agent-ux { translate: -58% -50%; }
.engine-agent.agent-growth { translate: -42% -50%; }
.agent-ai-id {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #aaa3b8;
    font-size: 8.3px;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    letter-spacing: .085em;
    text-transform: uppercase;
    white-space: nowrap;
}
.agent-ai-network {
    --ai-run: 14px;
    position: relative;
    display: block;
    width: 17px;
    height: 6px;
    flex: none;
}
.agent-ai-network::before {
    content: "";
    position: absolute;
    height: 1px;
    left: 1px;
    right: 1px;
    top: 3px;
    background: linear-gradient(90deg, rgba(126, 105, 242, .45), rgba(222, 91, 169, .72));
}
.agent-ai-network::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    left: 0;
    top: 2px;
    z-index: 2;
    border-radius: 50%;
    background: #83efbd;
    box-shadow: 0 0 6px rgba(124, 228, 179, .75);
    animation: agent-ai-sync 2.9s ease-in-out var(--delay) infinite;
}
.agent-ai-network i {
    position: absolute;
    z-index: 1;
    width: 3px;
    height: 3px;
    top: 2px;
    border: 1px solid rgba(198, 184, 255, .82);
    border-radius: 50%;
    background: #201934;
}
.agent-ai-network i:nth-child(1) { left: 0; }
.agent-ai-network i:nth-child(2) { left: 7px; border-color: rgba(219, 119, 220, .82); }
.agent-ai-network i:nth-child(3) { right: 0; border-color: rgba(244, 151, 128, .82); }
@keyframes agent-ai-sync {
    0%, 12% { transform: translateX(0); opacity: 0; }
    24% { opacity: 1; }
    70% { opacity: 1; }
    86%, 100% { transform: translateX(var(--ai-run)); opacity: 0; }
}
@keyframes engine-agent-in { to { opacity: 1; scale: 1; } }

.engine-caption {
    position: absolute;
    z-index: 7;
    left: 50%;
    top: 66%;
    translate: -50% 0;
    display: flex;
    min-width: 235px;
    min-height: 50px;
    padding: 7px 10px;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 14px;
    color: #fff;
    background: rgba(15, 12, 29, .82);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .06);
    backdrop-filter: blur(16px);
    opacity: 0;
    animation: agency-reveal .7s var(--ease) 1.25s forwards;
}
.engine-caption::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    left: 50%;
    bottom: 100%;
    background: linear-gradient(transparent, rgba(171, 146, 255, .62));
}
.engine-caption-pulse {
    position: relative;
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    flex: none;
    border-radius: 9px;
    background: rgba(102, 87, 232, .16);
}
.engine-caption-pulse::before, .engine-caption-pulse::after, .engine-caption-pulse i {
    content: "";
    position: absolute;
    border: 1px solid rgba(171, 151, 255, .44);
    border-radius: 50%;
}
.engine-caption-pulse::before { width: 16px; height: 16px; }
.engine-caption-pulse::after { width: 9px; height: 9px; }
.engine-caption-pulse i { width: 5px; height: 5px; border: 0; background: #83efbd; box-shadow: 0 0 10px rgba(124, 228, 179, .72); animation: caption-pulse 2.8s ease-in-out infinite; }
.engine-caption-copy { display: grid; gap: 1px; }
.engine-caption-copy small { color: #a39cad; font-size: 7.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.engine-caption-copy strong { font-size: 11.5px; line-height: 1.15; font-weight: 700; white-space: nowrap; }
.engine-caption-bars { display: flex; height: 18px; margin-left: auto; align-items: end; gap: 2px; }
.engine-caption-bars i { display: block; width: 2px; border-radius: 2px; background: linear-gradient(#9d85ff, #ed668b); animation: caption-bars 1.5s ease-in-out infinite alternate; }
.engine-caption-bars i:nth-child(1) { height: 8px; }
.engine-caption-bars i:nth-child(2) { height: 15px; animation-delay: -.6s; }
.engine-caption-bars i:nth-child(3) { height: 11px; animation-delay: -1s; }
@keyframes caption-pulse { 50% { transform: scale(.72); opacity: .64; } }
@keyframes caption-bars { to { transform: scaleY(.45); opacity: .55; } }

.agency-footnote {
    position: absolute;
    z-index: 8;
    left: max(clamp(22px, 4.3vw, 70px), env(safe-area-inset-left));
    bottom: max(clamp(16px, 2.2vw, 30px), env(safe-area-inset-bottom));
    color: #9f99ad;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: agency-reveal .7s var(--ease) .7s both;
}
.agency-footnote span { color: #b7b1c3; }

@keyframes agency-reveal {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: none; }
}
@keyframes agency-title-in {
    from { opacity: 0; transform: translateY(28px); filter: blur(8px); }
    to { opacity: 1; transform: none; filter: none; }
}

@media (max-width: 1220px) {
    .agency-hero { grid-template-columns: minmax(420px, 1.03fr) minmax(450px, .97fr); }
    .agency-engine { width: min(55vw, 670px); margin-right: 0; }
    .agency-copy h1 { font-size: clamp(48px, min(6vw, 9.7vh), 74px); }
    .engine-agent { min-width: 150px; min-height: 55px; padding: 7px 12px 7px 7px; gap: 10px; border-radius: 15px; }
    .engine-agent > span { width: 38px; height: 38px; border-radius: 11px; }
    .engine-agent svg { width: 17.5px; height: 17.5px; }
    .engine-agent strong { font-size: 12.2px; }
    .agent-ai-id { font-size: 8px; }
}

@media (max-width: 980px) and (min-width: 681px) {
    .agency-hero { display: block; padding-right: clamp(24px, 8vw, 76px); }
    .agency-copy { display: flex; height: 100%; max-width: 650px; flex-direction: column; justify-content: center; }
    .agency-engine {
        position: absolute;
        z-index: -1;
        width: min(77vw, 670px);
        right: -31vw;
        top: 51%;
        margin: 0;
        translate: 0 -50%;
        opacity: .52;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 38%);
        mask-image: linear-gradient(to right, transparent 0%, #000 38%);
    }
    .agency-copy h1 { max-width: 620px; font-size: clamp(50px, min(8.3vw, 8.7vh), 76px); }
    .engine-agent { min-width: 136px; min-height: 52px; padding: 7px 12px 7px 7px; gap: 10px; border-radius: 15px; }
    .engine-agent > span { width: 37px; height: 37px; border-radius: 11px; }
    .engine-agent svg { width: 17px; height: 17px; }
    .engine-agent strong { font-size: 12px; }
    .agent-ai-id { font-size: 8px; }
}

@media (max-width: 680px) {
    .landing-page { height: auto; min-height: 100%; overflow-x: hidden; overflow-y: auto; }
    .agency-landing { --grid-step: 74px; height: auto; min-height: 100svh; overflow-x: clip; overflow-y: visible; }
    @supports (height: 100dvh) { .agency-landing { height: auto; min-height: 100dvh; } }
    .agency-landing::before { opacity: .13; background-size: 74px 74px; animation: none; }
    .agency-atmosphere { position: absolute; height: 100%; min-height: 1180px; }
    /* Perf mobile : les lumières d'ambiance deviennent statiques — leurs dérives
       lentes sont imperceptibles mais forcent des couches GPU géantes (>140vw). */
    .atmosphere-orb { filter: none; animation: none; will-change: auto; }
    .atmosphere-current { animation: none; will-change: auto; }
    .atmosphere-orb-violet { width: 142vw; right: -72vw; top: -8%; opacity: .88; }
    .atmosphere-orb-rose { width: 132vw; right: -20%; bottom: 2%; opacity: .78; }
    .atmosphere-orb-amber { width: 96vw; left: -48%; bottom: -5%; opacity: .6; }
    .atmosphere-wave {
        width: 135vw;
        right: -76%;
        bottom: 4%;
        animation: none;
        box-shadow: 0 0 0 42px rgba(184, 104, 232, .025), inset 0 0 42px rgba(102, 87, 232, .03);
    }
    .atmosphere-wave-b { width: 112vw; left: -71%; bottom: 47%; }
    .atmosphere-current { width: 165vw; left: -54vw; top: 27%; opacity: .38; }
    .atmosphere-current-b { width: 145vw; left: 12vw; top: 69%; opacity: .28; }

    .agency-masthead {
        top: max(18px, env(safe-area-inset-top));
        left: max(18px, env(safe-area-inset-left));
        right: max(18px, env(safe-area-inset-right));
    }
    .agency-logo { gap: 7px; }
    .agency-logo > img { width: 32px; height: 32px; }
    .agency-logo > span { font-size: 23px; }
    .agency-status { min-height: 38px; padding: 0 12px; gap: 7px; font-size: 0; background: rgba(18, 14, 32, .8); backdrop-filter: none; }
    .agency-status strong { font-size: 10.5px; letter-spacing: .02em; }
    .agency-status strong::after { content: " · IA 100 %"; }
    .agency-status i { display: none; }
    .agency-status > span { width: 6px; height: 6px; }

    .agency-hero {
        display: flex;
        width: 100%;
        height: auto;
        min-height: 0;
        padding-top: max(116px, calc(env(safe-area-inset-top) + 98px));
        padding-right: max(18px, env(safe-area-inset-right));
        padding-bottom: 28px;
        padding-left: max(18px, env(safe-area-inset-left));
        flex-direction: column;
        gap: 0;
    }
    .agency-copy { display: flex; width: 100%; max-width: 560px; height: auto; padding: 0; flex-direction: column; }
    .agency-eyebrow { margin-bottom: 15px; gap: 10px; font-size: 9.7px; letter-spacing: .105em; }
    .agency-eyebrow > span { min-width: 34px; height: 24px; font-size: 8px; }
    /* Perf mobile : entrée sans blur() animé (repeint le titre à chaque frame). */
    .agency-copy h1 { max-width: 540px; font-size: clamp(42px, 12.15vw, 55px); line-height: .97; letter-spacing: -.064em; animation-name: agency-reveal; }
    .agency-lead { max-width: 520px; margin-top: 18px; font-size: 15.5px; line-height: 1.5; }
    .agency-roleline {
        display: flex;
        margin-top: 12px;
        align-items: center;
        flex-wrap: wrap;
        gap: 6px 7px;
        color: #a09aaf;
        font-size: 9.3px;
        font-weight: 700;
        letter-spacing: .055em;
        text-transform: uppercase;
    }
    .agency-roleline i { width: 2px; height: 2px; border-radius: 50%; background: #8e82ff; }
    .agency-action { position: relative; z-index: 8; order: 7; display: grid; width: 100%; margin-top: 22px; justify-items: center; gap: 9px; }
    .agency-action::after {
        content: "";
        position: absolute;
        z-index: -1;
        width: 1px;
        height: 58px;
        left: 50%;
        top: calc(100% + 8px);
        background: linear-gradient(transparent, rgba(154, 125, 255, .78), rgba(220, 93, 164, .25));
        box-shadow: 0 0 9px rgba(142, 111, 255, .42);
    }
    .agency-cta { width: min(82vw, 296px); min-width: 0; min-height: 60px; padding-left: 21px; border-radius: 18px; }
    .agency-cta-arrow { width: 46px; height: 46px; border-radius: 14px; }
    .agency-action > p { font-size: 12px; text-align: center; }
    .agency-action-desktop { display: none; }
    .agency-action-mobile { display: inline; }
    .agency-proof {
        order: 5;
        display: grid;
        margin-top: 20px;
        padding: 15px 0;
        grid-template-columns: 1.12fr 1px .82fr 1px .82fr;
        gap: 12px;
        border-top: 1px solid rgba(255, 255, 255, .08);
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }
    .agency-proof > span { align-content: center; }
    .agency-proof strong { font-size: 12px; }
    .agency-proof small { font-size: 9.5px; line-height: 1.3; }
    .agency-proof > i { height: 34px; align-self: center; }

    .agency-mobile-story-action {
        position: relative;
        display: grid;
        width: 100%;
        max-width: 560px;
        margin: 22px auto 32px;
        justify-items: center;
        gap: 8px;
    }
    .agency-mobile-story-action::before {
        content: "";
        position: absolute;
        width: 1px;
        height: 17px;
        left: 50%;
        bottom: calc(100% + 3px);
        background: linear-gradient(transparent, rgba(158, 132, 255, .64));
        box-shadow: 0 0 7px rgba(148, 117, 255, .32);
    }
    .agency-mobile-story-action .agency-cta { width: min(82vw, 296px); }
    .agency-mobile-story-action > small {
        color: #938ca1;
        font-size: 11px;
        line-height: 1.35;
        text-align: center;
    }
    @keyframes mobile-process-flow {
        0%, 10% { transform: translateX(-115%); opacity: 0; }
        23% { opacity: 1; }
        76% { opacity: 1; }
        90%, 100% { transform: translateX(315%); opacity: 0; }
    }

    .agency-engine {
        position: relative;
        z-index: 2;
        width: min(calc(100vw - 12px), 476px);
        aspect-ratio: .88;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        /* Pas de margin auto : plus large que le contenu du hero, l'élément
           déborderait uniquement à droite ; align-self centre le débord. */
        margin: 27px 0 58px;
        align-self: center;
        flex: none;
        opacity: 1;
        translate: none;
        -webkit-mask-image: none;
        mask-image: none;
    }
    /* Sans tilt pointeur sur mobile, le contexte 3D ne sert à rien et casse
       le z-index sous Safari (puces derrière le navigateur, nœuds SVG
       par-dessus les textes). */
    .engine-perspective { transform: none; transform-style: flat; transition: none; }
    .engine-halo { inset: 18%; opacity: .42; filter: blur(46px); animation: none; }
    .engine-beams-base path { stroke-width: 1.45; opacity: .58; }
    /* Perf mobile : sans le feGaussianBlur, recalculé à chaque frame par
       l'animation des pointillés ; l'épaisseur compense la perte du glow. */
    .engine-beams-flow { filter: none; }
    .engine-beams-flow path { stroke-width: 2.45; opacity: 1; }
    .engine-agent {
        min-width: clamp(104px, 28vw, 118px);
        min-height: clamp(44px, 11.5vw, 48px);
        padding: 6px 10px 6px 6px;
        gap: clamp(7px, 2vw, 9px);
        border-radius: 14px;
        /* Perf mobile : pas de backdrop-filter au-dessus des faisceaux animés
           (ré-échantillonné à chaque frame) — fond plus opaque à la place. */
        background: rgba(18, 14, 32, .93);
        backdrop-filter: none;
    }
    .engine-agent::after { right: 5px; top: 5px; width: 3px; height: 3px; }
    .engine-agent > span { width: clamp(32px, 8.6vw, 36px); height: clamp(32px, 8.6vw, 36px); border-radius: 10px; }
    .engine-agent svg { width: clamp(15px, 4vw, 17px); height: clamp(15px, 4vw, 17px); }
    .engine-agent > div { display: grid; gap: 1px; }
    .engine-agent strong { font-size: clamp(9.6px, 2.55vw, 10.6px); }
    .agent-ai-id { gap: 3px; font-size: clamp(7.1px, 1.9vw, 8px); letter-spacing: .075em; }
    .agent-ai-network { width: 17px; margin-right: -3px; transform: scale(.84); transform-origin: left center; }
    .engine-agent.agent-project { translate: -50% -50%; }
    .engine-agent.agent-design { translate: -68% -50%; }
    /* UX flotte sur le bord droit du navigateur (au-dessus), sans être rognée. */
    .engine-agent.agent-ux { translate: -85% -50%; }
    .engine-agent.agent-dev { translate: -50% -74%; }
    .engine-agent.agent-seo { translate: -50% -34%; }
    /* Sous le navigateur pour ne pas couvrir « Votre site prend forme ». */
    .engine-agent.agent-growth { translate: -12% 30%; }
    .engine-agent.agent-content { translate: -34% -95%; }
    .engine-agent:nth-child(n + 4) { pointer-events: auto; opacity: 0; animation: engine-agent-in .72s var(--ease) calc(.48s + var(--delay)) forwards; }
    .engine-core { width: clamp(176px, 55%, 218px); min-width: 0; border-radius: 17px; backdrop-filter: none; }
    .engine-core-top { height: 23px; min-height: 23px; padding: 0 8px; }
    .site-demo { --site-page-extra: 32px; --site-scroll-y: -32px; }
    .site-demo-page { grid-template-rows: 10px minmax(36px, 1fr) 25px 27px; gap: 5px; padding: 7px 10px 6px 8px; }
    .site-demo-build { height: 20px; min-height: 20px; padding: 0 7px; }
    .site-demo-build strong { font-size: 6.4px; }
    .site-demo-build small { font-size: 5.7px; }
    .engine-caption { top: 102%; min-width: 205px; min-height: 45px; padding: 6px 8px; border-radius: 13px; background: rgba(15, 12, 29, .93); backdrop-filter: none; }
    .engine-caption-pulse { width: 26px; height: 26px; }
    .engine-caption-copy small { font-size: 6.8px; }
    .engine-caption-copy strong { font-size: 10.3px; }
    .engine-caption::before { height: 10px; }
    .agency-landing.scene-observed .engine-core,
    .agency-landing.scene-observed .engine-agent,
    .agency-landing.scene-observed .engine-caption {
        animation: none;
        opacity: 0;
    }
    .agency-landing.scene-observed .engine-core { scale: .8; }
    .agency-landing.scene-observed .engine-agent { scale: .72; }
    .agency-landing.scene-observed .engine-beams-base,
    .agency-landing.scene-observed .engine-beams-flow,
    .agency-landing.scene-observed .engine-link-nodes {
        opacity: 0;
        transition: opacity .7s ease;
    }
    .agency-landing.scene-observed .site-demo-copy > i,
    .agency-landing.scene-observed .site-demo-art,
    .agency-landing.scene-observed .site-demo-cards > i {
        animation: none;
        opacity: 0;
    }
    .agency-landing.scene-observed .site-demo-page,
    .agency-landing.scene-observed .site-demo-scrollbar b,
    .agency-landing.scene-observed .site-demo-viewport::after,
    .agency-landing.scene-observed .site-demo-cursor,
    .agency-landing.scene-observed .site-demo-button::after,
    .agency-landing.scene-observed .site-demo-lower > span::after,
    .agency-landing.scene-observed .site-demo-build > span i,
    .agency-landing.scene-observed .site-ai-module,
    .agency-landing.scene-observed .site-ai-core,
    .agency-landing.scene-observed .site-ai-core::before,
    .agency-landing.scene-observed .site-ai-scan,
    .agency-landing.scene-observed .agent-ai-network::after { animation-play-state: paused; }
    .agency-landing.scene-observed.scene-visible .engine-core { animation: engine-core-in .92s var(--ease) .08s forwards; }
    .agency-landing.scene-observed.scene-visible .engine-agent { animation: engine-agent-in .72s var(--ease) calc(.3s + var(--delay)) forwards; }
    .agency-landing.scene-observed.scene-visible .engine-caption { animation: agency-reveal .7s var(--ease) 1.12s forwards; }
    .agency-landing.scene-observed.scene-visible .engine-beams-base,
    .agency-landing.scene-observed.scene-visible .engine-beams-flow,
    .agency-landing.scene-observed.scene-visible .engine-link-nodes { opacity: 1; transition-delay: .52s; }
    .agency-landing.scene-observed.scene-visible .site-demo-copy > i { animation: site-piece-in .55s var(--ease) forwards; }
    .agency-landing.scene-observed.scene-visible .site-demo-kicker { animation-delay: .8s !important; }
    .agency-landing.scene-observed.scene-visible .site-demo-title-a { animation-delay: .9s !important; }
    .agency-landing.scene-observed.scene-visible .site-demo-title-b { animation-delay: 1s !important; }
    .agency-landing.scene-observed.scene-visible .site-demo-text { animation-delay: 1.1s !important; }
    .agency-landing.scene-observed.scene-visible .site-demo-button { animation-delay: 1.2s !important; }
    .agency-landing.scene-observed.scene-visible .site-demo-art { animation: site-art-in .78s var(--ease) .9s forwards; }
    .agency-landing.scene-observed.scene-visible .site-demo-cards > i { animation: site-card-in .62s var(--ease) forwards; }
    .agency-landing.scene-observed.scene-visible .site-demo-cards > i:nth-child(1) { animation-delay: 1.28s; }
    .agency-landing.scene-observed.scene-visible .site-demo-cards > i:nth-child(2) { animation-delay: 1.4s; }
    .agency-landing.scene-observed.scene-visible .site-demo-cards > i:nth-child(3) { animation-delay: 1.52s; }
    .agency-landing.scene-observed.scene-visible .site-demo-page,
    .agency-landing.scene-observed.scene-visible .site-demo-scrollbar b,
    .agency-landing.scene-observed.scene-visible .site-demo-viewport::after,
    .agency-landing.scene-observed.scene-visible .site-demo-cursor,
    .agency-landing.scene-observed.scene-visible .site-demo-button::after,
    .agency-landing.scene-observed.scene-visible .site-demo-lower > span::after,
    .agency-landing.scene-observed.scene-visible .site-demo-build > span i,
    .agency-landing.scene-observed.scene-visible .site-ai-module,
    .agency-landing.scene-observed.scene-visible .site-ai-core,
    .agency-landing.scene-observed.scene-visible .site-ai-core::before,
    .agency-landing.scene-observed.scene-visible .site-ai-scan,
    .agency-landing.scene-observed.scene-visible .agent-ai-network::after { animation-play-state: running; }
    .agency-footnote {
        position: relative;
        left: auto;
        bottom: auto;
        padding: 0 max(18px, env(safe-area-inset-right)) max(26px, calc(env(safe-area-inset-bottom) + 18px)) max(18px, env(safe-area-inset-left));
        text-align: center;
        font-size: 8.5px;
        line-height: 1.45;
    }
}

@media (max-width: 370px) {
    .agency-masthead { left: max(14px, env(safe-area-inset-left)); right: max(14px, env(safe-area-inset-right)); }
    .agency-logo > img { width: 29px; height: 29px; }
    .agency-logo > span { font-size: 21px; }
    .agency-status { padding: 0 10px; }
    .agency-status strong { font-size: 9.5px; }
    .agency-hero { padding-right: max(15px, env(safe-area-inset-right)); padding-left: max(15px, env(safe-area-inset-left)); }
    .agency-copy h1 { font-size: clamp(39px, 12.4vw, 45px); }
    .agency-lead { font-size: 15px; }
    .agency-proof { grid-template-columns: 1fr 1px 1fr; }
    .agency-proof > span:first-child { grid-column: 1 / -1; padding-bottom: 9px; border-bottom: 1px solid rgba(255, 255, 255, .07); }
    .agency-proof > i:first-of-type { display: none; }
    .agency-proof > span:nth-of-type(2) { grid-column: 1; }
    .agency-proof > i:last-of-type { grid-column: 2; }
    .agency-proof > span:nth-of-type(3) { grid-column: 3; }
}

@media (min-width: 681px) and (max-height: 720px) {
    .agency-masthead { top: max(15px, env(safe-area-inset-top)); }
    .agency-hero { padding-top: 76px; padding-bottom: 46px; }
    .agency-eyebrow { margin-bottom: 10px; }
    .agency-copy h1 { font-size: clamp(40px, 8.2vh, 62px); }
    .agency-lead { margin-top: 13px; font-size: 14.5px; line-height: 1.42; }
    .agency-action { margin-top: 16px; }
    .agency-cta { min-height: 54px; }
    .agency-cta-arrow { width: 42px; height: 42px; }
    .agency-proof { margin-top: 13px; }
    .agency-proof small { font-size: 10px; }
    .agency-engine { width: min(49vw, calc(100vh - 96px), 600px); }
    .agency-footnote { display: none; }
}

@media (min-width: 681px) and (max-height: 520px) {
    .landing-page { overflow-y: auto; }
    .agency-landing { height: auto; min-height: 520px; }
    .agency-masthead { top: max(12px, env(safe-area-inset-top)); }
    .agency-logo > img { width: 29px; height: 29px; }
    .agency-logo > span { font-size: 22px; }
    .agency-status { min-height: 34px; }
    .agency-hero { display: grid; grid-template-columns: minmax(330px, 1.1fr) minmax(240px, .9fr); min-height: 520px; padding: 60px 30px 18px; column-gap: clamp(12px, 2vw, 26px); }
    .agency-copy { display: block; height: auto; padding-left: 0; }
    .agency-eyebrow { margin-bottom: 6px; font-size: 8.5px; }
    .agency-copy h1 { font-size: clamp(35px, 8.5vh, 44px); }
    .agency-lead { margin-top: 8px; font-size: 12.5px; line-height: 1.33; }
    .agency-action { margin-top: 11px; }
    .agency-cta { min-width: 220px; min-height: 46px; padding-left: 17px; font-size: 13.5px; border-radius: 13px; }
    .agency-cta-arrow { width: 34px; height: 34px; border-radius: 9px; }
    .agency-action > p { display: none; }
    .agency-proof { margin-top: 9px; }
    .agency-proof small { display: none; }
    .agency-engine { position: relative; z-index: 2; width: min(42vw, 410px); inset: auto; margin: 0; opacity: .9; translate: none; -webkit-mask-image: none; mask-image: none; }
    .engine-core { width: 56%; min-width: 0; border-radius: 17px; }
    .engine-agent { min-width: clamp(104px, 15vw, 132px); min-height: 44px; padding: 6px 9px 6px 6px; gap: 8px; }
    .engine-agent > span { width: 31px; height: 31px; border-radius: 9px; }
    .engine-agent svg { width: 17px; height: 17px; }
    .engine-agent strong { font-size: 10px; }
    .agent-ai-id { font-size: 7.2px; }
    .engine-caption { top: 77%; min-width: 196px; min-height: 42px; }
}

@media (forced-colors: active) {
    .agency-landing { color: CanvasText; background: Canvas; }
    .agency-atmosphere, .engine-halo, .engine-orbit { display: none; }
    .agency-copy h1 em { color: CanvasText; -webkit-text-fill-color: currentColor; background: none; }
    .agency-cta, .agency-status, .engine-agent, .engine-core, .engine-caption { border: 1px solid CanvasText; }
    .agency-logo { color: CanvasText; }
    .agent-ai-network { display: none; }
    .agent-ai-id { color: CanvasText; }
}

.agency-landing.is-paused::before,
.agency-landing.is-paused .agency-status > span,
.agency-landing.is-paused .atmosphere-orb,
.agency-landing.is-paused .atmosphere-wave,
.agency-landing.is-paused .atmosphere-current,
.agency-landing.is-paused .engine-halo,
.agency-landing.is-paused .engine-orbit,
.agency-landing.is-paused .engine-beams-flow path,
.agency-landing.is-paused .site-demo-page,
.agency-landing.is-paused .site-demo-scrollbar b,
.agency-landing.is-paused .site-demo-viewport::after,
.agency-landing.is-paused .site-demo-button::after,
.agency-landing.is-paused .site-demo-lower > span::after,
.agency-landing.is-paused .site-ai-module,
.agency-landing.is-paused .site-ai-core,
.agency-landing.is-paused .site-ai-core::before,
.agency-landing.is-paused .site-ai-scan,
.agency-landing.is-paused .site-demo-cursor,
.agency-landing.is-paused .site-demo-build > span i,
.agency-landing.is-paused .agent-ai-network::after,
.agency-landing.is-paused .engine-caption-pulse i,
.agency-landing.is-paused .engine-caption-bars i,
.agency-landing.is-paused .agency-result-art figure,
.agency-landing.is-paused .agency-result-chip { animation-play-state: paused !important; }

/* =====================================================================
   Écran d'accueil
   ===================================================================== */
.welcome {
    position: relative; isolation: isolate;
    min-height: 100%; overflow-x: hidden; overflow-y: auto;
    display: flex; align-items: center; justify-content: center;
    padding: clamp(24px, 4vw, 54px);
    background:
        radial-gradient(circle at 12% 15%, rgba(102, 87, 232, .1), transparent 27%),
        radial-gradient(circle at 88% 88%, rgba(240, 100, 104, .09), transparent 25%),
        var(--ground);
}
.welcome::before {
    content: ""; position: fixed; z-index: -1;
    width: min(47vw, 660px); aspect-ratio: 1;
    right: -12vw; top: -14vw;
    background: url("../img/dixia-mark.webp") center / contain no-repeat;
    opacity: .026; transform: rotate(-7deg); pointer-events: none;
}
.welcome-inner {
    width: 100%; max-width: 1240px;
    padding: clamp(22px, 3vw, 42px);
    border: 1px solid rgba(214, 209, 220, .82);
    border-radius: 32px;
    background: rgba(255, 255, 255, .75);
    box-shadow: 0 30px 90px rgba(38, 34, 57, .1);
    backdrop-filter: blur(22px);
}
.welcome-topbar {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding-bottom: clamp(24px, 3vw, 38px);
    border-bottom: 1px solid var(--line);
}
.welcome-brand { display: flex; align-items: center; }
.welcome-agency {
    max-width: 230px; color: var(--muted);
    font-size: 12px; font-weight: 700; line-height: 1.35;
    letter-spacing: .075em; text-transform: uppercase; text-align: right;
}
.welcome-grid {
    display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
    gap: clamp(42px, 7vw, 92px); align-items: center;
    padding-top: clamp(38px, 5.2vw, 68px);
}
.welcome-intro { min-width: 0; padding-left: clamp(0px, 2vw, 22px); }
.welcome-kicker {
    display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px;
    color: var(--purple-dark); font-size: 12.5px; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase;
}
.welcome-kicker span {
    position: relative; display: block; width: 8px; height: 8px; border-radius: 50%;
    background: var(--purple); box-shadow: 0 0 0 5px rgba(102, 87, 232, .1);
}
.welcome-kicker span::after {
    content: ""; position: absolute; inset: -5px; border: 1px solid rgba(102, 87, 232, .28);
    border-radius: inherit; animation: signal 2.6s var(--ease) infinite;
}
@keyframes signal { 0%, 100% { opacity: .25; transform: scale(.75); } 50% { opacity: 1; transform: scale(1.1); } }
.welcome h1 {
    max-width: 690px; margin-bottom: 22px;
    font-family: var(--display); font-weight: 700;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.02; letter-spacing: -.065em;
}
.welcome-title-line { display: inline-block; font-size: .94em; white-space: nowrap; }
.welcome h1 em {
    display: inline-block; font-style: normal;
    color: transparent; -webkit-text-fill-color: transparent;
    background: var(--flame); background-clip: text; -webkit-background-clip: text;
}
.welcome-lead {
    max-width: 650px; color: var(--muted);
    font-size: clamp(16px, 1.45vw, 18px); line-height: 1.65;
}
.welcome-lead strong { color: var(--ink-2); font-weight: 600; }
.welcome-flow {
    display: flex; align-items: center; gap: 11px; width: fit-content;
    margin-top: 30px; padding: 11px 14px;
    border: 1px solid var(--purple-line); border-radius: 14px;
    background: rgba(255, 255, 255, .82); color: var(--ink-2);
    box-shadow: var(--shadow-soft); font-size: 13.5px; font-weight: 600;
}
.welcome-flow i { color: var(--purple); font-family: var(--display); font-size: 17px; font-style: normal; }
.welcome-flow strong { color: var(--ink); font-weight: 800; }
.welcome-points {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin-top: 26px;
}
.welcome-points span {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 0; border-radius: 0;
    font-size: 13px; font-weight: 600; color: var(--muted);
}
.welcome-points svg { width: 15px; height: 15px; color: var(--purple-dark); }
.welcome-card {
    position: relative; padding: clamp(25px, 3vw, 36px);
    border: 1px solid var(--line); border-radius: 24px;
    background: var(--paper); box-shadow: 0 20px 55px rgba(38, 34, 57, .11);
}
.welcome-card::before {
    content: ""; position: absolute; inset: 0 24px auto; height: 3px;
    background: var(--flame); border-radius: 0 0 999px 999px;
}
.welcome-card-head {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 18px;
    margin-bottom: 25px;
}
.welcome-card-head .eyebrow { margin-bottom: 6px; font-size: 11.5px; }
.welcome-card h2 {
    font-family: var(--display); font-size: clamp(24px, 2.4vw, 31px);
    line-height: 1.16; letter-spacing: -.04em;
}
.welcome-duration {
    flex: none; padding: 6px 9px; border-radius: 999px;
    color: var(--purple-dark); background: var(--purple-soft);
    font-size: 11.5px; font-weight: 700; white-space: nowrap;
}
.welcome form { display: grid; gap: 15px; text-align: left; }
.welcome .btn { margin-top: 7px; }
.welcome-foot { margin-top: 15px; font-size: 12.5px; color: var(--faint); text-align: center; }
.welcome-err {
    padding: 13px 16px; margin-bottom: 18px; border-radius: 13px;
    background: var(--amber-soft); color: var(--amber); font-size: 14px; text-align: left;
}
/* Le pot de miel : invisible pour un humain, atteignable par un robot. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 980px) {
    .welcome { align-items: flex-start; }
    .welcome-grid { grid-template-columns: 1fr; gap: 36px; }
    .welcome-intro { padding-left: 0; }
    .welcome h1 { max-width: 760px; }
    .welcome-card { max-width: 650px; width: 100%; }
}

@media (max-width: 620px) {
    .welcome { padding: 12px; }
    .welcome-inner { padding: 20px 17px 17px; border-radius: 24px; }
    .welcome-topbar { padding-bottom: 18px; }
    .welcome-agency { display: none; }
    .brand-logo.lg .brand-lockup { width: auto; height: 52px; object-fit: contain; }
    .welcome-grid { padding-top: 30px; gap: 30px; }
    .welcome h1 { font-size: clamp(34px, 10vw, 42px); }
    .welcome h1 br { display: block; }
    .welcome-title-line { font-size: min(.94em, 8.1vw); }
    .welcome h1 em { font-size: min(1em, 8.7vw); }
    .welcome-flow { width: 100%; justify-content: center; gap: 8px; font-size: 12px; }
    .welcome-points { display: grid; gap: 2px; }
    .welcome-card { padding: 26px 18px 20px; border-radius: 20px; }
    .welcome-card-head { display: block; }
    .welcome-duration { display: inline-flex; margin-top: 12px; }
    .field-label small { float: none; display: block; margin-top: 2px; }
}

@media (prefers-reduced-motion: reduce) {
    .agency-landing { transition: none; }
    .agency-landing.is-leaving { opacity: 1; transform: none; filter: none; }
    .agency-landing.is-leaving::after { opacity: 0; }
    .agency-masthead,
    .agency-eyebrow,
    .agency-copy h1,
    .agency-lead,
    .agency-action,
    .agency-proof,
    .engine-core,
    .engine-agent,
    .engine-caption,
    .agency-footnote {
        animation: none !important;
        filter: none;
        opacity: 1;
    }
    .engine-core, .engine-agent { scale: 1; }
    .agency-status > span,
    .agency-cta::before,
    .engine-core-shine { animation: none !important; }
    .agency-cta::before, .engine-core-shine { display: none; }
    .agency-landing::before,
    .atmosphere-orb,
    .atmosphere-wave,
    .atmosphere-current,
    .engine-halo,
    .engine-orbit-outer,
    .engine-beams-flow path,
    .site-demo-page,
    .site-demo-scrollbar b,
    .site-demo-viewport::after,
    .site-demo-button::after,
    .site-demo-lower > span::after,
    .site-ai-module,
    .site-ai-core,
    .site-ai-core::before,
    .site-ai-scan,
    .site-demo-cursor,
    .site-demo-build > span i,
    .agent-ai-network::after,
    .engine-caption-pulse i,
    .engine-caption-bars i { animation: none !important; will-change: auto; }
    .engine-beams path,
    .engine-beams-flow path { animation: none !important; stroke-dashoffset: 0; }
    .engine-signal { display: none; }
    .site-demo-copy > i,
    .site-demo-art,
    .site-demo-cards > i { animation: none !important; opacity: 1; transform: none; }
    .site-ai-module { opacity: 1 !important; transform: none !important; }
    .site-ai-core { opacity: 1 !important; transform: translate(-50%, -50%) !important; }
    .site-ai-core::before { opacity: .45; transform: none !important; }
    .site-ai-scan { display: none; }
    .site-demo-page, .site-demo-scrollbar b { transform: none !important; }
    .agent-ai-network::after { opacity: 1; transform: translateX(7px); }
    .site-demo-viewport::after, .site-demo-button::after, .site-demo-lower > span::after { display: none; }
    .site-demo-cursor { display: none; }
    .agency-landing.scene-observed .engine-core,
    .agency-landing.scene-observed .engine-agent,
    .agency-landing.scene-observed .engine-caption,
    .agency-landing.scene-observed .site-demo-copy > i,
    .agency-landing.scene-observed .site-demo-art,
    .agency-landing.scene-observed .site-demo-cards > i { opacity: 1 !important; scale: 1; transform: none; }
    .agency-landing.scene-observed .engine-beams-base,
    .agency-landing.scene-observed .engine-beams-flow,
    .agency-landing.scene-observed .engine-link-nodes { opacity: 1 !important; }
    .engine-perspective { transform: none; transition: none; }
    .welcome-kicker span::after { animation: none; }
}

/* =====================================================================
   Le flux d'écrans
   ===================================================================== */
.flow {
    width: 100%; min-width: 0; min-height: 0;
    overflow-x: hidden; overflow-y: auto;
    padding: clamp(30px, 5vh, 54px) 24px 60px;
    scrollbar-width: thin; scrollbar-color: #ccc8d2 transparent;
}
.pane {
    width: 100%; max-width: 880px; margin: 0 auto;
    animation: screen-in .34s var(--ease) both;
}
.pane.wide { max-width: 1160px; }
@keyframes screen-in {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
}
.pane > * { animation: rise .4s var(--ease) both; }
.pane > :nth-child(2) { animation-delay: .06s; }
.pane > :nth-child(3) { animation-delay: .12s; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.pane-head { margin-bottom: 28px; }
.pane-head .eyebrow { margin-bottom: 10px; }
.pane-title {
    max-width: 820px;
    font-family: var(--display); font-weight: 800;
    font-size: clamp(30px, 3.8vw, 42px);
    letter-spacing: -.045em; line-height: 1.08;
}
.pane-lead {
    max-width: 700px; margin-top: 12px;
    color: var(--muted); font-size: 17px; line-height: 1.55;
}
.mantra {
    display: inline-flex; align-items: center; gap: 9px;
    margin-top: 16px;
    padding: 9px 15px; border-radius: 999px;
    background: var(--amber-soft);
    font-size: 14px; color: var(--amber);
}
.mantra svg { width: 15px; height: 15px; flex: none; }
.mantra strong { font-weight: 700; }

/* =====================================================================
   Le plan de travail : la colonne des blocs + l'aside
   ===================================================================== */
.pane.work { max-width: 1480px; }
.pane.work .pane-head { margin-bottom: 26px; }

.workspace {
    display: grid; gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 330px);
    align-items: start;
}
.blocks-col { min-width: 0; display: grid; gap: 18px; }

.side-col {
    position: sticky; top: 0; min-width: 0;
    max-height: calc(100vh - var(--header-h) - var(--navbar-h) - 20px);
    overflow-y: auto;
    scrollbar-width: thin; scrollbar-color: #ccc8d2 transparent;
    padding-bottom: 4px;
}
.side-col.is-free { max-height: none; overflow: visible; margin-bottom: 18px; }

/* =====================================================================
   Les blocs — une question = un bloc
   ===================================================================== */
.block {
    padding: 24px 26px 24px; border-radius: var(--radius-lg);
    background: #fff; border: 2px solid transparent;
    box-shadow: var(--shadow-soft);
    transition: border-color .25s, box-shadow .25s;
    animation: rise .4s var(--ease) both;
}
.block:focus-within { border-color: var(--purple-line); box-shadow: 0 0 0 4px rgba(102, 87, 232, .07), var(--shadow-soft); }
.block.featured { border-color: var(--purple-line); }
.block.is-hidden { display: none; }

.block-head { margin-bottom: 16px; }
.block-q {
    display: flex; align-items: center; flex-wrap: wrap; gap: 8px 10px;
    font-family: var(--display); font-size: 20px; font-weight: 800; letter-spacing: -.025em; line-height: 1.25;
}
.block-q .tag { font-size: 11.5px; }
.tag.opt { color: var(--faint); background: var(--ground-2); font-weight: 600; }
.block-done {
    display: none; place-items: center; margin-left: auto;
    width: 26px; height: 26px; border-radius: 50%;
    color: #fff; background: var(--green);
}
.block-done svg { width: 14px; height: 14px; stroke-width: 2.6; }
.block.is-filled .block-done { display: grid; animation: pop .3s var(--ease) both; }
.block-plain { margin-top: 7px; font-size: 14.5px; color: var(--muted); line-height: 1.55; max-width: 720px; }
.block-why { margin-top: 8px; }
.block-why summary {
    display: inline-flex; align-items: center; gap: 6px; cursor: pointer; list-style: none;
    font-size: 13px; font-weight: 600; color: var(--purple-dark);
    padding: 4px 9px 4px 6px; border-radius: 999px;
}
.block-why summary::-webkit-details-marker { display: none; }
.block-why summary:hover { background: var(--purple-soft); }
.block-why summary svg { width: 15px; height: 15px; }
.block-why p {
    margin: 8px 0 0; padding: 11px 14px; border-radius: 12px;
    background: var(--purple-soft); color: var(--purple-dark);
    font-size: 13.5px; line-height: 1.5; max-width: 720px;
}

/* ---------- Champs texte ---------- */
.field-input {
    background: var(--ground); border-color: var(--line); box-shadow: none;
    padding: 13px 15px; font-size: 15.5px;
}
.field-input:focus { background: #fff; }
.field-area {
    display: block; width: 100%; min-height: 74px; resize: none;
    padding: 12px 14px; border-radius: 12px;
    border: 1.5px solid var(--line); outline: none; background: var(--ground);
    font-size: 15.5px; line-height: 1.6;
    transition: border-color .2s, background .2s, box-shadow .5s;
}
.field-area::placeholder { color: var(--faint); }
.field-area:focus { border-color: var(--purple); background: #fff; }
.other-wrap { margin-top: 12px; }

/* ---------- Les cartes ---------- */
.cards { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.cards.compact { grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 8px; }
.card {
    position: relative; display: flex; align-items: flex-start; gap: 12px;
    padding: 15px 44px 15px 14px; border-radius: 16px; text-align: left; /* padding droit = place réservée au rond .card-tick */
    background: var(--ground); border: 1.5px solid var(--line);
    transition: border-color .18s, background .18s, transform .18s var(--ease), box-shadow .18s;
    min-height: 74px;
}
.card:hover { border-color: var(--purple-line); background: #fff; transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.card:focus-visible { outline-offset: 2px; }
.card-ico {
    display: grid; place-items: center; flex: none;
    width: 38px; height: 38px; border-radius: 12px;
    color: var(--purple-dark); background: #fff; border: 1px solid var(--line);
    transition: all .18s;
}
.card-ico svg { width: 19px; height: 19px; }
.card-txt { min-width: 0; flex: 1; display: block; }
.card-txt strong { display: block; font-size: 15px; letter-spacing: -.01em; line-height: 1.3; text-wrap: balance; }
.card-txt span { display: block; margin-top: 3px; font-size: 13px; color: var(--muted); line-height: 1.45; }
.card-tick {
    position: absolute; top: 10px; right: 10px;
    display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%;
    color: transparent; background: transparent; border: 1.5px solid var(--line-strong);
    transition: all .18s;
}
.card-tick svg { width: 13px; height: 13px; stroke-width: 2.8; }
.card.is-on { border-color: var(--purple); background: #fff; box-shadow: 0 0 0 3px rgba(102, 87, 232, .1), var(--shadow-soft); }
.card.is-on .card-ico { color: #fff; background: var(--purple); border-color: var(--purple); }
.card.is-on .card-tick { color: #fff; background: var(--purple); border-color: var(--purple); }
.card.is-on .card-txt strong { color: var(--purple-dark); }
.card.advise .card-ico { color: var(--amber); }
.card.advise.is-on { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(200, 131, 37, .12), var(--shadow-soft); }
.card.advise.is-on .card-ico, .card.advise.is-on .card-tick { background: var(--amber); border-color: var(--amber); color: #fff; }
.card.advise.is-on .card-txt strong { color: var(--amber); }
.card.other { border-style: dashed; }
.cards.compact .card { padding: 12px 40px 12px 12px; min-height: 0; }
.cards.compact .card-ico { width: 32px; height: 32px; border-radius: 10px; }
.cards.compact .card-ico svg { width: 16px; height: 16px; }
.cards.compact .card-txt strong { font-size: 14px; }
.cards.compact .card-txt span { font-size: 12.5px; }

/* Cartes visuelles (ambiances) : nuancier au lieu d'icône */
.cards.visual { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.cards.visual .card { flex-direction: column; gap: 10px; padding: 12px 12px 14px; } /* le rond est posé sur le nuancier, pas sur le texte */
.card-swatch {
    display: flex; width: 100%; height: 54px; border-radius: 11px; overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
}
.card-swatch i { flex: 1; display: block; }
.card-swatch i:first-child { flex: 2.2; }
.cards.visual .card-txt strong { font-size: 14.5px; }
.cards.visual .card-tick { top: 18px; right: 18px; background: rgba(255,255,255,.85); }

/* ---------- Les pastilles ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 14px 9px 10px; border-radius: 999px;
    background: var(--ground); border: 1.5px solid var(--line);
    font-size: 14px; font-weight: 600; color: var(--ink-2); text-align: left;
    transition: all .16s;
}
.chip:hover { border-color: var(--purple-line); background: #fff; }
.chip-tick {
    display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%;
    color: transparent; border: 1.5px solid var(--line-strong); transition: all .16s; flex: none;
}
.chip-tick svg { width: 11px; height: 11px; stroke-width: 3; }
.chip.is-on { color: var(--purple-dark); background: var(--purple-soft); border-color: var(--purple); }
.chip.is-on .chip-tick { color: #fff; background: var(--purple); border-color: var(--purple); }
.chip.advise { color: var(--amber); }
.chip.advise svg:not(.chip-tick svg) { width: 15px; height: 15px; }
.chip.advise.is-on { color: #7a5119; background: var(--amber-soft); border-color: var(--amber); }
.chip.advise.is-on .chip-tick { background: var(--amber); border-color: var(--amber); }
.chip.other { border-style: dashed; }

/* ---------- Liens ---------- */
.links { display: grid; gap: 8px; }
.link-row {
    display: grid; grid-template-columns: auto minmax(0, 1.1fr) minmax(0, 1.4fr) auto;
    gap: 8px; align-items: center;
}
.link-ico { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: var(--purple-dark); background: var(--purple-soft); }
.link-ico svg { width: 16px; height: 16px; }
.link-row .input { padding: 11px 13px; font-size: 14.5px; box-shadow: none; background: var(--ground); border-color: var(--line); }
.link-row .input:focus { background: #fff; }
.row-del { color: var(--faint); padding: 7px; border-radius: 10px; }
.row-del:hover { color: var(--red); background: var(--red-soft); }
.row-del svg { width: 15px; height: 15px; }
.add-row { margin-top: 10px; }

/* ---------- Fiches répétées ---------- */
.repeat { display: grid; gap: 12px; }
.repeat-row {
    display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 12px; align-items: start;
    padding: 14px 14px 14px 12px; border-radius: 16px; background: var(--ground); border: 1px solid var(--line);
}
.repeat-n {
    display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; margin-top: 22px;
    font-family: var(--display); font-size: 14px; font-weight: 800; color: var(--purple-dark); background: #fff; border: 1px solid var(--line);
}
.repeat-fields { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.repeat-field > span, .contact-field > span { display: block; margin-bottom: 5px; font-size: 13px; font-weight: 700; color: var(--ink-2); }
.repeat-field .field-area { background: #fff; min-height: 60px; }

/* ---------- Coordonnées ---------- */
.contact-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.contact-field .input { padding: 12px 14px; font-size: 15px; box-shadow: none; background: var(--ground); border-color: var(--line); }
.contact-field .input:focus { background: #fff; }

/* ---------- La zone « en vrac » ---------- */
.block-bigtext { padding: 0; overflow: hidden; }
.block-bigtext .block-head { padding: 24px 26px 0; margin-bottom: 14px; }
.block-bigtext .block-body { padding: 0; }
.write-card { background: #fff; border-top: 1px solid var(--line); }
.bigtext {
    display: block; width: 100%; resize: none; overflow: hidden;
    min-height: 260px;
    padding: 24px 26px 34px;
    border: 0; outline: none; background: none;
    font-size: 16.5px; line-height: 1.7;
}
.bigtext::placeholder { color: var(--faint); }
.write-foot {
    display: flex; gap: 9px; align-items: flex-start;
    padding: 12px 26px 16px; border-top: 1px dashed var(--line);
    font-size: 13px; color: var(--muted); line-height: 1.5;
}
.write-foot svg { width: 15px; height: 15px; color: var(--amber); flex: none; margin-top: 1px; }
.write-count strong { color: var(--purple-dark); font-weight: 600; margin-right: 4px; }

/* ---------- Documents en catégories (« Vos visuels ») ---------- */
.file-cats { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.file-cat { padding: 14px; border-radius: 16px; background: var(--ground); border: 1px solid var(--line); }
.file-cat-head { margin-bottom: 10px; }
.file-cat-head strong { display: block; font-size: 14.5px; letter-spacing: -.01em; }
.file-cat-head span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; line-height: 1.4; }
.dropzone.compact { min-height: 86px; padding: 14px 12px; gap: 3px; background: #fff; }
.dropzone.compact .dropzone-ico { width: 34px; height: 34px; border-radius: 11px; }
.dropzone.compact .dropzone-ico svg { width: 16px; height: 16px; }
.dropzone.compact strong { font-size: 13.5px; }
.doc-ico img { width: 38px; height: 38px; object-fit: cover; border-radius: 12px; display: block; }
.doc-caption {
    display: block; width: 100%; margin-top: 6px; padding: 6px 9px; border-radius: 8px;
    border: 1px solid transparent; background: var(--ground); font-size: 12.5px; outline: none;
    transition: border-color .18s, background .18s;
}
.doc-caption:focus { border-color: var(--purple); background: #fff; }
.doc-caption::placeholder { color: var(--faint); }
.doclist:empty { display: none; }
/* ---------- Les repères (colonne gauche) ---------- */
.keys-card {
    padding: 24px 24px 20px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}
.keys-card .eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.keys-bulb { width: 16px; height: 16px; }
.keys-lead { margin: 10px 0 18px; font-size: 14px; color: var(--muted); line-height: 1.55; }
.keys { display: grid; gap: 15px; margin-top: 18px; }
.key { display: flex; gap: 14px; align-items: flex-start; }
.key-n {
    display: grid; place-items: center; flex: none;
    width: 32px; height: 32px; border-radius: 11px; margin-top: 1px;
    font-family: var(--display); font-size: 14.5px; font-weight: 800;
    color: var(--purple-dark); background: var(--purple-soft);
}
.key-txt { min-width: 0; }
.key-txt strong { display: block; font-size: 15px; letter-spacing: -.01em; margin-bottom: 2px; }
.key-txt span { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.keys-foot {
    display: flex; gap: 9px; align-items: flex-start;
    margin-top: 20px; padding: 12px 14px; border-radius: 12px;
    background: var(--amber-soft); font-size: 13px; line-height: 1.5; color: #7a5119;
}
.keys-foot svg { width: 15px; height: 15px; color: var(--amber); flex: none; margin-top: 1px; }

/* ---------- Le pliage (repères + conseils) ----------
   Une rangée de grille qui passe de 1fr à 0fr : la hauteur s'anime sans
   qu'on ait à la mesurer, quel que soit le contenu. */
.keys-fold, .advice-fold {
    display: grid; grid-template-rows: 1fr;
    transition: grid-template-rows .3s var(--ease);
}
.is-folded > .keys-fold, .is-folded > .advice-fold { grid-template-rows: 0fr; }
.fold-inner { min-height: 0; overflow: hidden; }

.fold-chevron {
    display: none; place-items: center; flex: none;
    width: 26px; height: 26px; border-radius: 9px;
    color: var(--faint); transition: transform .3s var(--ease), background .18s, color .18s;
}
.fold-chevron svg { width: 16px; height: 16px; }
.is-folded .fold-chevron { transform: rotate(-90deg); }

.keys-head {
    display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 10px;
    text-align: left; cursor: default;
}
.keys-card.is-foldable .keys-head { cursor: pointer; }
.keys-card.is-foldable .fold-chevron { display: grid; }
.keys-card.is-foldable .keys-head:hover .fold-chevron { color: var(--ink); background: var(--ground); }
/* Replié, la carte n'est plus qu'une ligne : on resserre le bas. */
.keys-card.is-folded { padding-bottom: 14px; }

/* =====================================================================
   Les conseils de la relecture (colonne gauche, au-dessus des repères)
   ---------------------------------------------------------------------
   Ce que le LLM a demandé reste à l'écran pendant que le client complète
   son texte : il coche au fur et à mesure, et peut tout replier d'un clic
   si la liste prend trop de place.
   ===================================================================== */
.advice { margin-bottom: 16px; }

.advice-card {
    border-radius: var(--radius-lg);
    background: #fff; border: 1.5px solid #eed7a8;
    box-shadow: 0 6px 20px rgba(150, 110, 30, .10);
    transition: border-color .3s, box-shadow .3s;
}
.advice-card.all-done { border-color: #cbe6da; box-shadow: 0 6px 20px rgba(35, 155, 107, .1); }
/* L'appel du regard quand on revient de la relecture. */
.advice.is-flash .advice-card { animation: advice-flash 1.5s var(--ease) 1; }
@keyframes advice-flash {
    0%   { box-shadow: 0 0 0 0 rgba(200, 131, 37, .38); }
    18%  { box-shadow: 0 0 0 8px rgba(200, 131, 37, .16); }
    100% { box-shadow: 0 0 0 22px rgba(200, 131, 37, 0); }
}

.advice-head {
    display: flex; width: 100%; align-items: center; gap: 12px;
    padding: 15px 16px 15px 17px; text-align: left; border-radius: var(--radius-lg);
}
.advice-ico {
    display: grid; place-items: center; flex: none;
    width: 36px; height: 36px; border-radius: 12px;
    color: var(--amber); background: var(--amber-soft);
    transition: color .3s, background .3s;
}
.advice-ico svg { width: 19px; height: 19px; }
.advice-card.all-done .advice-ico { color: var(--green); background: var(--green-soft); }
.advice-head-copy { flex: 1; min-width: 0; }
.advice-head-copy strong {
    display: block;
    font-family: var(--display); font-size: 16px; font-weight: 800; letter-spacing: -.02em;
}
.advice-count { display: block; margin-top: 1px; font-size: 12.5px; color: var(--muted); }
.advice-card.all-done .advice-count { color: var(--green-ink); font-weight: 600; }
.advice-head .fold-chevron { display: grid; }
.advice-head:hover .fold-chevron { color: var(--ink); background: var(--ground); }

.advice-body { padding: 0 16px 16px; }
.advice-summary {
    margin: 0 0 12px; padding-left: 12px;
    border-left: 2px solid var(--purple-line);
    font-size: 13.5px; line-height: 1.5; color: var(--ink-2);
}
/* Filet de sécurité : une liste très longue défile au lieu de pousser
   les repères hors de l'écran. */
.advice-items {
    display: grid; gap: 9px; margin: 0; padding: 0; list-style: none;
    max-height: min(46vh, 520px); overflow-y: auto;
    scrollbar-width: thin; scrollbar-color: #ddd2c0 transparent;
}
.advice-item {
    display: flex; gap: 11px; align-items: flex-start;
    padding: 12px 13px; border-radius: 14px;
    background: var(--amber-soft); border: 1px solid #f3e3c4;
    transition: background .25s, border-color .25s, opacity .25s;
}
.advice-tick {
    display: grid; place-items: center; flex: none;
    width: 22px; height: 22px; margin-top: 1px; border-radius: 7px;
    color: transparent; background: #fff; border: 1.5px solid #e0cba2;
    transition: all .18s;
}
.advice-tick svg { width: 14px; height: 14px; stroke-width: 2.6; }
.advice-tick:hover { border-color: var(--green); color: #bcd9cb; }
.advice-txt { min-width: 0; }
.advice-txt strong {
    display: block; margin-bottom: 3px;
    font-size: 14.5px; letter-spacing: -.01em; color: #7a5119;
}
.advice-txt p { font-size: 13px; line-height: 1.5; color: #7a5119; }
.advice-ex { margin-top: 5px; font-style: italic; color: #9a7434; }

.advice-item.is-done {
    background: var(--green-soft); border-color: #d7ece3;
}
.advice-item.is-done .advice-tick { color: #fff; background: var(--green); border-color: var(--green); }
.advice-item.is-done .advice-txt { opacity: .62; }
.advice-item.is-done .advice-txt strong { text-decoration: line-through; color: var(--green-ink); }
.advice-item.is-done .advice-txt p { color: var(--green-ink); }

.advice-foot {
    display: flex; gap: 9px; align-items: flex-start;
    margin-top: 12px; padding: 11px 13px; border-radius: 12px;
    background: var(--ground); font-size: 12.5px; line-height: 1.5; color: var(--muted);
}
.advice-foot svg { width: 15px; height: 15px; color: var(--purple-dark); flex: none; margin-top: 1px; }
.advice-foot strong { color: var(--ink-2); }

/* =====================================================================
   Les documents (colonne droite)
   ===================================================================== */
.docs-card {
    padding: 22px 22px 20px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}
.block-title {
    display: flex; align-items: center; gap: 9px;
    font-family: var(--display); font-size: 18px; font-weight: 800; letter-spacing: -.02em;
    margin-bottom: 5px;
}
.block-title svg { width: 18px; height: 18px; color: var(--purple-dark); }
.block-lead { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }

.doc-ideas-title {
    display: flex; align-items: center; gap: 7px;
    margin: 18px 0 8px;
    font-size: 12px; font-weight: 800;
    letter-spacing: .05em; text-transform: uppercase; color: var(--faint);
}
.doc-ideas { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.doc-ideas li {
    display: flex; align-items: flex-start; gap: 9px;
    font-size: 13px; color: var(--ink-2); line-height: 1.45;
}
.doc-ideas-title svg { width: 14px; height: 14px; color: var(--purple-dark); }
.doc-ideas svg { width: 14px; height: 14px; color: var(--green); flex: none; margin-top: 2px; }

.dropzone {
    display: grid; justify-items: center; align-content: center; gap: 6px;
    min-height: 150px; padding: 24px 18px; border-radius: var(--radius);
    background: var(--ground); border: 2px dashed var(--line-strong);
    cursor: pointer; text-align: center;
    transition: all .2s;
}
.dropzone:hover, .dropzone:focus-visible { border-color: var(--purple); background: #faf9ff; }
.dropzone.is-over { border-color: var(--purple); background: var(--purple-soft); transform: scale(1.004); }
.dropzone-ico {
    display: grid; place-items: center;
    width: 46px; height: 46px; border-radius: 15px;
    color: var(--purple-dark); background: var(--purple-soft);
    margin-bottom: 2px;
}
.dropzone strong { font-size: 14.5px; }
.dropzone .small { max-width: 320px; font-size: 12.5px; }

.doclist { display: grid; gap: 8px; margin-top: 12px; }
.doc {
    display: grid; grid-template-columns: auto 1fr auto; gap: 11px; align-items: center;
    padding: 11px 12px; border-radius: 14px;
    background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft);
    transition: background .5s, border-color .3s;
    animation: rise .3s var(--ease) both;
}
.doc.is-new { background: #f2fbf7; border-color: var(--green); }
.doc.ghost { opacity: .7; }
.doc-ico {
    display: grid; place-items: center; flex: none;
    width: 38px; height: 38px; border-radius: 12px;
    color: var(--purple-dark); background: var(--purple-soft);
}
.doc-ico svg { width: 18px; height: 18px; }
.doc-body { min-width: 0; }
.doc-body strong {
    display: block; font-size: 13.5px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.doc-meta { font-size: 12px; color: var(--muted); }
.doc-del { color: var(--faint); padding: 7px; border-radius: 10px; }
.doc-del:hover { color: var(--red); background: var(--red-soft); }
.doc-del svg { width: 16px; height: 16px; }
.doc-progress { height: 5px; margin-top: 7px; border-radius: 3px; background: var(--ground-2); overflow: hidden; }
.doc-progress::after {
    content: ""; display: block; height: 100%; width: calc(var(--p, 0) * 1%);
    background: var(--purple); transition: width .2s;
}
/* ---------- Le plan de travail se replie proprement ---------- */
@media (max-width: 1100px) {
    .workspace { grid-template-columns: 1fr; }
    .side-col { position: static; max-height: none; overflow: visible; order: -1; }
    .side-col .keys-card { display: none; }              /* les repères : réservés au grand écran */
    .side-col .advice { margin-bottom: 4px; }
}
@media (max-width: 720px) {
    .flow { padding: 22px 12px 60px; }
    .block { padding: 18px 16px; border-radius: 20px; }
    .block-q { font-size: 18px; }
    .cards, .cards.compact, .cards.visual { grid-template-columns: 1fr; }
    .link-row { grid-template-columns: auto minmax(0, 1fr) auto; }
    .link-row [data-k="note"] { grid-column: 2 / 3; }
    .repeat-row { grid-template-columns: minmax(0, 1fr) auto; }
    .repeat-n { display: none; }
    .bigtext { padding: 18px 16px 28px; min-height: 220px; }
    .block-bigtext .block-head { padding: 18px 16px 0; }
    .write-foot { padding: 10px 16px 14px; }
}
/* =====================================================================
   Le récapitulatif
   ===================================================================== */
.recap-grid { display: grid; gap: 16px; }
@media (min-width: 860px) { .recap-grid { grid-template-columns: 1fr 1fr; } }
.recap-step {
    padding: 22px 24px; border-radius: var(--radius);
    background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.recap-step.ctx { grid-column: 1 / -1; border-color: var(--purple-line); background: #fdfcff; }
.recap-step-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.recap-num {
    display: grid; place-items: center; flex: none;
    width: 42px; height: 42px; border-radius: 14px;
    font-family: var(--display); font-size: 18px; font-weight: 800;
    color: var(--purple-dark); background: var(--purple-soft);
}
.recap-step-head > div { flex: 1; min-width: 0; }
.recap-step-head h3 { font-family: var(--display); font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.recap-step-head .eyebrow { font-size: 11.5px; margin-bottom: 2px; }
.recap-detail { font-size: 14px; color: var(--ink-2); margin-bottom: 10px; }

.submit-card {
    display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
    margin-top: 26px; padding: 28px 30px; border-radius: var(--radius-lg);
    background: linear-gradient(120deg, var(--purple-soft), #fdeee9 76%, var(--amber-soft));
    border: 1px solid var(--purple-line);
}
.submit-card > div:first-child { flex: 1; min-width: 300px; }
.submit-card h2 {
    font-family: var(--display); font-size: 23px; font-weight: 800; letter-spacing: -.03em;
    margin-bottom: 7px;
}
.submit-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.submit-actions { display: grid; gap: 10px; }

/* =====================================================================
   Modales
   ===================================================================== */
.backdrop {
    position: fixed; inset: 0; z-index: 90;
    display: grid; place-items: center; padding: 24px;
    background: rgba(37, 35, 54, .42); backdrop-filter: blur(4px);
    animation: fade-in .2s ease both;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal {
    width: 100%; max-width: 560px; max-height: calc(100vh - 48px); overflow-y: auto;
    background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow);
    padding: 26px 28px 28px;
    animation: pop .26s var(--ease) both;
}
.modal.wide { max-width: 760px; }
@keyframes pop {
    from { opacity: 0; transform: scale(.96) translateY(10px); }
    to { opacity: 1; transform: none; }
}
.modal-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.modal-ico {
    display: grid; place-items: center; flex: none;
    width: 46px; height: 46px; border-radius: 14px;
    color: var(--purple-dark); background: var(--purple-soft);
}
.modal-ico.good { color: var(--green-ink); background: var(--green-soft); }
.modal-ico.warn { color: var(--amber); background: var(--amber-soft); }
.modal-head-copy { flex: 1; min-width: 0; }
.modal-head-copy h2 {
    font-family: var(--display); font-size: 22px; font-weight: 800; letter-spacing: -.025em;
}
.modal-head-copy p { margin-top: 3px; font-size: 14.5px; color: var(--muted); }
.modal-close { color: var(--faint); padding: 7px; border-radius: 10px; }
.modal-close:hover { color: var(--ink); background: var(--ground); }
.modal-body { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }
.modal-foot { display: flex; justify-content: flex-end; gap: 10px; margin-top: 22px; flex-wrap: wrap; }

.copyrow { display: flex; gap: 10px; }
.copyrow .input { flex: 1; font-size: 13px; }

/* ---------- Le contenu de la modale d'analyse ---------- */
.review-wait {
    display: grid; justify-items: center; gap: 16px;
    padding: 26px 10px 18px; text-align: center;
}
.review-wait .orb { animation: breathe 1.6s ease-in-out infinite; }
.review-wait p { font-size: 14.5px; color: var(--muted); max-width: 380px; }

.review-summary { font-size: 15px; color: var(--ink-2); margin-bottom: 16px; }
.review-covered { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 18px; }
.review-covered .tag { font-weight: 600; }
.miss-list { display: grid; gap: 12px; }
.miss {
    display: grid; gap: 5px;
    padding: 15px 17px; border-radius: 14px;
    background: var(--amber-soft); border: 1px solid #f3e3c4;
}
.miss strong { display: flex; gap: 9px; align-items: center; font-size: 15px; color: #7a5119; }
.miss strong svg { width: 16px; height: 16px; color: var(--amber); flex: none; }
.miss p { font-size: 13.5px; color: #7a5119; line-height: 1.5; }
.miss .miss-ex { font-style: italic; color: #9a7434; }

/* =====================================================================
   Notifications
   ===================================================================== */
.toasts {
    position: fixed; z-index: 95; left: 50%; bottom: calc(var(--navbar-h) + 18px);
    transform: translateX(-50%);
    display: grid; gap: 8px; width: min(460px, calc(100vw - 32px));
    pointer-events: none;
}
.toast {
    display: flex; align-items: center; gap: 11px;
    padding: 13px 17px; border-radius: 14px;
    background: #262336; color: #fff; font-size: 14px;
    box-shadow: var(--shadow);
    animation: rise .28s var(--ease) both;
}
.toast svg { width: 16px; height: 16px; flex: none; }
.toast.warn { background: #6b4a12; }
.toast.error { background: #6d2018; }
.toast.out { animation: fade-in .2s ease reverse both; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* =====================================================================
   Landing V2 — récit complet de l'agence IA
   ---------------------------------------------------------------------
   Le hero historique reste une scène autonome. Le fil lumineux qui relie
   ses agents devient ensuite le langage visuel de toute la landing : il
   structure le brief, traverse le studio et révèle le site final.
   ===================================================================== */

.landing-page {
    height: auto;
    min-height: 100%;
    overflow-x: clip;
    overflow-y: auto;
    scroll-behavior: smooth;
    background: #080711;
}

.agency-landing {
    --night: #080711;
    --night-2: #0e0b19;
    --night-3: #151020;
    --surface-night: rgba(24, 19, 38, .78);
    --paper-bright: #f6f3fb;
    --paper-ink: #17131f;
    --signal-violet: #806cff;
    --signal-rose: #ed6ca1;
    --signal-amber: #ffbd68;
    --signal-mint: #83efbd;
    --landing-max: 1460px;
    --section-pad: clamp(110px, 12vw, 190px);
    --v2-dur-fast: 180ms;
    --v2-dur: 320ms;
    --v2-dur-reveal: 720ms;
    --v2-ease: cubic-bezier(.22, 1, .36, 1);
    width: 100%;
    height: auto;
    min-height: 100svh;
    overflow: visible;
    color: #f8f7fc;
    background: var(--night);
    transition: none;
}

.agency-landing::before {
    position: fixed;
    z-index: 0;
    opacity: .1;
    background-size: 92px 92px;
    -webkit-mask-image: linear-gradient(110deg, #000, rgba(0, 0, 0, .5) 55%, transparent 88%);
    mask-image: linear-gradient(110deg, #000, rgba(0, 0, 0, .5) 55%, transparent 88%);
}

.agency-landing::after {
    position: fixed;
    z-index: 90;
}

.agency-landing.is-leaving {
    opacity: 1;
    transform: none;
    filter: none;
}

.agency-hero-stage {
    position: relative;
    z-index: 2;
    isolation: isolate;
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 620px;
    overflow: hidden;
    background: #080711;
}

@supports (height: 100dvh) {
    .agency-hero-stage { height: 100dvh; }
}

.agency-hero-stage .agency-hero { height: 100%; }

.agency-longform {
    position: relative;
    z-index: 3;
    overflow: clip;
    background:
        radial-gradient(circle at 86% 8%, rgba(102, 87, 232, .13), transparent 25%),
        radial-gradient(circle at 8% 24%, rgba(213, 84, 147, .08), transparent 22%),
        var(--night);
}

#concept,
#brief,
#team,
#result,
#faq { scroll-margin-top: 92px; }

.agency-longform::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 1px;
    left: 50%;
    top: 0;
    bottom: 0;
    opacity: .28;
    background: linear-gradient(transparent 0%, #806cff 6%, #d55493 31%, transparent 47%, #806cff 64%, #f5a73b 82%, transparent 100%);
    box-shadow: 0 0 28px rgba(128, 108, 255, .42);
    pointer-events: none;
}

.agency-scroll-cue {
    position: absolute;
    z-index: 9;
    left: 50%;
    bottom: max(20px, env(safe-area-inset-bottom));
    display: grid;
    justify-items: center;
    gap: 8px;
    color: #8f899d;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-decoration: none;
    text-transform: uppercase;
    translate: -50% 0;
    transition: color var(--v2-dur-fast) ease;
}

.agency-scroll-cue:hover { color: #fff; }

.agency-scroll-cue i {
    position: relative;
    display: block;
    width: 1px;
    height: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, .16);
}

.agency-scroll-cue i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, #a18cff, transparent);
    animation: agency-scroll-signal 2.2s var(--v2-ease) infinite;
}

@keyframes agency-scroll-signal {
    from { transform: translateY(-110%); }
    to { transform: translateY(110%); }
}

.agency-proof-condition {
    max-width: 520px;
    margin-top: 10px;
    color: #a39cad;
    font-size: 11px;
    line-height: 1.5;
    animation: agency-reveal .8s var(--ease) .66s both;
}

/* ---------- Navigation flottante ---------- */
.agency-dock {
    position: fixed;
    z-index: 70;
    top: max(14px, env(safe-area-inset-top));
    left: 50%;
    display: grid;
    width: min(920px, calc(100vw - 32px));
    min-height: 58px;
    padding: 7px 8px 7px 12px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    background: rgba(13, 10, 24, .84);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .05);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    translate: -50% -18px;
    backdrop-filter: blur(20px) saturate(140%);
    transition: opacity var(--v2-dur) ease, translate var(--v2-dur) var(--v2-ease), visibility 0s linear var(--v2-dur);
}

.agency-dock.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    translate: -50% 0;
    transition-delay: 0s;
}

.agency-dock-brand {
    display: inline-flex;
    min-width: 90px;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.045em;
    text-decoration: none;
}

.agency-dock-brand img { width: 27px; height: 27px; }

.agency-dock-links {
    display: flex;
    justify-content: center;
    gap: clamp(14px, 2vw, 30px);
}

.agency-dock-links a {
    position: relative;
    color: #aaa4b6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    transition: color var(--v2-dur-fast) ease;
}

.agency-dock-links a::after {
    content: "";
    position: absolute;
    height: 1px;
    left: 0;
    right: 100%;
    bottom: -5px;
    background: linear-gradient(90deg, #806cff, #ed6ca1);
    transition: right var(--v2-dur) var(--v2-ease);
}

.agency-dock-links a:hover,
.agency-dock-links a.is-active { color: #fff; }
.agency-dock-links a:hover::after,
.agency-dock-links a.is-active::after { right: 0; }

.agency-dock-cta {
    display: inline-flex;
    min-height: 43px;
    padding: 0 15px 0 17px;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(120deg, #6959e9, #c75091);
    box-shadow: 0 8px 25px rgba(102, 87, 232, .25);
    font-size: 11.5px;
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--v2-dur-fast) var(--v2-ease), box-shadow var(--v2-dur-fast) ease;
}

.agency-dock-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(102, 87, 232, .36); }
.agency-dock-cta svg { width: 15px; height: 15px; }

/* ---------- Base éditoriale ---------- */
.agency-section {
    position: relative;
    width: min(100%, var(--landing-max));
    margin: 0 auto;
    padding: var(--section-pad) clamp(24px, 5vw, 82px);
}

.agency-section-head { max-width: 1210px; }

.agency-section-kicker {
    display: flex;
    margin-bottom: clamp(22px, 3vw, 38px);
    align-items: center;
    gap: 12px;
    color: #9b95a8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.agency-section-kicker span { color: #d4cfe0; }
.agency-section-kicker > i { width: 24px; height: 1px; background: linear-gradient(90deg, #806cff, #ed6ca1); }

.agency-section-head h2,
.agency-faq-head h2,
.agency-reassurance h2,
.agency-final h2 {
    font-family: var(--display);
    font-size: clamp(43px, 6.2vw, 92px);
    font-weight: 700;
    line-height: .99;
    letter-spacing: -.069em;
    text-wrap: balance;
}

.agency-section-head h2 em,
.agency-faq-head h2 em,
.agency-reassurance h2 em,
.agency-final h2 em {
    color: transparent;
    background: linear-gradient(105deg, #9a8cff, #db6bb7 54%, #ffb665);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
    /* Le tracking négatif fait déborder l'encre du dernier glyphe hors de la boîte
       de ligne, où background-clip: text ne peint pas → lettre « tronquée ».
       On étend la zone peinte à chaque fragment de ligne sans bouger la mise en page. */
    padding: 0 .09em;
    margin: 0 -.09em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.agency-section-head > p:not(.agency-section-kicker),
.agency-section-head-split > p,
.agency-faq-head > p:not(.agency-section-kicker) {
    max-width: 710px;
    margin-top: clamp(24px, 3.3vw, 42px);
    color: #aaa5b5;
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.68;
}

.agency-section-head-split {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    align-items: end;
    gap: clamp(50px, 8vw, 130px);
}

.agency-section-head-split > p { margin: 0 0 .35em; }
.agency-section-head-centered { max-width: 1120px; margin-inline: auto; text-align: center; }
.agency-section-head-centered .agency-section-kicker { justify-content: center; }
.agency-section-head-centered > p:not(.agency-section-kicker) { margin-inline: auto; }

.agency-landing.is-enhanced [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--v2-dur-reveal) ease, transform var(--v2-dur-reveal) var(--v2-ease);
}

.agency-landing.is-enhanced [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* ---------- Le concept en deux mouvements ---------- */
.agency-manifesto { padding-top: clamp(130px, 15vw, 220px); }
.agency-manifesto .agency-section-head { max-width: 1220px; }
.agency-manifesto .agency-section-head h2 { max-width: 1180px; }
.agency-manifesto .agency-section-head > p:not(.agency-section-kicker) { max-width: 780px; }

.agency-two-movements {
    display: grid;
    margin-top: clamp(72px, 9vw, 125px);
    grid-template-columns: minmax(0, 1fr) clamp(70px, 8vw, 125px) minmax(0, 1fr);
    align-items: center;
}

.agency-movement {
    position: relative;
    min-height: 530px;
    padding: clamp(30px, 4vw, 56px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(28, 23, 43, .92), rgba(13, 10, 24, .82));
    box-shadow: 0 35px 100px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.agency-movement::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -190px;
    top: -210px;
    border-radius: 50%;
    background: #6551db;
    box-shadow: -100px 130px 0 rgba(218, 83, 151, .5);
    filter: blur(70px);
    opacity: .28;
    pointer-events: none;
}

.agency-movement-build {
    border-color: rgba(194, 109, 218, .25);
    background: linear-gradient(145deg, rgba(42, 29, 58, .94), rgba(18, 12, 31, .88));
}

.agency-movement-build::before { background: #d55493; box-shadow: -120px 110px 0 rgba(245, 167, 59, .38); }

.agency-movement-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.agency-movement-num {
    color: #756f83;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
}

.agency-movement-state {
    display: inline-flex;
    min-height: 33px;
    padding: 0 12px;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    color: #bdb7ca;
    background: rgba(255, 255, 255, .035);
    font-size: 10px;
    font-weight: 700;
}

.agency-movement-state i { width: 6px; height: 6px; border-radius: 50%; background: var(--signal-mint); box-shadow: 0 0 12px rgba(131, 239, 189, .65); }
.agency-movement-label { position: relative; margin-top: 90px; color: #aaa3b6; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.agency-movement h3 {
    position: relative;
    margin-top: 13px;
    font-family: var(--display);
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.02;
    letter-spacing: -.06em;
}

.agency-movement > p:not(.agency-movement-label) {
    position: relative;
    max-width: 570px;
    margin-top: 24px;
    color: #b0aaba;
    font-size: 16px;
    line-height: 1.65;
}

.agency-movement ul {
    position: relative;
    display: flex;
    margin: 34px 0 0;
    padding: 26px 0 0;
    flex-wrap: wrap;
    gap: 13px 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    list-style: none;
}

.agency-movement li { display: inline-flex; align-items: center; gap: 8px; color: #d0cad8; font-size: 11px; font-weight: 600; }
.agency-movement li svg { width: 15px; height: 15px; color: #a895ff; }

.agency-movement-transfer {
    position: relative;
    display: grid;
    height: 80px;
    place-items: center;
}

.agency-movement-transfer::before {
    content: "";
    position: absolute;
    height: 1px;
    left: -8px;
    right: -8px;
    background: linear-gradient(90deg, rgba(128, 108, 255, .12), #806cff, #ed6ca1, rgba(237, 108, 161, .12));
    box-shadow: 0 0 18px rgba(128, 108, 255, .55);
}

.agency-movement-transfer > span {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c7baff;
    box-shadow: 0 0 10px #806cff;
    animation: agency-transfer 3.2s var(--v2-ease) infinite;
}
.agency-movement-transfer > span:nth-child(2) { animation-delay: -1s; }
.agency-movement-transfer > span:nth-child(3) { animation-delay: -2s; }

.agency-movement-transfer strong {
    position: relative;
    z-index: 2;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    color: #fff;
    background: #171226;
    box-shadow: 0 0 0 8px #080711, 0 0 40px rgba(128, 108, 255, .3);
}

@keyframes agency-transfer {
    from { left: -3%; opacity: 0; }
    20%, 80% { opacity: 1; }
    to { left: 103%; opacity: 0; }
}

.agency-manifesto-line {
    max-width: 920px;
    margin: clamp(65px, 8vw, 110px) auto 0;
    color: #777181;
    font-family: var(--display);
    font-size: clamp(22px, 2.7vw, 39px);
    line-height: 1.35;
    letter-spacing: -.04em;
    text-align: center;
}
.agency-manifesto-line strong { color: #f4f1f8; font-weight: 600; }

/* ---------- Le brief vivant ---------- */
.agency-brief { padding-top: clamp(150px, 16vw, 245px); }
.agency-brief-layout {
    display: grid;
    margin-top: clamp(80px, 10vw, 145px);
    grid-template-columns: minmax(0, .9fr) minmax(450px, 1.1fr);
    gap: clamp(70px, 9vw, 145px);
    align-items: start;
}

.agency-brief-steps { display: grid; }

.agency-brief-step {
    position: relative;
    display: grid;
    min-height: 0;
    padding: 32px 0;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 23px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .1);
    transition: opacity var(--v2-dur) ease, border-color var(--v2-dur) ease;
}

.agency-brief-step:last-child { border-bottom: 1px solid rgba(255, 255, 255, .1); }
.agency-landing.has-brief-observer .agency-brief-step:not(.is-active) { opacity: .42; }
.agency-brief-step.is-active { border-color: rgba(151, 130, 255, .55); opacity: 1; }

.agency-brief-step > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 14px;
    color: #928b9e;
    background: rgba(255, 255, 255, .025);
    font-family: var(--display);
    font-size: 10px;
    font-weight: 700;
    transition: color var(--v2-dur) ease, background var(--v2-dur) ease, box-shadow var(--v2-dur) ease;
}

.agency-brief-step.is-active > span { color: #fff; background: linear-gradient(145deg, #6958e8, #b955b2); box-shadow: 0 10px 30px rgba(102, 87, 232, .28); }
.agency-brief-step small { color: #a698df; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.agency-brief-step h3 { max-width: 560px; margin-top: 7px; font-family: var(--display); font-size: clamp(22px, 2.2vw, 31px); line-height: 1.16; letter-spacing: -.045em; }

.agency-brief-console {
    position: sticky;
    top: 105px;
    display: grid;
    gap: 20px;
}

.agency-console-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(186, 163, 255, .23);
    border-radius: 28px;
    background:
        radial-gradient(circle at 82% 12%, rgba(102, 87, 232, .23), transparent 31%),
        linear-gradient(145deg, rgba(29, 23, 45, .97), rgba(12, 9, 22, .96));
    box-shadow: 0 45px 120px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .05), 0 0 80px rgba(102, 87, 232, .08);
}

.agency-console-top {
    display: grid;
    min-height: 62px;
    padding: 0 20px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .025);
}

.agency-console-top > span { display: flex; gap: 5px; }
.agency-console-top > span i { width: 6px; height: 6px; border-radius: 50%; background: #5f5869; }
.agency-console-top > span i:nth-child(1) { background: #ed6ca1; }
.agency-console-top > span i:nth-child(2) { background: #ffbd68; }
.agency-console-top > span i:nth-child(3) { background: #83efbd; }
.agency-console-top strong { overflow: hidden; color: #bcb5c8; font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 10px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.agency-console-top small { display: inline-flex; align-items: center; gap: 6px; color: #8f899c; font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.agency-console-top small i { width: 5px; height: 5px; border-radius: 50%; background: var(--signal-mint); box-shadow: 0 0 10px rgba(131, 239, 189, .7); }

.agency-console-progress { height: 2px; background: rgba(255, 255, 255, .055); }
.agency-console-progress i { display: block; width: 17%; height: 100%; background: linear-gradient(90deg, #806cff, #d55ca6, #ffb45d); box-shadow: 0 0 16px rgba(128, 108, 255, .6); transition: width .55s var(--v2-ease); }

.agency-console-body {
    display: grid;
    min-height: 475px;
    padding: clamp(25px, 3vw, 38px);
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    gap: 0 24px;
}

.agency-console-index {
    display: flex;
    padding-top: 3px;
    grid-row: 1 / -1;
    flex-direction: column;
    gap: 23px;
}
.agency-console-index span { color: #5e5868; font-family: var(--display); font-size: 8px; font-weight: 700; transition: color var(--v2-dur) ease, transform var(--v2-dur) var(--v2-ease); }
.agency-console-index span.is-active { color: #c8bfff; transform: translateX(5px); }

.agency-console-panels { position: relative; min-height: 335px; }
.agency-console-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity .45s ease, transform .55s var(--v2-ease);
}
.agency-console-panel.is-active { opacity: 1; transform: none; pointer-events: auto; }
.agency-console-panel > p { display: flex; align-items: center; gap: 10px; color: #777080; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.agency-console-panel > p span { color: #c2b9d1; }
.agency-console-panel h3 { margin-top: 25px; font-family: var(--display); font-size: clamp(38px, 4.2vw, 62px); line-height: .98; letter-spacing: -.065em; }
.agency-console-panel ul { display: grid; margin: 32px 0 0; padding: 0; grid-template-columns: 1fr 1fr; gap: 11px; list-style: none; }
.agency-console-panel li { position: relative; padding-left: 15px; color: #aaa4b4; font-size: 11px; }
.agency-console-panel li::before { content: ""; position: absolute; width: 5px; height: 5px; left: 0; top: .55em; border-radius: 50%; background: #806cff; box-shadow: 0 0 8px rgba(128, 108, 255, .6); }

.agency-console-score {
    display: grid;
    padding-top: 24px;
    grid-column: 2;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, .07);
}
.agency-console-score > span { position: relative; display: grid; padding-left: 15px; grid-template-columns: auto 1fr; align-items: baseline; column-gap: 7px; }
.agency-console-score > span > i { position: absolute; width: 3px; left: 0; top: 4px; bottom: 4px; border-radius: 4px; background: linear-gradient(#806cff, #d75ba8); }
.agency-console-score strong { font-family: var(--display); font-size: 20px; letter-spacing: -.04em; }
.agency-console-score small { color: #7f7988; font-size: 8.5px; }

.agency-console-foot {
    display: flex;
    min-height: 60px;
    padding: 13px 20px;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    color: #9992a3;
    background: rgba(255, 255, 255, .018);
    font-size: 10px;
    line-height: 1.45;
}
.agency-console-foot svg { width: 15px; height: 15px; color: #ac98ff; }

.agency-delegation-note {
    display: grid;
    padding: 20px;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    background: rgba(255, 255, 255, .028);
}
.agency-delegation-note > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; color: #241a3b; background: linear-gradient(145deg, #b7a9ff, #f0a1b8); }
.agency-delegation-note > span svg { width: 19px; height: 19px; }
.agency-delegation-note small { display: block; color: #968f9f; font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.agency-delegation-note strong { display: block; margin-top: 3px; font-size: 12.5px; }
.agency-delegation-note p { margin-top: 5px; color: #8c8695; font-size: 10px; line-height: 1.45; }

/* ---------- Vitesse et coût : le travail parallèle ---------- */
.agency-velocity { padding-top: clamp(170px, 18vw, 280px); padding-bottom: clamp(160px, 17vw, 260px); }

.agency-velocity-metrics {
    display: grid;
    margin-top: clamp(75px, 9vw, 125px);
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 2.6vw, 38px);
}

.agency-velocity-metrics article {
    position: relative;
    min-height: 460px;
    padding: clamp(30px, 4vw, 58px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 30px;
    background: linear-gradient(150deg, rgba(29, 23, 45, .9), rgba(13, 10, 23, .88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.agency-velocity-metrics article::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -100px;
    bottom: -150px;
    border: 1px solid rgba(154, 130, 255, .2);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(128, 108, 255, .026), 0 0 0 90px rgba(237, 108, 161, .013);
}

.agency-velocity-metrics article:nth-child(2) {
    background: linear-gradient(150deg, rgba(47, 29, 49, .88), rgba(16, 10, 24, .9));
}

.agency-velocity-metrics small { color: #9e96a9; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.agency-velocity-metrics strong {
    display: block;
    margin: 25px 0 16px;
    padding-right: .05em; /* garde le dernier glyphe entier avec background-clip: text */
    color: transparent;
    background: linear-gradient(115deg, #a394ff, #de6eae 55%, #ffbb65);
    background-clip: text;
    -webkit-background-clip: text;
    font-family: var(--display);
    font-size: clamp(104px, 13.5vw, 190px);
    font-weight: 700;
    line-height: .9;
    letter-spacing: -.035em;
}
.agency-velocity-metrics h3 { position: relative; max-width: 450px; font-family: var(--display); font-size: clamp(24px, 2.4vw, 36px); line-height: 1.12; letter-spacing: -.045em; }
.agency-velocity-metrics p { position: relative; max-width: 520px; margin-top: 17px; color: #9891a1; font-size: 14px; line-height: 1.6; }

.agency-metric-note { max-width: 880px; margin: 28px auto 0; color: #9b94a4; font-size: 12px; line-height: 1.6; text-align: center; }

/* ---------- Le résultat : le site sort de la machine ---------- */
.agency-result {
    position: relative;
    z-index: 4;
    width: calc(100% - clamp(16px, 2vw, 34px));
    margin: 0 auto;
    padding: clamp(120px, 13vw, 200px) 0 clamp(130px, 14vw, 220px);
    overflow: hidden;
    border-radius: clamp(28px, 4vw, 58px);
    color: var(--paper-ink);
    background:
        radial-gradient(circle at 88% 5%, rgba(128, 108, 255, .17), transparent 24%),
        radial-gradient(circle at 8% 70%, rgba(237, 108, 161, .1), transparent 28%),
        var(--paper-bright);
}

.agency-result::before {
    content: "DIXIA / OUTPUT";
    position: absolute;
    left: -1.5vw;
    top: 37%;
    color: rgba(31, 24, 41, .025);
    font-family: var(--display);
    font-size: clamp(95px, 16vw, 280px);
    font-weight: 800;
    line-height: .7;
    letter-spacing: -.09em;
    white-space: nowrap;
    transform: rotate(-7deg);
    pointer-events: none;
}

.agency-result-inner { position: relative; width: min(100%, var(--landing-max)); margin: 0 auto; padding-inline: clamp(24px, 5vw, 82px); }
.agency-result .agency-section-kicker { color: #675f70; }
.agency-result .agency-section-kicker span { color: #2b2532; }
.agency-result .agency-section-head h2 em { background: linear-gradient(105deg, #6657e8, #b74d9f 58%, #dd7b3d); background-clip: text; -webkit-background-clip: text; }
.agency-result .agency-section-head-split > p { color: #5f5967; }

.agency-result-showcase {
    position: relative;
    display: grid;
    margin-top: clamp(75px, 9vw, 125px);
    padding: clamp(35px, 5vw, 76px);
    grid-template-rows: 1fr auto;
    justify-items: center;
    row-gap: clamp(26px, 3vw, 44px);
    overflow: hidden;
    border-radius: clamp(28px, 3vw, 44px);
    background:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
        radial-gradient(circle at 65% 35%, rgba(128, 108, 255, .3), transparent 29%),
        #15101f;
    background-size: 74px 74px, 74px 74px, auto, auto;
    box-shadow: 0 45px 110px rgba(35, 25, 49, .2);
}

.agency-result-window {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(88%, 1040px);
    aspect-ratio: 1.55;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: clamp(18px, 2.1vw, 30px);
    background: #eee8f5;
    box-shadow: 0 45px 110px rgba(0, 0, 0, .45), 0 0 100px rgba(128, 108, 255, .15), inset 0 1px 0 rgba(255, 255, 255, .5);
    transform: perspective(1300px) rotateX(2deg) rotateY(-3deg);
}
.agency-result-window > header { display: grid; min-height: 36px; padding: 0 15px; flex: none; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; color: #80788b; background: #171220; }
.agency-result-window > header > span { display: flex; gap: 5px; }
.agency-result-window > header > span i { width: 6px; height: 6px; border-radius: 50%; background: #6f6877; }
.agency-result-window > header > span i:nth-child(1) { background: #ed6ca1; }
.agency-result-window > header > span i:nth-child(2) { background: #ffbd68; }
.agency-result-window > header > span i:nth-child(3) { background: #83efbd; }
.agency-result-window > header > b { justify-self: center; min-width: 36%; padding: 5px 12px; border-radius: 6px; color: #8f8899; background: rgba(255, 255, 255, .055); font-family: ui-monospace, monospace; font-size: 7px; font-weight: 500; text-align: center; }
.agency-result-window > header > small { color: #83efbd; font-size: 6px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.agency-result-page { display: flex; min-height: 0; padding: 3.5% 5% 3%; flex: 1; flex-direction: column; color: #211a2b; background: radial-gradient(circle at 84% 8%, rgba(128, 108, 255, .09), transparent 32%), linear-gradient(145deg, #fbf9fd, #efeaf5); }
.agency-result-nav { display: grid; flex: none; grid-template-columns: 1fr auto auto; align-items: center; gap: 5%; }
.agency-result-nav strong { font-family: var(--display); font-size: clamp(9px, 1vw, 15px); letter-spacing: -.04em; }
.agency-result-nav > span { color: #766d80; font-size: clamp(4.5px, .55vw, 8px); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.agency-result-nav > i { display: inline-flex; min-height: clamp(14px, 1.6vw, 24px); padding: 0 clamp(7px, 1vw, 14px); align-items: center; border-radius: 6px; color: #f2edf8; background: #2b2036; font-size: clamp(4.5px, .55vw, 8px); font-weight: 700; font-style: normal; letter-spacing: .05em; text-transform: uppercase; }

.agency-result-hero { display: grid; min-height: 0; padding-top: 3%; grid-template-columns: 1fr .96fr; align-items: center; flex: 1; gap: 6%; }
.agency-result-copy small { color: #806cff; font-size: clamp(5px, .6vw, 9px); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.agency-result-copy > strong { display: block; margin-top: 3%; font-family: var(--display); font-size: clamp(19px, 3vw, 48px); line-height: .96; letter-spacing: -.055em; }
.agency-result-copy > strong em { color: transparent; background: linear-gradient(105deg, #6657e8, #c9509e 60%, #ef9440); background-clip: text; -webkit-background-clip: text; font-style: normal; padding: 0 .07em; margin: 0 -.07em; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.agency-result-copy > p { max-width: 88%; margin-top: 3.5%; color: #746d7b; font-size: clamp(5px, .75vw, 11px); line-height: 1.5; }
.agency-result-actions { display: flex; margin-top: 4.5%; align-items: center; gap: clamp(5px, .8vw, 12px); }
.agency-result-btn { display: inline-flex; min-height: clamp(20px, 2.4vw, 35px); padding: 0 clamp(8px, 1.3vw, 18px); align-items: center; gap: 7px; border-radius: 8px; color: #fff; background: linear-gradient(110deg, #6b59e8, #c55296); font-size: clamp(5px, .65vw, 9px); font-weight: 700; box-shadow: 0 6px 20px rgba(107, 89, 232, .35); }
.agency-result-btn svg { width: clamp(7px, .8vw, 12px); height: clamp(7px, .8vw, 12px); }
.agency-result-ghost { display: inline-flex; min-height: clamp(20px, 2.4vw, 35px); padding: 0 clamp(8px, 1.2vw, 16px); align-items: center; border: 1px solid #cfc7da; border-radius: 8px; color: #453d52; background: rgba(255, 255, 255, .6); font-size: clamp(5px, .65vw, 9px); font-weight: 700; }
.agency-result-trust { display: flex; margin-top: 4.5%; align-items: center; }
.agency-result-trust > i { width: clamp(10px, 1.3vw, 19px); aspect-ratio: 1; border: clamp(1px, .15vw, 2px) solid #faf8fc; border-radius: 50%; background: linear-gradient(140deg, #b7a8ff, #8a75f0); }
.agency-result-trust > i:nth-child(2) { margin-left: clamp(-4px, -.5vw, -7px); background: linear-gradient(140deg, #f0a1c4, #d65ea6); }
.agency-result-trust > i:nth-child(3) { margin-left: clamp(-4px, -.5vw, -7px); background: linear-gradient(140deg, #f8c98e, #ef9c4b); }
.agency-result-trust small { margin-left: clamp(4px, .6vw, 9px); color: #8d8598; font-size: clamp(4.5px, .58vw, 8.5px); font-weight: 600; letter-spacing: .03em; }

.agency-result-art { position: relative; align-self: stretch; min-height: 0; }
.agency-result-art figure { position: absolute; inset: 0; margin: 0; overflow: hidden; border-radius: clamp(12px, 1.5vw, 22px); background: linear-gradient(145deg, #6657e8, #d65ea6 57%, #f3a267); background-size: 160% 160%; box-shadow: 0 18px 50px rgba(102, 87, 232, .32); animation: agency-result-aurora 9s ease-in-out infinite alternate; }
@keyframes agency-result-aurora { from { background-position: 0% 0%; } to { background-position: 100% 100%; } }
.agency-result-art figure > i { position: absolute; width: 78%; aspect-ratio: 1; left: 50%; top: 50%; border: 1px solid rgba(255, 255, 255, .4); border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 0 clamp(14px, 2vw, 32px) rgba(255, 255, 255, .07), 0 0 0 clamp(30px, 4.4vw, 70px) rgba(255, 255, 255, .04), inset 0 0 clamp(20px, 3vw, 50px) rgba(255, 255, 255, .08); }
.agency-result-art figure > b { position: absolute; width: 27%; aspect-ratio: 1; left: 50%; top: 50%; border-radius: 50%; background: radial-gradient(circle at 38% 32%, #fdeecb, #f6cf85); transform: translate(-50%, -50%); box-shadow: 0 0 clamp(22px, 3.5vw, 60px) rgba(255, 214, 143, .75); }
.agency-result-art figure > span { position: absolute; width: 64%; height: 1px; left: 18%; top: 50%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .75) 30%, rgba(255, 255, 255, .75) 70%, transparent); transform: rotate(-24deg); }
.agency-result-art figure > u { position: absolute; width: clamp(3px, .4vw, 6px); aspect-ratio: 1; left: 21%; top: 26%; border-radius: 50%; background: #fff; opacity: .85; box-shadow: 0 0 10px rgba(255, 255, 255, .9); }
.agency-result-art figure > u.ra-dot-b { left: auto; right: 16%; top: 68%; opacity: .6; }

.agency-result-chip { position: absolute; z-index: 3; display: grid; padding: clamp(6px, 1vw, 14px) clamp(8px, 1.2vw, 17px); gap: clamp(1px, .2vw, 3px); border: 1px solid rgba(255, 255, 255, .65); border-radius: clamp(8px, 1vw, 14px); background: rgba(255, 255, 255, .82); box-shadow: 0 14px 34px rgba(35, 25, 55, .18); backdrop-filter: blur(10px); animation: agency-result-float 6.5s ease-in-out infinite alternate; }
.agency-result-chip > b { font-family: var(--display); font-size: clamp(8px, 1.15vw, 17px); letter-spacing: -.03em; white-space: nowrap; }
.agency-result-chip > small { color: #7d7589; font-size: clamp(4.5px, .55vw, 8px); font-weight: 600; white-space: nowrap; }
.agency-result-chip-metric { left: clamp(-14px, -2vw, -30px); top: 9%; }
.agency-result-chip-metric > b { color: transparent; background: linear-gradient(105deg, #6657e8, #c9509e); background-clip: text; -webkit-background-clip: text; }
.agency-result-chip-metric > i { position: absolute; width: clamp(5px, .7vw, 10px); aspect-ratio: 1; right: clamp(-2px, -.25vw, -4px); top: clamp(-2px, -.25vw, -4px); border-radius: 50%; background: var(--signal-mint); box-shadow: 0 0 10px rgba(131, 239, 189, .8); }
.agency-result-chip-note { right: clamp(-10px, -1.4vw, -22px); bottom: 8%; grid-template-columns: auto 1fr; align-items: center; column-gap: clamp(5px, .7vw, 10px); animation-delay: -3.2s; }
.agency-result-chip-note > b { grid-column: 2; font-size: clamp(6px, .8vw, 12px); }
.agency-result-chip-note > small { grid-column: 2; }
.agency-result-chip-note .chip-avatar { grid-row: 1 / 3; width: clamp(12px, 1.7vw, 25px); aspect-ratio: 1; border-radius: 50%; background: linear-gradient(140deg, #f0a1c4, #8a75f0); }
@keyframes agency-result-float { from { transform: translateY(clamp(-3px, -.4vw, -6px)); } to { transform: translateY(clamp(3px, .4vw, 6px)); } }

.agency-result-folio { display: grid; flex: none; margin-top: 3%; grid-template-columns: repeat(3, 1fr); gap: 2.2%; }
.agency-result-folio > span { position: relative; display: block; aspect-ratio: 2.6; overflow: hidden; border-radius: clamp(8px, 1vw, 14px); box-shadow: 0 6px 18px rgba(38, 28, 50, .12); }
.agency-result-folio i { position: absolute; inset: 0; }
.agency-result-folio .folio-a i { background: radial-gradient(circle at 80% 10%, rgba(255, 255, 255, .38), transparent 42%), linear-gradient(135deg, #5546d6, #8a75f0); }
.agency-result-folio .folio-a i::after { content: ""; position: absolute; width: 46%; aspect-ratio: 1; right: 7%; top: 18%; border: 1px solid rgba(255, 255, 255, .5); border-radius: 50%; box-shadow: inset 0 0 0 clamp(6px, .9vw, 14px) rgba(255, 255, 255, .12); }
.agency-result-folio .folio-b i { background: radial-gradient(circle at 16% 88%, rgba(255, 255, 255, .3), transparent 40%), linear-gradient(135deg, #c74e97, #f08bb4); }
.agency-result-folio .folio-b i::after { content: ""; position: absolute; width: 60%; height: 140%; left: 55%; top: -20%; border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%; background: rgba(255, 255, 255, .18); transform: rotate(18deg); }
.agency-result-folio .folio-c i { background: radial-gradient(circle at 50% -20%, rgba(255, 255, 255, .4), transparent 55%), linear-gradient(135deg, #e08a3c, #f5b76e); }
.agency-result-folio .folio-c i::after { content: "★★★★★"; position: absolute; right: 8%; top: 50%; color: rgba(255, 255, 255, .85); font-size: clamp(5px, .7vw, 11px); letter-spacing: .18em; transform: translateY(-50%); }
.agency-result-folio em { position: absolute; z-index: 2; left: 6%; bottom: 10%; padding: clamp(2px, .35vw, 5px) clamp(5px, .8vw, 11px); border-radius: 30px; color: #2b2036; background: rgba(255, 255, 255, .9); font-size: clamp(4.5px, .58vw, 8.5px); font-style: normal; font-weight: 700; letter-spacing: .02em; white-space: nowrap; box-shadow: 0 3px 10px rgba(38, 28, 50, .18); }

.agency-result-footline { display: flex; flex: none; margin-top: 3%; padding-top: 2%; align-items: center; justify-content: space-between; border-top: 1px solid #ddd6e4; }
.agency-result-footline strong { color: #8d8598; font-family: var(--display); font-size: clamp(6px, .75vw, 11px); letter-spacing: -.03em; }
.agency-result-footline span { display: flex; gap: clamp(3px, .45vw, 7px); }
.agency-result-footline span i { width: clamp(6px, .85vw, 13px); aspect-ratio: 1; border-radius: 50%; background: #d5cdde; }

.agency-result-stamp {
    position: absolute;
    z-index: 4;
    right: clamp(20px, 3vw, 46px);
    top: clamp(80px, 10.5vw, 152px);
    display: grid;
    width: clamp(82px, 8vw, 116px);
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    color: #dcd5e5;
    font-size: clamp(7px, .75vw, 10px);
    font-weight: 700;
    letter-spacing: .1em;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(9deg);
    backdrop-filter: blur(12px);
}
.agency-result-stamp strong { display: block; margin-top: -25%; color: #fff; font-family: var(--display); font-size: 13px; }
.agency-result-showcase > p { justify-self: start; margin: 0; color: #918a9a; font-size: clamp(10px, 1vw, 14px); line-height: 1.5; }
.agency-result-showcase > p strong { color: #fff; }


/* ---------- Réassurance ---------- */
.agency-reassurance {
    display: grid;
    padding-top: clamp(170px, 18vw, 275px);
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    align-items: start;
    gap: clamp(70px, 10vw, 160px);
}

.agency-reassurance-copy { position: sticky; top: 140px; }
.agency-reassurance h2 { font-size: clamp(40px, 5.1vw, 76px); }
.agency-text-link { display: inline-flex; margin-top: 42px; align-items: center; gap: 14px; color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; }
.agency-text-link::before { content: ""; width: 38px; height: 1px; background: linear-gradient(90deg, #806cff, #ed6ca1); transition: width var(--v2-dur) var(--v2-ease); }
.agency-text-link:hover::before { width: 58px; }
.agency-text-link svg { width: 17px; height: 17px; }

.agency-reassurance-list { display: grid; }
.agency-reassurance-list article { display: grid; min-height: 190px; padding: 34px 0; grid-template-columns: 62px 1fr; gap: 22px; border-top: 1px solid rgba(255, 255, 255, .1); }
.agency-reassurance-list article:last-child { border-bottom: 1px solid rgba(255, 255, 255, .1); }
.agency-reassurance-list article > span { display: grid; width: 54px; height: 54px; place-items: center; border: 1px solid rgba(164, 141, 255, .18); border-radius: 16px; color: #a18cff; background: rgba(102, 87, 232, .07); }
.agency-reassurance-list article > span svg { width: 22px; height: 22px; }
.agency-reassurance-list small { color: #8e86a0; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.agency-reassurance-list h3 { max-width: 520px; margin-top: 8px; font-family: var(--display); font-size: clamp(23px, 2.3vw, 34px); line-height: 1.13; letter-spacing: -.045em; }
.agency-reassurance-list p { max-width: 500px; margin-top: 13px; color: #8f8998; font-size: 13px; line-height: 1.55; }

/* ---------- FAQ ---------- */
.agency-faq {
    display: grid;
    padding-top: clamp(170px, 18vw, 275px);
    grid-template-columns: minmax(0, .8fr) minmax(500px, 1.2fr);
    gap: clamp(70px, 10vw, 160px);
}
.agency-faq-head { align-self: start; position: sticky; top: 140px; }
.agency-faq-head h2 { font-size: clamp(40px, 4.8vw, 72px); }
.agency-faq-head > p:not(.agency-section-kicker) { margin-top: 30px; font-size: 15px; }
.agency-faq-list { border-top: 1px solid rgba(255, 255, 255, .11); }
.agency-faq details { border-bottom: 1px solid rgba(255, 255, 255, .11); }
.agency-faq summary { display: grid; min-height: 108px; padding: 24px 2px; grid-template-columns: 38px 1fr 34px; align-items: center; gap: 17px; color: #ded9e4; cursor: pointer; list-style: none; }
.agency-faq summary::-webkit-details-marker { display: none; }
.agency-faq summary > span { color: #9b94a4; font-family: var(--display); font-size: 10px; font-weight: 700; }
.agency-faq summary strong { font-family: var(--display); font-size: clamp(17px, 1.7vw, 24px); font-weight: 600; line-height: 1.25; letter-spacing: -.035em; }
.agency-faq summary svg { width: 20px; height: 20px; color: #9e92af; transition: transform var(--v2-dur) var(--v2-ease), color var(--v2-dur-fast) ease; }
.agency-faq details[open] summary svg { color: #c3b5ff; transform: rotate(45deg); }
.agency-faq details > p { max-width: 690px; margin: -6px 50px 0 55px; padding: 0 0 34px; color: #9c95a4; font-size: 15px; line-height: 1.68; }

/* ---------- Climax et footer ---------- */
.agency-final {
    position: relative;
    isolation: isolate;
    display: grid;
    width: calc(100% - clamp(16px, 2vw, 34px));
    min-height: min(920px, 92svh);
    margin: clamp(140px, 16vw, 250px) auto 0;
    padding: clamp(90px, 10vw, 150px) clamp(24px, 6vw, 95px);
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: clamp(28px, 4vw, 58px);
    background:
        linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px),
        radial-gradient(circle at 50% 45%, rgba(102, 87, 232, .2), transparent 32%),
        #0b0813;
    background-size: 84px 84px, 84px 84px, auto, auto;
}

.agency-final-atmosphere { position: absolute; z-index: -1; inset: 0; pointer-events: none; }
.agency-final-atmosphere::before,
.agency-final-atmosphere::after { content: ""; position: absolute; left: 50%; top: 48%; border: 1px solid rgba(161, 137, 255, .15); border-radius: 50%; transform: translate(-50%, -50%); }
.agency-final-atmosphere::before { width: min(72vw, 1040px); aspect-ratio: 1; box-shadow: 0 0 0 65px rgba(128, 108, 255, .018), 0 0 0 135px rgba(237, 108, 161, .012); }
.agency-final-atmosphere::after { width: min(47vw, 670px); aspect-ratio: 1; border-color: rgba(237, 108, 161, .16); }
.agency-final-atmosphere i { position: absolute; width: 7px; height: 7px; left: 50%; top: 48%; border-radius: 50%; background: #d8cdff; box-shadow: 0 0 15px #806cff; animation: agency-final-orbit 12s linear infinite; }
.agency-final-atmosphere i:nth-child(2) { background: #f49abb; animation-duration: 17s; animation-delay: -5s; }
.agency-final-atmosphere i:nth-child(3) { background: #ffca83; animation-duration: 22s; animation-delay: -11s; }
@keyframes agency-final-orbit { from { transform: rotate(0deg) translateX(min(34vw, 490px)) rotate(0deg); } to { transform: rotate(360deg) translateX(min(34vw, 490px)) rotate(-360deg); } }

.agency-final-content { display: grid; max-width: 1060px; justify-items: center; text-align: center; }
.agency-final-content .agency-section-kicker { justify-content: center; }
.agency-final h2 { font-size: clamp(50px, 7.6vw, 112px); }
.agency-final-content > p:not(.agency-section-kicker) { max-width: 720px; margin-top: 34px; color: #aaa3b3; font-size: clamp(16px, 1.45vw, 20px); line-height: 1.65; }
.agency-final-cta { margin-top: 45px; min-width: 285px; }
.agency-final-content > small { display: inline-flex; margin-top: 19px; align-items: center; gap: 8px; color: #aaa3b3; font-size: 11px; }
.agency-final-content > small svg { width: 14px; height: 14px; color: #a28fff; }

.agency-footer {
    position: relative;
    display: grid;
    width: min(100%, var(--landing-max));
    min-height: 190px;
    margin: 0 auto;
    padding: 45px clamp(24px, 5vw, 82px) max(45px, env(safe-area-inset-bottom));
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    color: #aaa3b3;
}
.agency-footer-brand { display: inline-flex; width: fit-content; align-items: center; gap: 9px; color: #fff; font-family: var(--display); font-size: 23px; font-weight: 700; letter-spacing: -.05em; text-decoration: none; }
.agency-footer-brand img { width: 32px; height: 32px; }
.agency-footer > p { font-size: 10px; font-weight: 700; letter-spacing: .13em; text-align: center; text-transform: uppercase; }
.agency-footer > div { display: flex; justify-self: end; align-items: center; gap: 18px; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.agency-footer > div a { color: #9f97aa; text-decoration: none; }
.agency-footer > div a:hover { color: #fff; }

/* ---------- Recomposition responsive de la landing V2 ---------- */
@media (max-width: 1180px) {
    .agency-section { padding-inline: clamp(24px, 4.5vw, 54px); }
    .agency-section-head-split { gap: 55px; }

    .agency-two-movements { grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr); }
    .agency-movement { min-height: 555px; padding: 35px; }
    .agency-movement-label { margin-top: 70px; }
    .agency-movement ul { display: grid; }

    .agency-brief-layout { grid-template-columns: minmax(0, .92fr) minmax(410px, 1.08fr); gap: 55px; }
    .agency-console-body { min-height: 445px; }
    .agency-console-panel h3 { font-size: clamp(36px, 4.4vw, 52px); }



    .agency-result-inner { padding-inline: clamp(24px, 4.5vw, 54px); }
    .agency-footer { padding-inline: clamp(24px, 4.5vw, 54px); }
}

@media (max-width: 1080px) {
    .agency-section-head-split { grid-template-columns: 1fr; align-items: start; gap: 28px; }
    .agency-section-head-split > p { max-width: 720px; margin: 0; }

    .agency-two-movements { grid-template-columns: 1fr; gap: 0; }
    .agency-movement { min-height: 0; }
    .agency-movement-transfer { width: 80px; height: 115px; margin: 0 auto; transform: rotate(90deg); }

    .agency-brief-layout { grid-template-columns: 1fr; gap: 50px; }
    .agency-brief-steps { max-width: 780px; }
    .agency-brief-console { position: relative; top: auto; width: min(100%, 720px); margin-inline: auto; }




    .agency-reassurance,
    .agency-faq { grid-template-columns: 1fr; gap: 70px; }
    .agency-reassurance-copy,
    .agency-faq-head { position: relative; top: auto; max-width: 820px; }
    .agency-reassurance-list,
    .agency-faq-list { max-width: 850px; margin-left: auto; width: 100%; }

    .agency-footer { grid-template-columns: 1fr 1fr; }
    .agency-footer > p { display: none; }
}

@media (max-width: 800px) {
    .agency-dock { gap: 12px; }
    .agency-dock-links { display: none; }
    .agency-dock-brand { min-width: 0; }

    .agency-section { --section-pad: 105px; padding-inline: 22px; }
    .agency-section-head h2,
    .agency-faq-head h2,
    .agency-reassurance h2 { font-size: clamp(39px, 8.8vw, 64px); }
    .agency-section-head > p:not(.agency-section-kicker),
    .agency-section-head-split > p { font-size: 16px; }


    .agency-velocity-metrics { grid-template-columns: 1fr; }
    .agency-velocity-metrics article { min-height: 390px; }
    .agency-velocity-metrics strong { font-size: clamp(120px, 27vw, 190px); }

    .agency-result { width: calc(100% - 12px); }
    .agency-result-inner { padding-inline: 22px; }

    .agency-final { width: calc(100% - 12px); }
    .agency-final h2 { font-size: clamp(45px, 10vw, 76px); }
    .agency-footer { padding-inline: 22px; }
}

@media (max-width: 680px) {
    .agency-hero-stage {
        height: auto;
        min-height: 100svh;
        overflow: hidden;
    }
    @supports (height: 100dvh) { .agency-hero-stage { height: auto; min-height: 100dvh; } }
    .agency-hero-stage .agency-hero { height: auto; }
    .agency-scroll-cue { display: none; }
    .agency-hero-stage .agency-footnote { padding-bottom: 30px; }

    .agency-masthead { max-width: calc(100vw - 36px); gap: 10px; }
    .agency-status { flex: 0 0 auto; }
    .agency-proof-condition { order: 6; max-width: 360px; margin: 9px auto 0; font-size: 10.5px; text-align: center; }

    .agency-dock {
        top: auto;
        bottom: max(12px, env(safe-area-inset-bottom));
        width: calc(100vw - 24px);
        min-height: 62px;
        padding: 7px 7px 7px 12px;
        border-radius: 18px;
        translate: -50% 18px;
        backdrop-filter: blur(18px) saturate(140%);
    }
    .agency-dock.is-visible { translate: -50% 0; }
    .agency-dock-brand span { display: none; }
    .agency-dock-brand img { width: 30px; height: 30px; }
    .agency-dock-cta { min-height: 47px; justify-content: center; }

    .agency-longform::before { left: 18px; opacity: .22; }
    .agency-section-kicker { margin-bottom: 20px; font-size: 8.5px; line-height: 1.4; }
    .agency-section-kicker > i { width: 16px; }
    .agency-section-head h2,
    .agency-faq-head h2,
    .agency-reassurance h2 { font-size: clamp(37px, 11.1vw, 52px); line-height: 1.01; }

    .agency-manifesto { padding-top: 118px; }
    .agency-two-movements { margin-top: 58px; }
    .agency-movement { padding: 28px 23px; border-radius: 24px; }
    .agency-movement-label { margin-top: 60px; }
    .agency-movement h3 { font-size: clamp(35px, 10vw, 47px); }
    .agency-movement > p:not(.agency-movement-label) { font-size: 15px; }
    .agency-movement ul { gap: 12px; }
    .agency-movement-transfer { height: 92px; }
    .agency-manifesto-line { margin-top: 55px; text-align: left; }

    .agency-brief { padding-top: 120px; }
    .agency-brief-layout { margin-top: 55px; }
    .agency-brief-step { min-height: 0; padding: 30px 0; grid-template-columns: 42px 1fr; column-gap: 15px; }
    .agency-brief-step > span { width: 36px; height: 36px; border-radius: 11px; }
    .agency-brief-step h3 { font-size: 22px; }

    .agency-console-shell { border-radius: 21px; }
    .agency-console-top { min-height: 52px; padding: 0 14px; gap: 9px; }
    .agency-console-top strong { font-size: 8px; }
    .agency-console-top small { font-size: 0; }
    .agency-console-body { min-height: 400px; padding: 24px 17px; grid-template-columns: 26px minmax(0, 1fr); gap: 0 12px; }
    .agency-console-index { gap: 20px; }
    .agency-console-panels { min-height: 285px; }
    .agency-console-panel h3 { margin-top: 20px; font-size: clamp(33px, 10vw, 45px); }
    .agency-console-panel ul { margin-top: 25px; grid-template-columns: 1fr; gap: 8px; }
    .agency-console-score { gap: 6px; }
    .agency-console-score strong { font-size: 17px; }
    .agency-console-score small { display: block; grid-column: 1 / -1; }
    .agency-console-foot { padding-inline: 15px; }
    .agency-delegation-note { grid-template-columns: 38px 1fr; padding: 17px; }
    .agency-delegation-note > span { width: 38px; height: 38px; }



    .agency-velocity { padding-top: 130px; padding-bottom: 120px; }
    .agency-velocity-metrics { margin-top: 58px; }
    .agency-velocity-metrics article { min-height: 350px; padding: 28px 23px; border-radius: 23px; }
    .agency-velocity-metrics strong { margin-top: 30px; font-size: clamp(96px, 28vw, 140px); }

    .agency-result { padding-top: 110px; padding-bottom: 120px; border-radius: 29px; }
    .agency-result-showcase { margin-top: 60px; padding: 30px 15px; row-gap: 22px; border-radius: 23px; }
    .agency-result-window { width: min(94%, 365px); aspect-ratio: auto; border-radius: 20px; transform: none; }
    .agency-result-window > header { min-height: 34px; }
    .agency-result-window > header > b { min-width: 46%; }
    .agency-result-page { padding: 16px 14px; }
    .agency-result-nav { grid-template-columns: 1fr auto; gap: 10px; }
    .agency-result-nav > span { display: none; }
    .agency-result-nav strong { font-size: 10px; }
    .agency-result-nav > i { min-height: 19px; padding: 0 9px; font-size: 6px; }
    .agency-result-hero { width: 100%; padding-top: 14px; grid-template-columns: 1fr; grid-template-rows: auto 190px; flex: none; gap: 14px; }
    .agency-result-copy > strong { font-size: 24px; }
    .agency-result-copy > p { max-width: 100%; font-size: 8px; }
    .agency-result-btn { min-height: 26px; padding: 0 11px; font-size: 7px; }
    .agency-result-ghost { min-height: 26px; padding: 0 10px; font-size: 7px; }
    .agency-result-trust > i { width: 14px; border-width: 1.5px; }
    .agency-result-trust small { margin-left: 6px; font-size: 6.5px; }
    .agency-result-art { margin-inline: 12px; }
    .agency-result-chip { padding: 7px 10px; border-radius: 10px; }
    .agency-result-chip > b { font-size: 10px; }
    .agency-result-chip > small { font-size: 5.5px; }
    .agency-result-chip-metric { left: -12px; top: 7%; }
    .agency-result-chip-note { right: -12px; bottom: 6%; }
    .agency-result-chip-note > b { font-size: 8px; }
    .agency-result-chip-note .chip-avatar { width: 15px; }
    .agency-result-folio { margin-top: 12px; gap: 7px; }
    .agency-result-folio > span { aspect-ratio: 1.35; }
    .agency-result-folio em { left: 8%; bottom: 8%; padding: 2px 6px; font-size: 5.5px; }
    .agency-result-footline { margin-top: 12px; padding-top: 9px; }
    .agency-result-stamp { width: 74px; right: 15px; top: 16px; font-size: 6px; }
    .agency-result-stamp strong { font-size: 10px; }
    .agency-result-showcase > p { font-size: 11px; }

    .agency-reassurance,
    .agency-faq { padding-top: 130px; gap: 55px; }
    .agency-reassurance-list article { min-height: 0; padding: 28px 0; grid-template-columns: 50px 1fr; gap: 15px; }
    .agency-reassurance-list article > span { width: 46px; height: 46px; border-radius: 13px; }
    .agency-faq summary { min-height: 92px; padding: 20px 0; grid-template-columns: 28px 1fr 28px; gap: 11px; }
    .agency-faq details > p { margin: -2px 28px 0 39px; padding-bottom: 28px; font-size: 14px; }

    .agency-final { min-height: 760px; margin-top: 120px; padding: 82px 20px; border-radius: 29px; }
    .agency-final h2 { font-size: clamp(43px, 12vw, 60px); }
    .agency-final-content > p:not(.agency-section-kicker) { margin-top: 26px; font-size: 15px; }
    .agency-final-cta { width: min(100%, 296px); min-width: 0; }
    .agency-final-content > small { max-width: 260px; align-items: flex-start; line-height: 1.4; }
    .agency-final-atmosphere::before { width: 135vw; }
    .agency-final-atmosphere::after { width: 92vw; }
    @keyframes agency-final-orbit { from { transform: rotate(0deg) translateX(46vw) rotate(0deg); } to { transform: rotate(360deg) translateX(46vw) rotate(-360deg); } }

    .agency-footer { min-height: 230px; padding-bottom: max(105px, calc(env(safe-area-inset-bottom) + 92px)); grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .agency-footer > div { justify-self: center; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
    .agency-masthead { left: max(15px, env(safe-area-inset-left)); right: max(15px, env(safe-area-inset-right)); max-width: calc(100vw - 30px); }
    .agency-status { min-height: 35px; padding-inline: 9px; }
    .agency-status strong { font-size: 9.5px; }

    .agency-proof { grid-template-columns: 1fr 1px 1fr; }
    .agency-proof > span:first-child { grid-column: 1 / -1; padding-bottom: 9px; border-bottom: 1px solid rgba(255, 255, 255, .07); }
    .agency-proof > i:first-of-type { display: none; }
    .agency-proof > span:nth-of-type(2) { grid-column: 1; }
    .agency-proof > i:last-of-type { grid-column: 2; }
    .agency-proof > span:nth-of-type(3) { grid-column: 3; }

    .agency-section { padding-inline: 18px; }
    .agency-section-kicker { align-items: flex-start; flex-wrap: wrap; gap: 7px 9px; }
    .agency-section-head h2,
    .agency-faq-head h2,
    .agency-reassurance h2 { font-size: clamp(36px, 11.4vw, 48px); }
    .agency-movement-top { align-items: flex-start; }
    .agency-movement-state { max-width: 150px; line-height: 1.2; }

    .agency-console-body { min-height: 430px; }
    .agency-console-panel h3 { font-size: 34px; }
    .agency-delegation-note { grid-template-columns: 1fr; }



    .agency-result-inner { padding-inline: 18px; }
    .agency-result-window { width: 96%; }
    .agency-result-stamp { display: none; }
    .agency-footer > div { gap: 11px 15px; }
}

@media (min-width: 681px) and (max-height: 720px) {
    .agency-hero-stage { min-height: 620px; height: 100svh; }
    .agency-scroll-cue { display: none; }
}

@media (min-width: 1081px) and (max-height: 820px) {
    .agency-brief-console { top: 72px; }
    .agency-console-body { min-height: 350px; padding-top: 23px; padding-bottom: 23px; }
    .agency-console-panels { min-height: 250px; }
    .agency-console-panel h3 { margin-top: 17px; font-size: clamp(32px, 3.6vw, 46px); }
    .agency-console-panel ul { margin-top: 21px; gap: 8px; }
    .agency-console-score { padding-top: 17px; }
    .agency-delegation-note { padding: 15px 17px; }
    .agency-reassurance-copy,
    .agency-faq-head { top: 90px; }
}

@media (min-width: 681px) and (max-height: 520px) {
    .agency-hero-stage { height: auto; min-height: 520px; }
    .agency-hero-stage .agency-hero { height: auto; min-height: 520px; }
}

@media (forced-colors: active) {
    .agency-dock,
    .agency-movement,
    .agency-console-shell,
    .agency-velocity-metrics article,
    .agency-final { border: 1px solid CanvasText; background: Canvas; }
    .agency-result { color: CanvasText; background: Canvas; border: 1px solid CanvasText; }
    .agency-section-head h2 em,
    .agency-faq-head h2 em,
    .agency-reassurance h2 em,
    .agency-final h2 em { color: CanvasText; background: none; -webkit-text-fill-color: currentColor; }
}

.agency-landing.is-paused .agency-scroll-cue i::after,
.agency-landing.is-paused .agency-movement-transfer > span,
.agency-landing.is-paused .agency-final-atmosphere i { animation-play-state: paused !important; }

@media (prefers-reduced-motion: reduce) {
    .agency-landing.is-enhanced [data-reveal] { opacity: 1; transform: none; }
    .agency-movement-transfer > span,
    .agency-final-atmosphere i,
    .agency-scroll-cue i::after,
    .agency-result-art figure,
    .agency-result-chip { animation: none !important; }
    .agency-dock { backdrop-filter: none; }
}

/* ---------- Renforts d'accessibilité et amélioration progressive ---------- */
.agency-skip-link {
    position: fixed;
    z-index: 120;
    left: 16px;
    top: 14px;
    display: inline-flex;
    min-height: 44px;
    padding: 0 16px;
    align-items: center;
    border: 2px solid #fff;
    border-radius: 12px;
    color: #fff;
    background: #171126;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .38);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform 180ms cubic-bezier(.22, 1, .36, 1);
}
.agency-skip-link:focus-visible { transform: none; }

.agency-hero-stage .agency-logo,
.agency-dock-brand,
.agency-footer-brand,
.agency-text-link { min-height: 44px; }

.agency-footer > div a {
    display: inline-flex;
    min-height: 44px;
    padding-inline: 4px;
    align-items: center;
}









@keyframes agency-tab-panel-in {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
}

.is-runtime-paused,
.is-runtime-paused *,
.is-runtime-paused::before,
.is-runtime-paused::after,
.is-runtime-paused *::before,
.is-runtime-paused *::after { animation-play-state: paused !important; }

@media (prefers-reduced-motion: reduce) {
    .agency-proof-condition { animation: none !important; opacity: 1; transform: none; }
    .agency-skip-link { transition: none; }
}

/* ---------- Showcase Lumea : vrai site, vraie profondeur 3D ---------- */
.agency-exception-showcase {
    position: relative;
    isolation: isolate;
    min-height: clamp(690px, 68vw, 980px);
    margin-top: clamp(72px, 9vw, 126px);
    padding: clamp(28px, 4vw, 58px);
    overflow: hidden;
    border-radius: clamp(28px, 3vw, 46px);
    color: #f3f0e8;
    background:
        radial-gradient(circle at 82% 16%, rgba(115, 142, 150, .22), transparent 27%),
        radial-gradient(circle at 11% 82%, rgba(177, 144, 91, .16), transparent 23%),
        linear-gradient(125deg, #17201f, #0b100f 56%, #080b0b);
    box-shadow: 0 48px 120px rgba(24, 31, 31, .28);
}
.agency-exception-showcase::before { content: "LUMEA / LIVE EXPERIENCE"; position: absolute; z-index: -1; left: -2%; top: 5%; color: rgba(255,255,255,.035); font-family: var(--display); font-size: clamp(54px, 8vw, 126px); font-weight: 800; line-height: .78; letter-spacing: -.08em; white-space: nowrap; transform: rotate(-5deg); }
.exception-atmosphere { position: absolute; z-index: -1; inset: 0; pointer-events: none; }
.exception-atmosphere i { position: absolute; display: block; }
.exception-atmosphere i:nth-child(1) { width: 44%; aspect-ratio: 1; right: -22%; top: -24%; border: 1px solid rgba(210,224,219,.16); border-radius: 50%; box-shadow: 0 0 0 32px rgba(255,255,255,.018), 0 0 0 84px rgba(255,255,255,.012); }
.exception-atmosphere i:nth-child(2) { left: 7%; bottom: 12%; width: 1px; height: 36%; background: linear-gradient(transparent, rgba(202,179,137,.5), transparent); transform: rotate(31deg); }
.exception-atmosphere i:nth-child(3) { width: 5px; aspect-ratio: 1; right: 10%; bottom: 13%; border-radius: 50%; background: #d7bf92; box-shadow: 0 0 25px rgba(215,191,146,.8); animation: exception-star 4s ease-in-out infinite alternate; }
@keyframes exception-star { to { opacity: .25; transform: translateY(-18px); } }

.exception-stage { position: relative; height: clamp(570px, 54vw, 790px); perspective: 1600px; perspective-origin: 50% 46%; }
.exception-world {
    --exception-rx: 1.4deg;
    --exception-ry: -2.5deg;
    position: absolute;
    inset: 0;
    transform: rotateX(var(--exception-rx)) rotateY(var(--exception-ry));
    transform-style: preserve-3d;
    transition: transform 480ms cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}
.exception-browser {
    position: absolute;
    z-index: 2;
    left: 8%;
    top: 8%;
    display: flex;
    width: 84%;
    aspect-ratio: 1.62;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: clamp(16px, 1.8vw, 27px);
    background: #1b211f;
    box-shadow: 0 55px 100px rgba(0,0,0,.62), 0 10px 24px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.6);
    container-type: inline-size;
    transform: translateZ(-18px);
    transform-style: preserve-3d;
}
.exception-browser::after { content: ""; position: absolute; z-index: 20; inset: 0; border-radius: inherit; background: linear-gradient(118deg, rgba(255,255,255,.14), transparent 10%, transparent 74%, rgba(255,255,255,.035)); pointer-events: none; }
.exception-chrome { position: relative; z-index: 8; display: grid; min-height: clamp(33px, 3.5cqi, 41px); padding: 0 1.45cqi; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2cqi; color: rgba(255,255,255,.5); border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(14,18,17,.96); }
.exception-chrome > span { display: flex; gap: .5cqi; }.exception-chrome > span i { width: .58cqi; min-width: 4px; max-width: 7px; aspect-ratio: 1; border-radius: 50%; background: #66706d; }.exception-chrome > span i:first-child { background: #c6976a; }.exception-chrome > span i:nth-child(2) { background: #d8c59e; }.exception-chrome > span i:nth-child(3) { background: #758f83; }
.exception-chrome > b { display: inline-flex; min-width: 30cqi; min-height: 2.15cqi; padding: 0 1.1cqi; align-items: center; justify-content: center; gap: .7cqi; border: 1px solid rgba(255,255,255,.08); border-radius: 99px; background: rgba(255,255,255,.045); font-family: ui-monospace, monospace; font-size: .66cqi; font-weight: 500; letter-spacing: .035em; }.exception-chrome > b i { width: .48cqi; aspect-ratio: 1; border: 1px solid #8eaa9d; border-radius: 50%; box-shadow: 0 0 8px rgba(142,170,157,.65); }
.exception-chrome > small { justify-self: end; color: #d8c59e; font-size: .6cqi; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.exception-viewport { position: relative; min-height: 0; flex: 1; overflow: hidden; background: #e7e1d4; }
.exception-track { position: absolute; inset: 0; height: 500%; animation: exception-scroll 27s cubic-bezier(.76,0,.24,1) infinite; will-change: transform; }
.exception-screen { position: relative; height: 20%; overflow: hidden; }
@keyframes exception-scroll { 0%,10% { transform: translateY(0); } 16%,33% { transform: translateY(-20%); } 39%,56% { transform: translateY(-40%); } 62%,79% { transform: translateY(-60%); } 85%,100% { transform: translateY(-80%); } }
.exception-browser:hover .exception-track { animation-play-state: paused; }
.exception-page-meter { position: absolute; z-index: 12; right: 1.2cqi; top: 13%; width: 2px; height: 57%; overflow: hidden; border-radius: 4px; background: rgba(255,255,255,.25); }.exception-page-meter i { display: block; width: 100%; height: 20%; background: #fff; animation: exception-meter 27s cubic-bezier(.76,0,.24,1) infinite; }
@keyframes exception-meter { 0%,10% { transform: translateY(0); } 16%,33% { transform: translateY(100%); } 39%,56% { transform: translateY(200%); } 62%,79% { transform: translateY(300%); } 85%,100% { transform: translateY(0); } }
.exception-page-count { position: absolute; z-index: 12; right: .8cqi; bottom: 6%; display: grid; justify-items: center; gap: .35cqi; color: #fff; font-family: ui-monospace, monospace; font-size: .56cqi; font-style: normal; }.exception-page-count b::before { content: "01"; animation: exception-count 27s cubic-bezier(.76,0,.24,1) infinite; }.exception-page-count i { width: 1px; height: 1.1cqi; background: rgba(255,255,255,.4); }.exception-page-count em { opacity: .6; font-style: normal; }
@keyframes exception-count { 0%,10%,85%,100% { content: "01"; } 16%,33% { content: "02"; } 39%,56% { content: "03"; } 62%,79% { content: "04"; } }

/* Page 01 — une vraie promesse hôtelière */
.exception-home > img, .exception-book > img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.exception-home > img { object-position: center 54%; transform: scale(1.025); animation: lumea-camera 11s ease-in-out infinite alternate; }
@keyframes lumea-camera { to { transform: scale(1.075) translateX(-.8%); } }
.exception-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,13,12,.75), rgba(7,13,12,.1) 57%, rgba(7,13,12,.16)), linear-gradient(0deg, rgba(7,13,12,.4), transparent 38%); }
.lumea-nav { position: absolute; z-index: 3; left: 4cqi; right: 4cqi; top: 2.2cqi; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: #fff; }.lumea-nav strong { font-family: var(--display); font-size: 1.28cqi; letter-spacing: -.04em; }.lumea-nav strong sup { margin-left: .2cqi; color: #dfc79c; font-size: .55cqi; }.lumea-nav span { font-size: .58cqi; font-weight: 600; letter-spacing: .07em; }.lumea-nav > i { justify-self: end; display: inline-flex; min-height: 2.25cqi; padding: 0 1.2cqi; align-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 99px; background: rgba(12,18,16,.14); font-size: .56cqi; font-style: normal; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.lumea-hero-copy { position: absolute; z-index: 3; left: 7cqi; top: 11.2cqi; color: #fff; }.lumea-hero-copy > small { font-size: .62cqi; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }.lumea-hero-copy > strong { display: block; margin-top: 1.25cqi; font-family: Georgia, 'Times New Roman', serif; font-size: 5.35cqi; font-weight: 400; line-height: .84; letter-spacing: -.07em; }.lumea-hero-copy > strong em { color: #e7d3ab; font-style: italic; }.lumea-hero-copy > p { margin-top: 1.65cqi; color: rgba(255,255,255,.8); font-size: .78cqi; line-height: 1.55; }.lumea-hero-copy > span { display: inline-flex; margin-top: 1.6cqi; align-items: center; gap: .9cqi; font-size: .6cqi; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }.lumea-hero-copy > span i { display: grid; width: 2.4cqi; aspect-ratio: 1; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: 1cqi; font-style: normal; }
.lumea-weather { position: absolute; z-index: 3; right: 4.3cqi; bottom: 4cqi; display: grid; grid-template-columns: auto auto; align-items: end; column-gap: 1cqi; color: #fff; }.lumea-weather small { grid-column: 1/-1; font-size: .48cqi; letter-spacing: .12em; text-transform: uppercase; }.lumea-weather strong { font-family: Georgia, serif; font-size: 2.2cqi; font-weight: 400; }.lumea-weather span { padding-bottom: .35cqi; font-size: .55cqi; }
.lumea-scroll { position: absolute; z-index: 3; left: 4cqi; bottom: 2.6cqi; display: flex; align-items: center; gap: .7cqi; color: rgba(255,255,255,.72); font-size: .52cqi; letter-spacing: .12em; text-transform: uppercase; }.lumea-scroll i { display: block; width: 3.5cqi; height: 1px; background: rgba(255,255,255,.5); }.lumea-scroll i::after { content:""; display:block; width: 45%; height:100%; background:#fff; animation: lumea-scroll-line 1.8s ease-in-out infinite alternate; } @keyframes lumea-scroll-line { to { transform: translateX(120%); } }

/* Page 02 — offre et conversion */
.exception-suites { padding: 4.1cqi 5cqi; color: #26302c; background: #eee9de; }.exception-suites::before { content:"SUITES"; position:absolute; right:-2cqi; top:-4cqi; color:rgba(38,48,44,.045); font-family:Georgia,serif; font-size:18cqi; letter-spacing:-.08em; }
.exception-suites > header { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.5fr .8fr; align-items: start; }.exception-suites > header small { font-size: .55cqi; font-weight: 700; letter-spacing:.12em; text-transform:uppercase; }.exception-suites > header strong { font-family: Georgia,serif; font-size: 3.6cqi; font-weight:400; line-height:.86; letter-spacing:-.07em; }.exception-suites > header strong em { color:#8b6e49; font-style:italic; }.exception-suites > header p { color:#68716d; font-size:.67cqi; line-height:1.55; }
.lumea-suite-grid { position:absolute; z-index:2; left:5cqi; right:5cqi; top:15.1cqi; bottom:3.8cqi; display:grid; grid-template-columns:1.55fr .58fr; gap:1.2cqi; }.lumea-suite-grid figure { position:relative; margin:0; overflow:hidden; }.lumea-suite-grid figure img { width:100%; height:100%; object-fit:cover; transition: transform 900ms cubic-bezier(.22,1,.36,1); }.exception-browser:hover .lumea-suite-grid figure img { transform:scale(1.035); }.lumea-suite-grid figcaption { position:absolute; left:0; right:0; bottom:0; display:grid; padding:1.35cqi 1.5cqi; grid-template-columns:1fr auto; color:#fff; background:linear-gradient(transparent,rgba(10,14,12,.8)); }.lumea-suite-grid figcaption span { font-family:Georgia,serif; font-size:1.35cqi; }.lumea-suite-grid figcaption small { grid-row:2; font-size:.52cqi; opacity:.75; }.lumea-suite-grid figcaption b { grid-column:2; grid-row:1/3; align-self:center; font-size:.55cqi; letter-spacing:.08em; text-transform:uppercase; }
.lumea-suite-grid aside { display:flex; padding:1.5cqi; flex-direction:column; justify-content:space-between; border:1px solid #c9c1b1; background:#e3dccf; }.lumea-suite-grid aside span { display:grid; }.lumea-suite-grid aside small { color:#747b76; font-size:.5cqi; letter-spacing:.1em; text-transform:uppercase; }.lumea-suite-grid aside strong { margin-top:.5cqi; font-family:Georgia,serif; font-size:2.5cqi; font-weight:400; }.lumea-suite-grid aside i { color:#747b76; font-size:.54cqi; font-style:normal; }.lumea-suite-grid aside p { color:#606963; font-size:.63cqi; line-height:1.5; }.lumea-suite-grid aside > b { display:flex; min-height:2.7cqi; align-items:center; justify-content:center; border-radius:99px; color:#fff; background:#27332e; font-size:.52cqi; letter-spacing:.07em; text-transform:uppercase; }
.lumea-suite-grid aside > em { display:flex; align-items:center; gap:.45cqi; color:#747b76; font-size:.52cqi; font-style:normal; letter-spacing:.04em; }.lumea-suite-grid aside > em i { color:#8b6e49; font-size:.6cqi; }
.lumea-suite-grid aside dl { display:grid; margin:0; grid-template-columns:1fr auto; align-items:center; }.lumea-suite-grid aside dl dt { padding:.6cqi 0; border-top:1px solid #cfc7b6; color:#747b76; font-size:.5cqi; letter-spacing:.07em; text-transform:uppercase; }.lumea-suite-grid aside dl dd { margin:0; padding:.6cqi 0; border-top:1px solid #cfc7b6; justify-self:end; color:#26302c; font-family:Georgia,serif; font-size:.8cqi; }

/* Page 03 — une expérience concrète */
.exception-experience { display:grid; grid-template-columns:1.12fr .88fr; color:#efece4; background:#202a27; }.exception-experience > figure { position:relative; margin:0; overflow:hidden; }.exception-experience > figure::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,transparent 70%,rgba(32,42,39,.38)); }.exception-experience > figure img { width:100%; height:100%; object-fit:cover; }.exception-experience > div { display:flex; padding:5.2cqi 4cqi 4cqi; flex-direction:column; }.exception-experience > div > small { color:#d7be91; font-size:.55cqi; letter-spacing:.12em; text-transform:uppercase; }.exception-experience > div > strong { margin-top:1.3cqi; font-family:Georgia,serif; font-size:3.8cqi; font-weight:400; line-height:.86; letter-spacing:-.07em; }.exception-experience > div > strong em { color:#d7be91; font-style:italic; }.exception-experience > div > p { margin:1.4cqi 0 2cqi; color:rgba(255,255,255,.64); font-size:.68cqi; line-height:1.55; }.exception-experience > div > span { display:grid; min-height:2.75cqi; grid-template-columns:2.2cqi 1fr; align-items:center; border-top:1px solid rgba(255,255,255,.16); font-size:.56cqi; }.exception-experience > div > span i { color:#d7be91; font-family:ui-monospace,monospace; font-size:.47cqi; font-style:normal; }
.exception-experience > div > blockquote { position:relative; margin:auto 0; padding-left:2.4cqi; color:rgba(239,236,228,.9); font-family:Georgia,serif; font-size:1.42cqi; font-style:italic; line-height:1.4; }.exception-experience > div > blockquote::before { content:"“"; position:absolute; left:0; top:-.3cqi; color:#d7be91; font-size:3.2cqi; line-height:1; font-style:normal; }.exception-experience > div > blockquote em { color:#d7be91; }.exception-experience > div > blockquote cite { display:block; margin-top:.9cqi; color:#d7be91; font-family:var(--body); font-size:.5cqi; font-style:normal; letter-spacing:.12em; text-transform:uppercase; }
.exception-experience > div > footer { display:flex; padding-top:1.2cqi; align-items:center; justify-content:space-between; border-top:1px solid rgba(255,255,255,.16); color:rgba(255,255,255,.62); font-size:.56cqi; }.exception-experience > div > footer b { color:#efece4; font-size:.52cqi; font-weight:700; letter-spacing:.09em; text-transform:uppercase; }

/* Page 04 — réservation */
.exception-book .exception-shade { background:linear-gradient(90deg,rgba(5,12,17,.82),rgba(5,12,17,.18) 62%),linear-gradient(0deg,rgba(5,12,17,.52),transparent 45%); }.exception-book > div { position:absolute; z-index:3; left:7cqi; top:10cqi; color:#fff; }.exception-book > div small { font-size:.6cqi; font-weight:700; letter-spacing:.14em; text-transform:uppercase; }.exception-book > div strong { display:block; margin-top:1.4cqi; font-family:Georgia,serif; font-size:4.9cqi; font-weight:400; line-height:.86; letter-spacing:-.07em; }.exception-book > div strong em { color:#d9c29a; font-style:italic; }.exception-book > div p { margin-top:1.4cqi; color:rgba(255,255,255,.72); font-size:.7cqi; }.exception-book > div > b { display:inline-flex; min-height:3cqi; margin-top:1.8cqi; padding:0 1.6cqi; align-items:center; border-radius:99px; color:#24302b; background:#e8ddc6; font-size:.56cqi; letter-spacing:.08em; text-transform:uppercase; }.exception-book footer { position:absolute; z-index:3; left:4cqi; right:4cqi; bottom:2.5cqi; display:grid; grid-template-columns:1fr auto 1fr; align-items:center; color:#fff; }.exception-book footer strong { font-family:var(--display); font-size:1.25cqi; }.exception-book footer span { font-family:ui-monospace,monospace; font-size:.5cqi; letter-spacing:.1em; }.exception-book footer small { justify-self:end; font-size:.53cqi; }

/* Les éléments qui sortent réellement du navigateur */
.exception-booking-card { position:absolute; z-index:6; right:1%; top:47%; width:27%; padding:1.25% 1.35%; border:1px solid rgba(255,255,255,.76); border-radius:clamp(12px,1.3vw,20px); color:#25302c; background:rgba(246,242,232,.93); box-shadow:-18px 30px 55px rgba(0,0,0,.38), inset 0 1px 0 #fff; backdrop-filter:blur(14px); transform:translateZ(145px) rotateY(-7deg) rotateX(2deg); transform-style:preserve-3d; animation: exception-booking-float 27s cubic-bezier(.76,0,.24,1) infinite; }.exception-booking-card::after { content:""; position:absolute; left:4%; right:4%; top:100%; height:14px; background:#a8a294; transform-origin:top; transform:rotateX(-88deg); filter:brightness(.65); }
.exception-booking-card header { display:flex; padding-bottom:4%; align-items:center; justify-content:space-between; border-bottom:1px solid #d1c9bb; font-size:clamp(7px,.72vw,11px); font-weight:700; }.exception-booking-card header i { color:#9a7a4e; font-style:normal; }.exception-booking-card > div { display:grid; padding:5% 0; grid-template-columns:1fr auto 1fr; align-items:center; gap:5%; }.exception-booking-card > div > i { color:#9a7a4e; font-style:normal; }.exception-booking-card span { display:grid; gap:2px; }.exception-booking-card small { color:#767d79; font-size:clamp(5px,.48vw,7px); letter-spacing:.09em; text-transform:uppercase; }.exception-booking-card b { font-family:Georgia,serif; font-size:clamp(10px,1.15vw,17px); font-weight:400; }.exception-booking-card footer { display:grid; padding-top:4%; grid-template-columns:1fr auto; align-items:end; border-top:1px solid #d1c9bb; }.exception-booking-card footer strong { display:inline-flex; min-height:clamp(24px,2.4vw,36px); padding:0 1.1vw; align-items:center; border-radius:99px; color:#fff; background:#29352f; font-size:clamp(5px,.5vw,8px); letter-spacing:.06em; text-transform:uppercase; }.exception-booking-card > u { position:absolute; right:9%; top:8%; width:5px; aspect-ratio:1; border-radius:50%; background:#769786; box-shadow:0 0 10px #769786; text-decoration:none; }
@keyframes exception-booking-float { 0%,10%,62%,100% { opacity:1; transform:translateZ(145px) translateY(0) rotateY(-7deg) rotateX(2deg); } 16%,56% { opacity:0; transform:translateZ(70px) translateY(30px) rotateY(-2deg); } }

.exception-room-card { position:absolute; z-index:5; left:-1%; top:48%; width:27%; aspect-ratio:.78; margin:0; transform:translateZ(125px) rotateY(12deg) rotateZ(-3deg); transform-style:preserve-3d; animation:exception-room-float 27s cubic-bezier(.76,0,.24,1) infinite; }.exception-room-card > div { position:absolute; inset:0; overflow:hidden; border:5px solid #ebe5d9; border-radius:clamp(10px,1.2vw,18px); background:#ddd3c2; box-shadow:22px 32px 55px rgba(0,0,0,.38); backface-visibility:hidden; }.exception-room-card img { width:100%; height:100%; object-fit:cover; }.exception-room-card > div > span { position:absolute; left:7%; right:7%; bottom:5%; display:grid; padding:7%; border-radius:8px; color:#27312d; background:rgba(245,240,229,.9); font-family:Georgia,serif; font-size:clamp(10px,1.2vw,18px); backdrop-filter:blur(8px); }.exception-room-card > div small { margin-top:3px; color:#6f7772; font-family:var(--body); font-size:clamp(5px,.48vw,7px); }.exception-room-side { position:absolute; left:100%; top:8px; width:18px; height:calc(100% - 16px); background:#948d80; transform-origin:left; transform:rotateY(90deg); }.exception-room-base { position:absolute; left:8px; top:100%; width:calc(100% - 16px); height:18px; background:#6f6a60; transform-origin:top; transform:rotateX(-90deg); }
@keyframes exception-room-float { 0%,10%,62%,100% { opacity:0; transform:translateZ(55px) translateX(-30px) rotateY(4deg) rotateZ(-5deg); } 17%,33% { opacity:1; transform:translateZ(125px) translateX(0) rotateY(12deg) rotateZ(-3deg); } 39%,56% { opacity:0; transform:translateZ(70px) translateX(-18px) rotateY(6deg); } }

.exception-phone { position:absolute; z-index:7; right:2%; top:11%; width:14%; aspect-ratio:.53; overflow:hidden; border:5px solid #e7e0d3; border-radius:clamp(15px,1.9vw,27px); background:#25302c; box-shadow:-18px 30px 55px rgba(0,0,0,.42); transform:translateZ(135px) rotateY(-13deg) rotateZ(4deg); transform-style:preserve-3d; animation:exception-phone-float 27s cubic-bezier(.76,0,.24,1) infinite; }.exception-phone::after { content:""; position:absolute; left:-11px; top:7%; width:12px; height:88%; background:#999286; transform-origin:right; transform:rotateY(-88deg); }.exception-phone > span { position:absolute; z-index:3; left:50%; top:1.5%; width:34%; height:2%; border-radius:99px; background:#202522; transform:translateX(-50%); }.exception-phone img { width:100%; height:58%; object-fit:cover; }.exception-phone > div { display:flex; height:42%; padding:11% 10%; flex-direction:column; color:#f2eee6; background:#26312d; }.exception-phone small { color:#d8bf92; font-size:clamp(4px,.38vw,6px); letter-spacing:.1em; text-transform:uppercase; }.exception-phone b { margin-top:8%; font-family:Georgia,serif; font-size:clamp(8px,.92vw,14px); font-weight:400; line-height:.95; }.exception-phone i { margin-top:auto; font-size:clamp(4px,.4vw,6px); font-style:normal; letter-spacing:.06em; text-transform:uppercase; }
@keyframes exception-phone-float { 0%,33%,85%,100% { opacity:0; transform:translateZ(55px) translateX(24px) rotateY(-5deg) rotateZ(6deg); } 39%,56% { opacity:1; transform:translateZ(135px) translateX(0) rotateY(-13deg) rotateZ(4deg); } 62%,79% { opacity:0; transform:translateZ(80px) translateX(16px) rotateY(-7deg); } }

.exception-caption { position:absolute; z-index:8; left:clamp(22px,3.5vw,52px); right:clamp(22px,3.5vw,52px); bottom:clamp(24px,3.2vw,48px); display:grid; grid-template-columns:1fr 1.35fr 1fr; align-items:end; gap:20px; }.exception-caption > span { display:flex; align-items:center; gap:8px; color:#d8cdb8; font-size:clamp(7px,.7vw,10px); font-weight:700; letter-spacing:.09em; text-transform:uppercase; }.exception-caption > span i { width:6px; aspect-ratio:1; border-radius:50%; background:#85aa98; box-shadow:0 0 12px #85aa98; animation:result-live-pulse 1.8s ease-in-out infinite; }.exception-caption p { margin:0; color:rgba(255,255,255,.58); font-size:clamp(10px,1vw,14px); line-height:1.5; }.exception-caption p strong { color:#fff; }.exception-caption > small { justify-self:end; color:rgba(255,255,255,.38); font-family:ui-monospace,monospace; font-size:clamp(6px,.6vw,9px); letter-spacing:.07em; text-transform:uppercase; }

.agency-landing.is-paused .exception-track,
.agency-landing.is-paused .exception-page-meter i,
.agency-landing.is-paused .exception-page-count b::before,
.agency-landing.is-paused .exception-booking-card,
.agency-landing.is-paused .exception-room-card,
.agency-landing.is-paused .exception-phone { animation-play-state:paused !important; }

@media (max-width: 780px) {
    .agency-exception-showcase { min-height: 820px; margin-top:60px; padding:18px 10px 28px; border-radius:24px; }
    .exception-stage { height:710px; perspective:1200px; }
    .exception-world { transform:none; }
    .exception-browser { left:3%; top:5%; width:94%; aspect-ratio:.8; transform:none; }
    .exception-chrome { min-height:34px; padding:0 11px; }.exception-chrome > b { min-width:48%; min-height:18px; font-size:6.5px; }.exception-chrome > small { font-size:0; }.exception-chrome > small::after { content:"↗"; font-size:8px; }.exception-chrome > span { gap:4px; }.exception-chrome > span i { width:5px; }
    .lumea-nav { left:6cqi; right:6cqi; top:6cqi; }.lumea-nav strong { font-size:3.2cqi; }.lumea-nav span { display:none; }.lumea-nav > i { min-height:6cqi; padding:0 3cqi; font-size:1.45cqi; }
    .lumea-hero-copy { left:7cqi; top:29cqi; }.lumea-hero-copy > small { font-size:1.45cqi; }.lumea-hero-copy > strong { margin-top:3cqi; font-size:11.5cqi; }.lumea-hero-copy > p { margin-top:4cqi; font-size:2cqi; }.lumea-hero-copy > span { margin-top:4cqi; font-size:1.5cqi; }.lumea-hero-copy > span i { width:6cqi; font-size:2.5cqi; }.exception-home > img { object-position:62% center; }.lumea-weather { right:7cqi; bottom:8cqi; column-gap:2cqi; }.lumea-weather small { font-size:1.2cqi; }.lumea-weather strong { font-size:5cqi; }.lumea-weather span { font-size:1.3cqi; }.lumea-scroll { left:7cqi; bottom:8cqi; font-size:1.15cqi; }.lumea-scroll i { width:8cqi; }
    .exception-page-meter { right:2.4cqi; }.exception-page-count { right:1.7cqi; font-size:1.2cqi; }.exception-page-count i { height:3cqi; }
    .exception-suites { padding:8cqi 7cqi; }.exception-suites > header { grid-template-columns:1fr; }.exception-suites > header small { font-size:1.35cqi; }.exception-suites > header strong { margin-top:4cqi; font-size:8.5cqi; }.exception-suites > header p { margin-top:3cqi; font-size:1.65cqi; }.lumea-suite-grid { left:7cqi; right:7cqi; top:45cqi; bottom:8cqi; grid-template-columns:1fr; grid-template-rows:1fr auto; }.lumea-suite-grid figcaption { padding:3cqi; }.lumea-suite-grid figcaption span { font-size:3.2cqi; }.lumea-suite-grid figcaption small,.lumea-suite-grid figcaption b { font-size:1.2cqi; }.lumea-suite-grid aside { padding:3cqi; display:grid; grid-template-columns:1fr 1fr; gap:2cqi; }.lumea-suite-grid aside strong { font-size:5cqi; }.lumea-suite-grid aside small,.lumea-suite-grid aside i,.lumea-suite-grid aside p,.lumea-suite-grid aside > b { font-size:1.2cqi; }.lumea-suite-grid aside > b { min-height:6cqi; }.lumea-suite-grid aside > em { justify-self:end; align-self:end; gap:1cqi; font-size:1.15cqi; }.lumea-suite-grid aside > em i { font-size:1.3cqi; }.lumea-suite-grid aside dl { grid-column:1/-1; }.lumea-suite-grid aside dl dt { padding:1cqi 0; font-size:1.1cqi; }.lumea-suite-grid aside dl dd { padding:1cqi 0; font-size:1.7cqi; }
    .exception-experience { grid-template-columns:1fr; grid-template-rows:47% 53%; }.exception-experience > div { padding:6cqi 7cqi; }.exception-experience > div > small { font-size:1.3cqi; }.exception-experience > div > strong { margin-top:2cqi; font-size:7.6cqi; }.exception-experience > div > p { margin:2.5cqi 0 3cqi; font-size:1.6cqi; }.exception-experience > div > span { min-height:5.2cqi; grid-template-columns:5cqi 1fr; font-size:1.25cqi; }.exception-experience > div > span i { font-size:1.1cqi; }.exception-experience > div > blockquote { padding-left:4.6cqi; font-size:2.35cqi; }.exception-experience > div > blockquote::before { top:-.8cqi; font-size:6.5cqi; }.exception-experience > div > blockquote cite { margin-top:1.6cqi; font-size:1.15cqi; }.exception-experience > div > footer { padding-top:2cqi; font-size:1.25cqi; }.exception-experience > div > footer b { font-size:1.2cqi; }
    .exception-book > img { object-position:66% center; }.exception-book > div { left:7cqi; top:29cqi; }.exception-book > div small { font-size:1.4cqi; }.exception-book > div strong { margin-top:3cqi; font-size:10cqi; }.exception-book > div p { margin-top:3cqi; font-size:1.6cqi; }.exception-book > div > b { min-height:7cqi; margin-top:4cqi; padding:0 4cqi; font-size:1.3cqi; }.exception-book footer { left:7cqi; right:7cqi; bottom:7cqi; grid-template-columns:1fr auto; }.exception-book footer strong { font-size:3cqi; }.exception-book footer span { display:none; }.exception-book footer small { font-size:1.2cqi; }
    .exception-booking-card { right:-1%; top:62%; width:58%; padding:3%; transform:translateZ(80px) rotateY(-5deg) rotateZ(1deg); }.exception-booking-card header { font-size:8px; }.exception-booking-card b { font-size:11px; }.exception-booking-card footer strong { font-size:6px; }
    @keyframes exception-booking-float { 0%,10%,62%,100% { opacity:1; transform:translateZ(80px) translateY(0) rotateY(-5deg) rotateZ(1deg); } 16%,56% { opacity:0; transform:translateZ(30px) translateY(24px); } }
    .exception-room-card { left:-3%; top:63%; width:46%; transform:translateZ(70px) rotateY(9deg) rotateZ(-4deg); }.exception-room-card > div { border-width:3px; }.exception-room-card > div > span { font-size:10px; }
    @keyframes exception-room-float { 0%,10%,62%,100% { opacity:0; transform:translateZ(20px) translateX(-22px) rotateY(3deg) rotateZ(-5deg); } 17%,33% { opacity:1; transform:translateZ(70px) translateX(0) rotateY(9deg) rotateZ(-4deg); } 39%,56% { opacity:0; transform:translateZ(30px) translateX(-14px); } }
    .exception-phone { right:-2%; top:56%; width:28%; border-width:3px; transform:translateZ(70px) rotateY(-8deg) rotateZ(4deg); }
    @keyframes exception-phone-float { 0%,33%,85%,100% { opacity:0; transform:translateZ(20px) translateX(18px) rotateY(-3deg) rotateZ(5deg); } 39%,56% { opacity:1; transform:translateZ(70px) translateX(0) rotateY(-8deg) rotateZ(4deg); } 62%,79% { opacity:0; transform:translateZ(30px) translateX(12px); } }
    .exception-caption { left:20px; right:20px; bottom:24px; grid-template-columns:1fr; gap:8px; }.exception-caption > span { font-size:7px; }.exception-caption p { max-width:290px; font-size:11px; }.exception-caption > small { display:none; }
}

@media (max-width: 390px) {
    .agency-exception-showcase { min-height:760px; }.exception-stage { height:650px; }.exception-browser { aspect-ratio:.76; }.exception-booking-card { top:59%; }.exception-room-card { top:61%; }.exception-phone { top:54%; }
}

@media (prefers-reduced-motion: reduce) {
    .exception-track,.exception-page-meter i,.exception-page-count b::before,.exception-home > img,.exception-booking-card,.exception-room-card,.exception-phone,.exception-atmosphere i,.exception-caption > span i,.lumea-scroll i::after { animation:none !important; }
    .exception-world,.exception-browser { transform:none !important; transition:none; }
    .exception-booking-card { opacity:1; }.exception-room-card,.exception-phone { opacity:0; }
}
