:root {
  color-scheme: dark;
  --bg: #070908;
  --panel: #0e1311;
  --panel-2: #121816;
  --panel-3: #171f1d;
  --text: #edf6ef;
  --muted: #aab8b0;
  --dim: #6f7d76;
  --line: #293731;
  --line-strong: #3f5149;
  --green: #83f3a2;
  --cyan: #66e5df;
  --amber: #ffd166;
  --red: #ff6f61;
  --violet: #c29bff;
  --blue: #77b7ff;
  --canvas-w: 6552px;
  --canvas-h: 3024px;
  --zoom: 0.72;
  --inspector-w: 181px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 209, 102, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(102, 229, 223, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #080b09 0%, #050706 100%);
  background-size: 48px 48px, 48px 48px, auto;
  color: var(--text);
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.app-shell {
  min-height: 100vh;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 6px 11px;
  border-bottom: 1px solid rgba(131, 243, 162, 0.18);
  background:
    linear-gradient(180deg, rgba(18, 24, 22, 0.96), rgba(10, 14, 13, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 12px);
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 112px;
  flex: 0 0 auto;
}

.brand-lockup h1 {
  white-space: nowrap;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(131, 243, 162, 0.42);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(131, 243, 162, 0.13), transparent 42%),
    linear-gradient(315deg, rgba(255, 209, 102, 0.18), transparent 48%),
    #111714;
  box-shadow: inset 0 0 18px rgba(102, 229, 223, 0.1);
}

.brand-mark span {
  width: 13px;
  height: 13px;
  border: 1px solid var(--green);
  border-radius: 50%;
  display: block;
  position: relative;
}

.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
  inset: 4px -5px;
  border-top: 1px solid var(--amber);
  border-bottom: 1px solid var(--cyan);
  transform: rotate(35deg);
}

.brand-mark span::after {
  transform: rotate(-35deg);
  border-top-color: var(--cyan);
  border-bottom-color: var(--amber);
}

.eyebrow {
  margin: 0 0 2px;
  color: var(--amber);
  font-size: 6px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: 12px;
  line-height: 1.1;
  font-weight: 760;
}

h2 {
  font-size: 9px;
  line-height: 1.25;
  font-weight: 720;
}

h3 {
  font-size: 8px;
  line-height: 1.25;
  font-weight: 720;
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  min-width: 0;
}

.mode-switch,
.zoom-controls {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid rgba(170, 184, 176, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.mode-button,
.zoom-controls button,
.utility-button {
  min-height: 23px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--muted);
  background: transparent;
  padding: 0 7px;
  font-size: 11px;
}

.mode-button.is-active {
  color: #07100b;
  background: var(--green);
  border-color: rgba(131, 243, 162, 0.6);
  box-shadow: 0 0 22px rgba(131, 243, 162, 0.18);
}

.zoom-controls button {
  min-width: 24px;
  padding: 0 5px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.utility-button {
  color: var(--text);
  border-color: rgba(255, 209, 102, 0.3);
  background: rgba(255, 209, 102, 0.08);
}

.search-control input {
  width: min(190px, 20vw);
  min-width: 104px;
  min-height: 26px;
  border: 1px solid rgba(102, 229, 223, 0.24);
  border-radius: 5px;
  color: var(--text);
  background: rgba(8, 12, 11, 0.82);
  padding: 0 8px;
  font-size: 11px;
  outline: none;
}

.search-control input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(102, 229, 223, 0.1);
}

.workspace {
  min-height: 0;
  height: 100%;
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
}

.map-panel,
.inspector {
  min-height: 0;
  border: 1px solid rgba(131, 243, 162, 0.14);
  background: rgba(12, 17, 15, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.map-panel {
  position: absolute;
  inset: 0;
  display: block;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.map-panel-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(170, 184, 176, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.summary-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.summary-pill {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid rgba(170, 184, 176, 0.18);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
}

.summary-pill strong {
  color: var(--text);
  font-size: 13px;
}

.map-stage {
  position: absolute;
  inset: 0;
  min-height: 0;
  overflow: auto;
  background:
    linear-gradient(90deg, rgba(131, 243, 162, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 209, 102, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(102, 229, 223, 0.08), transparent 28%),
    #070a08;
  background-size: 24px 24px, 24px 24px, auto, auto;
}

.map-stage:focus {
  outline: 2px solid rgba(102, 229, 223, 0.42);
  outline-offset: -2px;
}

.map-scale-shell {
  position: relative;
  width: calc(var(--canvas-w) * var(--zoom));
  height: calc(var(--canvas-h) * var(--zoom));
}

.map-canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--canvas-w);
  height: var(--canvas-h);
  transform: scale(var(--zoom));
  transform-origin: 0 0;
  overflow: visible;
}

.lane-layer,
.node-layer,
.label-layer,
.link-layer {
  position: absolute;
  inset: 0;
}

.lane-layer {
  pointer-events: none;
  z-index: 2;
}

.link-layer {
  width: var(--canvas-w);
  height: var(--canvas-h);
  overflow: visible;
  pointer-events: none;
  z-index: 4;
}

.label-layer {
  z-index: 8;
  pointer-events: none;
}

.node-layer {
  z-index: 12;
  pointer-events: none;
}

.surface-port-layer {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
}

.surface-port {
  position: absolute;
  display: block;
  border: 1px solid rgba(102, 229, 223, 0.54);
  background:
    linear-gradient(180deg, rgba(102, 229, 223, 0.56), rgba(102, 229, 223, 0.16)),
    rgba(7, 11, 10, 0.92);
  box-shadow:
    0 0 12px rgba(102, 229, 223, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  opacity: 0.86;
}

.surface-port-left,
.surface-port-right {
  top: 50%;
  width: 9px;
  height: 28px;
  transform: translateY(-50%);
}

.surface-port-left {
  left: -1px;
  border-left: 0;
  border-radius: 0 7px 7px 0;
}

.surface-port-right {
  right: -1px;
  border-right: 0;
  border-radius: 7px 0 0 7px;
  border-color: rgba(131, 243, 162, 0.56);
  background:
    linear-gradient(180deg, rgba(131, 243, 162, 0.58), rgba(131, 243, 162, 0.14)),
    rgba(7, 11, 10, 0.92);
}

.surface-port-top,
.surface-port-bottom {
  left: 50%;
  width: 28px;
  height: 9px;
  transform: translateX(-50%);
}

.surface-port-top {
  top: -1px;
  border-top: 0;
  border-radius: 0 0 7px 7px;
}

.surface-port-bottom {
  bottom: -1px;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  border-color: rgba(131, 243, 162, 0.56);
  background:
    linear-gradient(180deg, rgba(131, 243, 162, 0.58), rgba(131, 243, 162, 0.14)),
    rgba(7, 11, 10, 0.92);
}

.service-area {
  position: absolute;
  border: 1px solid rgba(102, 229, 223, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(102, 229, 223, 0.055), rgba(131, 243, 162, 0.022)),
    rgba(12, 17, 15, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 0 46px rgba(102, 229, 223, 0.035);
  pointer-events: auto;
  cursor: move;
  overflow: hidden;
}

.service-area::after {
  content: "";
  position: absolute;
  inset: 46px 12px 12px;
  border: 1px dashed rgba(170, 184, 176, 0.12);
  border-radius: 6px;
  pointer-events: none;
}

.service-area.is-dragging {
  border-color: rgba(131, 243, 162, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 0 34px rgba(131, 243, 162, 0.08);
}

.service-area.area-laptop {
  border-color: rgba(255, 209, 102, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 209, 102, 0.062), rgba(102, 229, 223, 0.022)),
    rgba(13, 15, 12, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 0 52px rgba(255, 209, 102, 0.035);
}

.service-area.area-functions {
  border-color: rgba(194, 155, 255, 0.32);
  background:
    linear-gradient(180deg, rgba(194, 155, 255, 0.064), rgba(255, 209, 102, 0.02)),
    rgba(12, 11, 17, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 0 52px rgba(194, 155, 255, 0.04);
}

.service-area.area-website {
  border-color: rgba(131, 243, 162, 0.3);
  background:
    linear-gradient(180deg, rgba(131, 243, 162, 0.06), rgba(102, 229, 223, 0.024)),
    rgba(9, 17, 14, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 0 54px rgba(131, 243, 162, 0.04);
}

.service-area-header {
  display: grid;
  gap: 3px;
  padding: 11px 13px;
  border-bottom: 1px solid rgba(170, 184, 176, 0.1);
  background: rgba(0, 0, 0, 0.13);
}

.service-area-header span {
  color: var(--amber);
  font-size: 8px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.service-area-header strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.05;
}

.service-area-header em {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  line-height: 1.2;
}

.laptop-container {
  position: absolute;
  border: 1px solid rgba(255, 209, 102, 0.3);
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(255, 209, 102, 0.072), rgba(102, 229, 223, 0.02)),
    rgba(10, 12, 10, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 0 54px rgba(255, 209, 102, 0.035),
    0 18px 42px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  cursor: move;
  overflow: hidden;
}

.laptop-container.is-dragging {
  border-color: rgba(255, 209, 102, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    inset 0 0 54px rgba(255, 209, 102, 0.055),
    0 0 34px rgba(255, 209, 102, 0.12);
}

.laptop-container::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 86px;
  bottom: 12px;
  border: 1px solid rgba(255, 209, 102, 0.13);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 209, 102, 0.025) 1px, transparent 1px);
  background-size: 33.33% 100%, 100% 24px;
  pointer-events: none;
}

.laptop-container-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 209, 102, 0.17);
  background: rgba(0, 0, 0, 0.16);
}

.laptop-icon {
  width: 32px;
  height: 34px;
  position: relative;
}

.laptop-icon span:first-child {
  position: absolute;
  left: 3px;
  right: 3px;
  top: 5px;
  height: 19px;
  border: 1px solid rgba(255, 209, 102, 0.78);
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(102, 229, 223, 0.18), transparent 56%),
    rgba(255, 209, 102, 0.08);
}

.laptop-icon span:last-child {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 5px;
  border: 1px solid rgba(255, 209, 102, 0.62);
  border-radius: 2px 2px 6px 6px;
  background: rgba(255, 209, 102, 0.12);
}

.laptop-container-header span,
.laptop-list-label {
  color: var(--amber);
  font-size: 8px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.laptop-container-header strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 16px;
  line-height: 1;
}

.laptop-container-header em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  line-height: 1.2;
}

.laptop-list-label {
  position: absolute;
  top: 94px;
  left: 24px;
  z-index: 1;
}

.laptop-host-grid {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 114px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
}

.laptop-host-chip {
  min-width: 0;
  height: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 4px;
  padding: 0 5px;
  border: 1px solid rgba(170, 184, 176, 0.16);
  border-radius: 4px;
  color: var(--text);
  background: rgba(5, 8, 7, 0.58);
  font-size: 8px;
  line-height: 1;
}

.host-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 10px rgba(131, 243, 162, 0.48);
}

.laptop-host-chip.status-warning .host-status-dot {
  background: var(--amber);
  box-shadow: 0 0 10px rgba(255, 209, 102, 0.44);
}

.laptop-host-chip.status-offline {
  opacity: 0.58;
}

.laptop-host-chip.status-offline .host-status-dot {
  background: var(--red);
  box-shadow: 0 0 10px rgba(255, 111, 97, 0.36);
}

.laptop-host-chip strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 780;
}

.laptop-host-chip em {
  color: var(--amber);
  font-style: normal;
  font-size: 7px;
  font-weight: 850;
}

.laptop-host-chip.group-b {
  border-color: rgba(102, 229, 223, 0.22);
}

.laptop-host-chip.group-c {
  border-color: rgba(194, 155, 255, 0.26);
}

.bq-container {
  position: absolute;
  border: 1px solid rgba(119, 183, 255, 0.34);
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(119, 183, 255, 0.085), rgba(102, 229, 223, 0.022)),
    rgba(5, 9, 10, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 0 54px rgba(119, 183, 255, 0.04),
    0 18px 42px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  cursor: move;
  overflow: hidden;
}

.bq-container.is-dragging {
  border-color: rgba(119, 183, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    inset 0 0 54px rgba(119, 183, 255, 0.06),
    0 0 34px rgba(119, 183, 255, 0.12);
}

.bq-container::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 86px;
  bottom: 12px;
  border: 1px solid rgba(119, 183, 255, 0.13);
  border-radius: 7px;
  background: repeating-linear-gradient(
    180deg,
    rgba(119, 183, 255, 0.035) 0 1px,
    transparent 1px 38px
  );
}

.bq-container-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(119, 183, 255, 0.18);
  background: rgba(0, 0, 0, 0.16);
}

.database-icon {
  width: 31px;
  height: 34px;
  position: relative;
  display: grid;
  place-items: center;
}

.database-icon span {
  position: absolute;
  left: 3px;
  right: 3px;
  height: 11px;
  border: 1px solid rgba(119, 183, 255, 0.85);
  border-radius: 50%;
  background: rgba(119, 183, 255, 0.1);
}

.database-icon span:nth-child(1) {
  top: 2px;
}

.database-icon span:nth-child(2) {
  top: 11px;
}

.database-icon span:nth-child(3) {
  top: 20px;
}

.bq-container-header span,
.bq-table-list-label {
  color: var(--amber);
  font-size: 8px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.bq-container-header strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 16px;
  line-height: 1;
}

.bq-container-header em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  line-height: 1.2;
}

