:root {
  --forge-ink: #f5f0df;
  --forge-paper: #ddcfad;
  --forge-gold: #eab96b;
  --forge-gold-bright: #ffe0a4;
  --forge-teal: #6ce2c3;
  --forge-coral: #ef8068;
  --forge-night: #050908;
  --forge-panel: rgba(7, 14, 13, 0.94);
  --forge-panel-solid: #091310;
  --forge-line: rgba(226, 212, 173, 0.2);
  --forge-line-strong: rgba(226, 212, 173, 0.42);
  --forge-muted: #a9b4aa;
  --forge-shadow: 5px 5px 0 rgba(1, 7, 5, 0.72), 0 25px 80px rgba(0, 0, 0, 0.4);
}

.skill-page {
  height: 100dvh;
  min-height: 560px;
  overflow: hidden;
  color: var(--forge-ink);
  background: #030706;
}

.skill-page::before {
  display: none;
}

.skill-page button,
.skill-page input {
  font: inherit;
}

.skill-page button {
  color: inherit;
}

.skill-page button:focus-visible,
.skill-page a:focus-visible,
.skill-page input:focus-visible,
.skill-page [tabindex]:focus-visible {
  outline: 2px solid var(--forge-gold-bright);
  outline-offset: 3px;
}

.skip-tree-link {
  left: 174px;
}

.skill-app {
  position: relative;
  height: 100dvh;
  min-height: 560px;
  overflow: clip;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(2, 9, 7, 0.92), rgba(3, 9, 8, 0.24) 30%, rgba(3, 8, 7, 0.2) 70%, rgba(2, 7, 6, 0.74)),
    linear-gradient(180deg, rgba(2, 8, 6, 0.42), rgba(2, 7, 6, 0.28) 48%, rgba(2, 6, 5, 0.9)),
    url("/lore-atlas-ambience-v1.webp") center / cover no-repeat;
}

.skill-app::before,
.skill-app::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
}

.skill-app::before {
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(229, 218, 181, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 218, 181, 0.04) 1px, transparent 1px),
    radial-gradient(circle, rgba(240, 225, 182, 0.35) 0 1px, transparent 1.4px);
  background-position: center, center, 17px 22px;
  background-size: 80px 80px, 80px 80px, 139px 149px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.65) 75%, transparent);
}

.skill-app::after {
  opacity: 0.12;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(246, 231, 189, 0.06) 4px);
  mix-blend-mode: screen;
}

.skill-map-panel {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
}

.skill-map-panel::before {
  position: absolute;
  z-index: 2;
  inset: 84px 16px 14px;
  pointer-events: none;
  border: 1px solid rgba(229, 215, 177, 0.2);
  border-radius: 8px 20px 10px 22px;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.22);
  content: "";
}

.skill-map-panel::after {
  position: absolute;
  z-index: 2;
  top: 83px;
  right: 62px;
  width: min(32vw, 430px);
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(235, 188, 108, 0.72), transparent);
  content: "";
}

.skill-viewport {
  position: absolute;
  z-index: 1;
  inset: 84px 16px 14px;
  overflow: hidden;
  border-radius: 8px 20px 10px 22px;
  cursor: grab;
  touch-action: none;
}

.skill-viewport.dragging,
.skill-viewport.pinching {
  cursor: grabbing;
}

.skill-scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 1600px;
  height: 1000px;
  transform-origin: 0 0;
  will-change: transform;
  transition: transform 260ms cubic-bezier(0.22, 0.8, 0.24, 1);
}

.skill-viewport.dragging .skill-scene,
.skill-viewport.pinching .skill-scene {
  transition: none;
}

.skill-scene::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background:
    radial-gradient(circle at 50% 50%, rgba(103, 223, 192, 0.055), transparent 58%),
    repeating-linear-gradient(90deg, transparent 0 229px, rgba(232, 216, 175, 0.06) 230px);
  content: "";
}

#skillEdges,
.skill-nodes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#skillEdges {
  pointer-events: none;
}

.skill-nodes {
  z-index: 2;
}

.skill-node {
  --skill-color: var(--forge-teal);
  position: absolute;
  display: grid;
  grid-template-columns: 39px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  width: 174px;
  min-height: 58px;
  padding: 7px 12px 7px 8px;
  border: 1px solid color-mix(in srgb, var(--skill-color) 52%, transparent);
  border-radius: 7px 16px 7px 16px;
  color: var(--forge-ink);
  background:
    linear-gradient(105deg, color-mix(in srgb, var(--skill-color) 11%, rgba(5, 13, 11, 0.98)), rgba(6, 14, 12, 0.95)),
    rgba(5, 13, 11, 0.96);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.58), inset 0 1px rgba(255, 255, 255, 0.05);
  text-align: left;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: border-color 150ms, background 150ms, box-shadow 150ms, opacity 150ms, filter 150ms, transform 150ms;
}

.skill-node::before {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--skill-color);
  box-shadow: 0 0 10px var(--skill-color);
  content: "";
}

.skill-node:hover,
.skill-node:focus-visible {
  z-index: 6;
  border-color: color-mix(in srgb, var(--skill-color) 88%, white 12%);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.7), 0 0 22px color-mix(in srgb, var(--skill-color) 18%, transparent), inset 0 1px rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%) translateY(-2px);
}

