/* Carbon Control — site vitrine. Feuille de style autonome conforme à la
   charte graphique : palette officielle, Montserrat (texte) + Vonique 92
   (accents signés). Illustrations issues des slides commerciaux, posées sur
   un fond clair (--panel) pour s'y fondre. Aucun CDN, aucun style inline. */

/* ====================== Polices (auto-hébergées) ====================== */
/* Montserrat est une police variable : un seul fichier couvre 400→800. */
@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/montserrat-latin.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/montserrat-latin-ext.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Vonique 92 — réservée aux usages signés (titres clés). */
@font-face {
  font-family: 'Vonique 92';
  src: url('/fonts/vonique-92-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vonique 92';
  src: url('/fonts/vonique-92-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ====================== Tokens charte ====================== */
:root {
  --vert: #99c144;
  --vert-fonce: #7ea536;
  --vert-clair: #bad273;
  --turquoise: #74c5c7;
  --gris: #5b5a5d;
  --gris-vert: #545852;
  --anthracite: #1a171b;
  --navy: #223747;            /* titres — rappel des slides */
  --navy-soft: #33485a;
  --paper: #fbfbf9;
  --bg: #ececea;
  --panel: #ececeb;           /* fond des illustrations (= fond des slides) */
  --line: #e2e2dd;
  --ink: #2c2c2e;
  --muted: #9a9a96;

  --maxw: 1200px;
  --radius: 14px;
  --font: 'Montserrat', system-ui, -apple-system, Arial, Helvetica, sans-serif;
  --font-display: 'Vonique 92', 'Montserrat', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { margin: 0; line-height: 1.1; font-weight: 800; letter-spacing: -0.015em; color: var(--navy); }
p { margin: 0; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.6rem;
}

.accent { font-family: var(--font-display); font-weight: 400; color: var(--vert); letter-spacing: 0.01em; }

.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--vert-fonce);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--vert); border-radius: 2px; }

/* ====================== Header ====================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 251, 249, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

.site-header__brand { display: inline-flex; align-items: center; }
.site-header__logo { height: 60px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 1.9rem; }

.site-nav__link {
  color: var(--gris);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.15s;
}
.site-nav__link:hover { color: var(--navy); }

.site-nav__cta {
  color: var(--anthracite);
  background: var(--vert);
  text-decoration: none;
  padding: 0.62rem 1.2rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.15s, transform 0.15s;
}
.site-nav__cta:hover { background: var(--vert-clair); }

/* Bascule transporteur / donneur d'ordre — toujours visible (y compris sur
   mobile, où les liens d'ancre sont masqués) : c'est la navigation primaire. */
.profile-switch {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  padding: 3px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.profile-switch__link {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  color: var(--gris);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.profile-switch__link:first-of-type {
  border-right: solid 1px var(--navy);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.profile-switch__link:not(:first-of-type) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.profile-switch__link:hover { color: var(--navy); }
.profile-switch__link.is-active {
  background: var(--navy);
  color: #fff;
}

/* ====================== Boutons ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.92rem 1.7rem;
  border-radius: 11px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--vert); color: var(--anthracite); box-shadow: 0 10px 24px -10px rgba(126, 165, 54, 0.7); }
.btn--primary:hover { background: var(--vert-clair); }
.btn--ghost { background: transparent; color: var(--navy); border: 1.5px solid #cdd0c9; }
.btn--ghost:hover { border-color: var(--vert); color: var(--vert-fonce); }

/* ====================== Sections ====================== */
.section { padding: 5.5rem 0; }
.section--paper { background: var(--paper); }
.section--bg { background: var(--bg); }

.section-head { max-width: 90ch;  margin: 0 auto 3rem; text-align: center; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }
.row.tarifs {}
.row.tarifs table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  }
  .row.tarifs thead th {
    text-align: left;
    padding: 16px 18px;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
  }
  .row.tarifs thead th:first-child { background: #1A171B; width: 36%; }
  .row.tarifs thead th.offert { background: #1F7A4D; }
  .row.tarifs thead th.abonnement { background: #1D5FA3; }
  .row.tarifs thead th.abonnement span { font-weight:400;font-size:11px;text-transform:none; }
  .row.tarifs tbody td {
    padding: 14px 18px;
    font-size: 14.5px;
    border-bottom: 1px solid #EDECE8;
    vertical-align: top;
  }
  .row.tarifs tbody tr:last-child td { border-bottom: none; }
  .row.tarifs td.feature { font-weight: 600; color: #1A171B; }
  .row.tarifs td.tag { }
  .pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
  }
  .pill.oui-offert { background: #E4F2E9; color: #1F7A4D; }
  .pill.oui-abo { background: #E5EEF8; color: #1D5FA3; }
  .pill.non { background: #F1EFE8; color: #9A9790; }
  .legend {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    margin-left: 20px;
    font-size: 13px;
    color: #4A4844;
  }
  .legend span { display: inline-flex; align-items: center; gap: 8px; }
  .dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
  .dot.success { background:#1F7A4D; }
  .dot.abo { background:#1D5FA3; }
  .note {
    margin-top: 28px;
    font-size: 13px;
    color: #6B6864;
    line-height: 1.6;
    border-left: 3px solid #E3E1DA;
    padding: 10px 16px;
  }

.section-title { font-size: clamp(1.7rem, 3.4vw, 2.2rem); margin: 0.85rem 0 0.8rem; }
.section-intro { color: var(--gris); font-size: 1.08rem; font-weight: 500; }

/* Duo media + texte */
.media-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3.2rem; align-items: center; }
.media-row--rev .media-row__media { order: 2; }
.media-row__media { min-width: 0; }

/* Cadre illustration */
.shot {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 26px 60px -34px rgba(26, 23, 27, 0.4);
}
.shot img { width: 100%; }
.shot--band-small {
    width: 80%;
    margin: 0 auto;
}
/* Variante sans cadre (visuels détourés, ex. bouclier ISO). */
.shot--plain { background: transparent; border: none; box-shadow: none; }
.shot--plain img { filter: drop-shadow(0 24px 40px rgba(26, 23, 27, 0.18)); }

/* ====================== Hero ====================== */
.hero {
  position: relative;
  overflow: hidden;
  /* Fond neutre calé sur le gris clair de l'illustration, pour qu'elle s'y fonde. */
  background: linear-gradient(180deg, #e8e8e6 0%, #e4e4e2 100%);
}
/* Halo vert décoratif placé derrière le texte (gauche), loin de l'image. */
.hero::before {
  content: "";
  position: absolute;
  left: -160px;
  top: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(153, 193, 68, 0.16), transparent 62%);
  pointer-events: none;
}
.hero__inner.hp {
  padding-top: 2.5rem;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 0.1rem;
  align-items: center;
  padding-block: 4.6rem 4.8rem;
}
.logo-header {
  position: absolute;
  right: 4rem;
  bottom: 2rem;
  max-width: 20vw;
}
.hero__title { font-size: clamp(2.3rem, 4.6vw, 3.5rem); margin: 1.1rem 0 1.2rem; color: var(--navy); }
.hero__lead { font-size: 1.16rem; font-weight: 500; color: var(--gris); max-width: 54ch; margin-bottom: 1.7rem; }
.hero__lead strong { color: var(--navy); font-weight: 700; }

.hero__pillars {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.3rem;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.02rem;
}
.hero__pillars li { display: inline-flex; align-items: center; }
.hero__pillars li:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 20px;
  background: var(--vert);
  border-radius: 3px;
  margin-left: 1.3rem;
}

.hero__choice {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.hero__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero__media { position: relative; overflow: hidden; }
.hero__media img {
  width: 110%;
  max-width: none;
  filter: drop-shadow(0 26px 34px rgba(26, 23, 27, 0.14));
  -webkit-mask-image: linear-gradient(to right, #000 80%, transparent 99%), linear-gradient(to bottom, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, #000 80%, transparent 99%), linear-gradient(to bottom, #000 88%, transparent 100%);
  mask-composite: intersect;
}

/* ====================== Comparatif (rupture) ====================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
.split__card { border-radius: 12px; padding: 1.5rem 1.6rem; border: 1px solid var(--line); background: #fff; }
.split__card--accent { background: var(--navy); border-color: transparent; }
.split__tag { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--muted); margin-bottom: 0.5rem; }
.split__card--accent .split__tag { color: var(--vert-clair); }
.split__card h3 { font-size: 1.08rem; color: var(--navy); margin-bottom: 0.35rem; }
.split__card--accent h3 { color: #fff; }
.split__card p { color: var(--gris); font-size: 0.8rem; font-weight: 500; }
.split__card--accent p { color: #c4ccd2; }

/* ====================== Cartes fonctionnalités ====================== */
.feature-list { display: grid; gap: 1.1rem; }
.feature-list--spaced { margin-top: 1.6rem; }
.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.feature:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -22px rgba(26, 23, 27, 0.4); }
.feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(153, 193, 68, 0.16);
  color: var(--vert-fonce);
  flex-shrink: 0;
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.25rem; }
.feature p { color: var(--gris); font-size: 0.96rem; font-weight: 500; }

/* Grille 3 cartes sous une bande */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 2.2rem; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.6rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -22px rgba(26, 23, 27, 0.4); }
.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(153, 193, 68, 0.16);
  color: var(--vert-fonce);
  margin-bottom: 1rem;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.12rem; color: var(--navy); margin-bottom: 0.4rem; }
.card p { color: var(--gris); font-size: 0.96rem; font-weight: 500; }

/* ====================== Écosystème connecteurs ====================== */
.ecosystem { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: stretch; }
/* Colonne en flex pour caler les blocs connecteurs sur la même ligne de base,
   quelle que soit la longueur des textes au-dessus. */
.ecosystem__col { display: flex; flex-direction: column; min-width: 0; }
.ecosystem__col .conn { margin-top: auto; }
.ecosystem__points {
  list-style: none;
  margin: 1.1rem 0 1.7rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: var(--navy);
  font-weight: 700;
}
.ecosystem__points li { display: flex; align-items: baseline; gap: 0.6rem; }
.ecosystem__points li::before { content: "✓"; color: var(--vert-fonce); font-weight: 800; }
.conn { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.5rem; min-height: 12rem; }
.conn__status {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
}
.conn__status::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--muted); box-shadow: 0 0 0 4px rgba(154, 154, 150, 0.18); }
.conn__status--live { color: var(--vert-fonce); }
.conn__status--live::before { background: var(--vert); box-shadow: 0 0 0 4px rgba(153, 193, 68, 0.2); }
.conn__status--wip { color: #3fa6a8; }
.conn__status--wip::before { background: var(--turquoise); box-shadow: 0 0 0 4px rgba(116, 197, 199, 0.22); }
.conn__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.55rem; }
.conn__list li { background: var(--bg); border-radius: 9px; padding: 0.55rem 1rem; font-weight: 700; font-size: 0.95rem; color: var(--navy); }

/* ====================== Modèle économique ====================== */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.duo__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.duo__media { background: var(--panel); border-bottom: 1px solid var(--line); }
.duo__media img { width: 100%; }
.duo__body { padding: 1.7rem 1.8rem 1.9rem; }
.duo__body h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 0.5rem; }
.duo__body p { color: var(--gris); font-weight: 500; }
/* Sur une page profil, une seule carte reste : la centrer plutôt que de
   l'étirer sur la moitié de la grille. */
.duo--single { grid-template-columns: minmax(0, 520px); justify-content: center; }

/* ====================== Étapes ====================== */
.steps {
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.steps__item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.3rem 1.2rem; }
.steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}
.steps__item h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.3rem; }
.steps__item p { color: var(--gris); font-size: 0.9rem; font-weight: 500; }

/* ====================== Conformité (bande tintée) ====================== */
.norme { background: linear-gradient(120deg, rgba(116, 197, 199, 0.16), rgba(153, 193, 68, 0.16)); }
.norme__points { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 0.85rem; }
.norme__points li { position: relative; padding-left: 1.7rem; color: var(--gris-vert); font-weight: 600; }
.norme__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vert);
  box-shadow: 0 0 0 4px rgba(153, 193, 68, 0.22);
}

