/* =========================================================================
   Beauté du Cil — landing de l'application mobile (app.bdcacademy.fr).
   Reprend à l'identique la charte 2026 du site principal : noir / blanc /
   gris métal industriel. Display Aloevera + corps Poppins, auto-hébergées.
   Ce fichier = socle partagé ; les composants de la landing suivent.
   ========================================================================= */
@font-face { font-family: 'Aloevera Display'; src: url('../fonts/aloevera-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Aloevera Display'; src: url('../fonts/aloevera-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Aloevera Display'; src: url('../fonts/aloevera-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Aloevera Display'; src: url('../fonts/aloevera-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Aloevera Display'; src: url('../fonts/aloevera-italic-500.woff2') format('woff2'); font-weight: 400 550; font-style: italic; font-display: swap; }
@font-face { font-family: 'Aloevera Display'; src: url('../fonts/aloevera-italic-600.woff2') format('woff2'); font-weight: 551 800; font-style: italic; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  /* --- Palette BDC Academy (charte graphiste) — blanc éditorial + gris neutres --- */
  --bg: #ffffff;        /* blanc — fond principal (inspiration cecebrows) */
  --bg-soft: #f2f2f2;   /* gris neutre très clair — respiration douce ponctuelle */
  --bg-2: #e0e0e0;      /* gris neutre — sections alternées (signature) */
  --panel: #efefef;     /* cartes / panneaux (gris doux sur blanc) */
  --panel-2: #ebebeb;   /* carte alt / hover (reste visible sur --bg-2) */
  --ink: #0a0b0c;       /* encre — texte principal */
  --ink-2: #3c3c3c;     /* texte secondaire (gris neutre) ~8:1 */
  --muted: #585858;     /* muted lisible (paragraphes) ~4.6:1 */
  --muted-2: #8c8c8c;   /* labels très discrets */
  /* Accents gris neutres (remplacent l'ancien "or"). --accent conservé comme nom
     pour compat : filets/détails décoratifs. --accent-2/-soft = gris lisible (texte). */
  --accent: #585858;      /* gris (text-safe) — nombres, prix, filets, icônes */
  --accent-2: #444444;    /* gris profond — hover/emphase */
  --accent-soft: #676767; /* gris — mots d'accent dans les titres */
  --accent-pale: #b3b3b3; /* gris pâle — fills décoratifs uniquement (pas de texte) */
  --line: rgba(10, 11, 12, 0.16);
  --line-2: rgba(10, 11, 12, 0.09);

  --serif: 'Aloevera Display', 'Poppins', 'Montserrat', system-ui, sans-serif;
  --sans: 'Poppins', 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1320px;
  --pad: clamp(1.15rem, 0.6rem + 2.4vw, 3.2rem);

  --e: cubic-bezier(0.16, 1, 0.3, 1);
  --e2: cubic-bezier(0.25, 1, 0.5, 1);

  --h-bar: 42px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.075rem);
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; }
::selection { background: var(--accent); color: #000000; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---- Type helpers ---- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.02; letter-spacing: -0.01em; }
.serif { font-family: var(--serif); }
.italic { font-style: italic; }
.eyebrow {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 0.8em;
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--accent); opacity: 0.9; }
.eyebrow.is-center { justify-content: center; }
.muted { color: var(--muted); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

.section { padding-block: clamp(4.5rem, 3rem + 7vw, 9rem); position: relative; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7em;
  padding: 1.05em 2em; border-radius: 999px;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--ink); color: var(--bg);
  transition: transform 0.4s var(--e), box-shadow 0.5s var(--e), background 0.4s var(--e2);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -14px rgba(2, 2, 2, 0.45); background: #1e1e1e; }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); box-shadow: none; background: transparent; }
.btn--lg { padding: 1.2em 2.4em; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
}
.arrow-link svg { transition: transform 0.4s var(--e); }
.arrow-link:hover svg { transform: translateX(5px); }

/* =========================================================================
   Utility bar
   ========================================================================= */
.ubar {
  display: flex; align-items: center;
  position: relative; z-index: 60;
  height: var(--h-bar);
  background: var(--bg-2); color: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.3s;
}
.ubar:hover { background: #d7d7d7; }
.ubar__in { width: 100%; display: flex; align-items: center; justify-content: center; gap: clamp(0.5rem, 1.5vw, 1rem); }
.ubar__ico { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }
.ubar__new { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.1em; color: var(--bg); background: var(--ink); padding: 0.25em 0.6em; border-radius: 999px; }
.ubar__txt { color: var(--ink-2); }
.ubar__stores { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--ink); }
.ubar__stores svg { width: 15px; height: 15px; display: block; }
.ubar__cta { display: inline-flex; align-items: center; gap: 0.4em; color: var(--ink); font-weight: 700; }
.ubar__cta svg { transition: transform 0.3s var(--e); }
.ubar:hover .ubar__cta svg { transform: translateX(3px); }
@media (max-width: 680px) { .ubar__txt, .ubar__stores { display: none; } .ubar__new { font-size: 0.54rem; } }


/* Loader affiché seulement au 1er chargement de la session (voir main.js + head) */
html.loaded .loader { display: none !important; }


.polaroid { background: #fff; padding: 12px 12px 20px; border-radius: 3px;
  box-shadow: 0 26px 55px -26px rgba(2,2,2,0.42), 0 3px 10px rgba(10, 11, 12, 0.08);
  transition: transform 0.55s var(--e), box-shadow 0.55s var(--e); }
.polaroid > img { display: block; width: 100%; border-radius: 1px; }
.tilt-l { transform: rotate(-2.4deg); } .tilt-r { transform: rotate(2deg); }
.tilt-l:hover, .tilt-r:hover { transform: rotate(0); box-shadow: 0 30px 60px -22px rgba(2,2,2,0.5); }


.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2rem, 5vw, 4rem); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: clamp(1.1rem, 0.95rem + 0.5vw, 1.35rem); color: var(--ink); transition: color 0.3s; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__ico { position: relative; flex-shrink: 0; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; transition: transform 0.4s var(--e), background 0.3s; }
.faq__ico::before, .faq__ico::after { content: ''; position: absolute; top: 50%; left: 50%; width: 11px; height: 1.5px; background: var(--ink); transform: translate(-50%,-50%); transition: opacity 0.3s; }
.faq__ico::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__item[open] .faq__ico { transform: rotate(180deg); }
.faq__item[open] .faq__ico::after { opacity: 0; }
.faq__a { overflow: hidden; display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--e); }
.faq__item[open] .faq__a { grid-template-rows: 1fr; }
.faq__a > p { min-height: 0; padding-bottom: 1.3rem; color: var(--ink-2); line-height: 1.65; }
@media (max-width: 760px) { .faq { grid-template-columns: 1fr; } }

/* Inscription */
.inscription { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.inscription__title { font-size: clamp(1.8rem, 1.2rem + 2vw, 3rem); margin: 0.8rem 0; }
.inscription__text { color: var(--ink-2); max-width: 44ch; }
.inscription__form { background: var(--panel); border: 1px solid var(--line-2); border-radius: 14px; padding: clamp(1.4rem, 3vw, 2.2rem); }
@media (max-width: 900px) { .inscription { grid-template-columns: 1fr; } }

/* Formulaire */
.iform { display: flex; flex-direction: column; gap: 1.4rem; }
.iform__note { font-size: 0.85rem; color: var(--muted); }
/* Honeypot : masqué sans sortir du flux (un `left: -9999px` élargit le
   document et provoque un défilement horizontal). */
.iform__hp { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.iform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.78rem; color: var(--ink-2); font-weight: 500; }
.iform input, .iform textarea, .iform select { width: 100%; padding: 0.85em 1em; background: var(--panel); border: 1px solid var(--line); border-radius: 6px; color: var(--ink); font-size: 0.98rem; transition: border-color 0.3s, box-shadow 0.3s; }
.iform input:focus, .iform textarea:focus, .iform select:focus { outline: none; border-color: var(--accent-2); box-shadow: 0 0 0 3px rgba(88, 88, 88,0.22); }
.iform textarea { resize: vertical; min-height: 100px; }
.select { position: relative; }
.select select { appearance: none; cursor: pointer; }
.select::after { content: ''; position: absolute; right: 1em; top: 45%; width: 8px; height: 8px; border-right: 1.5px solid var(--muted); border-bottom: 1.5px solid var(--muted); transform: rotate(45deg); pointer-events: none; }
.check { position: relative; display: flex; gap: 0.7rem; align-items: flex-start; cursor: pointer; font-size: 0.86rem; color: var(--ink-2); line-height: 1.5; }
/* `position: relative` sur .check + dimensions explicites : sans ça la case
   héritait du `width: 100%` de `.iform input` en se calant sur le bloc
   conteneur initial, d'où un débordement horizontal de la page. */
.check input { position: absolute; left: 0; top: 1px; z-index: 1; width: 22px; height: 22px; margin: 0; padding: 0; opacity: 0; cursor: pointer; }
.check__box { flex-shrink: 0; margin-top: 1px; width: 22px; height: 22px; border: 1px solid var(--line); border-radius: 4px; display: grid; place-items: center; color: #000; }
.check__box svg { opacity: 0; }
.check input:checked + .check__box { background: var(--accent); border-color: var(--accent); }
.check input:checked + .check__box svg { opacity: 1; }
.iform__submit { align-self: flex-start; }
.iform__ok { padding: 2rem; text-align: center; border: 1px solid var(--accent); border-radius: 12px; background: var(--panel-2); }
.iform__ok[hidden] { display: none; }
.iform__ok h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.iform__ok p { color: var(--ink-2); }
@media (max-width: 560px) { .iform__grid { grid-template-columns: 1fr; } }

/* Contact */
.contact { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 6rem; }
.infocard { padding: 1.5rem; background: var(--panel); border: 1px solid var(--line-2); border-radius: 12px; }
.infocard h2 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.infocard p, .infocard a { color: var(--ink-2); line-height: 1.5; }
.infocard .arrow-link { margin-top: 0.7rem; }
.hours { display: flex; flex-direction: column; gap: 0.4rem; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; color: var(--ink-2); font-size: 0.92rem; }
.hours li span:last-child { color: var(--ink); }
.socials { display: flex; flex-direction: column; gap: 0.3rem; }
.contact__form { background: var(--panel); border: 1px solid var(--line-2); border-radius: 14px; padding: clamp(1.4rem, 3vw, 2.2rem); scroll-margin-top: 6rem; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } .contact__info { position: static; } }

/* Liste features (coaching / formatrice) */
.feats { margin: 1.5rem 0 2rem; }

/* Prose (légales) */
.prose { max-width: 74ch; margin-inline: auto; }
.prose h2 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); margin-top: 2.4rem; margin-bottom: 0.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-2); margin-top: 0.9rem; line-height: 1.75; }
.prose ul { margin-top: 0.9rem; display: flex; flex-direction: column; gap: 0.5rem; }
.prose li { position: relative; padding-left: 1.3rem; color: var(--ink-2); }
.prose li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.prose .todo { display: block; margin-top: 2rem; padding: 1.2rem; border: 1px dashed var(--line); border-radius: 8px; background: var(--panel-2); font-size: 0.9rem; }


