/* ============================================================
   agneldorian. — charte graphique v1.0 / plateforme de marque v1.1
   Marine profond · corail rare · Sora / Manrope / IBM Plex Mono
   ============================================================ */

:root {
    --marine: #0A1A2F;
    --surface: #12263F;
    --surface-glass: rgba(18, 38, 63, 0.55);
    --corail: #FF6B4A;
    --corail-hover: #E8552F;
    --corail-press: #C03A17;
    --corail-deep: #D8431F;
    --ivoire: #F2F6FA;
    --gris-bleu: #8FA3B8;
    --btn-text: #3D0F02;
    --disabled: #24405F;
    --success: #2FBF71;
    --warning: #F5B840;
    --error: #E23636;
    --info: #3E8FDD;
    --line: rgba(143, 163, 184, 0.16);
    --font-title: 'Sora', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--marine);
    /* trame quadrillée héritée de la bannière */
    background-image:
        linear-gradient(rgba(143, 163, 184, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(143, 163, 184, 0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    color: var(--ivoire);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
    font-family: var(--font-title);
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

h1 { font-weight: 700; font-size: clamp(2rem, 5.5vw, 3.6rem); line-height: 1.1; }
h2 { font-weight: 600; font-size: clamp(1.55rem, 3vw, 2rem); }
h3 { font-weight: 600; font-size: 1.2rem; line-height: 1.3; }

::selection { background: var(--corail); color: var(--btn-text); }

:focus-visible {
    outline: 2px solid var(--corail);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---------- layout ---------- */
.container {
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: 24px;
}

.section { padding-block: clamp(56px, 9vw, 104px); }

/* lueur corail en fond — comme sur le portrait de la marque.
   mix-blend-mode: screen rend le halo lumineux (additif) au lieu de brunir le marine. */
.hero::before,
main > .section:first-child::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 34% 38% at 50% 38%, rgba(255, 107, 74, 0.26), transparent 70%),
        radial-gradient(ellipse 62% 75% at 50% 42%, rgba(216, 67, 31, 0.28), transparent 78%);
    mix-blend-mode: screen;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 78%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 78%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

main > .section:first-child {
    position: relative;
}

main > .section:first-child::before {
    background:
        radial-gradient(ellipse 30% 45% at 50% 42%, rgba(255, 107, 74, 0.18), transparent 70%),
        radial-gradient(ellipse 55% 90% at 50% 45%, rgba(216, 67, 31, 0.2), transparent 78%);
}

/* mobile : ellipses élargies au-delà de l'écran — le halo baigne toute la largeur,
   sans bord visible sur viewport étroit */
@media (max-width: 760px) {
    .hero::before {
        background:
            radial-gradient(ellipse 85% 30% at 50% 32%, rgba(255, 107, 74, 0.18), transparent 70%),
            radial-gradient(ellipse 150% 55% at 50% 36%, rgba(216, 67, 31, 0.22), transparent 80%);
    }

    main > .section:first-child::before {
        background:
            radial-gradient(ellipse 80% 35% at 50% 40%, rgba(255, 107, 74, 0.14), transparent 70%),
            radial-gradient(ellipse 150% 60% at 50% 42%, rgba(216, 67, 31, 0.16), transparent 80%);
    }
}

/* variante large — grilles d'apps avec 3 captures visibles par carte */
.container--wide { max-width: 1320px; }

.section-head { max-width: 620px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head p { color: var(--gris-bleu); margin-top: 12px; }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- texte ---------- */
.kicker {
    font-family: var(--font-mono);
    font-size: 14.5px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    color: var(--corail);
    display: block;
    margin-bottom: 16px;
}

.muted { color: var(--gris-bleu); }

.mono {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--gris-bleu);
}

/* mot surligné du hero — signature reprise de la bannière */
.hl {
    display: inline-block;
    background: var(--ivoire);
    color: var(--corail-deep);
    padding: 0 0.28em;
    border-radius: 0.22em;
    transform: rotate(-1deg);
}

.dot { color: var(--corail); }

/* ---------- logotype ---------- */
.logo {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
    color: var(--ivoire);
    text-transform: lowercase;
    white-space: nowrap;
}

/* ---------- header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 26, 47, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 68px;
}

.site-nav { display: flex; align-items: center; gap: 28px; }

.site-nav a {
    font-weight: 500;
    font-size: 15px;
    color: var(--gris-bleu);
    transition: color 0.2s ease;
}

.site-nav a:hover { color: var(--ivoire); }
.site-nav a[aria-current="page"] { color: var(--ivoire); }

.menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ivoire);
    padding: 8px 10px;
    cursor: pointer;
}

/* menu mobile plein écran */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(10, 26, 47, 0.97);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.mobile-menu.open { display: flex; }
.mobile-menu.visible { opacity: 1; }

.mobile-menu a {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.6rem;
    padding: 10px;
    color: var(--ivoire);
}

.mobile-menu a[aria-current="page"] { color: var(--corail); }

.mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: 1px solid var(--line);
    border-radius: 999px;
    width: 42px;
    height: 42px;
    color: var(--ivoire);
    font-size: 1.1rem;
    cursor: pointer;
}

.mobile-menu .mono-links {
    margin-top: 28px;
    display: flex;
    gap: 20px;
}

.mobile-menu .mono-links a {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 400;
    color: var(--gris-bleu);
}

/* ---------- boutons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    padding: 16px 28px;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
    background: var(--corail);
    color: #FFFFFF;
}

.btn-primary:hover { background: var(--corail-hover); }
.btn-primary:active { background: var(--corail-press); }

.btn-outline {
    background: transparent;
    color: var(--ivoire);
    border-color: rgba(242, 246, 250, 0.4);
}

.btn-outline:hover { border-color: var(--ivoire); }

/* ---------- badges mono ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 10px; }

.badge {
    font-family: var(--font-mono);
    font-size: 13.5px;
    line-height: 1.4;
    color: var(--ivoire);
    background: var(--surface);
    border: 1px solid rgba(143, 163, 184, 0.38);
    border-radius: 999px;
    padding: 6px 16px;
    white-space: nowrap;
}

.badge--corail {
    color: var(--corail);
    background: rgba(255, 107, 74, 0.09);
    border-color: rgba(255, 107, 74, 0.3);
}

/* ---------- cartes ---------- */
.card {
    background: var(--surface-glass);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ---------- hero ---------- */
.hero {
    position: relative;
    padding-block: clamp(64px, 11vw, 140px);
    text-align: center;
    overflow: hidden;
}

.hero .container { max-width: 880px; position: relative; z-index: 2; }

.hero .cross { z-index: 2; }

.hero h1 { margin-bottom: 24px; }

/* titre à composition figée — se réduit comme une image, sans re-répartir les mots */
.hero-title { font-size: clamp(1.15rem, 5.9vw, 3.6rem); }

.hero-title .line {
    display: block;
    white-space: nowrap;
}

.hero .lead {
    max-width: 640px;
    margin: 0 auto 36px;
    color: var(--gris-bleu);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.hero .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 28px;
}

.hero .badges { justify-content: center; }

/* croix corail décoratives, comme sur la bannière */
.cross {
    position: absolute;
    font-family: var(--font-mono);
    color: var(--corail);
    opacity: 0.45;
    font-size: 18px;
    pointer-events: none;
    user-select: none;
}

/* ---------- chiffres clés ---------- */
.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(32px, 6vw, 96px);
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 56px);
}

.stat-num {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.1;
    display: block;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.stat--corail .stat-num { color: var(--corail); }

/* version compacte pour les blocs CTA */
.stats--compact {
    gap: clamp(24px, 4vw, 56px);
    margin: 0 0 28px;
}

.stats--compact .stat-num {
    font-size: 1.7rem;
    margin-bottom: 2px;
}

/* ---------- bande d'écrans défilante (preuve accueil) ---------- */
.proof-band {
    position: relative;
    overflow: hidden;
    padding-block: 10px;
}

.proof-band-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: band-drift 90s linear infinite;
}

.proof-band:hover .proof-band-track { animation-play-state: paused; }

.proof-band-track a {
    flex-shrink: 0;
    border-radius: 12px;
    transition: transform 0.25s ease;
}

.proof-band-track a:hover { transform: translateY(-6px); }

.proof-band-track img {
    height: 320px;
    width: auto;
    display: block;
    border-radius: 12px;
    border: 1px solid var(--line);
}

/* fondu marine sur les bords */
.proof-band::before,
.proof-band::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(40px, 10vw, 160px);
    z-index: 2;
    pointer-events: none;
}

