/* ═══════════════════════════════════════════════════════════════
   HOME EDITORIAL (v2) — Direction "Editorial Confiance"
   Polices : Instrument Serif (titres) + Inter (corps) + Geist Mono (eyebrows)
   Reference : design fiche/accueil et recherche/components/dirA-accueil.jsx
   Scope : appliquee uniquement sur <main class="ed-home"> (accueil)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Tokens editorial (scopes au wrapper pour ne pas polluer) ─── */
.ed-home {
  --ed-paper:        #FBFAF6;
  --ed-paper2:       #F6F4EF;
  --ed-paper-card:   #FFFFFF;
  --ed-ink:          #0D1220;
  --ed-ink2:         #3A4055;
  --ed-ink-muted:    #9AA0B0;
  --ed-line:         #E6E2D7;
  --ed-line-soft:    #F0EDE3;
  /* Accent cyan du logo (debut du degrade) — harmonise les petites surfaces avec le brand-gradient */
  --ed-accent:       #0EA5E9;
  --ed-accent-deep:  #0284C7;
  --ed-accent-tint:  rgba(14, 165, 233, 0.08);
  --ed-shadow-soft:  0 8px 24px -16px rgba(13, 18, 32, 0.18);
  --ed-shadow-card:  0 18px 40px -22px rgba(13, 18, 32, 0.20);
  --ed-shadow-glow:  0 12px 32px -16px rgba(244, 114, 182, 0.40), 0 6px 18px -10px rgba(14, 165, 233, 0.30);
  --ed-radius-card:  18px;
  --ed-radius-pill:  999px;
  --ed-radius-sm:    14px;

  --ed-font-display: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --ed-font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ed-font-mono:    'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;

  background: var(--ed-paper);
  color: var(--ed-ink);
  font-family: var(--ed-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Anti-débordement horizontal : les animations de révélation au scroll
     translatent les éléments encore masqués de ±54px (--bd-from-x) hors de
     l'écran. Sur mobile (viewport étroit), ces éléments dépassent la largeur et
     créent un scroll horizontal -> le navigateur dézoome la page et le rendu
     paraît étriqué. `overflow-x: clip` contient ces translations sans créer de
     conteneur de scroll (préserve le scroll vertical et les sticky). Spécifique
     à l'accueil car tout le système de motion est scopé à .ed-home. */
  overflow-x: clip;
}

/* Override body fond pour scope page accueil */
body:has(.ed-home) {
  background: var(--ed-paper, #FBFAF6) !important;
}

.ed-home a { color: inherit; text-decoration: none; }
.ed-home img { display: block; max-width: 100%; }
.ed-home *,
.ed-home *::before,
.ed-home *::after { box-sizing: border-box; }

/* ─── Container ─── */
.ed-home__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.ed-home__container--narrow { max-width: 880px; }
.ed-home__container--hero   { max-width: 1280px; }

/* ─── Atomes typographiques ─── */
.ed-eyebrow {
  display: inline-block;
  font-family: var(--ed-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ed-ink2);
}

.ed-home h1, .ed-home h2, .ed-home h3 {
  font-family: var(--ed-font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ed-ink);
  line-height: 1.1;
  margin: 0;
}

.ed-home h1 em,
.ed-home h2 em,
.ed-home h3 em {
  font-style: italic;
  font-weight: 400;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.ed-section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.ed-section-head .ed-eyebrow { margin-bottom: 18px; }
.ed-section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.ed-section-head p {
  font-size: 1rem;
  color: var(--ed-ink2);
  line-height: 1.6;
  margin: 0;
}
.ed-section-head--dark h2 { color: #fff; }
.ed-section-head--dark .ed-eyebrow { color: rgba(255, 255, 255, 0.55); }
.ed-section-head--dark p { color: rgba(255, 255, 255, 0.65); }

/* ─── Boutons ─── */
.ed-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--ed-radius-pill);
  font-family: var(--ed-font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.ed-btn:hover { transform: translateY(-1px); }
.ed-btn--primary {
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 12px 32px -16px rgba(244, 114, 182, 0.45), 0 4px 14px -6px rgba(14, 165, 233, 0.32);
}
.ed-btn--primary:hover {
  background: var(--brand-gradient-deep);
  filter: brightness(1.03);
}
.ed-btn--ghost {
  background: transparent;
  color: var(--ed-ink);
  border: 1px solid var(--ed-ink);
  box-shadow: none;
}
.ed-btn--ghost:hover { background: var(--ed-ink); color: #fff; }
.ed-btn--light {
  background: #fff;
  color: var(--ed-ink);
  box-shadow: 0 1px 0 rgba(13,18,32,.04), 0 8px 24px -12px rgba(13,18,32,.12);
}
.ed-btn .ed-arrow { width: 14px; height: 14px; }

/* ════════════════════════ HERO ════════════════════════ */
.ed-home__hero {
  padding: 80px 0 100px;
  text-align: center;
}
.ed-home__hero .ed-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ed-home__title {
  font-size: clamp(2.5rem, 7vw, 5.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 24px auto 28px;
  max-width: 1240px;
  text-wrap: balance;
}
.ed-home__lede {
  font-size: 1.125rem;
  color: var(--ed-ink2);
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto 36px;
}
.ed-home__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 64px;
}
.ed-trust-strip {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--ed-line);
  margin: 0;
  list-style: none;
}
.ed-trust-strip li {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ed-trust-strip .big {
  font-family: var(--ed-font-display);
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 400;
  color: var(--ed-ink);
}
.ed-trust-strip .lbl {
  font-size: 0.8125rem;
  color: var(--ed-ink2);
}

/* ════════════════════ HERO  VARIANTE PHOTO ════════════════════ */
/* Image studio plein cadre (voiture + personne a droite), texte cale a gauche */
.ed-home__hero--photo {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}
.ed-home__hero--photo .ed-home__hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../../img/hero-accueil.jpg') center center / cover no-repeat;
  background-image: image-set(
    url('../../img/hero-accueil.webp') type('image/webp'),
    url('../../img/hero-accueil.jpg') type('image/jpeg')
  );
}
/* Voile clair cote gauche : securise la lisibilite du texte fonce sur le degrade pastel */
.ed-home__hero--photo .ed-home__hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.30) 26%,
    rgba(255, 255, 255, 0) 52%
  );
}
.ed-home__hero--photo .ed-home__container--hero {
  position: relative;
  width: 100%;
  transform: translateX(-44px);
  text-align: left;
}
/* Colonne de texte calee a gauche, sur la zone vide du degrade */
.ed-home__hero--photo .ed-home__title {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  max-width: 640px;
  margin: 0 0 12px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
  /* Pas de "balance" : sinon la largeur du mot rotatif rééquilibre les lignes et fait
     descendre "ville" sur la 2e ligne. On veut un découpage stable en 2 blocs. */
  text-wrap: pretty;
}
.ed-home__hero--photo .ed-home__title em {
  /* En bloc : "La meilleure pour [mot]." occupe TOUJOURS sa propre ligne, donc la 1re
     phrase ("...de ta ville.") reste intacte au-dessus quel que soit le mot rotatif. */
  display: block;
  white-space: nowrap;
  /* Degrade plus profond + ombre portee douce : le mot ressort sur le sol pastel clair */
  background-image: var(--brand-gradient-deep);
  filter: drop-shadow(0 1px 1px rgba(13, 18, 32, 0.20));
}
/* Sous-titre court (7j/7 - 24h/24) */
.ed-home__hero--photo .ed-home__sub {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ed-ink2);
  margin: 0 0 28px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}
