/* ═══════════════════════════════════════════════════════════════
   AUTH EDITORIAL — Tunnel inscription / réclamation / login pro
   Direction "Editorial Confiance" : magazine premium + formulaire
   administratif soigné. Restraint > intensité.
   Scope : <main class="auth-editorial"> (n'affecte pas le reste).
   Consomme les tokens --ed-* déjà définis dans accueil.css.
   ═══════════════════════════════════════════════════════════════ */

.auth-editorial {
  --ae-coral:        #FF7A55;
  --ae-coral-soft:   #FFEEE6;
  --ae-good:         #10B981;
  --ae-good-soft:    #DCFCE7;
  --ae-info:         #0EA5E9;
  --ae-info-soft:    #E0F2FE;
  --ae-danger:       #EF4444;
  --ae-danger-soft:  #FEE2E2;

  /* Gradient signature aligné sur le logo BoostDriving */
  --ae-grad: linear-gradient(120deg, #0EA5E9 0%, #FF7A55 50%, #F5C84B 100%);

  /* Spacing rythme magazine */
  --ae-gap-xs: 8px;
  --ae-gap-sm: 14px;
  --ae-gap-md: 24px;
  --ae-gap-lg: 36px;
  --ae-gap-xl: 56px;

  background: var(--ed-paper, #FBFAF6);
  color: var(--ed-ink, #0D1220);
  font-family: var(--ed-font-body, 'Inter', sans-serif);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: calc(100vh - 200px);
}

.auth-editorial *,
.auth-editorial *::before,
.auth-editorial *::after { box-sizing: border-box; }

.auth-editorial button,
.auth-editorial input,
.auth-editorial select,
.auth-editorial textarea { font-family: inherit; }

.auth-editorial input,
.auth-editorial select,
.auth-editorial textarea { outline: none; }

.auth-editorial ::selection {
  background: var(--ed-accent, #0EA5E9);
  color: #fff;
}

/* ─── Layout split-screen ─────────────────────────────────── */
.auth-editorial__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.auth-editorial__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: var(--ae-gap-xl);
  align-items: start;
}

/* ─── Colonne formulaire (gauche) ─────────────────────────── */
.auth-editorial__form-col {
  position: relative;
  background: var(--ed-paper-card, #FFFFFF);
  border: 1px solid var(--ed-line, #E6E2D7);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--ed-shadow-card, 0 18px 40px -22px rgba(13, 18, 32, 0.20));
  overflow: hidden;
}

/* Décor subtil sur la carte form */
.auth-editorial__form-col::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.auth-editorial__form-inner {
  position: relative;
}

/* ─── Head : eyebrow + titre + lede ───────────────────────── */
.auth-editorial__head {
  margin-bottom: var(--ae-gap-lg);
  animation: ae-fade-up .5s ease-out both;
}

.auth-editorial__eyebrow {
  display: inline-flex;
  font-family: var(--ed-font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ed-ink2, #3A4055);
  margin-bottom: 16px;
}

.auth-editorial__title {
  margin: 0 0 16px;
  font-family: var(--ed-font-display, 'Instrument Serif', serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ed-ink, #0D1220);
  text-wrap: balance;
}

.auth-editorial__title em {
  font-style: italic;
  background: var(--ae-grad);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-editorial__lede {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ed-ink2, #3A4055);
  margin: 0;
  max-width: 560px;
}

/* ─── Formulaire ──────────────────────────────────────────── */
.auth-editorial__form {
  display: flex;
  flex-direction: column;
  gap: var(--ae-gap-md);
  animation: ae-fade-up .5s .12s ease-out both;
}

.auth-editorial__row {
  display: grid;
  gap: var(--ae-gap-md);
}
.auth-editorial__row--2 { grid-template-columns: 1fr 1fr; }
.auth-editorial__row--3 { grid-template-columns: 2fr 1fr 1fr; }

.auth-editorial__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.auth-editorial__label {
  font-family: var(--ed-font-mono, 'Geist Mono', monospace);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ed-ink2, #3A4055);
}

.auth-editorial__label-hint {
  font-family: var(--ed-font-body, 'Inter', sans-serif);
  font-size: 11.5px;
  font-weight: 400;
  color: var(--ed-ink-muted, #9AA0B0);
  text-transform: none;
  letter-spacing: 0;
  margin-left: 6px;
}

.auth-editorial__field-hint {
  font-family: var(--ed-font-body, 'Inter', sans-serif);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ed-ink-muted, #9AA0B0);
  margin: 0;
}

.auth-editorial__input,
.auth-editorial__select,
.auth-editorial__textarea {
  font-family: var(--ed-font-body, 'Inter', sans-serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--ed-ink, #0D1220);
  background: var(--ed-paper2, #F6F4EF);
  border: 1px solid var(--ed-line, #E6E2D7);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
  width: 100%;
}

.auth-editorial__input::placeholder,
.auth-editorial__textarea::placeholder {
  color: var(--ed-ink-muted, #9AA0B0);
  font-weight: 400;
}

.auth-editorial__input:focus,
.auth-editorial__select:focus,
.auth-editorial__textarea:focus {
  border-color: var(--ed-accent, #0EA5E9);
  background: var(--ed-paper-card, #FFFFFF);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

/* ─── Jauge + règles de force du mot de passe (écrans de réclamation) ───
   Pilotage 100% par data-score (0→4) : aucune écriture de style inline.
   Aligne le comportement sur la création de fiche (même barème, mêmes règles). */
.auth-editorial__pwd-meter {
  height: 5px;
  background: var(--ed-line, #E6E2D7);
  border-radius: 999px;
  margin-top: 10px;
  overflow: hidden;
}
.auth-editorial__pwd-meter-bar {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: transparent;
  transition: width .2s ease, background-color .2s ease;
}
.auth-editorial__pwd-meter-bar[data-score="1"] { width: 25%;  background: #DC2626; }
.auth-editorial__pwd-meter-bar[data-score="2"] { width: 50%;  background: #F59E0B; }
.auth-editorial__pwd-meter-bar[data-score="3"] { width: 75%;  background: #0EA5E9; }
.auth-editorial__pwd-meter-bar[data-score="4"] { width: 100%; background: #16A34A; }

.auth-editorial__pwd-rules {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  font-family: var(--ed-font-body, 'Inter', sans-serif);
  font-size: 12px;
  color: var(--ed-ink-muted, #9AA0B0);
}
.auth-editorial__pwd-rules li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.auth-editorial__pwd-rules li::before {
  content: '\2022';
  font-weight: 700;
  color: var(--ed-ink-muted, #9AA0B0);
}
.auth-editorial__pwd-rules li.is-ok {
  color: var(--ed-ink2, #3A4055);
}
.auth-editorial__pwd-rules li.is-ok::before {
  content: '\2713';
  color: #16A34A;
}

.auth-editorial__field--error .auth-editorial__input,
.auth-editorial__field--error .auth-editorial__select,
.auth-editorial__field--error .auth-editorial__textarea {
  border-color: var(--ae-coral);
  background: var(--ae-coral-soft);
}
.auth-editorial__field--error .auth-editorial__input:focus,
.auth-editorial__field--error .auth-editorial__select:focus,
.auth-editorial__field--error .auth-editorial__textarea:focus {
  box-shadow: 0 0 0 4px rgba(255, 122, 85, 0.18);
}

.auth-editorial__field-error {
  font-family: var(--ed-font-body, 'Inter', sans-serif);
  font-size: 12.5px;
  color: var(--ae-coral);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.auth-editorial__textarea {
  resize: vertical;
  min-height: 96px;
}

/* ─── Boutons CTA ─────────────────────────────────────────── */
.auth-editorial__actions {
  display: flex;
  align-items: center;
  gap: var(--ae-gap-sm);
  margin-top: 8px;
  flex-wrap: wrap;
}

.auth-editorial__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ed-font-body, 'Inter', sans-serif);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .18s ease;
  text-decoration: none;
}
.auth-editorial__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.30);
}

.auth-editorial__btn--primary {
  background: var(--ed-ink, #0D1220);
  color: #fff;
  border-color: var(--ed-ink, #0D1220);
}
.auth-editorial__btn--primary:hover {
  background: #1A2138;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -10px rgba(13, 18, 32, 0.35);
}

.auth-editorial__btn--ghost {
  background: transparent;
  color: var(--ed-ink, #0D1220);
  border-color: var(--ed-line, #E6E2D7);
}
.auth-editorial__btn--ghost:hover {
  background: var(--ed-paper2, #F6F4EF);
  border-color: var(--ed-ink2, #3A4055);
}

.auth-editorial__btn--lg {
  padding: 14px 28px;
  font-size: 15.5px;
}

/* ─── Note légale sous le form ────────────────────────────── */
.auth-editorial__legal {
  margin-top: var(--ae-gap-md);
  font-size: 12.5px;
  color: var(--ed-ink-muted, #9AA0B0);
  line-height: 1.55;
}
.auth-editorial__legal a {
  color: var(--ed-ink2, #3A4055);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* ─── Lien switch (vers login / vers inscription) ─────────── */
.auth-editorial__switch {
  margin-top: var(--ae-gap-md);
  padding-top: var(--ae-gap-md);
  border-top: 1px solid var(--ed-line, #E6E2D7);
  font-size: 14px;
  color: var(--ed-ink2, #3A4055);
}
.auth-editorial__switch a {
  font-weight: 500;
  color: var(--ed-accent-deep, #0284C7);
  text-decoration: none;
}
.auth-editorial__switch a:hover { text-decoration: underline; }

/* Bouton stylé comme un lien discret (ex. « Changer de SIRET » dans un
   <form> POST : doit rester un vrai bouton pour porter le CSRF, sans en
   avoir l'apparence visuelle). Réutilisable partout où .auth-editorial__switch
   n'a pas d'ancre <a> mais un <button type="submit">. */
.auth-editorial__linkbtn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  color: var(--ed-accent-deep, #0284C7);
  text-decoration: none;
  cursor: pointer;
}
.auth-editorial__linkbtn:hover { text-decoration: underline; }
.auth-editorial__linkbtn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.30);
  border-radius: 4px;
}

/* ─── Rappel « fiche trouvée » (parcours canaux / téléphone) ── */
.auth-editorial__found {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--ae-gap-md);
}
.auth-editorial__found-label {
  font-family: var(--ed-font-mono, 'Geist Mono', monospace);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ed-ink2, #3A4055);
}
.auth-editorial__found-name {
  font-family: var(--ed-font-display, 'Instrument Serif', serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ed-ink, #0D1220);
}

/* ─── Bloc d'aide / contact support activation ────────────── */
.auth-editorial__help {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: var(--ae-gap-md);
  padding: 14px 16px;
  background: var(--ed-paper-card, #FFFFFF);
  border: 1px solid var(--ed-line, #E6E2D7);
  border-radius: 14px;
}
.auth-editorial__help-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--ae-info-soft, rgba(14, 165, 233, 0.08));
  border: 1px solid rgba(14, 165, 233, 0.30);
  color: var(--ed-accent, #0EA5E9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.auth-editorial__help-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ed-ink2, #3A4055);
}
.auth-editorial__help-text strong {
  color: var(--ed-ink, #0D1220);
  font-weight: 600;
}
.auth-editorial__help-text a {
  font-weight: 600;
  color: var(--ed-accent-deep, #0284C7);
  text-decoration: none;
  white-space: nowrap;
}
.auth-editorial__help-text a:hover { text-decoration: underline; }

/* ─── Encart "en cas de problème" (lien signalement visible) ─── */
.auth-editorial__trouble {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  margin-top: var(--ae-gap-md);
  padding: 14px 16px;
  background: var(--ae-info-soft, rgba(14, 165, 233, 0.06));
  border: 1px solid rgba(14, 165, 233, 0.28);
  border-radius: 14px;
}
.auth-editorial__trouble-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ed-ink2, #3A4055);
}
.auth-editorial__trouble-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ed-accent-deep, #0284C7);
  text-decoration: none;
  white-space: nowrap;
}
.auth-editorial__trouble-link svg { flex-shrink: 0; }
.auth-editorial__trouble-link:hover { text-decoration: underline; }

/* ─── Bandeau "vous arrivez de l'inscription" ─────────────── */
.auth-editorial__banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--ae-info-soft);
  border: 1px solid rgba(14, 165, 233, 0.30);
  border-radius: 14px;
  margin-bottom: var(--ae-gap-md);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ed-ink, #0D1220);
}
.auth-editorial__banner-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--ae-info);
}

/* ─── État SUCCESS ────────────────────────────────────────── */
.auth-editorial__success {
  display: flex;
  flex-direction: column;
  gap: var(--ae-gap-md);
  animation: ae-fade-up .5s ease-out both;
}

.auth-editorial__success-icon {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--ae-good-soft);
  color: var(--ae-good);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.auth-editorial__code-card {
  background: var(--ed-paper2, #F6F4EF);
  border: 1px dashed var(--ed-line, #E6E2D7);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.auth-editorial__code-caps {
  font-family: var(--ed-font-mono, 'Geist Mono', monospace);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ed-ink2, #3A4055);
}
.auth-editorial__code-value {
  font-family: var(--ed-font-mono, 'Geist Mono', monospace);
  font-size: 22px;
  font-weight: 600;
  color: var(--ed-ink, #0D1220);
  letter-spacing: .04em;
}

.auth-editorial__next-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.auth-editorial__next-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ed-ink2, #3A4055);
  line-height: 1.5;
}
.auth-editorial__next-step-num {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--ed-paper2, #F6F4EF);
  border: 1px solid var(--ed-line, #E6E2D7);
  color: var(--ed-ink, #0D1220);
  font-family: var(--ed-font-mono, 'Geist Mono', monospace);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ─── État CONFLICT (SIRET déjà pris) ─────────────────────── */
.auth-editorial__conflict {
  display: flex;
  flex-direction: column;
  gap: var(--ae-gap-md);
  animation: ae-fade-up .5s ease-out both;
}

.auth-editorial__conflict-icon {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--ae-info-soft);
  color: var(--ae-info);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-editorial__conflict-card {
  background: var(--ed-paper2, #F6F4EF);
  border: 1px solid var(--ed-line, #E6E2D7);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.auth-editorial__conflict-card-caps {
  font-family: var(--ed-font-mono, 'Geist Mono', monospace);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ed-ink2, #3A4055);
}
.auth-editorial__conflict-card-row {
  font-size: 14px;
  color: var(--ed-ink, #0D1220);
}
.auth-editorial__conflict-card-row strong { font-weight: 600; }

.auth-editorial__conflict-help {
  font-size: 12.5px;
  color: var(--ed-ink-muted, #9AA0B0);
  line-height: 1.55;
}
.auth-editorial__conflict-help a { color: var(--ed-ink2, #3A4055); }

/* ─── Colonne aside (droite) ──────────────────────────────── */
.auth-editorial__aside-col {
  position: sticky;
  top: 32px;
  animation: ae-fade-up .5s .24s ease-out both;
}

.auth-editorial__aside-card {
  background: var(--ed-paper2, #F6F4EF);
  border: 1px solid var(--ed-line, #E6E2D7);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.auth-editorial__aside-card::before {
  content: "";
  position: absolute;
  top: -100px; left: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255, 122, 85, 0.20) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.auth-editorial__aside-inner { position: relative; }

.auth-editorial__aside-eyebrow {
  font-family: var(--ed-font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ed-ink2, #3A4055);
  margin-bottom: 18px;
}

.auth-editorial__aside-quote {
  font-family: var(--ed-font-display, 'Instrument Serif', serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--ed-ink, #0D1220);
  margin: 0 0 24px;
  text-wrap: balance;
}

.auth-editorial__aside-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--ed-line, #E6E2D7);
}
.auth-editorial__aside-avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--ed-paper-card, #FFFFFF);
  border: 1px solid var(--ed-line, #E6E2D7);
  color: var(--ed-ink2, #3A4055);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ed-font-mono, 'Geist Mono', monospace);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.auth-editorial__aside-author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ed-ink, #0D1220);
}
.auth-editorial__aside-author-role {
  font-size: 12.5px;
  color: var(--ed-ink2, #3A4055);
}

/* Variante de l'aside : parcours numérote (5 etapes) */
.auth-editorial__aside-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: ae-step;
}
.auth-editorial__aside-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
}
/* Trace verticale subtile entre les pastilles */
.auth-editorial__aside-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 28px;
  bottom: -16px;
  width: 1px;
  background: var(--ed-line, #E6E2D7);
  pointer-events: none;
}
.auth-editorial__aside-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--ed-paper-card, #FFFFFF);
  border: 1px solid var(--ed-line, #E6E2D7);
  color: var(--ed-ink, #0D1220);
  font-family: var(--ed-font-mono, 'Geist Mono', monospace);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.auth-editorial__aside-step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ed-ink, #0D1220);
  line-height: 1.3;
  margin-bottom: 2px;
}
.auth-editorial__aside-step-text {
  font-size: 13px;
  color: var(--ed-ink2, #3A4055);
  line-height: 1.5;
}
.auth-editorial__aside-step-text strong { color: var(--ed-ink, #0D1220); font-weight: 600; }

/* Note d'attention sous les etapes */
.auth-editorial__aside-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(245, 200, 75, 0.10);
  border: 1px solid rgba(245, 158, 11, 0.30);
  border-radius: 14px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ed-ink2, #3A4055);
}
.auth-editorial__aside-note-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #B45309;
  margin-top: 1px;
}
.auth-editorial__aside-note strong { color: var(--ed-ink, #0D1220); font-weight: 600; display: block; margin-bottom: 2px; }

.auth-editorial__aside-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.auth-editorial__aside-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ed-ink2, #3A4055);
  line-height: 1.45;
}
.auth-editorial__aside-bullet-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--ed-paper-card, #FFFFFF);
  border: 1px solid var(--ed-line, #E6E2D7);
  color: var(--ed-accent, #0EA5E9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.auth-editorial__aside-bullet strong { color: var(--ed-ink, #0D1220); font-weight: 600; }

/* ─── Keyframes ───────────────────────────────────────────── */
@keyframes ae-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ae-field-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Cascade champs : 50ms par champ, max 8 champs (400ms total) */
.auth-editorial__form .auth-editorial__field,
.auth-editorial__form .auth-editorial__row {
  animation: ae-field-in .35s ease-out both;
}
.auth-editorial__form > *:nth-child(1) { animation-delay: .15s; }
.auth-editorial__form > *:nth-child(2) { animation-delay: .20s; }
.auth-editorial__form > *:nth-child(3) { animation-delay: .25s; }
.auth-editorial__form > *:nth-child(4) { animation-delay: .30s; }
.auth-editorial__form > *:nth-child(5) { animation-delay: .35s; }
.auth-editorial__form > *:nth-child(6) { animation-delay: .40s; }
.auth-editorial__form > *:nth-child(7) { animation-delay: .45s; }
.auth-editorial__form > *:nth-child(8) { animation-delay: .50s; }

/* ─── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .auth-editorial__head,
  .auth-editorial__form,
  .auth-editorial__aside-col,
  .auth-editorial__form > *,
  .auth-editorial__success,
  .auth-editorial__conflict {
    animation: none !important;
  }
  .auth-editorial__btn:hover { transform: none !important; }
}

/* ─── Contenu de destination SEO (écran d'entrée réclamation) ──
   Breadcrumb au-dessus de la coquille + blocs éditoriaux et mini-FAQ
   sous le formulaire. Affichés uniquement sur l'écran d'entrée. */
.auth-editorial__breadcrumb { margin-bottom: 18px; }

.auth-editorial__seo {
  margin-top: var(--ae-gap-xl);
  padding-top: var(--ae-gap-lg);
  border-top: 1px solid var(--ed-line, #E6E2D7);
}
.auth-editorial__seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ae-gap-md);
}
.auth-editorial__seo-block {
  background: #fff;
  border: 1px solid var(--ed-line, #E6E2D7);
  border-radius: 16px;
  padding: 24px 26px;
}
.auth-editorial__seo-title {
  font-family: var(--ed-font-display, 'Instrument Serif', serif);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--ed-ink, #0D1220);
  margin: 0 0 10px;
}
.auth-editorial__seo-q {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ed-ink, #0D1220);
  margin: 0 0 8px;
}
.auth-editorial__seo-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ed-ink2, #3A4055);
  margin: 0;
}
.auth-editorial__seo-text a {
  color: var(--ae-info);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.auth-editorial__seo-faq-title {
  font-family: var(--ed-font-display, 'Instrument Serif', serif);
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  color: var(--ed-ink, #0D1220);
  margin: var(--ae-gap-lg) 0 var(--ae-gap-sm);
}

/* ─── Cartes « méthodes d'accès » (page d'aide à la connexion) ──
   Trois voies pour rejoindre son espace, chacune avec son lien.
   Utilisées par la vue public/signaler-un-probleme.php. */
.auth-editorial__methods {
  display: flex;
  flex-direction: column;
  gap: var(--ae-gap-md);
  animation: ae-fade-up .5s .12s ease-out both;
}

.auth-editorial__method {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  background: var(--ed-paper-card, #FFFFFF);
  border: 1px solid var(--ed-line, #E6E2D7);
  border-radius: 18px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.auth-editorial__method:hover {
  border-color: var(--ed-ink2, #3A4055);
  box-shadow: 0 14px 32px -20px rgba(13, 18, 32, 0.30);
  transform: translateY(-2px);
}

/* Voie recommandée (réclamation) : liseré dégradé de marque + pastille pleine */
.auth-editorial__method--accent {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--ed-paper-card, #FFFFFF), var(--ed-paper-card, #FFFFFF)) padding-box,
    var(--ae-grad) border-box;
}

.auth-editorial__method-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--ed-paper2, #F6F4EF);
  border: 1px solid var(--ed-line, #E6E2D7);
  color: var(--ed-ink, #0D1220);
  font-family: var(--ed-font-mono, 'Geist Mono', monospace);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.auth-editorial__method--accent .auth-editorial__method-num {
  background: var(--ae-grad);
  border-color: transparent;
  color: #fff;
}

.auth-editorial__method-body { min-width: 0; flex: 1; }

.auth-editorial__method-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.auth-editorial__method-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ed-ink, #0D1220);
  line-height: 1.3;
}
.auth-editorial__method-tag {
  font-family: var(--ed-font-mono, 'Geist Mono', monospace);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ed-accent-deep, #0284C7);
  background: var(--ae-info-soft, #E0F2FE);
  border: 1px solid rgba(14, 165, 233, 0.30);
  border-radius: 999px;
  padding: 3px 9px;
}
.auth-editorial__method-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ed-ink2, #3A4055);
  margin: 0 0 14px;
}
.auth-editorial__method-text strong { color: var(--ed-ink, #0D1220); font-weight: 600; }
.auth-editorial__method-text a {
  color: var(--ed-accent-deep, #0284C7);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.auth-editorial__method-text a:hover { text-decoration: underline; }

.auth-editorial__method-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ed-accent-deep, #0284C7);
  text-decoration: none;
}
.auth-editorial__method-link svg { transition: transform .18s ease; }
.auth-editorial__method-link:hover { text-decoration: underline; }
.auth-editorial__method-link:hover svg { transform: translateX(3px); }

@media (max-width: 480px) {
  .auth-editorial__method { padding: 18px; gap: 14px; }
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .auth-editorial__seo-grid { grid-template-columns: 1fr; }
  .auth-editorial__container { padding: 32px 16px 56px; }
  .auth-editorial__shell {
    grid-template-columns: 1fr;
    gap: var(--ae-gap-lg);
  }
  .auth-editorial__form-col { padding: 32px 24px; border-radius: 20px; }
  .auth-editorial__aside-col {
    position: static;
    order: 2;
  }
  .auth-editorial__aside-card { padding: 28px 24px; }
  .auth-editorial__row--2,
  .auth-editorial__row--3 { grid-template-columns: 1fr; }
  .auth-editorial__title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
}
@media (max-width: 480px) {
  .auth-editorial__container { padding: 24px 12px 48px; }
  .auth-editorial__form-col { padding: 24px 18px; }
  .auth-editorial__aside-card { padding: 24px 18px; }
  .auth-editorial__aside-bullets { gap: 12px; }
  .auth-editorial__actions { flex-direction: column; align-items: stretch; }
  .auth-editorial__actions .auth-editorial__btn { width: 100%; }
}

/* Honeypot anti-spam (champ leurre invisible) */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
