/* ============================================================================
   ONBOARDING WIZARD v2 — modal 3-step
   ============================================================================ */
.onbv2-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 44, 92, .55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  animation: onbv2-fade 200ms ease-out;
}
@keyframes onbv2-fade { from { opacity: 0; } to { opacity: 1; } }

.onbv2-modal {
  background: var(--bg, #fff);
  width: 90%; max-width: 520px;
  border-radius: 18px;
  padding: 32px 36px 24px;
  box-shadow: 0 30px 80px rgba(15, 44, 92, .35);
  font-family: 'Inter', sans-serif;
  animation: onbv2-pop 250ms cubic-bezier(.2, .9, .3, 1.2);
}
@keyframes onbv2-pop {
  from { transform: scale(.92) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.onbv2-dots {
  display: flex; gap: 6px; justify-content: center;
  margin-bottom: 20px;
}
.onbv2-dot {
  width: 28px; height: 4px;
  border-radius: 2px;
  background: var(--border, #e2e8f0);
  transition: background 200ms;
}
.onbv2-dot.is-active { background: var(--brand, #1E5BAA); }
.onbv2-dot.is-done { background: color-mix(in srgb, var(--brand, #1E5BAA) 50%, transparent); }

.onbv2-step-title {
  font-family: 'IBM Plex Serif', serif;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 16px;
  color: var(--text, #1a2233);
}

.onbv2-step-body {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  min-height: 140px;
}

.onbv2-row {
  margin: 14px 0;
}
.onbv2-row > label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--t2, #5b6478);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.onbv2-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.onbv2-opts label {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--s2, #f8fafc);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 120ms;
}
.onbv2-opts label:has(input:checked) {
  background: color-mix(in srgb, var(--brand, #1E5BAA) 10%, transparent);
  border-color: var(--brand, #1E5BAA);
  color: var(--brand, #1E5BAA);
  font-weight: 500;
}
.onbv2-opts input { accent-color: var(--brand, #1E5BAA); }

.onbv2-shortcuts {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.onbv2-shortcuts li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border, #e2e8f0);
  font-size: 13.5px;
  display: flex; align-items: center; gap: 6px;
}
.onbv2-shortcuts li:last-child { border-bottom: 0; }
.onbv2-shortcuts kbd {
  background: var(--s2, #f1f5f9);
  border: 1px solid var(--border, #cbd5e1);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text);
  box-shadow: 0 1px 0 var(--border, #cbd5e1);
}

.onbv2-actions {
  display: flex; align-items: center; gap: 8px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border, #e2e8f0);
}
.onbv2-actions .onbv2-skip { margin-left: auto; }
.onbv2-actions .onbv2-next { min-width: 110px; }