/* Barre de recherche pilule */
.ed-hero-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 540px;
  margin-top: 24px;
  padding: 9px 9px 9px 28px;
  background: #fff;
  border: 2px solid var(--ed-ink);
  border-radius: 999px;
  box-shadow: 6px 6px 0 var(--ed-ink);
}
.ed-hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0 0;
  font-family: 'Hanken Grotesk', var(--ed-font-body);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--ed-ink);
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.45);
}
.ed-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.ed-hero-proof svg {
  width: 23px;
  height: 23px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ed-hero-proof span:first-child svg { color: #0EA5E9; }
.ed-hero-proof span:nth-child(2) svg { color: #F0739B; }
.ed-hero-search__input {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Hanken Grotesk', var(--ed-font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ed-ink);
  padding: 10px 0;
}
.ed-hero-search__input::placeholder { color: #9BA0B0; }
/* Neutralise le focus-ring bleu GLOBAL (base.css : input:focus) sur le champ hero */
.ed-hero-search__input:focus { box-shadow: none; }
.ed-hero-search__btn {
  flex: 0 0 auto;
  min-width: 150px;
  min-height: 60px;
  padding: 14px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: var(--ed-ink);
  color: #fff;
  font-family: 'Hanken Grotesk', var(--ed-font-body);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ed-hero-search__btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(13, 18, 32, 0.18); }
.ed-hero-search__btn:active { transform: translateY(0); }
.ed-home__hero--photo .ed-home__lede {
  color: var(--ed-ink);
  max-width: 540px;
  margin: 0 0 28px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}
.ed-home__hero--photo .ed-home__cta-row {
  justify-content: flex-start;
  margin-bottom: 36px;
}
/* Boutons plus compacts */
.ed-home__hero--photo .ed-home__cta-row .ed-btn {
  padding: 11px 20px;
  font-size: 14px;
}
.ed-home__hero--photo .ed-home__cta-row .ed-btn .ed-arrow {
  width: 13px;
  height: 13px;
}
/* Stats sous les CTA, alignees a gauche, compactes */
.ed-home__hero--photo .ed-trust-strip {
  justify-content: flex-start;
  gap: 36px;
  max-width: 540px;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 40, 80, 0.12);
}
.ed-home__hero--photo .ed-trust-strip li {
  text-align: left;
  align-items: flex-start;
}
.ed-home__hero--photo .ed-trust-strip .big {
  font-size: 1.9rem;
}

/* ════════════════════════ POURQUOI ════════════════════════ */
.ed-home__why {
  padding: 96px 0;
  background: #fff;
  border-top: 1px solid var(--ed-line);
  border-bottom: 1px solid var(--ed-line);
}
.ed-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ed-why-card {
  padding: 32px 28px;
  border: 1px solid var(--ed-line);
  border-radius: var(--ed-radius-sm);
  background: var(--ed-paper);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.ed-why-card:hover {
  transform: translateY(-2px);
  border-color: var(--ed-accent);
  box-shadow: var(--ed-shadow-soft);
}
.ed-why-num {
  display: block;
  font-family: var(--ed-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ed-accent);
  margin-bottom: 22px;
}
.ed-why-card h3 {
  font-size: 1.625rem;
  line-height: 1.15;
  margin: 0 0 12px;
}
.ed-why-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ed-ink2);
  margin: 0;
}

/* ════════════════════════ OUTILS ════════════════════════ */
.ed-home__why--bento {
  padding: 106px 0 90px;
  background: var(--ed-paper);
  border-top: 0;
  border-bottom: 0;
}
.ed-why-bento-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 52px;
}
.ed-why-bento-head h2 {
  max-width: 680px;
  font-size: clamp(3.25rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.ed-why-bento-head h2 em {
  color: inherit;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.ed-why-bento-head span {
  margin-bottom: 14px;
  font-family: var(--ed-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: #F0739B;
  text-transform: uppercase;
  white-space: nowrap;
}
.ed-why-bento {
  display: grid;
  grid-template-columns: minmax(280px, 1.28fr) repeat(2, minmax(0, 0.92fr));
  grid-template-rows: minmax(230px, auto) minmax(230px, auto);
  gap: 22px;
}
.ed-why-bento__card {
  min-width: 0;
  border-radius: 22px;
  padding: 38px;
  overflow: hidden;
}
.ed-why-bento__card h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.15rem);
  line-height: 1.08;
  margin: 0 0 14px;
}
.ed-why-bento__card p {
  margin: 0;
  color: var(--ed-ink2);
  font-size: 1rem;
  line-height: 1.55;
}
.ed-why-bento__label {
  display: block;
  font-family: var(--ed-font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #3D4360;
  text-transform: uppercase;
}
.ed-why-bento__label--blue { color: #2A97CE; }
.ed-why-bento__big {
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  background: linear-gradient(150deg, #BFE0F4, #F6D9CF 55%, #F6CBDA);
}
.ed-why-bento__price {
  display: block;
  font-family: var(--ed-font-display);
  font-size: clamp(6rem, 10vw, 10rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--ed-ink);
}
.ed-why-bento__sub {
  margin: 18px 0 22px;
  font-family: var(--ed-font-display);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-style: italic;
  line-height: 1.05;
  color: var(--ed-ink);
}
.ed-why-bento__dark {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #171A2E;
  color: #fff;
}
.ed-why-bento__dark h3 { color: #fff; }
.ed-why-bento__dark p { color: rgba(255, 255, 255, 0.78); }
.ed-why-bento__stars {
  font-family: var(--ed-font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #F59A63;
}
.ed-why-bento__light {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--ed-line);
}
.ed-why-bento__blue {
  grid-column: 2 / span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background: #2A97CE;
  color: #fff;
}
.ed-why-bento__blue h3,
.ed-why-bento__blue h3 em {
  color: #fff;
  -webkit-text-fill-color: currentColor;
  background: none;
}
.ed-why-bento__blue p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}
.ed-why-bento__blue > strong {
  flex: 0 0 auto;
  font-family: var(--ed-font-display);
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.95;
  white-space: nowrap;
}
.ed-why-bento__trust-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.ed-why-bento__trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  font-weight: 600;
  line-height: 1.45;
}
.ed-why-bento__trust-item:first-child {
  padding-top: 0;
}
.ed-why-bento__trust-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.ed-why-bento__trust-item svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  color: rgba(255, 255, 255, 0.92);
}
.ed-why-bento__trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--ed-font-display);
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}
.ed-home__trust {
  display: none;
}

.ed-live-eyebrow {
  display: inline-block;
  font-family: var(--ed-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #F0739B;
  text-transform: uppercase;
}
.ed-live-eyebrow--light { color: rgba(255, 255, 255, 0.78); }
.ed-live-title {
  max-width: 760px;
  margin: 18px 0 46px;
  font-size: clamp(3rem, 5.8vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.ed-live-title em {
  color: inherit;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.ed-live-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 25px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.ed-live-btn:hover { transform: translateY(-2px); }
.ed-home .ed-live-btn--dark {
  background: var(--ed-ink);
  color: #fff;
}
.ed-home .ed-live-btn--dark:hover { box-shadow: 0 14px 30px rgba(13, 18, 32, 0.24); }
.ed-home .ed-live-btn--light {
  background: #fff;
  color: var(--ed-ink);
}

.ed-home__compare {
  padding: 102px 0 108px;
  background: #fff;
  border-top: 1px solid var(--ed-line);
  border-bottom: 1px solid var(--ed-line);
}
.ed-compare-cards {
  display: flex;
  align-items: stretch;
  gap: 22px;
  margin-top: 6px;
}
.ed-school-card {
  flex: 1 1 0;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--ed-line);
  border-radius: 22px;
  background: var(--ed-paper);
  box-shadow: 0 18px 44px rgba(13, 18, 32, 0.08);
}
.ed-school-card:first-child { transform: rotate(-1deg) translateY(16px); }
.ed-school-card:last-child { transform: rotate(1deg) translateY(24px); }
.ed-school-card--best {
  position: relative;
  min-height: 360px;
  background: #fff;
  border: 2px solid var(--ed-ink);
  box-shadow: 8px 8px 0 var(--ed-ink);
}
.ed-school-badge {
  display: inline-flex;
  width: max-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #DCFCE7;
  color: #047857;
  font-family: var(--ed-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ed-school-card h3 {
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  line-height: 1.05;
  margin: 0 0 10px;
}
.ed-school-meta {
  margin: 0 0 20px;
  color: #6A7080;
  font-size: 13.5px;
}
.ed-school-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--ed-line);
  margin-top: 15px;
  padding-top: 12px;
  font-size: 14px;
}
.ed-school-row span { color: #6A7080; }
.ed-school-row strong { font-weight: 800; }
.ed-school-row__good { color: #1B8A55; }
.ed-school-link {
  width: 100%;
  margin-top: 20px;
}
.ed-compare-cta { margin-top: 56px; }

.ed-home__budget {
  padding: 100px 0;
  background: #171A2E;
  color: #fff;
}
.ed-budget-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  gap: 84px;
  align-items: center;
}
.ed-budget-copy {
  max-width: 820px;
}
.ed-home__budget h2 {
  margin: 18px 0 20px;
  max-width: 790px;
  font-size: clamp(3rem, 5.4vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: #fff;
}
.ed-home__budget h2 em {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ed-home__budget p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}
.ed-budget-factors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 36px;
}
.ed-budget-factors span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 750;
}
.ed-budget-factors span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--brand-gradient);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.46);
}
.ed-budget-estimate {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 52px;
}
.ed-budget-estimate > span {
  display: block;
  font-family: var(--ed-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.ed-budget-estimate > strong {
  display: block;
  margin: 14px 0 14px;
  font-family: var(--ed-font-display);
  font-size: clamp(3.4rem, 5.5vw, 5.6rem);
  font-weight: 400;
  line-height: 0.98;
  color: #fff;
}
.ed-budget-estimate p {
  max-width: 430px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.98rem;
}
.ed-budget-checks {
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.ed-budget-checks li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  font-weight: 650;
}
.ed-budget-checks li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 7px;
  height: 13px;
  border-right: 2px solid #38BDF8;
  border-bottom: 2px solid #38BDF8;
  transform: rotate(45deg);
}

.ed-home__steps {
  padding: 104px 0;
  background: var(--ed-paper);
}
.ed-steps-list {
  margin-top: 24px;
}
.ed-step-row {
  display: grid;
  grid-template-columns: 170px minmax(220px, 0.7fr) 1fr;
  gap: 32px;
  align-items: baseline;
  border-top: 2px solid var(--ed-ink);
  padding: 32px 0;
}
.ed-step-row:last-child { border-bottom: 2px solid var(--ed-ink); }
.ed-step-num {
  font-family: var(--ed-font-display);
  font-size: clamp(4.4rem, 8vw, 7rem);
  font-style: italic;
  line-height: 0.82;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ed-step-row h3 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  line-height: 1;
}
.ed-step-row p {
  margin: 0;
  color: var(--ed-ink2);
  font-size: 1rem;
}

.ed-home__pro-strip {
  padding: 70px 0;
  background: #2A97CE;
  color: #fff;
}
.ed-pro-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}
.ed-pro-strip__inner h2 {
  max-width: 820px;
  margin: 16px 0 14px;
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.ed-pro-strip__inner h2 em {
  color: #fff;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.ed-pro-strip__inner p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

/* CRÉATEURS DE CONTENU (bande discrète, activée au jour J via CREATEURS_PUBLIC_ENABLED) */
.ed-home__createurs {
  padding: 56px 0;
  background: var(--ed-paper);
}
.ed-createurs-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 30px 36px;
  border: 1px solid var(--ed-line);
  border-radius: var(--ed-radius-card);
  background: var(--ed-paper-card);
  box-shadow: var(--ed-shadow-soft);
}
.ed-createurs-strip__text { max-width: 720px; }
.ed-createurs-strip__title {
  margin: 14px 0 10px;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ed-ink);
}
.ed-createurs-strip__title em {
  color: inherit;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.ed-createurs-strip__sub {
  margin: 0;
  color: var(--ed-ink2);
  font-weight: 500;
}
.ed-createurs-strip__cta { flex-shrink: 0; }

/* Clin d'oeil au design créateurs 1A (holo) : discret, l'ADN éditorial de la
   home est conservé (pas d'import du système candy, juste un signal de couleur). */
@keyframes ed-createurs-holo {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.ed-home__createurs .ed-live-eyebrow {
  background: linear-gradient(110deg, #6a3df0, #19c6d8, #ff2d7e, #6a3df0);
  background-size: 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: ed-createurs-holo 8s linear infinite;
}
.ed-home__createurs .ed-createurs-strip {
  position: relative;
  overflow: hidden;
}
.ed-home__createurs .ed-createurs-strip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #6a3df0, #19c6d8, #8fd400, #ffb02e, #ff2d7e);
}

@media (max-width: 768px) {
  .ed-home__createurs { padding: 40px 0; }
  .ed-createurs-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 22px;
  }
}

/* OUTILS */
.ed-home__tools { padding: 100px 0; }
.ed-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.ed-tool-card {
  position: relative;
  padding: 36px;
  border: 1px solid var(--ed-line);
  border-radius: var(--ed-radius-card);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ed-tool-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ed-shadow-card);
}
.ed-tool-card::before {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--ed-accent-tint);
  pointer-events: none;
}
.ed-tool-icon {
  position: relative;
  width: 56px; height: 56px;
  border-radius: var(--ed-radius-sm);
  background: var(--ed-ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ed-tool-icon svg { width: 26px; height: 26px; }
.ed-tool-tag {
  font-family: var(--ed-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ed-accent);
  text-transform: uppercase;
}
.ed-tool-card h3 {
  font-size: 2rem;
  line-height: 1.1;
  margin: 0;
}
.ed-tool-card p {
  font-size: 0.9375rem;
  color: var(--ed-ink2);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.ed-tool-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ed-accent);
}
.ed-tool-link:hover { color: var(--ed-accent-deep); }
.ed-tool-link svg { width: 14px; height: 14px; }

/* ─── Variante immersive : image habitacle + coucher de soleil ───
   Section plein cadre, titre en haut sur le ciel clair, cartes en verre
   depoli en bas, posees sur les deux sieges. Desktop pour l'instant. */
.ed-home__tools--immersive {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  display: flex;
  overflow: hidden;
}
.ed-home__tools--immersive .ed-tools-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../../img/outils-voitures.jpg') center top / cover no-repeat;
}
.ed-home__tools--immersive .ed-tools-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(13, 18, 32, 0) 38%,
    rgba(13, 18, 32, 0.10) 72%,
    rgba(13, 18, 32, 0.22) 100%
  );
}
.ed-tools-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 132px;
  padding-bottom: 72px;
}
.ed-home__tools--immersive .ed-section-head { margin-bottom: 0; }
.ed-home__tools--immersive .ed-tools-grid { margin-top: 0; }
/* Halo blanc discret : garde le titre fonce lisible meme s'il croise le
   retroviseur ou une zone plus sombre du ciel */