/* ====================== Feuille de route ====================== */
.roadmap { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.roadmap__item { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--vert); border-radius: 12px; padding: 1.7rem; }
.roadmap__when {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--vert-fonce);
  margin-bottom: 0.7rem;
}
.roadmap__item h3 { font-size: 1.08rem; color: var(--navy); margin-bottom: 0.45rem; }
.roadmap__item p { color: var(--gris); font-size: 0.95rem; font-weight: 500; }

/* ====================== CTA ====================== */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--anthracite);
  color: var(--paper);
  padding: 5rem 0;
}
.cta::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -160px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(153, 193, 68, 0.2), transparent 62%);
  pointer-events: none;
}
.cta::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(116, 197, 199, 0.14), transparent 62%);
  pointer-events: none;
}
.cta__inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.cta__inner h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); color: #fff; margin-bottom: 0.7rem; }
.cta__inner p { color: #b9b9bb; font-size: 1.08rem; font-weight: 500; margin-bottom: 1.8rem; }

/* ====================== Footer ====================== */
.site-footer { background: var(--anthracite); color: #b9b9bb; padding: 3.2rem 0; border-top: 1px solid #2a262c; }
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
}
.site-footer__logo { height: 80px;
    width: auto;
    float: left;
    margin-top: -48px;
    transform: translateY(18px); }
.site-footer__copy { font-size: 0.85rem; color: #85858a; margin: 0; }
.site-footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem 1.6rem; }
.site-footer__nav a { color: #b9b9bb; text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.site-footer__nav a:hover { color: var(--vert); }

/* ====================== Responsive ====================== */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero__media { order: -1; max-width: 480px; margin-inline: auto; }
  .media-row { grid-template-columns: 1fr; gap: 1.8rem; }
  .media-row--rev .media-row__media { order: -1; }
  .cards-3 { grid-template-columns: 1fr; }
  .ecosystem { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .roadmap { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .site-footer__logo { height: 36px; width: auto; }

}

/* La bascule de profil occupe la place de plusieurs liens : les ancres de
   sections sautent bien avant le vrai mobile, sinon l'en-tête déborde. */
@media (max-width: 1040px) {
  .site-nav__link { display: none; }
}

@media (max-width: 680px) {
  /* En-tête sur deux lignes : logo au-dessus, bascule + Login en dessous. */
  .site-header__inner { flex-wrap: wrap; justify-content: center; min-height: 0; padding-block: 0.7rem; row-gap: 0.7rem; }
  .site-header__logo { height: 46px; }
  .site-nav { flex-wrap: wrap; justify-content: center; gap: 0.7rem; }
  .profile-switch__link { padding: 0.36rem 0.66rem; font-size: 0.78rem; }
  .site-nav__cta { padding: 0.5rem 0.85rem; font-size: 0.82rem; }
  .section { padding: 3.8rem 0; }
  .steps { grid-template-columns: 1fr; }
  .logo-header { display:none; }
  /* Sur mobile, les illustrations ne prennent pas toute la largeur. */
  .hero__media { display: none; }
  .shot:not(.shot--band) { max-width: 360px; margin-inline: auto; }
  .duo__media { max-width: 300px; margin-inline: auto; }
}

/* Très petits écrans : la bascule de profil doit tenir sur une seule ligne. */
@media (max-width: 400px) {
  .profile-switch__link { padding: 0.34rem 0.55rem; font-size: 0.74rem; }
}

/* ====================== Pages légales ====================== */
.legal__container { max-width: 820px; }
.legal__updated { font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; }
.legal h2 { font-size: 1.15rem; margin: 2.2rem 0 0.6rem; }
.legal p { margin: 0 0 0.9rem; }
.legal ul { margin: 0 0 0.9rem; padding-left: 1.3rem; }
.legal li { margin-bottom: 0.4rem; }
.legal a { color: var(--vert-fonce); font-weight: 600; }