.skill-node-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border: 1px solid color-mix(in srgb, var(--skill-color) 62%, transparent);
  border-radius: 50%;
  color: color-mix(in srgb, var(--skill-color) 82%, white 18%);
  background: radial-gradient(circle, color-mix(in srgb, var(--skill-color) 18%, transparent), rgba(2, 9, 7, 0.88) 68%);
  box-shadow: inset 0 0 0 4px rgba(3, 11, 9, 0.66), 0 0 18px color-mix(in srgb, var(--skill-color) 15%, transparent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.skill-node-mark::after {
  position: absolute;
  inset: -4px;
  border: 1px dotted color-mix(in srgb, var(--skill-color) 40%, transparent);
  border-radius: 50%;
  content: "";
}

.skill-node-copy {
  display: grid;
  min-width: 0;
  line-height: 1.1;
}

.skill-node-copy strong {
  overflow: hidden;
  font-size: 0.75rem;
  font-weight: 790;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.skill-node-copy small {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  margin-top: 5px;
  color: #93a49a;
  font-size: 0.54rem;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.skill-node-copy small b {
  overflow: hidden;
  color: color-mix(in srgb, var(--skill-color) 68%, white 32%);
  font-weight: 820;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.skill-node.preview-only {
  border-style: dashed;
  opacity: 0.7;
  filter: saturate(0.72);
}

.skill-node.preview-only .skill-node-mark::after {
  border-style: dashed;
}

.skill-node.prerequisite-path:not(.planned) {
  opacity: 1;
  border-color: color-mix(in srgb, var(--forge-paper) 62%, var(--skill-color));
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.62), 0 0 16px rgba(230, 210, 158, 0.12);
}

.skill-node.planned {
  opacity: 1;
  border-color: var(--forge-gold-bright);
  background:
    linear-gradient(105deg, color-mix(in srgb, var(--skill-color) 18%, rgba(20, 24, 15, 0.98)), rgba(22, 19, 11, 0.96)),
    rgba(16, 17, 11, 0.98);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.68), 0 0 22px rgba(235, 185, 107, 0.18), inset 0 0 0 1px rgba(255, 222, 160, 0.13);
}

.skill-node.planned .skill-node-mark {
  color: #19140a;
  background: var(--forge-gold);
  border-color: var(--forge-gold-bright);
  box-shadow: inset 0 0 0 3px rgba(255, 243, 205, 0.18), 0 0 18px rgba(235, 185, 107, 0.42);
}

.skill-node.planned .skill-node-mark::after {
  border-color: rgba(255, 224, 164, 0.68);
}

.skill-node.selected {
  z-index: 7;
  border-color: #fff4d8;
  box-shadow: 0 0 0 2px rgba(4, 10, 8, 0.85), 0 0 0 4px var(--forge-gold), 0 0 30px rgba(235, 185, 107, 0.32);
}

.skill-nodes.has-focus .skill-node:not(.selected):not(.prerequisite-path):not(.dependent-path) {
  opacity: 0.36;
  filter: saturate(0.4);
}

.skill-node.dependent-path {
  opacity: 0.88;
}

.skill-node.search-dimmed {
  opacity: 0.16 !important;
  filter: grayscale(0.65) !important;
}

.skill-node.search-match {
  z-index: 5;
  box-shadow: 0 0 0 2px rgba(255, 244, 216, 0.86), 0 0 24px rgba(255, 224, 164, 0.34);
}

.skill-node.root-node {
  width: 190px;
  min-height: 68px;
  border-width: 2px;
}

.skill-node.root-node .skill-node-mark {
  width: 43px;
  height: 43px;
}

.skill-empty {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  display: grid;
  gap: 4px;
  width: min(340px, calc(100% - 40px));
  padding: 22px;
  border: 1px solid var(--forge-line-strong);
  border-radius: 7px 17px;
  background: rgba(5, 12, 10, 0.94);
  box-shadow: var(--forge-shadow);
  text-align: center;
  transform: translate(-50%, -50%);
}

.skill-empty span {
  color: var(--forge-muted);
  font-size: 0.78rem;
}

.skill-empty button {
  justify-self: center;
  min-height: 42px;
  margin-top: 8px;
  padding: 0 16px;
  border: 1px solid var(--forge-gold-bright);
  border-radius: 5px 10px;
  color: #171108;
  background: var(--forge-gold);
  font-size: 0.63rem;
  font-weight: 850;
  cursor: pointer;
}

.skill-topbar {
  position: absolute;
  z-index: 20;
  top: 14px;
  right: 16px;
  left: 16px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  min-height: 64px;
  padding: 7px 12px;
  border: 1px solid rgba(226, 212, 173, 0.47);
  border-radius: 8px 18px 8px 18px;
  background: linear-gradient(100deg, rgba(4, 13, 10, 0.97), rgba(9, 18, 16, 0.93) 68%, rgba(36, 24, 15, 0.9));
  box-shadow: 4px 4px 0 rgba(1, 6, 5, 0.7), inset 0 1px rgba(255, 255, 255, 0.05);
}

.skill-topbar::after {
  position: absolute;
  right: 1px;
  bottom: -1px;
  left: 1px;
  height: 2px;
  background: linear-gradient(90deg, var(--forge-teal), transparent 36%, transparent 65%, var(--forge-coral));
  content: "";
}

.skill-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.skill-orbit {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(231, 190, 111, 0.62);
  border-radius: 50%;
  box-shadow: inset 0 0 18px rgba(235, 185, 107, 0.11);
}

.skill-orbit::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 17px;
  border: 1px solid rgba(105, 223, 193, 0.72);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%) rotate(-25deg);
}

.skill-orbit span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff5ca 0 8%, #db9f55 10%, #7a4632 70%);
  box-shadow: 0 0 13px rgba(235, 185, 107, 0.48);
  transform: translate(-50%, -50%);
}

.skill-brand-copy {
  display: grid;
  line-height: 1;
}

.skill-brand-copy > span {
  color: #d8c89f;
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.skill-brand-copy i {
  color: var(--forge-teal);
  font-style: normal;
}

.skill-brand-copy strong {
  margin-top: 5px;
  color: var(--forge-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.84rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.skill-route-nav {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 3px;
  justify-self: center;
  padding: 4px;
  border: 1px solid rgba(226, 212, 173, 0.2);
  border-radius: 7px 13px;
  background: rgba(2, 9, 7, 0.55);
}

.skill-route-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 5px 9px;
  color: #a9b5aa;
  font-size: 0.69rem;
  font-weight: 820;
  text-decoration: none;
}

.skill-route-nav a:hover {
  color: var(--forge-ink);
  background: rgba(237, 222, 179, 0.06);
}

.skill-route-nav a.active {
  color: #171108;
  background: var(--forge-gold);
  box-shadow: 2px 2px 0 #376c61, 0 7px 20px rgba(235, 185, 107, 0.17);
}

.skill-build-chip {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  min-width: 0;
  padding: 6px 10px 6px 12px;
  border: 1px solid rgba(235, 185, 107, 0.28);
  border-radius: 6px 12px;
  background: rgba(235, 185, 107, 0.055);
}

.skill-build-chip > span {
  max-width: 160px;
  overflow: hidden;
  color: #c8c8b6;
  font-size: 0.67rem;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.skill-build-chip strong {
  color: var(--forge-gold-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.62rem;
  font-weight: 720;
  white-space: nowrap;
}

.skill-build-chip b {
  font-size: 0.78rem;
}

.shared-build-banner {
  position: absolute;
  z-index: 23;
  top: 94px;
  right: 24px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: min(510px, calc(100vw - 48px));
  padding: 9px 10px;
  border: 1px solid rgba(105, 223, 193, 0.56);
  border-radius: 7px 16px;
  background: linear-gradient(105deg, rgba(7, 28, 23, 0.97), rgba(31, 25, 15, 0.96));
  box-shadow: var(--forge-shadow);
}

.shared-build-lock {
  position: relative;
  width: 28px;
  height: 24px;
  border: 1px solid var(--forge-teal);
  border-radius: 4px 8px;
}

.shared-build-lock::before {
  position: absolute;
  top: -9px;
  left: 7px;
  width: 12px;
  height: 12px;
  border: 1px solid var(--forge-teal);
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  content: "";
}

.shared-build-banner > div {
  display: grid;
  min-width: 0;
}

.shared-build-banner small {
  color: var(--forge-teal);
  font-size: 0.48rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shared-build-banner strong,
.shared-build-banner span:not(.shared-build-lock) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shared-build-banner strong {
  margin-top: 2px;
  color: var(--forge-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-style: italic;
}

.shared-build-banner span:not(.shared-build-lock) {
  margin-top: 2px;
  color: #8fa198;
  font-size: 0.55rem;
}

.shared-build-banner button,
#remixBuild {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--forge-gold-bright);
  border-radius: 5px 10px;
  color: #171108;
  background: var(--forge-gold);
  font-size: 0.61rem;
  font-weight: 850;
  cursor: pointer;
}

.skill-title-card {
  position: absolute;
  z-index: 8;
  top: 100px;
  left: 32px;
  width: min(408px, calc(100vw - 180px));
  padding: 16px 20px 17px;
  border: 1px solid rgba(226, 212, 173, 0.5);
  border-radius: 7px 18px 7px 18px;
  background: linear-gradient(112deg, rgba(6, 17, 13, 0.96), rgba(9, 19, 16, 0.92) 72%, rgba(45, 30, 20, 0.88));
  box-shadow: var(--forge-shadow);
  transition: opacity 160ms, transform 220ms;
}

.skill-title-card::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 55%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--forge-coral));
  content: "";
}

.skill-title-card .panel-label,
.skill-overlay .panel-label {
  margin-bottom: 5px;
  color: var(--forge-gold);
  font-size: 0.58rem;
  font-style: italic;
  letter-spacing: 0.13em;
}

.skill-title-card h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.48rem);
  font-weight: 880;
  line-height: 0.96;
  letter-spacing: -0.052em;
  text-transform: uppercase;
}

