:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.theme-light {
  color-scheme: light;
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-raised: #fbfcfe;
  --surface-muted: #eef3f5;
  --ink: #151a1f;
  --muted: #64727f;
  --line: #d7dee5;
  --accent: #08796d;
  --accent-soft: #e4f3ef;
  --danger: #c34618;
  --map-bg: #0a0a0f;
  --tile-stroke: rgba(255, 255, 255, 0.08);
  --tile-stroke-active: rgba(255, 255, 255, 0.92);
  --shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.theme-dark {
  color-scheme: dark;
  --bg: #0d0d0b;
  --surface: #151512;
  --surface-raised: #1c1b17;
  --surface-muted: #24231e;
  --ink: #f5f1e8;
  --muted: #aba99e;
  --line: #343228;
  --accent: #6dd6a6;
  --accent-soft: #17352a;
  --danger: #ff794f;
  --map-bg: #080807;
  --tile-stroke: rgba(255, 255, 255, 0.08);
  --tile-stroke-active: rgba(255, 255, 255, 0.94);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.theme-jinith {
  color-scheme: dark;
  --bg: #060809;
  --surface: rgba(14, 19, 22, 0.9);
  --surface-raised: rgba(22, 29, 33, 0.9);
  --surface-muted: rgba(8, 12, 14, 0.78);
  --ink: #f4f7f8;
  --muted: #a4b1b8;
  --line: rgba(180, 218, 225, 0.18);
  --accent: #67ecff;
  --accent-soft: rgba(103, 236, 255, 0.16);
  --danger: #ff795c;
  --map-bg: #05080a;
  --tile-stroke: rgba(255, 255, 255, 0.08);
  --tile-stroke-active: rgba(103, 236, 255, 0.94);
  --amber: #f0b95a;
  --chrome: #dbe7ea;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
  --signal-shadow: 0 0 34px rgba(103, 236, 255, 0.24);
}

body.proto {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.proto.theme-jinith {
  background:
    linear-gradient(180deg, rgba(12, 18, 20, 0.96), rgba(6, 8, 9, 1) 34%),
    repeating-linear-gradient(90deg, rgba(103, 236, 255, 0.05) 0 1px, transparent 1px 104px),
    repeating-linear-gradient(0deg, rgba(103, 236, 255, 0.035) 0 1px, transparent 1px 104px);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

button,
input,
select {
  font: inherit;
}

.proto-shell {
  width: min(1500px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 36px;
}

.theme-jinith .proto-shell {
  width: 100%;
  padding: 0 0 42px;
}

.theme-jinith .viz-intro,
.theme-jinith .command-panel,
.theme-jinith .stat-ribbon,
.theme-jinith .prototype-workspace,
.theme-jinith .occupation-list {
  width: min(1500px, calc(100vw - 32px));
  margin-left: auto;
  margin-right: auto;
}

.visualizer-bar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(120px, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 10, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(103, 236, 255, 0.45);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(103, 236, 255, 0.22), rgba(240, 185, 90, 0.12)),
    #081013;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: var(--signal-shadow);
}

.brand-mark strong {
  color: var(--chrome);
  font-size: 0.98rem;
}

.artifact-tabs {
  display: inline-flex;
  gap: 4px;
  width: max-content;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(14, 19, 22, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.artifact-tabs a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 6px;
  color: var(--muted);
  padding: 0 13px;
  text-decoration: none;
  white-space: nowrap;
}

.artifact-tabs a:hover {
  color: var(--ink);
}

.artifact-tabs a.is-active {
  background: linear-gradient(180deg, rgba(103, 236, 255, 0.2), rgba(103, 236, 255, 0.08));
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(103, 236, 255, 0.48), 0 0 18px rgba(103, 236, 255, 0.16);
}

.profile-link {
  justify-self: end;
  width: max-content;
  border-bottom: 1px solid var(--amber);
  color: var(--chrome);
  font-weight: 760;
  text-decoration: none;
}

.profile-link:hover {
  color: var(--accent);
}

.viz-intro {
  position: relative;
  display: grid;
  min-height: 286px;
  align-items: center;
  overflow: hidden;
  margin-top: 18px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(103, 236, 255, 0.13), rgba(240, 185, 90, 0.06)),
    rgba(7, 11, 13, 0.94);
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 56px);
}

.viz-intro > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.62;
}

.viz-intro::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 5, 7, 0.94), rgba(3, 5, 7, 0.78) 48%, rgba(3, 5, 7, 0.3) 100%),
    linear-gradient(0deg, rgba(3, 5, 7, 0.38), rgba(3, 5, 7, 0.04));
}

