/* ═══════════════════════════════
   ALLNET TOUR — Guided Tooltip Callouts
   Mobile-first, one element highlighted at a time
   ═══════════════════════════════ */

.tour-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tour-overlay.active { opacity: 1; pointer-events: auto; }

/* Spotlight — positioned over the target element, casts massive shadow */
.tour-spotlight {
  position: fixed;
  border-radius: 12px;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.8);
  z-index: 8001;
  pointer-events: none;
  transition: top 0.35s ease, left 0.35s ease, width 0.35s ease, height 0.35s ease;
}

/* Tooltip bubble — fixed at top or bottom of viewport */
.tour-tooltip {
  position: fixed;
  z-index: 8002;
  max-width: 320px;
  background: #1a1a1a;
  border: 1px solid rgba(247, 69, 1, 0.3);
  border-radius: 14px;
  padding: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
}
.tour-overlay.active .tour-tooltip { opacity: 1; transform: translateY(0); }

/* Step counter */
.tour-tooltip__step {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: #F74501;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

/* Body text */
.tour-tooltip__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #ccc;
}
.tour-tooltip__text strong {
  color: #fff;
  font-weight: 600;
}

/* Button row */
.tour-tooltip__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  gap: 10px;
}

.tour-tooltip__skip {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  transition: color 0.2s;
}
.tour-tooltip__skip:hover { color: #999; }

.tour-tooltip__next {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #F74501;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  transition: opacity 0.2s;
  min-height: 44px;
  min-width: 44px;
}
.tour-tooltip__next:hover { opacity: 0.85; }
