/* First-sign-in informational wizard. Single-column centered layout,
   wide-enough card for prose + bulleted lists. Reuses --lf-* tokens
   from theme.css so it inherits the dealer-portal look. */

.wlc-root {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.wlc-loading {
  padding: 60px 20px;
  text-align: center;
  color: var(--lf-text-muted);
  font-size: 14px;
}

/* ── Progress dots ───────────────────────────────────────────────── */

.wlc-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 0 4px;
}
.wlc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lf-border);
  transition: background 0.2s;
  display: inline-block;
}
.wlc-dot-active {
  background: var(--lf-accent);
  box-shadow: 0 0 0 3px var(--lf-accent-bg);
}
.wlc-dot-done {
  background: var(--lf-success, var(--lf-accent));
}
.wlc-progress-label {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lf-text-muted);
}

/* ── Card ────────────────────────────────────────────────────────── */

.wlc-card {
  background: var(--lf-panel);
  border: 1px solid var(--lf-border);
  border-radius: var(--radius, 12px);
  padding: 36px 40px;
}
.wlc-error {
  border-color: var(--lf-danger, #ef4444);
}
.wlc-error h1 { font-size: 18px; margin: 0 0 10px; color: var(--lf-text); }
.wlc-error p { color: var(--lf-text-muted); margin: 0 0 12px; line-height: 1.55; }

.wlc-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lf-accent);
  margin-bottom: 8px;
}
.wlc-card h1 {
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--lf-text);
  line-height: 1.25;
}
.wlc-intro {
  font-size: 16px;
  color: var(--lf-text-muted);
  margin: 0 0 24px;
  line-height: 1.6;
}

/* ── Body content (lists + paragraphs) ───────────────────────────── */

.wlc-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--lf-text);
}
.wlc-body p {
  margin: 0 0 14px;
}

.wlc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wlc-list li {
  padding: 14px 16px;
  background: var(--lf-bg);
  border: 1px solid var(--lf-border);
  border-radius: var(--radius-sm, 8px);
  margin-bottom: 10px;
  line-height: 1.55;
}
.wlc-list li strong {
  color: var(--lf-text);
  display: inline;
}
.wlc-list a {
  color: var(--lf-accent);
  text-decoration: none;
}
.wlc-list a:hover { text-decoration: underline; }

.wlc-fineprint {
  font-size: 13px;
  color: var(--lf-text-muted);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--lf-border);
  line-height: 1.55;
}

/* ── Actions row ─────────────────────────────────────────────────── */

.wlc-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.wlc-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm, 8px);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s, opacity 0.12s;
}
.wlc-btn-primary {
  background: var(--lf-accent);
  color: var(--lf-accent-contrast);
  border-color: var(--lf-accent);
  margin-left: auto;
}
.wlc-btn-primary:hover {
  background: var(--lf-accent-hover);
  border-color: var(--lf-accent-hover);
}
.wlc-btn-secondary {
  background: transparent;
  color: var(--lf-text);
  border-color: var(--lf-border);
}
.wlc-btn-secondary:hover {
  border-color: var(--lf-accent);
  color: var(--lf-accent);
}
.wlc-btn-link {
  font-size: 13px;
  color: var(--lf-text-muted);
  text-decoration: underline;
}
.wlc-btn-link:hover { color: var(--lf-accent); }

/* ── Mobile ──────────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .wlc-root { padding: 24px 16px 48px; }
  .wlc-card { padding: 24px 20px; }
  .wlc-card h1 { font-size: 22px; }
  .wlc-actions { flex-direction: column-reverse; align-items: stretch; }
  .wlc-btn-primary { margin-left: 0; }
}