.footer { background: var(--bg); border-top: 1px solid var(--line-2); padding-block: clamp(3rem, 5vw, 5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-2); }
.footer__name { font-family: var(--serif); font-size: 1.6rem; }
.footer__sub { font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--accent); margin-top: 0.4em; }
.footer__base { color: var(--muted); font-size: 0.9rem; margin-top: 1rem; max-width: 30ch; }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.footer__social a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--ink-2); transition: all 0.3s; }
.footer__social a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.footer__col h4 { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.footer__col a { display: block; color: var(--ink-2); font-size: 0.9rem; padding: 0.3rem 0; transition: color 0.25s; }
.footer__col a:hover { color: var(--accent); }
.footer__addr { display: flex; gap: 0.6rem; color: var(--ink-2); font-size: 0.9rem; line-height: 1.5; }
.footer__addr svg { color: var(--accent); flex-shrink: 0; }
/* Bloc Qualiopi — colonne de gauche du footer.
   Le logo doit rester lisible (fond clair imposé par la charte Qualiopi) et
   la mention réglementaire figurer juste en dessous. */
.qualiopi { margin-top: 1.8rem; max-width: 260px; }
.qualiopi__logo { display: block; width: 220px; max-width: 100%; height: auto; background: #fff; border: 1px solid var(--line-2); border-radius: 6px; padding: 10px 14px; }
.qualiopi__mention { margin-top: 0.75rem; font-size: 0.68rem; line-height: 1.55; color: var(--muted); }
.qualiopi__mention strong { display: block; margin-top: 0.3rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); }

/* Programme de formation en PDF (fiche formation) */
.docdl {
  display: flex; align-items: center; gap: 0.8rem;
  margin-top: 0.8rem; padding: 0.85rem 1rem;
  background: var(--bg); border: 1px solid var(--line); border-radius: 8px;
  transition: border-color 0.3s var(--e), background 0.3s var(--e);
}
.docdl:hover { border-color: var(--accent); background: var(--panel-2); }
.docdl svg { flex-shrink: 0; color: var(--accent-2); }
.docdl span { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.docdl b { font-size: 0.84rem; font-weight: 600; color: var(--ink); }
.docdl i { font-style: normal; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.8rem; }
.footer__copy { color: var(--muted-2); font-size: 0.78rem; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; }
.footer__legal a { color: var(--muted-2); font-size: 0.72rem; transition: color 0.25s; }
.footer__legal a:hover { color: var(--ink-2); }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } .footer__bottom { flex-direction: column; align-items: flex-start; } }


