:root {
  --bg0: #f7faff;
  --bg1: #eef4ff;
  --ink: #0b1220;
  --muted: #41506a;

  --line: rgba(11, 18, 32, .10);
  --glass: rgba(255, 255, 255, .62);
  --glass2: rgba(255, 255, 255, .48);
  --shadow: 0 20px 60px rgba(0, 0, 0, .10);

  --a: #2f6bff;
  --b: #00d4ff;
  --c: #7c4dff;
  --accent: linear-gradient(90deg, var(--a), var(--b));
  --accent2: linear-gradient(90deg, var(--c), var(--b));

  --r: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--ink);
  background:
    radial-gradient(1200px 800px at 20% -10%, #dff0ff 0%, transparent 60%),
    radial-gradient(900px 700px at 90% 10%, #efe3ff 0%, transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.snap {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.sec {
  min-height: 100svh;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  padding: 120px 0;
  position: relative;
}

.h1 {
  font-size: clamp(40px, 4.6vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 14px 0 14px;
}

.h2 {
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}

.lead {
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 60ch;
}

.grad {
  background: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grad2 {
  background: var(--accent2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Background overlay */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.bg__noise {
  position: absolute;
  inset: 0;
  opacity: .10;
  background-image: url("../assets/noise.png");
  background-size: 220px 220px;
  mix-blend-mode: overlay;
}

.bg__grid {
  position: absolute;
  inset: -30%;
  background:
    linear-gradient(transparent 0 95%, rgba(11, 18, 32, .05) 95% 100%),
    linear-gradient(90deg, transparent 0 95%, rgba(11, 18, 32, .05) 95% 100%);
  background-size: 72px 72px;
  transform: rotate(-8deg);
  opacity: .14;
}

.bg__blob {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  filter: blur(38px);
  opacity: .55;
}

.bg__blob.a {
  left: -260px;
  top: -260px;
  background: radial-gradient(circle at 40% 40%, rgba(47, 107, 255, .22), transparent 60%);
}

.bg__blob.b {
  right: -280px;
  bottom: -280px;
  background: radial-gradient(circle at 60% 60%, rgba(124, 77, 255, .20), transparent 60%);
}

/* Scroll progress */
.scrollProgress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 50;
}

.scrollProgress__bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(47, 107, 255, .28);
}

/* =========================================================
   NAV (single clean version)
   - Desktop: centered, max width
   - Mobile: pinned left/right, never overflow
   - Small mobile: hide Statut + Télécharger
   ========================================================= */

.nav {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 60;

  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;

  padding: 10px 12px;
  border-radius: 20px;

  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(255, 255, 255, .72);
  backdrop-filter: blur(18px);
  box-shadow:
    0 26px 90px rgba(0, 0, 0, .12),
    inset 0 1px 0 rgba(255, 255, 255, .85);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  box-sizing: border-box;
}

.brand{
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:950;
  letter-spacing:-0.02em;

  padding:0;              /* ❌ plus de capsule */
  border:0;
  background:transparent; /* ❌ plus de fond */
  border-radius:0;
}


.brand img {
  width: 28px;
  height: 28px;
  border-radius: 10px;
}

.nav__links{
  display:flex;
  gap:12px;
  align-items:center;

  padding:6px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.46);
  border:1px solid rgba(11,18,32,.08);
  box-shadow:0 18px 55px rgba(0,0,0,.08);
}

.nav__link {
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 900;
  color: rgba(11, 18, 32, .78);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.nav__link:hover {
  background: rgba(47, 107, 255, .12);
  color: rgba(11, 18, 32, .92);
  transform: translateY(-1px);
}

/* ===== NAV active underline (soft) ===== */
.nav__link{
  position: relative; /* nécessaire pour placer la barre */
}

.nav__link::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:5px;
  height:2px;
  border-radius:999px;
  background: var(--accent);

  transform: scaleX(.35);
  transform-origin: center;
  opacity: 0;

  transition:
    transform .28s cubic-bezier(.22,.8,.32,1),
    opacity .22s ease;
}

/* petit hint au hover */
.nav__link:hover::after{
  transform: scaleX(1);
  opacity: .75;
}

/* état sélectionné */
.nav__link.is-active::after,
.nav__link[aria-current="page"]::after{
  transform: scaleX(1);
  opacity: 1;
}

.nav__cta {
  display: flex;
  gap: 10px;
  align-items: center;

  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, .08);
  background: rgba(255, 255, 255, .46);
}

.nav__burger {
  display: none;
  /* shown in mobile */
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .55);
  height: 38px;
  width: 42px;
  border-radius: 14px;
  cursor: pointer;
  line-height: 1;
  font-size: 18px;

  box-shadow:
    0 16px 45px rgba(0, 0, 0, .10),
    inset 0 1px 0 rgba(255, 255, 255, .75);

  transition: transform .18s ease, filter .18s ease, background .18s ease;
}

