/* =========================================================
   WHEEL OUT — wheelout-jeu.fr
   Thème : désert cartoon (ciel / sable / vert emblème / or)
   ========================================================= */

/* ---------- Polices auto-hébergées ---------- */
@font-face {
    font-family: 'Baloo 2';
    src: url('fonts/Baloo2-variable.woff2') format('woff2-variations');
    font-weight: 400 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- Variables ---------- */
:root {
    --sky:        #4fb8e8;
    --sky-light:  #9fe0fb;
    --sky-deep:   #2b93c9;

    --sand:       #e5b264;
    --sand-light: #f7e2b6;
    --cream:      #fdf6e7;
    --cream-2:    #f7ead0;

    --green:      #17742f;
    --green-dark: #0d4a1d;
    --green-mid:  #23913f;
    --green-light:#5cc077;

    --gold:       #f5c542;
    --gold-dark:  #cf9412;
    --gold-light: #ffe08a;

    --ink:        #22301f;
    --ink-soft:   #4d5c4a;
    --ink-mute:   #55634f;   /* assombri : 3,89:1 -> 5,9:1 sur le fond creme (AA) */

    --danger:     #c8452f;
    --white:      #ffffff;

    --display: 'Baloo 2', 'Trebuchet MS', system-ui, sans-serif;
    --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --border: 3px solid var(--ink);
    --shadow: 0 5px 0 var(--ink);
    --shadow-lg: 0 8px 0 var(--ink);
    --shadow-soft: 0 10px 30px rgba(34, 48, 31, .18);

    --r-sm: 10px;
    --r: 16px;
    --r-lg: 24px;
    --r-xl: 32px;

    --wrap: 1120px;
    --prose: 760px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important; animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

body {
    font-family: var(--body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: var(--green); text-decoration-color: rgba(23,116,47,.35); text-underline-offset: 3px; }
a:hover { color: var(--green-mid); text-decoration-color: currentColor; }
strong { font-weight: 600; color: #16240f; }
:focus-visible { outline: 3px solid var(--green-mid); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
    font-family: var(--display);
    line-height: 1.12;
    letter-spacing: -.01em;
    color: #14230f;
    text-wrap: balance;
}
h2 { font-size: clamp(1.75rem, 3.6vw, 2.5rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); font-weight: 700; }
p { text-wrap: pretty; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.prose { max-width: var(--prose); margin-inline: auto; }
.prose > p + p { margin-top: 1.05em; }
.center { text-align: center; }

.skip {
    position: absolute; left: -9999px; top: 0; z-index: 200;
    background: var(--green); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--r) 0;
    font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------- Boutons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: var(--display); font-weight: 800; font-size: 1.05rem;
    padding: .8rem 1.6rem;
    border: var(--border); border-radius: 999px;
    box-shadow: var(--shadow);
    text-decoration: none; cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, background .18s ease;
    line-height: 1.2; text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--ink); }
.btn:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--ink); }
.btn--play { background: var(--green); color: #fff; }
.btn--play:hover { background: var(--green-mid); color: #fff; }
.btn--demo { background: var(--gold); color: #2a2205; }
.btn--demo:hover { background: var(--gold-light); color: #2a2205; }
.btn--ghost { background: var(--white); color: var(--ink); }
.btn--lg { font-size: 1.15rem; padding: 1rem 2rem; }
.btn__ico { width: 20px; height: 20px; flex: none; }

/* ---------- En-tête ---------- */
.hdr {
    position: sticky; top: 0; z-index: 60;
    background: rgba(253, 246, 231, .92);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--ink);
}
.hdr__in { display: flex; align-items: center; gap: 1rem; min-height: 68px; }
.hdr__logo { display: flex; align-items: center; gap: .55rem; text-decoration: none; margin-right: auto; }
.hdr__logo img { width: 42px; height: 42px; border-radius: 10px; border: 2px solid var(--ink); }
.hdr__logo b { font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: #14230f; letter-spacing: -.01em; }
.hdr__nav { display: flex; gap: .25rem; }
.hdr__nav a {
    font-size: .93rem; font-weight: 500; color: var(--ink-soft);
    text-decoration: none; padding: .45rem .7rem; border-radius: 999px;
}
.hdr__nav a:hover { background: var(--cream-2); color: var(--ink); }
.hdr .btn { padding: .55rem 1.15rem; font-size: .95rem; box-shadow: 0 4px 0 var(--ink); }
.burger {
    display: none; width: 46px; height: 42px; background: var(--white);
    border: var(--border); border-radius: 12px; box-shadow: 0 4px 0 var(--ink);
    cursor: pointer; padding: 0; place-items: center;
}
.burger span { display: block; width: 20px; height: 2.5px; background: var(--ink); border-radius: 2px; margin: 3px auto; }

@media (max-width: 940px) {
    .hdr__nav { display: none; }
    .hdr .btn--play { display: none; }
    .burger { display: grid; }
}

.mnav {
    display: none; border-bottom: 3px solid var(--ink);
    background: var(--cream); padding: 1rem 0 1.35rem;
}
.mnav.open { display: block; }
.mnav ul { list-style: none; padding: 0; display: grid; gap: .3rem; }
.mnav a {
    display: block; padding: .65rem .8rem; border-radius: var(--r-sm);
    font-weight: 500; color: var(--ink); text-decoration: none;
}
.mnav a:hover { background: var(--cream-2); }
.mnav .btn { margin-top: .6rem; width: 100%; }

/* ---------- Héros ---------- */
.hero {
    position: relative;
    background: linear-gradient(178deg, var(--sky-light) 0%, var(--sky) 42%, #bfe4f5 68%, var(--sand-light) 100%);
    padding: clamp(1.6rem, 5vw, 4.5rem) 0 0;
    overflow: hidden;
}
.hero::before {
    content: ""; position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
    width: 900px; height: 900px; pointer-events: none;
    background: radial-gradient(circle, rgba(255,255,255,.75) 0%, rgba(255,255,255,0) 62%);
}
.hero__in { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (max-width: 900px) { .hero__in { grid-template-columns: 1fr; } }

.hero__logo { width: min(330px, 78%); margin-bottom: 1.1rem; filter: drop-shadow(0 6px 12px rgba(20,40,15,.28)); }
.hero h1 {
    font-size: clamp(2.1rem, 6vw, 3.9rem); font-weight: 800; color: #0f3d19;
    text-shadow: 0 2px 0 rgba(255,255,255,.55);
}
.hero h1 .sub { display: block; font-size: clamp(1rem, 2.2vw, 1.35rem); font-weight: 600; color: #16512a; margin-top: .25rem; }
.hero__lead { margin-top: 1rem; font-size: 1.1rem; color: #17331c; max-width: 33rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero__note { margin-top: .9rem; font-size: .88rem; color: #1d4227; font-weight: 500; }

picture { display: contents; }

/* Bandeau offre sous les boutons du héros */
.hero__offer {
    display: flex; gap: .7rem; align-items: flex-start;
    margin-top: 1.2rem; max-width: 33rem;
    background: rgba(255,255,255,.86); border: 2px solid var(--ink);
    border-radius: var(--r); box-shadow: 0 4px 0 rgba(34,48,31,.85);
    padding: .7rem .95rem; font-size: .9rem; color: #1c3520; line-height: 1.55;
}
.hero__offer-ico {
    width: 30px; height: 30px; flex: none; display: grid; place-items: center;
    background: var(--gold); border: 2px solid var(--ink); border-radius: 9px; color: #2a2205;
}
.hero__offer-ico svg { width: 17px; height: 17px; }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.chip {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(255,255,255,.92); border: 2px solid var(--ink); border-radius: 999px;
    padding: .3rem .8rem; font-size: .85rem; font-weight: 600; color: var(--ink);
    box-shadow: 0 3px 0 rgba(34,48,31,.85);
}
.chip b { font-family: var(--display); font-weight: 800; }

/* Cadre vidéo */
.screen {
    position: relative; margin-inline: auto; width: min(420px, 100%);
    border: var(--border); border-radius: var(--r-xl);
    background: #0f2a12; box-shadow: var(--shadow-lg), var(--shadow-soft);
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.screen video, .screen img { width: 100%; height: 100%; object-fit: cover; }
.screen__tag {
    position: absolute; left: 12px; top: 12px; z-index: 2;
    background: var(--gold); border: 2px solid var(--ink); border-radius: 999px;
    padding: .2rem .7rem; font-family: var(--display); font-weight: 800; font-size: .8rem; color: #2a2205;
}
.screen__play {
    position: absolute; inset: auto 12px 12px auto; z-index: 2;
    background: rgba(255,255,255,.94); border: 2px solid var(--ink); border-radius: 999px;
    padding: .3rem .8rem; font-size: .78rem; font-weight: 600;
}
/* Sur petit écran l'étiquette recouvrirait les commandes du jeu */
@media (max-width: 640px) { .screen__play { display: none; } }

/* Sur mobile, le bouton doit passer au-dessus de la ligne de flottaison :
   les statistiques et l'offre repassent donc sous les CTA. */
@media (max-width: 900px) {
    .hero__in > div:first-child { display: flex; flex-direction: column; }
    .hero__logo   { order: 1; }
    .hero h1      { order: 2; }
    .hero__lead   { order: 3; }
    .hero__cta    { order: 4; margin-top: 1.3rem; }
    .hero__note   { order: 5; }
    .chips        { order: 6; margin-top: 1.1rem; }
    .hero__offer  { order: 7; }
    .screen       { margin-top: .4rem; }
}
@media (max-width: 640px) {
    .hero__logo { width: min(210px, 52%); margin-bottom: .7rem; }
    .hero__cta .btn { width: 100%; }
}

/* Rappel d'action en cours de page */
.inline-cta {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 1rem 1.4rem; margin: 2rem auto 0; max-width: var(--prose);
    background: var(--white); border: var(--border); border-radius: var(--r-lg);
    box-shadow: var(--shadow); padding: 1.1rem 1.4rem;
}
.inline-cta--gold { background: var(--gold-light); }
.inline-cta__txt { flex: 1 1 16rem; }
.inline-cta__txt b { font-family: var(--display); font-weight: 800; font-size: 1.12rem; display: block; color: #14230f; }
.inline-cta__txt span { font-size: .93rem; color: var(--ink-soft); }
.inline-cta .btn { flex: none; }
@media (max-width: 560px) { .inline-cta .btn { width: 100%; } }

/* Dune de séparation */
.dune { display: block; width: 100%; height: auto; margin-bottom: -1px; }

/* ---------- Bandeau confiance ---------- */
.trust { background: var(--sand-light); border-block: 3px solid var(--ink); padding: 1rem 0; }
.trust ul {
    list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap;
    justify-content: center; gap: .6rem 1.8rem;
}
.trust li { display: flex; align-items: center; gap: .45rem; font-size: .92rem; font-weight: 500; color: #2c3b26; }
.trust svg { width: 19px; height: 19px; color: var(--green); flex: none; }

/* ---------- Sections ---------- */
.sec { padding: clamp(3rem, 7vw, 5rem) 0; }
.sec--cream { background: var(--cream); }
.sec--sand { background: var(--cream-2); }
.sec--sky { background: linear-gradient(180deg, #dff2fb 0%, #eff8fd 100%); }
.sec__head { max-width: 44rem; margin: 0 auto clamp(1.8rem, 4vw, 2.6rem); text-align: center; }
.sec__head p { margin-top: .75rem; color: var(--ink-soft); font-size: 1.05rem; }
.kicker {
    display: inline-block; font-family: var(--display); font-weight: 800;
    font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
    color: var(--green-dark); background: rgba(23,116,47,.1);
    border-radius: 999px; padding: .25rem .85rem; margin-bottom: .7rem;
}

/* ---------- Sommaire ---------- */
.toc {
    background: var(--white); border: var(--border); border-radius: var(--r-lg);
    box-shadow: var(--shadow); padding: 1.3rem 1.5rem;
}
.toc h2 { font-size: 1.15rem; margin-bottom: .8rem; }
.toc ol { margin: 0; padding-left: 1.1rem; columns: 2; column-gap: 2rem; }
.toc li { margin-bottom: .35rem; break-inside: avoid; }
.toc a { font-size: .95rem; font-weight: 500; }
@media (max-width: 620px) { .toc ol { columns: 1; } }

/* ---------- Cartes ---------- */
.grid { display: grid; gap: 1.2rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.card {
    background: var(--white); border: var(--border); border-radius: var(--r-lg);
    box-shadow: var(--shadow); padding: 1.5rem;
}
.card--gold { background: var(--gold-light); }
.card--sky { background: #e6f5fd; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card__ico {
    width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: .9rem;
    background: var(--green); color: #fff; border: 2px solid var(--ink); border-radius: 13px;
}
.card__ico svg { width: 24px; height: 24px; }
.card--gold .card__ico { background: var(--gold); color: #2a2205; }
.card--danger .card__ico { background: var(--danger); color: #fff; }

/* Étapes numérotées */
.steps { list-style: none; padding: 0; display: grid; gap: 1rem; counter-reset: s; }
.steps li {
    position: relative; background: var(--white); border: var(--border); border-radius: var(--r);
    box-shadow: var(--shadow); padding: 1.15rem 1.3rem 1.15rem 4.2rem; counter-increment: s;
}
.steps li::before {
    content: counter(s);
    position: absolute; left: 1.1rem; top: 1.05rem;
    width: 38px; height: 38px; display: grid; place-items: center;
    background: var(--gold); color: #2a2205; border: 2px solid var(--ink); border-radius: 50%;
    font-family: var(--display); font-weight: 800; font-size: 1.15rem;
}
.steps h3 { font-size: 1.12rem; margin-bottom: .2rem; }
.steps p { color: var(--ink-soft); font-size: .98rem; }

/* Encart */
.note {
    display: flex; gap: 1rem; align-items: flex-start;
    border: var(--border); border-radius: var(--r-lg); padding: 1.2rem 1.4rem;
    box-shadow: var(--shadow); background: var(--white); margin: 1.6rem 0;
}
.note--key { background: #e8f6ec; }
.note--warn { background: #fdeee9; }
.note--tip { background: var(--gold-light); }
.note__ico { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 10px; border: 2px solid var(--ink); background: var(--white); }
.note__ico svg { width: 19px; height: 19px; }
.note--warn .note__ico { color: var(--danger); }
.note--key .note__ico { color: var(--green); }
.note p { font-size: .99rem; }

/* Tableau */
.tbl-wrap { overflow-x: auto; border: var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow); background: var(--white); }
table { width: 100%; border-collapse: collapse; font-size: .97rem; }
caption { caption-side: top; text-align: left; padding: 1rem 1.2rem .2rem; font-weight: 600; color: var(--ink-soft); font-size: .92rem; }
th, td { padding: .8rem 1.2rem; text-align: left; border-bottom: 1px solid rgba(34,48,31,.14); }
thead th { background: var(--green); color: #fff; font-family: var(--display); font-weight: 700; font-size: 1rem; border-bottom: 3px solid var(--ink); }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: rgba(247,234,208,.5); }
td b, th b { color: inherit; }

/* Événements du parcours */
.evt { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.evt__card { border: var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 1.4rem; background: var(--white); }
.evt__card--plus { background: #eaf7ec; }
.evt__card--mult { background: #fff5d8; }
.evt__card--obst { background: #fdeae5; }
.evt__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: .8rem 0 .9rem; }
.tag {
    font-family: var(--display); font-weight: 800; font-size: .95rem;
    border: 2px solid var(--ink); border-radius: 9px; padding: .15rem .6rem;
    box-shadow: 0 3px 0 var(--ink); background: var(--white);
}
.tag--plus { background: var(--green-light); color: #0d3a17; }
.tag--mult { background: var(--gold); color: #2a2205; }
.tag--obst { background: #f0907b; color: #3d1109; }

/* Pour / contre */
.pc { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.pc__col { border: var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; background: var(--white); }
.pc__hd { font-family: var(--display); font-weight: 800; font-size: 1.1rem; padding: .8rem 1.2rem; border-bottom: 3px solid var(--ink); }
.pc__hd--up { background: var(--green); color: #fff; }
.pc__hd--down { background: var(--danger); color: #fff; }
.pc ul { list-style: none; margin: 0; padding: 1rem 1.2rem; display: grid; gap: .65rem; }
.pc li { display: flex; gap: .6rem; align-items: flex-start; font-size: .97rem; }
.pc li svg { width: 18px; height: 18px; flex: none; margin-top: .28rem; }
.pc__col--up li svg { color: var(--green); }
.pc__col--down li svg { color: var(--danger); }

/* Note globale */
.score {
    display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem;
    border: var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow);
    background: var(--white); padding: 1.5rem;
}
.score__num {
    font-family: var(--display); font-weight: 800; font-size: 3.4rem; line-height: 1;
    color: var(--green); flex: none;
}
.score__stars { color: var(--gold-dark); font-size: 1.3rem; letter-spacing: .1em; }
.score__meta { font-size: .9rem; color: var(--ink-mute); }

/* Figures */
figure { margin: 1.6rem 0; }
.fig {
    border: var(--border); border-radius: var(--r-lg); overflow: hidden;
    box-shadow: var(--shadow); background: var(--white);
}
.fig img { width: 100%; }
figcaption { padding: .7rem 1.1rem; font-size: .88rem; color: var(--ink-mute); background: var(--cream); border-top: 2px solid rgba(34,48,31,.15); }
.fig-duo { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* Bloc CTA */
.cta {
    border: var(--border); border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
    background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
    color: #fff; padding: clamp(1.8rem, 4vw, 2.8rem); text-align: center;
}
.cta h2 { color: #fff; }
.cta p { margin: .8rem auto 1.5rem; max-width: 34rem; color: rgba(255,255,255,.9); }
.cta .btns { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.cta small { display: block; margin-top: 1rem; color: rgba(255,255,255,.72); font-size: .85rem; }

/* FAQ */
.faq { display: grid; gap: .8rem; }
.faq details {
    border: var(--border); border-radius: var(--r); box-shadow: var(--shadow);
    background: var(--white); overflow: hidden;
}
.faq summary {
    cursor: pointer; list-style: none; padding: 1rem 3rem 1rem 1.3rem; position: relative;
    font-family: var(--display); font-weight: 700; font-size: 1.08rem; color: #14230f;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: ""; position: absolute; right: 1.2rem; top: 50%; width: 11px; height: 11px;
    border-right: 3px solid var(--green); border-bottom: 3px solid var(--green);
    transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details[open] summary { background: var(--cream-2); border-bottom: 2px solid rgba(34,48,31,.15); }
.faq .ans { padding: 1rem 1.3rem 1.2rem; }
.faq .ans p + p { margin-top: .8rem; }

/* Pied de page */
.ft { background: #16240f; color: #cfdcc7; padding: 3rem 0 5.5rem; border-top: 3px solid var(--ink); }
.ft a { color: var(--gold-light); }
.ft__top { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.ft h3 { color: #fff; font-size: 1.05rem; margin-bottom: .7rem; }
.ft ul { list-style: none; padding: 0; display: grid; gap: .4rem; font-size: .93rem; }
.ft__brand { display: flex; align-items: center; gap: .6rem; margin-bottom: .8rem; }
.ft__brand img { width: 44px; height: 44px; border-radius: 11px; border: 2px solid #43563a; }
.ft__brand b { font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: #fff; }
.ft p { font-size: .93rem; }
.ft__legal { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #2f4026; font-size: .85rem; color: #9fb096; }
/* Le <strong> global est presque noir : il doit s'éclaircir sur les fonds sombres */
.ft strong, .cta strong, .pc__hd strong { color: #ffffff; }
.ft__legal p + p { margin-top: .7rem; }
.badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.badges span {
    border: 2px solid #43563a; border-radius: 999px; padding: .2rem .75rem;
    font-size: .8rem; font-weight: 600; color: #cfdcc7;
}
.badges .age { background: var(--danger); border-color: var(--danger); color: #fff; }

/* CTA collant mobile */
.sticky {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    padding: .7rem 16px calc(.7rem + env(safe-area-inset-bottom));
    background: rgba(253, 246, 231, .96);
    border-top: 3px solid var(--ink);
    display: none;
}
.sticky .btn { box-shadow: 0 4px 0 var(--ink); padding: .7rem 1rem; font-size: 1rem; }
.sticky__demo { flex: 0 0 30%; }
.sticky__play { flex: 1; }
@media (max-width: 940px) { .sticky { display: flex; gap: .55rem; } .ft { padding-bottom: 7rem; } }

/* Fenêtre démo */
.modal { position: fixed; inset: 0; z-index: 120; display: none; }
.modal.open { display: block; }
.modal__bg { position: absolute; inset: 0; background: rgba(15, 30, 12, .8); backdrop-filter: blur(3px); }
.modal__box {
    position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%);
    width: min(960px, 94vw); height: min(88vh, 760px);
    background: #0f2a12; border: var(--border); border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg); overflow: hidden;
}
.modal iframe { width: 100%; height: calc(100% - 62px); border: 0; display: block; }
.modal__bar {
    height: 62px; display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: 0 .8rem 0 1.1rem; background: var(--cream);
    border-top: 3px solid var(--ink);
}
.modal__bar span { font-size: .88rem; color: var(--ink-soft); line-height: 1.35; }
.modal__bar .btn { flex: none; padding: .55rem 1.1rem; font-size: .95rem; box-shadow: 0 4px 0 var(--ink); }
@media (max-width: 560px) {
    .modal__bar { padding-inline: .7rem; }
    .modal__bar span { display: none; }
    .modal__bar .btn { width: 100%; }
}
.modal__x {
    position: absolute; right: 10px; top: 10px; z-index: 2;
    width: 40px; height: 40px; display: grid; place-items: center;
    background: var(--white); border: var(--border); border-radius: 50%;
    box-shadow: 0 3px 0 var(--ink); cursor: pointer;
}
.modal__x svg { width: 20px; height: 20px; }
body.locked { overflow: hidden; }

/* Divers */
.lead { font-size: 1.12rem; color: var(--ink-soft); }
.mt { margin-top: 1.6rem; }
.mt-s { margin-top: .9rem; }
ul.check { list-style: none; padding: 0; display: grid; gap: .6rem; margin-top: 1rem; }
ul.check li { display: flex; gap: .65rem; align-items: flex-start; }
ul.check svg { width: 19px; height: 19px; color: var(--green); flex: none; margin-top: .3rem; }
.prose ul:not(.check):not(.pc ul) { padding-left: 1.2rem; }
.prose li { margin-bottom: .45rem; }