.specs { overflow: hidden; background: var(--ink); padding-block: clamp(1.6rem, 2.6vw, 2.4rem); }
.specs__track { display: flex; align-items: center; gap: clamp(1.6rem, 3.4vw, 3rem); width: max-content; padding-inline-start: var(--pad); white-space: nowrap; will-change: transform; }
.specs__track span { font-family: var(--serif); font-size: clamp(1.3rem, 0.9rem + 1.6vw, 2.3rem); font-weight: 500; color: #f2f2f2; }
.specs__track em { font-style: normal; color: var(--accent); font-size: 0.7em; }


.statement { position: relative; min-height: clamp(460px, 68vh, 720px); display: flex; align-items: center; overflow: hidden; color: #f2f2f2; isolation: isolate; }
.statement__media { position: absolute; inset: 0; z-index: -2; }
.statement__media img { width: 100%; height: 100%; object-fit: cover; }
.statement::after { content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(2,2,2,0.42) 0%, rgba(2,2,2,0.30) 45%, rgba(2,2,2,0.62) 100%),
              radial-gradient(120% 90% at 50% 40%, transparent 30%, rgba(2,2,2,0.5) 100%); }
.statement__in { text-align: center; margin-inline: auto; }
.statement__eyebrow { color: rgba(242, 242, 242,0.85); }
.statement__eyebrow::before { background: #dadada; }
.statement__title { font-size: clamp(2.8rem, 1.4rem + 6.4vw, 6.6rem); line-height: 0.98; letter-spacing: -0.02em; text-transform: uppercase; margin: 0.5rem 0 0; }
.statement__title i { font-style: italic; text-transform: none; color: #dadada; }
.statement__text { color: rgba(242, 242, 242,0.86); max-width: 48ch; margin: 1.3rem auto 2rem; }
.statement .btn { --btn-bg: #f2f2f2; background: #f2f2f2; color: var(--ink); }
.statement .btn:hover { background: #fff; }


.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 3rem); list-style: none; }
.pillar { padding-top: 1.6rem; border-top: 1px solid var(--line); position: relative; }
.pillar::before { content: ''; position: absolute; top: -4px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.pillar__n { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 0.8rem; }
.pillar__t { font-family: var(--serif); font-size: clamp(1.3rem, 1.1rem + 0.7vw, 1.7rem); margin-bottom: 0.5rem; }
.pillar__d { font-size: 0.92rem; line-height: 1.6; color: var(--ink-2); }

.prose { max-width: 74ch; margin-inline: auto; }
.prose h2 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); margin-top: 2.4rem; margin-bottom: 0.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-2); margin-top: 0.9rem; line-height: 1.75; }
.prose ul { margin-top: 0.9rem; display: flex; flex-direction: column; gap: 0.5rem; }
.prose li { position: relative; padding-left: 1.3rem; color: var(--ink-2); }
.prose li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.qualiopi { margin-top: 1.8rem; max-width: 260px; }
.qualiopi__logo { display: block; width: 220px; max-width: 100%; height: auto; background: #fff; border: 1px solid var(--line-2); border-radius: 6px; padding: 10px 14px; }
.qualiopi__mention { margin-top: 0.75rem; font-size: 0.68rem; line-height: 1.55; color: var(--muted); }
.qualiopi__mention strong { display: block; margin-top: 0.3rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); }


.fbrands { padding-bottom: 2.5rem; margin-bottom: 2.5rem; border-bottom: 1px solid var(--line-2); }
.fbrands__t { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.4rem; }
.fbrands__list { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1.8rem, 5vw, 4rem); }
.fbrands__list img { width: auto; height: clamp(38px, 4vw, 50px); opacity: 0.55; transition: opacity 0.35s var(--e); }
.fbrands__list li:hover img { opacity: 1; }


