.mwt-shell,
.mwt-shell * {
  box-sizing: border-box;
}

.mwt-shell {
  --mwt-ink: #07131d;
  --mwt-panel: rgba(7, 18, 29, 0.97);
  --mwt-panel-soft: rgba(10, 27, 40, 0.94);
  --mwt-line: rgba(185, 151, 86, 0.34);
  --mwt-line-soft: rgba(146, 180, 176, 0.18);
  --mwt-gold: #d4ad62;
  --mwt-gold-bright: #f0d493;
  --mwt-parchment: #fff0cf;
  --mwt-muted: #c6d3d2;
  --mwt-teal: #5fc6b6;
  --mwt-cyan: #65b9dd;
  --mwt-green: #8ed5a4;
  --mwt-red: #dc806e;
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: 100%;
  height: clamp(520px, calc(100dvh - 108px), 790px);
  min-height: 0;
  overflow: hidden;
  color: var(--mwt-parchment);
  border: 1px solid var(--mwt-line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 55% -30%, rgba(68, 127, 126, 0.12), transparent 42%),
    linear-gradient(145deg, #07131e, #030a11 72%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 236, 189, 0.05);
  isolation: isolate;
}

.mwt-kicker {
  display: block;
  color: #91c9bf;
  font-family: var(--font-ui, sans-serif);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mwt-header {
  z-index: 3;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 15px 9px;
  border-bottom: 1px solid var(--mwt-line);
  background:
    linear-gradient(90deg, rgba(8, 21, 33, 0.98), rgba(10, 30, 42, 0.95)),
    url("assets/expeditions/lantern-herb-run.webp");
  background-position: center;
  background-size: cover;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.mwt-title,
.mwt-title > div {
  min-width: 0;
}

.mwt-title {
  display: flex;
  align-items: center;
  gap: 11px;
}

.mwt-title h1 {
  margin: 2px 0 0;
  overflow: hidden;
  color: var(--mwt-parchment);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(20px, 1.55vw, 27px);
  font-weight: 700;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mwt-title p {
  margin: 4px 0 0;
  overflow: hidden;
  color: rgba(220, 231, 228, 0.88);
  font-size: 11px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mwt-compass {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--mwt-gold-bright);
  border: 1px solid rgba(212, 173, 98, 0.58);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 173, 98, 0.15), rgba(3, 11, 18, 0.9) 68%);
  box-shadow: 0 0 22px rgba(212, 173, 98, 0.12), inset 0 0 0 4px rgba(212, 173, 98, 0.04);
  font-size: 20px;
}

.mwt-overview {
  display: flex;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(212, 173, 98, 0.3);
  border-radius: 7px;
  background: rgba(2, 10, 16, 0.6);
}

.mwt-overview > div {
  display: grid;
  min-width: 66px;
  place-items: center;
  gap: 1px;
  padding: 7px 10px 6px;
  border-left: 1px solid rgba(212, 173, 98, 0.16);
}

.mwt-overview > div:first-child {
  border-left: 0;
}

.mwt-overview strong {
  color: var(--mwt-parchment);
  font-family: var(--font-serif, Georgia, serif);
  font-size: 16px;
  line-height: 1;
}

.mwt-overview span {
  color: var(--mwt-muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mwt-overview .is-ready strong { color: var(--mwt-teal); }
.mwt-overview .is-away strong { color: var(--mwt-cyan); }
.mwt-overview .is-report strong { color: var(--mwt-green); }
.mwt-overview .is-contract strong { color: var(--mwt-gold-bright); }

.mwt-workspace {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-columns: minmax(270px, 0.35fr) minmax(430px, 1fr) minmax(290px, 0.36fr);
  gap: 7px;
  padding: 7px;
}

.mwt-roster,
.mwt-map,
.mwt-docket {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--mwt-line-soft);
  border-radius: 8px;
  background: var(--mwt-panel);
}

.mwt-panel-heading {
  display: flex;
  height: 35px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 10px;
  color: var(--mwt-gold-bright);
  border-bottom: 1px solid var(--mwt-line-soft);
  font-family: var(--font-serif, Georgia, serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mwt-panel-heading small {
  color: rgba(210, 222, 220, 0.86);
  font-family: var(--font-ui, sans-serif);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.mwt-roster {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.mwt-roster__grid {
  display: grid;
  min-height: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
}

.mwt-merc-slot {
  position: relative;
  min-width: 0;
  min-height: 0;
}

.mwt-merc-slot .mwt-merc-card {
  width: 100%;
  height: 100%;
}

.mwt-merc-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  grid-template-columns: minmax(42px, 0.42fr) minmax(0, 1fr);
  gap: 7px;
  padding: 6px;
  color: var(--mwt-parchment);
  border: 1px solid rgba(123, 157, 157, 0.2);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(18, 38, 50, 0.88), rgba(5, 16, 25, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  text-align: left;
  transition: border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.mwt-merc-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: transparent;
  content: "";
}

.mwt-merc-card:hover,
.mwt-merc-card:focus-visible {
  z-index: 2;
  border-color: rgba(212, 173, 98, 0.62);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.34), inset 0 0 24px rgba(212, 173, 98, 0.04);
  outline: 0;
  transform: translateY(-1px);
}

.mwt-merc-card.is-selected {
  border-color: var(--mwt-gold);
  background: linear-gradient(145deg, rgba(47, 53, 45, 0.96), rgba(7, 19, 27, 0.98));
  box-shadow: 0 0 0 2px rgba(242, 199, 111, 0.36), 0 0 18px rgba(212, 173, 98, 0.2), inset 4px 0 0 var(--mwt-gold-bright), inset 0 0 32px rgba(212, 173, 98, 0.12);
}

.mwt-merc-card.is-selected::after { background: linear-gradient(90deg, transparent, var(--mwt-gold-bright), transparent); }
.mwt-merc-card.is-away::after { background: linear-gradient(90deg, transparent, var(--mwt-cyan), transparent); }
.mwt-merc-card.is-report::after { background: linear-gradient(90deg, transparent, var(--mwt-green), transparent); }
.mwt-merc-card.is-combat::after { background: linear-gradient(90deg, transparent, #d9a15d, transparent); }

.mwt-merc-card__portrait {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 173, 98, 0.25);
  border-radius: 4px;
  background: #07131e;
}

.mwt-merc-card__portrait img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(1.03);
}

.mwt-merc-card.is-locked:not(.is-contract) .mwt-merc-card__portrait img {
  filter: grayscale(0.85) brightness(0.5);
}

.mwt-merc-card__body {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.mwt-merc-card__head {
  display: block;
  min-width: 0;
}

.mwt-merc-card__head strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--mwt-parchment);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(12px, 0.8vw, 14px);
  line-height: 1.1;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mwt-state-chip {
  display: inline-flex;
  max-width: 100%;
  margin-top: 5px;
  align-items: center;
  gap: 4px;
  padding: 3px 6px;
  overflow: hidden;
  color: var(--mwt-muted);
  border: 1px solid rgba(174, 188, 192, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.mwt-state-chip::before {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 7px currentColor;
  content: "";
}

.mwt-state-chip.is-ready { color: var(--mwt-teal); }
.mwt-state-chip.is-away { color: var(--mwt-cyan); }
.mwt-state-chip.is-report { color: var(--mwt-green); }
.mwt-state-chip.is-combat { color: #e5b868; }
.mwt-state-chip.is-contract { color: var(--mwt-gold-bright); }
.mwt-state-chip.is-locked { color: #778188; box-shadow: none; }

.mwt-merc-card__meta,
.mwt-contract-level {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(215, 226, 224, 0.9);
  font-size: 9px;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mwt-readiness {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px;
}

.mwt-readiness__track {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.mwt-readiness__track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #548f84, #72d2bc);
  box-shadow: 0 0 8px rgba(95, 198, 182, 0.45);
}

.mwt-readiness__value {
  color: #b3eadf;
  font-size: 8.5px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.mwt-merc-dossier-button {
  position: absolute;
  z-index: 5;
  top: 7px;
  right: 7px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #ffe4a3;
  border: 1px solid rgba(240, 199, 112, 0.8);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #3d5260, #0a1721 72%);
  box-shadow: 0 0 0 2px rgba(6, 17, 25, 0.75), 0 0 16px rgba(240, 199, 112, 0.62);
  font-size: 14px;
  line-height: 1;
  animation: mwt-dossier-glow 1.8s ease-in-out infinite alternate;
}

.mwt-merc-dossier-button:hover,
.mwt-merc-dossier-button:focus-visible {
  color: #fff4d6;
  border-color: #ffe0a0;
  outline: 1px solid rgba(255, 237, 196, 0.48);
  outline-offset: 2px;
  filter: brightness(1.14);
}

@keyframes mwt-dossier-glow {
  from { box-shadow: 0 0 0 2px rgba(6, 17, 25, 0.75), 0 0 9px rgba(240, 199, 112, 0.38); }
  to { box-shadow: 0 0 0 2px rgba(6, 17, 25, 0.75), 0 0 18px rgba(240, 199, 112, 0.78); }
}

.mwt-map {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #c5b384;
  box-shadow: inset 0 0 50px rgba(34, 24, 13, 0.35);
}

.mwt-map__topline {
  z-index: 5;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 10px;
  color: var(--mwt-parchment);
  border-bottom: 1px solid rgba(212, 173, 98, 0.35);
  background: rgba(6, 18, 27, 0.97);
}

.mwt-map__topline strong {
  display: block;
  margin-top: 2px;
  font-family: var(--font-serif, Georgia, serif);
  font-size: 14px;
}

.mwt-mobile-docket-button {
  display: none;
  padding: 6px 9px;
  color: var(--mwt-gold-bright);
  border: 1px solid rgba(212, 173, 98, 0.38);
  border-radius: 5px;
  background: rgba(212, 173, 98, 0.08);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mwt-map__canvas {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background-color: #b7a777;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mwt-map__canvas::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 12, 19, 0.05), transparent 18%, transparent 78%, rgba(3, 12, 19, 0.12)),
    radial-gradient(ellipse at center, transparent 55%, rgba(30, 21, 10, 0.13));
  content: "";
}

.mwt-map-node {
  --node-color: #4f9e90;
  position: absolute;
  z-index: 3;
  display: flex;
  width: max-content;
  max-width: 140px;
  align-items: center;
  gap: 5px;
  padding: 0;
  color: #f5ead0;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 3px 4px rgba(35, 23, 10, 0.48));
  text-align: left;
  transform: translate(-50%, -50%);
}

.mwt-map-node__seal {
  position: relative;
  display: grid;
  width: clamp(29px, 2.3vw, 39px);
  height: clamp(29px, 2.3vw, 39px);
  flex: 0 0 clamp(29px, 2.3vw, 39px);
  overflow: hidden;
  place-items: center;
  color: #ecdfbf;
  border: 2px solid var(--node-color);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #1b3540, #06131d 72%);
  box-shadow: 0 0 0 3px rgba(4, 15, 22, 0.78), 0 0 14px color-mix(in srgb, var(--node-color) 52%, transparent);
  font-family: var(--font-serif, Georgia, serif);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.mwt-map-node__seal::after {
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 244, 216, 0.17);
  border-radius: 50%;
  content: "";
}

.mwt-map-node__seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mwt-map-node__label {
  display: grid;
  min-width: 0;
  padding: 4px 7px 4px 6px;
  border: 1px solid color-mix(in srgb, var(--node-color) 50%, rgba(8, 20, 28, 0.65));
  border-left: 2px solid var(--node-color);
  border-radius: 3px;
  background: rgba(5, 17, 25, 0.91);
  box-shadow: 0 3px 10px rgba(20, 13, 7, 0.34);
  backdrop-filter: blur(3px);
}

.mwt-map-node__label strong {
  overflow: hidden;
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(9px, 0.66vw, 12px);
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mwt-map-node__label small {
  margin-top: 2px;
  color: var(--node-color);
  font-size: 7.5px;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.mwt-map-node:hover,
.mwt-map-node:focus-visible {
  z-index: 10;
  outline: 0;
}

.mwt-map-node:hover .mwt-map-node__seal,
.mwt-map-node:focus-visible .mwt-map-node__seal,
.mwt-map-node.is-focused .mwt-map-node__seal {
  transform: scale(1.08);
  box-shadow: 0 0 0 3px rgba(4, 15, 22, 0.88), 0 0 22px color-mix(in srgb, var(--node-color) 76%, transparent);
}

.mwt-map-node.is-focused .mwt-map-node__label {
  border-color: var(--node-color);
  background: rgba(5, 17, 25, 0.97);
}

.mwt-map-node.is-marked .mwt-map-node__seal {
  color: #1a1308;
  border-color: #ffe3a0;
  background: radial-gradient(circle at 35% 30%, #ffe4a3, #b88230 74%);
  box-shadow: 0 0 0 4px rgba(30, 20, 8, 0.88), 0 0 25px rgba(242, 199, 111, 0.9);
  transform: scale(1.13);
}

.mwt-map-node.is-marked .mwt-map-node__label {
  border-color: #f2c76f;
  border-left-width: 4px;
  background: linear-gradient(90deg, rgba(79, 55, 19, 0.98), rgba(6, 18, 26, 0.98));
  box-shadow: 0 0 0 1px rgba(255, 225, 157, 0.2), 0 5px 18px rgba(30, 19, 7, 0.48);
}

.mwt-map-node.is-available { --node-color: #55b7a5; }
.mwt-map-node.is-marked { --node-color: #e7bd68; }
.mwt-map-node.is-active { --node-color: #64bde6; }
.mwt-map-node.is-queued { --node-color: #8eaad8; }
.mwt-map-node.is-report { --node-color: #8bd29e; }
.mwt-map-node.is-report .mwt-map-node__seal {
  border-color: #b8f2c5;
  box-shadow: 0 0 0 3px rgba(5, 25, 18, 0.9), 0 0 24px rgba(139, 210, 158, 0.74);
}
.mwt-map-node.is-report .mwt-map-node__label {
  border-color: rgba(139, 210, 158, 0.8);
  background: linear-gradient(90deg, rgba(19, 69, 48, 0.98), rgba(5, 18, 25, 0.98));
}
.mwt-map-node.is-locked { --node-color: #747c7e; filter: grayscale(0.45) drop-shadow(0 3px 4px rgba(35, 23, 10, 0.42)); }
.mwt-map-node.is-blocked { --node-color: #ce7668; }

.mwt-map__legend {
  z-index: 5;
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 17px);
  padding: 5px 8px;
  border-top: 1px solid rgba(212, 173, 98, 0.3);
  background: rgba(5, 17, 25, 0.97);
}

.mwt-map__legend span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(225, 233, 230, 0.88);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mwt-map__legend i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
}

.mwt-map__legend .is-available { color: #55b7a5; }
.mwt-map__legend .is-marked { color: #e7bd68; }
.mwt-map__legend .is-active { color: #64bde6; }
.mwt-map__legend .is-report { color: #8bd29e; }
.mwt-map__legend .is-locked { color: #747c7e; }

.mwt-docket {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-color: rgba(212, 173, 98, 0.35) transparent;
  scrollbar-width: thin;
}

.mwt-docket__header {
  display: flex;
  flex: 0 0 auto;
  min-height: 66px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 11px 8px;
  border-bottom: 1px solid var(--mwt-line-soft);
  background: linear-gradient(135deg, rgba(19, 42, 52, 0.75), rgba(6, 17, 26, 0.9));
}

.mwt-docket__header h2 {
  margin: 3px 0 0;
  color: var(--mwt-parchment);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1;
}

.mwt-docket__header p {
  margin: 4px 0 0;
  color: rgba(218, 228, 226, 0.9);
  font-size: 10.5px;
}

.mwt-icon-button {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  padding: 0;
  color: var(--mwt-gold-bright);
  border: 1px solid rgba(212, 173, 98, 0.34);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  font-size: 17px;
  line-height: 1;
}

.mwt-close-glyph {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
}

.mwt-close-glyph::before,
.mwt-close-glyph::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform-origin: center;
}

.mwt-close-glyph::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mwt-close-glyph::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mwt-docket__close { display: none; }

.mwt-route-art {
  position: relative;
  flex: 0 0 clamp(98px, 13vh, 132px);
  overflow: hidden;
  border-bottom: 1px solid var(--mwt-line-soft);
  background-position: center;
  background-size: cover;
}

.mwt-route-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 11, 18, 0.72), transparent 55%), linear-gradient(0deg, rgba(3, 11, 18, 0.65), transparent 55%);
  content: "";
}

.mwt-route-art__badges {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 5px;
}

.mwt-route-art__badges span {
  padding: 3px 6px;
  color: #e7dbc0;
  border: 1px solid rgba(231, 219, 192, 0.32);
  border-radius: 3px;
  background: rgba(3, 11, 18, 0.78);
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mwt-route-art__badges .is-easy { color: #88d4b7; }
.mwt-route-art__badges .is-normal { color: #7fc6de; }
.mwt-route-art__badges .is-hard { color: #d2a8e4; }
.mwt-route-art__badges .is-elite { color: #e4b46b; }

.mwt-progress-block,
.mwt-route-status,
.mwt-selection-banner,
.mwt-stat-grid,
.mwt-chance-breakdown,
.mwt-rewards,
.mwt-itinerary,
.mwt-docket__hint,
.mwt-docket__actions {
  flex: 0 0 auto;
  margin: 7px 9px 0;
}

.mwt-route-status,
.mwt-selection-banner {
  display: grid;
  gap: 3px;
  padding: 7px 9px;
  border: 1px solid rgba(212, 173, 98, 0.38);
  border-left: 4px solid var(--mwt-gold-bright);
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(67, 47, 18, 0.58), rgba(7, 22, 31, 0.74));
}

.mwt-route-status strong,
.mwt-selection-banner strong {
  color: #ffe3a0;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mwt-route-status span,
.mwt-selection-banner span {
  color: rgba(238, 234, 219, 0.94);
  font-size: 11px;
  line-height: 1.35;
}

.mwt-route-status.is-active,
.mwt-route-status.is-queued {
  border-color: rgba(100, 189, 230, 0.42);
  border-left-color: var(--mwt-cyan);
  background: linear-gradient(90deg, rgba(26, 66, 84, 0.62), rgba(7, 22, 31, 0.74));
}

.mwt-route-status.is-report {
  border-color: rgba(139, 210, 158, 0.42);
  border-left-color: var(--mwt-green);
  background: linear-gradient(90deg, rgba(28, 69, 49, 0.58), rgba(7, 22, 31, 0.74));
}

.mwt-progress-block > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  color: var(--mwt-muted);
  font-size: 9.5px;
}

.mwt-progress-block strong { color: var(--mwt-cyan); font-variant-numeric: tabular-nums; }

.mwt-progress-track {
  height: 5px;
  margin-top: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.mwt-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4b8ca7, #72d5e8);
  box-shadow: 0 0 10px rgba(101, 185, 221, 0.42);
}

.mwt-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--mwt-line-soft);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.2);
}

.mwt-stat-grid > div {
  display: grid;
  gap: 2px;
  padding: 6px 8px;
  border-top: 1px solid var(--mwt-line-soft);
  border-left: 1px solid var(--mwt-line-soft);
}

.mwt-stat-grid > div:nth-child(-n+2) { border-top: 0; }
.mwt-stat-grid > div:nth-child(odd) { border-left: 0; }

.mwt-stat-grid span,
.mwt-chance-breakdown span {
  color: rgba(215, 226, 224, 0.88);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mwt-stat-grid strong {
  color: var(--mwt-parchment);
  font-family: var(--font-serif, Georgia, serif);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.mwt-stat-grid strong.is-good,
.mwt-chance-breakdown strong.is-good { color: var(--mwt-green); }
.mwt-stat-grid strong.is-risky,
.mwt-chance-breakdown strong.is-risky { color: var(--mwt-red); }

.mwt-chance-breakdown {
  display: grid;
  gap: 3px;
  padding: 5px 7px;
  border: 1px solid rgba(105, 159, 157, 0.14);
  border-radius: 4px;
  background: rgba(8, 28, 36, 0.35);
}

.mwt-chance-breakdown > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mwt-chance-breakdown strong { color: #e3ece8; font-size: 9.5px; font-variant-numeric: tabular-nums; }

.mwt-rewards {
  padding-top: 7px;
  border-top: 1px solid var(--mwt-line-soft);
}

.mwt-rewards > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 5px;
}

.mwt-rewards > div > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 6px;
  color: #f0e2c5;
  border: 1px solid rgba(212, 173, 98, 0.2);
  border-radius: 3px;
  background: rgba(212, 173, 98, 0.06);
  font-size: 9px;
}

.mwt-rewards i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--mwt-gold-bright);
  transform: rotate(45deg);
}

.mwt-itinerary {
  display: flex;
  min-height: 30px;
  flex-wrap: wrap;
  gap: 4px;
}

.mwt-itinerary > span,
.mwt-itinerary > button {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
  padding: 3px 6px;
  color: var(--mwt-muted);
  border: 1px solid rgba(133, 162, 162, 0.18);
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 8.5px;
}

.mwt-itinerary b {
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  color: var(--mwt-gold-bright);
  border: 1px solid rgba(212, 173, 98, 0.32);
  border-radius: 50%;
  font-size: 8px;
}

.mwt-itinerary em {
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mwt-itinerary .is-current { color: var(--mwt-cyan); border-color: rgba(101, 185, 221, 0.38); }

.mwt-docket__hint {
  min-height: 30px;
  padding: 6px 7px;
  color: rgba(220, 230, 228, 0.9);
  border: 1px dashed rgba(174, 188, 192, 0.18);
  border-radius: 4px;
  font-size: 9.5px;
  line-height: 1.35;
}

.mwt-docket__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
  margin-top: auto;
  padding: 8px 0 9px;
}

.mwt-primary-button,
.mwt-secondary-button,
.mwt-danger-button {
  min-height: 31px;
  padding: 7px 9px;
  border-radius: 4px;
  font-family: var(--font-ui, sans-serif);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.1;
  text-transform: uppercase;
}

.mwt-primary-button {
  color: #07141b;
  border: 1px solid #80d7c2;
  background: linear-gradient(180deg, #9ae9d4, #67c6ae);
  box-shadow: 0 6px 16px rgba(72, 183, 154, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.mwt-secondary-button {
  color: var(--mwt-gold-bright);
  border: 1px solid rgba(212, 173, 98, 0.4);
  background: linear-gradient(180deg, rgba(212, 173, 98, 0.11), rgba(212, 173, 98, 0.04));
}

.mwt-danger-button {
  color: #f0c0b6;
  border: 1px solid rgba(220, 128, 110, 0.52);
  background: rgba(113, 42, 37, 0.28);
}

.mwt-primary-button:hover:not(:disabled),
.mwt-secondary-button:hover:not(:disabled),
.mwt-danger-button:hover:not(:disabled),
.mwt-primary-button:focus-visible,
.mwt-secondary-button:focus-visible,
.mwt-danger-button:focus-visible {
  filter: brightness(1.09);
  outline: 1px solid rgba(255, 242, 207, 0.35);
  outline-offset: 2px;
}

.mwt-primary-button:disabled,
.mwt-secondary-button:disabled,
.mwt-danger-button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.55);
  opacity: 0.45;
}

.mwt-modal-backdrop {
  position: fixed;
  z-index: 2147483000;
  inset: 0;
  display: grid;
  width: calc(100vw / var(--vespera-ui-scale, 1));
  height: calc(100dvh / var(--vespera-ui-scale, 1));
  box-sizing: border-box;
  place-items: center;
  padding: 18px;
  background: rgba(0, 5, 9, 0.8);
  backdrop-filter: blur(8px);
}

.mwt-dossier {
  display: grid;
  width: min(820px, calc((100vw / var(--vespera-ui-scale, 1)) - 32px));
  max-height: min(760px, calc((100dvh / var(--vespera-ui-scale, 1)) - 32px));
  overflow: hidden;
  grid-template-rows: auto minmax(0, 1fr);
  color: var(--mwt-parchment);
  border: 1px solid rgba(212, 173, 98, 0.52);
  border-radius: 9px;
  background: linear-gradient(145deg, #0b2030, #050f18 74%);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.68), inset 0 1px 0 rgba(255, 243, 210, 0.06);
}

.mwt-dossier__hero {
  position: relative;
  display: grid;
  min-height: 96px;
  align-items: center;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 13px;
  overflow: hidden;
  padding: 10px 13px;
  border-bottom: 1px solid rgba(212, 173, 98, 0.28);
  background: linear-gradient(90deg, rgba(24, 50, 60, 0.86), rgba(5, 16, 24, 0.95));
}

.mwt-dossier__hero > img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(212, 173, 98, 0.5);
  border-radius: 5px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.36);
}

.mwt-dossier__hero h2 {
  margin: 4px 0 0;
  color: var(--mwt-parchment);
  font-family: var(--font-serif, Georgia, serif);
  font-size: 25px;
  line-height: 1;
}

.mwt-dossier__hero p {
  margin: 5px 0 0;
  color: #9dc7c0;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mwt-mercenary-xp {
  width: min(280px, 100%);
  margin-top: 7px;
}

.mwt-mercenary-xp__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #cce6e1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mwt-mercenary-xp__label strong {
  color: var(--mwt-gold-bright);
  font-size: 9px;
}

.mwt-mercenary-xp__track {
  height: 5px;
  margin-top: 4px;
  overflow: hidden;
  border: 1px solid rgba(95, 198, 182, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
}

.mwt-mercenary-xp__track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4aa998, #86e1d0);
  box-shadow: 0 0 8px rgba(95, 198, 182, 0.36);
}

.mwt-dossier__scroll {
  min-height: 0;
  overflow-y: auto;
  scrollbar-color: rgba(212, 173, 98, 0.38) transparent;
  scrollbar-width: thin;
}

.mwt-dossier__content {
  display: grid;
  gap: 9px;
  padding: 10px;
}

.mwt-dossier-section {
  padding: 11px;
  border: 1px solid rgba(134, 165, 162, 0.18);
  border-radius: 6px;
  background: rgba(3, 12, 19, 0.42);
}

.mwt-contract {
  border-color: rgba(212, 173, 98, 0.35);
  background: linear-gradient(135deg, rgba(212, 173, 98, 0.11), rgba(3, 12, 19, 0.45));
}

.mwt-contract h3,
.mwt-section-heading h3 {
  margin: 3px 0 0;
  color: var(--mwt-parchment);
  font-family: var(--font-serif, Georgia, serif);
  font-size: 17px;
}

.mwt-contract p,
.mwt-section-copy {
  margin: 6px 0 9px;
  color: rgba(219, 229, 226, 0.9);
  font-size: 10.5px;
  line-height: 1.45;
}

.mwt-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.mwt-ability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.mwt-ability-card {
  display: grid;
  align-items: center;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 9px;
  padding: 8px;
  border: 1px solid rgba(212, 173, 98, 0.18);
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(16, 37, 48, 0.75), rgba(2, 10, 16, 0.6));
}

.mwt-ability-card img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid rgba(212, 173, 98, 0.32);
  border-radius: 4px;
}

.mwt-ability-card span {
  display: block;
  color: #a8ddd3;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mwt-ability-card strong {
  display: block;
  margin-top: 2px;
  color: var(--mwt-parchment);
  font-family: var(--font-serif, Georgia, serif);
  font-size: 14px;
}

.mwt-ability-card p {
  margin: 3px 0 0;
  color: rgba(215, 226, 224, 0.88);
  font-size: 9.5px;
  line-height: 1.35;
}

.mwt-ability-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.mwt-ability-card__stat {
  min-width: 96px;
  padding: 4px 6px;
  border: 1px solid rgba(95, 198, 182, 0.22);
  border-radius: 4px;
  background: rgba(95, 198, 182, 0.07);
}

.mwt-ability-card__stat:focus-visible {
  outline: 2px solid rgba(115, 221, 204, 0.78);
  outline-offset: 2px;
}

.mwt-ability-card__stat small {
  display: block;
  color: #a8d7cf;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mwt-ability-card__stat strong {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 2px;
  font-family: inherit;
  line-height: 1.15;
}

.mwt-ability-card__stat b {
  color: var(--mwt-gold-bright);
  font-size: 11px;
}

.mwt-ability-card__stat em {
  color: #eef5f2;
  font-size: 8.5px;
  font-style: normal;
  font-weight: 650;
}

.mwt-point-count,
.mwt-order-state {
  padding: 4px 7px;
  color: var(--mwt-gold-bright);
  border: 1px solid rgba(212, 173, 98, 0.25);
  border-radius: 999px;
  background: rgba(212, 173, 98, 0.06);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mwt-order-state {
  cursor: help;
}

.mwt-order-state:focus-visible {
  outline: 2px solid rgba(115, 221, 204, 0.78);
  outline-offset: 2px;
}

.mwt-order-state.is-on { color: var(--mwt-teal); border-color: rgba(95, 198, 182, 0.32); }

.mwt-talent-track {
  display: grid;
  grid-template-columns: repeat(10, minmax(8px, 1fr));
  gap: 4px;
}

.mwt-talent-track span {
  height: 8px;
  border: 1px solid rgba(174, 188, 192, 0.14);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.04);
}

.mwt-talent-track .is-learned { border-color: rgba(95, 198, 182, 0.6); background: var(--mwt-teal); box-shadow: 0 0 7px rgba(95, 198, 182, 0.32); }
.mwt-talent-track .is-ready { border-color: rgba(240, 212, 147, 0.8); background: var(--mwt-gold-bright); box-shadow: 0 0 8px rgba(240, 212, 147, 0.4); }

.mwt-training-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 9px;
}

.mwt-training-costs {
  min-width: 0;
}

.mwt-cost-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.mwt-cost-list span {
  padding: 3px 6px;
  color: #e0e9e5;
  border: 1px solid rgba(134, 165, 162, 0.18);
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.22);
  font-size: 9px;
}

.mwt-cost-list span.is-missing { color: #e29382; border-color: rgba(220, 128, 110, 0.35); }

.mwt-material-source {
  margin: 6px 0 0;
  color: #f0d493;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.mwt-order-routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.mwt-order-routes button,
.mwt-order-controls button,
.mwt-order-controls label {
  min-width: 0;
  padding: 6px 7px;
  color: #d6e1de;
  border: 1px solid rgba(134, 165, 162, 0.2);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.22);
  font-size: 9px;
  text-align: left;
}

.mwt-order-routes button.is-selected,
.mwt-order-controls button.is-selected,
.mwt-order-failure-policy button.is-selected {
  color: var(--mwt-gold-bright);
  border-color: rgba(212, 173, 98, 0.5);
  background: rgba(212, 173, 98, 0.09);
}

.mwt-order-failure-policy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
  padding: 6px 7px;
  color: #d6e1de;
  border: 1px solid rgba(134, 165, 162, 0.2);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.22);
  font-size: 9px;
}

.mwt-order-failure-policy button {
  flex: 0 0 auto;
  min-width: 44px;
  padding: 4px 9px;
  color: #d6e1de;
  border: 1px solid rgba(134, 165, 162, 0.26);
  border-radius: 4px;
  background: rgba(3, 13, 20, 0.72);
  font-size: 9px;
  text-align: center;
}

.mwt-order-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  margin-top: 6px;
}

.mwt-order-readiness {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.mwt-order-readiness__select {
  flex: 0 0 64px;
  width: 64px;
}

.mwt-order-readiness__trigger {
  min-height: 24px;
  padding: 3px 6px;
  color: var(--mwt-gold-bright);
  border-color: rgba(212, 173, 98, 0.3);
  border-radius: 3px;
  background: #07131d;
  font: 700 9px/1.2 var(--font-body, sans-serif);
}

.mwt-locked-note {
  padding: 8px;
  color: rgba(174, 188, 192, 0.68);
  border: 1px dashed rgba(174, 188, 192, 0.2);
  border-radius: 4px;
  font-size: 9px;
}

@media (max-width: 1240px) {
  .mwt-workspace {
    grid-template-columns: minmax(245px, 0.36fr) minmax(430px, 1fr);
  }

  .mwt-docket {
    position: absolute;
    z-index: 40;
    top: 7px;
    right: 7px;
    bottom: 7px;
    width: min(340px, calc(100% - 22px));
    border-color: rgba(212, 173, 98, 0.58);
    box-shadow: -18px 0 50px rgba(0, 0, 0, 0.52);
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
    transition: opacity 150ms ease, transform 150ms ease;
  }

  .mwt-docket.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mwt-docket__close,
  .mwt-mobile-docket-button { display: grid; }
}

@media (max-width: 900px) {
  .mwt-header { padding-inline: 10px; }
  .mwt-title p { display: none; }
  .mwt-overview > div { min-width: 54px; padding-inline: 7px; }
  .mwt-workspace { grid-template-columns: 232px minmax(360px, 1fr); }
  .mwt-roster__grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, minmax(0, 1fr)); }
  .mwt-merc-card { grid-template-columns: 46px minmax(0, 1fr); }
  .mwt-merc-card__head { display: flex; align-items: center; justify-content: space-between; gap: 5px; }
  .mwt-state-chip { margin-top: 0; }
  .mwt-map-node__label strong { font-size: 8px; }
  .mwt-map-node__label { padding-inline: 5px; }
}

@media (max-width: 700px) {
  .mwt-shell { height: auto; min-height: 720px; overflow: visible; }
  .mwt-header { align-items: flex-start; }
  .mwt-compass { display: none; }
  .mwt-overview { display: grid; grid-template-columns: repeat(2, 1fr); }
  .mwt-overview > div:nth-child(3) { border-top: 1px solid rgba(212, 173, 98, 0.16); }
  .mwt-workspace { display: grid; grid-template-columns: 1fr; grid-template-rows: 230px 470px; }
  .mwt-roster__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); }
  .mwt-merc-card { grid-template-columns: 38px minmax(0, 1fr); }
  .mwt-merc-card__meta { display: none; }
  .mwt-map__legend { gap: 7px; }
  .mwt-map__legend span { font-size: 6px; }
  .mwt-map-node__label { display: none; }
  .mwt-dossier__hero { grid-template-columns: 58px minmax(0, 1fr) auto; }
  .mwt-dossier__hero > img { width: 58px; height: 58px; }
  .mwt-ability-grid,
  .mwt-order-routes,
  .mwt-order-controls { grid-template-columns: 1fr; }
}

@media (max-height: 670px) and (min-width: 701px) {
  .mwt-shell { height: calc(100dvh - 92px); }
  .mwt-header { min-height: 62px; padding-block: 7px; }
  .mwt-title p { display: none; }
  .mwt-compass { width: 36px; height: 36px; flex-basis: 36px; }
  .mwt-panel-heading { height: 29px; }
  .mwt-route-art { flex-basis: 90px; }
  .mwt-chance-breakdown { display: none; }
  .mwt-stat-grid > div { padding-block: 4px; }
  .mwt-rewards > div > span { padding-block: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  .mwt-merc-card,
  .mwt-docket,
  .mwt-map-node__seal { transition: none !important; }
  .mwt-merc-dossier-button { animation: none !important; }
}

/* Dense command surfaces must remain readable in the Steam client at 100% UI scale. */
.mwt-shell,
.mwt-shell * {
  font-family: "Segoe UI", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif !important;
}

.mwt-kicker { font-size: 11px; line-height: 1.3; }
.mwt-title p { font-size: 12px; line-height: 1.35; }
.mwt-overview span { font-size: 10px; line-height: 1.2; }
.mwt-panel-heading { font-size: 13px; }
.mwt-panel-heading small { font-size: 10px; }
.mwt-merc-card__head strong { font-size: clamp(13px, 0.82vw, 15px); line-height: 1.2; }
.mwt-state-chip { font-size: 10px; line-height: 1.2; }
.mwt-merc-card__meta,
.mwt-contract-level { font-size: 11px; line-height: 1.35; }
.mwt-readiness__value { font-size: 10px; }
.mwt-map__topline strong { font-size: 15px; }
.mwt-map-node__label strong { font-size: clamp(11px, 0.72vw, 13px); line-height: 1.15; }
.mwt-map-node__label small { font-size: 9.5px; line-height: 1.15; }
.mwt-map__legend span { font-size: 9.5px; line-height: 1.2; }
.mwt-mobile-docket-button { font-size: 10px; }
.mwt-docket__header p { font-size: 12px; line-height: 1.3; }
.mwt-route-art__badges span { font-size: 10px; }
.mwt-progress-block > div:first-child { font-size: 10.5px; line-height: 1.3; }
.mwt-stat-grid span,
.mwt-chance-breakdown span { font-size: 10.5px; line-height: 1.2; }
.mwt-chance-breakdown strong { font-size: 11px; }
.mwt-rewards > div > span { font-size: 10.5px; line-height: 1.25; }
.mwt-itinerary > span,
.mwt-itinerary > button { font-size: 10.5px; line-height: 1.25; }
.mwt-docket__hint { font-size: 11px; line-height: 1.45; }
.mwt-primary-button,
.mwt-secondary-button,
.mwt-danger-button { font-size: 11px; line-height: 1.2; }

/* Keep the compact dossier dimensions while lifting low-contrast supporting copy. */
.mwt-dossier .mwt-kicker {
  color: #b5e0d8;
  text-shadow: 0 1px 8px rgba(95, 198, 182, 0.18);
}

.mwt-dossier__hero p {
  color: #c2ded9;
}

.mwt-dossier .mwt-section-copy,
.mwt-dossier .mwt-contract p,
.mwt-dossier .mwt-ability-card p {
  color: #e5eeeb;
  font-weight: 500;
}

.mwt-dossier .mwt-ability-card span {
  color: #b9e7de;
}

.mwt-dossier .mwt-point-count,
.mwt-dossier .mwt-order-state,
.mwt-dossier .mwt-cost-list span,
.mwt-dossier .mwt-order-routes button,
.mwt-dossier .mwt-order-controls button,
.mwt-dossier .mwt-order-controls label,
.mwt-dossier .mwt-order-failure-policy,
.mwt-dossier .mwt-order-failure-policy button,
.mwt-dossier .mwt-locked-note {
  font-weight: 600;
}

.mwt-dossier .mwt-cost-list span,
.mwt-dossier .mwt-order-routes button,
.mwt-dossier .mwt-order-controls button,
.mwt-dossier .mwt-order-controls label,
.mwt-dossier .mwt-order-failure-policy,
.mwt-dossier .mwt-order-failure-policy button {
  color: #e8f0ed;
}

@media (max-width: 700px) {
  .mwt-map__legend span { font-size: 8px; }
}
