/* ============================================================
   Getting-started checklist — home card
   ============================================================ */

#onboarding-slot.hidden { display: none; }

.ob-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-pane);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 6%, transparent), transparent 60%),
    var(--bg-modal);
  padding: 18px 20px 14px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-card);
}

.ob-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.ob-title {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.ob-sub { font-size: 12.5px; color: var(--text-light); margin-top: 2px; }
.ob-dismiss {
  border: none; background: transparent; color: var(--text-faint);
  cursor: pointer; font-size: 14px; width: 26px; height: 26px; border-radius: 6px; flex: none;
}
.ob-dismiss:hover { background: var(--bg-hover); color: var(--text); }

.ob-bar {
  height: 5px;
  background: var(--bg-active);
  border-radius: 999px;
  overflow: hidden;
  margin: 12px 0 14px;
}
.ob-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.35s var(--ease-out, ease);
}

.ob-steps { display: flex; flex-direction: column; gap: 4px; }
.ob-step {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  border-radius: var(--radius-card);
  padding: 9px 12px;
  cursor: pointer;
  font: inherit;
  color: var(--text);
  transition: background 0.12s, border-color 0.12s;
}
.ob-step:hover { background: var(--bg-hover); border-color: var(--border); }

.ob-check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1.5px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.ob-done .ob-check {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.ob-step-main { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.ob-step-label { font-size: 13.5px; font-weight: 600; }
.ob-done .ob-step-label { color: var(--text-light); text-decoration: line-through; }
.ob-step-hint { font-size: 12px; color: var(--text-faint); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ob-done .ob-step-hint { display: none; }

.ob-step-go { font-size: 12px; font-weight: 600; color: var(--accent); flex: none; opacity: 0; transition: opacity 0.12s; }
.ob-step:hover .ob-step-go { opacity: 1; }

@media (prefers-reduced-motion: reduce) { .ob-bar-fill { transition: none; } }