.viz-intro::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(103, 236, 255, 0.05) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, rgba(103, 236, 255, 0.04) 0 1px, transparent 1px 88px);
  mask-image: linear-gradient(90deg, #000, transparent 76%);
  pointer-events: none;
}

.viz-intro-copy,
.viz-intro-panel {
  position: relative;
  z-index: 1;
}

.viz-intro-copy {
  width: min(820px, 100%);
}

.viz-intro h1 {
  width: min(920px, 100%);
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.65rem);
  font-weight: 820;
  line-height: 0.98;
}

.viz-intro .proto-subtitle {
  width: min(690px, 100%);
  color: rgba(244, 247, 248, 0.78);
  font-size: 1.05rem;
  line-height: 1.68;
}

.viz-intro-panel {
  position: absolute;
  right: clamp(20px, 4vw, 44px);
  bottom: 24px;
  width: min(335px, calc(100vw - 40px));
  border: 1px solid rgba(103, 236, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(103, 236, 255, 0.12), rgba(240, 185, 90, 0.07)),
    rgba(4, 9, 11, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow), var(--signal-shadow);
  padding: 18px;
}

.viz-intro-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.viz-intro-panel strong {
  display: block;
  color: var(--ink);
  font-size: 1.45rem;
}

.viz-intro-panel small {
  color: rgba(244, 247, 248, 0.72);
}

.proto-topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.proto-eyebrow,
.inspector-kicker,
.command-panel span,
.stat-ribbon span,
.metric-pair span,
.list-item span {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.theme-jinith .proto-eyebrow,
.theme-jinith .inspector-kicker,
.theme-jinith .command-panel span,
.theme-jinith .stat-ribbon span,
.theme-jinith .metric-pair span,
.theme-jinith .list-item span {
  color: var(--accent);
  font-weight: 900;
  text-shadow: 0 0 22px rgba(103, 236, 255, 0.22);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 6px;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 4px;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.proto-subtitle,
.surface-head p,
.stat-ribbon small,
.detail-subtitle,
.list-item small {
  margin-bottom: 0;
  color: var(--muted);
}

.view-switch {
  display: inline-flex;
  align-items: center;
  align-self: start;
  gap: 4px;
  justify-self: end;
  width: max-content;
  max-width: 100%;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.view-switch a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

.view-switch a.is-active {
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 750;
}

.command-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) minmax(180px, 0.9fr) minmax(220px, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.theme-jinith .command-panel,
.theme-jinith .stat-ribbon article,
.theme-jinith .map-surface,
.theme-jinith .inspector,
.theme-jinith .occupation-list {
  border-color: var(--line);
  background:
    linear-gradient(135deg, rgba(103, 236, 255, 0.07), rgba(240, 185, 90, 0.025)),
    rgba(8, 12, 14, 0.78);
  box-shadow: var(--shadow);
}

.command-search,
.command-select {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.command-search input,
.command-select select {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-raised);
  color: var(--ink);
  outline: none;
  padding: 0 12px;
}

.theme-jinith .command-search input,
.theme-jinith .command-select select {
  border-color: rgba(180, 218, 225, 0.16);
  background: rgba(5, 8, 10, 0.54);
  color: var(--ink);
}

.theme-jinith .command-search input::placeholder {
  color: rgba(164, 177, 184, 0.72);
}

.command-search input:focus,
.command-select select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.theme-jinith .command-search input:focus,
.theme-jinith .command-select select:focus {
  box-shadow: 0 0 0 3px rgba(103, 236, 255, 0.15), 0 0 24px rgba(103, 236, 255, 0.12);
}

.segmented {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-muted);
}

.theme-jinith .segmented {
  border-color: rgba(180, 218, 225, 0.16);
  background: rgba(5, 8, 10, 0.54);
}

.segmented button {
  height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0 12px;
}

.segmented button.is-active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.theme-jinith .segmented button.is-active {
  background: linear-gradient(180deg, rgba(103, 236, 255, 0.2), rgba(103, 236, 255, 0.08));
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(103, 236, 255, 0.42), 0 0 18px rgba(103, 236, 255, 0.14);
}

.stat-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.stat-ribbon article,
.map-surface,
.inspector,
.occupation-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stat-ribbon article {
  min-height: 86px;
  padding: 14px;
}

.stat-ribbon strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.1;
}

.theme-jinith .stat-ribbon strong {
  color: var(--ink);
  font-size: 1.45rem;
  text-shadow: 0 0 20px rgba(103, 236, 255, 0.11);
}

.prototype-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 376px;
  gap: 12px;
  align-items: start;
}