.nav__burger:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.nav__burger:active {
  transform: translateY(0px) scale(.98);
}

/* Buttons */
.btn {
  border: 1px solid rgba(11, 18, 32, .12);
  background: rgba(255, 255, 255, .68);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .08);
  transition: transform .15s ease, filter .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.btn--primary {
  border: 0;
  background: var(--accent);
  color: white;
}

.btn--ghost {
  background: rgba(255, 255, 255, .52);
}

.btn--lg {
  padding: 14px 18px;
  border-radius: 16px;
}

.btn--sm {
  padding: 8px 10px;
  border-radius: 12px;
  box-shadow: none;
}

/* =========================================================
   MOBILE DRAWER — Apple style
   ========================================================= */

.drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(11, 18, 32, .28);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Panel */
.drawer__glass {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 16px;

  padding: 20px;
  border-radius: 26px;

  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .7);

  box-shadow:
    0 40px 120px rgba(0, 0, 0, .25),
    inset 0 1px 0 rgba(255, 255, 255, .8);

  transform: translateY(-12px) scale(.98);
  opacity: 0;
  transition:
    transform .35s cubic-bezier(.22, .8, .32, 1),
    opacity .25s ease;
}

.drawer.is-open .drawer__glass {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Links */
.drawer__link {
  display: block;
  padding: 14px 14px;
  border-radius: 16px;
  font-weight: 950;
  font-size: 16px;
  color: rgba(11, 18, 32, .88);
}

.drawer__link:hover {
  background: rgba(47, 107, 255, .12);
}

/* CTA */
.drawer__link--cta {
  margin-top: 10px;
  text-align: center;
  background: var(--accent);
  color: white;
}

/* Close button */
.drawer__close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: rgba(11, 18, 32, .08);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
}

/* Shared layouts */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.split--invert .split__text {
  order: 2;
}

.split--invert .split__media {
  order: 1;
}

.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.card {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .62);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .08);
}

.card b {
  display: block;
  margin-bottom: 6px;
  font-weight: 950;
}

.card p {
  margin: 0;
  color: rgba(11, 18, 32, .70);
  font-weight: 600;
  line-height: 1.45;
}

.frame {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .62);
  box-shadow: var(--shadow);
  position: relative;
}

.frame__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, .18), transparent 38%, rgba(255, 255, 255, .10));
  pointer-events: none;
}

/* Phone device */
.device {
  width: min(440px, 100%);
  margin-left: auto;
  position: relative;
}

.device__bezel {
  border-radius: 36px;
  padding: 14px;
  background: rgba(255, 255, 255, .66);
  border: 1px solid rgba(255, 255, 255, .74);
  backdrop-filter: blur(16px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .14);
}

.device__screen {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: rgba(11, 18, 32, .05);
  aspect-ratio: 9 / 19.5;
}

.device__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device__shadow {
  position: absolute;
  inset: auto 14px -18px 14px;
  height: 38px;
  background: radial-gradient(closest-side, rgba(0, 0, 0, .22), transparent 70%);
  filter: blur(10px);
  opacity: .55;
}

.device--small {
  width: min(340px, 100%);
}

/* Lists */
.list {
  margin: 0 0 10px;
  padding-left: 18px;
  color: rgba(11, 18, 32, .75);
  font-weight: 900;
  line-height: 1.75;
}