.footer__made { font-size: 0.74rem; color: var(--muted-2); letter-spacing: 0.02em; }
.footer__made a { color: var(--muted); border-bottom: 1px solid transparent; transition: color 0.25s, border-color 0.25s; }
.footer__made a:hover { color: var(--ink); border-bottom-color: var(--accent); }
.footer__heart { color: var(--accent); font-size: 0.9em; }

.pt {
  position: fixed; inset: 0; z-index: 900;
  background: var(--bg-soft);
  opacity: 0; pointer-events: none;
  transition: opacity 0.38s var(--e2);
}
html.is-nav .pt { opacity: 1; transition: none; animation: ptFail 0.4s ease 2.5s forwards; }
.pt.is-out { opacity: 1; transition: opacity 0.22s ease-in; }
/* Filet de sécurité : si le JS ne démarre pas, on découvre la page. */
@keyframes ptFail { to { opacity: 0; } }
main { transition: opacity 0.5s var(--e2) 0.05s; }
html.is-nav main { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .pt, main { transition: none; }
  html.is-nav .pt { opacity: 0; animation: none; }
  html.is-nav main { opacity: 1; }
}


.gscore {
  display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
  padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1.8rem, 4vw, 3rem);
  background: var(--panel); border: 1px solid var(--line-2); border-radius: 14px; text-align: center;
}
.gscore__n { font-family: var(--serif); font-size: clamp(2.6rem, 2rem + 2vw, 4rem); line-height: 1; color: var(--ink); }
.gscore__stars { font-size: 0.95rem; letter-spacing: 0.14em; color: var(--accent); }
.gscore__l { margin-top: 0.4rem; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); max-width: 14ch; }



/* =========================================================================
   LANDING APPLICATION — app.bdcacademy.fr
   Parti pris inverse du site : ici le SOMBRE domine, et ce sont les
   respirations claires qui sont l'exception. Même charte métal, autre rythme.
   ========================================================================= */