.bq-table-list-label {
  position: absolute;
  top: 94px;
  left: 26px;
  z-index: 1;
}

.firebase-container {
  position: absolute;
  border: 1px solid rgba(255, 209, 102, 0.34);
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(255, 209, 102, 0.095), rgba(131, 243, 162, 0.025)),
    rgba(8, 9, 6, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 0 54px rgba(255, 209, 102, 0.04),
    0 18px 42px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  cursor: move;
  overflow: hidden;
}

.firebase-container.is-dragging {
  border-color: rgba(255, 209, 102, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    inset 0 0 54px rgba(255, 209, 102, 0.06),
    0 0 34px rgba(255, 209, 102, 0.12);
}

.firebase-container::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 86px;
  bottom: 12px;
  border: 1px solid rgba(255, 209, 102, 0.14);
  border-radius: 7px;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 209, 102, 0.035) 0 1px,
    transparent 1px 38px
  );
}

.firebase-container-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 209, 102, 0.18);
  background: rgba(0, 0, 0, 0.16);
}

.firebase-icon {
  width: 31px;
  height: 34px;
  position: relative;
}

.firebase-icon span {
  position: absolute;
  display: block;
  border-radius: 3px 12px 4px 12px;
  transform-origin: bottom center;
}

.firebase-icon span:nth-child(1) {
  left: 7px;
  bottom: 2px;
  width: 16px;
  height: 26px;
  background: linear-gradient(180deg, rgba(255, 209, 102, 0.95), rgba(255, 111, 97, 0.68));
  clip-path: polygon(49% 0, 83% 42%, 72% 100%, 16% 100%, 0 46%);
}