/* =========================================================
   RESPONSIVE (clean, no duplicates)
   ========================================================= */

@media (max-width: 980px) {
  .split {
    grid-template-columns: 1fr;
  }

  .cards3 {
    grid-template-columns: 1fr;
  }

  /* Nav: pinned, never overflow */
  .nav {
    left: 10px;
    right: 10px;
    width: auto;
    max-width: none;
    margin: 0;
  }

  .nav__links {
    display: none;
  }

  .nav__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 520px) {

  /* nav compact + hide buttons */
  .nav {
    left: 8px;
    right: 8px;
    padding: 4px 6px;
    border-radius: 16px;
    gap: 8px;
  }

  .brand {
    padding: 4px 8px;
    min-height: 34px;
  }

  .brand img {
    width: 22px;
    height: 22px;
    border-radius: 8px;
  }

  .brand span {
    font-size: 13px;
    line-height: 1;
  }

  /* cache Statut + Télécharger sur mobile */
  .nav__cta .btn--ghost,
  .nav__cta .btn--primary {
    display: none !important;
  }

  .nav__cta {
    padding: 3px;
    gap: 0;
    border-radius: 999px;
  }

  .nav__burger {
    height: 32px;
    width: 34px;
    border-radius: 12px;
    font-size: 18px;
  }
}

@media (max-width: 390px) {
  .brand span {
    display: none;
  }

  .brand {
    padding: 4px 6px;
  }
}

/* =========================================================
   FOOTER — Premium / Apple-like
   ========================================================= */

.footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 78px 0 40px;
}

.footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Plus ciné / moins "gris blanc" */
.footer__gridFx {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(900px 520px at 18% 60%, rgba(47, 107, 255, .20), transparent 62%),
    radial-gradient(820px 520px at 85% 20%, rgba(124, 77, 255, .16), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .70), rgba(245, 247, 255, .92));
  filter: saturate(1.08);
  opacity: 1;
}

.footer__noise {
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image: url("../assets/noise.png");
  background-size: 220px 220px;
  mix-blend-mode: overlay;
}

.footer__orb {
  position: absolute;
  width: 980px;
  height: 980px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .7;
}

.footer__orb--a {
  left: -360px;
  bottom: -520px;
  background: radial-gradient(circle at 38% 45%, rgba(47, 107, 255, .28), transparent 62%);
}

.footer__orb--b {
  right: -380px;
  top: -540px;
  background: radial-gradient(circle at 62% 40%, rgba(124, 77, 255, .22), transparent 60%);
}

/* Wrap */
.footer__wrap {
  position: relative;
  z-index: 1;

  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .70);
  background: linear-gradient(180deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .46));
  backdrop-filter: blur(18px);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, .10),
    inset 0 1px 0 rgba(255, 255, 255, .75);

  padding: 26px 26px 18px;

  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px 34px;
  align-items: start;
}

/* Brand */
.footer__brand {
  padding: 2px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;

  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .55);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .08);
  transition: transform .18s ease, filter .18s ease, background .18s ease;
}

.footer__logo:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  background: rgba(255, 255, 255, .68);
}

.footer__logo img {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .14);
}

.footer__brandTxt b {
  font-weight: 980;
  letter-spacing: -0.02em;
}

.footer__brandTxt small {
  color: rgba(11, 18, 32, .70);
  font-weight: 850;
}

.footer__desc {
  margin: 14px 0 14px;
  color: rgba(11, 18, 32, .72);
  font-weight: 750;
  line-height: 1.65;
  max-width: 64ch;
}

/* Chips */
.footer__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .50);
  color: rgba(11, 18, 32, .78);
  font-weight: 900;
  transition: transform .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}

.footer__chip:hover {
  transform: translateY(-1px);
  background: rgba(47, 107, 255, .11);
  color: rgba(11, 18, 32, .92);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .08);
}

/* Colonnes */
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 6px 0;
}

.footer__col {
  border: none;
  background: transparent;
  padding: 0;
}

