/**
 * tour.css — the guided tour visuals (scripts/ui/tour/*). Mirrors the auth
 * sign-in screen's premium language — glass surfaces, film grain, masked grid,
 * the spring linear() curve, word-rise text, check draw-on, and the STATIC
 * 135deg sky→violet accent — WITHOUT the drifting aurora. Nothing animates at
 * rest: every motion is a one-shot triggered by a step transition or advance;
 * the single opt-in loop is the idle-nudge pulse, transform/opacity only.
 *
 * SELF-SCOPED: all --pb-tour-* tokens live on .pb-tour-layer / .pb-tour-card /
 * .pb-tour-hub — never :root. Per-chapter accent arrives inline as --pb-tour-ch.
 */

.pb-tour-layer,
.pb-tour-card,
.pb-tour-hub {
  --pb-tour-ch: #0078d4;
  --pb-tour-grad: linear-gradient(135deg, #0EA5E9, #8B5CF6);
  --pb-tour-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --pb-tour-snap: cubic-bezier(0.22, 1, 0.36, 1);
  --pb-tour-spring: linear(0, 0.009, 0.035 2.1%, 0.141 4.4%, 0.723 12.9%, 0.938 16.7%,
    1.017 19.4%, 1.067 22.5%, 1.089 26%, 1.079 30.3%, 1.049 36%, 1.024 42.6%,
    1.011 50.3%, 1.004 59.2%, 1.001 69.3%, 1);

  --pb-tour-scrim: rgba(15, 23, 42, 0.52);
  --pb-tour-card-bg: rgba(255, 255, 255, 0.82);
  --pb-tour-card-fg: #1f2937;
  --pb-tour-card-heading: #0f172a;
  --pb-tour-card-dim: #64748b;
  --pb-tour-card-faint: #94a3b8;
  --pb-tour-halo: rgba(14, 165, 233, 0.28);
  --pb-tour-key-bg: #f8fafc;
  --pb-tour-key-border: rgba(15, 23, 42, 0.16);
  --pb-tour-success: #16a34a;
  --pb-tour-grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

@media (prefers-color-scheme: dark) {
  .pb-tour-layer,
  .pb-tour-card,
  .pb-tour-hub {
    --pb-tour-scrim: rgba(2, 6, 12, 0.62);
    --pb-tour-card-bg: rgba(23, 27, 33, 0.86);
    --pb-tour-card-fg: #e7e9ee;
    --pb-tour-card-heading: #f6f7f9;
    --pb-tour-card-dim: #9aa1ad;
    --pb-tour-card-faint: #676e7a;
    --pb-tour-key-bg: rgba(255, 255, 255, 0.06);
    --pb-tour-key-border: rgba(255, 255, 255, 0.18);
  }
}

/* ══════════════════════ Spotlight layer ══════════════════════ */

.pb-tour-layer {
  position: fixed;
  inset: 0;
  z-index: var(--pb-z-tour);
  pointer-events: none;
  isolation: isolate;
}

.pb-tour-scrim {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
/* The painted dim area eats clicks; the evenodd hole passes them through. */
.pb-tour-scrim-path {
  fill: var(--pb-tour-scrim);
  pointer-events: fill;
  transition: fill 0.3s var(--pb-tour-ease);
}
.pb-tour-nodim .pb-tour-scrim-path { pointer-events: none; }

.pb-tour-connector {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.pb-tour-connector-path {
  fill: none;
  stroke: var(--pb-tour-ch);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.6;
  transition: opacity 0.4s var(--pb-tour-ease);
}

/* Ring — 2px static gradient rim + soft halo, positioned over the cutout. */
.pb-tour-ring {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28), 0 0 22px 6px var(--pb-tour-halo);
  transition: opacity 0.25s var(--pb-tour-ease);
}
.pb-tour-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: var(--pb-tour-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}
/* Idle-nudge pulse: opt-in only, added by the engine after 8s of inactivity. */
.pb-tour-ring::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid var(--pb-tour-ch);
  opacity: 0;
}
.pb-tour-ring.pb-tour-nudge::after {
  animation: pb-tour-nudge 1.8s var(--pb-tour-ease) infinite;
}
@keyframes pb-tour-nudge {
  0% { opacity: 0.5; transform: scale(1); }
  70% { opacity: 0; transform: scale(1.14); }
  100% { opacity: 0; transform: scale(1.14); }
}

/* Success beat — rim snaps green, one expanding pulse, check pops + draws on. */
.pb-tour-ring.pb-tour-success { --pb-tour-ch: var(--pb-tour-success); --pb-tour-halo: rgba(22, 163, 74, 0.34); }
.pb-tour-ring.pb-tour-success::after {
  border-color: var(--pb-tour-success);
  animation: pb-tour-success-pulse 0.65s var(--pb-tour-ease) forwards;
}
@keyframes pb-tour-success-pulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.35); }
}
.pb-tour-check {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pb-tour-success);
  color: #fff;
  display: grid;
  place-items: center;
  transform: scale(0);
  opacity: 0;
}
.pb-tour-check svg { width: 16px; height: 16px; }
.pb-tour-check-path { stroke-dasharray: 26; stroke-dashoffset: 26; }
.pb-tour-success .pb-tour-check {
  animation: pb-tour-check-pop 0.4s var(--pb-tour-snap) forwards;
}
.pb-tour-success .pb-tour-check-path {
  animation: pb-tour-check-draw 0.42s var(--pb-tour-snap) 0.1s forwards;
}
@keyframes pb-tour-check-pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes pb-tour-check-draw { to { stroke-dashoffset: 0; } }