.firebase-icon span:nth-child(2) {
  left: 3px;
  bottom: 2px;
  width: 14px;
  height: 21px;
  background: rgba(131, 243, 162, 0.62);
  clip-path: polygon(56% 4%, 100% 100%, 10% 100%);
}

.firebase-icon span:nth-child(3) {
  right: 3px;
  bottom: 2px;
  width: 13px;
  height: 23px;
  background: rgba(102, 229, 223, 0.42);
  clip-path: polygon(28% 6%, 100% 100%, 8% 100%);
}

.firebase-container-header span,
.firebase-collection-list-label {
  color: var(--amber);
  font-size: 8px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.firebase-container-header strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 16px;
  line-height: 1;
}

.firebase-container-header em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  line-height: 1.2;
}

.firebase-collection-list-label {
  position: absolute;
  top: 94px;
  left: 26px;
  z-index: 1;
}

.gcs-container {
  position: absolute;
  border: 1px solid rgba(194, 155, 255, 0.34);
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(194, 155, 255, 0.09), rgba(119, 183, 255, 0.024)),
    rgba(8, 7, 13, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 0 54px rgba(194, 155, 255, 0.04),
    0 18px 42px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  cursor: move;
  overflow: hidden;
}

.gcs-container.is-dragging {
  border-color: rgba(194, 155, 255, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    inset 0 0 54px rgba(194, 155, 255, 0.06),
    0 0 34px rgba(194, 155, 255, 0.12);
}

.gcs-container::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 86px;
  bottom: 12px;
  border: 1px solid rgba(194, 155, 255, 0.14);
  border-radius: 7px;
  background: repeating-linear-gradient(
    180deg,
    rgba(194, 155, 255, 0.035) 0 1px,
    transparent 1px 42px
  );
}

.gcs-container-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(194, 155, 255, 0.18);
  background: rgba(0, 0, 0, 0.16);
}

.gcs-icon {
  width: 31px;
  height: 34px;
  position: relative;
}

.gcs-icon span:first-child {
  position: absolute;
  left: 4px;
  right: 4px;
  top: 7px;
  height: 18px;
  border: 1px solid rgba(194, 155, 255, 0.8);
  border-radius: 5px 5px 4px 4px;
  background:
    linear-gradient(135deg, rgba(194, 155, 255, 0.22), transparent 60%),
    rgba(194, 155, 255, 0.08);
}

.gcs-icon span:last-child {
  position: absolute;
  left: 8px;
  top: 4px;
  width: 12px;
  height: 5px;
  border: 1px solid rgba(194, 155, 255, 0.76);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  background: rgba(194, 155, 255, 0.12);
}

.gcs-container-header span,
.gcs-bucket-list-label {
  color: var(--amber);
  font-size: 8px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.gcs-container-header strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 16px;
  line-height: 1;
}

.gcs-container-header em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  line-height: 1.2;
}

.gcs-bucket-list-label {
  position: absolute;
  top: 94px;
  left: 26px;
  z-index: 1;
}

.pipeline-container {
  position: absolute;
  border: 1px solid rgba(131, 243, 162, 0.31);
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(131, 243, 162, 0.07), rgba(119, 183, 255, 0.022)),
    rgba(6, 11, 9, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 0 58px rgba(131, 243, 162, 0.035),
    0 18px 42px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  cursor: move;
  overflow: hidden;
}

.pipeline-container.is-dragging {
  border-color: rgba(131, 243, 162, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    inset 0 0 58px rgba(131, 243, 162, 0.06),
    0 0 34px rgba(131, 243, 162, 0.12);
}

.pipeline-container::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 86px;
  bottom: 12px;
  border: 1px solid rgba(131, 243, 162, 0.13);
  border-radius: 7px;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 209, 102, 0.035), transparent 22%),
    radial-gradient(circle at 36% 62%, rgba(102, 229, 223, 0.035), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 22%);
  pointer-events: none;
}

.pipeline-container-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(131, 243, 162, 0.17);
  background: rgba(0, 0, 0, 0.16);
}

.pipeline-icon {
  width: 34px;
  height: 34px;
  position: relative;
}

.pipeline-icon span {
  position: absolute;
  left: 5px;
  right: 5px;
  height: 6px;
  border: 1px solid rgba(131, 243, 162, 0.7);
  border-radius: 999px;
  background: rgba(131, 243, 162, 0.09);
}

.pipeline-icon span:nth-child(1) {
  top: 6px;
}

.pipeline-icon span:nth-child(2) {
  top: 15px;
  border-color: rgba(102, 229, 223, 0.7);
}

.pipeline-icon span:nth-child(3) {
  top: 24px;
  border-color: rgba(119, 183, 255, 0.7);
}