.footer__h {
  display: block;
  margin-bottom: 10px;
  font-weight: 980;
  letter-spacing: -0.01em;
  color: rgba(11, 18, 32, .92);
}

.footer__link {
  display: inline-flex;
  width: fit-content;
  padding: 8px 0;
  border-radius: 12px;
  color: rgba(11, 18, 32, .72);
  font-weight: 850;
  position: relative;
  transition: transform .16s ease, color .16s ease, opacity .16s ease;
}

.footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: linear-gradient(90deg, rgba(47, 107, 255, .55), rgba(124, 77, 255, .45));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
  opacity: .9;
}

.footer__link:hover {
  transform: translateY(-1px);
  color: rgba(11, 18, 32, .92);
}

.footer__link:hover::after {
  transform: scaleX(1);
}

/* Bottom */
.footer__bottom {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(11, 18, 32, .10);
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer__bottom::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: -1px;
  height: 2px;
  background: radial-gradient(120px 22px at 20% 50%, rgba(47, 107, 255, .35), transparent 70%),
    radial-gradient(120px 22px at 80% 50%, rgba(124, 77, 255, .28), transparent 70%);
  opacity: .55;
  pointer-events: none;
}

.footer__copy {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(11, 18, 32, .72);
  font-weight: 900;
  flex-wrap: wrap;
}

.footer__dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(11, 18, 32, .35);
}

.footer__mini {
  color: rgba(11, 18, 32, .62);
  font-weight: 850;
}

.footer__toTop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;

  border: 1px solid rgba(11, 18, 32, .10);
  background: linear-gradient(180deg, rgba(255, 255, 255, .75), rgba(255, 255, 255, .48));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .10);
  font-weight: 980;
  transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
}

.footer__toTop:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .14);
}

.footer__toTop i {
  font-style: normal;
  opacity: .75;
}

@media (max-width: 980px) {
  .footer__wrap {
    grid-template-columns: 1fr;
  }

  .footer__cols {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   NAV — FIX ULTIME overflow mobile (ne dépasse JAMAIS)
   ========================================================= */
@media (max-width: 980px) {
  .nav {
    /* annule tous les centrages/width précédents */
    left: 8px !important;
    right: auto !important;
    width: calc(100vw - 16px) !important;
    /* <- clé : basé sur le vrai viewport */
    max-width: none !important;
    margin: 0 !important;

    box-sizing: border-box !important;
    transform: none !important;
    /* au cas où un reveal met un transform */
  }
}

/* =========================================================
   DRAWER — Fix mobile: jamais hors écran + safe-area + scroll
   ========================================================= */
@media (max-width: 980px) {
  .drawer {
    padding: 12px;
    /* espace autour du panel */
  }

  .drawer__glass {
    /* ne dépend plus de left/right fixes */
    left: auto !important;
    right: auto !important;

    width: calc(100vw - 24px) !important;
    /* full width safe */
    max-width: 520px;
    /* joli sur gros phones */
    margin: 12px auto 0 !important;
    /* centré */

    /* hauteur & overflow */
    max-height: calc(100svh - 24px) !important;
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;

    /* safe area (iPhone notch/home bar) */
    padding:
      calc(18px + env(safe-area-inset-top)) 18px calc(18px + env(safe-area-inset-bottom)) 18px !important;

    border-radius: 26px;
  }

  /* bouton close toujours visible */
  .drawer__close {
    top: calc(12px + env(safe-area-inset-top)) !important;
    right: 12px !important;
  }

  /* liens plus “touch friendly” */
  .drawer__link {
    padding: 14px 14px;
    border-radius: 16px;
  }

  /* CTA collé proprement en bas, sans déborder */
  .drawer__link--cta {
    position: sticky;
    bottom: calc(10px + env(safe-area-inset-bottom));
    margin-top: 14px;
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .14);
  }
}

/* très petit écran: réduit un poil */
@media (max-width: 420px) {
  .drawer {
    padding: 10px;
  }

  .drawer__glass {
    width: calc(100vw - 20px) !important;
    max-height: calc(100svh - 20px) !important;
    padding:
      calc(16px + env(safe-area-inset-top)) 16px calc(16px + env(safe-area-inset-bottom)) 16px !important;
  }
}



/* =========================================================
   ANDROID APP BANNER + COOKIE CONSENT
   - style "glass" cohérent avec ton design
   ========================================================= */

:root {
  --consent-glass: var(--glass, rgba(255, 255, 255, .70));
  --consent-line: var(--line, rgba(11, 18, 32, .12));
  --consent-ink: var(--ink, #0b1220);
  --consent-muted: var(--muted, rgba(11, 18, 32, .72));
  --consent-shadow: var(--shadow, 0 22px 60px rgba(0, 0, 0, .12));
  --consent-radius: 20px;
}

/* ---- Android app banner (top, sticky) ---- */
.appBanner {
  position: sticky;
  top: 10px;
  z-index: 999;
  width: min(1040px, calc(100% - 24px));
  margin: 10px auto 0;
  border-radius: var(--consent-radius);
  border: 1px solid var(--consent-line);
  background: var(--consent-glass);
  backdrop-filter: blur(16px);
  box-shadow: var(--consent-shadow);
}

.appBanner__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
}

.appBanner__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex: 0 0 auto;
}