.u-app {
  --bg: #0a0b0c;
  --bg-soft: #111111;
  --bg-2: #141414;
  --panel: #171717;
  --panel-2: #202020;
  --ink: #f2f2f2;
  --ink-2: #c7c7c7;
  --muted: #929292;
  --muted-2: #707070;
  --accent: #aeaeae;
  --accent-2: #d1d1d1;
  --accent-soft: #c0c0c0;
  --accent-pale: #464646;
  --line: rgba(242, 242, 242, 0.16);
  --line-2: rgba(242, 242, 242, 0.08);
  background: var(--bg);
  color: var(--ink-2);
}
.u-app .btn { background: var(--ink); color: #0a0b0c; }
.u-app .btn:hover { background: #fff; }
.u-app .btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.u-app .btn--ghost:hover { border-color: var(--ink); background: transparent; }
.u-app .pt { background: #0a0b0c; }
.u-app .faq__ico::before, .u-app .faq__ico::after { background: var(--ink); }

/* Trame de fond commune aux blocs sombres */
.grain { position: relative; isolation: isolate; }
.grain::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(174, 174, 174, 0.15) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ---- Barre de progression de lecture ------------------------------------ */
.prog { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60; background: transparent; }
.prog span { display: block; height: 100%; width: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--accent-pale), var(--accent-2)); }

/* ---- En-tête ------------------------------------------------------------ */
.ahead { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background 0.45s var(--e2), backdrop-filter 0.45s, border-color 0.45s; border-bottom: 1px solid transparent; }
.ahead.is-solid { background: rgba(10, 11, 12, 0.82); backdrop-filter: blur(18px) saturate(1.2); border-bottom-color: var(--line-2); }
.ahead__in { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 74px; }
.ahead__logo { height: clamp(28px, 2.4vw, 34px); width: auto; display: block; }
.ahead__right { display: flex; align-items: center; gap: clamp(0.8rem, 2vw, 1.8rem); }
.ahead__link { position: relative; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); white-space: nowrap; transition: color 0.3s; }
.ahead__link::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--e); }
.ahead__link:hover { color: var(--ink); }
.ahead__link:hover::after { transform: scaleX(1); transform-origin: left; }
.ahead .btn { padding: 0.8em 1.5em; font-size: 0.66rem; }
@media (max-width: 700px) { .ahead__link { display: none; } }

/* ---- Hero --------------------------------------------------------------- */
.ahero { position: relative; overflow: hidden; padding-top: clamp(7rem, 6rem + 6vw, 11rem); padding-bottom: clamp(3rem, 6vw, 6rem); }
/* Halo qui dérive lentement : la seule chose qui bouge sans le scroll. */
.ahero__glow {
  position: absolute; z-index: -1; top: -18%; right: -10%;
  width: min(80vw, 900px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 174, 174, 0.22), transparent 62%);
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift { from { translate: 0 0; scale: 1; } to { translate: -6% 5%; scale: 1.12; } }
/* Mockups à gauche, texte à droite : l'inverse exact du hero du site. */
.ahero__in { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.ahero__phones { order: -1; }
.ahero__title { font-size: clamp(2.7rem, 1.3rem + 5.6vw, 6rem); line-height: 0.98; letter-spacing: -0.01em; margin: 1rem 0 1.4rem; color: var(--ink); }
.ahero__title i { font-style: italic; color: var(--accent-soft); }
.ahero__lead { max-width: 46ch; color: var(--ink-2); line-height: 1.75; }
.ahero__trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem; margin-top: 2.2rem; padding-top: 1.4rem; border-top: 1px solid var(--line-2); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.ahero__trust li { display: inline-flex; align-items: center; gap: 0.5em; }
.ahero__trust li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
@media (max-width: 920px) { .ahero__in { grid-template-columns: 1fr; } .ahero__phones { order: 0; margin-top: 2.5rem; } }

/* Indice de scroll */
.cue { display: inline-flex; align-items: center; gap: 0.6em; margin-top: 2.6rem; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); }
.cue__line { display: block; width: 46px; height: 1px; background: linear-gradient(90deg, var(--accent), transparent); position: relative; overflow: hidden; }
.cue__line::after { content: ''; position: absolute; inset: 0; background: var(--accent-2); transform: translateX(-100%); animation: cue 2.4s ease-in-out infinite; }
@keyframes cue { 0% { transform: translateX(-100%); } 60%, 100% { transform: translateX(100%); } }