.pipeline-container-header span,
.pipeline-step-list-label {
  color: var(--amber);
  font-size: 8px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.pipeline-container-header strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 16px;
  line-height: 1;
}

.pipeline-container-header em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  line-height: 1.2;
}

.pipeline-internal-toggle {
  min-width: 74px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(131, 243, 162, 0.28);
  border-radius: 6px;
  color: rgba(237, 246, 239, 0.72);
  background: rgba(0, 0, 0, 0.22);
  font-size: 8px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
  cursor: pointer;
}

.pipeline-internal-toggle span {
  width: 15px;
  height: 8px;
  border: 1px solid rgba(170, 184, 176, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 5px 0 0 rgba(170, 184, 176, 0.34);
}

.pipeline-internal-toggle.is-active {
  border-color: rgba(131, 243, 162, 0.72);
  color: var(--text);
  background: rgba(131, 243, 162, 0.1);
  box-shadow: 0 0 18px rgba(131, 243, 162, 0.12);
}

.pipeline-internal-toggle.is-active span {
  border-color: rgba(131, 243, 162, 0.72);
  background: rgba(131, 243, 162, 0.13);
  box-shadow: inset -5px 0 0 var(--green);
}

.pipeline-container.is-internal-only {
  border-color: rgba(131, 243, 162, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 68px rgba(131, 243, 162, 0.06),
    0 0 30px rgba(131, 243, 162, 0.08);
}

.pipeline-step-list-label {
  position: absolute;
  top: 94px;
  left: 26px;
  z-index: 1;
}

.lane {
  position: absolute;
  top: 22px;
  bottom: 28px;
  border-left: 1px solid rgba(170, 184, 176, 0.12);
  border-right: 1px solid rgba(170, 184, 176, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 16%),
    rgba(255, 255, 255, 0.015);
}

.lane::before {
  content: attr(data-title);
  position: absolute;
  top: 18px;
  left: 16px;
  color: rgba(237, 246, 239, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lane::after {
  content: attr(data-subtitle);
  position: absolute;
  top: 38px;
  left: 16px;
  right: 16px;
  color: rgba(170, 184, 176, 0.58);
  font-size: 11px;
  line-height: 1.3;
}

.node-card {
  position: absolute;
  min-height: 92px;
  height: 112px;
  border: 1px solid rgba(170, 184, 176, 0.24);
  border-radius: 7px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--panel-2);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition:
    border-color 150ms ease,
    filter 150ms ease,
    box-shadow 150ms ease,
    opacity 150ms ease,
    transform 150ms ease,
    width 150ms ease,
    min-height 150ms ease;
  cursor: grab;
  user-select: none;
  pointer-events: auto;
}

.node-card:hover,
.node-card.is-selected {
  border-color: rgba(131, 243, 162, 0.58);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(131, 243, 162, 0.14),
    0 0 32px rgba(131, 243, 162, 0.1);
}

.node-card.is-selected {
  z-index: 20;
}

.node-card.is-expanded {
  min-height: 286px;
  height: auto;
  width: 276px !important;
  z-index: 25;
}

.node-card.has-api-ports.is-expanded {
  min-height: 520px;
  width: 390px !important;
  border-color: rgba(170, 184, 176, 0.24);
  overflow: visible;
  isolation: isolate;
}

.node-card.has-api-ports.is-expanded:hover,
.node-card.has-api-ports.is-expanded.is-selected {
  border-color: rgba(131, 243, 162, 0.58);
}

.node-card.has-api-ports.is-expanded .node-header {
  position: relative;
  z-index: 2;
}

.node-card.is-expanded {
  cursor: default;
}

.node-card.is-expanded .node-header {
  cursor: grab;
}

.node-card.has-api-ports:not(.is-expanded) {
  overflow: visible;
}

.node-card.has-attached-schedule {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.node-card.schedule-node {
  min-height: 24px;
  height: 24px;
  display: block;
  padding: 0;
  border-color: rgba(255, 209, 102, 0.34);
  border-radius: 6px 6px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 209, 102, 0.14), transparent 48%),
    rgba(16, 17, 12, 0.95);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.node-card.schedule-node.is-expanded {
  min-height: 122px;
  height: auto;
}

.node-card.schedule-node.is-attached-expanded {
  border-color: rgba(131, 243, 162, 0.52);
  background:
    linear-gradient(90deg, rgba(255, 209, 102, 0.18), rgba(131, 243, 162, 0.08) 55%, transparent),
    rgba(16, 17, 12, 0.97);
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(131, 243, 162, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.schedule-compact-row {
  height: 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
}

.schedule-clock {
  width: 12px;
  height: 12px;
  border: 1px solid var(--amber);
  border-radius: 999px;
  position: relative;
  box-shadow: 0 0 10px rgba(255, 209, 102, 0.24);
}

.schedule-clock::before,
.schedule-clock::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 1px;
  height: 4px;
  background: var(--amber);
  transform-origin: 50% 100%;
}

.schedule-clock::after {
  top: 5px;
  height: 3px;
  transform: rotate(90deg);
}

.schedule-node strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text);
  font-size: 9px;
  line-height: 1;
}

.schedule-node em {
  color: var(--amber);
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  line-height: 1;
}

.schedule-detail-panel {
  padding: 6px 7px 7px;
  border-top: 1px solid rgba(255, 209, 102, 0.16);
  background: linear-gradient(180deg, rgba(255, 209, 102, 0.055), transparent);
}

.schedule-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}

.schedule-kpi {
  min-width: 0;
  padding: 4px;
  border: 1px solid rgba(255, 209, 102, 0.12);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.16);
  cursor: help;
}

.schedule-kpi span,
.schedule-detail span {
  display: block;
  color: var(--amber);
  font-size: 6.5px;
  line-height: 1.05;
  font-weight: 850;
  text-transform: uppercase;
}

