/* ==========================================================================
   labonnemeteo.fr — « Bulletin pop »
   Direction : ciel franc + soleil, contraste rêve (azur/jaune) vs réalité (corail).
   Display : Bricolage Grotesque · Corps : Hanken Grotesk · Données : tabular-nums.
   ========================================================================== */

:root {
    --brume: #eef3fd;          /* fond, blanc-ciel froid */
    --blanc: #ffffff;
    --ciel: #1257d6;           /* azur primaire */
    --ciel-fonce: #0a2a6b;     /* bleu encre (titres) */
    --ciel-voile: #d8e6ff;     /* tuiles, surfaces douces */
    --encre: #10203f;          /* texte */
    --encre-doux: #51618a;     /* texte secondaire */
    --soleil: #ffc22e;         /* accent soleil */
    --corail: #ff5a3c;         /* accent chaleur / réalité */
    --corail-voile: #ffe7e0;

    --rayon: 18px;
    --rayon-s: 12px;
    --ombre: 0 18px 40px -20px rgba(10, 42, 107, .45);
    --ombre-s: 0 8px 20px -12px rgba(10, 42, 107, .4);
    --bord: 1.5px solid rgba(10, 42, 107, .12);

    --display: 'Bricolage Grotesque', system-ui, sans-serif;
    --corps: 'Hanken Grotesk', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    font-family: var(--corps);
    color: var(--encre);
    /* ciel profond : azur en haut -> blanc-ciel en bas */
    background:
        linear-gradient(180deg, #cfe1ff 0%, #e8f0ff 38%, var(--brume) 100%) fixed;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

/* ---- ciel vivant (décor, derrière tout) --------------------------------- */
.sky {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.sky__sun {
    position: absolute;
    top: -120px;
    right: -60px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 209, 102, .95) 0%, rgba(255, 194, 46, .55) 38%, rgba(255, 194, 46, 0) 70%);
    filter: blur(2px);
    animation: sun-breathe 9s ease-in-out infinite;
}
.sky__cloud {
    position: absolute;
    background: #fff;
    border-radius: 100px;
    opacity: .9;
    filter: blur(.5px);
    box-shadow: 0 30px 60px -30px rgba(10, 42, 107, .25);
}
/* nuages dessinés avec des pseudo-bosses */
.sky__cloud::before, .sky__cloud::after {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 50%;
}
.sky__cloud--1 { width: 170px; height: 46px; top: 16%; left: -200px; animation: drift 60s linear infinite; }
.sky__cloud--2 { width: 120px; height: 36px; top: 38%; left: -200px; opacity: .75; animation: drift 90s linear infinite; animation-delay: -30s; }
.sky__cloud--3 { width: 210px; height: 56px; top: 62%; left: -260px; opacity: .65; animation: drift 120s linear infinite; animation-delay: -70s; }
.sky__cloud--1::before { width: 70px; height: 70px; top: -28px; left: 26px; }
.sky__cloud--1::after { width: 52px; height: 52px; top: -18px; left: 92px; }
.sky__cloud--2::before { width: 54px; height: 54px; top: -22px; left: 20px; }
.sky__cloud--2::after { width: 40px; height: 40px; top: -12px; left: 66px; }
.sky__cloud--3::before { width: 86px; height: 86px; top: -34px; left: 34px; }
.sky__cloud--3::after { width: 64px; height: 64px; top: -22px; left: 116px; }

@keyframes drift {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(100vw + 320px)); }
}
@keyframes sun-breathe {
    0%, 100% { transform: scale(1); opacity: .95; }
    50%      { transform: scale(1.06); opacity: 1; }
}

h1, h2, h3 {
    font-family: var(--display);
    color: var(--ciel-fonce);
    line-height: 1.02;
    letter-spacing: -.02em;
    margin: 0 0 .4em;
    font-weight: 800;
}

a { color: var(--ciel); }

.tnum { font-variant-numeric: tabular-nums; }

/* ---- enveloppe ---------------------------------------------------------- */
.shell {
    width: min(1040px, 100% - 2.5rem);
    margin-inline: auto;
}

main { flex: 1; padding-block: clamp(2rem, 5vw, 4rem); }