.proof-band::before {
    left: 0;
    background: linear-gradient(90deg, var(--marine), transparent);
}

.proof-band::after {
    right: 0;
    background: linear-gradient(270deg, var(--marine), transparent);
}

@keyframes band-drift {
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .proof-band { overflow-x: auto; }
    .proof-band-track { animation: none; }
}

@media (max-width: 760px) {
    .proof-band-track img { height: 240px; }
    .proof-band-track { gap: 14px; }
}

.proof-more {
    text-align: center;
    margin-top: 28px;
}

.proof-more a {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--ivoire);
    border-bottom: 1px solid var(--line);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.proof-more a:hover { color: var(--corail); border-color: var(--corail); }

/* ---------- bande logos apps ---------- */
.apps-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 28px;
}

.apps-strip a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 15px;
    color: var(--ivoire);
    padding: 8px 12px;
    border-radius: 12px;
    transition: background-color 0.2s ease;
}

.apps-strip a:hover { background: var(--surface); }

.apps-strip img {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    object-fit: cover;
}

/* ---------- process ---------- */
.step { position: relative; }

.step .num {
    font-family: var(--font-mono);
    font-size: 14.5px;
    letter-spacing: 0.04em;
    color: var(--corail);
    display: block;
    margin-bottom: 14px;
}

