/* ==========================================================================
   ANZEN SRE — Landing page (Liquid Glass)
   Feuille de styles principale.
   ========================================================================== */

/* ---------- Polices auto-hébergées (Hanken Grotesk, variable 400→800) ------ */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/hanken-grotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/hanken-grotesk-latin.woff2') format('woff2');
  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;
}

/* ---------- Reset / base ---------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #ececf7;
  color: #16151c;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: rgba(111, 107, 255, .22); }
a { text-decoration: none; color: inherit; }
input, textarea, select, button { font-family: inherit; }
img { max-width: 100%; }

/* ---------- Décor de fond --------------------------------------------------- */
.bg {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.bg-blobs {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 12% 8%, rgba(180, 176, 255, .55), transparent 60%),
    radial-gradient(55% 45% at 92% 14%, rgba(255, 196, 214, .45), transparent 60%),
    radial-gradient(50% 50% at 80% 75%, rgba(150, 210, 255, .42), transparent 62%),
    radial-gradient(45% 45% at 18% 88%, rgba(160, 240, 205, .40), transparent 60%),
    linear-gradient(180deg, #f1f0fb, #e9e9f6 55%, #eef0fb);
}
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(20, 19, 40, .05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000, transparent 80%);
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 80%);
}
.page { position: relative; z-index: 2; }