.map-surface {
  min-height: 670px;
  overflow: hidden;
}

.surface-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--line);
}

.theme-jinith .surface-head {
  background: rgba(5, 8, 10, 0.24);
}

.theme-jinith .surface-head h2 {
  color: var(--ink);
}

.prototype-legend {
  width: min(240px, 32vw);
}

.legend-track {
  height: 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}

.theme-jinith .legend-track {
  border-color: rgba(103, 236, 255, 0.22);
  box-shadow: 0 0 18px rgba(103, 236, 255, 0.1);
}

.legend-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.74rem;
}

#prototype-treemap {
  display: block;
  width: 100%;
  height: 610px;
  background: var(--map-bg);
}

.theme-jinith #prototype-treemap {
  background:
    repeating-linear-gradient(90deg, rgba(103, 236, 255, 0.035) 0 1px, transparent 1px 82px),
    repeating-linear-gradient(0deg, rgba(103, 236, 255, 0.028) 0 1px, transparent 1px 82px),
    var(--map-bg);
}

.prototype-tile {
  cursor: pointer;
  stroke: var(--tile-stroke);
  stroke-width: 1;
  transition: opacity 140ms ease, stroke-width 140ms ease;
}

.prototype-tile:hover,
.prototype-tile.is-selected {
  opacity: 1;
  stroke: var(--tile-stroke-active);
  stroke-width: 2;
}

.prototype-label {
  pointer-events: none;
  fill: #fff;
  font-size: 12px;
  font-weight: 750;
  paint-order: stroke;
  stroke: rgba(0, 0, 0, 0.38);
  stroke-linejoin: round;
  stroke-width: 3px;
}

.prototype-label-sub {
  font-size: 10px;
  font-weight: 650;
  opacity: 0.92;
}

.prototype-label-code {
  font-size: 11px;
  font-weight: 800;
}

.inspector {
  position: sticky;
  top: 14px;
  min-height: 670px;
  max-height: calc(100vh - 28px);
  overflow-y: auto;
  padding: 16px;
}