.step h3 { margin-bottom: 10px; }
.step p { color: var(--gris-bleu); font-size: 15px; }

/* ---------- témoignages ---------- */
.quote { display: flex; flex-direction: column; height: 100%; }

.quote .stars {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--corail);
    margin-bottom: 14px;
}

.quote blockquote { font-size: 15px; flex-grow: 1; }

.quote footer {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.quote cite { font-style: normal; font-weight: 500; font-size: 14px; display: block; }
.quote .mono { margin-top: 2px; }

/* ---------- cartes app (page apps publiées) ---------- */
.app-card { padding: 24px; scroll-margin-top: 96px; }

.app-card .app-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.app-card .app-head img {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    object-fit: cover;
}

.app-card .app-head .badges { margin-top: 6px; }

.app-card > p { color: var(--gris-bleu); font-size: 15px; margin-bottom: 18px; }

.app-card .shots {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.app-card .shots::-webkit-scrollbar { display: none; }

.app-card .shots img {
    height: 340px;
    width: auto;
    border-radius: 12px;
    scroll-snap-align: start;
    flex-shrink: 0;
    border: 1px solid var(--line);
}

/* slider des captures */
.slider { position: relative; }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(10, 26, 47, 0.75);
    border: 1px solid var(--line);
    color: var(--ivoire);
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.slider-btn:hover { border-color: var(--ivoire); background: var(--marine); }
.slider-btn.prev { left: 8px; }
.slider-btn.next { right: 8px; }
.slider-btn[disabled] { opacity: 0.35; cursor: default; }
.slider-btn[disabled]:hover { border-color: var(--line); background: rgba(10, 26, 47, 0.75); }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.slider-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 999px;
    border: none;
    background: var(--disabled);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.slider-dots button.active { background: var(--ivoire); }

.slider.no-overflow .slider-btn,
.slider.no-overflow .slider-dots { display: none; }

.store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 18px;
}

.store-links a {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--ivoire);
    border-bottom: 1px solid var(--line);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.store-links a:hover { color: var(--corail); border-color: var(--corail); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: 14px; }

.faq-list details {
    background: var(--surface-glass);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px 24px;
}

.faq-list summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary h2 {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0;
}

.faq-list summary .chev {
    flex-shrink: 0;
    color: var(--gris-bleu);
    transition: transform 0.3s ease;
}

.faq-list details[open] summary .chev { transform: rotate(180deg); }

.faq-list .answer {
    color: var(--gris-bleu);
    font-size: 15px;
    margin-top: 14px;
}

.faq-list .answer a { color: var(--ivoire); border-bottom: 1px solid var(--line); }
.faq-list .answer a:hover { color: var(--corail); border-color: var(--corail); }
.faq-list .answer ol { padding-left: 20px; display: grid; gap: 6px; margin-block: 8px; }
.faq-list .answer strong { color: var(--ivoire); font-weight: 500; }

/* ---------- formulaire ---------- */
.form-card { max-width: 680px; margin-inline: auto; padding: clamp(24px, 4vw, 44px); }

.field { margin-bottom: 24px; }

.field label {
    display: block;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 8px;
}

.field input,
.field textarea {
    width: 100%;
    background: var(--marine);
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ivoire);
    font-family: var(--font-body);
    font-size: 16px;
    padding: 14px 16px;
    transition: border-color 0.2s ease;
}