.ed-home__tools--immersive .ed-section-head h2,
.ed-home__tools--immersive .ed-section-head p {
  text-shadow: 0 1px 14px rgba(255, 255, 255, 0.5);
}
/* Cartes en verre depoli : ressortent sur le cuir clair des sieges */
.ed-tool-card--glass {
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  backdrop-filter: saturate(150%) blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 2px 6px rgba(13, 18, 32, 0.10),
    0 30px 60px -28px rgba(13, 18, 32, 0.55);
}
.ed-tool-card--glass::before { display: none; }

/* ════════════════════════ COMMENT (bandeau ink) ════════════════════════ */
.ed-home__how {
  padding: 100px 0;
  background: var(--ed-ink);
  color: #fff;
}
.ed-home__how .ed-section-head { margin-bottom: 64px; }
.ed-home__how .ed-section-head h2 { color: #fff; }
.ed-home__how .ed-section-head p { color: rgba(255,255,255,0.65); }
.ed-home__how .ed-section-head .ed-eyebrow { color: rgba(255,255,255,0.55); }

.ed-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.ed-how-step {
  padding: 36px 28px;
  background: var(--ed-ink);
  min-height: 220px;
}
.ed-how-num {
  display: block;
  font-family: var(--ed-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ed-accent);
  margin-bottom: 22px;
}
.ed-how-step h3 {
  font-size: 2rem;
  line-height: 1.1;
  margin: 0 0 14px;
  color: #fff;
}
.ed-how-step p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  margin: 0;
}

