/* ============================================================
   DIGIPATH — Design tokens & global styles
   Sober, institutional, modern. Manrope + IBM Plex Mono.
   ============================================================ */

/* Manrope self-hosted (variable, latin) */
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-variable.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand */
  --brand-cyan: #5DC8E8;
  --brand-blue: #1E92D0;
  --brand-deep: #1773AE;
  --brand-gradient: linear-gradient(135deg, #5DC8E8 0%, #1E92D0 60%, #1773AE 100%);

  /* Neutrals (cool tone) */
  --ink-900: #0F172A;
  --ink-800: #1F2937;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748B;
  --ink-400: #94A3B8;
  --ink-300: #CBD5E1;
  --ink-200: #E2E8F0;
  --ink-100: #F1F5F9;
  --ink-050: #F8FAFC;
  --bg: #FFFFFF;
  --bg-tint: #F7F9FC;
  --bg-deep: #0B1220;

  /* Type */
  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --container: 1200px;
  --container-narrow: 920px;
  --section-y: clamp(80px, 11vw, 140px);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

html, body {
  background: var(--bg);
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

[hidden] { display: none !important; }

::selection { background: rgba(30, 146, 208, 0.2); }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute; top: 8px; left: 8px;
  background: #fff; color: var(--ink-900);
  padding: 8px 14px; border-radius: 8px;
  box-shadow: 0 4px 14px rgba(15, 27, 45, 0.08);
  transform: translateY(-200%);
  transition: transform 120ms ease;
  z-index: 200;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.container--narrow { max-width: var(--container-narrow); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0;
  text-wrap: balance;
}

p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-500);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--ink-400);
}
.eyebrow--num { color: var(--brand-deep); }
.eyebrow--num::before { background: var(--brand-blue); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 250ms var(--ease-out), background 250ms var(--ease-out);
}
.site-header.is-scrolled {
  border-bottom-color: var(--ink-200);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  transition: opacity 180ms;
}
.site-header__logo:hover { opacity: 0.85; }
.site-header__logo img {
  height: 28px;
  width: auto;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
}
.site-header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  transition: color 180ms;
}
.site-header__nav a:hover { color: var(--brand-deep); }
.site-header__nav .nav-cta {
  background: var(--ink-900);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  transition: background 180ms, transform 180ms;
}
.site-header__nav .nav-cta:hover {
  background: var(--brand-deep);
  color: white;
}

@media (max-width: 720px) {
  .site-header__nav a:not(.nav-cta) { display: none; }
  .site-header__inner { height: 64px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms, transform 180ms;
  font-family: inherit;
}
.btn--primary {
  background: var(--ink-900);
  color: white;
}
.btn--primary:hover { background: var(--brand-deep); }
.btn--ghost {
  background: transparent;
  color: var(--ink-800);
  border-color: var(--ink-300);
}
.btn--ghost:hover {
  border-color: var(--ink-900);
  background: var(--ink-050);
}
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }
.btn .arrow { transition: transform 200ms var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Section base ---------- */
section {
  padding: var(--section-y) 0;
  position: relative;
}
section + section { border-top: 1px solid var(--ink-100); }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: clamp(40px, 6vw, 64px);
  max-width: 760px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(60px, 9vw, 110px);
  padding-bottom: clamp(60px, 9vw, 100px);
  background:
    radial-gradient(ellipse 70% 80% at 85% 0%, rgba(93, 200, 232, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 70% at 10% 90%, rgba(30, 146, 208, 0.06), transparent 60%),
    var(--bg);
  border-top: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
@media (min-width: 980px) {
  .hero__inner { grid-template-columns: 1.1fr 1fr; }
}

.hero h1 {
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 28px;
}
.hero__h1 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__h1 > span { display: block; }
@media (min-width: 600px) {
  .hero__h1 > span { white-space: nowrap; }
}
.hero h1 .accent {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.hero__sub {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-600);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.55;
  text-align: justify;
}
.hero__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.hero__france {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  max-width: 460px;
}
.hero__france img {
  height: 56px;
  width: auto;
  flex-shrink: 0;
}
.hero__france p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-600);
  line-height: 1.45;
}
.hero__france strong {
  color: var(--ink-900);
  font-weight: 600;
}