/* ---- en-tête / pied ----------------------------------------------------- */
.topbar { padding-block: 1.1rem; }
.topbar .shell { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topnav { display: flex; gap: 1.1rem; font-weight: 600; font-size: .9rem; }
.topnav a { color: var(--ciel-fonce); text-decoration: none; }
.topnav a:hover { color: var(--ciel); }
.brand {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -.03em;
    color: var(--ciel-fonce);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}
.brand:hover { color: var(--ciel); }
.brand__dot { color: var(--soleil); }

.sitefoot {
    padding-block: 2rem;
    color: var(--encre-doux);
    font-size: .85rem;
}
.sitefoot a { color: var(--encre-doux); text-underline-offset: 3px; }

/* ---- boutons ------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1;
    padding: .95rem 1.5rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background: var(--ciel);
    color: #fff;
    box-shadow: var(--ombre-s);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); background: #0e49b8; box-shadow: var(--ombre); }
.btn:active { transform: translateY(0); }
.btn--sun { background: var(--soleil); color: var(--ciel-fonce); }
.btn--sun:hover { background: #ffb400; }
.btn--ghost {
    background: rgba(255, 255, 255, .6);
    color: var(--ciel-fonce);
    border: 1.5px solid rgba(10, 42, 107, .16);
    box-shadow: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: #fff; box-shadow: var(--ombre-s); }

.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

.link-back {
    display: inline-block;
    margin-top: 2rem;
    font-weight: 600;
    color: var(--ciel);
    text-decoration: none;
    text-underline-offset: 4px;
}
.link-back:hover { text-decoration: underline; }

/* ---- accueil : hero ----------------------------------------------------- */
.hero { padding-top: clamp(1rem, 4vw, 3rem); }
.hero__eyebrow {
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .72rem;
    font-weight: 700;
    color: var(--ciel);
    margin: 0 0 1rem;
}
.hero h1 {
    font-size: clamp(2.8rem, 9vw, 5.5rem);
    max-width: 14ch;
}
/* surlignage soleil sous le mot clé */
.mark {
    background: linear-gradient(transparent 62%, var(--soleil) 62% 92%, transparent 92%);
    padding-inline: .05em;
}
.hero__lede {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    color: var(--encre-doux);
    max-width: 32ch;
    margin: 1.2rem 0 2rem;
}

/* ---- compte à rebours saison (instrument) ------------------------------- */
.season-countdown {
    margin-top: 3rem;
    display: inline-flex;
    flex-direction: column;
    gap: .15rem;
    padding: .9rem 1.25rem;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: var(--rayon-s);
    box-shadow: var(--ombre);
}
.season-countdown__label {
    font-family: var(--display);
    font-weight: 700;
    font-size: .9rem;
    color: var(--ciel-fonce);
    letter-spacing: -.01em;
}
.season-countdown__time {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--corail);
    letter-spacing: .01em;
}

/* ---- formulaire de création -------------------------------------------- */
.create { max-width: 540px; }
.create > h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); }
.create__lede { color: var(--encre-doux); font-size: 1.1rem; margin-bottom: 2rem; }

.create form {
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: var(--rayon);
    box-shadow: var(--ombre);
    padding: clamp(1.25rem, 4vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.create form > div:not(.temp-row), .temp-row > div { display: flex; flex-direction: column; gap: .4rem; }
.temp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.create label {
    font-family: var(--display);
    font-weight: 700;
    font-size: .9rem;
    color: var(--ciel-fonce);
}
.create input,
.create select {
    font-family: var(--corps);
    font-size: 1rem;
    color: var(--encre);
    padding: .7rem .85rem;
    border: var(--bord);
    border-radius: var(--rayon-s);
    background: var(--brume);
    width: 100%;
}
.create input:focus,
.create select:focus {
    outline: 3px solid rgba(18, 87, 214, .35);
    outline-offset: 1px;
    border-color: var(--ciel);
    background: #fff;
}
.create .btn { align-self: flex-start; margin-top: .5rem; }

/* messages d'erreur de formulaire */
.create ul {
    list-style: none;
    margin: .2rem 0 0;
    padding: 0;
    color: var(--corail);
    font-size: .85rem;
    font-weight: 600;
}

/* ---- page résultat ------------------------------------------------------ */
.result { max-width: 880px; }
.result > h1 {
    font-size: clamp(2.2rem, 7vw, 4rem);
    display: flex;
    align-items: baseline;
    gap: .3em;
    flex-wrap: wrap;
}

.bulletin {
    position: relative;
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    line-height: 1.3;
    color: var(--ciel-fonce);
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-left: 6px solid var(--soleil);
    border-radius: var(--rayon);
    box-shadow: var(--ombre);
    padding: clamp(1.4rem, 3.5vw, 2rem) clamp(1.3rem, 3vw, 1.9rem);
    margin: 1.5rem 0 2.5rem;
}
/* grand guillemet décoratif */
.bulletin::before {
    content: '\201C';
    position: absolute;
    top: -.35em;
    left: .25em;
    font-size: 4rem;
    line-height: 1;
    color: var(--soleil);
    opacity: .5;
}

/* prévision 5 jours — la signature */
.forecast {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .8rem;
}
.forecast-day {
    --accent: var(--ciel);
    position: relative;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .7);
    border-top: 3px solid var(--accent);
    border-radius: var(--rayon-s);
    padding: 1.1rem .6rem 1.3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    box-shadow: var(--ombre-s);
    transition: transform .2s cubic-bezier(.2,.7,.3,1), box-shadow .2s ease;
}
.forecast-day:hover { transform: translateY(-6px); box-shadow: var(--ombre); }
.forecast-day__date {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--encre-doux);
}
.forecast-day__emoji { font-size: 2rem; line-height: 1; }
.forecast-day__temp {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.5rem;
    font-variant-numeric: tabular-nums;
    color: var(--ciel-fonce);
}

