/* [project]/src/app/hosts/agency/_design/console.css [app-client] (css) */
.po-app {
  --po-blue: #007aff;
  --po-blue-hover: #0066d6;
  --po-blue-50: #eff6ff;
  --po-blue-100: #dbeafe;
  --po-blue-200: #bfdbfe;
  --po-blue-700: #1d4ed8;
  --po-orange: orange;
  --po-fg-1: #424242;
  --po-fg-2: #6b7280;
  --po-fg-3: #8e8e93;
  --po-fg-disabled: #c1c1c6;
  --po-bg: #f8fafc;
  --po-surface: #fff;
  --po-surface-2: #f9fafb;
  --po-border: #e5e7eb;
  --po-border-soft: #f1f2f4;
  --po-info-bg: #eff6ff;
  --po-info-fg: #1d4ed8;
  --po-info-bd: #bfdbfe;
  --po-warn-bg: #fffbeb;
  --po-warn-fg: #b45309;
  --po-warn-bd: #fde68a;
  --po-error-bg: #fef2f2;
  --po-error-fg: #b91c1c;
  --po-error-bd: #fecaca;
  --po-ok-bg: #ecfdf5;
  --po-ok-fg: #047857;
  --po-ok-bd: #a7f3d0;
  --po-neutral-bg: #f3f4f6;
  --po-neutral-fg: #4b5563;
  --po-neutral-bd: #e5e7eb;
  --po-dot-active: #10b981;
  --po-dot-idle: #fbbf24;
  --po-dot-silent: #ef4444;
  --po-dot-unknown: #d1d5db;
  --po-font-display: "Helvetica Neue","HelveticaNeue","Helvetica","Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
  --po-font-body: "Roboto",system-ui,-apple-system,"Segoe UI",sans-serif;
  --po-font-cta: "Montserrat","Helvetica Neue",system-ui,sans-serif;
  --po-font-mono: ui-monospace,"JetBrains Mono","SF Mono",Menlo,Consolas,monospace;
  --po-text-xs: 11px;
  --po-text-sm: 13px;
  --po-text-base: 14px;
  --po-text-md: 16px;
  --po-text-lg: 18px;
  --po-text-xl: 22px;
  --po-text-2xl: 28px;
  --po-leading-body: 1.5;
  --po-leading-heading: 1.2;
  --po-tracking-caps: .06em;
  --po-r-sm: 4px;
  --po-r-md: 6px;
  --po-r-lg: 8px;
  --po-r-xl: 12px;
  --po-r-pill: 999px;
  --po-shadow-sm: 0 1px 2px 0 #0f172a0a;
  --po-shadow-card: 0 1px 3px #0f172a0f,0 1px 2px #0f172a08;
  --po-shadow-pop: 0 10px 24px -12px #0f172a2e,0 4px 8px -4px #0f172a0f;
  --po-sidebar-w: 256px;
  --po-zone1-h: 60px;
  --po-row-h: 44px;
  background: var(--po-bg);
  min-height: 100vh;
  color: var(--po-fg-1);
  font-family: var(--po-font-body);
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
}

.po-app * {
  box-sizing: border-box;
}

.po-app a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.po-app button {
  font-family: inherit;
}