.hero__visual {
  width: 100%;
  display: flex;
  justify-content: center;
}
.schema {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  margin-right: 0;
  position: relative;
}
.schema--img {
  display: block;
  height: auto;
  object-fit: contain;
}

/* Mobile (<980px): center copy + visual, condense schema */
@media (max-width: 979px) {
  .hero__copy { text-align: center; }
  .hero__copy .hero__sub { margin-left: auto; margin-right: auto; text-align: center; }
  .hero__cta-row { justify-content: center; }
  .hero__france { margin-left: auto; margin-right: auto; }
  .hero__visual { justify-content: center; }
  .schema { margin-left: auto; margin-right: auto; max-width: 420px; }
}

/* ---------- Section: Le projet ---------- */
.projet__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}
@media (min-width: 900px) {
  .projet__grid { grid-template-columns: 1.4fr 1fr; }
}
.projet__body {
  font-size: 17px;
  color: var(--ink-700);
  line-height: 1.65;
  text-align: justify;
}
.projet__body p + p { margin-top: 20px; }
.projet__body strong { color: var(--ink-900); font-weight: 600; }
.projet__body em.figure {
  font-style: normal;
  font-weight: 600;
  color: var(--ink-900);
  background: linear-gradient(0deg, rgba(93, 200, 232, 0.18) 0%, rgba(93, 200, 232, 0.18) 30%, transparent 30%);
  padding: 0 2px;
}

.projet__aside {
  background: var(--bg-tint);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.projet__aside .kpi {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.projet__aside .kpi__val {
  font-size: clamp(32px, 3.6vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.projet__aside .kpi__lbl {
  font-size: 13px;
  color: var(--ink-600);
  line-height: 1.45;
}
.projet__aside hr {
  border: none;
  border-top: 1px solid var(--ink-200);
  margin: 0;
}
.projet__aside .sources {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.02em;
  line-height: 1.55;
}

/* ---------- Section: Approche (piliers) ---------- */
.piliers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) {
  .piliers { grid-template-columns: repeat(3, 1fr); }
}
.pilier {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 200ms, transform 200ms var(--ease-out), box-shadow 200ms;
}
.pilier:hover {
  border-color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px rgba(30, 146, 208, 0.18);
}
.pilier__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(93, 200, 232, 0.14), rgba(30, 146, 208, 0.10));
  color: var(--brand-deep);
  display: grid;
  place-items: center;
}
.pilier__icon svg { width: 24px; height: 24px; }
.pilier__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-400);
  text-transform: uppercase;
}
.pilier h3 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
}
.pilier p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-600);
  line-height: 1.6;
  text-align: justify;
}

/* ---------- Section: Avancement ---------- */
.avancement {
  background: var(--bg-tint);
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}
.avancement__lead {
  font-size: 17px;
  color: var(--ink-700);
  line-height: 1.65;
  max-width: 720px;
  text-align: justify;
}
.avancement__lead p + p { margin-top: 16px; }
.avancement__lead strong { color: var(--ink-900); font-weight: 600; }

.partners {
  margin-top: 48px;
}
.partners__lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-500);
  margin-bottom: 20px;
}
.partners__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: stretch;
}
.partner {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: grid;
  place-items: center;
  min-height: 110px;
  transition: border-color 200ms, transform 200ms var(--ease-out), box-shadow 200ms;
}
.partner:hover {
  border-color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(30, 146, 208, 0.18);
}
.partner img {
  max-height: 64px;
  max-width: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ---------- Section: Fondateur ---------- */
.fondateur {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}
.fondateur__avatar {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-deep));
  color: white;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  box-shadow: 0 10px 30px -10px rgba(30, 146, 208, 0.4);
}
.fondateur__name {
  font-size: 24px;
  font-weight: 600;
}
.fondateur__role {
  font-style: italic;
  font-size: 15px;
  color: var(--ink-600);
  margin-top: 4px;
}
.fondateur__bio {
  font-size: 17px;
  color: var(--ink-700);
  line-height: 1.65;
  max-width: 560px;
  margin: 8px auto 0;
}

