:root {
  --cds-background: #f4f4f4;
  --cds-layer-01: #ffffff;
  --cds-layer-02: #f4f4f4;
  --cds-layer-03: #e8e8e8;
  --cds-text-primary: #161616;
  --cds-text-secondary: #525252;
  --cds-text-helper: #6f6f6f;
  --cds-border-subtle: #c6c6c6;
  --cds-border-strong: #8d8d8d;
  --cds-interactive: #0f62fe;
  --cds-interactive-hover: #0353e9;
  --cds-support-success: #198038;
  --cds-support-warning: #f1c21b;
  --cds-support-error: #da1e28;
  --cds-header: #161616;
  --cds-header-text: #f4f4f4;
  --header-height: 48px;
  --nav-width: 256px;
  --rail-width: 224px;
}

* {
  border-radius: 0 !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  background: var(--cds-background);
  color: var(--cds-text-primary);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  transition: background-color 180ms ease, color 180ms ease;
}

button,
input {
  font: inherit;
}

.carbon-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: var(--nav-width) 1fr auto;
  height: var(--header-height);
  background: var(--cds-header);
  color: var(--cds-header-text);
  border-bottom: 1px solid #393939;
}

.carbon-brand {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
  padding: 0 16px;
  color: #f4f4f4;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-right: 1px solid #393939;
}

.carbon-brand strong {
  color: #f4f4f4;
  font-weight: 600;
}

.carbon-brand span {
  color: #c6c6c6;
  margin-left: 5px;
  font-weight: 400;
}

.header-context {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0 16px;
  color: #c6c6c6;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-actions {
  display: flex;
  height: 100%;
}

.header-action {
  min-width: 76px;
  height: 100%;
  padding: 0 16px;
  border: 0;
  border-left: 1px solid #393939;
  background: transparent;
  color: #f4f4f4;
  cursor: pointer;
  font-size: 12px;
  text-align: center;
}

.header-action:hover,
.header-action:focus-visible,
.header-action[aria-pressed="true"] {
  background: #353535;
  outline: 2px solid #ffffff;
  outline-offset: -2px;
}

.menu-action {
  display: none;
}

.reading-progress {
  position: fixed;
  z-index: 1001;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--cds-interactive);
  transition: width 80ms linear;
}

.side-nav {
  position: fixed;
  z-index: 900;
  inset: calc(var(--header-height) + 3px) auto 0 0;
  width: var(--nav-width);
  overflow-y: auto;
  background: var(--cds-layer-01);
  border-right: 1px solid var(--cds-border-subtle);
}