/* ══════════════════════ Step card ══════════════════════ */

.pb-tour-card {
  position: fixed;
  left: 0;
  top: 0;
  z-index: var(--pb-z-tour-card);
  width: 320px;
  max-width: calc(100vw - 32px);
  padding: 18px 20px 16px;
  border-radius: 18px;
  background: var(--pb-tour-card-bg);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  color: var(--pb-tour-card-fg);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.28), 0 2px 10px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  isolation: isolate;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  will-change: transform;
}
/* 1px static gradient border. */
.pb-tour-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, rgba(14, 165, 233, 0.55), rgba(139, 92, 246, 0.4), transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.pb-tour-card-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.03;
  pointer-events: none;
  background-image: var(--pb-tour-grain);
}

.pb-tour-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--pb-tour-ch);
  margin-bottom: 8px;
}
.pb-tour-title {
  font-size: 18px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--pb-tour-card-heading);
  margin: 0 0 8px;
}
.pb-tour-word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
}
.pb-tour-word {
  display: inline-block;
  transform: translateY(110%);
  animation: pb-tour-word-rise 0.9s var(--pb-tour-spring) both;
  animation-delay: var(--pb-tour-wd, 0ms);
}
@keyframes pb-tour-word-rise { to { transform: translateY(0); } }

.pb-tour-body {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--pb-tour-card-dim);
  margin: 0 0 14px;
}
.pb-tour-note {
  font-size: 12px;
  line-height: 1.45;
  color: var(--pb-tour-card-faint);
  padding: 8px 10px;
  margin: 0 0 12px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.04);
  border-left: 2px solid var(--pb-tour-ch);
}

.pb-tour-key {
  display: inline-block;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  padding: 3px 6px;
  margin: 0 1px;
  border-radius: 6px;
  background: var(--pb-tour-key-bg);
  border: 1px solid var(--pb-tour-key-border);
  box-shadow: 0 1px 0 var(--pb-tour-key-border);
  color: var(--pb-tour-card-heading);
  white-space: nowrap;
  vertical-align: baseline;
}
.pb-tour-key-press {
  animation: pb-tour-key-press 0.28s var(--pb-tour-snap);
}
@keyframes pb-tour-key-press {
  0% { transform: translateY(0); box-shadow: 0 1px 0 var(--pb-tour-key-border); }
  40% { transform: translateY(1.5px); box-shadow: 0 0 0 var(--pb-tour-key-border); background: var(--pb-tour-ch); color: #fff; }
  100% { transform: translateY(0); box-shadow: 0 1px 0 var(--pb-tour-key-border); }
}

/* Progress pills. */
.pb-tour-pills {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}
.pb-tour-pill {
  height: 4px;
  flex: 1;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.1);
  transition: background 0.4s var(--pb-tour-ease);
}
.pb-tour-pill-done { background: var(--pb-tour-grad); opacity: 0.7; }
.pb-tour-pill-current { background: var(--pb-tour-grad); box-shadow: 0 0 8px var(--pb-tour-halo); }