.appBanner__txt {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.appBanner__txt b {
  color: var(--consent-ink);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .01em;
}

.appBanner__txt span {
  color: var(--consent-muted);
  font-size: 12px;
  margin-top: 2px;
}

.appBanner__btn {
  margin-left: auto;
  flex: 0 0 auto;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(90deg, #2f6bff, #00d4ff);
  box-shadow: 0 10px 28px rgba(47, 107, 255, .25);
}

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

.appBanner__close {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--consent-muted);
  font-size: 16px;
  padding: 8px 10px;
  border-radius: 12px;
  cursor: pointer;
}

.appBanner__close:hover {
  background: rgba(11, 18, 32, .06);
  color: var(--consent-ink);
}

/* ---- Cookie banner (bottom, fixed) ---- */
.cookie {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1000;
}

.cookie__inner {
  width: min(980px, 100%);
  margin: 0 auto;
  border-radius: 22px;
  border: 1px solid var(--consent-line);
  background: var(--consent-glass);
  backdrop-filter: blur(18px);
  box-shadow: var(--consent-shadow);
  padding: 14px 14px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.cookie__txt {
  flex: 1 1 auto;
  min-width: 0;
}

.cookie__title {
  margin: 0 0 6px 0;
  font-size: 14px;
  font-weight: 950;
  color: var(--consent-ink);
}

.cookie__p {
  margin: 0;
  font-size: 12.5px;
  color: var(--consent-muted);
  line-height: 1.35;
}

.cookie__link {
  color: inherit;
  font-weight: 800;
  text-underline-offset: 3px;
}

.cookie__actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie__btn {
  border: 1px solid rgba(11, 18, 32, .14);
  background: rgba(255, 255, 255, .74);
  color: var(--consent-ink);
  font-weight: 950;
  font-size: 12px;
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
}

.cookie__btn--ghost {
  background: transparent;
}

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

/* Mobile layout */
@media (max-width: 520px) {
  .appBanner__inner {
    gap: 10px;
  }

  .cookie__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie__actions {
    justify-content: space-between;
  }

  .cookie__btn {
    width: 100%;
  }
}


/* =========================================================
   NAV — enlever la "capsule" autour de Statut/Télécharger + burger
   (on garde UNIQUEMENT la capsule des catégories .nav__links)
   ========================================================= */

/* 1) Le conteneur CTA ne doit plus être une pill */
.nav__cta{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* 2) Le burger ne doit plus avoir de fond */
.nav__burger{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* 3) (Optionnel mais clean) : boutons CTA plus "flat" */
.nav__cta .btn{
  box-shadow: none !important; /* enlève l'ombre qui peut faire "halo" */
}

/* 4) Mobile : tu avais une règle qui remet du padding/radius sur .nav__cta */
@media (max-width: 520px){
  .nav__cta{
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
}