.side-nav-kicker {
  padding: 24px 16px 12px;
  color: var(--cds-text-helper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.side-nav-title {
  padding: 0 16px 24px;
  border-bottom: 1px solid var(--cds-border-subtle);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.toc {
  list-style: none;
  margin: 0;
  padding: 8px 0 32px;
}

.toc li {
  margin: 0;
}

.toc a {
  position: relative;
  display: block;
  padding: 9px 18px 9px 32px;
  color: var(--cds-text-secondary);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.3;
}

.toc a:hover {
  background: var(--cds-layer-02);
  color: var(--cds-text-primary);
}

.toc a.active {
  background: #e5edff;
  color: #001d6c;
  font-weight: 600;
}

.toc a.active::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--cds-interactive);
}

.toc .toc-part a {
  margin-top: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--cds-border-subtle);
  color: var(--cds-text-primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.toc .toc-part:first-child a {
  border-top: 0;
}

.essay-shell {
  margin-left: var(--nav-width);
  margin-right: var(--rail-width);
  min-height: 100vh;
  background: var(--cds-layer-01);
}

.right-rail {
  position: fixed;
  z-index: 800;
  inset: calc(var(--header-height) + 3px) 0 0 auto;
  width: var(--rail-width);
  overflow-y: auto;
  background: var(--cds-layer-02);
  border-left: 1px solid var(--cds-border-subtle);
}

.rail-block {
  padding: 20px 16px 24px;
  border-bottom: 1px solid var(--cds-border-subtle);
}

.rail-label {
  margin-bottom: 12px;
  color: var(--cds-text-helper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rail-value {
  color: var(--cds-text-primary);
  font-size: 14px;
  line-height: 1.45;
}

.rail-big {
  display: block;
  margin-bottom: 4px;
  color: var(--cds-interactive);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.part-status {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.part-status span {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  align-items: center;
  color: var(--cds-text-secondary);
  font-size: 12px;
}

.part-status i {
  display: block;
  width: 22px;
  height: 4px;
  background: var(--cds-border-subtle);
}

.part-status span.active {
  color: var(--cds-text-primary);
  font-weight: 600;
}

.part-status span.active i {
  background: var(--cds-interactive);
}

.page {
  max-width: none;
  margin: 0;
  padding: 0 64px 144px;
  background: var(--cds-layer-01);
  border-top: 0;
}

.essay-hero {
  position: relative;
  width: calc(100% + 128px);
  min-height: 560px;
  margin: 0 -64px 88px;
  padding: 80px 64px 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 98, 254, 0.96) 0 16px, transparent 16px),
    linear-gradient(135deg, #161616 0%, #262626 72%, #161616 100%);
  color: #ffffff;
}

.essay-hero::after {
  content: "01  /  03";
  position: absolute;
  right: -12px;
  bottom: -60px;
  color: rgba(255, 255, 255, 0.06);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(120px, 17vw, 260px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.1em;
  white-space: nowrap;
}

.essay-hero .eyebrow {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0;
  max-width: 1040px;
  margin: 0 auto 72px;
  color: #c6c6c6;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.essay-hero .eyebrow span {
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid #6f6f6f;
}

.essay-hero .eyebrow span:last-child {
  border: 0;
}

.essay-hero h1.title {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto 28px;
  color: #ffffff;
  font-size: clamp(64px, 9vw, 144px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.essay-hero .dek {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 64px;
  color: #f4f4f4;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.essay-hero .framing {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 0 0;
  border-top: 1px solid #6f6f6f;
  color: #c6c6c6;
  font-size: 14px;
  line-height: 1.6;
}

.essay-hero .framing b {
  color: #ffffff;
  font-weight: 600;
}

.page > p,
.page > h2,
.page > .part,
.page > .signoff {
  width: min(100%, 800px);
  margin-left: auto;
  margin-right: auto;
}

.page > figure {
  width: min(100%, 1088px);
  margin-left: auto;
  margin-right: auto;
}

.page p {
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--cds-text-secondary);
  font-size: 17px;
  line-height: 1.75;
}

.page p b,
.page p strong,
.page b,
.page strong,
.page em {
  color: var(--cds-text-primary);
}

.page p::selection,
.page h2::selection,
.page h1::selection {
  background: var(--cds-interactive);
  color: #ffffff;
}

.part {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 24px;
  margin-top: 128px;
  margin-bottom: 52px;
  padding: 24px 0 28px;
  border-top: 1px solid var(--cds-text-primary);
  border-bottom: 1px solid var(--cds-border-subtle);
}

.part::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 120px;
  height: 4px;
  background: var(--cds-interactive);
}

.part-num {
  grid-row: 1 / 3;
  color: var(--cds-interactive);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.part-name {
  margin: 0;
  color: var(--cds-text-primary);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.045em;
}

.part-sub {
  max-width: 620px;
  margin-top: 18px;
  color: var(--cds-text-secondary);
  font-size: 16px;
  font-style: normal;
  line-height: 1.5;
}

.page h2 {
  position: relative;
  margin-top: 84px;
  margin-bottom: 28px;
  padding: 18px 0 0;
  border-top: 4px solid var(--cds-text-primary);
  border-bottom: 0;
  color: var(--cds-text-primary);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.page h2::before {
  content: attr(data-index);
  position: absolute;
  top: 26px;
  right: calc(100% + 24px);
  color: var(--cds-text-helper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

figure {
  margin-top: 64px;
  margin-bottom: 72px;
  padding: 0;
  background: var(--cds-layer-02);
  border: 1px solid var(--cds-border-subtle);
}

.figcap {
  min-height: 48px;
  margin: 0;
  padding: 16px;
  background: var(--cds-text-primary);
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-transform: uppercase;
}

.figcap::before {
  display: none;
}

.fignote,
figure > .fignote {
  margin: 0;
  padding: 14px 16px 18px;
  border-top: 1px solid var(--cds-border-subtle);
  color: var(--cds-text-helper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  line-height: 1.55;
}

.experience-cta {
  margin: 48px 0 56px;
  border: 1px solid var(--cds-border-strong);
  border-top: 4px solid var(--cds-interactive);
  background: var(--cds-layer-01);
}

.experience-cta-kicker {
  padding: 12px 16px;
  border-bottom: 1px solid var(--cds-border-subtle);
  color: var(--cds-interactive);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.experience-cta-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: 24px 16px;
}

.experience-cta h3 {
  max-width: 560px;
  margin: 0 0 10px;
  color: var(--cds-text-primary);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.experience-cta p {
  max-width: 560px;
  margin: 0;
  color: var(--cds-text-secondary);
  font-size: 15px;
  line-height: 1.55;
}

.experience-cta a {
  display: inline-flex;
  min-width: 190px;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 16px;
  background: var(--cds-interactive);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 120ms ease;
}

.experience-cta a:hover {
  background: var(--cds-interactive-hover);
}

@media (max-width: 672px) {
  .experience-cta-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .experience-cta a {
    width: 100%;
  }
}

.svgwrap {
  padding: 24px;
  background: #ffffff;
}

.svgwrap svg {
  display: block;
  min-width: 680px;
}

.statgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  background: var(--cds-border-subtle);
  border: 0;
}

.stat {
  min-height: 180px;
  padding: 24px 16px;
  background: var(--cds-layer-01);
}

.stat-num {
  color: var(--cds-text-primary);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  line-height: 1;
}

.stat-label {
  margin-top: 56px;
  color: var(--cds-text-secondary);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.insights,
.fan-cards,
.flow,
.cards {
  gap: 1px;
  margin: 0;
  background: var(--cds-border-subtle);
  border: 0;
}

.insight,
.fan-card,
.panel,
.uicard {
  background: var(--cds-layer-01);
}

.insight {
  min-height: 196px;
  padding: 20px 16px;
}

.insight.green,
.insight.amber,
.insight.red {
  background: var(--cds-layer-01);
  border-top-width: 4px;
}

.insight.green {
  border-top-color: var(--cds-support-success);
}

.insight.amber {
  border-top-color: var(--cds-support-warning);
}

.insight.red {
  border-top-color: var(--cds-support-error);
}

.insight-label,
.cl,
.p-tag,
.fan-top .ft-tag,
.mini-tag,
.c-eye,
.k,
.ll,
.axis,
.blegend,
.legend {
  font-family: "IBM Plex Mono", monospace;
}

.insight-body {
  color: var(--cds-text-secondary);
  font-size: 13px;
}

.fan-top,
.uihdr {
  background: var(--cds-text-primary);
}

.fan-mid {
  margin: 0;
  background: var(--cds-layer-03);
}

.fan-card,
.panel {
  padding: 20px 16px;
}

.mock {
  background: var(--cds-layer-02);
  border-color: var(--cds-border-subtle);
}

.tl {
  margin: 0;
  padding: 32px 24px 8px;
  background: var(--cds-layer-01);
}

.era::before {
  background: var(--cds-border-subtle);
}

.node {
  background: var(--cds-interactive);
}

.card {
  background: var(--cds-layer-02);
  border: 0;
  border-left: 4px solid var(--cds-interactive);
}

.medium,
.v,
.rname,
.rdesc,
.p-cap,
.vsub {
  color: var(--cds-text-primary);
}

.bar {
  background: var(--cds-layer-03);
}

.flow {
  margin-top: 0;
}

.scroll {
  margin: 0;
  background: var(--cds-layer-01);
}

table {
  font-family: "IBM Plex Sans", sans-serif;
}

thead th {
  padding: 16px;
  background: var(--cds-text-primary);
  font-family: "IBM Plex Mono", monospace;
}

tbody td {
  padding: 16px;
  color: var(--cds-text-secondary);
  border-bottom-color: var(--cds-border-subtle);
}

tbody tr:nth-child(even) td {
  background: var(--cds-layer-02);
}

.blegend,
.legend,
.axis {
  margin: 0;
  padding: 16px;
  background: var(--cds-layer-01);
  color: var(--cds-text-secondary);
}

.ladder {
  border: 0;
}

.rung {
  padding: 16px;
  background: var(--cds-layer-01);
  border-bottom-color: var(--cds-border-subtle);
}

.rung:nth-child(even) {
  background: var(--cds-layer-02);
}

.rn {
  color: var(--cds-interactive);
}

.callout {
  margin: 0;
  padding: 20px 16px 22px;
  border-top-width: 4px;
}

.callout p {
  color: var(--cds-text-secondary);
}

.callout.green {
  background: #defbe6;
  border-top-color: var(--cds-support-success);
}

.callout.red {
  background: #fff1f1;
  border-top-color: var(--cds-support-error);
}

.callout.amber {
  background: #fcf4d6;
  border-top-color: var(--cds-support-warning);
}

.cards {
  margin-top: 0;
}

.uibody {
  padding: 20px 16px 24px;
}

.verdict {
  font-weight: 300;
}

.kicker {
  margin: 0;
  padding: 20px 16px;
  background: var(--cds-layer-03);
  border-top: 1px solid var(--cds-border-subtle);
}

.kicker p {
  margin: 0;
}

.signoff {
  margin-top: 112px;
  padding: 32px 0 0 32px;
  border-top: 4px solid var(--cds-text-primary);
  border-left: 16px solid var(--cds-interactive);
  color: var(--cds-text-primary);
  font-size: clamp(22px, 3vw, 34px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  margin-left: var(--nav-width);
  margin-right: var(--rail-width);
  padding: 32px 64px;
  background: #161616;
  color: #c6c6c6;
  font-size: 12px;
}

.site-footer strong {
  color: #ffffff;
}

.focus-mode .side-nav,
.focus-mode .right-rail {
  display: none;
}

.focus-mode .essay-shell,
.focus-mode .site-footer {
  margin-left: 0;
  margin-right: 0;
}

.dark-mode {
  --cds-background: #161616;
  --cds-layer-01: #262626;
  --cds-layer-02: #393939;
  --cds-layer-03: #525252;
  --cds-text-primary: #f4f4f4;
  --cds-text-secondary: #c6c6c6;
  --cds-text-helper: #a8a8a8;
  --cds-border-subtle: #525252;
  --cds-border-strong: #8d8d8d;
}

.dark-mode .toc a.active {
  background: #001d6c;
  color: #ffffff;
}

.dark-mode .essay-hero {
  background:
    linear-gradient(90deg, rgba(120, 169, 255, 0.96) 0 16px, transparent 16px),
    linear-gradient(135deg, #000000 0%, #262626 72%, #161616 100%);
}

.dark-mode .callout.green {
  background: #044317;
}

.dark-mode .callout.red {
  background: #520408;
}

.dark-mode .svgwrap,
.dark-mode .svgwrap + .cards,
.dark-mode figure .flow,
.dark-mode figure .fan-cards,
.dark-mode figure .statgrid,
.dark-mode figure .ladder,
.dark-mode figure .scroll {
  filter: invert(0.88) hue-rotate(180deg);
}

@media (max-width: 1380px) {
  .essay-shell,
  .site-footer {
    margin-right: 0;
  }

  .right-rail {
    display: none;
  }
}

@media (max-width: 1080px) {
  :root {
    --nav-width: 224px;
  }

  .page {
    padding-right: 40px;
    padding-left: 40px;
  }

  .essay-hero {
    width: calc(100% + 80px);
    margin-right: -40px;
    margin-left: -40px;
    padding-right: 40px;
    padding-left: 40px;
  }

  .page h2::before {
    display: none;
  }
}

@media (max-width: 800px) {
  :root {
    --nav-width: min(88vw, 320px);
  }

  .carbon-header {
    grid-template-columns: 48px 1fr auto;
  }

  .carbon-brand {
    display: none;
  }

  .menu-action {
    display: block;
    min-width: 48px;
    width: 48px;
    padding: 0;
    border-left: 0;
    border-right: 1px solid #393939;
  }

  .header-context {
    padding-left: 12px;
  }

  .header-action {
    min-width: 62px;
    padding: 0 10px;
  }

  #theme-toggle {
    display: none;
  }

  .side-nav {
    transform: translateX(-100%);
    box-shadow: 8px 0 24px rgba(0, 0, 0, 0.2);
    transition: transform 180ms ease;
  }

  .nav-open .side-nav {
    transform: translateX(0);
  }

  .essay-shell,
  .site-footer {
    margin-left: 0;
  }

  .page {
    padding: 0 20px 88px;
  }

  .essay-hero {
    width: calc(100% + 40px);
    min-height: 520px;
    margin: 0 -20px 64px;
    padding: 48px 20px 56px;
  }

  .essay-hero .eyebrow {
    flex-wrap: wrap;
    gap: 8px 0;
    margin-bottom: 72px;
  }

  .essay-hero h1.title {
    font-size: clamp(56px, 18vw, 92px);
  }

  .essay-hero .dek {
    font-size: 20px;
  }

  .essay-hero .framing {
    font-size: 13px;
  }

  .part {
    grid-template-columns: 1fr;
    margin-top: 88px;
  }

  .part-num {
    grid-row: auto;
    margin-bottom: 28px;
  }

  .page h2 {
    margin-top: 64px;
    font-size: 34px;
  }

  .page p {
    font-size: 16px;
    line-height: 1.68;
  }

  figure {
    width: calc(100% + 40px) !important;
    margin-right: -20px !important;
    margin-left: -20px !important;
    border-right: 0;
    border-left: 0;
  }

  .statgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    min-height: 156px;
  }

  .stat-label {
    margin-top: 32px;
  }

  .svgwrap {
    padding: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }
}

@media (max-width: 520px) {
  #focus-toggle {
    display: none;
  }

  .header-context {
    font-size: 11px;
  }

  .statgrid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-num {
    font-size: 34px;
  }
}

@media print {
  body {
    padding: 0;
  }

  .carbon-header,
  .reading-progress,
  .side-nav,
  .right-rail,
  .site-footer {
    display: none !important;
  }

  .essay-shell {
    margin: 0;
  }

  .page {
    padding: 0;
  }
}

/* Interactive Carbon figure system */
.ix-figure {
  --ix-accent: #0f62fe;
  --ix-soft: #edf5ff;
  --ix-ink: #001d6c;
  --ix-border: #a6c8ff;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  margin-bottom: 96px;
  background: var(--cds-layer-01);
  border: 1px solid var(--cds-border-subtle);
  transition: outline-color 160ms ease, box-shadow 160ms ease;
}

.ix-figure[data-figure="7"],
.ix-figure[data-figure="8"],
.ix-figure[data-figure="9"] {
  --ix-accent: #8a3ffc;
  --ix-soft: #f6f2ff;
  --ix-ink: #491d8b;
  --ix-border: #d4bbff;
}

.ix-figure[data-figure="10"],
.ix-figure[data-figure="11"],
.ix-figure[data-figure="12"],
.ix-figure[data-figure="13"] {
  --ix-accent: #8a3ffc;
  --ix-soft: #f6f2ff;
  --ix-ink: #491d8b;
  --ix-border: #d4bbff;
}

.page > p {
  width: min(100%, 720px);
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.8;
}

.explore-mode .ix-figure {
  outline: 2px solid var(--ix-border);
  outline-offset: 4px;
}

.explore-mode .ix-figure::after {
  content: "Select a view, then drill into a tile";
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 168px;
  padding: 4px 8px;
  background: #0f62fe;
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ix-figure-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  background: var(--cds-text-primary);
  color: var(--cds-layer-01);
}

.ix-figure-header > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.ix-figure-header strong {
  overflow: hidden;
  color: var(--cds-layer-01);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ix-figure-number {
  color: var(--ix-border);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.ix-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 9px;
  background: #d0e2ff;
  color: #002d9c;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ix-tabs {
  display: flex;
  min-height: 48px;
  overflow-x: auto;
  background: var(--cds-layer-02);
  border-bottom: 1px solid var(--cds-border-subtle);
  scrollbar-width: thin;
}

.ix-tab {
  position: relative;
  min-width: 128px;
  padding: 0 16px;
  border: 0;
  border-right: 1px solid var(--cds-border-subtle);
  background: transparent;
  color: var(--cds-text-secondary);
  cursor: pointer;
  font-size: 13px;
  text-align: left;
}

.ix-tab:hover {
  background: var(--cds-layer-03);
  color: var(--cds-text-primary);
}

.ix-tab:focus-visible,
.ix-metric:focus-visible,
.ix-compare:focus-visible,
.ix-step:focus-visible,
.ix-allocation-row:focus-visible,
.ix-surface-metric:focus-visible,
.ix-structured-row:focus-visible,
.ix-era:focus-visible,
.ix-check-row:focus-visible,
.ix-gap:focus-visible,
.ix-ladder-row:focus-visible,
.ix-frame:focus-visible,
.ix-control-row:focus-visible {
  outline: 2px solid var(--cds-interactive);
  outline-offset: -2px;
}

.ix-tab.active {
  background: var(--cds-layer-01);
  color: var(--cds-text-primary);
  font-weight: 600;
}

.ix-tab.active::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--ix-accent);
}

.ix-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 248px;
  min-height: 360px;
}

.ix-figure.model-active .ix-layout {
  grid-template-columns: minmax(0, 1fr);
}

.ix-figure.model-active .ix-detail {
  display: none;
}

.ix-view {
  min-width: 0;
  background: var(--cds-layer-01);
  border-right: 1px solid var(--cds-border-subtle);
}

.ix-view-lead {
  min-height: 0;
  padding: 14px 16px 14px 20px;
  background: var(--ix-soft);
  color: var(--ix-ink);
  font-size: 14px;
  line-height: 1.5;
  border-left: 4px solid var(--ix-accent);
  border-bottom: 1px solid var(--cds-border-subtle);
}

.ix-component {
  padding: 20px;
}

.ix-model-component {
  padding: 0;
}

.ix-model-callout {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 18px 20px 20px;
  background: #f6f2ff;
  border-left: 4px solid #8a3ffc;
  border-bottom: 1px solid #d4bbff;
}

.ix-model-callout span {
  color: #8a3ffc;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ix-model-callout strong {
  max-width: 720px;
  color: #491d8b;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
}

.ix-original-model {
  overflow-x: auto;
  padding: 32px;
  background: #ffffff;
  color: #161616;
}

.ix-original-model > .svgwrap {
  padding: 0;
  background: #ffffff;
}

.ix-original-model svg {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.ix-original-model > .svgwrap {
  width: 100%;
  overflow: visible;
}

.ix-original-model .flow svg {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.ix-original-model > .statgrid,
.ix-original-model > .flow,
.ix-original-model > .fan-cards,
.ix-original-model > .cards,
.ix-original-model > .insights,
.ix-original-model > .blegend,
.ix-original-model > .scroll,
.ix-original-model > .axis,
.ix-original-model > .ladder,
.ix-original-model > .tl,
.ix-original-model > .fan-top,
.ix-original-model > .fan-mid {
  margin-right: 0;
  margin-left: 0;
}

.ix-original-model > .fan-top {
  margin-top: 0;
}

.ix-original-model > .axis:first-child,
.ix-original-model > .blegend,
.ix-original-model > .legend {
  padding-top: 0;
}

.ix-original-model .panel,
.ix-original-model .fan-card,
.ix-original-model .uicard,
.ix-original-model .stat,
.ix-original-model .insight {
  transition: background-color 140ms ease, box-shadow 140ms ease;
}

.ix-original-model .panel:hover,
.ix-original-model .fan-card:hover,
.ix-original-model .uicard:hover,
.ix-original-model .stat:hover,
.ix-original-model .insight:hover {
  position: relative;
  z-index: 1;
  background: var(--ix-soft);
  box-shadow: inset 0 -4px 0 var(--ix-accent);
}

.ix-detail {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 20px 16px;
  background: var(--cds-layer-02);
}

.ix-detail-tag {
  align-self: flex-start;
  margin-bottom: 24px;
  padding: 3px 8px;
  background: #d0e2ff;
  color: #002d9c;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ix-detail-title {
  margin-bottom: 12px;
  color: var(--cds-text-primary);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.ix-detail .ix-detail-body {
  margin: 0;
  color: var(--cds-text-secondary);
  font-size: 13px;
  line-height: 1.55;
}

.ix-detail-hint {
  display: none;
  color: var(--cds-text-helper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ix-grid {
  display: grid;
  gap: 1px;
  background: var(--cds-border-subtle);
  border: 1px solid var(--cds-border-subtle);
}

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

.ix-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ix-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ix-metric,
.ix-compare,
.ix-step,
.ix-allocation-row,
.ix-surface-metric,
.ix-structured-row,
.ix-era,
.ix-check-row,
.ix-gap,
.ix-ladder-row,
.ix-frame,
.ix-control-row {
  border: 0;
  background: var(--cds-layer-01);
  color: var(--cds-text-primary);
  cursor: pointer;
  text-align: left;
  transition: background-color 120ms ease, box-shadow 120ms ease;
}

.ix-metric:hover,
.ix-compare:hover,
.ix-step:hover,
.ix-allocation-row:hover,
.ix-surface-metric:hover,
.ix-structured-row:hover,
.ix-era:hover,
.ix-check-row:hover,
.ix-gap:hover,
.ix-ladder-row:hover,
.ix-frame:hover,
.ix-control-row:hover {
  background: var(--cds-layer-02);
}

.ix-metric.selected,
.ix-compare.selected,
.ix-step.selected,
.ix-allocation-row.selected,
.ix-surface-metric.selected,
.ix-structured-row.selected,
.ix-era.selected,
.ix-check-row.selected,
.ix-gap.selected,
.ix-ladder-row.selected,
.ix-frame.selected,
.ix-control-row.selected {
  background: var(--ix-soft);
  box-shadow: inset 0 -4px 0 var(--ix-accent);
}

.ix-metric {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 16px;
}

.ix-value {
  color: var(--cds-text-primary);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
}

.ix-label {
  margin-top: auto;
  color: var(--cds-text-secondary);
  font-size: 13px;
}

.ix-link {
  display: block;
  margin-top: 12px;
  color: var(--cds-interactive);
  font-size: 11px;
}

.ix-compare {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 20px 16px;
}

.ix-kicker {
  margin-bottom: 32px;
  color: var(--cds-text-helper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ix-compare strong {
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.ix-compare > span:nth-of-type(2) {
  color: var(--cds-text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.ix-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--cds-border-subtle);
}

.ix-step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 184px;
  padding: 16px;
  border-right: 1px solid var(--cds-border-subtle);
}

.ix-step:last-child {
  border-right: 0;
}

.ix-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -9px;
  width: 18px;
  height: 18px;
  background: var(--cds-interactive);
  color: #ffffff;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.ix-step-number {
  color: var(--cds-interactive);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}

.ix-step strong {
  margin-top: auto;
  color: var(--cds-text-primary);
  font-size: 18px;
  font-weight: 400;
}

.ix-step > span:last-child {
  margin-top: 6px;
  color: var(--cds-text-secondary);
  font-size: 11px;
}

.ix-stack {
  display: grid;
  gap: 1px;
  background: var(--cds-border-subtle);
  border: 1px solid var(--cds-border-subtle);
}

.ix-allocation-row {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.ix-row-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--cds-text-secondary);
  font-size: 13px;
}

.ix-row-label strong {
  color: var(--cds-text-primary);
  font-weight: 500;
}

.ix-meter {
  width: 100%;
  height: 8px;
  overflow: hidden;
  background: var(--cds-layer-03);
}

.ix-meter-fill {
  display: block;
  height: 100%;
  background: var(--cds-interactive);
  transition: width 240ms ease;
}

.ix-meter-fill.gray {
  background: var(--cds-border-strong);
}

.ix-meter-fill.red {
  background: var(--cds-support-error);
}

.ix-meter-fill.blue {
  background: var(--cds-interactive);
}

.ix-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--cds-border-subtle);
}

.ix-table {
  min-width: 640px;
}

.ix-table th {
  padding: 12px 16px;
  background: var(--cds-layer-03);
  color: var(--cds-text-primary);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.ix-table td {
  padding: 14px 16px;
  background: var(--cds-layer-01);
  color: var(--cds-text-secondary);
  font-size: 12px;
}

.ix-table tr:hover td {
  background: var(--cds-layer-02);
  color: var(--cds-text-primary);
}

.ix-table tbody tr {
  cursor: pointer;
}

.ix-table tbody tr:focus-visible {
  outline: 2px solid var(--cds-interactive);
  outline-offset: -2px;
}

.ix-table tbody tr.selected td {
  background: #edf5ff;
  color: #001141;
}

.dark-mode .ix-table tbody tr.selected td {
  background: #001d6c;
  color: #ffffff;
}

.ix-surface {
  border: 1px solid var(--cds-border-subtle);
}

.ix-surface-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 0 12px;
  background: var(--cds-text-primary);
  color: var(--cds-layer-01);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.ix-surface-title {
  padding: 28px 16px 32px;
  background: var(--cds-layer-02);
  color: var(--cds-text-primary);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: -0.035em;
}

.ix-surface-metric {
  display: flex;
  flex-direction: column;
  min-height: 144px;
  padding: 14px 12px;
}

.ix-surface-metric span,
.ix-surface-metric small {
  color: var(--cds-text-helper);
  font-size: 10px;
}

.ix-surface-metric strong {
  margin-top: auto;
  color: var(--cds-text-primary);
  font-size: 24px;
  font-weight: 300;
}

.ix-surface-metric small {
  margin-top: 5px;
}

.ix-structured-list {
  border-top: 1px solid var(--cds-border-subtle);
}

.ix-structured-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(160px, 1.4fr) 46px;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 13px 12px;
  border-bottom: 1px solid var(--cds-border-subtle);
}

.ix-structured-row > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ix-structured-row strong {
  font-size: 13px;
  font-weight: 500;
}

.ix-structured-row small {
  color: var(--cds-text-helper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.ix-percent {
  color: var(--cds-text-secondary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  text-align: right;
}

.ix-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--cds-border-subtle);
}

.ix-era {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 16px 12px;
  border-right: 1px solid var(--cds-border-subtle);
}

.ix-era:last-child {
  border-right: 0;
}

.ix-era-year {
  color: var(--cds-text-helper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}

.ix-era strong {
  margin-top: auto;
  color: var(--cds-text-primary);
  font-size: 17px;
  font-weight: 400;
}

.ix-era-line {
  position: relative;
  display: block;
  height: 4px;
  margin-top: 14px;
  background: var(--cds-border-subtle);
}

.ix-era-line::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--cds-interactive);
}

.ix-funnel {
  display: grid;
  gap: 20px;
  padding: 20px;
  background: var(--cds-layer-02);
  border: 1px solid var(--cds-border-subtle);
}

.ix-source-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--cds-border-subtle);
}

.ix-source-grid span {
  padding: 12px 8px;
  background: var(--cds-layer-01);
  color: var(--cds-text-secondary);
  font-size: 10px;
  text-align: center;
}

.ix-funnel-model,
.ix-answer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px;
  background: var(--cds-text-primary);
  color: var(--cds-layer-01);
}

.ix-funnel-model strong {
  color: var(--cds-layer-01);
  font-size: 14px;
}

.ix-funnel-model span {
  margin-top: 4px;
  color: var(--cds-border-subtle);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.ix-slider-label {
  display: flex;
  justify-content: space-between;
  color: var(--cds-text-primary);
  font-size: 12px;
}

.ix-slider-label output {
  color: var(--cds-interactive);
  font-family: "IBM Plex Mono", monospace;
}

.ix-slider {
  width: 100%;
  accent-color: var(--cds-interactive);
}

.ix-answer {
  background: var(--cds-interactive);
  color: #ffffff;
  font-size: 13px;
}

.ix-check-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 12px;
}

.ix-check {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  background: #defbe6;
  color: #0e6027;
  font-size: 11px;
}

.ix-check-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ix-check-row strong {
  font-size: 13px;
  font-weight: 500;
}

.ix-check-row small {
  color: var(--cds-text-secondary);
  font-size: 11px;
}

.ix-gap {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 16px;
}

.ix-gap-number {
  margin-bottom: 22px;
  color: var(--cds-text-primary);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.07em;
}

.ix-ladder {
  border-top: 1px solid var(--cds-border-subtle);
}

.ix-ladder-row {
  display: grid;
  grid-template-columns: 32px minmax(140px, 1fr) minmax(140px, 1fr) 108px;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 12px;
  border-bottom: 1px solid var(--cds-border-subtle);
}

.ix-ladder-row strong {
  font-size: 12px;
  font-weight: 500;
}

.ix-ladder-row small {
  color: var(--cds-text-helper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  text-align: right;
  text-transform: uppercase;
}

.ix-frame {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 20px 16px;
  border-top: 4px solid var(--cds-interactive);
}

.ix-frame.red {
  border-top-color: var(--cds-support-error);
}

.ix-frame strong {
  margin-bottom: 16px;
  color: var(--cds-text-primary);
  font-size: 38px;
  font-weight: 300;
}

.ix-frame > span:nth-of-type(2) {
  min-height: 72px;
  color: var(--cds-text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.ix-frame .ix-meter {
  margin-top: auto;
}

.ix-frame small {
  margin-top: 8px;
  color: var(--cds-text-helper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.ix-control-chart {
  border: 1px solid var(--cds-border-subtle);
}

.ix-control-legend {
  display: flex;
  gap: 24px;
  padding: 12px;
  background: var(--cds-layer-02);
  color: var(--cds-text-secondary);
  font-size: 10px;
}

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

.ix-control-legend i {
  display: block;
  width: 18px;
  height: 4px;
}

.ix-control-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 13px 12px;
  border-top: 1px solid var(--cds-border-subtle);
}

.ix-control-row strong {
  font-size: 11px;
  font-weight: 500;
}

.ix-control-bars {
  display: grid;
  gap: 4px;
}

.ix-control-bars i {
  position: relative;
  display: block;
  height: 8px;
  min-width: 24px;
  transition: width 240ms ease;
}

.ix-control-bars em {
  position: absolute;
  top: -2px;
  left: calc(100% + 6px);
  color: var(--cds-text-helper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  font-style: normal;
}

.felt {
  background: var(--cds-text-primary);
}

.authored {
  background: var(--cds-interactive);
}

.dark-mode .ix-tag,
.dark-mode .ix-detail-tag {
  background: #001d6c;
  color: #d0e2ff;
}

.dark-mode .ix-view-lead {
  background: #001d6c;
  color: #d0e2ff;
  border-bottom-color: #0043ce;
}

.dark-mode .ix-model-callout {
  background: #31135e;
  border-bottom-color: #8a3ffc;
}

.dark-mode .ix-model-callout span {
  color: #be95ff;
}

.dark-mode .ix-model-callout strong {
  color: #ffffff;
}

.dark-mode .ix-metric.selected,
.dark-mode .ix-compare.selected,
.dark-mode .ix-step.selected,
.dark-mode .ix-allocation-row.selected,
.dark-mode .ix-surface-metric.selected,
.dark-mode .ix-structured-row.selected,
.dark-mode .ix-era.selected,
.dark-mode .ix-check-row.selected,
.dark-mode .ix-gap.selected,
.dark-mode .ix-ladder-row.selected,
.dark-mode .ix-frame.selected,
.dark-mode .ix-control-row.selected {
  background: #001d6c;
}

.dark-mode .ix-check {
  background: #044317;
  color: #a7f0ba;
}

.dark-mode .ix-figure .svgwrap,
.dark-mode .ix-figure .flow,
.dark-mode .ix-figure .fan-cards,
.dark-mode .ix-figure .statgrid,
.dark-mode .ix-figure .ladder,
.dark-mode .ix-figure .scroll {
  filter: none;
}

@media (max-width: 1180px) {
  .ix-layout {
    grid-template-columns: 1fr;
  }

  .ix-view {
    border-right: 0;
  }

  .ix-detail {
    min-height: 180px;
    border-top: 1px solid var(--cds-border-subtle);
  }

  .ix-detail-hint {
    margin-top: 24px;
  }

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

@media (max-width: 800px) {
  .explore-mode .ix-figure::after {
    display: none;
  }

  .ix-figure-header {
    padding: 0 12px;
  }

  .ix-figure-header .ix-tag {
    display: none;
  }

  .ix-tab {
    min-width: 128px;
  }

  .ix-component {
    padding: 16px;
  }

  .ix-model-component {
    padding: 0;
  }

  .ix-model-callout {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 16px 16px;
  }

  .ix-model-callout strong {
    font-size: 15px;
  }

  .ix-original-model {
    padding: 20px 16px;
  }

  .ix-grid-2,
  .ix-grid-3,
  .ix-grid-4,
  .ix-process,
  .ix-timeline {
    grid-template-columns: 1fr;
  }

  .ix-metric,
  .ix-compare,
  .ix-gap,
  .ix-frame {
    min-height: 180px;
  }

  .ix-step,
  .ix-era {
    min-height: 128px;
    border-right: 0;
    border-bottom: 1px solid var(--cds-border-subtle);
  }

  .ix-step:not(:last-child)::after {
    top: auto;
    right: 16px;
    bottom: -9px;
    transform: rotate(90deg);
  }

  .ix-structured-row {
    grid-template-columns: 1fr 52px;
  }

  .ix-structured-row > span:nth-child(2) {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .ix-percent {
    grid-column: 2;
    grid-row: 1;
  }

  .ix-source-grid {
    grid-template-columns: 1fr;
  }

  .ix-ladder-row {
    grid-template-columns: 28px 1fr;
  }

  .ix-ladder-row > span:nth-child(3),
  .ix-ladder-row small {
    grid-column: 2;
  }

  .ix-ladder-row small {
    text-align: left;
  }

  .ix-control-row {
    grid-template-columns: 1fr;
  }

  .ix-control-bars {
    padding-right: 24px;
  }
}
