/* ============================================================
   TinyTot — onboarding (signup + guided setup wizard)
   Separate file so the core brand sheet (styles.css) stays untouched.
   Reuses brand tokens from styles.css (:root vars).
   ============================================================ */

.ob-emoji { font-size: 44px; line-height: 1; margin-bottom: 6px; }

/* ---- inline "verify your email" notice on the login screen ---- */
.login-notice {
  background: rgba(255,179,71,.12); border: 1px solid rgba(255,179,71,.5);
  border-radius: 12px; padding: 12px 14px; margin-bottom: 16px;
}
.login-notice p { font-size: 13.5px; font-weight: 700; color: var(--ink); }

/* ---- console "finish setup" banner (sits under the topbar) ---- */
.setup-banner {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 28px; background: var(--grad-soft); border-bottom: 1px solid var(--line);
}
.setup-banner .sb-ic { font-size: 22px; flex: none; }
.setup-banner .sb-txt { flex: 1; min-width: 0; }
.setup-banner .sb-txt b { font-size: 14.5px; }
.setup-banner .sb-txt .mini { color: var(--muted); }
.setup-banner .sb-bar { height: 6px; max-width: 280px; border-radius: 4px; background: var(--line); overflow: hidden; }
.setup-banner .sb-bar i { display: block; height: 100%; background: var(--grad); transition: width .3s ease; }
.setup-banner .btn { flex: none; }

/* ---- wizard overlay ---- */
.wiz-bg {
  position: fixed; inset: 0; z-index: 150; padding: 20px;
  background: rgba(45,49,66,.5); backdrop-filter: blur(3px); display: grid; place-items: center;
}
.wiz {
  width: 100%; max-width: 620px; max-height: 92vh; display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg);
}
.wiz-head { padding: 22px 26px 0; }
.wiz-head .wiz-close { float: right; background: none; border: 0; font-size: 24px; line-height: 1; color: var(--muted); cursor: pointer; }
.wiz-head .wiz-close:hover { color: var(--ink); }
.wiz-head h3 { font-size: 20px; font-weight: 800; }
.wiz-head p { color: var(--muted); font-size: 14px; margin-top: 4px; }

.wiz-steps { display: flex; gap: 6px; padding: 18px 26px 6px; }
.wiz-steps .st { flex: 1; text-align: center; min-width: 0; }
.wiz-steps .st .dot {
  width: 30px; height: 30px; margin: 0 auto 5px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: 13px;
  background: var(--bg); color: var(--muted); border: 1.5px solid var(--line);
}
.wiz-steps .st.active .dot { background: var(--grad); color: #fff; border-color: transparent; }
.wiz-steps .st.done .dot { background: var(--success); color: #fff; border-color: transparent; }
.wiz-steps .st .lbl { font-size: 11px; font-weight: 700; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wiz-steps .st.active .lbl { color: var(--ink); }

.wiz-body { padding: 10px 26px 8px; overflow-y: auto; }
.wiz-body h4 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.wiz-body .sub { color: var(--muted); font-size: 14px; margin-bottom: 16px; }

.wiz-list { display: flex; flex-direction: column; gap: 8px; margin: 4px 0 14px; }
.wiz-item {
  display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700;
  background: var(--bg); border: 1px solid var(--line); border-radius: 11px; padding: 10px 12px;
}

.wiz-foot { display: flex; align-items: center; gap: 10px; padding: 14px 26px 22px; border-top: 1px solid var(--line); }
.wiz-foot .spacer { flex: 1; }

@media (max-width: 560px) {
  .wiz-steps .st .lbl { display: none; }
  .setup-banner { flex-wrap: wrap; }
}