.po-app h1, .po-app h2, .po-app h3, .po-app h4 {
  font-family: var(--po-font-display);
  color: var(--po-fg-1);
  letter-spacing: -.01em;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

.po-app .po-mono {
  font-family: var(--po-font-mono);
}

.po-app .po-cta {
  font-family: var(--po-font-cta);
  font-weight: 600;
}

.po-main {
  flex: 1;
  min-width: 0;
}

.po-page-h {
  justify-content: space-between;
  align-items: baseline;
  margin: 6px 0 14px;
  padding: 0 24px;
  display: flex;
}

.po-page-h h1 {
  font-family: var(--po-font-display);
  letter-spacing: -.01em;
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.po-page-h .sub {
  color: var(--po-fg-3);
  font-size: 13px;
}

.po-sidebar {
  border-right: 1px solid var(--po-border);
  background: #fff;
  flex-direction: column;
  flex-shrink: 0;
  width: 256px;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.po-sb-brand {
  border-bottom: 1px solid var(--po-border);
  cursor: pointer;
  align-items: center;
  gap: 10px;
  padding: 14px;
  display: flex;
}

.po-sb-brand:hover {
  background: var(--po-surface-2);
}

.po-sb-brand-mark {
  color: #fff;
  background: #111827;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}

.po-sb-brand-meta {
  flex: 1;
  min-width: 0;
}

.po-sb-brand-name {
  color: var(--po-fg-1);
  font-size: 13px;
  font-weight: 600;
}

.po-sb-brand-code {
  font-family: var(--po-font-mono);
  color: var(--po-fg-3);
  font-size: 10px;
}

.po-sb-scope {
  gap: 2px;
  padding: 8px 10px 0;
  display: flex;
}

.po-sb-scope-btn {
  background: var(--po-surface-2);
  height: 24px;
  color: var(--po-fg-3);
  font-family: var(--po-font-cta);
  letter-spacing: .02em;
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 5px;
  flex: 1;
  font-size: 11px;
  font-weight: 600;
}

.po-sb-scope-btn:hover {
  color: var(--po-fg-1);
  border-color: var(--po-border);
  background: #fff;
}

.po-sb-scope-btn.is-on {
  color: var(--po-blue-700);
  background: #fff;
  border-color: #bfdbfe;
}

.po-sb-scope-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.po-sb-nav {
  flex: 1;
  padding: 8px 10px;
  overflow-y: auto;
}

.po-sb-section + .po-sb-section {
  margin-top: 8px;
}

.po-sb-section-label {
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--po-fg-3);
  padding: 8px 8px 4px;
  font-size: 10px;
  font-weight: 600;
}

.po-sb-item {
  color: #5b6370;
  cursor: pointer;
  border-radius: 6px;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.po-sb-item:hover {
  background: var(--po-surface-2);
  color: var(--po-fg-1);
}

.po-sb-item.is-active {
  color: #1d4ed8;
  background: #eff6ff;
  font-weight: 600;
}

.po-sb-badge {
  color: #fff;
  background: #f59e0b;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  min-width: 18px;
  height: 16px;
  margin-left: auto;
  padding: 0 5px;
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
}

.po-sb-footer {
  border-top: 1px solid var(--po-border);
  padding: 10px;
}

.po-sb-user {
  align-items: center;
  gap: 8px;
  padding: 4px 6px;
  display: flex;
}

.po-avatar {
  color: #1d4ed8;
  background: #eff6ff;
  border-radius: 999px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}

.po-sb-user-meta {
  flex: 1;
  min-width: 0;
}

.po-sb-user-name {
  color: var(--po-fg-1);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
}

.po-sb-user-role {
  color: var(--po-fg-3);
  font-size: 10px;
}

.po-sb-logout {
  color: var(--po-fg-3);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 4px;
  padding: 4px;
}

.po-sb-logout:hover {
  background: var(--po-surface-2);
  color: var(--po-fg-1);
}

.po-iconbtn {
  color: var(--po-fg-2);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 6px;
  display: inline-flex;
}

.po-fleet {
  border-bottom: 1px solid var(--po-border);
  background: linear-gradient(to right, #f9fafb, #fff);
  align-items: center;
  gap: 18px;
  height: 52px;
  padding: 0 24px;
  font-size: 12px;
  display: flex;
}

.po-fleet-cell {
  align-items: center;
  gap: 6px;
  display: flex;
}

.po-fleet-lbl {
  color: var(--po-fg-3);
}

.po-fleet-val {
  color: var(--po-fg-1);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.po-fleet-dot {
  border-radius: 999px;
  width: 6px;
  height: 6px;
}

.po-fleet-div {
  background: var(--po-border);
  width: 1px;
  height: 16px;
}

.po-fleet-kbd {
  color: var(--po-fg-2);
  border: 1px solid var(--po-border);
  background: #fff;
  border-radius: 4px;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  padding: 1px 8px;
  font-size: 11px;
  display: flex;
}

.po-signal {
  border-bottom: 1px solid;
  justify-content: space-between;
  align-items: center;
  height: 52px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.po-signal-amber {
  color: #854d0e;
  background: #fffbeb;
  border-color: #fde68a;
}

.po-signal-red {
  color: #7f1d1d;
  background: #fef2f2;
  border-color: #fecaca;
}

.po-signal-l {
  align-items: center;
  gap: 8px;
  display: flex;
}

.po-btn {
  height: 32px;
  font-family: var(--po-font-cta);
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 6px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: background .15s;
  display: inline-flex;
}

.po-btn-sm {
  height: 26px;
  padding: 0 10px;
  font-size: 12px;
}

.po-btn-primary {
  background: var(--po-blue);
  color: #fff;
}

.po-btn-primary:hover {
  background: var(--po-blue-hover);
}

.po-btn-outline {
  color: var(--po-fg-1);
  border-color: var(--po-border);
  background: #fff;
}

.po-btn-outline:hover {
  background: var(--po-surface-2);
}

.po-btn-ghost {
  color: var(--po-fg-1);
  background: none;
}

.po-btn-ghost:hover {
  background: var(--po-surface-2);
}

.po-btn-danger {
  color: #b91c1c;
  background: #fff;
  border-color: #fecaca;
}

.po-btn-danger:hover {
  background: #fef2f2;
}

.po-chip {
  border: 1px solid;
  border-radius: 5px;
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
  padding: 2px 7px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  display: inline-flex;
}

.po-chip-pill {
  border-radius: 999px;
  padding: 2px 9px;
}

.po-chip-info {
  color: #1d4ed8;
  background: #eff6ff;
  border-color: #bfdbfe;
}

.po-chip-attention {
  color: #854d0e;
  background: #fffbeb;
  border-color: #fde68a;
}

.po-chip-error {
  color: #b91c1c;
  background: #fef2f2;
  border-color: #fecaca;
}

.po-chip-success {
  color: #047857;
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.po-chip-neutral {
  color: #4b5563;
  background: #f3f4f6;
  border-color: #e5e7eb;
}

.po-chip-violet {
  color: #5b21b6;
  background: #f5f3ff;
  border-color: #ddd6fe;
}

.po-card {
  border: 1px solid var(--po-border);
  box-shadow: var(--po-shadow-sm);
  background: #fff;
  border-radius: 8px;
  padding: 16px;
}

.po-card:hover {
  box-shadow: var(--po-shadow-card);
}

.po-kpi-row {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
  padding: 0 24px;
  display: grid;
}

.po-kpi-label {
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--po-fg-3);
  font-size: 10px;
  font-weight: 600;
}

.po-kpi-value {
  font-family: var(--po-font-display);
  color: var(--po-fg-1);
  font-variant-numeric: tabular-nums;
  margin: 6px 0 2px;
  font-size: 26px;
  font-weight: 700;
}

.po-kpi-sub {
  color: var(--po-fg-3);
  font-size: 11px;
}

.po-table-wrap {
  padding: 0 24px 24px;
}

.po-table-card {
  border: 1px solid var(--po-border);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.po-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}

.po-table th {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--po-fg-3);
  background: var(--po-surface-2);
  border-bottom: 1px solid var(--po-border);
  padding: 10px 16px;
  font-size: 10px;
  font-weight: 600;
}

.po-table td {
  border-bottom: 1px solid var(--po-border-soft);
  font-variant-numeric: tabular-nums;
  padding: 10px 16px;
}

.po-table tr:last-child td {
  border-bottom: none;
}

.po-table tr:hover td {
  background: #fafaf9;
}

.po-table-num {
  text-align: right;
}

.po-bl-section {
  margin: 0 24px 18px;
}

.po-bl-section-h {
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  padding: 0;
  display: flex;
}

.po-bl-section-h h2 {
  font-family: var(--po-font-display);
  color: var(--po-fg-1);
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.po-bl-section-h .sub {
  color: var(--po-fg-3);
  font-size: 11px;
}

.po-bl-invoice-row td {
  vertical-align: middle;
}

.po-bl-invoice-row .po-mono {
  color: var(--po-fg-3);
  font-size: 12px;
}

.po-bl-meter {
  border-bottom: 1px solid var(--po-border-soft);
  grid-template-columns: 2fr 1fr 1fr .8fr;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 13px;
  display: grid;
}

.po-bl-meter:last-child {
  border-bottom: none;
}

.po-bl-meter-name {
  color: var(--po-fg-1);
  align-items: center;
  gap: 8px;
  font-weight: 500;
  display: flex;
}

.po-bl-meter-num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.po-bl-meter-num-faint {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--po-fg-3);
  font-size: 12px;
}

.po-bl-meter-h {
  background: var(--po-surface-2);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--po-fg-3);
  border-bottom: 1px solid var(--po-border);
  grid-template-columns: 2fr 1fr 1fr .8fr;
  gap: 12px;
  padding: 10px 16px;
  font-size: 10px;
  font-weight: 600;
  display: grid;
}

.po-bl-meter-h-num {
  text-align: right;
}

.po-bl-ledger-row {
  border-bottom: 1px solid var(--po-border-soft);
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 13px;
  display: grid;
}

.po-bl-ledger-row:last-child {
  border-bottom: none;
}

.po-bl-empty {
  text-align: center;
  color: var(--po-fg-3);
  padding: 28px 24px;
  font-size: 13px;
}

.po-bl-unavailable {
  background: var(--po-warn-bg);
  border: 1px solid var(--po-warn-bd);
  color: var(--po-warn-fg);
  border-radius: 6px;
  margin: 0 0 12px;
  padding: 16px 24px;
  font-size: 12px;
  font-style: italic;
}

.po-app .po-input, .po-app .po-select {
  border: 1px solid var(--po-border);
  height: 32px;
  color: var(--po-fg-1);
  background: #fff;
  border-radius: 6px;
  outline: none;
  padding: 0 10px;
  font-family: inherit;
  font-size: 13px;
  line-height: 1;
  transition: border-color 80ms, box-shadow 80ms, background 80ms;
}

.po-app .po-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--po-fg-3) 50%), linear-gradient(135deg, var(--po-fg-3) 50%, transparent 50%);
  background-position: calc(100% - 14px) 14px, calc(100% - 9px) 14px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 28px;
}

.po-app .po-input::placeholder {
  color: var(--po-fg-3);
}

.po-app .po-input:hover, .po-app .po-select:hover {
  background-color: var(--po-surface-2);
}

.po-app .po-input:focus, .po-app .po-select:focus {
  border-color: var(--po-blue);
  background: #fff;
  box-shadow: 0 0 0 3px #007aff1f;
}

.po-meta {
  color: var(--po-fg-3);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
}

.po-filterbar {
  border-bottom: 1px solid var(--po-border);
  background: #fff;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  display: flex;
}

.po-filterbar.is-bare {
  background: none;
  border-bottom: none;
  padding: 0;
}

.po-filter-chip {
  border: 1px solid var(--po-border);
  height: 26px;
  color: var(--po-fg-2);
  cursor: pointer;
  background: #fff;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
}

.po-filter-chip:hover {
  background: var(--po-surface-2);
  color: var(--po-fg-1);
}

.po-filter-chip.is-active {
  color: #1d4ed8;
  background: #eff6ff;
  border-color: #bfdbfe;
  font-weight: 600;
}

.po-filter-chip-count {
  font-variant-numeric: tabular-nums;
  color: var(--po-fg-3);
  border-left: 1px solid var(--po-border-soft);
  margin-left: 2px;
  padding-left: 6px;
  font-weight: 500;
}

.po-filter-chip.is-active .po-filter-chip-count {
  color: #1d4ed8;
}

.po-filterbar-spacer {
  flex: 1;
}

.po-deptstrip {
  border-bottom: 1px solid var(--po-border);
  background: #fff;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  padding: 16px 24px;
  display: grid;
}

.po-dept {
  border: 1px solid var(--po-border);
  cursor: pointer;
  background: #fff;
  border-radius: 8px;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding: 10px 12px;
  display: flex;
}

.po-dept:hover {
  background: var(--po-surface-2);
}

.po-dept.is-amber {
  background: #fffbeb;
  border-color: #fde68a;
}

.po-dept.is-red {
  background: #fef2f2;
  border-color: #fecaca;
}

.po-dept-head {
  color: var(--po-fg-3);
  text-transform: uppercase;
  letter-spacing: .04em;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
}

.po-dept.is-amber .po-dept-head {
  color: #854d0e;
}

.po-dept.is-red .po-dept-head {
  color: #7f1d1d;
}

.po-dept-title {
  color: var(--po-fg-1);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
}

.po-dept.is-amber .po-dept-title {
  color: #78350f;
}

.po-dept.is-red .po-dept-title {
  color: #7f1d1d;
}

.po-dept-meta {
  color: var(--po-fg-3);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
}

.po-dept-quiet {
  color: var(--po-fg-3);
  font-size: 12px;
  font-style: italic;
}

.po-quiet {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 64px 24px;
  display: flex;
}

.po-quiet-h {
  font-family: var(--po-font-display);
  color: var(--po-fg-2);
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.po-quiet-s {
  color: var(--po-fg-3);
  max-width: 420px;
  margin: 0;
  font-size: 13px;
}

.po-stacks {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px 24px;
  display: grid;
}

@media (max-width: 900px) {
  .po-stacks {
    grid-template-columns: 1fr;
  }
}

.po-stack-h {
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  display: flex;
}

.po-stack-h h2 {
  font-family: var(--po-font-display);
  color: var(--po-fg-1);
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.po-stack-h .sub {
  color: var(--po-fg-3);
  font-size: 11px;
}

.po-stack-list {
  border: 1px solid var(--po-border);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.po-stack-row {
  border-bottom: 1px solid var(--po-border-soft);
  cursor: pointer;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  display: flex;
}

.po-stack-row:last-child {
  border-bottom: none;
}

.po-stack-row:hover {
  background: var(--po-surface-2);
}

.po-stack-row-icon {
  width: 28px;
  height: 28px;
  color: var(--po-fg-2);
  background: #f3f4f6;
  border-radius: 6px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.po-stack-row.is-amber .po-stack-row-icon {
  color: #b45309;
  background: #fef3c7;
}

.po-stack-row.is-red .po-stack-row-icon {
  color: #b91c1c;
  background: #fee2e2;
}

.po-stack-row-meta {
  flex: 1;
  min-width: 0;
}

.po-stack-row-t {
  color: var(--po-fg-1);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
}

.po-stack-row-s {
  color: var(--po-fg-3);
  font-size: 11px;
}

.po-stack-row-time {
  color: var(--po-fg-3);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  font-size: 11px;
}

.po-stack-empty {
  text-align: center;
  color: var(--po-fg-3);
  padding: 24px 16px;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .po-app .po-capability-catalog {
    grid-template-columns: 1fr !important;
  }
}

.po-drawer-backdrop {
  z-index: 70;
  background: #0f172a5c;
  animation: .12s ease-out po-fade-in;
  position: fixed;
  inset: 0;
}

.po-drawer {
  border-left: 1px solid var(--po-border);
  z-index: 71;
  background: #fff;
  flex-direction: column;
  width: min(560px, 100vw);
  animation: .18s cubic-bezier(.2, .8, .2, 1) po-slide-in;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  box-shadow: -16px 0 40px -16px #0f172a2e;
}

.po-drawer-h {
  border-bottom: 1px solid var(--po-border);
  background: var(--po-surface-1);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  display: flex;
}

.po-drawer-h h2 {
  font-family: var(--po-font-display);
  color: var(--po-fg-1);
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.po-drawer-h .sub {
  color: var(--po-fg-3);
  margin-top: 2px;
  font-size: 11px;
  display: block;
}

.po-drawer-body {
  flex: 1;
  padding: 16px 18px 24px;
  overflow-y: auto;
}

.po-iconbtn {
  border: 1px solid var(--po-border);
  width: 28px;
  height: 28px;
  color: var(--po-fg-2);
  cursor: pointer;
  background: #fff;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  transition: background 80ms;
  display: inline-flex;
}

.po-iconbtn:hover {
  background: var(--po-surface-2);
  color: var(--po-fg-1);
}

@keyframes po-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes po-slide-in {
  from {
    opacity: 0;
    transform: translateX(16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.po-dev-toggle {
  z-index: 90;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid var(--po-border);
  height: 22px;
  font-family: var(--po-font-mono);
  letter-spacing: .04em;
  color: var(--po-fg-3);
  cursor: pointer;
  opacity: .55;
  background: #ffffffd9;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  font-size: 10px;
  font-weight: 600;
  transition: opacity .12s, color .12s;
  display: inline-flex;
  position: fixed;
  top: 8px;
  right: 12px;
}

.po-dev-toggle:hover {
  opacity: 1;
  color: var(--po-fg-1);
}

.po-dev-toggle[aria-pressed="true"] {
  opacity: 1;
  color: #5b21b6;
  background: #f5f3ff;
  border-color: #ddd6fe;
}

.po-dev-toggle-dot {
  background: var(--po-fg-disabled);
  border-radius: 999px;
  width: 6px;
  height: 6px;
}

.po-dev-toggle-dot[data-on="yes"] {
  background: #7c3aed;
  box-shadow: 0 0 0 2px #ddd6fe;
}

:root[data-dev-overlay="on"] [data-dev-section] {
  outline-offset: 2px;
  outline: 1px dashed #7c3aed8c;
  position: relative;
}

:root[data-dev-overlay="on"] [data-dev-section]:before {
  content: attr(data-dev-section);
  font-family: var(--po-font-mono);
  letter-spacing: .04em;
  color: #fff;
  pointer-events: none;
  z-index: 5;
  white-space: nowrap;
  background: #7c3aed;
  border-radius: 3px;
  padding: 2px 5px;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  top: -9px;
  left: 8px;
}

.po-page-code {
  vertical-align: middle;
  font-family: var(--po-font-mono);
  letter-spacing: .04em;
  color: #5b21b6;
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
  border-radius: 4px;
  margin-left: 10px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 600;
  display: none;
}

:root[data-dev-overlay="on"] .po-page-code {
  display: inline-block;
}

.po-run-row-btn {
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 12px;
  width: 100%;
  padding: 0;
  display: block;
}

.po-run-row-btn:focus-visible {
  outline: 2px solid var(--po-accent, #2563eb);
  outline-offset: 2px;
}

.po-ag-grid {
  border-top: 1px solid var(--po-border);
  border: 1px solid var(--po-border);
  background: #fff;
  border-radius: 12px;
  grid-template-columns: 320px 1fr;
  gap: 0;
  display: grid;
  overflow: hidden;
}

.po-ag-list {
  border-right: 1px solid var(--po-border);
  background: #fff;
  padding: 12px 0;
}

.po-ag-card {
  cursor: pointer;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  border-left: 3px solid #0000;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  display: flex;
}

.po-ag-card:hover {
  background: var(--po-surface-2);
}

.po-ag-card.is-active {
  border-left-color: var(--po-blue);
  background: #eff6ff;
}

.po-ag-card:focus-visible {
  outline: 2px solid var(--po-blue);
  outline-offset: -2px;
}

.po-ag-av {
  width: 40px;
  height: 40px;
  font-family: var(--po-font-display);
  color: #fff;
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.po-ag-meta {
  flex: 1;
  min-width: 0;
}

.po-ag-name-row {
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  display: flex;
}

.po-ag-name {
  font-family: var(--po-font-display);
  color: var(--po-fg-1);
  font-size: 14px;
  font-weight: 600;
}

.po-ag-role {
  color: var(--po-fg-3);
  font-size: 11px;
}

.po-ag-stat {
  color: var(--po-fg-2);
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 11px;
  display: flex;
}

.po-ag-stat-num {
  font-variant-numeric: tabular-nums;
  font-family: var(--po-font-mono);
}

.po-ag-detail {
  min-width: 0;
  padding: 0;
}

.po-ag-hero {
  border-bottom: 1px solid var(--po-border);
  background: linear-gradient(#fafbfc 0%, #fff 100%);
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  display: flex;
}

.po-ag-hero-av {
  color: #fff;
  width: 56px;
  height: 56px;
  font-family: var(--po-font-display);
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  display: flex;
}

.po-ag-hero-meta {
  flex: 1;
  min-width: 0;
}

.po-ag-hero-h {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.po-ag-hero-h h1 {
  font-family: var(--po-font-display);
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.po-ag-hero-r {
  color: var(--po-fg-2);
  margin: 4px 0 0;
  font-size: 13px;
}

.po-ag-hero-d {
  color: var(--po-fg-1);
  max-width: 720px;
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.55;
}

.po-ag-hero-act {
  flex-wrap: wrap;
  flex-shrink: 0;
  gap: 8px;
  display: flex;
}

.po-ag-section {
  padding: 0 24px 18px;
}

.po-ag-section + .po-ag-section {
  padding-top: 18px;
}

.po-ag-section-h {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.po-ag-section-h h2 {
  font-family: var(--po-font-display);
  color: var(--po-fg-1);
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.po-ag-tools {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
  display: grid;
}

.po-ag-tool {
  border: 1px solid var(--po-border);
  background: #fff;
  border-radius: 6px;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  display: flex;
}

.po-ag-tool-i {
  width: 28px;
  height: 28px;
  color: var(--po-fg-2);
  background: #f3f4f6;
  border-radius: 6px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.po-ag-tool-meta {
  flex: 1;
  min-width: 0;
}

.po-ag-tool-n {
  font-family: var(--po-font-mono);
  color: var(--po-fg-1);
  word-break: break-word;
  font-size: 12px;
  font-weight: 600;
}

.po-ag-tool-d {
  color: var(--po-fg-3);
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.4;
}

.po-ag-tool-tier {
  font-size: 10px;
}

.po-ag-policy {
  border: 1px solid var(--po-border);
  background: #fff;
  border-radius: 6px;
}

.po-ag-policy-row {
  border-bottom: 1px solid var(--po-border-soft);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 12px;
  display: grid;
}

.po-ag-policy-row:last-child {
  border-bottom: none;
}

.po-ag-policy-name {
  color: var(--po-fg-1);
  font-weight: 500;
}

.po-ag-policy-sub {
  color: var(--po-fg-3);
  font-size: 11px;
  font-family: var(--po-font-mono);
  word-break: break-word;
  margin-top: 2px;
}

.po-ag-tbl {
  border: 1px solid var(--po-border);
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.po-ag-tbl-h, .po-ag-tbl-row {
  grid-template-columns: 1.4fr 1.8fr 90px 1.4fr 110px;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  font-size: 12px;
  display: grid;
}

.po-ag-tbl-h {
  background: var(--po-surface-2);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--po-fg-3);
  border-bottom: 1px solid var(--po-border);
  font-size: 10px;
  font-weight: 600;
}

.po-ag-tbl-row {
  border-bottom: 1px solid var(--po-border-soft);
  cursor: pointer;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
  background: none;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.po-ag-tbl-row:last-child {
  border-bottom: none;
}

.po-ag-tbl-row:hover {
  background: #fafafa;
}

.po-ag-tbl-row:focus-visible {
  outline: 2px solid var(--po-blue);
  outline-offset: -2px;
}

.po-run-row-btn[aria-current="true"] > * {
  box-shadow: 0 0 0 2px var(--po-accent, #2563eb) inset;
}

.po-sev {
  border-radius: 999px;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  display: inline-block;
}

.po-sev-amber {
  background: #f59e0b;
  box-shadow: 0 0 0 3px #f59e0b1f;
}

.po-sev-red {
  background: #dc2626;
  box-shadow: 0 0 0 3px #dc26261f;
}

.po-sev-grey {
  background: #9ca3af;
  box-shadow: 0 0 0 3px #9ca3af1a;
}

.po-agent {
  border: 1px solid;
  border-radius: 999px;
  flex-shrink: 0;
  align-items: center;
  gap: 5px;
  height: 20px;
  padding: 0 7px 0 5px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
}

.po-agent-mark {
  color: #fff;
  border-radius: 999px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  font-size: 8px;
  font-weight: 700;
  display: inline-flex;
}

.po-agent-nina {
  color: #5b21b6;
  background: #f5f3ff;
  border-color: #ddd6fe;
}

.po-agent-nina .po-agent-mark {
  background: #7c3aed;
}

.po-agent-kira {
  color: #047857;
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.po-agent-kira .po-agent-mark {
  background: #10b981;
}

.po-agent-aria {
  color: #9a3412;
  background: #fff7ed;
  border-color: #fed7aa;
}

.po-agent-aria .po-agent-mark {
  background: #ea580c;
}

.po-agent-mira {
  color: #155e75;
  background: #ecfeff;
  border-color: #a5f3fc;
}

.po-agent-mira .po-agent-mark {
  background: #0891b2;
}

.po-agent-leo {
  color: #b42318;
  background: #fef3f2;
  border-color: #fecdca;
}

.po-agent-leo .po-agent-mark {
  background: #dc2626;
}

.po-agent-human {
  color: #334155;
  background: #f1f5f9;
  border-color: #e2e8f0;
}

.po-agent-human .po-agent-mark {
  background: #64748b;
}

.po-conf {
  height: 20px;
  font-family: var(--po-font-mono);
  font-variant-numeric: tabular-nums;
  border-radius: 4px;
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
  padding: 0 7px 0 5px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
}

.po-conf-green {
  color: #065f46;
  background: #ecfdf5;
}

.po-conf-yellow {
  color: #92400e;
  background: #fffbeb;
}

.po-conf-red {
  color: #991b1b;
  background: #fef2f2;
}

.po-brandtag {
  height: 18px;
  color: var(--po-fg-3);
  border: 1px solid var(--po-border);
  background: #fff;
  border-radius: 3px;
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
  padding: 0 7px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
}

.po-brandtag-dot {
  border-radius: 999px;
  width: 6px;
  height: 6px;
}

.po-oprow {
  background: var(--po-neutral-bg);
  height: 20px;
  color: var(--po-neutral-fg);
  border: 1px solid var(--po-neutral-bd);
  font-family: var(--po-font-cta);
  letter-spacing: .02em;
  border-radius: 4px;
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
  padding: 0 6px 0 5px;
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
}

.po-oprow.is-stop {
  color: #991b1b;
  background: #fef2f2;
  border-color: #fecaca;
}

.po-oprow.is-warn {
  color: #92400e;
  background: #fffbeb;
  border-color: #fde68a;
}

.po-run-section-h {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.po-run-layer-toggle {
  background: var(--po-surface-2);
  border: 1px solid var(--po-border);
  border-radius: 6px;
  gap: 2px;
  padding: 2px;
  display: inline-flex;
}

.po-run-layer-btn {
  min-width: 28px;
  height: 22px;
  color: var(--po-fg-3);
  font-family: var(--po-font-mono);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 4px;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 600;
}

.po-run-layer-btn:hover {
  color: var(--po-fg-1);
}

.po-run-layer-btn.is-on {
  color: var(--po-blue-700);
  background: #fff;
  box-shadow: 0 1px 2px #0f172a14;
}

.po-empty {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 56px 24px;
  display: flex;
}

.po-empty-pattern {
  opacity: .55;
  width: 240px;
  height: 56px;
}

.po-empty-h {
  font-family: var(--po-font-display);
  color: var(--po-fg-1);
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.po-empty-s {
  color: var(--po-fg-3);
  max-width: 480px;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.po-empty-op {
  color: var(--po-fg-2);
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 12px;
  display: inline-flex;
}

.po-sub-h3 {
  font-family: var(--po-font-display);
  color: var(--po-fg-1);
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
}

.po-ph-grid {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0 24px 24px;
  display: grid;
}

.po-ph-card {
  border: 1px solid var(--po-border);
  background: #fff;
  border-radius: 8px;
  padding: 16px;
}

.po-ph-card-h {
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  display: flex;
}

.po-ph-card-h h3 {
  font-family: var(--po-font-display);
  color: var(--po-fg-1);
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.po-ph-card-h-s {
  color: var(--po-fg-3);
  font-size: 11px;
}

.po-ph-svc {
  border-bottom: 1px solid var(--po-border-soft);
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  display: flex;
}

.po-ph-svc:last-child {
  border-bottom: none;
}

.po-ph-svc-name {
  flex: 1;
  min-width: 0;
}

.po-ph-svc-t {
  color: var(--po-fg-1);
  font-size: 13px;
  font-weight: 500;
}

.po-ph-svc-s {
  color: var(--po-fg-3);
  font-size: 11px;
  font-family: var(--po-font-mono);
}

.po-ph-svc-num {
  font-variant-numeric: tabular-nums;
  text-align: right;
  color: var(--po-fg-2);
  min-width: 64px;
  font-size: 12px;
  font-family: var(--po-font-mono);
}

.po-ph-bar {
  border-radius: 3px;
  align-items: stretch;
  gap: 1px;
  height: 16px;
  margin-top: 8px;
  display: flex;
  overflow: hidden;
}

.po-ph-bar-cell {
  cursor: default;
  flex: 1;
  min-width: 2px;
  transition: opacity .15s;
}

.po-ph-bar-cell:hover {
  opacity: .75;
}

.po-ph-bar-c-ok {
  background: #10b981;
}

.po-ph-bar-c-warn {
  background: #f59e0b;
}

.po-ph-bar-c-err {
  background: #dc2626;
}

.po-ph-bar-c-empty {
  background: #e5e7eb;
}

.po-ph-bar-meta {
  color: var(--po-fg-3);
  font-size: 10px;
  font-family: var(--po-font-mono);
  justify-content: space-between;
  margin-top: 6px;
  display: flex;
}

.po-ph-circuit {
  border-bottom: 1px solid var(--po-border-soft);
  grid-template-columns: 1fr 80px 100px 80px;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 12px;
  display: grid;
}

.po-ph-circuit:last-child {
  border-bottom: none;
}

.po-ph-circuit-t {
  color: var(--po-fg-1);
  font-weight: 500;
}

.po-ph-circuit-s {
  color: var(--po-fg-3);
  margin-top: 2px;
  font-size: 11px;
}

.po-ph-circuit-num {
  font-variant-numeric: tabular-nums;
  text-align: right;
  font-family: var(--po-font-mono);
  color: var(--po-fg-2);
}

.po-ph-incident {
  border-bottom: 1px solid var(--po-border-soft);
  gap: 10px;
  padding: 10px 0;
  display: flex;
}

.po-ph-incident:last-child {
  border-bottom: none;
}

.po-ph-incident-dot {
  border-radius: 999px;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 6px;
}

.po-ph-incident-meta {
  flex: 1;
  min-width: 0;
}

.po-ph-incident-t {
  color: var(--po-fg-1);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
}

.po-ph-incident-s {
  color: var(--po-fg-3);
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.45;
}

.po-ph-incident-time {
  color: var(--po-fg-3);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  font-family: var(--po-font-mono);
  flex-shrink: 0;
}

.po-ph-kpi-strip {
  gap: 24px;
  margin-bottom: 4px;
  padding: 12px 24px 0;
  display: flex;
}

.po-ph-kpi {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.po-ph-kpi-val {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--po-font-display);
  font-variant-numeric: tabular-nums;
  color: var(--po-fg-1);
}

.po-ph-kpi-lbl {
  color: var(--po-fg-3);
  font-size: 11px;
}

.po-ph-unavailable {
  color: var(--po-fg-3);
  padding: 8px 0;
  font-size: 12px;
  font-style: italic;
}

@media (max-width: 768px) {
  .po-ph-grid {
    grid-template-columns: 1fr;
  }

  .po-ph-circuit {
    grid-template-columns: 1fr 80px;
  }

  .po-ph-kpi-strip {
    flex-wrap: wrap;
    gap: 16px;
  }
}

.po-cfg-h2 {
  color: var(--po-fg-1);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--po-font-display);
  margin: 0;
}

.po-cfg-sub {
  color: var(--po-fg-3);
  margin-top: 2px;
  font-size: 11px;
}

.po-cfg-channels-grid {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.po-channel-card {
  border: 1px solid var(--po-border);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.po-channel-h {
  border-bottom: 1px solid var(--po-border);
  background: var(--po-surface-1);
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  display: grid;
}

.po-channel-dot {
  color: #fff;
  width: 30px;
  height: 30px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--po-font-mono);
  letter-spacing: .02em;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.po-cfg-deploy {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

/*# sourceMappingURL=src_app_hosts_agency__design_console_0i.4~ir.css.map*/