/* ─────────────────────────────────────────────────────────────────────────────
   guide.css — v65 per-feature walkthroughs: dim + spotlight ring + step card.
   Sits above everything (drawer 1200, sidebar 1300, toasts 2200 → guide 6000).
   ───────────────────────────────────────────────────────────────────────────── */

.hg-dim {
  position: fixed; inset: 0; z-index: 6000;
  background: transparent;   /* the ring's giant box-shadow does the dimming */
}
.hg-ring {
  position: fixed; z-index: 6001; pointer-events: none;
  border: 2px solid var(--gold); border-radius: 12px;
  box-shadow: 0 0 0 9999px rgba(17, 22, 34, .48), 0 0 0 5px rgba(252, 210, 59, .28);
  transition: left .22s ease, top .22s ease, width .22s ease, height .22s ease;
}
.hg-card {
  position: fixed; z-index: 6002; display: none;
  background: var(--panel); color: var(--text);
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 50px rgba(10, 14, 24, .35);
  padding: 14px 16px 12px; font-family: var(--font-body);
}
.hg-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.hg-kicker {
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--text-dim); flex: 1;
}
.hg-x {
  background: none; border: 0; color: var(--text-dim); cursor: pointer;
  font-size: 13px; line-height: 1; padding: 2px 4px; border-radius: 6px;
}
.hg-x:hover { color: var(--text); background: var(--panel-2); }
.hg-title { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; margin-bottom: 5px; }
.hg-text { font-size: 12.8px; line-height: 1.55; color: var(--text); }
.hg-text i { color: var(--text-dim); }
.hg-foot { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.hg-dots { display: inline-flex; gap: 4px; flex: 1; align-items: center; }
.hg-dots i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--line); display: inline-block;
}
.hg-dots i.done { background: var(--gold-deep); opacity: .55; }
.hg-dots i.on { background: var(--gold); width: 16px; border-radius: 99px; }
.hg-btns { display: inline-flex; gap: 8px; }
.hg-btn {
  background: var(--panel); border: 1px solid var(--line); color: var(--text);
  border-radius: 8px; padding: 6px 13px; font-family: var(--font-body);
  font-size: 12.5px; font-weight: 500; cursor: pointer;
}
.hg-btn:hover { border-color: var(--gold-deep); }
.hg-btn.primary { background: var(--gold); border-color: var(--gold-deep); color: #1c2433; font-weight: 600; }

/* shellbar Guide button + picker menu */
.guide-btn { display: inline-flex; align-items: center; }
.guide-menu {
  position: absolute; top: calc(100% + 8px); right: 120px; z-index: 1400;
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: 6px; min-width: 260px;
}
.gm-item {
  display: flex; flex-direction: column; gap: 2px; width: 100%; text-align: left;
  background: none; border: 0; border-radius: 8px; padding: 8px 10px; cursor: pointer;
  font-family: var(--font-body); color: var(--text);
}
.gm-item:hover { background: var(--gold-dim); }
.gm-item b { font-size: 12.5px; font-weight: 600; }
.gm-item span { font-size: 11px; color: var(--text-dim); }