/* ---------- Section: Contact ---------- */
.contact {
  background: var(--bg-tint);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 1fr 1.3fr; }
}
.contact__intro p {
  font-size: 17px;
  color: var(--ink-700);
  line-height: 1.65;
  text-align: justify;
}
.contact__direct {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-200);
}
.contact__direct .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-500);
  margin-bottom: 8px;
}
.contact__direct a {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
  border-bottom: 1px solid var(--brand-blue);
  transition: color 180ms;
}
.contact__direct a:hover { color: var(--brand-deep); }

/* Form */
.form {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) {
  .form__row--2 { grid-template-columns: 1fr 1fr; }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field > label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  display: flex;
  gap: 4px;
  align-items: center;
}
.field > label .opt {
  color: var(--ink-400);
  font-weight: 400;
  font-size: 12px;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-900);
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 180ms, box-shadow 180ms;
  width: 100%;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(30, 146, 208, 0.15);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #DC2626;
}
.field .err {
  font-size: 12px;
  color: #DC2626;
  margin-top: 2px;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1L6 6L11 1' stroke='%23475569' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
  font-size: 13px;
  color: var(--ink-600);
  line-height: 1.5;
  text-align: justify;
}
.checkbox a {
  color: var(--brand-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.checkbox input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  border: 1px solid var(--ink-300);
  border-radius: 4px;
  background: white;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 180ms, background 180ms;
}
.checkbox input:checked {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}
.checkbox input:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox.has-error input { border-color: #DC2626; }

.form__submit {
  margin-top: 6px;
  align-self: flex-start;
}

.form__status {
  border-radius: var(--radius-sm);
  font-size: 14px;
  padding: 12px 16px;
}
.form__status[hidden] { display: none; }
.form__status--error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.form-success {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.form-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-deep));
  color: white;
  display: grid;
  place-items: center;
}
.form-success h3 {
  font-size: 20px;
}
.form-success p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-600);
  max-width: 380px;
}

/* Submit spinner */
.spinner {
  width: 14px; height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  animation: spin 700ms linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Honeypot field (hidden from users) */
.honeypot {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ---------- Section: Conformité ---------- */
.conformite__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  .conformite__grid { grid-template-columns: repeat(3, 1fr); }
}
.cert {
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
  transition: border-color 200ms, transform 200ms var(--ease-out), box-shadow 200ms;
}
.cert:hover {
  border-color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px rgba(30, 146, 208, 0.18);
}
.cert__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cert__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--ink-050);
  border: 1px solid var(--ink-200);
  color: var(--brand-deep);
  display: grid;
  place-items: center;
}
.cert__icon svg { width: 20px; height: 20px; }
.cert__abbr {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: 0.02em;
}
.cert__name {
  font-size: 11px;
  color: var(--ink-500);
}
.cert__desc {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.55;
  margin: 0;
  text-align: justify;
}
.conformite__note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-500);
  font-style: italic;
  max-width: 760px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(60px, 7vw, 90px) 0 32px;
  border-top: none;
}
.site-footer h4 {
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 760px) {
  .site-footer__top { grid-template-columns: 1.3fr 1fr 1fr; }
}
.site-footer__logo img {
  height: 24px;
  width: auto;
  margin-bottom: 20px;
}
.site-footer__legal {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
}
.site-footer__legal strong {
  color: white;
  font-weight: 600;
}
.site-footer__legal a {
  color: inherit;
  transition: color 180ms;
}
.site-footer__legal a:hover { color: white; }

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 180ms;
}
.site-footer__nav a:hover { color: white; }

.site-footer__partners {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.site-footer__partners a {
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  min-height: 56px;
  transition: transform 200ms var(--ease-out);
}
.site-footer__partners a:hover { transform: translateY(-2px); }
.site-footer__partners img {
  max-height: 40px;
  max-width: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.site-footer__france-note {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.site-footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-mono);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Mentions légales ---------- */
.page-legal {
  padding: clamp(60px, 8vw, 100px) 0 clamp(60px, 8vw, 100px);
}
.page-legal h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  margin-bottom: 8px;
}
.page-legal .updated {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: 48px;
}
.page-legal h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 12px;
  color: var(--ink-900);
}
.page-legal p,
.page-legal li {
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.7;
}
.page-legal p + p { margin-top: 12px; }
.page-legal strong { color: var(--ink-900); }
.page-legal a {
  color: var(--brand-deep);
  text-decoration: underline;
  text-decoration-color: var(--brand-blue);
  text-underline-offset: 2px;
}
