/* First-run onboarding checklist card (shown atop the Inbox). Reuses app.css vars. */
.onb-card { padding: 14px 14px 8px; }
.onb-progress { margin-top: 2px; }
.onb-list { display: flex; flex-direction: column; }
.onb-row {
  display: flex; align-items: center; gap: 12px; width: 100%;
  background: none; border: 0; border-top: 1px solid var(--line);
  padding: 12px 0; text-align: left; font: inherit; color: var(--ink); cursor: pointer;
  min-height: 56px;
}
.onb-row:first-child { border-top: 0; }
.onb-row:active { background: var(--bg); }
.onb-row[disabled] { cursor: default; opacity: 0.6; }
.onb-check {
  flex: 0 0 24px; width: 24px; height: 24px; border-radius: 999px;
  border: 2px solid var(--line); display: grid; place-items: center;
  font-size: 14px; font-weight: 700; color: transparent;
}
.onb-row.done .onb-check { background: var(--accent); border-color: var(--accent); color: #fff; }
.onb-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.onb-label { font-weight: 600; font-size: 15px; }
.onb-row.done .onb-label { text-decoration: line-through; color: var(--muted); font-weight: 500; }
.onb-opt {
  margin-left: 8px; font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.03em; color: var(--muted);
}
.onb-hint { line-height: 1.3; }

/* --- Activation engine (V3): progress bar, completion celebration, seed CTA --- */
.onb-progress-bar { height: 6px; border-radius: 999px; background: var(--line); overflow: hidden; margin: 4px 0 10px; }
.onb-progress-bar > span { display: block; height: 100%; background: var(--accent); border-radius: 999px; transition: width .35s ease; }
.onb-foot { margin: 10px 2px 6px; }

.onb-done-panel { text-align: center; padding: 22px 18px; }
.onb-done-check {
  width: 48px; height: 48px; margin: 0 auto 10px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center;
}
.onb-done-panel strong { font-size: 18px; }

/* Empty-book starter CTA (price book + job-builder pick sheet) */
.pb-seed-cta { padding: 16px 4px 8px; }

/* Welcome sheet — step 2 (book ready) */
.seed-done { text-align: center; padding: 8px 0 14px; }
.seed-done-check {
  width: 48px; height: 48px; margin: 0 auto 8px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-deep);
  display: grid; place-items: center; font-size: 26px; font-weight: 800;
}
.seed-done strong { font-size: 17px; }