.field textarea { min-height: 200px; resize: vertical; }

.field input::placeholder,
.field textarea::placeholder { color: rgba(143, 163, 184, 0.55); }

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--corail);
}

.form-status {
    max-width: 680px;
    margin: 0 auto 24px;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    border: 1px solid;
}

.form-status--success { color: var(--success); border-color: rgba(47, 191, 113, 0.4); background: rgba(47, 191, 113, 0.08); }
.form-status--error { color: var(--error); border-color: rgba(226, 54, 54, 0.4); background: rgba(226, 54, 54, 0.08); }
.form-status--warning { color: var(--warning); border-color: rgba(245, 184, 64, 0.4); background: rgba(245, 184, 64, 0.08); }

/* ---------- réservation de créneau (contact) ---------- */
.booking-card {
    max-width: 760px;
    margin-inline: auto;
    padding: clamp(24px, 4vw, 44px);
}

.booking-step {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 18px;
}

.booking-step .num {
    font-family: var(--font-mono);
    font-size: 14.5px;
    letter-spacing: 0.04em;
    color: var(--corail);
}

.booking-tz { font-size: 12.5px; }

.booking-days {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 20px;
    scrollbar-width: none;
}

.booking-days::-webkit-scrollbar { display: none; }

.day-pill {
    flex-shrink: 0;
    font-family: var(--font-mono);
    font-size: 13.5px;
    line-height: 1.4;
    color: var(--gris-bleu);
    background: var(--marine);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 16px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.day-pill:hover { color: var(--ivoire); border-color: rgba(143, 163, 184, 0.38); }

.day-pill.active {
    color: var(--ivoire);
    background: var(--surface);
    border-color: var(--corail);
}

.booking-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 10px;
}

.slot-btn {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--ivoire);
    background: var(--marine);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.slot-btn:hover {
    border-color: var(--corail);
    background: var(--surface);
}

.booking-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 15px;
    background: var(--marine);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 24px;
}

.booking-change {
    flex-shrink: 0;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--gris-bleu);
    background: none;
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 0 0 2px;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.booking-change:hover { color: var(--corail); border-color: var(--corail); }

/* honeypot anti-robots : hors écran, jamais affiché */
.booking-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.booking-done { text-align: center; padding-block: 16px; }
.booking-done h2 { margin-bottom: 12px; }