.pb-tour-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pb-tour-counter {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: var(--pb-tour-card-faint);
  margin-left: auto;
  margin-right: 2px;
}
.pb-tour-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  padding: 8px 14px;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: var(--pb-tour-card-dim);
  transition: transform 0.4s var(--pb-tour-spring), background 0.2s var(--pb-tour-ease), color 0.2s var(--pb-tour-ease);
}
.pb-tour-btn:hover:not(:disabled) { color: var(--pb-tour-card-heading); background: rgba(15, 23, 42, 0.05); }
.pb-tour-btn:active:not(:disabled) { transform: scale(0.96); }
.pb-tour-back { margin-right: -2px; }
.pb-tour-back:disabled { opacity: 0; pointer-events: none; }
.pb-tour-skip { color: var(--pb-tour-card-faint); }
.pb-tour-primary {
  background: var(--pb-tour-grad);
  color: #fff;
  box-shadow: 0 6px 18px var(--pb-tour-halo);
}
.pb-tour-primary:hover:not(:disabled) { color: #fff; filter: brightness(1.05); transform: translateY(-1px); }

.pb-tour-esc {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  font-size: 11px;
  color: var(--pb-tour-card-faint);
}
.pb-tour-esc .pb-tour-key { font-size: 10px; padding: 2px 5px; }

/* Entrance / exit + child stagger. */
.pb-tour-card-enter { animation: pb-tour-card-in 0.55s var(--pb-tour-ease) both; }
@keyframes pb-tour-card-in {
  from { opacity: 0; transform: scale(0.94); filter: blur(6px); }
  to { opacity: 1; filter: blur(0); }
}
.pb-tour-card-leave { animation: pb-tour-card-out 0.35s var(--pb-tour-ease) both; pointer-events: none; }
@keyframes pb-tour-card-out {
  to { opacity: 0; transform: scale(1.015); filter: blur(6px); }
}
.pb-tour-stagger {
  opacity: 0;
  animation: pb-tour-rise 0.7s var(--pb-tour-ease) both;
  animation-delay: var(--pb-tour-d, 0ms);
}
@keyframes pb-tour-rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════ Chapter hub ══════════════════════ */

/* Neutralize createModal's .pb-modal chrome so the .pb-tour-hub design is the
   whole surface. Double-classed selectors guarantee we beat .pb-modal. */
.pb-modal.pb-tour-hub-modal {
  background: transparent;
  box-shadow: none;
  border: 0;
  padding: 0;
  max-width: min(880px, 94vw);
  overflow: visible;
}
.pb-tour-hub-overlay .pb-modal-body {
  padding: 0;
  overflow: visible;
}
.pb-tour-hub-overlay .pb-modal-header {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 0;
  border: 0;
  background: transparent;
}
.pb-tour-hub-overlay .pb-modal-close { color: var(--pb-tour-card-dim); }

.pb-tour-hub {
  position: relative;
  width: min(880px, 94vw);
  max-height: 88vh;
  overflow: hidden auto;
  border-radius: 22px;
  padding: 34px 34px 30px;
  background: var(--pb-tour-card-bg);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.4);
  color: var(--pb-tour-card-fg);
  isolation: isolate;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
/* Masked grid backdrop (light register), inverted from the dark auth screen. */
.pb-tour-hub::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.6;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(90% 80% at 50% 30%, #000 30%, transparent 100%);
  mask-image: radial-gradient(90% 80% at 50% 30%, #000 30%, transparent 100%);
}
.pb-tour-hub::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.025;
  pointer-events: none;
  background-image: var(--pb-tour-grain);
}
@media (prefers-color-scheme: dark) {
  .pb-tour-hub::before {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  }
}

.pb-tour-hub-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--pb-tour-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.pb-tour-hub-title {
  font-size: 26px;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--pb-tour-card-heading);
  margin: 0 0 6px;
}
.pb-tour-hub-lede {
  font-size: 14px;
  color: var(--pb-tour-card-dim);
  margin: 0 0 22px;
  max-width: 52ch;
}

.pb-tour-hub-resume {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.24);
}
.pb-tour-hub-resume-text { flex: 1; }
.pb-tour-hub-resume-title { font-size: 14px; font-weight: 600; color: var(--pb-tour-card-heading); }
.pb-tour-hub-resume-sub { font-size: 12px; color: var(--pb-tour-card-dim); margin-top: 2px; }

.pb-tour-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}

.pb-tour-hub-card {
  position: relative;
  text-align: left;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(15, 23, 42, 0.08);
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  overflow: hidden;
  transform: perspective(700px) rotateX(0) rotateY(0);
  transition: transform 0.5s var(--pb-tour-spring), box-shadow 0.3s var(--pb-tour-ease), border-color 0.3s var(--pb-tour-ease);
  will-change: transform;
}
@media (prefers-color-scheme: dark) {
  .pb-tour-hub-card { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.08); }
}
.pb-tour-hub-card:hover {
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
  border-color: color-mix(in srgb, var(--pb-tour-ch) 40%, transparent);
}
.pb-tour-hub-card-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(240px circle at var(--pb-tour-mx, 50%) var(--pb-tour-my, 0%), rgba(255, 255, 255, 0.35), transparent 60%);
  transition: opacity 0.3s var(--pb-tour-ease);
}
.pb-tour-hub-card:hover .pb-tour-hub-card-sheen { opacity: 1; }