/* ════════════════════════ AE PRO ════════════════════════ */
.ed-home__pro {
  padding: 100px 0;
  background: var(--ed-paper2);
}
.ed-pro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.ed-pro-text h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.01em;
  margin: 20px 0 24px;
  line-height: 1.1;
}
.ed-pro-text > .ed-eyebrow {
  margin-bottom: 4px;
}
.ed-pro-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ed-ink2);
  margin-bottom: 28px;
}
.ed-pro-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}
.ed-pro-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.875rem;
  color: var(--ed-ink);
}
.ed-pro-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ed-accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ed-pro-check svg { width: 12px; height: 12px; stroke-width: 2.6; }

.ed-pro-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ed-accent) 0%, var(--ed-accent-deep) 100%);
  padding: 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 30px 60px -30px rgba(31, 58, 224, 0.5);
}
.ed-pro-card-badge {
  position: absolute;
  top: 32px; right: 32px;
  font-family: var(--ed-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.7;
}
.ed-pro-card-mark {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ed-font-display);
  font-size: 26px;
  margin-bottom: 6px;
}
.ed-pro-card h3 {
  font-size: 2.25rem;
  line-height: 1.1;
  margin: 20px 0 8px;
  color: #fff;
}
.ed-pro-card p {
  font-size: 0.875rem;
  opacity: 0.85;
  margin: 0;
  line-height: 1.45;
}