.detail-title {
  margin-top: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.detail-code {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.detail-title h2 {
  font-size: 1.28rem;
  line-height: 1.2;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.metric-pair {
  min-height: 76px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-raised);
}

.theme-jinith .metric-pair,
.theme-jinith .list-item {
  border-color: rgba(180, 218, 225, 0.15);
  background:
    linear-gradient(90deg, rgba(103, 236, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 14, 0.74);
}

.metric-pair strong {
  display: block;
  margin-top: 8px;
  font-size: 1.03rem;
  overflow-wrap: anywhere;
}

.rationale-box {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.rationale-box p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.occupation-list {
  margin-top: 12px;
  overflow: hidden;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
}

.list-item {
  min-height: 116px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-raised);
  cursor: pointer;
  padding: 12px;
  text-align: left;
}

.list-item:hover,
.list-item.is-selected {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.theme-jinith .list-item:hover,
.theme-jinith .list-item.is-selected {
  border-color: rgba(103, 236, 255, 0.62);
  box-shadow: inset 0 0 0 1px rgba(103, 236, 255, 0.48), 0 0 20px rgba(103, 236, 255, 0.12);
}

.list-item strong {
  display: block;
  margin: 6px 0;
  color: var(--ink);
  line-height: 1.25;
}

.legal-disclaimer {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  margin-top: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.theme-jinith .legal-disclaimer {
  width: min(100vw - 32px, 1500px);
  margin-inline: auto;
  border-color: rgba(103, 236, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(103, 236, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(11, 22, 30, 0.92), rgba(6, 11, 17, 0.94));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.legal-disclaimer h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.2;
}

.disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}

.disclaimer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.credit-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.credit-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.theme-jinith .credit-links a {
  border-color: rgba(103, 236, 255, 0.22);
  background: rgba(103, 236, 255, 0.05);
  color: #dffbff;
}

.credit-links a:hover {
  border-color: var(--accent);
}

.prototype-tooltip {
  position: fixed;
  z-index: 40;
  width: min(330px, calc(100vw - 24px));
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--line) 82%, var(--accent) 18%);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--shadow);
  color: var(--ink);
  pointer-events: none;
}

.prototype-tooltip strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.96rem;
  line-height: 1.25;
}

.tooltip-subtitle,
.prototype-tooltip p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.tooltip-subtitle {
  margin-bottom: 10px;
}

.tooltip-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.tooltip-grid span {
  color: var(--muted);
  font-size: 0.76rem;
}

.tooltip-grid b {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: right;
}

.prototype-tooltip p {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1120px) {
  .visualizer-bar {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .artifact-tabs {
    max-width: 100%;
    overflow-x: auto;
  }

  .profile-link {
    justify-self: start;
  }

  .viz-intro {
    align-items: end;
    min-height: 420px;
  }

  .viz-intro-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(335px, 100%);
    margin-top: 22px;
  }

  .proto-topbar,
  .prototype-workspace {
    display: grid;
    grid-template-columns: 1fr;
  }

  .view-switch {
    justify-self: start;
  }

  .command-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inspector {
    position: static;
    min-height: auto;
    max-height: none;
  }

  .list-grid,
  .stat-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-disclaimer {
    grid-template-columns: 1fr;
  }

  .credit-links {
    grid-column: 1;
  }
}

@media (max-width: 680px) {
  .proto-shell {
    width: min(100vw - 18px, 1500px);
    padding-top: 12px;
  }

  .theme-jinith .proto-shell {
    width: 100%;
    padding-top: 0;
  }

  .theme-jinith .viz-intro,
  .theme-jinith .command-panel,
  .theme-jinith .stat-ribbon,
  .theme-jinith .prototype-workspace,
  .theme-jinith .occupation-list,
  .theme-jinith .legal-disclaimer {
    width: min(100vw - 18px, 1500px);
  }

  .visualizer-bar {
    padding: 12px 9px;
  }

  .artifact-tabs {
    width: 100%;
  }

  .artifact-tabs a {
    padding: 0 10px;
  }

  .viz-intro {
    min-height: 0;
    padding: 28px 20px;
  }

  .viz-intro h1 {
    font-size: 2.3rem;
  }

  .command-panel,
  .list-grid,
  .stat-ribbon,
  .disclaimer-grid {
    grid-template-columns: 1fr;
  }

  .surface-head {
    display: grid;
  }

  .prototype-legend {
    width: 100%;
  }

  #prototype-treemap {
    height: 520px;
  }
}