.booking-skeleton {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.booking-skeleton span {
    height: 42px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    animation: skeleton-pulse 1.4s ease-in-out infinite;
}

@keyframes skeleton-pulse {
    50% { opacity: 0.45; }
}

/* ---------- CTA final ---------- */
.cta-final { text-align: center; }

.cta-final .card {
    position: relative;
    overflow: hidden;
    max-width: 760px;
    margin-inline: auto;
    padding: clamp(40px, 6vw, 68px);
    border-color: rgba(143, 163, 184, 0.28);
}

/* la lueur se lève derrière le bouton — la page se ferme comme elle s'ouvre */
.cta-final .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 45% 55% at 50% 105%, rgba(255, 107, 74, 0.22), transparent 70%),
        radial-gradient(ellipse 85% 95% at 50% 115%, rgba(216, 67, 31, 0.24), transparent 80%);
    mix-blend-mode: screen;
    pointer-events: none;
}

/* croix de la bannière, en coin */
.cta-final .card::after {
    content: "+";
    position: absolute;
    top: 20px;
    right: 26px;
    font-family: var(--font-mono);
    font-size: 18px;
    color: var(--corail);
    opacity: 0.5;
    pointer-events: none;
}

.cta-final .card > * { position: relative; }

.cta-final h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    margin-bottom: 14px;
}

.cta-final p { color: var(--gris-bleu); margin-bottom: 28px; }

.cta-final .mono-note {
    display: block;
    margin: 16px 0 0;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--gris-bleu);
}

/* ---------- prose (page confidentialité) ---------- */
.prose { max-width: 760px; margin-inline: auto; display: grid; gap: 28px; }
.prose h2 { font-size: 1.2rem; margin-bottom: 10px; }
.prose p, .prose li { color: var(--gris-bleu); font-size: 15px; }
.prose ul { padding-left: 20px; display: grid; gap: 6px; margin-top: 8px; }
.prose strong { color: var(--ivoire); font-weight: 500; }
.prose a { color: var(--ivoire); border-bottom: 1px solid var(--line); }
.prose a:hover { color: var(--corail); border-color: var(--corail); }

/* ---------- liens plateformes (logos) ---------- */
.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 10px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.social-links a:hover {
    border-color: var(--ivoire);
    background: var(--surface);
}

.social-links img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: contain;
}

.mobile-menu .social-links { margin-top: 28px; }
.mobile-menu .social-links a { padding: 12px; }
.mobile-menu .social-links img { width: 24px; height: 24px; }

/* ---------- footer ---------- */
.site-footer {
    margin-top: auto;
    border-top: 1px solid var(--line);
    padding-block: 40px;
}

.site-footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-footer .tagline {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--gris-bleu);
    margin-top: 6px;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-footer nav a {
    font-size: 14px;
    color: var(--gris-bleu);
    transition: color 0.2s ease;
}

.site-footer nav a:hover { color: var(--ivoire); }

.site-footer .legal {
    width: 100%;
    margin-top: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gris-bleu);
}

/* ---------- animations ---------- */
@media (prefers-reduced-motion: no-preference) {
    .fade-up {
        opacity: 0;
        transform: translateY(16px);
        animation: fadeUp 0.7s ease forwards;
    }

    .fade-up:nth-child(2) { animation-delay: 0.08s; }
    .fade-up:nth-child(3) { animation-delay: 0.16s; }
    .fade-up:nth-child(4) { animation-delay: 0.24s; }
    .fade-up:nth-child(5) { animation-delay: 0.32s; }

    @keyframes fadeUp {
        to { opacity: 1; transform: translateY(0); }
    }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .site-nav { display: none; }
    .menu-btn { display: inline-flex; }
    .cross { display: none; }
    .app-card .shots img { height: 300px; }
    .site-footer .container { flex-direction: column; align-items: flex-start; }
}