.skill-title-card h1 em {
  color: var(--forge-gold-bright);
  font-weight: 500;
}

.skill-title-card > p:last-child {
  margin: 9px 0 0;
  color: #b9c1b8;
  font-size: 0.68rem;
  line-height: 1.45;
}

.discipline-rail {
  position: absolute;
  z-index: 9;
  top: 286px;
  bottom: 106px;
  left: 31px;
  display: grid;
  grid-template-columns: repeat(2, 56px);
  align-content: start;
  gap: 6px;
  width: 120px;
  overflow: auto;
  padding: 5px 4px 5px 0;
  scrollbar-width: none;
}

.discipline-rail::-webkit-scrollbar {
  display: none;
}

.discipline-button {
  --group-color: var(--forge-teal);
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  min-height: 44px;
  padding: 4px;
  border: 1px solid color-mix(in srgb, var(--group-color) 30%, var(--forge-line));
  border-radius: 6px 13px 6px 13px;
  color: color-mix(in srgb, var(--group-color) 62%, #d9e1d8 38%);
  background: rgba(5, 14, 11, 0.86);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.58);
  cursor: pointer;
  transition: border-color 150ms, color 150ms, background 150ms, transform 150ms;
}

.discipline-button:hover {
  border-color: color-mix(in srgb, var(--group-color) 72%, white 8%);
  transform: translateX(2px);
}

.discipline-button.active {
  color: #07100d;
  background: color-mix(in srgb, var(--group-color) 82%, white 18%);
  border-color: color-mix(in srgb, var(--group-color) 78%, white 22%);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.7), 0 0 20px color-mix(in srgb, var(--group-color) 22%, transparent);
}

.discipline-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.67rem;
  font-weight: 920;
  letter-spacing: 0.06em;
}

.discipline-button small {
  position: absolute;
  top: 3px;
  right: 4px;
  color: currentColor;
  font-size: 0.45rem;
  font-weight: 800;
  opacity: 0.65;
}

.discipline-button.preview-only-group small {
  color: var(--forge-gold-bright);
  opacity: 0.9;
}

.skill-map-actions {
  position: absolute;
  z-index: 9;
  top: 100px;
  right: 31px;
  display: grid;
  grid-template-columns: 44px 66px 44px;
  overflow: hidden;
  border: 1px solid rgba(226, 212, 173, 0.42);
  border-radius: 7px 16px;
  background: rgba(5, 13, 11, 0.91);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.65);
}

.skill-map-actions button {
  min-height: 48px;
  border: 0;
  border-right: 1px solid rgba(226, 212, 173, 0.15);
  color: var(--forge-ink);
  background: transparent;
  font-size: 0.77rem;
  font-weight: 850;
  cursor: pointer;
}

.skill-map-actions button:last-child {
  border-right: 0;
}

.skill-map-actions button:hover {
  color: #171108;
  background: var(--forge-gold);
}

.skill-map-legend {
  position: absolute;
  z-index: 8;
  bottom: 26px;
  left: 31px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(226, 212, 173, 0.25);
  border-radius: 5px 11px;
  color: #aab6ac;
  background: rgba(5, 13, 11, 0.87);
  font-size: 0.58rem;
  font-weight: 720;
}

.skill-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.legend-mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid var(--forge-paper);
  border-radius: 50%;
}

.legend-mark.planned {
  background: var(--forge-gold);
  box-shadow: 0 0 8px rgba(235, 185, 107, 0.44);
}

.legend-mark.path {
  border-color: var(--forge-teal);
  background: rgba(105, 223, 193, 0.16);
}

.legend-mark.preview {
  border-style: dashed;
  border-color: #8b9990;
}

.skill-map-footnote {
  position: absolute;
  z-index: 8;
  right: 31px;
  bottom: 26px;
  display: flex;
  align-items: center;
  min-height: 34px;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(226, 212, 173, 0.25);
  border-radius: 5px 11px;
  color: #c0c8bf;
  background: rgba(5, 13, 11, 0.87);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.59rem;
}

.skill-focus-clear {
  min-height: 25px;
  padding: 2px 8px;
  border: 1px solid rgba(235, 185, 107, 0.34);
  border-radius: 4px 8px;
  color: var(--forge-gold-bright);
  background: rgba(235, 185, 107, 0.08);
  font-size: 0.57rem;
  cursor: pointer;
}

.skill-focus-clear strong {
  font-weight: 820;
}

.skill-overlay-scrim {
  position: fixed;
  z-index: 28;
  inset: 0;
  background: rgba(1, 5, 4, 0.54);
  backdrop-filter: blur(2px);
}

.skill-overlay {
  position: fixed;
  z-index: 30;
  top: 93px;
  bottom: 18px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(430px, calc(100vw - 116px));
  overflow: hidden;
  border: 1px solid rgba(226, 212, 173, 0.54);
  border-radius: 8px 22px 8px 22px;
  background:
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(227, 210, 163, 0.018) 19px),
    linear-gradient(140deg, rgba(7, 17, 14, 0.985), rgba(9, 17, 15, 0.985));
  box-shadow: var(--forge-shadow);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms, transform 240ms cubic-bezier(0.2, 0.78, 0.24, 1);
}

.skill-explore-panel,
.skill-build-panel {
  left: 82px;
  transform: translateX(-24px) scale(0.985);
}

.skill-inspector,
.skill-about-panel,
.skill-account-panel {
  right: 18px;
  transform: translateX(24px) scale(0.985);
}

.skill-overlay.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.skill-overlay-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  min-height: 77px;
  padding: 17px 18px 14px;
  border-bottom: 1px solid rgba(226, 212, 173, 0.18);
  background: linear-gradient(100deg, rgba(234, 187, 110, 0.07), transparent 54%, rgba(238, 128, 104, 0.04));
}

.skill-overlay-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
}

.skill-overlay-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid rgba(226, 212, 173, 0.22);
  border-radius: 6px 12px;
  color: #d8d6c6;
  background: rgba(241, 230, 198, 0.035);
  font-size: 1.22rem;
  cursor: pointer;
}

.skill-overlay-close:hover {
  border-color: rgba(238, 128, 104, 0.68);
  color: #fff2e1;
  background: rgba(238, 128, 104, 0.1);
}

.skill-overlay-scroll {
  min-height: 0;
  overflow-y: auto;
  padding: 17px 18px 24px;
  scrollbar-color: rgba(235, 185, 107, 0.28) transparent;
  scrollbar-width: thin;
}