/* ---------- Utilitaires ----------------------------------------------------- */
.dim { color: #bdbbcd; }
.muted { color: #9a98ad; font-size: 13px; }
.grad-text {
  background: linear-gradient(120deg, #6f6bff, #9a7bff 50%, #ff9fc0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grad-text--gp {
  background: linear-gradient(120deg, #6f6bff, #36c98f);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
  color: #6b6a7c; text-transform: uppercase; margin-bottom: 18px;
}
.note { margin-top: 12px; font-size: 12px; color: #9a98ad; letter-spacing: .3px; }

/* ---------- Sections (conteneur) ------------------------------------------- */
.section { position: relative; max-width: 1240px; margin: 0 auto; }
.section--hero     { padding: 150px 40px 60px; }
.section--services { padding: 96px 40px 60px; }
.section--why      { padding: 80px 40px; }
.section--stack    { padding: 60px 40px 90px; }
.section--contact  { padding: 40px 40px 100px; }
.section--footer   { padding: 0 40px 40px; }

/* ---------- Boutons --------------------------------------------------------- */
.btn-dark, .btn-glass {
  display: inline-block; white-space: nowrap; cursor: pointer;
  font-weight: 600; transition: transform .2s;
}
.btn-dark {
  border-radius: 999px; border: none;
  background: linear-gradient(180deg, #26242f, #0f0e14);
  color: #fff;
  box-shadow: 0 8px 22px -10px rgba(15, 14, 20, .8), inset 0 1px 0 rgba(255, 255, 255, .22);
}
.btn-dark--lg {
  font-size: 16px; padding: 15px 28px;
  box-shadow: 0 16px 36px -16px rgba(15, 14, 20, .9), inset 0 1px 0 rgba(255, 255, 255, .22);
}
.btn-dark--sm { font-size: 14px; padding: 11px 20px; }
.btn-glass {
  border-radius: 999px; color: #26243a;
  background: linear-gradient(180deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .55));
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: 0 10px 28px -16px rgba(70, 60, 140, .5), inset 0 1px 0 rgba(255, 255, 255, .9);
}
.btn-glass--lg { font-size: 16px; padding: 15px 26px; }
.btn-glass--sm { font-size: 14px; padding: 13px 22px; }
.btn-dark:hover, .btn-glass:hover { transform: translateY(-2px); }
.btn--lift:hover { transform: translateY(-3px); }

/* ---------- Navigation ------------------------------------------------------ */
.nav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%); z-index: 50;
  width: calc(100% - 40px); max-width: 1180px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px 11px 22px; border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .5));
  backdrop-filter: blur(22px) saturate(180%); -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .75);
  box-shadow: 0 14px 40px -20px rgba(70, 60, 140, .4), inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: box-shadow .3s ease;
}
.nav.is-scrolled {
  box-shadow: 0 18px 50px -22px rgba(70, 60, 140, .55), inset 0 1px 0 rgba(255, 255, 255, .95);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__logo { width: 50px; height: 50px; display: block; object-fit: contain; }
.brand__name { font-weight: 700; font-size: 17px; letter-spacing: .5px; }
.brand__name span { color: #9a98ad; }
.nav__links { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 500; color: #46455a; }
.nav__link { transition: color .2s; }
.nav__link:hover { color: #16151c; }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__burger {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__burger span { width: 20px; height: 2px; background: #16151c; display: block; border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 49;
  background: rgba(240, 240, 251, .92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 26px; font-size: 24px; font-weight: 600;
}

/* ---------- Hero ------------------------------------------------------------ */
.hero__row { display: flex; align-items: center; gap: 30px; }
.hero__col { flex: 1 1 0; min-width: 0; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px; color: #6b6a7c;
  text-transform: uppercase; margin-bottom: 26px; padding: 8px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, .55); border: 1px solid rgba(255, 255, 255, .7);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(135deg, #6f6bff, #ff9fc0); }
.hero__title {
  margin: 0; font-size: clamp(46px, 6.6vw, 84px); line-height: 1.0;
  font-weight: 700; letter-spacing: -2.5px;
}
.hero__lead {
  margin: 30px 0 0; max-width: 500px;
  font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: #55546a;
}
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__canvas-wrap { flex: 1 1 0; min-width: 0; height: 520px; position: relative; }
.hero__canvas { position: absolute; inset: 0; pointer-events: none; }

/* ---------- Stats ----------------------------------------------------------- */
.stats {
  margin-top: 54px; padding: 6px; border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .42));
  backdrop-filter: blur(26px) saturate(180%); -webkit-backdrop-filter: blur(26px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .75);
  box-shadow: 0 24px 60px -30px rgba(70, 60, 140, .5), inset 0 1px 0 rgba(255, 255, 255, .9);
}
.stats__row { display: flex; align-items: stretch; }
.stat { flex: 1; padding: 24px 26px; }
.stat__num { font-size: clamp(34px, 3.6vw, 48px); font-weight: 700; letter-spacing: -1.5px; line-height: 1; }
.stat__accent { color: #6f6bff; }
.stat__accent--green { color: #36c98f; }
.stat__label { margin-top: 8px; font-size: 13.5px; color: #6b6a7c; line-height: 1.4; }
.stat__divider { width: 1px; background: linear-gradient(rgba(20, 19, 40, 0), rgba(20, 19, 40, .12), rgba(20, 19, 40, 0)); }

/* ---------- Marquee --------------------------------------------------------- */
.marquee {
  position: relative; margin: 30px 0 10px; padding: 16px 0; overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .6); border-bottom: 1px solid rgba(255, 255, 255, .6);
  background: linear-gradient(180deg, rgba(255, 255, 255, .4), rgba(255, 255, 255, .15));
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.marquee__track { display: flex; gap: 0; width: max-content; white-space: nowrap; will-change: transform; }
.marquee__chip {
  display: inline-flex; align-items: center; gap: 18px; padding: 0 26px;
  font-size: clamp(20px, 2.4vw, 30px); font-weight: 600; letter-spacing: -.6px; color: #3a3950;
}
.marquee__chip-dot { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, #6f6bff, #ff9fc0); }

/* ---------- Titres de section ---------------------------------------------- */
.title-services { margin: 0 0 44px; font-size: clamp(34px, 4.6vw, 60px); font-weight: 700; letter-spacing: -1.8px; line-height: 1.02; max-width: 820px; }
.title-why      { margin: 0 0 24px; font-size: clamp(30px, 4vw, 52px); font-weight: 700; letter-spacing: -1.6px; line-height: 1.05; }
.title-stack    { margin: 0; font-size: clamp(28px, 3.6vw, 46px); font-weight: 700; letter-spacing: -1.4px; line-height: 1.05; }
.title-contact  { margin: 0 0 22px; font-size: clamp(34px, 4.8vw, 62px); font-weight: 700; letter-spacing: -2px; line-height: 1.02; }

/* ---------- Services (accordéon) ------------------------------------------- */
.accordion { display: flex; flex-direction: column; gap: 16px; }
.acc-item {
  border-radius: 28px; overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .44));
  backdrop-filter: blur(26px) saturate(180%); -webkit-backdrop-filter: blur(26px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 24px 60px -34px rgba(70, 60, 140, .5), inset 0 1px 0 rgba(255, 255, 255, .9);
}
.acc-item--green {
  background: linear-gradient(160deg, rgba(236, 255, 247, .74), rgba(255, 255, 255, .44));
  box-shadow: 0 24px 60px -34px rgba(54, 160, 120, .4), inset 0 1px 0 rgba(255, 255, 255, .9);
}
.acc-head { cursor: pointer; display: flex; align-items: center; gap: 22px; padding: 30px 34px; }
.acc-num { font-size: 14px; font-weight: 600; color: #9a98ad; letter-spacing: 1px; }
.acc-num--green { color: #36c98f; }
.acc-title { flex: 1; margin: 0; font-size: clamp(24px, 2.8vw, 34px); font-weight: 700; letter-spacing: -1px; }
.acc-icon {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  border: 1px solid rgba(20, 19, 40, .16);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #26243a; transition: transform .25s; background: rgba(255, 255, 255, .5);
}
.acc-icon--green { border-color: rgba(54, 201, 143, .4); color: #1f8a5b; }
.acc-body { height: 0; overflow: hidden; opacity: 0; }
.acc-content { padding: 0 34px 32px; display: flex; gap: 40px; flex-wrap: wrap; }
.acc-desc { flex: 1 1 300px; margin: 0; font-size: 16.5px; line-height: 1.65; color: #55546a; }
.acc-feats { flex: 1 1 280px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; }
.feat { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: #3a3950; }
.feat__dot { width: 6px; height: 6px; border-radius: 50%; flex: none; background: #6f6bff; }
.feat__dot--violet { background: #9a7bff; }
.feat__dot--green { background: #36c98f; }

/* ---------- Pourquoi -------------------------------------------------------- */
.why__row { display: flex; gap: 56px; align-items: flex-start; }
.why__col { flex: 1 1 0; min-width: 0; }
.why__text { margin: 0 0 18px; font-size: 17.5px; line-height: 1.75; color: #55546a; max-width: 520px; }
.why__text:last-child { margin-bottom: 0; }
.why__text strong { font-weight: 700; color: #16151c; }
.why__cards { flex: 0 0 380px; display: flex; flex-direction: column; gap: 16px; }
.why-card {
  flex: 1; border-radius: 24px; padding: 26px;
  backdrop-filter: blur(22px) saturate(180%); -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .75);
}
.why-card--blue {
  background: linear-gradient(160deg, rgba(255, 255, 255, .72), rgba(238, 236, 255, .5));
  box-shadow: 0 18px 44px -26px rgba(70, 60, 140, .5), inset 0 1px 0 rgba(255, 255, 255, .9);
}
.why-card--green {
  background: linear-gradient(160deg, rgba(236, 255, 247, .72), rgba(255, 255, 255, .5));
  box-shadow: 0 18px 44px -26px rgba(54, 160, 120, .4), inset 0 1px 0 rgba(255, 255, 255, .9);
}
.why-card--pink {
  background: linear-gradient(160deg, rgba(255, 244, 248, .72), rgba(255, 255, 255, .5));
  box-shadow: 0 18px 44px -26px rgba(160, 80, 120, .35), inset 0 1px 0 rgba(255, 255, 255, .9);
}
.why-card__label { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 11px; }
.why-card__label--blue { color: #6f6bff; }
.why-card__label--green { color: #1f8a5b; }
.why-card__label--pink { color: #c0578a; }
.why-card__text { font-size: 15.5px; line-height: 1.55; color: #3a3950; }

/* ---------- Stack ----------------------------------------------------------- */
.stack__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 38px; }
.stack__eyebrow { margin-bottom: 16px; }
.stack__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stack-card {
  border-radius: 22px; padding: 24px 22px; min-height: 150px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(160deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .34));
  backdrop-filter: blur(18px) saturate(170%); -webkit-backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 16px 40px -28px rgba(70, 60, 140, .5), inset 0 1px 0 rgba(255, 255, 255, .9);
}
.stack-card__num { font-size: 12px; font-weight: 600; color: #9a98ad; letter-spacing: 1px; }
.stack-card__title { font-size: 18px; font-weight: 700; letter-spacing: -.4px; margin-bottom: 6px; }
.stack-card__desc { font-size: 13.5px; color: #6b6a7c; line-height: 1.4; }

/* ---------- Contact + formulaire ------------------------------------------- */
.contact__row { display: flex; gap: 48px; align-items: stretch; }
.contact__col { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.contact__text { margin: 0 0 30px; font-size: 17.5px; line-height: 1.7; color: #55546a; max-width: 430px; }
.contact__info { display: flex; flex-direction: column; gap: 13px; font-size: 15px; color: #46455a; }
.contact__info-item { display: flex; align-items: center; gap: 12px; }
.contact__dot { width: 9px; height: 9px; border-radius: 50%; flex: none; background: linear-gradient(135deg, #6f6bff, #9a7bff); }
.contact__dot--green { background: #36c98f; }
.contact__form-wrap { flex: 0 0 480px; max-width: 100%; }
.form {
  border-radius: 30px; padding: 34px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .46));
  backdrop-filter: blur(28px) saturate(180%); -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: 0 30px 70px -34px rgba(70, 60, 140, .55), inset 0 1px 0 rgba(255, 255, 255, .95);
  display: flex; flex-direction: column; gap: 16px;
}
.form__row { display: flex; gap: 14px; flex-wrap: wrap; }
.form__field {
  display: flex; flex-direction: column; gap: 7px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px; color: #6b6a7c; text-transform: uppercase;
}
.form__field--half { flex: 1 1 150px; }
.input, .select, .textarea {
  background: rgba(255, 255, 255, .6); border: 1px solid rgba(20, 19, 40, .12);
  border-radius: 12px; padding: 13px 14px; color: #16151c; font-size: 15px; outline: none;
  transition: border-color .2s, background .2s;
}
.textarea { resize: vertical; }
.input:focus, .textarea:focus { border-color: #6f6bff; background: rgba(255, 255, 255, .9); }
.select:focus { border-color: #6f6bff; }
.btn-submit {
  margin-top: 4px; padding: 16px; border: none; border-radius: 14px;
  background: linear-gradient(180deg, #26242f, #0f0e14); color: #fff;
  font-weight: 600; font-size: 16px; cursor: pointer;
  box-shadow: 0 16px 36px -16px rgba(15, 14, 20, .9), inset 0 1px 0 rgba(255, 255, 255, .22);
  transition: transform .2s;
}
.btn-submit:hover { transform: translateY(-2px); }
.btn-submit:disabled { opacity: .65; cursor: default; transform: none; }
.form-done {
  border-radius: 30px; padding: 46px 34px; text-align: center;
  background: linear-gradient(160deg, rgba(236, 255, 247, .8), rgba(255, 255, 255, .5));
  backdrop-filter: blur(28px) saturate(180%); -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: 0 30px 70px -34px rgba(54, 160, 120, .5), inset 0 1px 0 rgba(255, 255, 255, .95);
}
.form-done__check {
  width: 54px; height: 54px; margin: 0 auto 18px; border-radius: 50%;
  background: linear-gradient(135deg, #5fe0a8, #36c98f);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px; box-shadow: 0 10px 26px -10px rgba(54, 201, 143, .8);
}
.form-done__title { font-size: 21px; font-weight: 700; margin-bottom: 8px; }
.form-done__text { font-size: 15px; color: #55546a; line-height: 1.6; }
.form-error { color: #c0395a; font-size: 14px; margin: 0; display: none; }

/* ---------- Pied de page ---------------------------------------------------- */
.footer__inner {
  border-radius: 30px; padding: 44px 40px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .66), rgba(255, 255, 255, .38));
  backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 24px 60px -34px rgba(70, 60, 140, .5), inset 0 1px 0 rgba(255, 255, 255, .9);
}
.footer__row { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer__brand { max-width: 300px; }
.footer__brand-link { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__logo { width: 28px; height: 28px; display: block; object-fit: contain; }
.footer__desc { margin: 0; font-size: 14px; line-height: 1.6; color: #6b6a7c; }
.footer__cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer__col-title { font-size: 11px; font-weight: 600; letter-spacing: 2px; color: #9a98ad; text-transform: uppercase; margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; color: #46455a; }
.footer__link { transition: color .2s; }
.footer__link:hover { color: #6f6bff; }
.footer__link--green:hover { color: #36c98f; }
.footer__bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(20, 19, 40, .08);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: #9a98ad;
}
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__legal a { transition: color .2s; }
.footer__legal a:hover { color: #46455a; }

/* ---------- Lien Instagram -------------------------------------------------- */
.ig-link { display: inline-flex; align-items: center; gap: 9px; transition: color .2s; }
.ig-link:hover { color: #c0578a; }
.ig-icon { display: block; object-fit: contain; border-radius: 5px; }
.footer__link .ig-icon { display: inline-block; vertical-align: -3px; margin-right: 6px; }

/* ---------- Pages légales (mentions, confidentialité) ---------------------- */
.legal { max-width: 840px; margin: 0 auto; padding: 130px 24px 90px; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #6b6a7c; margin-bottom: 22px; transition: color .2s; }
.legal__back:hover { color: #16151c; }
.legal__card {
  border-radius: 30px; padding: 46px 44px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .5));
  backdrop-filter: blur(28px) saturate(180%); -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: 0 30px 70px -34px rgba(70, 60, 140, .5), inset 0 1px 0 rgba(255, 255, 255, .95);
}
.legal h1 { margin: 0 0 6px; font-size: clamp(30px, 4vw, 46px); font-weight: 700; letter-spacing: -1.4px; }
.legal__updated { margin: 0 0 30px; font-size: 13.5px; color: #9a98ad; }
.legal h2 { margin: 34px 0 10px; font-size: clamp(19px, 2.2vw, 23px); font-weight: 700; letter-spacing: -.5px; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { font-size: 15.5px; line-height: 1.7; color: #46455a; }
.legal a { color: #6f6bff; transition: color .2s; }
.legal a:hover { color: #4d49d6; }
.legal ul { margin: 8px 0; padding-left: 20px; }
.legal__todo { color: #c0578a; font-weight: 600; }
@media (max-width: 880px) { .legal__card { padding: 32px 22px; } }

/* ---------- Apparition au scroll ------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Responsive ------------------------------------------------------ */
@media (max-width: 880px) {
  .nav__links { display: none !important; }
  .nav__burger { display: flex !important; }
  .hero__row { flex-direction: column !important; gap: 30px !important; }
  .hero__canvas-wrap { height: 360px !important; width: 100% !important; order: -1; }
  .stack__grid { grid-template-columns: 1fr 1fr !important; }
  .why__row { flex-direction: column !important; }
  .why__cards { flex-direction: row !important; flex-wrap: wrap !important; }
  .contact__row { flex-direction: column !important; }
  .footer__row { flex-direction: column !important; gap: 30px !important; }
  .acc-content { flex-direction: column !important; gap: 14px !important; }
  .stats__row { flex-wrap: wrap !important; }
  .section { padding-left: 20px !important; padding-right: 20px !important; }
  .hero__title { font-size: 46px !important; }
}