/* ════════════════════════ FAQ ════════════════════════ */
.ed-home__faq {
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid var(--ed-line);
}
.ed-home__faq .ed-section-head { margin-bottom: 56px; }
.ed-home__faq .ed-section-head h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.ed-faq-list { border-top: 1px solid var(--ed-line); }
.ed-faq-item {
  border-bottom: 1px solid var(--ed-line);
  padding: 22px 0;
}
.ed-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ed-ink);
  transition: color 0.2s ease;
}
.ed-faq-item summary::-webkit-details-marker { display: none; }
.ed-faq-item summary:hover { color: var(--ed-accent); }
.ed-faq-item summary > span:first-child {
  flex: 1;
  padding-right: 16px;
  text-wrap: pretty;
}
.ed-faq-icon {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  color: var(--ed-accent);
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.25s ease;
}
.ed-faq-item[open] .ed-faq-icon { transform: rotate(45deg); }
.ed-faq-body {
  padding: 14px 32px 4px 0;
  max-width: 720px;
}
.ed-faq-body p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ed-ink2);
  margin: 0 0 12px;
}
.ed-faq-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ed-accent);
}
.ed-faq-link:hover { text-decoration: underline; }
.ed-faq-foot {
  text-align: center;
  margin-top: 48px;
}

/* ════════════════════════ RESPONSIVE ════════════════════════ */

@media (max-width: 1024px) {
  .ed-home__container { padding: 0 28px; }
  .ed-why-grid { grid-template-columns: repeat(2, 1fr); }
  .ed-why-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }
  .ed-why-bento__big {
    grid-row: auto;
    min-height: 430px;
  }
  .ed-why-bento__blue { grid-column: span 2; }
  .ed-budget-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ed-budget-factors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ed-budget-estimate {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 40px 0 0;
  }
  .ed-step-row {
    grid-template-columns: 140px minmax(220px, 0.8fr) 1fr;
    gap: 24px;
  }
  .ed-pro-strip__inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .ed-how-grid { grid-template-columns: repeat(2, 1fr); }
  .ed-tools-grid { grid-template-columns: 1fr; }
  .ed-pro-grid { grid-template-columns: 1fr; gap: 48px; }
  .ed-pro-card { aspect-ratio: 16 / 10; }
  .ed-trust-strip { gap: 36px; }
}

@media (max-width: 768px) {
  .ed-home__container { padding: 0 20px; }
  .ed-home__hero { padding: 56px 0 72px; }
  .ed-home__title { font-size: clamp(2.25rem, 9vw, 3.5rem); margin: 18px auto 22px; }
  .ed-home__lede { font-size: 1rem; margin-bottom: 28px; }
  .ed-home__cta-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 48px;
  }
  .ed-home__cta-row .ed-btn {
    justify-content: center;
    width: auto;
    max-width: 280px;
    padding: 11px 20px;
    font-size: 13px;
  }
  .ed-home__cta-row .ed-btn .ed-arrow { width: 13px; height: 13px; }
  .ed-trust-strip {
    gap: 24px 32px;
    padding-top: 28px;
  }
  .ed-trust-strip .big { font-size: 1.75rem; }
  .ed-section-head { margin-bottom: 40px; }
  .ed-section-head h2 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .ed-home__why,
  .ed-home__tools,
  .ed-home__how,
  .ed-home__pro,
  .ed-home__faq { padding: 72px 0; }
  .ed-home__why--bento { padding: 72px 0; }
  .ed-why-bento-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 34px;
  }
  .ed-why-bento-head h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }
  .ed-why-bento-head span {
    order: -1;
    margin-bottom: 0;
    font-size: 10px;
    letter-spacing: 0.2em;
  }
  .ed-why-bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ed-why-bento__card {
    padding: 28px;
    border-radius: 20px;
  }
  .ed-why-bento__big {
    min-height: 420px;
  }
  .ed-why-bento__blue {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .ed-why-bento__trust-list {
    grid-template-columns: 1fr;
  }
  .ed-why-bento__trust-item {
    gap: 12px;
    padding: 14px 0;
    font-size: 0.88rem;
    align-items: flex-start;
  }
  .ed-why-bento__trust-item strong {
    font-size: 1.35rem;
  }
  .ed-why-bento__blue > strong {
    font-size: 3.6rem;
  }
  .ed-live-title {
    font-size: clamp(2.05rem, 9.8vw, 4rem);
    margin-bottom: 34px;
  }
  .ed-compare-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ed-school-card,
  .ed-school-card:first-child,
  .ed-school-card:last-child {
    transform: none;
  }
  .ed-school-card--best {
    min-height: 0;
    box-shadow: 7px 7px 0 var(--ed-ink);
  }
  .ed-home__budget,
  .ed-home__steps,
  .ed-home__pro-strip {
    padding: 72px 0;
  }
  .ed-home__budget h2 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }
  .ed-step-row {
    grid-template-columns: 82px 1fr;
    gap: 18px;
    padding: 24px 0;
  }
  .ed-step-row p {
    grid-column: 2;
    font-size: 0.9rem;
  }
  .ed-step-num {
    font-size: 4rem;
  }
  .ed-step-row h3 {
    font-size: 1.9rem;
  }
  .ed-pro-strip__inner h2 {
    font-size: clamp(2.3rem, 10vw, 3.4rem);
  }
  .ed-why-grid { grid-template-columns: 1fr; gap: 16px; }
  .ed-why-card { padding: 24px 22px; }
  .ed-why-card h3 { font-size: 1.375rem; }
  .ed-tool-card { padding: 28px; min-height: auto; }
  .ed-tool-card h3 { font-size: 1.625rem; }
  .ed-how-grid { grid-template-columns: 1fr; }
  .ed-how-step { padding: 28px 24px; min-height: 0; }
  .ed-how-step h3 { font-size: 1.625rem; }
  .ed-pro-text h2 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .ed-pro-card { padding: 28px; }
  .ed-pro-card h3 { font-size: 1.625rem; }
}