.skill-search,
.build-name-field {
  display: grid;
  gap: 7px;
}

.skill-search > span,
.build-name-field > span {
  color: #c2b58f;
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.skill-search input,
.build-name-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(226, 212, 173, 0.2);
  border-radius: 6px 12px;
  color: var(--forge-ink);
  background: rgba(2, 9, 7, 0.72);
}

.skill-search input::placeholder {
  color: #77847b;
}

.skill-filter-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 12px;
  padding: 4px;
  border: 1px solid rgba(226, 212, 173, 0.16);
  border-radius: 6px 12px;
  background: rgba(2, 8, 7, 0.52);
}

.skill-filter-row button {
  min-height: 38px;
  border: 0;
  border-radius: 4px 8px;
  color: #98a69d;
  background: transparent;
  font-size: 0.64rem;
  font-weight: 800;
  cursor: pointer;
}

.skill-filter-row button.active {
  color: #171108;
  background: var(--forge-gold);
  box-shadow: 2px 2px 0 rgba(56, 105, 93, 0.74);
}

.explore-summary {
  display: grid;
  gap: 3px;
  margin: 13px 1px 11px;
}

.explore-summary span {
  color: var(--forge-ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  font-weight: 780;
}

.explore-summary small {
  color: #87958c;
  font-size: 0.61rem;
  line-height: 1.4;
}

.skill-search-results {
  display: grid;
  gap: 8px;
}

.skill-search-result {
  --result-color: var(--forge-teal);
  display: grid;
  grid-template-columns: 39px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  padding: 8px 9px;
  border: 1px solid color-mix(in srgb, var(--result-color) 22%, var(--forge-line));
  border-radius: 6px 13px;
  color: var(--forge-ink);
  background: rgba(240, 230, 196, 0.025);
  text-align: left;
  cursor: pointer;
}

.skill-search-result:hover,
.skill-search-result:focus-visible {
  border-color: color-mix(in srgb, var(--result-color) 62%, var(--forge-paper));
  background: color-mix(in srgb, var(--result-color) 7%, rgba(240, 230, 196, 0.03));
}

.search-result-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border: 1px solid color-mix(in srgb, var(--result-color) 48%, transparent);
  border-radius: 50%;
  color: color-mix(in srgb, var(--result-color) 72%, white 28%);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.57rem;
  font-weight: 900;
}

.search-result-copy {
  display: grid;
  min-width: 0;
}

