/* app/javascript/greenbook/zeb/zeb.css */
.zeb-shell {
  --gb-green: #009b7a;
  --gb-green-dark: #007f67;
  --gb-green-soft: #eaf8f3;
  --gb-mint: #f3fbf8;
  --gb-text: #111827;
  --gb-muted: #8a9299;
  --gb-bg: #f6f7f8;
  --gb-border: #e6e9ec;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--gb-bg);
  color: var(--gb-text);
  font-family:
    Inter,
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    system-ui,
    sans-serif;
}
.zeb-route-loading {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background: #f7f8fa;
  color: #4e5968;
  font:
    600 14px/1.4 Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
.zeb-shell button,
.zeb-shell input {
  font: inherit;
}
.zeb-sidebar {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  padding: 24px 8px;
  background: #ffffff;
  border-right: 1px solid #eceff1;
}
.zeb-logo {
  display: flex;
  align-items: center;
  gap: 1px;
  margin: 0 16px 76px;
  color: #20242a;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.zeb-logo span {
  color: var(--gb-green);
  font-size: 1.9rem;
  line-height: 1;
}
.zeb-collapse {
  position: absolute;
  top: 86px;
  right: 14px;
  border: 0;
  background: transparent;
  color: #d3d8dc;
  font-weight: 900;
}
.zeb-sidebar nav {
  display: grid;
  gap: 8px;
}
.zeb-sidebar small {
  margin: 20px 16px 6px;
  padding-top: 10px;
  border-top: 1px solid #eef1f3;
  color: #a0a7ae;
  font-size: 0.72rem;
}
.zeb-sidebar a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #343b42;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.zeb-sidebar a.active {
  border-color: var(--gb-green);
  background: var(--gb-green-soft);
  color: #008c72;
}
.zeb-sidebar a.muted {
  color: #c1c6ca;
}
.zeb-main {
  min-width: 0;
  padding: 0 30px 24px;
}
.zeb-topbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 92px;
}
.zeb-project-title {
  display: flex;
  align-items: center;
  gap: 28px;
}
.zeb-project-title strong {
  font-size: 1.5rem;
  letter-spacing: 0;
}
.zeb-project-title span {
  color: #333c45;
  font-size: 1.08rem;
  font-weight: 700;
}
.zeb-filters {
  grid-row: 2;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.zeb-filters button,
.zeb-upload-button {
  min-height: 38px;
  border: 1px solid #e7eaed;
  border-radius: 8px;
  padding: 0 16px;
  background: #f7f8f9;
  color: #a4abb1;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.zeb-upload-button {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.zeb-upload-button input {
  display: none;
}
.zeb-filters .zeb-download,
.zeb-filters .zeb-load {
  background: #dff3ed;
  color: var(--gb-green-dark);
}
.zeb-user {
  grid-row: 1;
  grid-column: 2;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222931;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}
.zeb-user span {
  padding: 5px 10px;
  border: 1px solid #cbd8e8;
  border-radius: 6px;
  background: #edf6ff;
  color: #2362a2;
  font-size: 0.76rem;
}
.zeb-kpis {
  display: grid;
  grid-template-columns: repeat(6, minmax(132px, 1fr));
  gap: 10px;
  margin-bottom: 8px;
}
.zeb-kpis article {
  position: relative;
  min-width: 0;
  min-height: 116px;
  padding: 18px 70px 14px 18px;
  border: 1px solid #f0f2f4;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.zeb-kpis article::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 7px solid #e8f5f1;
  border-top-color: var(--gb-green);
  border-radius: 999px;
}
.zeb-kpis article:nth-child(2)::after,
.zeb-kpis article:nth-child(5)::after {
  border-color: #f9e1e4;
  border-top-color: #ff6677;
}
.zeb-kpis span,
.zeb-kpis em {
  display: block;
  color: var(--gb-muted);
  font-style: normal;
  font-size: 0.73rem;
  font-weight: 700;
}
.zeb-kpis strong {
  display: block;
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1;
}
.zeb-kpis small {
  margin-left: 3px;
  font-size: 0.8rem;
}
.zeb-kpis em {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 12px;
  padding: 6px 8px;
  border-radius: 6px;
  background: #f8f9fa;
  color: #8d959c;
  font-size: 0.68rem;
}
.zeb-kpis article.active em {
  color: var(--gb-green-dark);
}
.zeb-tabs {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
  min-height: 54px;
  border-bottom: 1px solid #e5e8eb;
}
.zeb-tabs > button {
  align-self: stretch;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #a0a7ae;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}
.zeb-tabs > button.active {
  border-bottom-color: var(--gb-green);
  color: #111827;
}
.zeb-tabs div {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.zeb-tabs div button {
  min-height: 38px;
  border: 1px solid #e5e8eb;
  border-radius: 8px;
  padding: 0 18px;
  background: #ffffff;
  color: #a4abb1;
  font-size: 0.78rem;
  font-weight: 800;
}
.zeb-tabs div .zeb-load {
  color: var(--gb-green-dark);
}
.zeb-canvas-shell {
  position: relative;
  min-height: calc(100vh - 272px);
  overflow: hidden;
  contain: paint;
  border-radius: 0;
  background:
    linear-gradient(
      116deg,
      rgba(193, 196, 195, 0.72) 0 18%,
      transparent 18% 100%),
    linear-gradient(
      244deg,
      rgba(211, 213, 212, 0.7) 0 17%,
      transparent 17% 100%),
    #eef2ef;
}
.zeb-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  contain: paint;
}
.zeb-three-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.zeb-three-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.zeb-viewer-badge {
  position: absolute;
  left: 24px;
  bottom: 86px;
  z-index: 5;
  display: grid;
  gap: 2px;
  padding: 9px 12px;
  border-radius: var(--zeb-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--zeb-shadow-sm);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
}
.zeb-viewer-badge strong {
  color: var(--zeb-text);
  font-size: 12px;
  font-weight: 700;
}
.zeb-viewer-badge span {
  color: var(--zeb-text-muted);
  font-size: 10px;
  font-weight: 600;
}
.zeb-scene-grid {
  position: absolute;
  left: 5%;
  right: -4%;
  bottom: -145px;
  height: 640px;
  transform: rotateX(62deg) rotateZ(-21deg);
  transform-origin: center;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.78) 2px,
      transparent 2px),
    linear-gradient(rgba(255, 255, 255, 0.78) 2px, transparent 2px),
    linear-gradient(
      135deg,
      #1a7829,
      #5a9c3f);
  background-size:
    42px 42px,
    42px 42px,
    auto;
  box-shadow: inset 0 0 0 1px rgba(7, 83, 34, 0.28);
}
.zeb-building {
  position: absolute;
  left: 46%;
  top: 46%;
  width: 340px;
  height: 330px;
  transform: translate(-50%, -44%) rotateX(58deg) rotateZ(-38deg);
  transform-style: preserve-3d;
  filter: drop-shadow(42px 70px 46px rgba(35, 40, 38, 0.28));
}
.zeb-face {
  position: absolute;
  border: 0;
  padding: 0;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: filter 160ms ease, box-shadow 160ms ease;
}
.zeb-face:focus-visible {
  outline: 3px solid #00bfa5;
  outline-offset: 4px;
}
.zeb-face-roof {
  left: 46px;
  top: 18px;
  width: 260px;
  height: 194px;
  transform: translateZ(110px);
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.16) 1px,
      transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    #858889;
  background-size: 34px 34px;
}
.zeb-face-south {
  left: 46px;
  top: 211px;
  width: 260px;
  height: 132px;
  transform: rotateX(-90deg);
  transform-origin: top;
  background: #a6a7a7;
}
.zeb-face-east {
  left: 306px;
  top: 18px;
  width: 132px;
  height: 194px;
  transform: rotateY(90deg);
  transform-origin: left;
  background: #9b9d9d;
}
.zeb-face-west {
  left: -86px;
  top: 18px;
  width: 132px;
  height: 194px;
  transform: rotateY(-90deg);
  transform-origin: right;
  background: #8f9292;
}
.zeb-face-podium {
  left: -34px;
  top: 160px;
  width: 154px;
  height: 110px;
  transform: translateZ(64px);
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.16) 1px,
      transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    #777b7c;
  background-size: 28px 28px;
}
.zeb-building.roof .zeb-face-roof,
.zeb-building.south .zeb-face-south,
.zeb-building.east .zeb-face-east,
.zeb-building.west .zeb-face-west,
.zeb-building.podium .zeb-face-podium {
  box-shadow:
    inset 0 0 0 4px #00bfa5,
    0 0 0 2px rgba(0, 191, 165, 0.25),
    0 0 28px rgba(0, 155, 122, 0.34);
  filter: saturate(1.1);
}
.zeb-roof-panels,
.zeb-face-podium span,
.zeb-facade-panels,
.zeb-side-panels {
  position: absolute;
  display: grid;
  gap: 8px;
}
.zeb-roof-panels {
  inset: 42px 38px;
  grid-template-columns: repeat(4, 1fr);
}
.zeb-face-podium span {
  inset: 28px 22px;
  grid-template-columns: repeat(3, 1fr);
}
.zeb-roof-panels i,
.zeb-face-podium i,
.zeb-facade-panels i,
.zeb-side-panels i {
  display: block;
  border: 2px solid #00bfa5;
  border-radius: 3px;
  background:
    linear-gradient(
      135deg,
      #006fae,
      #0492d4);
  box-shadow: 0 6px 16px rgba(0, 111, 174, 0.28);
}
.zeb-window-grid {
  position: absolute;
  inset: 20px 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 22px;
}
.zeb-window-stack {
  position: absolute;
  inset: 26px 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.zeb-window-grid i,
.zeb-window-stack i {
  border-radius: 2px;
  background: #1687a7;
}
.zeb-facade-panels {
  inset: 14px 22px;
  grid-template-columns: repeat(6, 1fr);
}
.zeb-side-panels {
  inset: 24px 28px;
  grid-template-columns: repeat(2, 1fr);
}
.zeb-scene-callout,
.zeb-canvas-status,
.zeb-location-chip,
.zeb-bottom-tools,
.zeb-zoom-controls,
.zeb-search-modal,
.zeb-surface-hotspots button,
.zeb-left-float article,
.zeb-result-panel article {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--gb-border);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px);
}
.zeb-scene-callout {
  position: absolute;
  left: 52%;
  top: 31%;
  display: grid;
  gap: 3px;
  padding: 9px 12px;
  border-radius: 8px;
}
.zeb-surface-hotspots {
  position: absolute;
  left: 46%;
  top: 47%;
  width: 430px;
  height: 310px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.zeb-surface-hotspots button {
  position: absolute;
  min-width: 68px;
  min-height: 32px;
  border-radius: 999px;
  color: #2f3a42;
  font-size: 0.74rem;
  font-weight: 900;
  pointer-events: auto;
  cursor: pointer;
}
.zeb-surface-hotspots button.active {
  border-color: var(--gb-green);
  background: var(--gb-green-soft);
  color: var(--gb-green-dark);
}
.zeb-surface-hotspots .roof {
  left: 196px;
  top: 50px;
}
.zeb-surface-hotspots .south {
  left: 196px;
  top: 208px;
}
.zeb-surface-hotspots .east {
  left: 318px;
  top: 138px;
}
.zeb-surface-hotspots .west {
  left: 58px;
  top: 146px;
}
.zeb-surface-hotspots .podium {
  left: 86px;
  top: 238px;
}
.zeb-scene-callout strong {
  color: var(--gb-green-dark);
  font-size: 0.82rem;
}
.zeb-scene-callout span {
  color: #6b7280;
  font-size: 0.7rem;
}
.zeb-canvas-status {
  position: absolute;
  z-index: 12;
  top: 18px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
}
.zeb-canvas-status span {
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 800;
}
.zeb-canvas-status button,
.zeb-floating-heading button,
.zeb-filter-pills button,
.zeb-surface-pills button,
.zeb-bottom-tools button,
.zeb-zoom-controls button {
  border: 1px solid #dde2e6;
  border-radius: 8px;
  background: #ffffff;
  color: #374151;
  font-weight: 900;
}
.zeb-canvas-status button {
  min-height: 28px;
  padding: 0 10px;
  color: var(--gb-green-dark);
}
.zeb-search-modal {
  position: absolute;
  z-index: 5;
  left: 32px;
  right: 32px;
  top: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 24px;
  border-radius: 8px;
}
.zeb-floating-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.zeb-floating-heading h2 {
  margin: 0;
  font-size: 0.98rem;
}
.zeb-floating-heading button {
  width: 34px;
  height: 34px;
}
.zeb-search-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 46px;
  margin-bottom: 12px;
  border: 1px solid #e4e7eb;
  border-radius: 8px;
  background: #f8f9fa;
}
.zeb-search-row button {
  height: 34px;
  margin-left: 10px;
  border: 1px solid #dfe4e8;
  border-radius: 999px;
  background: #ffffff;
  color: #3d4650;
  font-size: 0.78rem;
  font-weight: 800;
}
.zeb-search-row input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #2b3137;
  font-weight: 700;
}
.zeb-search-row span {
  padding-right: 16px;
  color: #c0c6cc;
  font-size: 1.3rem;
}
.zeb-filter-pills {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 14px;
}
.zeb-filter-pills button,
.zeb-surface-pills button {
  min-width: 54px;
  min-height: 34px;
  padding: 0 14px;
}
.zeb-filter-pills button.active,
.zeb-surface-pills button.active {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}
.zeb-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-height: min(620px, calc(100vh - 420px));
  overflow: auto;
  padding-right: 4px;
}
.zeb-product-grid > button {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 14px;
  min-height: 116px;
  padding: 16px;
  border: 1px solid #e6e9ec;
  border-radius: 8px;
  background: #ffffff;
  text-align: left;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  cursor: pointer;
}
.zeb-product-grid > button.selected {
  border-color: var(--gb-green);
  background: var(--gb-mint);
}
.zeb-product-grid small,
.zeb-selected-product small {
  display: block;
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 700;
}
.zeb-product-grid strong,
.zeb-selected-product strong {
  display: block;
  margin: 3px 0 8px;
  color: #111827;
  font-size: 1rem;
}
.zeb-product-grid em,
.zeb-selected-product em {
  display: block;
  color: var(--gb-green-dark);
  font-style: normal;
  font-size: 0.96rem;
  font-weight: 900;
}
.zeb-product-grid i,
.zeb-selected-product i {
  display: inline-flex;
  margin-left: 8px;
  padding: 2px 7px;
  border: 1px solid #d8e7e2;
  border-radius: 999px;
  color: var(--gb-green-dark);
  font-style: normal;
  font-size: 0.66rem;
}
.zeb-product-grid b,
.zeb-selected-product b {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid #dce2e6;
  border-radius: 999px;
  color: transparent;
}
.zeb-product-grid .selected b,
.zeb-selected-product b {
  border-color: var(--gb-green);
  color: var(--gb-green);
}
.zeb-product-thumb {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  width: 82px;
  height: 82px;
  padding: 8px;
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      #183e5a,
      #0d7490);
  overflow: hidden;
}
.zeb-product-thumb span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
}
.zeb-product-thumb.teal {
  background:
    linear-gradient(
      135deg,
      #174052,
      #0f766e);
}
.zeb-product-thumb.orange {
  background:
    linear-gradient(
      135deg,
      #39414a,
      #d97706);
}
.zeb-product-thumb.green {
  background:
    linear-gradient(
      135deg,
      #194a3c,
      #0f9f6e);
}
.zeb-product-thumb.sunset {
  background:
    linear-gradient(
      135deg,
      #261326,
      #ff6b4a);
}
.zeb-product-thumb.sky {
  background:
    linear-gradient(
      135deg,
      #0e4f78,
      #4fb5df);
}
.zeb-product-thumb.steel {
  background:
    linear-gradient(
      135deg,
      #24313c,
      #7d929f);
}
.zeb-product-thumb.indigo {
  background:
    linear-gradient(
      135deg,
      #172554,
      #0891b2);
}
.zeb-product-thumb.copper {
  background:
    linear-gradient(
      135deg,
      #3b2f2f,
      #b45309);
}
.zeb-left-float {
  position: absolute;
  z-index: 6;
  top: 24px;
  left: 32px;
  width: min(430px, calc(100% - 440px));
  display: grid;
  gap: 12px;
}
.zeb-left-float article,
.zeb-result-panel article {
  border-radius: 8px;
  padding: 16px;
}
.zeb-compact-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #e4e7eb;
  border-radius: 8px;
  background: #f8f9fa;
  color: inherit;
  text-align: left;
}
.zeb-compact-search > span {
  padding: 4px 10px;
  border: 1px solid #dfe4e8;
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
}
.zeb-compact-search strong {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
  line-height: 1.1;
}
.zeb-compact-search strong small {
  overflow: hidden;
  color: #7b8794;
  font-size: 0.62rem;
  font-weight: 650;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-compact-search button {
  min-height: 28px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: var(--gb-green);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
}
.zeb-expanded-product-picker {
  z-index: 10;
}
.zeb-expanded-product-picker .zeb-product-grid {
  max-height: min(560px, calc(100vh - 280px));
}
.zeb-inline-product-picker {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}
.zeb-inline-picker-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.zeb-inline-product-picker .zeb-filter-pills {
  flex: 1;
  justify-content: flex-start;
  margin-bottom: 0;
}
.zeb-inline-product-picker .zeb-filter-pills button {
  min-height: 28px;
}
.zeb-inline-expand {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f1f3f5;
  color: #59636e;
  font-size: 1.05rem;
  font-weight: 850;
  cursor: pointer;
}
.zeb-inline-product-picker .zeb-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-height: min(318px, calc(100vh - 380px));
  overflow-y: auto;
  padding-right: 3px;
}
.zeb-inline-product-picker .zeb-product-grid > button {
  grid-template-columns: 48px minmax(0, 1fr) 18px;
  gap: 10px;
  min-height: 68px;
  padding: 8px;
  border-radius: 8px;
}
.zeb-inline-product-picker .zeb-product-thumb {
  width: 48px;
  height: 48px;
  padding: 5px;
}
.zeb-inline-product-picker .zeb-product-grid small {
  font-size: 0.58rem;
}
.zeb-inline-product-picker .zeb-product-grid strong {
  margin: 1px 0 3px;
  font-size: 0.78rem;
}
.zeb-inline-product-picker .zeb-product-grid em {
  font-size: 0.72rem;
}
.zeb-inline-product-picker .zeb-product-grid i {
  margin-left: 4px;
  padding: 1px 5px;
}
.zeb-inline-product-picker .zeb-product-grid b {
  width: 16px;
  height: 16px;
}
.zeb-placement-score {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
}
.zeb-placement-score strong,
.zeb-placement-card h2 {
  margin: 0;
  font-size: 0.98rem;
}
.zeb-placement-score span {
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 700;
}
.zeb-placement-score b {
  color: var(--gb-green);
  font-size: 1rem;
}
.zeb-placement-card {
  display: grid;
  gap: 12px;
}
.zeb-surface-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.zeb-placement-meta {
  display: flex;
  gap: 8px;
}
.zeb-placement-meta span {
  padding: 4px 8px;
  border: 1px solid #e2e7eb;
  border-radius: 6px;
  background: #ffffff;
  color: #2d343b;
  font-size: 0.76rem;
  font-weight: 800;
}
.zeb-placement-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 1px;
  height: 210px;
  padding: 1px;
  border: 1px solid #c7cccf;
  background: #a5a8a7;
}
.zeb-placement-grid span {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(122, 127, 128, 0.62);
}
.zeb-placement-grid span.active {
  border: 2px solid #00c8c8;
  background: rgba(0, 111, 174, 0.36);
}
.zeb-placement-grid span.blocked {
  border-color: rgba(180, 83, 9, 0.32);
  background: rgba(180, 83, 9, 0.18);
}
.zeb-surface-insight,
.zeb-preview-status {
  display: grid;
  gap: 7px;
  padding: 10px;
  border-radius: 8px;
  background: #ffffff;
  outline: 1px solid #e5eaee;
}
.zeb-surface-insight > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}
.zeb-surface-insight strong,
.zeb-preview-status strong {
  overflow: hidden;
  color: #17202a;
  font-size: 0.78rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-surface-insight span,
.zeb-preview-status span,
.zeb-preview-status em {
  overflow: hidden;
  color: #77828c;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-surface-insight dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
}
.zeb-surface-insight dl div {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 6px;
  border-radius: 6px;
  background: var(--zeb-bg-soft);
}
.zeb-surface-insight dt,
.zeb-surface-insight dd {
  overflow: hidden;
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-surface-insight dt {
  color: #818b95;
  font-size: 0.58rem;
  font-weight: 650;
}
.zeb-surface-insight dd {
  color: var(--zeb-accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
}
.zeb-surface-insight > em {
  overflow: hidden;
  color: #b45309;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-preview-status {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}
.zeb-coverage-slider {
  display: grid;
  gap: 7px;
  color: #27323a;
  font-size: 0.8rem;
  font-weight: 900;
}
.zeb-coverage-slider input {
  accent-color: var(--gb-green);
}
.zeb-placement-summary {
  display: grid;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid #e5e8eb;
}
.zeb-placement-summary strong {
  font-size: 0.86rem;
}
.zeb-placement-summary dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
}
.zeb-placement-summary div {
  padding: 9px;
  border-radius: 6px;
  background: #f8faf9;
}
.zeb-placement-summary dt,
.zeb-placement-summary dd {
  margin: 0;
  font-size: 0.74rem;
}
.zeb-placement-summary dd {
  margin-top: 3px;
  color: #111827;
  font-weight: 900;
}
.zeb-placement-summary b {
  justify-self: end;
  color: var(--gb-green-dark);
}
.zeb-result-panel {
  position: absolute;
  z-index: 6;
  top: 24px;
  right: 32px;
  width: 360px;
  display: grid;
  gap: 14px;
}
.zeb-selected-product {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-color: var(--gb-green) !important;
  background: var(--gb-mint) !important;
}
.zeb-selected-product span {
  color: #6b7280;
  font-size: 0.76rem;
  font-weight: 700;
}
.zeb-forecast-card {
  display: grid;
  gap: 14px;
}
.zeb-forecast-tabs {
  display: flex;
  align-items: center;
  gap: 14px;
}
.zeb-forecast-tabs strong {
  font-size: 0.98rem;
}
.zeb-forecast-tabs span {
  color: #a1a8af;
  font-size: 0.8rem;
  font-weight: 800;
}
.zeb-forecast-card p {
  width: fit-content;
  margin: 0;
  padding: 4px 8px;
  border: 1px solid #dfe3e6;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 800;
}
.zeb-forecast-main {
  display: grid;
  gap: 8px;
  margin: 0;
}
.zeb-forecast-main div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
.zeb-forecast-main dt,
.zeb-forecast-main dd {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
}
.zeb-forecast-main dt {
  color: #8a9299;
}
.zeb-forecast-main dd {
  color: var(--gb-green-dark);
}
.zeb-progress {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef0f1;
}
.zeb-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gb-green);
}
.zeb-generation-grid,
.zeb-effect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.zeb-effect-grid {
  grid-template-columns: repeat(2, 1fr);
}
.zeb-generation-grid div,
.zeb-effect-grid div {
  min-width: 0;
  padding: 11px;
  border: 1px solid #edf0f2;
  border-radius: 6px;
  background: #fafbfb;
}
.zeb-generation-grid span,
.zeb-effect-grid span {
  display: block;
  color: #858e96;
  font-size: 0.72rem;
  font-weight: 800;
}
.zeb-generation-grid strong,
.zeb-effect-grid strong {
  display: block;
  margin-top: 5px;
  color: #111827;
  font-size: 0.86rem;
}
.zeb-effect-grid strong {
  color: var(--gb-green-dark);
}
.zeb-gauge {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  border-radius: 999px;
  background: conic-gradient(var(--gb-green) var(--zeb-gauge-value), #ecf0f2 0);
}
.zeb-gauge-core {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: #ffffff;
}
.zeb-gauge-core strong {
  color: var(--gb-green-dark);
  font-size: 1.2rem;
}
.zeb-gauge-core span {
  color: #7b848d;
  font-size: 0.65rem;
  font-weight: 900;
}
.zeb-disclaimer {
  margin: 0;
  color: #8a9299;
  font-size: 0.72rem;
  line-height: 1.5;
}
.zeb-zoom-controls {
  position: absolute;
  left: 24px;
  bottom: 30px;
  display: grid;
  gap: 6px;
  padding: 0;
  border-radius: 8px;
}
.zeb-zoom-controls button {
  width: 34px;
  height: 34px;
}
.zeb-bottom-tools {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  transform: translateX(-50%);
}
.zeb-bottom-tools button {
  width: 34px;
  height: 34px;
}
.zeb-location-chip {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 7px 12px;
  border-radius: 8px;
  color: #334049;
  font-size: 0.76rem;
  font-weight: 800;
}
.zeb-shell {
  font-size: 12px;
}
.zeb-shell strong,
.zeb-shell b,
.zeb-shell button,
.zeb-shell a,
.zeb-shell label {
  font-weight: 650;
}
.zeb-sidebar {
  padding: 18px 8px;
}
.zeb-logo {
  margin: 0 16px 60px;
  font-size: 1.32rem;
}
.zeb-logo span {
  font-size: 1.58rem;
}
.zeb-collapse {
  top: 72px;
}
.zeb-sidebar nav {
  gap: 5px;
}
.zeb-sidebar small {
  margin: 14px 16px 4px;
  padding-top: 8px;
  font-size: 0.66rem;
}
.zeb-sidebar a {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 7px;
  font-size: 0.78rem;
}
.zeb-main {
  padding: 0 24px 20px;
}
.zeb-topbar {
  gap: 10px 14px;
  min-height: 74px;
}
.zeb-project-title {
  gap: 22px;
}
.zeb-project-title strong {
  font-size: 1.26rem;
  font-weight: 700;
}
.zeb-project-title span {
  font-size: 0.95rem;
  font-weight: 600;
}
.zeb-filters {
  gap: 6px;
}
.zeb-filters button,
.zeb-upload-button {
  min-height: 32px;
  padding: 0 13px;
  border-radius: 7px;
  font-size: 0.68rem;
  font-weight: 600;
}
.zeb-user {
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 650;
}
.zeb-user span {
  padding: 4px 8px;
  font-size: 0.68rem;
}
.zeb-kpis {
  gap: 8px;
  margin-bottom: 6px;
}
.zeb-kpis article {
  min-height: 88px;
  padding: 13px 56px 11px 14px;
  border-radius: 7px;
}
.zeb-kpis article::after {
  top: 20px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-width: 6px;
}
.zeb-kpis span,
.zeb-kpis em {
  font-size: 0.64rem;
  font-weight: 600;
}
.zeb-kpis strong {
  margin-top: 8px;
  font-size: 1.28rem;
  font-weight: 700;
}
.zeb-kpis small {
  font-size: 0.66rem;
}
.zeb-kpis em {
  left: 14px;
  right: 14px;
  bottom: 9px;
  padding: 4px 7px;
  font-size: 0.6rem;
}
.zeb-tabs {
  gap: 17px;
  min-height: 43px;
}
.zeb-tabs > button {
  font-size: 0.74rem;
  font-weight: 650;
}
.zeb-tabs div button {
  min-height: 31px;
  padding: 0 14px;
  font-size: 0.68rem;
  font-weight: 650;
}
.zeb-canvas-shell {
  min-height: calc(100vh - 220px);
}
.zeb-building {
  left: 47%;
  top: 49%;
  transform: translate(-50%, -44%) rotateX(58deg) rotateZ(-38deg) scale(0.84);
}
.zeb-scene-callout {
  left: 52%;
  top: 33%;
  padding: 7px 10px;
}
.zeb-scene-callout strong {
  font-size: 0.72rem;
}
.zeb-scene-callout span {
  font-size: 0.62rem;
}
.zeb-surface-hotspots {
  left: 47%;
  top: 48%;
  transform: translate(-50%, -50%) scale(0.86);
}
.zeb-surface-hotspots button {
  min-width: 58px;
  min-height: 28px;
  font-size: 0.66rem;
  font-weight: 650;
}
.zeb-canvas-status {
  top: 14px;
  left: 16px;
  gap: 7px;
  padding: 6px 8px;
}
.zeb-canvas-status span {
  font-size: 0.66rem;
  font-weight: 650;
}
.zeb-canvas-status button {
  min-height: 24px;
  padding: 0 8px;
}
.zeb-search-modal {
  left: 28px;
  right: 28px;
  top: 18px;
  max-width: 980px;
  padding: 18px 20px;
}
.zeb-floating-heading {
  margin-bottom: 12px;
}
.zeb-floating-heading h2,
.zeb-placement-score strong,
.zeb-placement-card h2,
.zeb-forecast-tabs strong {
  font-size: 0.84rem;
  font-weight: 700;
}
.zeb-floating-heading button {
  width: 30px;
  height: 30px;
}
.zeb-search-row {
  min-height: 39px;
  margin-bottom: 10px;
}
.zeb-search-row button {
  height: 28px;
  font-size: 0.66rem;
  font-weight: 650;
}
.zeb-search-row input {
  font-weight: 600;
}
.zeb-search-row span {
  font-size: 1rem;
}
.zeb-filter-pills {
  gap: 6px;
  margin-bottom: 11px;
}
.zeb-filter-pills button,
.zeb-surface-pills button {
  min-width: 46px;
  min-height: 29px;
  padding: 0 11px;
  font-size: 0.68rem;
}
.zeb-product-grid {
  gap: 9px;
  max-height: min(530px, calc(100vh - 330px));
}
.zeb-product-grid > button {
  grid-template-columns: 66px minmax(0, 1fr) auto;
  gap: 11px;
  min-height: 88px;
  padding: 12px;
  border-radius: 7px;
}
.zeb-product-thumb {
  width: 64px;
  height: 64px;
  padding: 6px;
}
.zeb-product-grid small,
.zeb-selected-product small {
  font-size: 0.62rem;
  font-weight: 500;
}
.zeb-product-grid strong,
.zeb-selected-product strong {
  margin: 2px 0 5px;
  font-size: 0.88rem;
  font-weight: 700;
}
.zeb-product-grid em,
.zeb-selected-product em {
  font-size: 0.8rem;
  font-weight: 700;
}
.zeb-product-grid i,
.zeb-selected-product i {
  margin-left: 6px;
  padding: 1px 6px;
  font-size: 0.58rem;
}
.zeb-product-grid b,
.zeb-selected-product b {
  width: 18px;
  height: 18px;
}
.zeb-left-float {
  top: 18px;
  left: 28px;
  width: min(350px, calc(100% - 370px));
  gap: 9px;
}
.zeb-left-float article,
.zeb-result-panel article {
  padding: 12px;
  border-radius: 7px;
}
.zeb-compact-search {
  min-height: 35px;
  gap: 9px;
  padding: 0 10px;
}
.zeb-compact-search > span {
  padding: 3px 8px;
  font-size: 0.62rem;
  font-weight: 650;
}
.zeb-placement-score {
  gap: 9px;
}
.zeb-placement-score span {
  font-size: 0.68rem;
  font-weight: 500;
}
.zeb-placement-card {
  gap: 10px;
}
.zeb-surface-pills {
  gap: 6px;
}
.zeb-placement-meta span {
  padding: 3px 7px;
  font-size: 0.66rem;
  font-weight: 650;
}
.zeb-placement-grid {
  height: 140px;
}
.zeb-coverage-slider {
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 650;
}
.zeb-placement-summary {
  gap: 6px;
  padding-top: 8px;
}
.zeb-placement-summary strong {
  font-size: 0.74rem;
  font-weight: 650;
}
.zeb-placement-summary div {
  padding: 7px;
}
.zeb-placement-summary dt,
.zeb-placement-summary dd {
  font-size: 0.64rem;
}
.zeb-result-panel {
  top: 18px;
  right: 28px;
  width: 306px;
  gap: 11px;
}
.zeb-selected-product {
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 11px;
}
.zeb-forecast-card {
  gap: 9px;
}
.zeb-forecast-tabs {
  gap: 10px;
}
.zeb-forecast-tabs span {
  font-size: 0.68rem;
  font-weight: 600;
}
.zeb-forecast-card p {
  padding: 3px 7px;
  font-size: 0.66rem;
  font-weight: 650;
}
.zeb-forecast-main {
  gap: 6px;
}
.zeb-forecast-main dt,
.zeb-forecast-main dd {
  font-size: 0.7rem;
  font-weight: 650;
}
.zeb-progress {
  height: 10px;
}
.zeb-generation-grid,
.zeb-effect-grid {
  gap: 6px;
}
.zeb-generation-grid div,
.zeb-effect-grid div {
  padding: 7px;
}
.zeb-generation-grid span,
.zeb-effect-grid span {
  font-size: 0.62rem;
  font-weight: 650;
}
.zeb-generation-grid strong,
.zeb-effect-grid strong {
  margin-top: 4px;
  font-size: 0.73rem;
  font-weight: 700;
}
.zeb-gauge {
  width: 90px;
  height: 90px;
}
.zeb-gauge-core {
  width: 66px;
  height: 66px;
}
.zeb-gauge-core strong {
  font-size: 0.9rem;
}
.zeb-gauge-core span {
  font-size: 0.58rem;
}
.zeb-disclaimer {
  font-size: 0.62rem;
}
.zeb-zoom-controls {
  left: 18px;
  bottom: 24px;
  gap: 5px;
}
.zeb-zoom-controls button,
.zeb-bottom-tools button {
  width: 29px;
  height: 29px;
}
.zeb-bottom-tools {
  bottom: 18px;
  gap: 6px;
  padding: 6px;
}
.zeb-location-chip {
  right: 18px;
  bottom: 18px;
  padding: 6px 10px;
  font-size: 0.66rem;
  font-weight: 650;
}
.zeb-shell {
  --zeb-rhythm-1: 4px;
  --zeb-rhythm-2: 8px;
  --zeb-rhythm-3: 12px;
  --zeb-rhythm-4: 16px;
  height: 100vh;
  overflow: hidden;
}
.zeb-sidebar {
  padding: 20px 8px 18px;
}
.zeb-logo {
  height: 32px;
  margin: 0 16px 54px;
  font-weight: 800;
}
.zeb-collapse {
  top: 72px;
}
.zeb-sidebar nav {
  gap: 2px;
}
.zeb-sidebar small {
  margin: 16px 16px 5px;
  padding-top: 10px;
  color: #b3bac0;
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1.1;
}
.zeb-sidebar small:first-of-type {
  margin-top: 0;
}
.zeb-sidebar a {
  min-height: 32px;
  padding: 0 13px;
  border-radius: 7px;
  color: #4b5560;
  font-weight: 520;
}
.zeb-sidebar a.active {
  border-color: rgba(0, 155, 122, 0.82);
  color: var(--gb-green-dark);
  font-weight: 680;
}
.zeb-sidebar a.muted {
  color: #c8cdd1;
  font-weight: 500;
}
.zeb-main {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  min-height: 0;
  padding: 0 24px 18px;
}
.zeb-topbar {
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: 34px minmax(32px, auto);
  gap: 6px 14px;
  align-items: center;
  min-height: 82px;
  padding: 10px 0 8px;
}
.zeb-project-title {
  align-self: center;
  gap: 24px;
  min-width: 0;
}
.zeb-project-title strong {
  font-size: 1.2rem;
  line-height: 1.1;
}
.zeb-project-title span {
  color: #3e464e;
  font-size: 0.88rem;
  line-height: 1.2;
}
.zeb-user {
  align-self: center;
  color: #202830;
  font-weight: 620;
}
.zeb-user span {
  min-height: 24px;
  padding: 4px 9px;
  border-color: #d4dfec;
  background: #eff7ff;
  line-height: 1;
}
.zeb-filters {
  align-self: start;
  gap: 6px;
}
.zeb-filters button,
.zeb-upload-button,
.zeb-tabs div button {
  min-height: 30px;
  border-radius: 7px;
  color: #9aa2aa;
  font-weight: 520;
}
.zeb-filters .zeb-download,
.zeb-filters .zeb-load,
.zeb-tabs div .zeb-load {
  color: var(--gb-green-dark);
  font-weight: 620;
}
.zeb-kpis {
  gap: var(--zeb-rhythm-2);
  margin: 2px 0 6px;
}
.zeb-kpis article {
  min-height: 86px;
  padding: 12px 52px 10px 14px;
  border-color: #f1f3f5;
  box-shadow: 0 2px 7px rgba(15, 23, 42, 0.035);
}
.zeb-kpis span {
  color: #7f8790;
  font-weight: 560;
  line-height: 1.2;
}
.zeb-kpis strong {
  margin-top: 7px;
  font-size: 1.22rem;
  font-weight: 680;
}
.zeb-kpis em {
  bottom: 8px;
  min-height: 20px;
  padding: 4px 7px;
  color: #8f969d;
  font-weight: 520;
}
.zeb-tabs {
  gap: 15px;
  min-height: 40px;
  margin-top: 0;
}
.zeb-tabs > button {
  border-bottom-width: 2px;
  color: #a4abb1;
  font-size: 0.7rem;
  font-weight: 560;
}
.zeb-tabs > button.active {
  color: #111827;
  font-weight: 680;
}
.zeb-tabs div {
  gap: 6px;
}
.zeb-canvas-shell {
  min-height: 0;
}
.zeb-search-modal,
.zeb-left-float article,
.zeb-result-panel article,
.zeb-canvas-status,
.zeb-location-chip,
.zeb-bottom-tools,
.zeb-zoom-controls,
.zeb-surface-hotspots button {
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.075);
}
.zeb-search-modal {
  top: 16px;
  padding: 16px;
}
.zeb-floating-heading {
  min-height: 30px;
  margin-bottom: var(--zeb-rhythm-2);
}
.zeb-floating-heading h2,
.zeb-placement-score strong,
.zeb-placement-card h2,
.zeb-forecast-tabs strong {
  font-weight: 680;
  line-height: 1.2;
}
.zeb-search-row {
  min-height: 38px;
  margin-bottom: var(--zeb-rhythm-2);
}
.zeb-filter-pills {
  margin-bottom: var(--zeb-rhythm-3);
}
.zeb-product-grid {
  gap: var(--zeb-rhythm-2);
}
.zeb-product-grid > button {
  min-height: 86px;
  padding: 10px;
  align-items: center;
}
.zeb-product-grid small,
.zeb-selected-product small {
  color: #6f7882;
  line-height: 1.25;
}
.zeb-product-grid strong,
.zeb-selected-product strong {
  line-height: 1.1;
}
.zeb-left-float {
  top: 16px;
  left: 28px;
  gap: var(--zeb-rhythm-2);
}
.zeb-left-float article,
.zeb-result-panel article {
  padding: 11px;
}
.zeb-left-float .zeb-floating-heading {
  min-height: 26px;
  margin-bottom: 6px;
}
.zeb-compact-search {
  min-height: 34px;
}
.zeb-placement-score {
  min-height: 38px;
}
.zeb-placement-card {
  gap: var(--zeb-rhythm-2);
}
.zeb-surface-pills,
.zeb-placement-meta,
.zeb-generation-grid,
.zeb-effect-grid {
  gap: var(--zeb-rhythm-2);
}
.zeb-placement-grid {
  height: 96px;
}
.zeb-coverage-slider {
  gap: var(--zeb-rhythm-1);
}
.zeb-placement-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--zeb-rhythm-2);
  padding-top: var(--zeb-rhythm-2);
}
.zeb-placement-summary dl {
  display: none;
}
.zeb-placement-summary b {
  justify-self: end;
  font-size: 0.68rem;
}
.zeb-result-panel {
  top: 16px;
  right: 28px;
  gap: var(--zeb-rhythm-2);
}
.zeb-selected-product {
  min-height: 80px;
  align-items: center;
}
.zeb-result-panel .zeb-selected-product {
  grid-template-columns: 56px minmax(0, 1fr) auto;
  min-height: 72px;
  padding: 9px;
}
.zeb-result-panel .zeb-selected-product .zeb-product-thumb {
  width: 56px;
  height: 56px;
}
.zeb-forecast-card {
  gap: 6px;
}
.zeb-forecast-tabs {
  gap: var(--zeb-rhythm-2);
  min-height: 24px;
}
.zeb-forecast-tabs span {
  font-weight: 520;
}
.zeb-forecast-card p {
  margin-top: -1px;
}
.zeb-forecast-main {
  gap: var(--zeb-rhythm-1);
}
.zeb-generation-grid div,
.zeb-effect-grid div {
  padding: 5px 7px;
}
.zeb-gauge {
  margin-top: 1px;
  width: 76px;
  height: 76px;
}
.zeb-gauge-core {
  width: 56px;
  height: 56px;
}
.zeb-gauge-core strong {
  font-size: 0.78rem;
}
.zeb-gauge-core span {
  font-size: 0.52rem;
}
.zeb-disclaimer {
  margin-top: 0;
  line-height: 1.4;
}
.zeb-shell {
  --gb-green: #03c75a;
  --gb-green-dark: #02a148;
  --gb-green-soft: #e5f8ec;
  --gb-mint: #f0fbf4;
  --gb-text: #191f28;
  --gb-muted: #8b95a1;
  --gb-bg: #f7f8fa;
  --gb-border: #f2f4f6;
  --zeb-bg: #ffffff;
  --zeb-bg-soft: #f7f8fa;
  --zeb-bg-subtle: #f2f4f6;
  --zeb-bg-emphasis: #e5e8eb;
  --zeb-text: #191f28;
  --zeb-text-secondary: #4e5968;
  --zeb-text-muted: #8b95a1;
  --zeb-text-faint: #b0b8c1;
  --zeb-border: #f2f4f6;
  --zeb-border-strong: #e5e8eb;
  --zeb-accent: #03c75a;
  --zeb-accent-strong: #02a148;
  --zeb-accent-soft: #e5f8ec;
  --zeb-radius-sm: 8px;
  --zeb-radius: 12px;
  --zeb-radius-lg: 16px;
  --zeb-shadow-sm: 0 2px 8px rgba(0, 23, 51, 0.04);
  --zeb-shadow-md: 0 4px 16px rgba(0, 23, 51, 0.06);
  background: var(--zeb-bg-soft);
  color: var(--zeb-text);
  letter-spacing: -0.01em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.zeb-shell strong,
.zeb-shell b {
  color: var(--zeb-text);
}
.zeb-shell button,
.zeb-shell a,
.zeb-shell label {
  letter-spacing: -0.01em;
}
.zeb-sidebar,
.zeb-kpis article,
.zeb-search-modal,
.zeb-left-float article,
.zeb-result-panel article,
.zeb-product-grid > button,
.zeb-canvas-status,
.zeb-location-chip,
.zeb-bottom-tools,
.zeb-zoom-controls,
.zeb-surface-hotspots button {
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--zeb-shadow-sm);
}
.zeb-sidebar {
  background: var(--zeb-bg);
  border-right: 1px solid var(--zeb-border);
  box-shadow: none;
}
.zeb-logo {
  color: var(--zeb-text);
  letter-spacing: -0.03em;
}
.zeb-logo span {
  color: var(--zeb-accent-strong);
}
.zeb-sidebar small {
  border-top-color: var(--zeb-border);
  color: var(--zeb-text-faint);
  font-weight: 500;
}
.zeb-sidebar a {
  color: var(--zeb-text-secondary);
}
.zeb-sidebar a.active {
  border: 0;
  background: var(--zeb-accent-soft);
  color: var(--zeb-accent-strong);
}
.zeb-sidebar a.muted {
  color: var(--zeb-text-faint);
}
.zeb-project-title strong {
  color: var(--zeb-text);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.zeb-project-title span,
.zeb-user {
  color: var(--zeb-text-secondary);
}
.zeb-user span {
  border: 0;
  background: var(--zeb-bg-subtle);
  color: var(--zeb-text-secondary);
  border-radius: var(--zeb-radius-sm);
}
.zeb-filters button,
.zeb-upload-button,
.zeb-tabs div button,
.zeb-canvas-status button,
.zeb-floating-heading button,
.zeb-filter-pills button,
.zeb-surface-pills button,
.zeb-bottom-tools button,
.zeb-zoom-controls button {
  border: 0;
  background: var(--zeb-bg-subtle);
  color: var(--zeb-text-secondary);
  border-radius: var(--zeb-radius);
  box-shadow: none;
  transition: background 0.15s, transform 0.1s;
}
.zeb-filters button:hover,
.zeb-upload-button:hover,
.zeb-tabs div button:hover,
.zeb-canvas-status button:hover,
.zeb-floating-heading button:hover,
.zeb-filter-pills button:hover,
.zeb-surface-pills button:hover,
.zeb-bottom-tools button:hover,
.zeb-zoom-controls button:hover {
  background: var(--zeb-bg-emphasis);
}
.zeb-filters button:active,
.zeb-upload-button:active,
.zeb-tabs div button:active,
.zeb-canvas-status button:active,
.zeb-floating-heading button:active,
.zeb-filter-pills button:active,
.zeb-surface-pills button:active,
.zeb-bottom-tools button:active,
.zeb-zoom-controls button:active {
  transform: scale(0.98);
}
.zeb-filters .zeb-download,
.zeb-tabs div .zeb-load,
.zeb-canvas-status button {
  background: var(--zeb-accent-soft);
  color: var(--zeb-accent-strong);
}
.zeb-kpis article {
  border-radius: var(--zeb-radius-lg);
}
.zeb-kpis article::after {
  border-color: var(--zeb-accent-soft);
  border-top-color: var(--zeb-accent);
}
.zeb-kpis article:nth-child(2)::after,
.zeb-kpis article:nth-child(5)::after {
  border-color: #fff1f1;
  border-top-color: #ef4444;
}
.zeb-kpis span,
.zeb-kpis em,
.zeb-tabs > button,
.zeb-forecast-tabs span,
.zeb-generation-grid span,
.zeb-effect-grid span,
.zeb-forecast-main dt,
.zeb-disclaimer,
.zeb-scene-callout span,
.zeb-canvas-status span,
.zeb-product-grid small,
.zeb-selected-product small {
  color: var(--zeb-text-muted);
}
.zeb-kpis strong {
  color: var(--zeb-text);
}
.zeb-kpis em,
.zeb-generation-grid div,
.zeb-effect-grid div,
.zeb-placement-summary div,
.zeb-compact-search,
.zeb-search-row {
  border: 0;
  background: var(--zeb-bg-soft);
}
.zeb-kpis article.active em,
.zeb-forecast-main dd,
.zeb-effect-grid strong,
.zeb-placement-summary b,
.zeb-scene-callout strong,
.zeb-product-grid em,
.zeb-selected-product em,
.zeb-gauge-core strong {
  color: var(--zeb-accent-strong);
}
.zeb-tabs {
  border-bottom-color: var(--zeb-border);
}
.zeb-tabs > button.active {
  border-bottom-color: var(--zeb-accent);
  color: var(--zeb-text);
}
.zeb-canvas-shell {
  background:
    linear-gradient(
      116deg,
      rgba(229, 232, 235, 0.78) 0 18%,
      transparent 18% 100%),
    linear-gradient(
      244deg,
      rgba(242, 244, 246, 0.88) 0 17%,
      transparent 17% 100%),
    var(--zeb-bg-subtle);
}
.zeb-search-modal,
.zeb-left-float article,
.zeb-result-panel article {
  border-radius: var(--zeb-radius-lg);
}
.zeb-search-modal,
.zeb-left-float article,
.zeb-result-panel article,
.zeb-canvas-status,
.zeb-location-chip,
.zeb-bottom-tools,
.zeb-zoom-controls {
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
}
.zeb-search-row input {
  color: var(--zeb-text);
}
.zeb-search-row input::placeholder {
  color: var(--zeb-text-muted);
}
.zeb-filter-pills button.active,
.zeb-surface-pills button.active {
  background: var(--zeb-text);
  color: #ffffff;
}
.zeb-product-grid > button {
  border-radius: var(--zeb-radius);
}
.zeb-product-grid > button.selected,
.zeb-selected-product {
  border: 1px solid rgba(3, 199, 90, 0.55) !important;
  background: var(--gb-mint) !important;
  box-shadow: var(--zeb-shadow-sm);
}
.zeb-product-grid b,
.zeb-selected-product b {
  border-color: var(--zeb-border-strong);
  color: transparent;
}
.zeb-product-grid .selected b,
.zeb-selected-product b {
  border-color: var(--zeb-accent);
  color: var(--zeb-accent);
}
.zeb-placement-grid {
  border-color: var(--zeb-border-strong);
}
.zeb-progress {
  background: var(--zeb-bg-subtle);
}
.zeb-progress span,
.zeb-gauge {
  background: var(--zeb-accent);
}
.zeb-gauge {
  background: conic-gradient(var(--zeb-accent) var(--zeb-gauge-value), var(--zeb-bg-subtle) 0);
}
.zeb-gauge-core {
  background: var(--zeb-bg);
}
.zeb-location-chip {
  color: var(--zeb-text-secondary);
  border-radius: var(--zeb-radius);
}
.zeb-shell,
.zeb-shell button,
.zeb-shell a,
.zeb-shell label,
.zeb-shell strong,
.zeb-shell b {
  letter-spacing: 0;
}
.zeb-workflow {
  position: absolute;
  left: 50%;
  top: 14px;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, minmax(86px, 1fr));
  gap: 4px;
  width: min(460px, calc(100% - 390px));
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: var(--zeb-radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--zeb-shadow-sm);
  transform: translateX(-50%);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
}
.zeb-workflow li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  column-gap: 7px;
  align-items: center;
  min-width: 0;
  padding: 7px 8px;
  border-radius: var(--zeb-radius);
  color: var(--zeb-text-muted);
}
.zeb-workflow li.active {
  background: var(--zeb-accent-soft);
  color: var(--zeb-accent-strong);
}
.zeb-workflow b {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--zeb-bg-subtle);
  color: var(--zeb-text-muted);
  font-size: 11px;
  font-weight: 700;
}
.zeb-workflow li.active b {
  background: var(--zeb-accent);
  color: #ffffff;
}
.zeb-workflow span {
  overflow: hidden;
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-workflow em {
  overflow: hidden;
  color: var(--zeb-text-muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-demo-strip {
  position: absolute;
  left: 50%;
  top: 76px;
  z-index: 8;
  display: grid;
  grid-template-columns: auto auto auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  width: min(400px, calc(100% - 530px));
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(218, 225, 232, 0.9);
  border-radius: var(--zeb-radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--zeb-shadow-sm);
  color: var(--zeb-text-secondary);
  transform: translateX(-50%);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}
.zeb-demo-strip strong,
.zeb-demo-strip span,
.zeb-demo-strip em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-demo-strip strong {
  color: var(--zeb-accent-strong);
  font-size: 11px;
  font-weight: 800;
}
.zeb-demo-strip span {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--zeb-bg-soft);
  color: var(--zeb-text);
  font-size: 10px;
  font-weight: 700;
}
.zeb-demo-strip em {
  color: var(--zeb-text-muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  text-align: right;
}
.zeb-surface-review {
  display: grid;
  gap: 6px;
  padding-top: 2px;
}
.zeb-surface-review > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.zeb-surface-review > div strong {
  font-size: 12px;
  font-weight: 700;
}
.zeb-surface-review > div span {
  color: var(--zeb-text-muted);
  font-size: 11px;
  font-weight: 500;
}
.zeb-surface-review button {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-width: 0;
  width: 100%;
  padding: 7px 8px;
  border: 0;
  border-radius: var(--zeb-radius);
  background: var(--zeb-bg-soft);
  color: var(--zeb-text-secondary);
  text-align: left;
  box-shadow: none;
}
.zeb-surface-review button.included {
  background: var(--zeb-accent-soft);
}
.zeb-surface-review button.current {
  outline: 1px solid rgba(3, 199, 90, 0.55);
}
.zeb-surface-review i {
  width: 8px;
  height: 32px;
  border-radius: 999px;
  background: var(--zeb-border-strong);
}
.zeb-surface-review button.included i {
  background: var(--zeb-accent);
}
.zeb-surface-review button > span {
  display: grid;
  min-width: 0;
  gap: 2px;
}
.zeb-surface-review button strong {
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-surface-review button em {
  overflow: hidden;
  color: var(--zeb-text-muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-surface-review button b {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: var(--zeb-accent-strong);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.zeb-surface-review button b small {
  color: var(--zeb-text-muted);
  font-size: 9px;
  font-weight: 700;
}
.zeb-review-total {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border-radius: var(--zeb-radius);
  background:
    linear-gradient(
      135deg,
      var(--zeb-accent-soft),
      #ffffff);
}
.zeb-review-total span,
.zeb-review-total em {
  color: var(--zeb-text-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
}
.zeb-review-total strong {
  color: var(--zeb-accent-strong);
  font-size: 18px;
  font-weight: 700;
}
.zeb-report-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--zeb-radius);
  background: var(--zeb-bg-emphasis);
  color: var(--zeb-text-secondary);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.zeb-model-card {
  display: grid;
  gap: 8px;
}
.zeb-model-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.zeb-model-card strong {
  font-size: 12px;
  font-weight: 700;
}
.zeb-model-card > div span {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--zeb-accent-soft);
  color: var(--zeb-accent-strong);
  font-size: 10px;
  font-weight: 700;
}
.zeb-model-card p {
  overflow: hidden;
  margin: 0;
  color: var(--zeb-text-secondary);
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-model-card dl {
  display: grid;
  gap: 5px;
  margin: 0;
}
.zeb-model-card dl div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 8px;
  min-width: 0;
}
.zeb-model-card dt,
.zeb-model-card dd {
  overflow: hidden;
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-model-card dt {
  color: var(--zeb-text-muted);
}
.zeb-model-card dd {
  color: var(--zeb-text-secondary);
}
.zeb-left-float {
  max-height: calc(100% - 30px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 2px;
}
.zeb-left-float::-webkit-scrollbar {
  width: 5px;
}
.zeb-left-float::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--zeb-border-strong);
}
.zeb-result-panel {
  max-height: calc(100% - 30px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 2px;
}
.zeb-result-panel::-webkit-scrollbar {
  width: 5px;
}
.zeb-result-panel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--zeb-border-strong);
}
.zeb-scenario-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
.zeb-scenario-strip button {
  display: grid;
  min-width: 0;
  gap: 3px;
  padding: 9px 8px;
  border: 0;
  border-radius: var(--zeb-radius);
  background: var(--zeb-bg-soft);
  color: var(--zeb-text-secondary);
  text-align: left;
}
.zeb-scenario-strip button.active {
  background: var(--zeb-accent-soft);
  outline: 1px solid rgba(3, 199, 90, 0.48);
}
.zeb-scenario-strip b {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--zeb-bg-emphasis);
  color: var(--zeb-text-secondary);
  font-size: 11px;
  font-weight: 700;
}
.zeb-scenario-strip button.active b {
  background: var(--zeb-accent);
  color: #ffffff;
}
.zeb-scenario-strip span,
.zeb-scenario-strip em {
  overflow: hidden;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-scenario-strip em {
  color: var(--zeb-text-muted);
  font-weight: 500;
}
.zeb-evidence-card {
  display: grid;
  gap: 7px;
  padding: 10px 12px;
  border-radius: var(--zeb-radius);
  background: var(--zeb-bg-soft);
}
.zeb-evidence-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.zeb-evidence-card strong {
  color: var(--zeb-text);
  font-size: 12px;
  font-weight: 700;
}
.zeb-evidence-card > div span {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--zeb-accent-soft);
  color: var(--zeb-accent-strong);
  font-size: 10px;
  font-weight: 700;
}
.zeb-evidence-card p,
.zeb-evidence-card em {
  margin: 0;
  color: var(--zeb-text-muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
}
.zeb-evidence-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.zeb-evidence-card li {
  max-width: 100%;
  overflow: hidden;
  padding: 4px 7px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--zeb-text-secondary);
  font-size: 10px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-evidence-card em {
  color: #b45309;
}
.zeb-report-actions {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}
.zeb-report-actions button {
  background: var(--zeb-accent);
  color: #ffffff;
}
.zeb-report-actions button.secondary {
  background: var(--zeb-bg-emphasis);
  color: var(--zeb-text-secondary);
}
.zeb-report-actions button:disabled,
.zeb-filters .zeb-download:disabled {
  cursor: progress;
  opacity: 0.68;
}
.zeb-report-actions span {
  overflow: hidden;
  color: var(--zeb-text-muted);
  font-size: 11px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-sidebar {
  padding-top: 16px;
}
.zeb-sidebar nav {
  gap: 6px;
}
.zeb-sidebar-plan {
  position: relative;
}
.zeb-sidebar-plan > button {
  display: flex;
  width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #343b42;
  font-size: 0.82rem;
  font-weight: 650;
  text-align: left;
}
.zeb-sidebar-plan > button.active {
  border-color: var(--gb-green);
  background: var(--gb-green-soft);
  color: #008c72;
}
.zeb-sidebar-plan > button b {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}
.zeb-sidebar-submenu {
  display: grid;
  gap: 4px;
  margin: 6px 0 4px 14px;
  padding-left: 10px;
  border-left: 2px solid #d9fbe6;
}
.zeb-sidebar-submenu button {
  min-height: 28px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--zeb-text-muted);
  font-size: 0.78rem;
  font-weight: 520;
  text-align: left;
}
.zeb-sidebar-submenu button:hover,
.zeb-sidebar-submenu button.active {
  background: #ecfdf3;
  color: var(--zeb-green-dark);
}
.zeb-sidebar small:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.zeb-collapse {
  top: 16px;
}
.zeb-main {
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 0;
  padding: 0;
}
.zeb-topbar {
  display: flex;
  flex-wrap: wrap;
  min-height: 46px;
  gap: 6px 16px;
  align-content: center;
  align-items: center;
  margin-inline: 24px;
}
.zeb-project-title {
  flex: 0 0 auto;
  gap: 0;
}
.zeb-project-title span {
  color: var(--zeb-text);
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
}
.zeb-filters {
  flex: 1 1 620px;
  gap: 6px;
  justify-content: flex-start;
}
.zeb-filters button,
.zeb-upload-button {
  min-height: 34px;
  padding-inline: 14px;
}
.zeb-kpis {
  gap: 8px;
  margin: 0 24px 8px;
}
.zeb-kpis article {
  min-height: 112px;
  padding: 17px 64px 15px 16px;
}
.zeb-kpis article::after {
  top: 25px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-width: 6px;
}
.zeb-kpis strong {
  margin-top: 7px;
  font-size: 1.5rem;
  line-height: 1.08;
}
.zeb-kpis span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-kpis em {
  left: 16px;
  right: 16px;
  bottom: 12px;
  padding: 6px 8px;
}
.zeb-canvas-shell {
  width: 100%;
  min-height: calc(100vh - 224px);
}
.zeb-db-status {
  display: grid;
  grid-template-columns: repeat(3, auto minmax(0, 1fr));
  gap: 5px 7px;
  align-items: center;
  padding: 7px 8px;
  border-radius: var(--zeb-radius);
  background: var(--zeb-bg-soft);
}
.zeb-db-status span,
.zeb-db-status strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-db-status span {
  color: var(--zeb-text-muted);
  font-weight: 600;
}
.zeb-db-status strong {
  color: var(--zeb-text-secondary);
  font-weight: 700;
}
.zeb-contract-card {
  display: grid;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--zeb-radius);
  background: #ffffff;
  outline: 1px solid var(--zeb-border);
}
.zeb-contract-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.zeb-contract-card strong {
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-contract-card > div span {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--zeb-bg-subtle);
  color: var(--zeb-text-muted);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.zeb-contract-card dl {
  display: grid;
  gap: 5px;
  margin: 0;
}
.zeb-contract-card dl div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 8px;
  min-width: 0;
}
.zeb-contract-card dt,
.zeb-contract-card dd {
  overflow: hidden;
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-contract-card dt {
  color: var(--zeb-text-muted);
}
.zeb-contract-card dd {
  color: var(--zeb-text-secondary);
}
.zeb-replace-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.zeb-replace-fields span {
  max-width: 100%;
  overflow: hidden;
  padding: 4px 6px;
  border-radius: 999px;
  background: var(--zeb-accent-soft);
  color: var(--zeb-accent-strong);
  font-size: 9px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-panel-report {
  display: grid;
  gap: 7px;
}
.zeb-panel-report > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.zeb-panel-report > div strong {
  font-size: 12px;
  font-weight: 700;
}
.zeb-panel-report > div span {
  color: var(--zeb-text-muted);
  font-size: 11px;
  font-weight: 500;
}
.zeb-panel-report table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  overflow: hidden;
  border-radius: var(--zeb-radius);
  background: var(--zeb-bg-soft);
}
.zeb-panel-report th,
.zeb-panel-report td {
  overflow: hidden;
  padding: 7px 6px;
  color: var(--zeb-text-secondary);
  font-size: 9.5px;
  font-weight: 600;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-panel-report th {
  color: var(--zeb-text-muted);
  font-weight: 700;
}
.zeb-panel-report td:last-child {
  color: var(--zeb-accent-strong);
  font-weight: 700;
}
.zeb-panel-report td span {
  display: inline-flex;
  min-width: 38px;
  justify-content: center;
  padding: 3px 6px;
  border-radius: 999px;
  background: var(--zeb-accent-soft);
  color: var(--zeb-accent-strong);
  font-size: 10px;
  font-weight: 700;
}
.zeb-panel-report td span.pilot {
  background: #fff7ed;
  color: #b45309;
}
.zeb-panel-report tr + tr td {
  border-top: 1px solid var(--zeb-bg-emphasis);
}
.zeb-warning-list {
  display: grid;
  gap: 4px;
}
.zeb-warning-list span {
  overflow: hidden;
  padding: 6px 8px;
  border-radius: var(--zeb-radius-sm);
  background: #fff7ed;
  color: #b45309;
  font-size: 10px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-surface-report-cards {
  display: grid;
  gap: 6px;
}
.zeb-surface-report-cards article {
  display: grid;
  gap: 7px;
  padding: 9px 10px;
  border-radius: var(--zeb-radius);
  background: var(--zeb-bg-soft);
  outline: 1px solid transparent;
}
.zeb-surface-report-cards article.active {
  background: var(--zeb-accent-soft);
  outline-color: rgba(3, 199, 90, 0.42);
}
.zeb-surface-report-cards article > div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.zeb-surface-report-cards strong {
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-surface-report-cards span {
  padding: 3px 7px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--zeb-text-secondary);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.zeb-surface-report-cards article > span {
  overflow: hidden;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #b45309;
  font-size: 9.5px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-surface-report-cards dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  margin: 0;
}
.zeb-surface-report-cards dl div {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.zeb-surface-report-cards dt,
.zeb-surface-report-cards dd {
  overflow: hidden;
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-surface-report-cards dt {
  color: var(--zeb-text-muted);
}
.zeb-surface-report-cards dd {
  color: var(--zeb-accent-strong);
}
.zeb-surface-report-cards em {
  overflow: hidden;
  color: var(--zeb-text-muted);
  font-size: 9.5px;
  font-style: normal;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zeb-panel-report p {
  margin: 0;
  color: var(--zeb-text-muted);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;
}
@media (max-width: 1360px) and (min-width: 1181px) {
  .zeb-left-float {
    left: 20px;
    width: 330px;
  }
  .zeb-result-panel {
    right: 20px;
    width: 306px;
  }
  .zeb-workflow {
    width: min(390px, calc(100% - 720px));
  }
  .zeb-demo-strip {
    width: min(320px, calc(100% - 800px));
  }
  .zeb-viewer-badge {
    left: 20px;
    bottom: 70px;
  }
}
@media (max-width: 1180px) {
  .zeb-shell {
    grid-template-columns: 74px minmax(0, 1fr);
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: visible;
  }
  .zeb-main {
    grid-template-rows: auto auto auto auto;
    overflow: visible;
  }
  .zeb-sidebar {
    padding-inline: 8px;
  }
  .zeb-logo {
    margin-inline: 4px;
    font-size: 0;
  }
  .zeb-logo span {
    font-size: 2rem;
  }
  .zeb-sidebar a,
  .zeb-sidebar small,
  .zeb-collapse {
    font-size: 0;
  }
  .zeb-sidebar a {
    min-height: 38px;
    padding: 0;
  }
  .zeb-sidebar a::before {
    content: "";
    width: 8px;
    height: 8px;
    margin: auto;
    border-radius: 999px;
    background: currentColor;
  }
  .zeb-topbar {
    grid-template-columns: 1fr;
  }
  .zeb-filters {
    flex-wrap: wrap;
  }
  .zeb-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .zeb-tabs {
    overflow-x: auto;
  }
  .zeb-workflow {
    left: 16px;
    right: 16px;
    width: auto;
    transform: none;
  }
  .zeb-demo-strip {
    left: 16px;
    right: 16px;
    width: auto;
    transform: none;
  }
  .zeb-left-float {
    width: min(430px, calc(100% - 32px));
  }
  .zeb-result-panel {
    position: relative;
    inset: auto;
    width: min(430px, calc(100% - 32px));
    margin: 440px 16px 96px auto;
  }
  .zeb-viewer-badge {
    left: 16px;
    bottom: 72px;
  }
  .zeb-surface-hotspots {
    right: 16px;
  }
  .zeb-panel-report {
    gap: 8px;
  }
}
@media (max-width: 760px) {
  .zeb-shell {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: visible;
  }
  .zeb-sidebar {
    display: none;
  }
  .zeb-main {
    display: block;
    padding: 0 14px 20px;
  }
  .zeb-project-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .zeb-kpis {
    grid-template-columns: 1fr;
  }
  .zeb-canvas-shell {
    min-height: 1180px;
  }
  .zeb-workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    top: 10px;
    left: 12px;
    right: 12px;
  }
  .zeb-workflow li {
    padding: 6px;
  }
  .zeb-demo-strip {
    top: 94px;
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 0;
  }
  .zeb-demo-strip em {
    grid-column: 1 / -1;
    text-align: left;
  }
  .zeb-search-modal,
  .zeb-left-float {
    left: 12px;
    right: 12px;
    width: auto;
  }
  .zeb-search-modal {
    top: 94px;
  }
  .zeb-left-float {
    top: 196px;
    max-height: 430px;
  }
  .zeb-product-grid {
    grid-template-columns: 1fr;
  }
  .zeb-result-panel {
    width: auto;
    margin: 670px 12px 92px;
    max-height: none;
    overflow: visible;
  }
  .zeb-three-stage {
    top: 0;
    height: 520px;
  }
  .zeb-viewer-badge {
    left: 12px;
    right: auto;
    bottom: auto;
    top: 486px;
    max-width: calc(100% - 24px);
  }
  .zeb-surface-hotspots {
    right: 12px;
    top: 126px;
    gap: 5px;
  }
  .zeb-surface-hotspots button {
    min-height: 26px;
    padding: 0 8px;
    font-size: 10px;
  }
  .zeb-generation-grid,
  .zeb-effect-grid,
  .zeb-placement-summary dl,
  .zeb-surface-report-cards dl {
    grid-template-columns: 1fr;
  }
  .zeb-scenario-strip {
    grid-template-columns: 1fr;
  }
  .zeb-panel-report table {
    display: block;
    overflow-x: auto;
  }
  .zeb-panel-report th,
  .zeb-panel-report td {
    min-width: 58px;
  }
  .zeb-building {
    left: 52%;
    top: 40%;
    transform: translate(-50%, -44%) rotateX(58deg) rotateZ(-38deg) scale(0.74);
  }
}