.schedule-kpi strong,
.schedule-detail strong {
  display: block;
  min-width: 0;
  margin-top: 2px;
  color: var(--text);
  font-size: 8px;
  line-height: 1.15;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.schedule-detail-list {
  display: grid;
  gap: 3px;
  margin-top: 6px;
}

.schedule-detail {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 5px;
  align-items: start;
}

.schedule-detail span,
.schedule-detail strong {
  margin-top: 0;
}

.node-card.pipeline-step-node {
  min-height: 98px;
  height: 98px;
  border-color: rgba(131, 243, 162, 0.27);
  background:
    linear-gradient(135deg, rgba(131, 243, 162, 0.075), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    rgba(11, 17, 14, 0.93);
}

.node-card.pipeline-step-node.flow-condition {
  border-color: rgba(255, 209, 102, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.11), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    rgba(17, 15, 9, 0.93);
}

.node-card.pipeline-step-node.flow-output {
  border-color: rgba(131, 243, 162, 0.42);
  background:
    linear-gradient(135deg, rgba(131, 243, 162, 0.11), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    rgba(9, 17, 13, 0.93);
}

.node-card.pipeline-step-node.flow-reject,
.node-card.pipeline-step-node.flow-dlq {
  border-color: rgba(255, 111, 97, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 111, 97, 0.095), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(18, 10, 9, 0.92);
}

.node-card.pipeline-step-node.is-expanded {
  min-height: 430px;
  width: 360px !important;
  border-color: rgba(102, 229, 223, 0.48);
  background:
    linear-gradient(90deg, rgba(102, 229, 223, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(102, 229, 223, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(4, 8, 7, 0.98), rgba(8, 15, 12, 0.98));
  background-size: 18px 18px, 18px 18px, auto;
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(102, 229, 223, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.node-card.pipeline-step-node.is-expanded.flow-condition {
  border-color: rgba(255, 209, 102, 0.62);
}

.node-card.pipeline-step-node.is-expanded.flow-reject,
.node-card.pipeline-step-node.is-expanded.flow-dlq {
  border-color: rgba(255, 111, 97, 0.56);
}

.pipeline-step-node .node-header {
  padding: 8px 8px 6px;
}

.pipeline-step-node .node-title {
  font-size: 12px;
}

.pipeline-step-node.is-expanded .node-header {
  padding: 10px 11px 8px;
  border-bottom-color: rgba(102, 229, 223, 0.18);
  background:
    linear-gradient(90deg, rgba(102, 229, 223, 0.12), transparent 34%),
    rgba(0, 0, 0, 0.18);
}

.pipeline-step-node.is-expanded .node-title {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
}

.pipeline-step-node.is-expanded .node-subtitle {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 9px;
}

.pipeline-step-node.is-expanded .node-body {
  max-height: 355px;
  overflow: auto;
  padding: 8px 10px 11px;
}

.pipeline-step-node.is-expanded .metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  margin-bottom: 7px;
}

.pipeline-logic-panel {
  display: grid;
  gap: 7px;
}

.pipeline-logic-block {
  border: 1px solid rgba(102, 229, 223, 0.14);
  border-radius: 5px;
  background:
    linear-gradient(90deg, rgba(102, 229, 223, 0.055), transparent 34%),
    rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.pipeline-logic-block header {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  padding: 6px 7px;
  border-bottom: 1px solid rgba(102, 229, 223, 0.12);
  background: rgba(0, 0, 0, 0.2);
}

.pipeline-logic-block header span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 18px;
  border: 1px solid rgba(102, 229, 223, 0.36);
  border-radius: 4px;
  color: var(--cyan);
  background: rgba(102, 229, 223, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 8px;
  font-weight: 900;
}

.pipeline-logic-block header strong {
  display: block;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  line-height: 1.1;
}

.pipeline-logic-block header em {
  display: block;
  margin-top: 2px;
  color: var(--amber);
  font-size: 7px;
  font-style: normal;
  line-height: 1.1;
  text-transform: uppercase;
}

.pipeline-rich-text {
  padding: 7px 8px 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.35;
}

.pipeline-rich-text p {
  margin: 0 0 4px;
}

.pipeline-rich-text ul,
.pipeline-logic-list {
  margin: 5px 0 0;
  padding: 0 8px 7px 20px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.35;
}

.pipeline-rich-text li,
.pipeline-logic-list li {
  margin: 2px 0;
}

.pipeline-code {
  margin: 0;
  padding: 6px 8px 8px;
  border-top: 1px solid rgba(170, 184, 176, 0.08);
  color: rgba(237, 246, 239, 0.84);
  background: rgba(0, 0, 0, 0.26);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 7.5px;
  line-height: 1.45;
  white-space: pre-wrap;
}

.logic-condition {
  border-color: rgba(255, 209, 102, 0.18);
}

.logic-condition header span {
  border-color: rgba(255, 209, 102, 0.44);
  color: var(--amber);
  background: rgba(255, 209, 102, 0.08);
}

.logic-fail {
  border-color: rgba(255, 111, 97, 0.18);
}

.logic-fail header span {
  border-color: rgba(255, 111, 97, 0.48);
  color: var(--red);
  background: rgba(255, 111, 97, 0.08);
}

.api-port-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.api-contact-pad {
  position: absolute;
  left: 0;
  right: 0;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(102, 229, 223, 0.3);
  border-bottom: 1px solid rgba(131, 243, 162, 0.24);
  border-left: 0;
  border-right: 0;
  background:
    linear-gradient(90deg, rgba(102, 229, 223, 0.19), rgba(7, 11, 10, 0.88) 26%, rgba(7, 11, 10, 0.88) 74%, rgba(131, 243, 162, 0.16));
  box-shadow:
    -2px 0 10px rgba(102, 229, 223, 0.18),
    2px 0 10px rgba(131, 243, 162, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.api-contact-pad::before,
.api-contact-pad::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  width: 7px;
  pointer-events: none;
}

.api-contact-pad::before {
  left: -7px;
  border-radius: 7px 0 0 7px;
  background: linear-gradient(180deg, rgba(102, 229, 223, 0.95), rgba(102, 229, 223, 0.28));
  box-shadow: -3px 0 12px rgba(102, 229, 223, 0.22);
}

.api-contact-pad::after {
  right: -7px;
  border-radius: 0 7px 7px 0;
  background: linear-gradient(180deg, rgba(131, 243, 162, 0.95), rgba(131, 243, 162, 0.26));
  box-shadow: 3px 0 12px rgba(131, 243, 162, 0.2);
}

.api-port {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  min-height: 14px;
  color: var(--text);
  font-size: 7px;
  line-height: 1;
  font-weight: 850;
  text-transform: none;
  transform: translateY(-50%);
}

.api-port-in {
  left: -10px;
}

.api-port-out {
  right: -10px;
}

.api-contact-pad .api-port {
  width: 1px;
  height: 1px;
  min-height: 1px;
}

.api-contact-pad .api-port-in {
  left: -7px;
}

.api-contact-pad .api-port-out {
  right: -7px;
}

.api-port-dot {
  width: 1px;
  height: 1px;
  display: inline-block;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  opacity: 0;
}

.api-port-out .api-port-dot {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.api-contact-label {
  max-width: calc(100% - 34px);
  padding: 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(237, 246, 239, 0.84);
  font-size: 7px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.endpoint-section {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(170, 184, 176, 0.13);
  border-radius: 6px;
  overflow: visible;
  background: rgba(0, 0, 0, 0.12);
}

.endpoint-section-header {
  position: relative;
  z-index: 2;
  min-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 5px solid rgba(102, 229, 223, 0.94);
  border-right: 5px solid rgba(131, 243, 162, 0.94);
  background:
    linear-gradient(90deg, rgba(102, 229, 223, 0.19), rgba(7, 11, 10, 0.9) 26%, rgba(7, 11, 10, 0.9) 74%, rgba(131, 243, 162, 0.16));
}

.endpoint-section.startup-section {
  border-color: rgba(255, 209, 102, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.07), transparent 42%),
    rgba(0, 0, 0, 0.14);
}

.endpoint-section.startup-section .endpoint-section-header {
  justify-content: flex-start;
  padding-left: 9px;
  border-left: 0;
  border-right: 5px solid rgba(180, 112, 54, 0.94);
  background:
    linear-gradient(90deg, rgba(255, 209, 102, 0.15), rgba(7, 11, 10, 0.9) 34%, rgba(180, 112, 54, 0.16));
}

.endpoint-section-body {
  position: relative;
  z-index: 2;
  padding: 8px;
}

.endpoint-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 5px;
}

.endpoint-kpi {
  min-width: 0;
  padding: 5px;
  border: 1px solid rgba(170, 184, 176, 0.11);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.028);
  cursor: help;
}

.endpoint-kpi span,
.endpoint-inline-codes em {
  display: block;
  color: var(--amber);
  font-size: 7px;
  line-height: 1.1;
  font-weight: 850;
  text-transform: uppercase;
}

.endpoint-kpi strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 9px;
  line-height: 1.2;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.endpoint-step-list {
  display: grid;
  gap: 6px;
  margin: 7px -8px 0;
}

.endpoint-step {
  position: relative;
  z-index: 3;
  min-height: 44px;
  padding: 5px 9px;
  border: 1px solid rgba(102, 229, 223, 0.13);
  border-radius: 5px;
  color: var(--muted);
  background:
    linear-gradient(90deg, rgba(102, 229, 223, 0.035), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.18);
}

.endpoint-step.has-input-pad,
.endpoint-step.has-inbound-pad {
  padding-left: 18px;
}

.endpoint-step.has-output-pad,
.endpoint-step.has-outbound-pad {
  padding-right: 18px;
}

.endpoint-step.has-input-pad::before,
.endpoint-step.has-inbound-pad::before,
.endpoint-step.has-output-pad::after,
.endpoint-step.has-outbound-pad::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  width: 35px;
  z-index: 12;
  pointer-events: none;
}

.endpoint-step.has-input-pad::before {
  left: -25px;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(180deg, rgb(103, 229, 223), rgb(36, 115, 111));
  box-shadow: -2px 0 11px rgba(102, 229, 223, 0.22);
}

.endpoint-step.has-inbound-pad::before {
  left: -25px;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(180deg, rgb(180, 112, 54), rgb(92, 60, 32));
  box-shadow: -2px 0 11px rgba(180, 112, 54, 0.22);
}

.endpoint-step.has-output-pad::after {
  right: -25px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(180deg, rgb(132, 243, 162), rgb(40, 120, 66));
  box-shadow: 2px 0 11px rgba(131, 243, 162, 0.2);
}

.endpoint-step.has-outbound-pad::after {
  right: -25px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(180deg, rgb(180, 112, 54), rgb(92, 60, 32));
  box-shadow: 2px 0 11px rgba(180, 112, 54, 0.22);
}

.endpoint-step-main {
  position: relative;
  z-index: 6;
}

.endpoint-step-header {
  display: flex;
  align-items: center;
}

.endpoint-step-label {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.endpoint-step-index {
  width: 14px;
  height: 14px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #07100b;
  background: var(--cyan);
  font-size: 8px;
  line-height: 1;
  font-weight: 900;
}

.endpoint-step h4 {
  min-width: 0;
  margin: 0;
  color: var(--text);
  font-size: 9px;
  line-height: 1.05;
  font-weight: 820;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.endpoint-step-description {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.25;
}

.endpoint-step-description strong {
  color: var(--text);
  font-weight: 820;
}

.endpoint-step-description code,
.endpoint-inline-codes code {
  display: inline-block;
  max-width: 100%;
  margin: 2px 2px 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 209, 102, 0.18);
  border-radius: 4px;
  color: var(--text);
  background: rgba(255, 209, 102, 0.075);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 7px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.endpoint-inline-codes {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  margin-left: 4px;
  vertical-align: baseline;
}

.endpoint-inline-codes em {
  display: inline-block;
  margin-right: 1px;
  font-style: normal;
  vertical-align: baseline;
}

.endpoint-step-port {
  z-index: 7;
  opacity: 0;
  width: 1px;
  height: 1px;
  min-height: 1px;
}

.endpoint-step-port.api-port-in {
  left: -25px;
}

.endpoint-step-port.api-port-out {
  right: -25px;
}

.endpoint-step-port-external .api-port-dot {
  border-color: rgba(180, 112, 54, 0.9);
  background: rgba(180, 112, 54, 0.28);
  box-shadow: 0 0 10px rgba(180, 112, 54, 0.28);
}

.endpoint-step-port-return .api-port-dot {
  border-color: rgba(131, 243, 162, 0.86);
  background: rgba(131, 243, 162, 0.18);
  box-shadow: 0 0 10px rgba(131, 243, 162, 0.26);
}

.node-card.table-node {
  height: 30px;
  min-height: 30px;
  border-color: rgba(119, 183, 255, 0.28);
  border-radius: 5px;
  background:
    linear-gradient(90deg, rgba(119, 183, 255, 0.12), transparent 36%),
    rgba(13, 19, 19, 0.95);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.node-card.table-node.is-expanded {
  min-height: 190px;
  height: auto;
  width: 484px !important;
  z-index: 28;
}

.table-node-header {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  height: 30px;
  padding: 0 8px 0 22px;
}

.table-stage {
  color: var(--amber);
  font-size: 8px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.table-title {
  min-width: 0;
  color: var(--text);
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.table-node .node-toggle {
  width: 18px;
  height: 18px;
  font-size: 10px;
}

.table-node .node-body {
  border-top: 1px solid rgba(119, 183, 255, 0.14);
}

.node-card.collection-node {
  height: 30px;
  min-height: 30px;
  border-color: rgba(255, 209, 102, 0.3);
  border-radius: 5px;
  background:
    linear-gradient(90deg, rgba(255, 209, 102, 0.13), transparent 34%),
    rgba(16, 17, 13, 0.95);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.node-card.collection-node.is-expanded {
  min-height: 190px;
  height: auto;
  width: 424px !important;
  z-index: 28;
}

.collection-node-header {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  height: 30px;
  padding: 0 8px 0 22px;
}

.collection-role {
  color: var(--cyan);
  font-size: 8px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.collection-title {
  min-width: 0;
  color: var(--text);
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.collection-node .node-toggle {
  width: 18px;
  height: 18px;
  font-size: 10px;
}

.collection-node .node-body {
  border-top: 1px solid rgba(255, 209, 102, 0.14);
}

.node-card.bucket-node {
  height: 30px;
  min-height: 30px;
  border-color: rgba(194, 155, 255, 0.3);
  border-radius: 5px;
  background:
    linear-gradient(90deg, rgba(194, 155, 255, 0.13), transparent 34%),
    rgba(13, 12, 19, 0.95);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.node-card.bucket-node.is-expanded {
  min-height: 190px;
  height: auto;
  width: 424px !important;
  z-index: 28;
}

.bucket-node-header {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  height: 30px;
  padding: 0 8px 0 22px;
}

.bucket-role {
  color: var(--violet);
  font-size: 8px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.bucket-title {
  min-width: 0;
  color: var(--text);
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bucket-node .node-toggle {
  width: 18px;
  height: 18px;
  font-size: 10px;
}

.bucket-node .node-body {
  border-top: 1px solid rgba(194, 155, 255, 0.14);
}

.node-card.is-dragging {
  cursor: grabbing;
  z-index: 40;
  opacity: 0.92;
}

.node-card.is-dimmed {
  opacity: 0.28;
}

.map-canvas.has-spotlight .node-card.is-spotlight-muted,
.map-canvas.has-spotlight .service-area.is-spotlight-muted,
.map-canvas.has-spotlight .data-container.is-spotlight-muted {
  opacity: 0.2;
  filter: blur(1.1px) saturate(0.54);
}

.map-canvas.has-spotlight .node-card.is-spotlight-muted {
  transform: scale(0.996);
}

.map-canvas.has-spotlight .node-card.is-spotlight-focus {
  opacity: 1;
  filter: none;
  z-index: 24;
}

.map-canvas.has-spotlight .node-card.is-expanded.is-spotlight-focus {
  z-index: 34;
}

.map-canvas.has-spotlight .service-area.is-spotlight-focus,
.map-canvas.has-spotlight .data-container.is-spotlight-focus {
  opacity: 1;
  filter: none;
}

.node-card.is-related {
  border-color: rgba(102, 229, 223, 0.48);
}

.node-card.status-warning {
  border-color: rgba(255, 209, 102, 0.4);
}

.node-card.status-critical {
  border-color: rgba(255, 111, 97, 0.5);
}

.node-card.status-disabled {
  opacity: 0.58;
  filter: saturate(0.45);
  border-color: rgba(170, 184, 176, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.01)),
    #111412;
}

.node-card.status-disabled:hover,
.node-card.status-disabled.is-selected,
.node-card.status-disabled.is-expanded {
  opacity: 0.82;
  filter: saturate(0.65);
  border-color: rgba(170, 184, 176, 0.32);
}

.node-card.is-always-on {
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 18px rgba(255, 209, 102, 0.035);
}

.node-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
  padding: 9px 9px 7px;
  border-bottom: 1px solid rgba(170, 184, 176, 0.1);
}

.node-kicker {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: 8px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.always-on-indicator {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 6;
  width: 8px;
  height: 12px;
  display: block;
  background: var(--amber);
  clip-path: polygon(57% 0, 100% 0, 67% 43%, 100% 43%, 34% 100%, 45% 57%, 9% 57%);
  filter: drop-shadow(0 0 6px rgba(255, 209, 102, 0.68));
}

.node-title {
  color: var(--text);
  font-size: 13px;
  line-height: 1.16;
  font-weight: 780;
}

.node-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.node-toggle {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(170, 184, 176, 0.22);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.node-body {
  display: none;
  padding: 8px 9px 9px;
}

.node-card.is-expanded .node-body {
  display: block;
}

.node-card.has-api-ports.is-expanded .node-body {
  position: relative;
  z-index: 2;
}

.metric-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.node-card.is-expanded .metric-grid {
  display: grid;
}

.node-card.has-api-ports.is-expanded .metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 10px;
}

.api-endpoint-sections {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 9px;
}

.metric {
  min-width: 0;
  padding: 7px;
  border: 1px solid rgba(170, 184, 176, 0.12);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.14);
  cursor: help;
}

.metric span {
  display: block;
  color: var(--dim);
  font-size: 9px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 780;
  overflow-wrap: normal;
  word-break: normal;
}

.metric strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 760;
  overflow-wrap: break-word;
  word-break: normal;
}

.expanded-panel {
  display: none;
  margin-top: 9px;
  max-height: 132px;
  overflow: auto;
  padding-right: 3px;
}

.node-card.is-expanded .expanded-panel {
  display: block;
}

.detail-list {
  display: grid;
  gap: 6px;
}

.detail-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 7px 0;
  border-top: 1px solid rgba(170, 184, 176, 0.1);
}

.detail-row:first-child {
  border-top: 0;
}

.detail-row span {
  color: var(--amber);
  font-size: 10px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-row strong {
  color: var(--text);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 620;
  overflow-wrap: anywhere;
}

.node-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0 9px 9px;
}

.tag {
  max-width: 100%;
  min-height: 18px;
  display: inline-flex;
  align-items: center;
  padding: 0 5px;
  border-radius: 5px;
  color: var(--muted);
  border: 1px solid rgba(170, 184, 176, 0.13);
  background: rgba(255, 255, 255, 0.032);
  font-size: 8px;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.tag.is-hot {
  color: #07100b;
  border-color: rgba(131, 243, 162, 0.5);
  background: var(--green);
}

.flow-line {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.82;
  filter: drop-shadow(0 0 8px rgba(102, 229, 223, 0.06));
}

.flow-line.api {
  stroke: var(--cyan);
}

.flow-line.request-line {
  stroke-width: 1.25;
}

.flow-line.response-line {
  stroke-width: 1.45;
  stroke-dasharray: 4 6;
}

.flow-line.write {
  stroke: var(--green);
}

.flow-line.read {
  stroke: var(--amber);
  stroke-dasharray: 7 7;
}

.flow-line.publish {
  stroke: var(--blue);
  stroke-dasharray: 2 6;
}

.flow-line.validate {
  stroke: var(--violet);
}

.flow-line.disabled {
  stroke: var(--dim);
  stroke-dasharray: 3 8;
  opacity: 0.35;
}

.flow-line.related {
  stroke-width: 3.6;
  opacity: 1;
}

.flow-line.spotlight {
  stroke-width: 4;
  opacity: 1;
  filter:
    drop-shadow(0 0 8px rgba(131, 243, 162, 0.18))
    drop-shadow(0 0 18px rgba(102, 229, 223, 0.12));
}

.flow-line.spotlight-dim {
  stroke-width: 1;
  opacity: 0.025;
  filter: none;
}

.flow-line.dimmed {
  opacity: 0.12;
}

.flow-line.spotlight-dim,
.flow-line.spotlight-dim.dimmed,
.flow-line.related.spotlight-dim {
  stroke-width: 1;
  opacity: 0.025;
  filter: none;
}

.flow-label {
  position: absolute;
  max-width: 168px;
  transform: translate(-50%, -50%);
  padding: 5px 8px;
  border: 1px solid rgba(170, 184, 176, 0.2);
  border-radius: 6px;
  color: var(--text);
  background: rgba(8, 12, 10, 0.88);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
  font-size: 10px;
  line-height: 1.25;
  font-weight: 760;
  text-align: center;
}

.flow-label.api {
  border-color: rgba(102, 229, 223, 0.36);
}

.flow-label.write {
  border-color: rgba(131, 243, 162, 0.32);
}

.flow-label.read {
  border-color: rgba(255, 209, 102, 0.34);
}

.flow-label.publish {
  border-color: rgba(119, 183, 255, 0.34);
}

.flow-label.validate {
  border-color: rgba(194, 155, 255, 0.34);
}

.flow-label.disabled {
  color: var(--muted);
  border-color: rgba(170, 184, 176, 0.24);
}

.flow-label.spotlight {
  border-color: rgba(131, 243, 162, 0.5);
  background: rgba(6, 11, 8, 0.94);
  box-shadow:
    0 12px 22px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(131, 243, 162, 0.12);
}

.flow-label.dimmed {
  opacity: 0.14;
}

.legend-bar {
  position: absolute;
  left: 9px;
  bottom: 9px;
  z-index: 26;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 26px;
  padding: 5px 8px;
  border: 1px solid rgba(170, 184, 176, 0.15);
  border-radius: 6px;
  color: var(--muted);
  font-size: 10px;
  background: rgba(4, 7, 6, 0.82);
  backdrop-filter: blur(8px);
}

.legend-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend-swatch {
  width: 18px;
  height: 2px;
  display: inline-block;
  border-radius: 999px;
}

.swatch-api {
  background: var(--cyan);
}

.swatch-write {
  background: var(--green);
}

.swatch-read {
  background: repeating-linear-gradient(90deg, var(--amber) 0 7px, transparent 7px 12px);
}

.swatch-publish {
  background: repeating-linear-gradient(90deg, var(--blue) 0 3px, transparent 3px 8px);
}

.swatch-validate {
  background: var(--violet);
}

.inspector {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 42;
  width: var(--inspector-w);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  font-size: 8px;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 1px solid rgba(131, 243, 162, 0.28);
  background: rgba(7, 11, 9, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: -20px 0 36px rgba(0, 0, 0, 0.34);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.inspector.is-open {
  transform: translateX(0);
}

.preview-rail-toggle {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 46;
  width: 22px;
  min-height: 86px;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border: 1px solid rgba(255, 209, 102, 0.34);
  border-right: 0;
  border-radius: 6px 0 0 6px;
  color: var(--text);
  background: rgba(11, 15, 13, 0.94);
  box-shadow: -10px 0 24px rgba(0, 0, 0, 0.24);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-rail-toggle.is-open {
  right: var(--inspector-w);
}

.inspector-header {
  padding: 8px 8px 7px;
  border-bottom: 1px solid rgba(170, 184, 176, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(0, 0, 0, 0.12);
}

.inspector-header h2 {
  font-size: 10px;
  margin-top: 3px;
}

.status-strip {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.status-chip {
  min-height: 15px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 0 4px;
  border-radius: 4px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(170, 184, 176, 0.14);
  font-size: 6px;
  font-weight: 760;
}

.status-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 12px rgba(131, 243, 162, 0.48);
}

.status-chip.warning .status-dot {
  background: var(--amber);
  box-shadow: 0 0 12px rgba(255, 209, 102, 0.42);
}

.status-chip.critical .status-dot {
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 111, 97, 0.42);
}

.status-chip.disabled .status-dot {
  background: var(--dim);
  box-shadow: none;
}

.inspector-body {
  min-height: 0;
  overflow: auto;
  padding: 7px 8px 10px;
}

.inspector-section {
  padding: 8px 0;
  border-top: 1px solid rgba(170, 184, 176, 0.14);
}

.inspector-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.inspector-section h3 {
  margin-bottom: 5px;
  color: var(--amber);
  font-size: 6px;
  text-transform: uppercase;
}

.inspector-section p {
  color: var(--muted);
  font-size: 7px;
  line-height: 1.48;
}

.inspector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.inspector-metric {
  min-height: 36px;
  padding: 5px;
  border: 1px solid rgba(170, 184, 176, 0.13);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
}

.inspector-metric span {
  display: block;
  color: var(--dim);
  font-size: 5px;
  text-transform: uppercase;
  font-weight: 780;
}

.inspector-metric strong {
  display: block;
  margin-top: 3px;
  font-size: 7px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.connection-list,
.subcomponent-list {
  display: grid;
  gap: 4px;
}

.connection-item,
.subcomponent-item {
  padding: 5px;
  border: 1px solid rgba(170, 184, 176, 0.13);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.032);
}

.connection-item button {
  width: 100%;
  padding: 0;
  border: 0;
  color: var(--text);
  background: transparent;
  text-align: left;
}

.connection-item strong,
.subcomponent-item strong {
  display: block;
  color: var(--text);
  font-size: 7px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.connection-item span,
.subcomponent-item span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 6px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.inspector .detail-list {
  gap: 3px;
}

.inspector .detail-row {
  grid-template-columns: 43px minmax(0, 1fr);
  gap: 4px;
  padding: 4px 0;
}

.inspector .detail-row span {
  font-size: 5px;
}

.inspector .detail-row strong {
  font-size: 6px;
  line-height: 1.3;
}

@media (max-width: 900px) {
  :root {
    --inspector-w: 168px;
  }
}

@media (max-width: 760px) {
  .topbar-actions {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .search-control input {
    width: 128px;
    min-width: 90px;
  }

  .workspace {
    padding: 0;
  }

  .summary-strip {
    justify-content: flex-start;
  }
}
