/*
 * Notafacto Client — assistant de première connexion (EPIC 41.3).
 * Carte centrée plus large que le login. Réutilise les classes `.nf-wizard__panel*`
 * de notafacto.css ; ne définit ici que le contenant et l'en-tête de l'assistant.
 * Tokens nf uniquement, préfixe `nf-*`. Pas de position:sticky ni overflow (règle projet) :
 * la page entière scrolle naturellement.
 * Chargé via le front-matter `css` de la page sur le layout `onboarding-nf`.
 */

.nf-onboarding-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  background: var(--surface);
  padding: 48px 24px;
}

.nf-onboarding {
  width: 100%;
  max-width: 640px;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--menu-elevation);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.nf-onboarding__brand { text-align: center; }
.nf-onboarding__brand .nf-logo__text { font-size: 26px; }

/* Étape notifications — ligne « libellé + aide » à gauche, choix Oui/Non à droite */
.nf-notif-choice {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.nf-notif-choice__text { flex: 1; min-width: 0; }
.nf-notif-choice__label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
}
.nf-notif-choice__text .nf-field__hint { margin-top: 4px; }
.nf-notif-choice__warning {
  margin-top: 8px;
  color: var(--error-text);
  font-size: 13px;
  line-height: 1.5;
}
.nf-notif-choice__options {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  padding-top: 2px;
}

/* Indicateur d'étapes (pastilles) */
.nf-onboarding__dots {
  list-style: none;
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.nf-onboarding__dots li {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  transition: background-color .15s ease;
}
.nf-onboarding__dots li.is-active { background: var(--accent); }

/* Tour des sections (étape 3) : cards descriptives empilées */
.nf-onboarding__tour {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Barre de navigation (en flux, pas sticky) */
.nf-onboarding__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.nf-onboarding__progress {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin: 0;
}
.nf-onboarding__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.nf-onboarding__actions .nf-btn-row { gap: 12px; }