.pb-tour-hub-dot {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--pb-tour-grad);
  margin-bottom: 12px;
  box-shadow: 0 4px 12px var(--pb-tour-halo);
}
.pb-tour-hub-card-title {
  font-size: 15px;
  font-weight: 620;
  color: var(--pb-tour-card-heading);
  margin-bottom: 4px;
}
.pb-tour-hub-card-blurb { font-size: 12.5px; color: var(--pb-tour-card-dim); line-height: 1.45; }
.pb-tour-hub-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--pb-tour-card-faint);
}

/* Completion ring (SVG), staggered draw on open. */
.pb-tour-hub-ring {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
}
.pb-tour-hub-ring circle { fill: none; stroke-width: 3; }
.pb-tour-hub-ring .pb-tour-hub-ring-track { stroke: rgba(15, 23, 42, 0.1); }
.pb-tour-hub-ring .pb-tour-hub-ring-fill {
  stroke: var(--pb-tour-ch);
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 0.8s var(--pb-tour-ease);
}
.pb-tour-hub-card-done .pb-tour-hub-dot::after {
  content: '✓';
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 18px;
}

/* Chapter-complete interstitial. */
.pb-tour-complete { text-align: center; padding: 12px 8px; }
.pb-tour-complete-ring { width: 64px; height: 64px; margin: 0 auto 16px; }
.pb-tour-complete-title { font-size: 22px; font-weight: 650; color: var(--pb-tour-card-heading); margin-bottom: 6px; }
.pb-tour-complete-body { font-size: 14px; color: var(--pb-tour-card-dim); margin-bottom: 20px; max-width: 44ch; margin-inline: auto; }
.pb-tour-complete-actions { display: flex; gap: 10px; justify-content: center; }

/* Grand-completion confetti — one ~20-piece burst, only at the very end. */
.pb-tour-confetti { position: fixed; inset: 0; pointer-events: none; z-index: var(--pb-z-tour-card); overflow: hidden; }
.pb-tour-confetti span {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  opacity: 0;
  animation: pb-tour-confetti 1s var(--pb-tour-ease) forwards;
  animation-delay: var(--pb-tour-cd, 0ms);
}
@keyframes pb-tour-confetti {
  0% { opacity: 1; transform: translate(0, 0) rotate(0); }
  100% { opacity: 0; transform: translate(var(--pb-tour-cx, 0), var(--pb-tour-cy, -160px)) rotate(var(--pb-tour-cr, 360deg)); }
}

/* ══════════════════════ Accessibility ══════════════════════ */

@media (prefers-reduced-motion: reduce) {
  .pb-tour-word { animation: none; transform: none; }
  .pb-tour-card-enter,
  .pb-tour-card-leave,
  .pb-tour-stagger { animation-duration: 0.01ms; opacity: 1; transform: none; filter: none; }
  .pb-tour-ring.pb-tour-nudge::after,
  .pb-tour-ring.pb-tour-success::after { animation: none; opacity: 0; }
  .pb-tour-success .pb-tour-check { animation: none; opacity: 1; transform: scale(1); }
  .pb-tour-success .pb-tour-check-path { animation: none; stroke-dashoffset: 0; }
  .pb-tour-key-press,
  .pb-tour-confetti span { animation: none; opacity: 0; }
  .pb-tour-hub-card { transition-duration: 0.01ms; transform: none; }
  .pb-tour-scrim-path,
  .pb-tour-ring,
  .pb-tour-connector-path { transition-duration: 0.01ms; }
}

@media (prefers-reduced-transparency: reduce) {
  .pb-tour-card,
  .pb-tour-hub {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: #ffffff;
  }
  .pb-tour-card-grain,
  .pb-tour-hub::after { display: none; }
  @media (prefers-color-scheme: dark) {
    .pb-tour-card,
    .pb-tour-hub { background: #171b21; }
  }
}

@media (forced-colors: active) {
  .pb-tour-scrim-path { fill: Canvas; fill-opacity: 0.6; }
  .pb-tour-card,
  .pb-tour-hub { background: Canvas; color: CanvasText; forced-color-adjust: none; border: 1px solid CanvasText; }
  .pb-tour-ring::before { background: Highlight; }
  .pb-tour-connector-path { stroke: Highlight; }
  .pb-tour-primary { background: Highlight; color: HighlightText; }
  .pb-tour-pill-done,
  .pb-tour-pill-current { background: Highlight; }
  .pb-tour-key { border-color: CanvasText; }
}
