.exp-progression-toggle {
  position: fixed;
  right: 18px;
  bottom: 104px;
  z-index: 12040;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(6, 12, 28, .88);
  color: #fff;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 10px 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,.38);
  cursor: pointer;
}
.exp-progression-panel {
  position: fixed;
  top: 76px;
  right: 16px;
  width: min(390px, calc(100vw - 32px));
  max-height: calc(100vh - 110px);
  overflow: auto;
  z-index: 12050;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8,14,32,.96), rgba(7,10,22,.94));
  color: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.52);
  padding: 14px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.exp-progression-panel[hidden] { display: none !important; }
.exp-progression-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.exp-progression-eyebrow { color: #7ee7ff; font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.exp-progression-title { font-size: 22px; line-height: 1.05; font-weight: 950; margin-top: 2px; }
.exp-progression-close { border: 0; border-radius: 12px; background: rgba(255,255,255,.1); color: #fff; width: 34px; height: 34px; cursor: pointer; }
.exp-progression-card { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.055); border-radius: 18px; padding: 12px; margin-top: 10px; }
.exp-progression-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 7px 0; }
.exp-progression-label { color: rgba(255,255,255,.72); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.exp-progression-value { font-size: 14px; font-weight: 900; text-align: right; }
.exp-progression-meter { height: 9px; border-radius: 999px; background: rgba(255,255,255,.12); overflow: hidden; margin-top: 8px; }
.exp-progression-meter > span { display: block; height: 100%; width: 0%; border-radius: inherit; background: linear-gradient(90deg, #7ee7ff, #ffdf6b); }
.exp-progression-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.exp-progression-pill { border: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.2); border-radius: 14px; padding: 9px; }
.exp-progression-pill b { display: block; font-size: 13px; }
.exp-progression-pill span { color: rgba(255,255,255,.72); font-size: 12px; }
.exp-progression-btn { border: 0; border-radius: 12px; background: #fff; color: #07101f; font-weight: 950; padding: 8px 10px; cursor: pointer; }
.exp-progression-btn:disabled { opacity: .45; cursor: not-allowed; }
.exp-progression-wide { width: 100%; margin-top: 8px; }
.exp-progression-skill { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.exp-progression-skill:last-child { border-bottom: 0; }
.exp-progression-skill-name { font-weight: 950; font-size: 14px; }
.exp-progression-skill-desc { color: rgba(255,255,255,.66); font-size: 12px; margin-top: 2px; }
.exp-progression-note { color: rgba(255,255,255,.64); font-size: 12px; line-height: 1.35; margin-top: 8px; }
@media (max-width: 720px) {
  .exp-progression-toggle { right: 12px; bottom: 96px; }
  .exp-progression-panel { top: 58px; right: 10px; width: calc(100vw - 20px); }
}

/* EXP Tube progression panel layer fix */
.exp-progression-panel { isolation: isolate; pointer-events: auto; }
.exp-progression-toggle { pointer-events: auto; }

/* Progression menu usability fix */
.exp-progression-panel {
  touch-action: none;
  resize: both;
  min-width: 320px;
  min-height: 240px;
}
.exp-progression-head {
  cursor: grab;
  user-select: none;
  border-radius: 14px;
  padding: 4px 4px 8px;
}
.exp-progression-panel.is-dragging .exp-progression-head { cursor: grabbing; }
.exp-progression-drag-note {
  margin-top: 4px;
  color: rgba(255,255,255,.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
}
.exp-progression-job-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 720px) {
  .exp-progression-panel { min-width: 280px; resize: none; }
  .exp-progression-job-row { grid-template-columns: 1fr; }
}

.exp-progression-status {
  margin: 8px 14px 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(35, 120, 255, 0.18);
  border: 1px solid rgba(120, 185, 255, 0.45);
  color: #eaf6ff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.exp-progression-status.is-bad {
  background: rgba(255, 70, 70, 0.18);
  border-color: rgba(255, 130, 130, 0.5);
}
.exp-progression-btn.is-pending {
  opacity: 0.65;
  cursor: wait;
}