.search-result-copy strong {
  overflow: hidden;
  font-size: 0.74rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-copy span {
  overflow: hidden;
  margin-top: 3px;
  color: #8d9b92;
  font-size: 0.61rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-status {
  padding: 3px 6px;
  border: 1px dashed rgba(226, 212, 173, 0.25);
  border-radius: 999px;
  color: #9ca89f;
  font-size: 0.49rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.skill-inspector-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 100%;
  padding: 30px 18px;
  text-align: center;
}

.placeholder-rings {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 22px;
  border: 1px dotted rgba(235, 185, 107, 0.45);
  border-radius: 50%;
}

.placeholder-rings::before,
.placeholder-rings::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.placeholder-rings::before {
  inset: 18px;
  border: 1px solid rgba(105, 223, 193, 0.4);
}

.placeholder-rings::after {
  inset: 34px;
  background: var(--forge-gold);
  box-shadow: 0 0 22px rgba(235, 185, 107, 0.48);
}

.skill-inspector-placeholder h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-style: italic;
  font-weight: 500;
}

.skill-inspector-placeholder p {
  max-width: 280px;
  margin: 9px 0 0;
  color: #8f9c93;
  font-size: 0.72rem;
}

.inspector-skill-card {
  --detail-color: var(--forge-teal);
}

.inspector-identity {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.inspector-skill-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid color-mix(in srgb, var(--detail-color) 70%, white 6%);
  border-radius: 50%;
  color: color-mix(in srgb, var(--detail-color) 78%, white 22%);
  background: radial-gradient(circle, color-mix(in srgb, var(--detail-color) 18%, transparent), rgba(2, 8, 7, 0.82) 68%);
  box-shadow: inset 0 0 0 5px rgba(2, 9, 7, 0.68), 0 0 26px color-mix(in srgb, var(--detail-color) 20%, transparent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.76rem;
  font-weight: 900;
}

.inspector-identity-copy {
  min-width: 0;
}

.inspector-kicker {
  margin: 0 0 5px;
  color: color-mix(in srgb, var(--detail-color) 68%, white 32%);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.inspector-identity h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.05;
}

.skill-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.skill-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid rgba(226, 212, 173, 0.2);
  border-radius: 999px;
  color: #b5c0b7;
  background: rgba(236, 224, 187, 0.035);
  font-size: 0.52rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.skill-status-badge.preview {
  border-style: dashed;
  color: #e2c98d;
}

.skill-status-badge.planned {
  border-color: rgba(235, 185, 107, 0.48);
  color: var(--forge-gold-bright);
  background: rgba(235, 185, 107, 0.08);
}

.inspector-description {
  margin: 18px 0 0;
  color: #d3d5c8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  line-height: 1.55;
}

.skill-cost-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.skill-cost-grid > div {
  padding: 12px;
  border: 1px solid rgba(226, 212, 173, 0.17);
  border-radius: 6px 12px;
  background: rgba(240, 229, 195, 0.025);
}

.skill-cost-grid span {
  display: block;
  color: #89968e;
  font-size: 0.53rem;
  font-weight: 830;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.skill-cost-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--forge-gold-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.93rem;
}

.skill-cost-grid small {
  display: block;
  margin-top: 4px;
  color: #77847b;
  font-size: 0.55rem;
}

.inspector-path {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 212, 173, 0.15);
}

.inspector-path > span {
  color: #9caa9f;
  font-size: 0.58rem;
  font-weight: 830;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.path-trail {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 9px;
}

.path-step {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 3px 7px;
  border: 1px solid rgba(226, 212, 173, 0.17);
  border-radius: 4px 8px;
  color: #bdc4ba;
  background: rgba(240, 229, 195, 0.026);
  font-size: 0.56rem;
}

.path-step.current {
  border-color: color-mix(in srgb, var(--detail-color) 58%, var(--forge-paper));
  color: var(--forge-ink);
}

.path-arrow {
  align-self: center;
  color: #657269;
  font-size: 0.58rem;
}

.inspector-build-impact {
  margin-top: 17px;
  padding: 12px;
  border: 1px solid rgba(235, 185, 107, 0.22);
  border-radius: 6px 12px;
  color: #b4b9ad;
  background: rgba(235, 185, 107, 0.045);
  font-size: 0.67rem;
  line-height: 1.45;
}

.inspector-build-impact strong {
  color: var(--forge-gold-bright);
}

.skill-page .skill-plan-action {
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
  padding: 12px 16px;
  border: 1px solid var(--forge-gold-bright);
  border-radius: 6px 13px;
  color: #171108;
  background: linear-gradient(100deg, var(--forge-gold), #f3cb82);
  box-shadow: 3px 3px 0 #315f55;
  font-size: 0.84rem;
  font-weight: 880;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

.skill-plan-action:hover {
  background: #ffe1a5;
  transform: translateY(-1px);
}

.skill-plan-action:disabled {
  border-color: rgba(105, 223, 193, 0.34);
  color: #8fa39a;
  background: rgba(105, 223, 193, 0.045);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.skill-plan-action.remove {
  border-color: rgba(238, 128, 104, 0.7);
  color: #ffd9cf;
  background: rgba(238, 128, 104, 0.08);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.62);
}

.build-name-field input {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
}

.build-name-field input:disabled,
.skill-budget-copy input:disabled {
  color: #9da89f;
  cursor: not-allowed;
  opacity: 0.72;
}

.shared-build-panel-note {
  display: grid;
  gap: 3px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(105, 223, 193, 0.35);
  border-radius: 6px 12px;
  background: rgba(105, 223, 193, 0.055);
}

.shared-build-panel-note strong {
  color: var(--forge-teal);
  font-size: 0.65rem;
}

.shared-build-panel-note span {
  color: #91a299;
  font-size: 0.61rem;
  line-height: 1.4;
}

.skill-budget-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: 13px;
  padding: 13px;
  border: 1px solid rgba(235, 185, 107, 0.28);
  border-radius: 7px 16px;
  background: linear-gradient(120deg, rgba(235, 185, 107, 0.06), rgba(105, 223, 193, 0.025));
}

.skill-budget-gauge {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #08130f 0 58%, transparent 59%),
    conic-gradient(var(--forge-gold-bright) var(--budget-progress), rgba(226, 212, 173, 0.12) 0);
  box-shadow: inset 0 0 0 1px rgba(226, 212, 173, 0.17), 0 0 20px rgba(235, 185, 107, 0.08);
}

.skill-budget-gauge::after {
  position: absolute;
  inset: 8px;
  border: 1px dotted rgba(105, 223, 193, 0.28);
  border-radius: 50%;
  content: "";
}

.skill-budget-gauge.over-cap {
  background:
    radial-gradient(circle, #08130f 0 58%, transparent 59%),
    conic-gradient(var(--forge-coral) 1turn, rgba(226, 212, 173, 0.12) 0);
  box-shadow: inset 0 0 0 1px rgba(238, 128, 104, 0.34), 0 0 22px rgba(238, 128, 104, 0.14);
}

.skill-budget-gauge strong {
  z-index: 1;
  color: var(--forge-gold-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1.42rem;
}

.skill-budget-gauge span {
  z-index: 1;
  color: #89988e;
  font-size: 0.48rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.skill-budget-copy h3 {
  margin: 2px 0 0;
  color: var(--forge-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 500;
}

.skill-budget-copy > p {
  margin: 4px 0 9px;
  color: #aeb9b0;
  font-size: 0.61rem;
  line-height: 1.35;
}

.skill-budget-copy label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  align-items: center;
  gap: 8px;
  color: #c2b58f;
  font-size: 0.56rem;
  font-weight: 780;
}

.skill-budget-copy input {
  width: 100%;
  min-height: 36px;
  padding: 0 8px;
  border: 1px solid rgba(226, 212, 173, 0.22);
  border-radius: 5px 9px;
  color: var(--forge-ink);
  background: rgba(2, 9, 7, 0.7);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.skill-budget-copy > small {
  display: block;
  margin-top: 6px;
  color: #718078;
  font-size: 0.52rem;
  line-height: 1.35;
}

.build-metrics,
.skill-data-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 13px;
}

.build-metrics > div,
.skill-data-stats > div {
  min-width: 0;
  padding: 10px 7px;
  border: 1px solid rgba(226, 212, 173, 0.16);
  border-radius: 5px 10px;
  background: rgba(240, 229, 195, 0.025);
  text-align: center;
}

.build-metrics span,
.skill-data-stats span {
  display: block;
  overflow: hidden;
  color: #829087;
  font-size: 0.49rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.build-metrics strong,
.skill-data-stats strong {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: var(--forge-gold-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.build-primary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 10px;
}

.share-result {
  display: grid;
  gap: 7px;
  margin-top: 9px;
  padding: 10px;
  border: 1px solid rgba(105, 223, 193, 0.32);
  border-radius: 6px 12px;
  background: rgba(105, 223, 193, 0.045);
}

.share-attribution {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-top: 7px;
  color: #91a198;
  font-size: 0.57rem;
  cursor: pointer;
}

.share-attribution input {
  width: 16px;
  height: 16px;
  accent-color: var(--forge-gold);
}

.share-attribution span {
  line-height: 1.35;
}

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

.share-result span {
  color: var(--forge-teal);
  font-size: 0.53rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.share-result a {
  color: var(--forge-gold-bright);
  font-size: 0.55rem;
  font-weight: 760;
}

.share-result input {
  min-width: 0;
  min-height: 38px;
  flex: 1 1 auto;
  padding: 0 9px;
  border: 1px solid rgba(226, 212, 173, 0.18);
  border-radius: 5px 9px;
  color: #a9b8af;
  background: rgba(2, 9, 7, 0.7);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.5rem;
}

.share-result button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(235, 185, 107, 0.42);
  border-radius: 5px 9px;
  color: var(--forge-gold-bright);
  background: rgba(235, 185, 107, 0.07);
  font-size: 0.58rem;
  font-weight: 830;
  cursor: pointer;
}

.build-action {
  min-height: 44px;
  border: 1px solid rgba(226, 212, 173, 0.25);
  border-radius: 6px 11px;
  color: #d5d8ca;
  background: rgba(240, 229, 195, 0.035);
  font-size: 0.66rem;
  font-weight: 830;
  cursor: pointer;
}

.build-action:hover {
  border-color: rgba(235, 185, 107, 0.56);
  color: #fff1d0;
}

.build-action:disabled {
  border-color: rgba(226, 212, 173, 0.12);
  color: #68736b;
  background: rgba(240, 229, 195, 0.015);
  box-shadow: none;
  cursor: not-allowed;
}

.build-action.is-busy {
  cursor: progress;
  opacity: 0.72;
}

.account-scroll {
  display: grid;
  align-content: start;
}

.account-intro,
.account-member-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(105, 223, 193, 0.25);
  border-radius: 7px 16px;
  background: linear-gradient(120deg, rgba(105, 223, 193, 0.055), rgba(235, 185, 107, 0.035));
}

.account-sigil,
.account-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(105, 223, 193, 0.55);
  border-radius: 50%;
  color: var(--forge-teal);
  background: rgba(4, 14, 11, 0.7);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
  font-weight: 900;
}

.account-intro strong,
.account-member-card strong {
  color: var(--forge-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 500;
}

.account-intro p {
  margin: 4px 0 0;
  color: #91a097;
  font-size: 0.63rem;
  line-height: 1.45;
}

.account-mode-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 13px;
  padding: 4px;
  border: 1px solid rgba(226, 212, 173, 0.16);
  border-radius: 6px 12px;
  background: rgba(2, 8, 7, 0.5);
}

.account-mode-switch button {
  min-height: 39px;
  border: 0;
  border-radius: 4px 8px;
  color: #91a097;
  background: transparent;
  font-size: 0.62rem;
  font-weight: 820;
  cursor: pointer;
}

.account-mode-switch button.active {
  color: #171108;
  background: var(--forge-gold);
  box-shadow: 2px 2px 0 #315f55;
}

.account-form {
  display: grid;
  gap: 11px;
  margin-top: 14px;
}

.account-form label {
  display: grid;
  gap: 6px;
}

.account-form label > span {
  color: #c2b58f;
  font-size: 0.57rem;
  font-weight: 830;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-form label small {
  color: #75827a;
  font-weight: 650;
  text-transform: none;
}

.account-form .field-hint {
  color: #77867d;
  font-size: 0.53rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.account-form input {
  width: 100%;
  min-height: 45px;
  padding: 0 12px;
  border: 1px solid rgba(226, 212, 173, 0.2);
  border-radius: 6px 12px;
  color: var(--forge-ink);
  background: rgba(2, 9, 7, 0.72);
}

.account-form-error {
  margin: 0;
  padding: 9px 11px;
  border: 1px solid rgba(238, 128, 104, 0.42);
  border-radius: 5px 10px;
  color: #ffd4ca;
  background: rgba(238, 128, 104, 0.07);
  font-size: 0.61rem;
}

.account-recovery-note {
  margin: 13px 0 0;
  color: #7f8c84;
  font-size: 0.59rem;
  line-height: 1.45;
}

.account-recovery-note strong {
  color: #c6b986;
}

.account-member-card {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.account-member-card > div {
  display: grid;
  min-width: 0;
}

.account-member-card small {
  color: var(--forge-teal);
  font-size: 0.48rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.account-member-card span:not(.account-avatar) {
  margin-top: 3px;
  color: #839188;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.56rem;
}

.account-benefits {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.account-benefits > div {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid rgba(226, 212, 173, 0.14);
  border-radius: 6px 12px;
}

.account-benefits strong {
  color: #d7d7c7;
  font-size: 0.67rem;
}

.account-benefits span {
  color: #819087;
  font-size: 0.61rem;
  line-height: 1.4;
}

.build-action.primary {
  border-color: var(--forge-gold-bright);
  color: #171108;
  background: var(--forge-gold);
  box-shadow: 2px 2px 0 #315f55;
}

.build-action.primary:disabled {
  border-color: rgba(226, 212, 173, 0.14);
  color: #68736b;
  background: rgba(240, 229, 195, 0.02);
  box-shadow: none;
}

.build-text-action {
  min-height: 38px;
  padding: 3px 0;
  border: 0;
  color: #bfa96e;
  background: transparent;
  font-size: 0.6rem;
  font-weight: 780;
  text-decoration: underline;
  text-decoration-color: rgba(235, 185, 107, 0.28);
  text-underline-offset: 3px;
  cursor: pointer;
}

.build-text-action:hover {
  color: var(--forge-gold-bright);
}

.build-text-action:disabled {
  color: #58635c;
  cursor: not-allowed;
}

.build-section {
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid rgba(226, 212, 173, 0.15);
}

.build-section > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.build-section > header span {
  display: block;
  color: #8c998f;
  font-size: 0.5rem;
  font-weight: 830;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.build-section h3 {
  margin: 3px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.93rem;
  font-style: italic;
  font-weight: 500;
}

.build-empty-state {
  display: grid;
  gap: 4px;
  padding: 17px;
  border: 1px dashed rgba(226, 212, 173, 0.2);
  border-radius: 6px 12px;
  color: #8b9890;
  text-align: center;
}

.build-empty-state strong {
  color: #c7cbbd;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}

.build-empty-state span {
  font-size: 0.62rem;
}

.build-group {
  margin-top: 10px;
}

.build-group:first-child {
  margin-top: 0;
}

.build-group-heading {
  --build-group-color: var(--forge-teal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
  padding: 0 2px;
}

.build-group-heading strong {
  color: color-mix(in srgb, var(--build-group-color) 68%, white 32%);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.build-group-heading span {
  color: #7d8981;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.54rem;
}

.build-skill-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 5px 6px 5px 10px;
  border-top: 1px solid rgba(226, 212, 173, 0.09);
}

.build-skill-row:first-of-type {
  border-top: 0;
}

.build-skill-row > button:first-child {
  overflow: hidden;
  padding: 4px 0;
  border: 0;
  color: #c9cec2;
  background: transparent;
  font-size: 0.64rem;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.remove-build-skill {
  min-width: 34px;
  min-height: 32px;
  border: 1px solid rgba(238, 128, 104, 0.2);
  border-radius: 5px 9px;
  color: #c4978c;
  background: rgba(238, 128, 104, 0.035);
  cursor: pointer;
}

.remove-build-skill:hover {
  border-color: rgba(238, 128, 104, 0.58);
  color: #ffd5cb;
}

.saved-build-list {
  display: grid;
  gap: 7px;
}

.saved-build-empty {
  margin: 0;
  color: #7e8a82;
  font-size: 0.64rem;
}

.saved-build-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 9px;
  border: 1px solid rgba(226, 212, 173, 0.15);
  border-radius: 6px 12px;
  background: rgba(240, 229, 195, 0.025);
}

.load-saved-build {
  display: grid;
  min-width: 0;
  padding: 2px;
  border: 0;
  color: #d1d3c5;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.load-saved-build strong {
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.load-saved-build small {
  margin-top: 3px;
  color: #7d8981;
  font-size: 0.54rem;
}

.delete-saved-build {
  min-width: 38px;
  min-height: 38px;
  border: 1px solid rgba(238, 128, 104, 0.17);
  border-radius: 5px 9px;
  color: #b08e85;
  background: rgba(238, 128, 104, 0.03);
  cursor: pointer;
}

.about-lede {
  margin: 0;
  color: #d3d5c7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.55;
}

.skill-data-stats {
  margin-top: 18px;
}

.about-data-note,
.about-callout {
  margin-top: 14px;
  padding: 13px;
  border: 1px solid rgba(226, 212, 173, 0.16);
  border-radius: 6px 12px;
  background: rgba(240, 229, 195, 0.025);
}

.about-data-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.about-data-note .live-dot {
  flex: 0 0 auto;
  margin-top: 6px;
  background: var(--forge-gold);
  box-shadow: 0 0 12px rgba(235, 185, 107, 0.7);
}

.about-data-note p,
.about-callout p {
  margin: 0;
  color: #8e9a91;
  font-size: 0.65rem;
  line-height: 1.5;
}

.about-data-note strong,
.about-callout strong {
  color: #d5d7c9;
  font-size: 0.69rem;
}

.about-callout {
  border-color: rgba(235, 185, 107, 0.27);
  background: rgba(235, 185, 107, 0.045);
}

.about-callout p {
  margin-top: 5px;
}

.about-callout + .about-callout {
  margin-top: 9px;
}

.about-callout a {
  color: var(--forge-gold-bright);
  font-weight: 760;
}

.about-callout a:hover {
  color: #fff1d0;
}

.about-howto {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 11px 10px;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid rgba(226, 212, 173, 0.14);
}

.about-howto > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(235, 185, 107, 0.28);
  border-radius: 50%;
  color: var(--forge-gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.53rem;
}

.about-howto p {
  align-self: center;
  margin: 0;
  color: #8e9b92;
  font-size: 0.65rem;
}

.about-howto strong {
  color: #cfd2c5;
}

.skill-dock {
  position: absolute;
  z-index: 24;
  bottom: 22px;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(5, minmax(68px, 1fr));
  gap: 3px;
  padding: 5px;
  border: 1px solid rgba(226, 212, 173, 0.48);
  border-radius: 8px 18px 8px 18px;
  background: rgba(5, 13, 11, 0.94);
  box-shadow: var(--forge-shadow);
  transform: translateX(-50%);
}

.skill-dock-action {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  min-height: 58px;
  padding: 5px 10px;
  border: 0;
  border-radius: 5px 10px;
  color: #b4beb5;
  background: transparent;
  font-size: 0.58rem;
  font-weight: 770;
  cursor: pointer;
}

.skill-dock-action:hover,
.skill-dock-action.active {
  color: var(--forge-gold-bright);
  background: rgba(235, 185, 107, 0.08);
}

.skill-dock-action:disabled {
  color: #5e6a62;
  cursor: not-allowed;
}

#skillAccountLabel {
  display: block;
  max-width: 92px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dock-glyph {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 21px;
  opacity: 0.9;
}

.dock-glyph.search {
  width: 15px;
  height: 15px;
  margin-bottom: 3px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.dock-glyph.search::after {
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 8px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
}

.dock-glyph.node {
  border: 1px dotted currentColor;
  border-radius: 50%;
}

.dock-glyph.node::after {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  content: "";
}

.dock-glyph.build::before,
.dock-glyph.build::after {
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.dock-glyph.build::before {
  top: 1px;
  left: 1px;
  width: 8px;
  height: 8px;
  box-shadow: 11px 11px 0 -1px rgba(0, 0, 0, 0), 11px 11px 0 0 currentColor;
}

.dock-glyph.build::after {
  top: 9px;
  left: 9px;
  width: 2px;
  height: 2px;
  border: 0;
  background: currentColor;
  box-shadow: -5px -5px 0 currentColor, 5px 5px 0 currentColor;
  transform: rotate(45deg);
}

.dock-glyph.info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  font-style: italic;
}

.dock-glyph.account {
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.dock-glyph.account::before {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.dock-glyph.account::after {
  position: absolute;
  right: 3px;
  bottom: 3px;
  left: 3px;
  height: 5px;
  border-radius: 8px 8px 3px 3px;
  background: currentColor;
  content: "";
}

.dock-count {
  position: absolute;
  top: 3px;
  right: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 17px;
  min-height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  color: #161108;
  background: var(--forge-gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.48rem;
}

.quick-build-summary {
  position: absolute;
  z-index: 23;
  right: 31px;
  bottom: 70px;
  width: 220px;
}

.quick-build-summary button {
  display: grid;
  gap: 6px;
  width: 100%;
  min-height: 62px;
  padding: 10px 12px;
  border: 1px solid rgba(235, 185, 107, 0.36);
  border-radius: 7px 15px;
  color: inherit;
  background: linear-gradient(110deg, rgba(7, 16, 13, 0.94), rgba(35, 26, 15, 0.92));
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.66);
  text-align: left;
  cursor: pointer;
}

.quick-build-summary button:hover {
  border-color: rgba(235, 185, 107, 0.7);
}

.quick-build-summary button > span:first-child {
  display: grid;
}

.quick-build-summary small {
  color: #8f9b92;
  font-size: 0.49rem;
  font-weight: 830;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-build-summary strong {
  overflow: hidden;
  margin-top: 2px;
  color: #ded9c4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.76rem;
  font-style: italic;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-build-numbers {
  color: var(--forge-gold-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.55rem;
}

.skill-toast {
  position: fixed;
  z-index: 60;
  top: 96px;
  left: 50%;
  max-width: min(420px, calc(100vw - 32px));
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(235, 185, 107, 0.56);
  border-radius: 6px 12px;
  color: #171108;
  background: var(--forge-gold-bright);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.66);
  font-size: 0.67rem;
  font-weight: 800;
  text-align: center;
  transform: translateX(-50%);
}

.skill-toast button {
  min-height: 30px;
  margin-left: 10px;
  padding: 0 10px;
  border: 1px solid rgba(23, 17, 8, 0.46);
  border-radius: 4px 8px;
  color: #171108;
  background: rgba(255, 255, 255, 0.2);
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

@media (max-width: 1050px) {
  .skill-topbar {
    grid-template-columns: minmax(200px, 1fr) auto minmax(150px, 1fr);
  }

  .skill-build-chip > span {
    display: none;
  }

  .skill-overlay {
    width: min(408px, calc(100vw - 100px));
  }

  .quick-build-summary {
    display: none;
  }

  .shared-build-banner {
    top: auto;
    bottom: 98px;
    width: min(440px, calc(100vw - 48px));
  }

  .skill-map-footnote {
    bottom: 94px;
  }

  .skill-map-legend {
    bottom: 94px;
  }
}

@media (max-width: 760px) {
  .skill-page,
  .skill-app {
    min-height: 500px;
  }

  .skill-app {
    background-position: 58% center;
  }

  .skill-map-panel::before,
  .skill-viewport {
    inset: 72px 8px 8px;
    border-radius: 6px 14px;
  }

  .skill-map-panel::after {
    top: 71px;
    right: 30px;
  }

  .skill-topbar {
    top: 8px;
    right: 8px;
    left: 8px;
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 56px;
    padding: 5px 7px;
    border-radius: 6px 14px;
  }

  .skill-brand-copy,
  .skill-build-chip {
    display: none;
  }

  .skill-orbit {
    width: 36px;
    height: 36px;
  }

  .skill-orbit::before {
    width: 41px;
  }

  .skill-route-nav {
    justify-self: stretch;
    grid-template-columns: repeat(3, 1fr);
    min-width: 0;
  }

  .skill-route-nav a {
    min-width: 0;
    min-height: 32px;
    padding: 0 7px;
    font-size: 0.62rem;
  }

  .skill-title-card {
    top: 82px;
    left: 18px;
    width: min(318px, calc(100vw - 94px));
    padding: 11px 13px 12px;
    border-radius: 5px 13px;
  }

  .skill-title-card .panel-label {
    margin-bottom: 3px;
    font-size: 0.49rem;
  }

  .skill-title-card h1 {
    font-size: clamp(1.16rem, 5.8vw, 1.55rem);
  }

  .skill-title-card > p:last-child {
    overflow: hidden;
    margin-top: 5px;
    font-size: 0.56rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .discipline-rail {
    top: 164px;
    right: 17px;
    bottom: auto;
    left: 17px;
    display: flex;
    width: auto;
    overflow-x: auto;
    padding: 2px 14px 8px 0;
    scrollbar-color: rgba(235, 185, 107, 0.42) transparent;
    scrollbar-width: thin;
    box-shadow: inset -18px 0 16px -18px rgba(255, 224, 164, 0.72);
  }

  .discipline-rail::-webkit-scrollbar {
    display: block;
    height: 3px;
  }

  .discipline-rail::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(235, 185, 107, 0.42);
  }

  .discipline-button {
    width: 48px;
    min-width: 48px;
    min-height: 42px;
  }

  .discipline-button:hover {
    transform: translateY(-1px);
  }

  .skill-map-actions {
    top: 82px;
    right: 17px;
    grid-template-columns: 40px;
    border-radius: 5px 11px;
  }

  .skill-map-actions button {
    min-height: 38px;
    border-right: 0;
    border-bottom: 1px solid rgba(226, 212, 173, 0.15);
  }

  .skill-map-actions button:last-child {
    border-bottom: 0;
  }

  .skill-map-legend {
    display: none;
  }

  .skill-map-footnote {
    right: auto;
    bottom: calc(138px + env(safe-area-inset-bottom));
    left: 17px;
    max-width: calc(100vw - 34px);
    min-height: 29px;
    padding: 4px 8px;
    font-size: 0.52rem;
  }

  .skill-focus-clear {
    overflow: hidden;
    max-width: 150px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .skill-node {
    grid-template-columns: 34px minmax(0, 1fr);
    width: 150px;
    min-height: 52px;
    gap: 7px;
    padding: 6px 9px 6px 7px;
  }

  .skill-node-mark {
    width: 34px;
    height: 34px;
    font-size: 0.59rem;
  }

  .skill-node-copy strong {
    font-size: 0.69rem;
  }

  .skill-node-copy small {
    margin-top: 4px;
    font-size: 0.49rem;
  }

  .skill-node.root-node {
    width: 164px;
    min-height: 58px;
  }

  .skill-node.root-node .skill-node-mark {
    width: 38px;
    height: 38px;
  }

  .skill-overlay-scrim {
    backdrop-filter: blur(3px);
  }

  .skill-overlay,
  .skill-explore-panel,
  .skill-build-panel,
  .skill-inspector,
  .skill-about-panel,
  .skill-account-panel {
    top: auto;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 8px;
    width: auto;
    max-height: min(79dvh, 680px);
    border-radius: 8px 20px 8px 20px;
    transform: translateY(30px) scale(0.985);
  }

  .skill-overlay.is-open {
    transform: translateY(0) scale(1);
  }

  .skill-overlay-heading {
    min-height: 69px;
    padding: 13px 14px 11px;
  }

  .skill-overlay-scroll {
    padding: 14px 14px calc(22px + env(safe-area-inset-bottom));
  }

  .skill-dock {
    z-index: 24;
    right: 13px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 13px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 4px;
    transform: none;
  }

  .skill-dock-action {
    min-width: 0;
    min-height: 57px;
    padding: 4px 3px;
    font-size: 0.53rem;
  }

  .dock-count {
    right: 4px;
  }

  .quick-build-summary {
    display: block;
    right: 17px;
    bottom: calc(80px + env(safe-area-inset-bottom));
    width: min(190px, calc(100vw - 34px));
  }

  .shared-build-banner {
    top: auto;
    right: 17px;
    bottom: calc(140px + env(safe-area-inset-bottom));
    left: 17px;
    width: auto;
  }

  .quick-build-summary button {
    min-height: 50px;
    padding: 7px 10px;
  }

  .quick-build-summary small {
    display: none;
  }

  .quick-build-summary strong {
    margin-top: 0;
    font-size: 0.69rem;
  }

  .skill-toast {
    top: 76px;
  }
}

@media (max-width: 380px) {
  .skill-title-card {
    width: calc(100vw - 88px);
  }

  .skill-title-card > p:last-child {
    display: none;
  }

  .discipline-rail {
    top: 143px;
  }

  .skill-map-actions button:nth-child(2) {
    display: none;
  }

  .build-metrics,
  .skill-data-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .skill-budget-card {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .skill-budget-gauge {
    width: 70px;
    height: 70px;
  }

  .shared-build-banner {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .shared-build-banner button {
    grid-column: 1 / -1;
  }

  .skill-node {
    width: 142px;
  }
}

@media (max-height: 700px) and (min-width: 560px) {
  .skill-page,
  .skill-app {
    min-height: 0;
  }

  .skill-topbar {
    top: 8px;
    min-height: 52px;
  }

  .skill-map-panel::before,
  .skill-viewport {
    inset: 66px 10px 8px;
  }

  .skill-title-card {
    top: 79px;
    left: 24px;
    width: 300px;
    padding: 10px 14px;
  }

  .skill-title-card h1 {
    font-size: 1.35rem;
  }

  .skill-title-card > p:last-child {
    display: none;
  }

  .discipline-rail {
    top: 140px;
    right: 23px;
    bottom: auto;
    left: 23px;
    display: flex;
    width: auto;
    height: 52px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .discipline-button {
    flex: 0 0 56px;
    min-height: 40px;
  }

  .skill-map-actions {
    top: 79px;
    right: 23px;
  }

  .skill-map-legend {
    display: none;
  }

  .skill-map-footnote {
    right: auto;
    bottom: 18px;
    left: 23px;
  }

  .skill-dock {
    right: 22px;
    bottom: 14px;
    left: auto;
    grid-template-columns: repeat(5, 58px);
    transform: none;
  }

  .skill-dock-action {
    min-height: 50px;
  }

  .quick-build-summary {
    display: none;
  }

  .shared-build-banner {
    top: auto;
    right: 324px;
    bottom: 14px;
    left: 22px;
    width: min(420px, calc(100vw - 370px));
  }

  .skill-overlay {
    top: 72px;
    bottom: 10px;
  }
}

/* Visual polish: prevent the discipline picker and shared-build notice from
   covering map controls or playable nodes. */
@media (min-width: 761px) and (min-height: 701px) {
  .discipline-rail {
    grid-template-columns: 56px;
    width: 66px;
    padding-right: 6px;
    padding-bottom: 18px;
    scrollbar-color: rgba(235, 185, 107, 0.42) transparent;
    scrollbar-width: thin;
  }

  .discipline-rail::-webkit-scrollbar {
    display: block;
    width: 3px;
  }

  .discipline-rail::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(235, 185, 107, 0.42);
  }
}

@media (min-width: 1051px) {
  body.shared-build-view .shared-build-banner {
    right: 198px;
  }
}

@media (max-width: 1050px) {
  body.shared-build-view .skill-map-legend,
  body.shared-build-view .skill-map-footnote {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 760px) {
  .discipline-rail {
    right: 65px;
    scroll-padding-inline: 4px;
    scroll-snap-type: x proximity;
    mask-image: linear-gradient(90deg, #000 0 calc(100% - 28px), transparent 100%);
  }

  .discipline-button {
    scroll-snap-align: start;
  }

  .skill-node-copy small {
    font-size: 0.56rem;
  }

  .skill-dock-action {
    font-size: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .skill-page *,
  .skill-page *::before,
  .skill-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (forced-colors: active) {
  .skill-app {
    background: Canvas;
  }

  .skill-node,
  .discipline-button,
  .skill-title-card,
  .skill-topbar,
  .skill-overlay,
  .skill-dock,
  .quick-build-summary button {
    color: CanvasText;
    background: Canvas;
    border-color: CanvasText;
    box-shadow: none;
    forced-color-adjust: auto;
  }

  .skill-node.planned,
  .skill-node.selected,
  .discipline-button.active,
  .skill-route-nav a.active {
    outline: 3px solid Highlight;
    color: HighlightText;
    background: Highlight;
  }

  #skillEdges {
    forced-color-adjust: none;
  }
}
