/* HumansReadThis first-time dashboard tour */
.hrt-tour[hidden] { display: none !important; }
.hrt-tour-curtain {
  position: fixed;
  z-index: 9998;
  background: rgba(7, 24, 40, .76);
  backdrop-filter: blur(2px);
  transition: left .18s ease, top .18s ease, width .18s ease, height .18s ease;
}
.hrt-tour-spotlight {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  border: 3px solid #2fb9ab;
  border-radius: 16px;
  box-shadow: 0 0 0 3px rgba(255,255,255,.96), 0 12px 44px rgba(0,0,0,.28);
  transition: left .18s ease, top .18s ease, width .18s ease, height .18s ease;
}
.hrt-tour-popover {
  position: fixed;
  z-index: 10000;
  width: min(430px, calc(100vw - 24px));
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  padding: 24px;
  color: #273244;
  background: #fff;
  border: 1px solid rgba(11,34,57,.1);
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(4,20,33,.34);
}
.hrt-tour-popover.is-centered { inset: auto; }
.hrt-tour-heading-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.hrt-tour-progress {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  color: #0b2239;
  background: #eaf7f6;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.hrt-tour-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #647184;
  background: #f4f7f9;
  border: 0;
  border-radius: 11px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.hrt-tour-close:hover { color: #0b2239; background: #e8eef2; }
.hrt-tour-kicker {
  margin: 20px 0 7px;
  color: #188f85;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hrt-tour-popover h2 {
  margin: 0;
  color: #0b2239;
  font: 800 clamp(1.35rem, 4vw, 1.7rem)/1.18 "Manrope", "DM Sans", sans-serif;
  letter-spacing: -.035em;
}
.hrt-tour-popover #hrt-tour-body { margin: 12px 0 0; color: #566376; font-size: .96rem; line-height: 1.58; }
.hrt-tour-dots { display: flex; gap: 7px; margin-top: 20px; }
.hrt-tour-dots span { width: 8px; height: 8px; background: #d4dee6; border-radius: 999px; transition: width .18s ease, background .18s ease; }
.hrt-tour-dots span.is-active { width: 25px; background: #2fb9ab; }
.hrt-tour-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; padding-top: 18px; border-top: 1px solid #e0e7ed; }
.hrt-tour-navigation { display: flex; gap: 9px; }
.hrt-tour-skip { padding: 8px 2px; color: #667085; background: transparent; border: 0; font-weight: 700; cursor: pointer; }
.hrt-tour-skip:hover { color: #0b2239; }
.hrt-tour-back[disabled] { opacity: .45; cursor: default; }
.hrt-tour-replay { white-space: nowrap; }
body.hrt-tour-open { overscroll-behavior: contain; }

@media (max-width: 620px) {
  .hrt-tour-popover { padding: 20px; border-radius: 18px; }
  .hrt-tour-actions { align-items: stretch; flex-direction: column-reverse; }
  .hrt-tour-navigation { width: 100%; }
  .hrt-tour-navigation .button { flex: 1; }
  .hrt-tour-skip { align-self: center; }
  .hrt-tour-spotlight { border-radius: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .hrt-tour-curtain, .hrt-tour-spotlight, .hrt-tour-dots span { transition: none !important; }
}
