/* ============================================================
   AURA LANDING — transposition du design system de app.myfit.care
   Bioluminescence : encre bleutée profonde, aurore menthe→cyan→violet,
   Sora / Inter / JetBrains Mono, verre dépoli, glow contenus.
   Chargé APRÈS manifeste*.css : redéfinit les tokens de body.manifeste
   (tout le site est piloté par variables) puis ajuste les composants.
   Tout est sous @media screen : le print (cartes d'urgence) reste intact.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&display=swap');

@media screen {

/* ============================================================
   1. TOKENS — palette exacte de l'app (src/index.css @theme)
   ============================================================ */
body.manifeste {
    --paper: #070a12;          /* page */
    --paper-2: #0e1424;        /* sections alternées */
    --surface: #101624;        /* cartes */
    --surface-2: #161d30;
    --surface-3: #1f2740;
    --ink: #edf1f9;            /* texte principal */
    --ink-2: #b6c0d8;          /* corps long-form */
    --ink-3: #9aa5c0;          /* muted */
    --dim: #5f6b88;
    --rule: color-mix(in srgb, #31405f 45%, transparent);
    --rule-strong: #31405f;
    --accent: #4ef0c0;         /* menthe aurore */
    --accent-deep: #6ab8ff;    /* cyan (hover liens) */
    --accent-3: #9d7bff;       /* violet */
    --warn: #ffb24d;
    --alert: #fb5470;
    --gradient-aura: linear-gradient(120deg, #4ef0c0 0%, #6ab8ff 50%, #9d7bff 100%);
    --gradient-aura-soft: linear-gradient(120deg, rgba(78,240,192,0.14), rgba(106,184,255,0.14), rgba(157,123,255,0.14));
    --serif: 'Sora', 'Inter', system-ui, sans-serif;  /* display de l'app */
    --sans: 'Inter', system-ui, -apple-system, sans-serif;
    --mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;

    /* Nav partagée */
    --nav-ink: #edf1f9;
    --nav-muted: #9aa5c0;
    --nav-brand: #4ef0c0;
    --nav-brand-deep: #6ab8ff;
    --nav-brand-bright: #4ef0c0;
    --nav-glass: color-mix(in srgb, #0a0e18 78%, transparent);
    --nav-glass-strong: color-mix(in srgb, #0a0e18 92%, transparent);
    --nav-pop-glass: #101624;
    --nav-line: color-mix(in srgb, #31405f 55%, transparent);
    --nav-pill: color-mix(in srgb, #edf1f9 6%, transparent);

    background: var(--paper);
    color: var(--ink-2);
}

/* ============================================================
   2. FOND BIOLUMINESCENT — halos d'aurore (recette exacte de l'app)
   remplace le grain papier du Manifeste
   ============================================================ */
body.manifeste::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 1;
    background-image:
        radial-gradient(ellipse 70% 45% at 50% -10%, rgba(78, 240, 192, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 55% 45% at 90% 100%, rgba(157, 123, 255, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 45% 40% at 0% 60%, rgba(106, 184, 255, 0.045) 0%, transparent 60%);
}

body.manifeste ::selection {
    background: color-mix(in srgb, var(--accent) 30%, transparent);
    color: var(--ink);
}

body.manifeste :focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Scrollbar Aura */
body.manifeste::-webkit-scrollbar { width: 8px; height: 8px; }
body.manifeste::-webkit-scrollbar-track { background: var(--surface); }
body.manifeste::-webkit-scrollbar-thumb { background: var(--rule-strong); border-radius: 999px; }
body.manifeste::-webkit-scrollbar-thumb:hover { background: var(--dim); }

/* ============================================================
   3. TYPOGRAPHIE — Sora display serré (identité app)
   ============================================================ */
body.manifeste h1, body.manifeste h2, body.manifeste h3, body.manifeste h4,
body.manifeste .font-display {
    font-family: var(--serif);
    letter-spacing: -0.02em;
    color: var(--ink);
}
body.manifeste h1 { font-weight: 700; letter-spacing: -0.03em; }
body.manifeste h2 { font-weight: 700; }
body.manifeste h3, body.manifeste h4 { font-weight: 600; }

body.manifeste strong { color: var(--ink); font-weight: 650; }

/* Liens : soulignés menthe, hover cyan */
body.manifeste a {
    text-decoration-color: color-mix(in srgb, var(--accent) 55%, transparent);
}
body.manifeste a:hover { color: var(--accent-deep); }

/* Lettrine du chapeau : Sora menthe */
body.manifeste .mf-lead { color: var(--ink-2); }
body.manifeste .mf-lead::first-letter { color: var(--accent); font-weight: 700; }

/* ============================================================
   4. KICKERS & FILETS — le filet dégradé aurore du SectionHeader
   ============================================================ */
body.manifeste .mf-kicker { color: var(--ink-3); }
body.manifeste .mf-kicker::before {
    height: 2px;
    background: var(--gradient-aura);
    border-radius: 999px;
}

/* Surlignage éditorial -> marqueur aurore doux */
body.manifeste .mf-hl {
    background-image: linear-gradient(120deg, rgba(78,240,192,0.26), rgba(106,184,255,0.26), rgba(157,123,255,0.26));
    background-repeat: no-repeat;
    background-size: 100% 0.42em;
    background-position: 0 88%;
}

/* ============================================================
   5. HÉROS — le mot en italique porte le dégradé aurore
   ============================================================ */
body.manifeste .mf-hero h1 em,
body.manifeste .mf-hero h1 .mf-grad-text {
    font-style: normal;
    font-weight: 800;
    background: var(--gradient-aura);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
body.manifeste .mf-hero .mf-sub { color: var(--ink-3); }

/* ============================================================
   6. BOUTONS — pilules Aura (dégradé + glow / verre bordé)
   ============================================================ */
body.manifeste .btn-primary,
body.manifeste > header .btn-primary,
body.manifeste .mf-cta-row a.mf-btn-main,
body.manifeste .nav-cta,
body.manifeste .mobile-cta {
    background: var(--gradient-aura);
    background-size: 150% 150%;
    color: #071018 !important;
    border: 0;
    border-radius: 999px;
    font-weight: 650;
    transition: background-position .3s ease, box-shadow .3s ease, transform .15s ease;
}
body.manifeste .btn-primary:hover,
body.manifeste > header .btn-primary:hover,
body.manifeste .mf-cta-row a.mf-btn-main:hover,
body.manifeste .nav-cta:hover,
body.manifeste .mobile-cta:hover {
    background: var(--gradient-aura);
    background-size: 150% 150%;
    background-position: 80% 50%;
    color: #071018 !important;
    box-shadow: 0 0 28px rgba(78, 240, 192, 0.28), 0 0 56px rgba(157, 123, 255, 0.14);
}
body.manifeste .btn-primary:active { transform: scale(0.96); }

body.manifeste .btn-secondary,
body.manifeste > header .btn-secondary,
body.manifeste .btn-outline-white {
    background: color-mix(in srgb, var(--surface-2) 80%, transparent);
    color: var(--ink);
    border: 1px solid var(--rule-strong);
    border-radius: 999px;
    box-shadow: none;
}
body.manifeste .btn-secondary:hover,
body.manifeste > header .btn-secondary:hover,
body.manifeste .btn-outline-white:hover {
    background: var(--surface-3);
    border-color: color-mix(in srgb, var(--accent) 40%, transparent);
    color: var(--ink);
}

/* ============================================================
   7. COMPOSANTS HOME (mf-*)
   ============================================================ */
/* Sommaire vivant */
body.manifeste .mf-toc-no { color: var(--accent); }
body.manifeste .mf-toc a:hover .mf-toc-title { color: var(--accent-deep); }
body.manifeste .mf-toc-desc { color: var(--dim); }

/* Numéros de chapitre : contour bleuté, point aurore */
body.manifeste .mf-chapter-no { color: var(--surface-3); }
body.manifeste .mf-chapter-no span { color: var(--accent); }

/* Notes de marge -> cartes verre dépoli (Card de l'app) */
body.manifeste .mf-note {
    background: color-mix(in srgb, var(--surface) 82%, transparent);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid color-mix(in srgb, #232c45 75%, transparent);
    border-radius: 24px;
    padding: 1.25rem 1.4rem;
}
body.manifeste .mf-note .mf-note-tag { color: var(--accent); }

/* Portes (grand public / pathologies) */
body.manifeste .mf-door { border-top-color: var(--rule-strong); }
body.manifeste .mf-door a.mf-door-link { color: var(--accent); }
body.manifeste .mf-door a.mf-door-link:hover { color: var(--accent-deep); }

/* Tableaux : filets bleutés, survol surface */
body.manifeste .mf-table th { color: var(--ink-3); }
body.manifeste .mf-table td { border-bottom-color: var(--rule); }
body.manifeste .mf-table tbody tr:hover td { background: color-mix(in srgb, var(--surface-2) 65%, transparent); }
body.manifeste .mf-table a { color: var(--accent); }
body.manifeste .mf-icd { color: var(--dim); }

/* Témoin de lecture / folios */
body.manifeste .mf-folio { color: var(--dim); }

/* ============================================================
   8. PAGES INTÉRIEURES — panneaux pastel clairs -> teintes sombres
   (manifeste-pages.css pose des littéraux clairs : on re-teinte)
   ============================================================ */
body.manifeste .bg-green-50, body.manifeste .bg-emerald-50, body.manifeste .bg-green-100, body.manifeste .bg-emerald-100 { background-color: color-mix(in srgb, #3ddc97 10%, var(--surface)); }
body.manifeste .text-green-600, body.manifeste .text-green-700, body.manifeste .text-green-800, body.manifeste .text-emerald-600, body.manifeste .text-emerald-700, body.manifeste .text-emerald-800 { color: #6fe6b2; }
body.manifeste .border-emerald-200, body.manifeste .border-green-200 { border-color: color-mix(in srgb, #3ddc97 28%, var(--surface)); }

body.manifeste .bg-blue-50, body.manifeste .bg-blue-100, body.manifeste .bg-sky-50, body.manifeste .bg-cyan-50, body.manifeste .bg-teal-50, body.manifeste .bg-teal-100, body.manifeste .bg-cyan-100 { background-color: color-mix(in srgb, #6ab8ff 10%, var(--surface)); }
body.manifeste .text-blue-600, body.manifeste .text-blue-700, body.manifeste .text-blue-800, body.manifeste .text-sky-700, body.manifeste .text-teal-600, body.manifeste .text-teal-700, body.manifeste .text-cyan-700 { color: #8ec8ff; }
body.manifeste .border-blue-100, body.manifeste .border-blue-200, body.manifeste .border-blue-300 { border-color: color-mix(in srgb, #6ab8ff 28%, var(--surface)); }

body.manifeste .bg-yellow-50, body.manifeste .bg-amber-50, body.manifeste .bg-yellow-100, body.manifeste .bg-amber-100, body.manifeste .bg-orange-50, body.manifeste .bg-orange-100 { background-color: color-mix(in srgb, #ffb24d 10%, var(--surface)); }
body.manifeste .text-yellow-700, body.manifeste .text-yellow-800, body.manifeste .text-amber-600, body.manifeste .text-amber-700, body.manifeste .text-amber-800, body.manifeste .text-orange-600, body.manifeste .text-orange-700 { color: #ffc477; }
body.manifeste .border-yellow-200, body.manifeste .border-yellow-300, body.manifeste .border-amber-200 { border-color: color-mix(in srgb, #ffb24d 28%, var(--surface)); }

body.manifeste .bg-purple-50, body.manifeste .bg-purple-100, body.manifeste .bg-fuchsia-50, body.manifeste .bg-violet-50, body.manifeste .bg-indigo-50 { background-color: color-mix(in srgb, #9d7bff 10%, var(--surface)); }
body.manifeste .text-purple-600, body.manifeste .text-purple-700, body.manifeste .text-purple-800, body.manifeste .text-fuchsia-700, body.manifeste .text-violet-700, body.manifeste .text-indigo-700 { color: #bda2ff; }
body.manifeste .border-purple-100, body.manifeste .border-purple-200, body.manifeste .border-purple-300 { border-color: color-mix(in srgb, #9d7bff 28%, var(--surface)); }

body.manifeste .bg-red-50, body.manifeste .bg-red-100, body.manifeste .bg-rose-50, body.manifeste .bg-pink-50 { background-color: color-mix(in srgb, #fb5470 10%, var(--surface)); }
body.manifeste .text-red-600, body.manifeste .text-red-700, body.manifeste .text-red-800, body.manifeste .text-rose-700, body.manifeste .text-pink-700 { color: #ff8ba0; }
body.manifeste .border-red-100, body.manifeste .border-red-200, body.manifeste .border-red-300 { border-color: color-mix(in srgb, #fb5470 28%, var(--surface)); }

body.manifeste .bg-primary-50, body.manifeste .bg-primary-100 { background-color: color-mix(in srgb, #4ef0c0 9%, var(--surface)); }
body.manifeste .text-primary-600, body.manifeste .text-primary-700, body.manifeste .text-primary-800 { color: var(--accent); }
body.manifeste .border-primary-100, body.manifeste .border-primary-200 { border-color: color-mix(in srgb, #4ef0c0 26%, var(--surface)); }

/* Gris utilitaires restants */
body.manifeste .text-gray-400 { color: var(--dim); }
body.manifeste .bg-gray-200 { background-color: var(--surface-2); }
body.manifeste .bg-gray-800, body.manifeste .bg-gray-900 { background-color: #05070d; }
body.manifeste .border-gray-100, body.manifeste .border-gray-200, body.manifeste .border-gray-300 { border-color: var(--rule); }

/* Cartes utilitaires -> verre dépoli + rayon Aura */
body.manifeste .bg-white.rounded-2xl, body.manifeste .bg-white.rounded-3xl,
body.manifeste .bg-gray-50.rounded-2xl, body.manifeste .bg-gray-50.rounded-3xl {
    background: color-mix(in srgb, var(--surface) 82%, transparent);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}
body.manifeste .rounded-2xl { border-radius: 24px; }
body.manifeste .rounded-3xl { border-radius: 28px; }

/* Ombres claires -> profondeur sombre + lueur froide */
body.manifeste .shadow-sm, body.manifeste .shadow, body.manifeste .shadow-md,
body.manifeste .shadow-lg, body.manifeste .shadow-xl {
    box-shadow: 0 10px 34px rgba(2, 4, 12, 0.5), 0 0 24px rgba(106, 184, 255, 0.05);
}

/* Voiles pastel des héros (from-*-50 via-white) : halo aurore très doux */
body.manifeste div[class*="bg-gradient-to-br"][class*="via-white"],
body.manifeste div[class*="bg-gradient-to-br"][class*="-50"] {
    background: var(--gradient-aura-soft) !important;
}

/* Panneaux CTA en dégradé (from-primary-600/700…) : aurore pleine, texte encre sombre */
body.manifeste div[class*="bg-gradient-to-br"][class*="from-primary-6"],
body.manifeste div[class*="bg-gradient-to-br"][class*="from-primary-7"],
body.manifeste div[class*="bg-gradient-to-br"][class*="from-purple-6"],
body.manifeste div[class*="bg-gradient-to-br"][class*="from-purple-7"],
body.manifeste section[class*="bg-gradient-to-br"][class*="from-primary-6"] {
    background: var(--gradient-aura) !important;
    color: #071018;
}
body.manifeste div[class*="bg-gradient-to-br"][class*="from-primary-6"] :is(h2, h3, p, span, div):not(a *),
body.manifeste div[class*="bg-gradient-to-br"][class*="from-primary-7"] :is(h2, h3, p, span, div):not(a *),
body.manifeste div[class*="bg-gradient-to-br"][class*="from-purple-6"] :is(h2, h3, p, span, div):not(a *) {
    color: #071018;
}
body.manifeste div[class*="bg-gradient-to-br"][class*="from-primary-6"] a,
body.manifeste div[class*="bg-gradient-to-br"][class*="from-primary-7"] a,
body.manifeste div[class*="bg-gradient-to-br"][class*="from-purple-6"] a {
    background: #071018;
    color: var(--ink);
    border-radius: 999px;
    border: 0;
}
body.manifeste div[class*="bg-gradient-to-br"][class*="from-primary-6"] a:hover,
body.manifeste div[class*="bg-gradient-to-br"][class*="from-primary-7"] a:hover,
body.manifeste div[class*="bg-gradient-to-br"][class*="from-purple-6"] a:hover {
    background: #0e1424;
    color: #fff;
}

/* ============================================================
   9. NAV — masthead verre sombre, CTA aurore
   ============================================================ */
body.manifeste #navbar.nav-glass .nav-shell {
    border-radius: 16px;
    box-shadow: 0 1px 0 var(--rule), 0 18px 50px -30px rgba(2, 4, 12, 0.8);
}
body.manifeste .nav-brand-mark {
    background: var(--gradient-aura);
    box-shadow: 0 0 16px rgba(78, 240, 192, 0.35);
}
body.manifeste .nav-brand-mark svg { color: #071018; }
body.manifeste .nav-brand-text { font-family: var(--serif); font-weight: 700; letter-spacing: -0.02em; }
body.manifeste .nav-cta { border: 0; }
body.manifeste .nav-pop {
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border: 1px solid var(--rule-strong);
    box-shadow: 0 24px 60px -20px rgba(2, 4, 12, 0.85), 0 0 32px rgba(106, 184, 255, 0.06);
}
body.manifeste .nav-pop-eyebrow { color: var(--accent); }
body.manifeste .nav-cell:hover { background: var(--surface-2); }
body.manifeste .nav-pop-foot a { color: var(--accent); }
body.manifeste .nav-rail-pill { background: color-mix(in srgb, #edf1f9 7%, transparent); }
body.manifeste .mobile-menu-modern { background: var(--paper-2); border-top-color: var(--rule-strong); }
body.manifeste .mobile-section-content a { color: var(--ink-3); }

/* ============================================================
   10. FOOTER — encre profonde, filet aurore
   ============================================================ */
body.manifeste footer.bg-gray-900 {
    background-color: #05070d;
    border-top: 1px solid var(--rule);
    position: relative;
}
body.manifeste footer.bg-gray-900::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 1px;
    background: var(--gradient-aura);
    opacity: 0.35;
}
body.manifeste footer .text-gray-400 { color: var(--ink-3); }
body.manifeste footer a:hover { color: var(--accent); }

/* ============================================================
   11. NAV MFN — masthead verre sombre (système #mfn-root autonome)
   ============================================================ */
#mfn-root {
    --mfn-paper: #070a12;
    --mfn-paper-2: #0e1424;
    --mfn-surface: #101624;
    --mfn-ink: #edf1f9;
    --mfn-ink-2: #b6c0d8;
    --mfn-ink-3: #9aa5c0;
    --mfn-rule: color-mix(in srgb, #31405f 45%, transparent);
    --mfn-rule-soft: color-mix(in srgb, #31405f 28%, transparent);
    --mfn-rule-strong: #31405f;
    --mfn-accent: #4ef0c0;
    --mfn-accent-deep: #6ab8ff;
    --mfn-serif: 'Sora', 'Inter', system-ui, sans-serif;
}
#mfn-root .mfn-bar {
    background: color-mix(in srgb, #0a0e18 82%, transparent);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
    backdrop-filter: blur(16px) saturate(1.1);
}
#mfn-root.is-scrolled:not(.has-open) .mfn-bar {
    box-shadow: 0 14px 34px -18px rgba(2, 4, 12, 0.85);
}
#mfn-root .mfn-cta {
    background: var(--gradient-aura, linear-gradient(120deg, #4ef0c0, #6ab8ff, #9d7bff));
    background-size: 150% 150%;
    color: #071018;
    border: 0;
    border-radius: 999px;
    transition: background-position .3s ease, box-shadow .3s ease;
}
#mfn-root .mfn-cta:hover {
    background: var(--gradient-aura, linear-gradient(120deg, #4ef0c0, #6ab8ff, #9d7bff));
    background-size: 150% 150%;
    background-position: 80% 50%;
    color: #071018;
    box-shadow: 0 0 24px rgba(78, 240, 192, 0.3);
}

/* ============================================================
   12. BOUTONS HOME (.mf-btn) — pilules Aura
   ============================================================ */
body.manifeste .mf-btn { border-radius: 999px; border-color: var(--rule-strong); }
body.manifeste .mf-btn--primary {
    background: var(--gradient-aura);
    background-size: 150% 150%;
    color: #071018;
    border: 0;
    font-weight: 650;
    transition: background-position .3s ease, box-shadow .3s ease;
}
body.manifeste .mf-btn--primary:hover,
body.manifeste .mf-btn--primary:focus-visible,
body.manifeste .mf-btn--primary:active {
    background: var(--gradient-aura);
    background-size: 150% 150%;
    background-position: 80% 50%;
    border: 0;
    color: #071018;
    box-shadow: 0 0 28px rgba(78, 240, 192, 0.28), 0 0 56px rgba(157, 123, 255, 0.14);
}
body.manifeste .mf-btn--ghost {
    color: var(--ink);
    background: color-mix(in srgb, var(--surface-2) 80%, transparent);
    border-color: var(--rule-strong);
}
body.manifeste .mf-btn--ghost:hover {
    background: var(--surface-3);
    border-color: color-mix(in srgb, var(--accent) 40%, transparent);
}

/* ============================================================
   13. VARIABLES DES <style> LOCAUX (--mf-*) + PRICING
   ============================================================ */
body.manifeste {
    --mf-ink: #edf1f9;
    --mf-body: #b6c0d8;
    --mf-muted: #9aa5c0;
    --mf-green-deep: #4ef0c0;     /* l'ancien vert premium devient la menthe aurore */
    --mf-shadow-sm: 0 10px 34px rgba(2, 4, 12, 0.5);
}

/* Pricing : bascule mensuel/annuel + cartes de plan */
body.manifeste .bill-toggle {
    background: var(--surface-2);
    border: 1px solid var(--rule);
}
body.manifeste .bill-toggle button { color: var(--ink-3); }
body.manifeste .bill-toggle button.active { color: #071018; }
body.manifeste .bill-toggle .bill-pill { background: var(--gradient-aura); }
body.manifeste .plan {
    background: color-mix(in srgb, var(--surface) 82%, transparent);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid color-mix(in srgb, #232c45 75%, transparent);
}
body.manifeste .plan:hover { box-shadow: 0 26px 54px -28px rgba(2, 4, 12, 0.85), 0 0 24px rgba(106, 184, 255, 0.08); }
body.manifeste .plan--pop {
    background: linear-gradient(180deg, #131b30 0%, #182238 100%);
    border: 1px solid color-mix(in srgb, #4ef0c0 35%, transparent);
    box-shadow: 0 0 34px rgba(78, 240, 192, 0.12), 0 24px 54px -28px rgba(2, 4, 12, 0.85);
}
body.manifeste .plan--pop .plan-name,
body.manifeste .plan--pop .plan-price-amount { color: var(--ink); }
body.manifeste .plan--pop .plan-tag,
body.manifeste .plan--pop .plan-price-period,
body.manifeste .plan--pop .plan-price-sub,
body.manifeste .plan--pop .plan-reassure { color: var(--ink-3); }
body.manifeste .plan--pop .plan-reassure b { color: var(--accent); }
body.manifeste .plan--pop .feat { color: var(--ink-2); }
body.manifeste .plan--pop .feat strong { color: var(--ink); }
body.manifeste .plan--pop .feat--head { color: var(--accent); }
body.manifeste .plan--pop .plan-foot { border-color: var(--rule); color: var(--ink-3); }
body.manifeste .plan-price-sub .save,
body.manifeste .plan--pop .plan-price-sub .save { color: var(--warn); }
body.manifeste .plan-cta--primary,
body.manifeste .plan--pop .plan-cta--primary {
    background: var(--gradient-aura);
    background-size: 150% 150%;
    color: #071018;
    border: 0;
    border-radius: 999px;
    font-weight: 650;
}
body.manifeste .plan-cta--primary:hover,
body.manifeste .plan--pop .plan-cta--primary:hover {
    background: var(--gradient-aura);
    background-size: 150% 150%;
    background-position: 80% 50%;
    color: #071018;
    border: 0;
    box-shadow: 0 0 28px rgba(78, 240, 192, 0.28);
    transform: none;
}
body.manifeste .plan-cta--ghost {
    background: color-mix(in srgb, var(--surface-2) 80%, transparent);
    color: var(--ink);
    border: 1px solid var(--rule-strong);
    border-radius: 999px;
}
body.manifeste .plan-cta--ghost:hover {
    background: var(--surface-3);
    border-color: color-mix(in srgb, var(--accent) 40%, transparent);
    transform: none;
}

/* Bandeaux « hero » des pages conditions : grille discrète */
body.manifeste > header.hero-conditions::before,
body.manifeste > header.hero-comp::before { opacity: 0.14; }
body.manifeste > header div.absolute:has(> svg) { opacity: 0.04; }

/* ============================================================
   14. ACCESSIBILITÉ / DIVERS
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    body.manifeste *,
    body.manifeste ::before,
    body.manifeste ::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

} /* @media screen */