/* ---- Boutons stores ----------------------------------------------------- */
.stores { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2.2rem; }
.store {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 0.8rem 1.5rem 0.85rem;
  background: var(--ink); color: #0a0b0c; border-radius: 13px;
  transition: transform 0.45s var(--e), box-shadow 0.55s var(--e);
}
.store::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.55) 50%, transparent 65%); transform: translateX(-120%); }
.store:hover::after { animation: sheen 0.9s var(--e); }
@keyframes sheen { to { transform: translateX(120%); } }
.store:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -16px rgba(0, 0, 0, 0.8); }
.store svg { flex-shrink: 0; }
.store span { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.store b { font-family: var(--sans); font-size: 0.96rem; font-weight: 600; }
.store i { font-style: normal; font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.62; }

/* ---- Téléphones --------------------------------------------------------- */
.phone { width: 100%; height: auto; display: block; filter: drop-shadow(0 44px 80px rgba(0, 0, 0, 0.62)); }
.ahero__phones { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.ahero__phones .phone { max-width: 272px; }
.ahero__phones .phone:first-child { transform: translateX(14%) rotate(-5deg); z-index: 1; }
.ahero__phones .phone:last-child { transform: translateX(-14%) rotate(5deg); }
.float { animation: float 7s ease-in-out infinite alternate; }
.float--slow { animation-duration: 9s; animation-delay: -3s; }
@keyframes float { from { translate: 0 0; } to { translate: 0 -16px; } }
@media (max-width: 560px) {
  .ahero__phones { grid-template-columns: 1fr; }
  .ahero__phones .phone { max-width: 250px; margin-inline: auto; transform: none !important; }
  .ahero__phones .phone:last-child { display: none; }
}

/* ---- Fiche technique : bande claire, lecture en colonnes ---------------- */
.sheet { background: var(--ink); color: #0a0b0c; padding-block: clamp(1.6rem, 3vw, 2.4rem); }
.sheet__in { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(0.8rem, 2vw, 2rem); }
.sheet__it { position: relative; padding-left: clamp(0.9rem, 2vw, 1.6rem); }
.sheet__it + .sheet__it::before { content: ''; position: absolute; left: 0; top: 0.1em; bottom: 0.1em; width: 1px; background: rgba(10, 11, 12, 0.16); }
.sheet__it:first-child { padding-left: 0; }
.sheet__k { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #606060; }
.sheet__v { margin-top: 0.35rem; font-family: var(--serif); font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.25rem); color: #0a0b0c; }
@media (max-width: 860px) {
  .sheet__in { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .sheet__it { padding-left: 0; }
  .sheet__it + .sheet__it::before { display: none; }
  .sheet__it:nth-child(5) { grid-column: 1 / -1; }
}

/* ---- Titre de section centré (manquait au socle extrait) --------------- */
.univers__head { text-align: center; margin-bottom: clamp(2.6rem, 5vw, 4.5rem); }
.univers__head .eyebrow { justify-content: center; }
.univers__title { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.4rem); line-height: 1.05; margin-top: 0.7rem; color: var(--ink); }
.univers__title i { font-style: italic; color: var(--accent-soft); }

/* ---- Deux métiers -------------------------------------------------------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.6rem); }
.duo__card { position: relative; padding: clamp(1.8rem, 3.5vw, 3rem); background: var(--panel); border: 1px solid var(--line-2); border-radius: 18px; overflow: hidden; transition: border-color 0.4s var(--e), transform 0.5s var(--e); }
.duo__card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0; transition: opacity 0.5s; }
.duo__card:hover { border-color: var(--accent-pale); }
.duo__card:hover::before { opacity: 1; }
.duo__k { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.duo__t { font-family: var(--serif); font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem); color: var(--ink); margin: 0.7rem 0 0.8rem; }
.duo__d { color: var(--ink-2); line-height: 1.7; }
.duo__list { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; }
.duo__list li { position: relative; padding-left: 1.4rem; font-size: 0.92rem; color: var(--muted); }
.duo__list li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 10px; height: 1px; background: var(--accent); }
@media (max-width: 760px) { .duo { grid-template-columns: 1fr; } }

/* ---- Inclinaison 3D pilotée au scroll ---------------------------------- */
/* La perspective vit sur le parent, la rotation sur l'enfant : le voile de
   révélation (opacité + y) et l'inclinaison n'écrivent ainsi jamais dans la
   même `transform`. */
.duo__slot, .ar__frame, .chat__slot { perspective: 1200px; }
.duo__card, .ar__tilt, .chat { transform-style: preserve-3d; will-change: transform; }
.ar__tilt { position: relative; }

/* ---- Vitrine à téléphone épinglé (le moment signature) ------------------- */
.show { position: relative; padding-block: clamp(4rem, 8vw, 8rem); }
.show__in { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
/* Le titre voyage avec le téléphone : sinon il passait sous le header au
   bout de quelques pixels de scroll. Tout le bloc doit tenir dans la fenêtre,
   d'où un téléphone dimensionné en `vh` et non en largeur fixe. */
.show__sticky {
  position: sticky; top: 96px;
  display: grid; justify-items: center; align-content: start; gap: 0.95rem;
  max-height: calc(100vh - 112px);
}
.show__head { text-align: center; max-width: 30ch; }
.show__head .eyebrow { justify-content: center; font-size: 0.62rem; }
.show__title { font-size: clamp(1.15rem, 0.95rem + 0.7vw, 1.55rem); line-height: 1.16; margin-top: 0.45rem; color: var(--ink); }
.show__title i { font-style: italic; color: var(--accent-soft); }
.show__frame { position: relative; height: clamp(240px, 46vh, 520px); aspect-ratio: 640 / 1300; width: auto; max-width: 100%; }
.show__screen { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transform: scale(0.965); transition: opacity 0.6s var(--e), transform 0.7s var(--e); }
.show__screen.is-on { opacity: 1; transform: none; }
.show__dots { display: flex; align-items: center; gap: 0.5rem; height: 2px; }
.show__dots li { width: 26px; height: 2px; background: var(--line); overflow: hidden; }
.show__dots li span { display: block; height: 100%; width: 100%; background: var(--accent-2); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--e); }
.show__dots li.is-on span { transform: scaleX(1); }
.show__steps { display: flex; flex-direction: column; gap: clamp(4rem, 12vh, 9rem); padding-block: clamp(3rem, 10vh, 7rem) clamp(9rem, 30vh, 18rem); }
.show__step { opacity: 0.32; transition: opacity 0.6s var(--e); }
.show__step.is-on { opacity: 1; }
.show__n { font-family: var(--serif); font-size: 0.8rem; letter-spacing: 0.18em; color: var(--accent); }
.show__t { font-size: clamp(1.7rem, 1.3rem + 1.9vw, 2.9rem); line-height: 1.08; color: var(--ink); margin: 0.7rem 0 1rem; }
.show__t i { font-style: italic; color: var(--accent-soft); }
.show__d { color: var(--ink-2); line-height: 1.75; max-width: 44ch; }
.show__list { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; }
.show__list li { position: relative; padding-left: 1.5rem; color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
.show__list li::before { content: ''; position: absolute; left: 0; top: 0.66em; width: 10px; height: 1px; background: var(--accent); }
/* Le visuel intégré à l'étape ne sert qu'en mono-colonne. */
.show__inline { display: none; }
@media (max-width: 920px) {
  .show__in { grid-template-columns: 1fr; }
  /* Le téléphone épinglé recouvrirait le texte qui défile dessous :
     en mono-colonne, chaque étape porte donc son propre écran. */
  .show__sticky { position: static; display: block; margin-bottom: 2.5rem; }
  .show__frame, .show__dots { display: none; }
  .show__head { max-width: none; text-align: left; }
  .show__head .eyebrow { justify-content: flex-start; }
  .show__steps { gap: clamp(3rem, 8vw, 4.5rem); padding-block: 1rem 0; }
  .show__step { opacity: 1; }
  .show__inline { display: block; width: 100%; max-width: 244px; height: auto; margin: 1.6rem 0 0.4rem; filter: drop-shadow(0 30px 54px rgba(0, 0, 0, 0.6)); }
}

/* ---- Essayage AR : pleine largeur, balayage lumineux -------------------- */
.ar { position: relative; overflow: hidden; padding-block: clamp(4rem, 8vw, 8rem); background: var(--bg-2); }
.ar__in { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.ar__frame { position: relative; max-width: 300px; justify-self: center; }
/* Le balayage est enfermé dans un calque calé sur la dalle du mockup
   (bordures mesurées sur l'image) : sans ce masque il débordait du téléphone. */
.ar__scan {
  position: absolute; left: 4.4%; right: 4.4%; top: 2.4%; bottom: 2.4%;
  border-radius: 9% / 4.4%; overflow: hidden; pointer-events: none;
}
.ar__scan::after {
  content: ''; position: absolute; left: 0; right: 0; height: 30%; top: -30%;
  background: linear-gradient(180deg, transparent, rgba(209, 209, 209, 0.26), transparent);
  animation: scan 4.6s ease-in-out infinite;
}
@keyframes scan { 0% { top: -30%; opacity: 0; } 18%, 78% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
.ar__t { font-size: clamp(1.9rem, 1.4rem + 2.6vw, 3.4rem); line-height: 1.04; color: var(--ink); margin: 0.8rem 0 1.1rem; }
.ar__t i { font-style: italic; color: var(--accent-soft); }
.ar__d { color: var(--ink-2); line-height: 1.75; max-width: 46ch; }
@media (max-width: 900px) { .ar__in { grid-template-columns: 1fr; } }

/* ---- BDC Bot : conversation qui s'écrit --------------------------------- */
.bot { position: relative; overflow: hidden; padding-block: clamp(4rem, 8vw, 8rem); }
.bot::before { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 60% at 80% 40%, rgba(174, 174, 174, 0.2), transparent 62%); }
.bot__in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.bot__avatar { width: 66px; height: 66px; border-radius: 50%; border: 1px solid var(--line); }
.bot__t { font-size: clamp(1.9rem, 1.4rem + 2.4vw, 3.2rem); line-height: 1.05; color: var(--ink); margin: 1.1rem 0 1.1rem; }
.bot__t i { font-style: italic; color: var(--accent-soft); }
.bot__d { color: var(--ink-2); line-height: 1.75; max-width: 46ch; }
.chat { display: flex; flex-direction: column; gap: 0.8rem; padding: clamp(1.3rem, 3vw, 2rem); background: var(--panel); border: 1px solid var(--line-2); border-radius: 18px; }
.chat__msg { max-width: 84%; padding: 0.85rem 1.15rem; border-radius: 14px; font-size: 0.94rem; line-height: 1.55; opacity: 0; transform: translateY(12px); }
.chat__msg--me { align-self: flex-end; background: var(--panel-2); color: var(--ink); border-bottom-right-radius: 4px; }
.chat__msg--bot { align-self: flex-start; background: var(--ink); color: #0a0b0c; border-bottom-left-radius: 4px; }
.chat__who { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.4rem; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.chat__dot { width: 6px; height: 6px; border-radius: 50%; background: #6fbf8b; }
.chat__typing { display: inline-flex; gap: 4px; align-self: flex-start; padding: 0.9rem 1.1rem; background: var(--ink); border-radius: 14px; border-bottom-left-radius: 4px; opacity: 0; }
.chat__typing i { width: 6px; height: 6px; border-radius: 50%; background: #0a0b0c; animation: typing 1.2s infinite; }
.chat__typing i:nth-child(2) { animation-delay: 0.15s; }
.chat__typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }
@media (max-width: 900px) { .bot__in { grid-template-columns: 1fr; } }

/* ---- Chiffres ------------------------------------------------------------ */
.nums { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 2rem); padding-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line-2); }
.num { display: grid; grid-template-rows: clamp(1.9rem, 1.3rem + 1.8vw, 3rem) auto; gap: 0.5rem; }
.num__n { display: flex; align-items: flex-end; font-family: var(--serif); font-size: clamp(1.9rem, 1.3rem + 1.8vw, 3rem); line-height: 1; color: var(--ink); }
.num__n b { font-size: 0.42em; font-weight: 500; color: var(--accent); margin-left: 0.1em; }
.num__l { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 640px) { .nums { grid-template-columns: 1fr 1fr; } }

/* ---- Respiration claire : le bloc de téléchargement --------------------- */
.dl { position: relative; overflow: hidden; text-align: center; background: #f2f2f2; color: #0a0b0c; padding-block: clamp(4rem, 8vw, 8rem); }
.dl::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(10, 11, 12, 0.12) 1px, transparent 1px); background-size: 28px 28px; mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 72%); -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 72%); }
.dl > .wrap { position: relative; }
.dl .eyebrow { color: #585858; }
.dl .eyebrow::before { background: #585858; }
.dl__title { font-size: clamp(2.1rem, 1.4rem + 3vw, 4rem); line-height: 1.03; max-width: 18ch; margin: 0.7rem auto 0; color: #0a0b0c; }
.dl__title i { font-style: italic; color: #606060; }
.dl__text { max-width: 50ch; margin: 1.4rem auto 0; color: #3c3c3c; }
.dl .stores { justify-content: center; }
.dl .store { background: #0a0b0c; color: #f2f2f2; }
.dl__note { margin-top: 1.8rem; font-size: 0.76rem; color: #6a6a6a; }
.dl__note a { color: #0a0b0c; border-bottom: 1px solid #b3b3b3; }

/* ---- Footer -------------------------------------------------------------- */
.afoot { background: var(--bg); border-top: 1px solid var(--line-2); padding-block: clamp(2.5rem, 5vw, 4rem) 2rem; }
.afoot__in { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.afoot__logo { height: 32px; width: auto; }
.afoot__base { margin-top: 1rem; max-width: 34ch; font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.afoot__nav { display: flex; flex-wrap: wrap; gap: 0.4rem 1.6rem; }
.afoot__nav a { font-size: 0.86rem; color: var(--ink-2); transition: color 0.25s; }
.afoot__nav a:hover { color: var(--accent-2); }
.afoot__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: clamp(2rem, 4vw, 3rem); padding-top: 1.6rem; border-top: 1px solid var(--line-2); }
.afoot__copy { font-size: 0.78rem; color: var(--muted-2); }
@media (max-width: 620px) { .afoot__bottom { flex-direction: column; align-items: flex-start; } }

/* ---- Accessibilité : tout se fige si le visiteur le demande ------------- */
@media (prefers-reduced-motion: reduce) {
  .ahero__glow, .float, .cue__line::after, .ar__scan::after, .sheet__it, .chat__typing i, .store::after { animation: none !important; }
  .show__step, .chat__msg, .chat__typing { opacity: 1 !important; transform: none !important; }
  .show__screen { transition: none; }
}

/* =========================================================================
   Ouverture de page — la marque se pose, puis le voile se retire.
   Pas de pourcentage : rien à compter, l'attente réelle est nulle.
   Jouée une seule fois par session (voir le script du <head>).
   ========================================================================= */
.intro {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  background: #0a0b0c;
  /* Filet de sécurité : si le JS ne démarre pas, le voile s'efface seul. */
  animation: introFail 0.6s ease 3.2s forwards;
}
html.intro-done .intro { display: none; }
.intro__in { display: grid; justify-items: center; gap: 1.1rem; padding-inline: var(--pad); }
.intro__logo { width: min(58vw, 260px); height: auto; clip-path: inset(0 100% 0 0); }
.intro__rule { display: block; width: min(42vw, 190px); height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; }
.intro__sub { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: #707070; opacity: 0; }
@keyframes introFail { to { opacity: 0; visibility: hidden; } }
@media (prefers-reduced-motion: reduce) { .intro { display: none; } }

/* =========================================================================
   Visuels : on décourage le glisser-déposer et la copie directe.
   À dire clairement : c'est un garde-fou, pas une protection. Les fichiers
   restent accessibles à qui ouvre les outils de développement.
   ========================================================================= */
img {
  -webkit-user-drag: none;
  user-select: none; -webkit-user-select: none;
}

/* ---- État « bientôt disponible » --------------------------------------- */
.soon {
  display: inline-block; margin-right: 0.7em; padding: 0.3em 0.7em;
  background: var(--accent); color: #0a0b0c; border-radius: 999px;
  font-size: 0.86em; font-weight: 800; letter-spacing: 0.1em;
}
.store--soon { background: transparent; color: var(--muted); border: 1px dashed var(--line); cursor: default; }
.store--soon:hover { transform: none; box-shadow: none; }
.store--soon::after { display: none; }
.store--soon b { color: var(--ink-2); }
/* Section « télécharger » : le fond est clair, mais les pastilles stores restent
   encre pleine (cf. .dl .store). Le texte doit donc être clair — les valeurs
   sombres héritées de la variante --soon donnaient du noir sur noir. */
.dl .store--soon { background: #0a0b0c; border-color: rgba(242, 242, 242, 0.30); color: #b3b3b3; }
.dl .store--soon b { color: #f2f2f2; }