/* mode réalité — contraste corail */
.reality {
    margin: 2.5rem 0 0;
    background: var(--corail-voile);
    border: 1.5px solid rgba(255, 90, 60, .35);
    border-radius: var(--rayon);
    padding: clamp(1.1rem, 3vw, 1.6rem);
}
.reality h2 {
    color: var(--corail);
    font-size: 1.3rem;
    margin-bottom: .6rem;
}
.reality p { margin: .3rem 0; color: var(--encre); }
.reality strong { font-variant-numeric: tabular-nums; color: var(--corail); }

/* ---- responsive --------------------------------------------------------- */
@media (max-width: 640px) {
    .forecast { grid-template-columns: repeat(2, 1fr); }
    .forecast-day:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

/* ---- indices d'humeur --------------------------------------------------- */
.mood { margin-top: 2.5rem; }
.mood h2 { font-size: 1.3rem; margin-bottom: 1rem; }
.mood-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .8rem; }
.mood-index {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding: .9rem 1.1rem;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: var(--rayon-s);
    box-shadow: var(--ombre-s);
}
.mood-index__label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ciel); }
.mood-index__value { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--ciel-fonce); }

/* ---- horoscope ---------------------------------------------------------- */
.horoscope { margin-top: 2.5rem; }
.horoscope h2 { font-size: 1.3rem; margin-bottom: .8rem; }
.horo-select {
    font-family: var(--corps);
    font-size: 1rem;
    color: var(--encre);
    padding: .6rem .8rem;
    border: var(--bord);
    border-radius: var(--rayon-s);
    background: var(--blanc);
    cursor: pointer;
}
.horoscope__text {
    margin-top: 1rem;
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    line-height: 1.35;
    color: var(--ciel-fonce);
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-left: 6px solid var(--soleil);
    border-radius: var(--rayon);
    box-shadow: var(--ombre-s);
    padding: 1.1rem 1.3rem;
}

/* ---- décret ------------------------------------------------------------- */
.decret { max-width: 880px; }
.decret__img { width: 100%; height: auto; border-radius: var(--rayon); box-shadow: var(--ombre); margin: 1rem 0 1.5rem; }
.decret-cta { margin: 2rem 0 .5rem; }

/* ---- cadeau ------------------------------------------------------------- */
.gift { max-width: 880px; }
.gift__ribbon { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--corail); font-size: .85rem; margin: 0 0 .5rem; }
.gift__message {
    margin: 0 0 2rem;
    margin-inline-start: 0;
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    line-height: 1.35;
    color: var(--ciel-fonce);
    border-left: 6px solid var(--corail);
    padding-left: 1.1rem;
}
.gift-cta { margin: .5rem 0; }

/* ---- partage ------------------------------------------------------------ */
.share {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .6rem;
}
.share__label { font-weight: 600; color: var(--encre-doux); margin-right: .2rem; }
.share a, .share button {
    font-family: var(--display);
    font-weight: 700;
    font-size: .95rem;
    padding: .6rem 1rem;
    border-radius: 999px;
    border: var(--bord);
    background: var(--blanc);
    color: var(--ciel-fonce);
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease;
}
.share a:hover, .share button:hover { transform: translateY(-2px); background: var(--ciel-voile); }