@media (max-width: 480px) {
  .ed-home__container { padding: 0 16px; }
  .ed-trust-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .ed-why-bento-head h2 { font-size: clamp(2.4rem, 13vw, 3.35rem); }
  .ed-why-bento__card { padding: 24px; }
  .ed-why-bento__big { min-height: 390px; }
  .ed-why-bento__price { font-size: clamp(5rem, 27vw, 7rem); }
  .ed-why-bento__sub { font-size: 1.7rem; }
  .ed-why-bento__blue > strong { font-size: 3rem; }
  .ed-school-card { padding: 24px; }
  .ed-budget-factors {
    grid-template-columns: 1fr;
  }
  .ed-budget-estimate > strong {
    font-size: clamp(3.35rem, 17vw, 4.6rem);
  }
  .ed-pro-strip__inner .ed-live-btn {
    width: 100%;
  }
  .ed-faq-item summary { font-size: 1rem; }
}

/* ─── HERO photo : version mobile (image verticale complete, texte sur le vide du bas) ─── */
@media (max-width: 768px) {
  /* Le hero remplit toute la premiere section (plein ecran, header sticky deduit) */
  .ed-home__hero--photo {
    position: relative;
    display: block;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
  }
  .ed-home__hero--photo .ed-home__hero-media {
    inset: 0;
    z-index: 0;
    background-image: url('../../img/hero-accueil-mobile.jpg');
    background-image: image-set(
      url('../../img/hero-accueil-mobile.webp') type('image/webp'),
      url('../../img/hero-accueil-mobile.jpg') type('image/jpeg')
    );
    background-position: center top;
    background-size: cover; /* remplit l'ecran, ne rogne qu'un fin liseré des cotes vides */
  }
  /* Zone basse floutee (backdrop-filter) + leger voile blanc : met le texte en avant.
     Fondu progressif en haut (mask) pour eviter tout bord net net->flou. */
  .ed-home__hero--photo .ed-home__hero-scrim {
    display: block;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56%;
    z-index: 1;
    background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.48) 0%,
      rgba(255, 255, 255, 0.32) 45%,
      rgba(255, 255, 255, 0.14) 78%,
      rgba(255, 255, 255, 0) 100%
    );
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    -webkit-mask-image: linear-gradient(to top, #000 66%, transparent 100%);
    mask-image: linear-gradient(to top, #000 66%, transparent 100%);
  }
  /* Le texte se cale dans le sol, juste sous la voiture, centre et equilibre */
  .ed-home__hero--photo .ed-home__container--hero {
    position: absolute;
    left: 0;
    right: 0;
    top: 58%;
    bottom: 0;
    z-index: 2;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px 12px;
  }
  /* Eyebrow masque sur mobile : on economise de la hauteur sur le sol de l'image */
  .ed-home__hero--photo .ed-eyebrow { display: none; }
  .ed-home__hero--photo .ed-home__title {
    font-size: clamp(1.75rem, 6.2vw, 2.15rem);
    line-height: 1.1;
    max-width: none;
    margin: 0 0 8px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
  }
  /* Sur mobile, on laisse l'expression se couper pour eviter tout debordement */
  .ed-home__hero--photo .ed-home__title em {
    white-space: normal;
  }
  .ed-home__hero--photo .ed-home__sub {
    margin-bottom: 20px;
  }
  /* Barre centree et un peu resserree pour l'equilibre */
  .ed-hero-search {
    max-width: 400px;
    margin: 0 auto;
    padding: 7px 7px 7px 18px;
    box-shadow: 5px 5px 0 var(--ed-ink);
  }
  .ed-hero-search__input {
    font-size: 0.95rem;
  }
  .ed-hero-search__btn {
    min-width: 112px;
    min-height: 42px;
    padding: 11px 18px;
    font-size: 0.8125rem;
  }
  .ed-hero-proof {
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }
  .ed-hero-proof svg {
    width: 19px;
    height: 19px;
  }
  .ed-home__hero--photo .ed-home__lede {
    max-width: none;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0 0 14px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
  }
  /* Boutons compacts sur une seule ligne pour economiser la hauteur */
  .ed-home__hero--photo .ed-home__cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
  }
  .ed-home__hero--photo .ed-home__cta-row .ed-btn {
    width: auto;
    max-width: none;
    padding: 10px 16px;
    font-size: 13px;
  }
  .ed-home__hero--photo .ed-trust-strip {
    max-width: none;
    gap: 26px;
    padding-top: 12px;
  }
  .ed-home__hero--photo .ed-trust-strip .big { font-size: 1.5rem; }
  .ed-home__hero--photo .ed-trust-strip .lbl { font-size: 0.72rem; }
}

/* ─── Badge "Bientôt disponible" ───
   Pastille verte arrondie discrète, accolée à un h3 pour signaler une
   fonctionnalité à venir (variante --dark pour les sections fond foncé). */
.ed-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 10px;
  padding: 3px 9px 3px 8px;
  border-radius: 999px;
  background: #DCFCE7;
  color: #047857;
  font-family: var(--ed-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  vertical-align: middle;
  white-space: nowrap;
}
.ed-soon-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: edSoonPulse 2.2s ease-in-out infinite;
}
.ed-soon-badge--dark {
  background: rgba(16, 185, 129, 0.15);
  color: #6EE7B7;
}
@keyframes edSoonPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
}

/* ════════════ HERO — titre + bande de réassurance discrète ════════════ */
/* Le titre du hero porte une phrase de 4 mots dans le <em> : on autorise le retour
   a la ligne (override du nowrap defini plus haut pour l'ancien mot unique). */
.ed-home__hero--photo .ed-home__title em { white-space: normal; }