/* ---- carte de France ---------------------------------------------------- */
.map-page { max-width: 900px; }
.map-page > h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); }
.map-lede { color: var(--encre-doux); font-size: 1.1rem; margin-bottom: 1.5rem; }
.map-metric { display: flex; gap: 1.2rem; margin-bottom: 1rem; font-weight: 600; color: var(--ciel-fonce); }
.map-metric label { cursor: pointer; }
.map-wrap { position: relative; background: rgba(255,255,255,.78); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.6); border-radius: var(--rayon); box-shadow: var(--ombre); padding: 1rem; }
.map-wrap svg { width: 100%; height: auto; }
.map-wrap svg [id] { stroke: rgba(10,42,107,.18); stroke-width: .5; fill: #e3e8f0; transition: fill .2s ease; }
.map-wrap svg [id]:hover { stroke: var(--ciel-fonce); stroke-width: 1.2; cursor: pointer; }
.map-tooltip { position: absolute; pointer-events: none; background: var(--ciel-fonce); color: #fff; font-size: .82rem; font-weight: 600; padding: .35rem .6rem; border-radius: 8px; white-space: nowrap; z-index: 5; }
/* légendes (un panneau vitré, une variante par métrique) */
.legend {
    margin-top: 1.2rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, .66);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: var(--rayon);
    box-shadow: var(--ombre-s);
}
.legend__title {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ciel);
    margin-bottom: .75rem;
}
.legend__chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .35rem .75rem .35rem .55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(10, 42, 107, .1);
    font-size: .82rem;
    font-weight: 600;
    color: var(--ciel-fonce);
}
.chip__dot { width: 12px; height: 12px; border-radius: 50%; box-shadow: 0 0 0 2px rgba(255, 255, 255, .9), 0 1px 3px rgba(10, 42, 107, .25); }
/* échelle écart : barre dégradée étiquetée */
.scale { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; font-size: .85rem; font-weight: 700; color: var(--encre-doux); }
.scale__cap { white-space: nowrap; }
.scale__bar {
    position: relative;
    flex: 1;
    min-width: 180px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, #3bb273, #ffd24a 55%, #ff5a3c);
    box-shadow: inset 0 0 0 1px rgba(10, 42, 107, .1);
}
.scale__ticks {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 .6rem;
    font-size: .68rem;
    font-weight: 700;
    color: rgba(10, 42, 107, .8);
    font-variant-numeric: tabular-nums;
}
.map-empty { margin-top: 1rem; color: var(--corail); font-weight: 600; }

/* ---- compte / auth ------------------------------------------------------ */
.account { max-width: 720px; }
.account h2 { font-size: 1.3rem; margin-top: 2rem; }
.account-dreams, .account-cities { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.account-dreams a { color: var(--ciel-fonce); text-decoration: none; font-weight: 600; }
.account-dreams a:hover { color: var(--ciel); }
.account-cities li { display: flex; align-items: center; gap: .6rem; }
.auth-error { color: var(--corail); font-weight: 600; }
.follow-form { margin-top: 1.5rem; }

/* ---- animation d'entrée ------------------------------------------------- */
@keyframes page-rise {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: none; }
}
.hero, .create, .result, .account, .map-page {
    animation: page-rise .6s cubic-bezier(.2, .7, .3, 1) both;
}

/* ---- accueil : au programme --------------------------------------------- */
.features { margin: clamp(3rem, 8vw, 5.5rem) 0 2rem; }
.features__head { max-width: 640px; margin-bottom: 2rem; }
.features__eyebrow {
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .78rem;
    color: var(--ciel);
    margin: 0 0 .5rem;
}
.features__title {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(1.7rem, 5vw, 2.6rem);
    line-height: 1.05;
    color: var(--ciel-fonce);
    margin: 0 0 .6rem;
}
.features__lede { color: var(--encre-doux); font-size: 1.05rem; margin: 0; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 1rem;
}
.feature {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .55rem;
    padding: 1.4rem 1.4rem 1.5rem;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: var(--rayon);
    box-shadow: var(--ombre-s);
    transition: transform .18s ease, box-shadow .18s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--ombre); }
.feature__badge {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    font-size: 1.55rem;
    border-radius: 50%;
    background: var(--ciel-voile);
    box-shadow: inset 0 0 0 1.5px rgba(10, 42, 107, .08);
}
.feature:nth-child(3n+2) .feature__badge { background: #fff1c9; }
.feature:nth-child(3n) .feature__badge { background: var(--corail-voile); }
.feature__tag {
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .68rem;
    color: var(--ciel);
    background: rgba(18, 87, 214, .08);
    padding: .2rem .55rem;
    border-radius: 999px;
}
.feature:nth-child(3n+2) .feature__tag { color: #9a6b00; background: rgba(255, 194, 46, .18); }
.feature:nth-child(3n) .feature__tag { color: var(--corail); background: rgba(255, 90, 60, .1); }
.feature__title {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.18rem;
    color: var(--ciel-fonce);
    margin: 0;
}
.feature__text { color: var(--encre-doux); font-size: .96rem; margin: 0; }

.cta-band {
    margin: 2.5rem 0 1rem;
    padding: clamp(1.8rem, 5vw, 3rem);
    text-align: center;
    background: linear-gradient(135deg, rgba(18, 87, 214, .96), rgba(10, 42, 107, .97));
    color: #fff;
    border-radius: var(--rayon);
    box-shadow: var(--ombre);
}
.cta-band h2 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin: 0 0 1.2rem;
    color: #fff;
}
.cta-band .btn { background: var(--soleil); color: var(--ciel-fonce); }
.cta-band .btn:hover { background: #ffce5a; }
.cta-band__note { margin: 1rem 0 0; font-size: .85rem; color: rgba(255, 255, 255, .82); }

/* ---- accessibilité ------------------------------------------------------ */
:where(a, button, input, select):focus-visible {
    outline: 3px solid rgba(18, 87, 214, .45);
    outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
}