/* Bande de reassurance discrete, sous le hero, sur le fond papier */
.ed-home__trust {
  border-top: 1px solid var(--ed-line-soft);
  border-bottom: 1px solid var(--ed-line-soft);
  background: var(--ed-paper);
}
.ed-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.ed-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--ed-ink2);
}
.ed-trust-item__icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--ed-accent-deep);
}
@media (max-width: 760px) {
  .ed-trust-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* ════════════════════════ MOTION EDITORIAL ════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .bd-motion .ed-home .bd-reveal {
    opacity: 0;
    transform: translate3d(var(--bd-from-x, 0px), var(--bd-from-y, 28px), 0) scale(0.985);
    filter: blur(6px);
    transition:
      opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.72s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.72s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--bd-delay, 0ms);
    will-change: opacity, transform, filter;
  }

  .bd-motion .ed-home .bd-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  .bd-motion .ed-home__hero--photo .ed-home__hero-media,
  .bd-motion .ae-landing__hero--visual .ae-landing__hero-media img {
    --bd-hero-scale: 1.035;
    transform: translate3d(0, var(--bd-hero-y, 0px), 0) scale(var(--bd-hero-scale));
    transform-origin: center;
    transition: transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }

  .bd-motion .ed-home__hero--photo.is-ready .ed-home__hero-media,
  .bd-motion .ae-landing__hero--visual.is-ready .ae-landing__hero-media img {
    --bd-hero-scale: 1;
  }

  .bd-motion .ed-home__hero--photo .ed-home__container--hero > *,
  .bd-motion .ae-landing__hero--visual .ae-landing__hero-text > * {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
      opacity 0.82s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.82s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }

  .bd-motion .ed-home__hero--photo.is-ready .ed-home__container--hero > *,
  .bd-motion .ae-landing__hero--visual.is-ready .ae-landing__hero-text > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .bd-motion .ed-home__hero--photo.is-ready .ed-home__container--hero > :nth-child(1),
  .bd-motion .ae-landing__hero--visual.is-ready .ae-landing__hero-text > :nth-child(1) {
    transition-delay: 0.12s;
  }

  .bd-motion .ed-home__hero--photo.is-ready .ed-home__container--hero > :nth-child(2),
  .bd-motion .ae-landing__hero--visual.is-ready .ae-landing__hero-text > :nth-child(2) {
    transition-delay: 0.24s;
  }

  .bd-motion .ed-home__hero--photo.is-ready .ed-home__container--hero > :nth-child(3),
  .bd-motion .ae-landing__hero--visual.is-ready .ae-landing__hero-text > :nth-child(3) {
    transition-delay: 0.34s;
  }

  .bd-motion .ed-home__hero--photo.is-ready .ed-home__container--hero > :nth-child(4),
  .bd-motion .ae-landing__hero--visual.is-ready .ae-landing__hero-text > :nth-child(4) {
    transition-delay: 0.44s;
  }

  .bd-motion .ae-landing__hero--visual.is-ready .ae-landing__hero-text > :nth-child(5) {
    transition-delay: 0.54s;
  }

  .bd-motion .ed-home .bd-tilt-card {
    --bd-tilt-x: 0deg;
    --bd-tilt-y: 0deg;
    --bd-card-lift: 0px;
    transform:
      perspective(900px)
      rotateX(var(--bd-tilt-x))
      rotateY(var(--bd-tilt-y))
      translate3d(0, var(--bd-card-lift), 0);
    transform-style: preserve-3d;
    transition:
      transform 0.18s ease,
      box-shadow 0.18s ease,
      border-color 0.18s ease,
      background 0.18s ease;
    will-change: transform;
  }

  .bd-motion .ed-home .bd-tilt-card:hover {
    --bd-card-lift: -4px;
  }

  .bd-motion .ed-home .bd-tilt-card.bd-reveal:not(.is-visible) {
    transform:
      perspective(900px)
      rotateX(0deg)
      rotateY(0deg)
      translate3d(var(--bd-from-x, 0px), var(--bd-from-y, 28px), 0)
      scale(0.985);
  }

  .bd-motion .ed-hero-search {
    transition:
      transform 0.22s ease,
      box-shadow 0.22s ease,
      border-color 0.22s ease;
  }

  .bd-motion .ed-hero-search:focus-within {
    transform: translate3d(0, -2px, 0);
    border-color: #0D1220;
    box-shadow: 8px 8px 0 #0D1220, 0 18px 44px -28px rgba(13, 18, 32, 0.45);
  }

  .bd-motion .ed-live-btn,
  .bd-motion .ed-btn,
  .bd-motion .ed-hero-search__btn {
    transition:
      transform 0.18s ease,
      box-shadow 0.18s ease,
      background 0.18s ease,
      color 0.18s ease,
      filter 0.18s ease;
  }

  .bd-motion .ed-live-btn:hover,
  .bd-motion .ed-btn:hover,
  .bd-motion .ed-hero-search__btn:hover {
    transform: translate3d(0, -2px, 0);
  }

  .bd-motion .ed-live-btn:active,
  .bd-motion .ed-btn:active,
  .bd-motion .ed-hero-search__btn:active {
    transform: translate3d(0, 0, 0) scale(0.98);
  }

  /* Mots rotatifs (kinetic typography) du titre hero */
  .ed-rotator {
    display: inline-block;
    width: var(--ed-rotator-w, auto);
    white-space: nowrap;
    text-align: left;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .ed-rotator__word {
    display: inline-block;
    /* L'inline-block ne reçoit pas le background-clip:text du <em> parent :
       on lui redonne son propre dégradé, sinon le mot devient transparent. */
    background-image: var(--brand-gradient-deep);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition:
      transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
  }
  .ed-rotator__word.is-leaving {
    transform: translateY(-0.5em);
    opacity: 0;
  }
  .ed-rotator__word.is-entering {
    transform: translateY(0.5em);
    opacity: 0;
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ed-home *,
  .ed-home *::before,
  .ed-home *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION « Demande ta ville » + board des villes les plus demandées
   Reprend strictement le design system éditorial (.ed-* tokens). Aucun inline.
   ═══════════════════════════════════════════════════════════════════════════ */
.ed-home__demande {
  padding: 100px 0;
  background: var(--ed-paper2);
  border-top: 1px solid var(--ed-line);
  border-bottom: 1px solid var(--ed-line);
}
.ed-demand-lede {
  max-width: 680px;
  margin: 6px 0 46px;
  font-family: var(--ed-font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ed-ink2);
}
.ed-demand-lede strong { color: var(--ed-ink); font-weight: 700; }

.ed-demand-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

/* Honeypot (la home ne charge pas auth-editorial.css : on le masque ici) */
.ed-home .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Carte formulaire (style signature : bord encre + ombre portée) ── */
.ed-demand-form {
  position: relative;
  padding: 30px;
  background: #fff;
  border: 2px solid var(--ed-ink);
  border-radius: 18px;
  box-shadow: 8px 8px 0 var(--ed-ink);
}
.ed-demand-field {
  position: relative;
  margin-bottom: 20px;
}
.ed-demand-field:last-of-type { margin-bottom: 0; }
.ed-demand-label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--ed-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ed-ink);
}
.ed-demand-hint {
  margin-left: 6px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #9BA0B0;
}
.ed-demand-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--ed-line);
  border-radius: 12px;
  background: #fff;
  font-family: var(--ed-font-body);
  font-size: 1rem;
  color: var(--ed-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.ed-demand-input::placeholder { color: #9BA0B0; }
.ed-demand-input:focus {
  outline: none;
  border-color: var(--ed-ink);
  box-shadow: 0 0 0 3px var(--ed-accent-tint);
}
.ed-demand-microcopy {
  margin: 8px 0 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: #6A7080;
}
.ed-demand-submit {
  width: 100%;
  margin-top: 22px;
}
.ed-demand-feedback {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.45;
}
.ed-demand-feedback.is-ok   { background: #DCFCE7; color: #166534; border: 1px solid #A7F3CF; }
.ed-demand-feedback.is-info { background: var(--ed-accent-tint); color: var(--ed-accent-deep); border: 1px solid rgba(14,165,233,0.25); }
.ed-demand-feedback.is-err  { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }
.ed-demand-feedback a { color: inherit; font-weight: 700; text-decoration: underline; }

/* ── Autocomplete (réutilise le patron du simulateur) ── */
.ed-ac-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 30;
  max-height: 280px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--ed-line);
  border-radius: 14px;
  box-shadow: var(--ed-shadow-card);
}
.ed-ac-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--ed-line-soft);
}
.ed-ac-item:last-child { border-bottom: none; }
.ed-ac-item:hover,
.ed-ac-item.is-active { background: var(--ed-accent-tint); }
.ed-ac-item__main { min-width: 0; }
.ed-ac-item__name { font-weight: 600; color: var(--ed-ink); font-size: 14.5px; }
.ed-ac-item__cp { font-size: 12px; color: #9BA0B0; }
.ed-ac-item__idf {
  flex: 0 0 auto;
  font-family: var(--ed-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ed-accent-deep);
  background: var(--ed-accent-tint);
  padding: 3px 7px;
  border-radius: 999px;
}
.ed-ac-empty {
  padding: 12px 14px;
  font-size: 13px;
  color: #9BA0B0;
}

/* ── Carte board (navy, contraste avec le formulaire blanc) ── */
.ed-demand-board {
  padding: 30px;
  background: var(--ed-ink);
  border-radius: 18px;
  color: #fff;
}
.ed-board-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-family: var(--ed-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7CD4FF;
}
.ed-board-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #34D399;
  box-shadow: 0 0 0 0 rgba(52,211,153,0.6);
  animation: edBoardPulse 2.4s ease-out infinite;
}
@keyframes edBoardPulse {
  0%   { box-shadow: 0 0 0 0 rgba(52,211,153,0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}
.ed-board-title {
  margin: 8px 0 18px;
  font-family: var(--ed-font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.ed-board-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ed-board-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.ed-board-rank {
  font-family: var(--ed-font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.ed-board-city {
  min-width: 0;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}
.ed-board-city small { margin-left: 5px; font-weight: 400; color: rgba(255,255,255,0.5); }
.ed-board-count {
  font-family: var(--ed-font-mono);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.ed-board-count--num { background: rgba(124,212,255,0.16); color: #7CD4FF; }
.ed-board-count--new { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.72); }
.ed-board-vote {
  border: none;
  background: #fff;
  color: var(--ed-ink);
  font-family: var(--ed-font-body);
  font-weight: 800;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
}
.ed-board-vote:hover { transform: translateY(-1px); }
.ed-board-vote[disabled] { opacity: 0.55; cursor: default; transform: none; }
.ed-board-empty {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
}

/* ── Bandeau « demandées, puis livrées » : preuve publique qu'on tient la promesse ── */
.ed-delivered {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--ed-line);
}
.ed-delivered-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px;
  font-family: var(--ed-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #166534;
}
.ed-delivered-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #34D399;
}
.ed-delivered-note {
  max-width: 680px;
  margin: 0 0 18px;
  font-family: var(--ed-font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ed-ink2);
}
.ed-delivered-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ed-delivered-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--ed-line);
  border-radius: 999px;
  font-family: var(--ed-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ed-ink);
}
.ed-delivered-chip::before {
  content: "\2713";
  font-size: 12px;
  font-weight: 800;
  color: #166534;
}
.ed-delivered-chip small { font-weight: 400; color: #9BA0B0; }
.ed-delivered-chip--more { font-weight: 700; color: var(--ed-ink2); }
.ed-delivered-chip--more::before { content: none; }

@media (max-width: 860px) {
  .ed-demand-grid { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 768px) {
  .ed-home__demande { padding: 72px 0; }
  .ed-demand-lede { margin: 4px 0 30px; }
  .ed-demand-form,
  .ed-demand-board { padding: 24px; }
  .ed-demand-form { box-shadow: 5px 5px 0 var(--ed-ink); }
}

/* ── Bouton « voir toutes » + modale des villes demandées ── */
.ed-board-more {
  margin-top: 18px;
  width: 100%;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-family: var(--ed-font-body);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.ed-board-more:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

.ed-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ed-modal[hidden] { display: none; }
.ed-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,18,32,0.62);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.ed-modal__panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  background: var(--ed-ink);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  overflow: hidden;
  animation: edModalIn .22s ease;
}
@keyframes edModalIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.ed-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ed-modal__title {
  margin: 0;
  font-family: var(--ed-font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.ed-modal__close {
  flex: 0 0 auto;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease;
}
.ed-modal__close:hover { background: rgba(255,255,255,0.2); }
.ed-modal__list {
  margin: 0;
  padding: 6px 24px 24px;
  overflow-y: auto;
}
.ed-modal__list .ed-board-item:first-child { border-top: none; }
body.ed-modal-open { overflow: hidden; }
