:root {
  --system-ink: #173333;
  --system-copy: #4f6663;
  --system-muted: #788985;
  --system-green: #0b7468;
  --system-orange: #d96535;
  --system-blue: #2767c5;
  --system-warm: #f3f4ef;
  --system-mist: #e7efeb;
  --system-dark: #102f31;
  --system-line: rgba(23, 51, 51, 0.16);
}

body[data-detail-type="solution"] {
  color: var(--system-ink);
  background: #fff;
}

.system-scroll-progress {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.system-scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--system-orange);
  transform: scaleX(0);
  transform-origin: left center;
}

.system-header {
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.system-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(15, 44, 43, 0.08);
}

.system-main {
  overflow: clip;
}

.system-loading,
.system-noscript {
  min-height: calc(100svh - var(--header-height));
  padding: 160px var(--page-pad);
  color: var(--system-muted);
  background: var(--system-warm);
  font-size: 16px;
  text-align: center;
}

.system-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding: 82px 0 0;
  background: var(--system-warm);
  border-bottom: 1px solid var(--system-line);
}

.system-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  height: 7px;
  background: var(--system-blue);
}

.system-hero-grid {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(540px, 1.28fr);
  align-items: center;
  gap: 70px;
}

.system-title-line {
  display: flex;
  align-items: center;
  gap: 16px;
}

.system-title-line > p,
.system-section-head > p,
.system-terminal-head > p,
.system-related-copy > p {
  color: var(--system-green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.system-identity {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  background-color: #2f69bc;
  background-image: var(--identity-image);
  background-repeat: no-repeat;
  background-position: center 4px;
  background-size: 180px auto;
  border-radius: 4px;
}

.system-identity.is-logo {
  background-color: #fff;
  background-position: center;
  background-size: contain;
}

.system-hero h1 {
  max-width: 600px;
  margin-top: 28px;
  color: var(--system-ink);
  font-size: 64px;
  font-weight: 850;
  line-height: 1.08;
}

.system-title-tail {
  display: block;
}

.system-hero-en {
  margin-top: 15px;
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.system-hero-summary {
  max-width: 610px;
  margin-top: 32px;
  color: var(--system-copy);
  font-size: 18px;
  line-height: 1.9;
}

.system-audience {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--system-muted);
  font-size: 13px;
  line-height: 1.6;
}

.system-audience span {
  width: 24px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--system-orange);
}

.system-hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.system-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--system-ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.4;
}

.system-text-link span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease;
}

.system-text-link:hover span {
  color: #fff;
  background: var(--system-orange);
  border-color: var(--system-orange);
  transform: translateX(3px);
}

.system-hero-window,
.system-story-window,
.system-capability-media,
.system-desktop {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(25, 54, 54, 0.14);
  border-radius: 4px;
  box-shadow: 0 28px 70px rgba(24, 56, 54, 0.15);
}

.system-hero-window {
  width: calc(100% + 34px);
  min-height: 0;
  align-self: center;
}

.system-window-bar {
  height: 38px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #7b8b89;
  background: #f8faf9;
  border-bottom: 1px solid rgba(25, 54, 54, 0.1);
  font-size: 10px;
  font-weight: 700;
}

.system-window-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c7d1ce;
}

.system-window-bar i:first-child {
  background: #db6a40;
}

.system-window-bar i:nth-child(2) {
  background: #e3b75b;
}

.system-window-bar i:nth-child(3) {
  background: #3ba677;
}

.system-window-bar span {
  margin-left: 6px;
}

.system-hero-window img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  background: #f3f6f7;
}

.system-facts {
  min-height: 124px;
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--system-line);
}

.system-fact {
  min-width: 0;
  padding: 28px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--system-line);
}

.system-fact:last-child {
  border-right: 1px solid var(--system-line);
}

.system-fact span {
  color: var(--system-muted);
  font-size: 11px;
  font-weight: 800;
}

.system-fact strong {
  margin-top: 10px;
  color: var(--system-ink);
  font-size: 18px;
  line-height: 1.4;
}

.system-story {
  padding: 138px 0 80px;
  background: #fff;
}

.system-section-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 0.62fr);
  column-gap: 120px;
}

.system-section-head > p {
  grid-column: 1 / -1;
  margin-bottom: 24px;
}

.system-section-head h2,
.system-terminal-head h2,
.system-related-copy h2 {
  max-width: 780px;
  color: var(--system-ink);
  font-size: 46px;
  font-weight: 850;
  line-height: 1.24;
}

.system-section-head > div,
.system-terminal-head > div,
.system-related-copy > div {
  align-self: end;
  color: var(--system-copy);
  font-size: 16px;
  line-height: 1.9;
}

.system-story-layout {
  margin-top: 96px;
  display: grid;
  grid-template-columns: minmax(520px, 1.16fr) minmax(330px, 0.72fr);
  gap: 86px;
}

.system-story-stage {
  position: relative;
}

.system-story-window {
  position: sticky;
  top: 126px;
}

.system-story-image-wrap {
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f4f5;
  overflow: hidden;
}

.system-story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.24s ease,
    transform 0.34s ease;
}

.system-story-image-wrap img.is-switching {
  opacity: 0;
  transform: scale(0.985);
}

.system-story-window figcaption {
  min-height: 86px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(25, 54, 54, 0.1);
}

.system-story-window figcaption span {
  color: var(--system-orange);
  font-size: 11px;
  font-weight: 900;
}

.system-story-window figcaption strong {
  color: var(--system-ink);
  font-size: 16px;
  line-height: 1.5;
}

.system-story-step {
  position: relative;
  min-height: 46vh;
  padding: 36px 0 54px 54px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  border: 0;
  border-left: 1px solid var(--system-line);
  outline: 0;
  cursor: pointer;
}

.system-story-step:last-child {
  min-height: 38vh;
}

.system-story-marker {
  position: absolute;
  top: 50%;
  left: -13px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #91a4a0;
  border-radius: 50%;
  transform: translateY(-50%);
  transition:
    border-color 0.24s ease,
    background 0.24s ease,
    transform 0.24s ease;
}

.system-story-marker span {
  color: transparent;
  font-size: 0;
}

.system-story-marker::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #91a4a0;
}

.system-story-step.is-active .system-story-marker {
  background: var(--system-orange);
  border-color: var(--system-orange);
  transform: translateY(-50%) scale(1.08);
}

.system-story-step.is-active .system-story-marker::after {
  background: #fff;
}

.system-story-copy {
  opacity: 0.46;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.system-story-step.is-active .system-story-copy {
  opacity: 1;
  transform: translateY(0);
}

.system-story-copy > p {
  color: var(--system-orange);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.5;
  text-transform: uppercase;
}

.system-story-copy h3 {
  margin-top: 16px;
  color: var(--system-ink);
  font-size: 28px;
  font-weight: 850;
  line-height: 1.35;
}

.system-story-copy > div {
  margin-top: 18px;
  color: var(--system-copy);
  font-size: 15px;
  line-height: 1.9;
}

.system-story-mobile-media {
  display: none;
}

.system-capabilities {
  background: var(--system-warm);
}

.system-section-head-dark {
  width: min(100%, var(--content));
  max-width: var(--content);
  padding-top: 130px;
  padding-bottom: 120px;
  color: #fff;
  background: var(--system-dark);
  box-shadow: 0 0 0 100vmax var(--system-dark);
  clip-path: inset(0 -100vmax);
}

.system-section-head-dark > p {
  color: #73c7b6;
}

.system-section-head-dark h2 {
  color: #fff;
}

.system-section-head-dark > div {
  color: rgba(255, 255, 255, 0.7);
}

.system-capability-band {
  padding: 112px 0;
  background: #fff;
  border-top: 1px solid var(--system-line);
}

.system-capability-band:nth-of-type(even) {
  background: var(--system-warm);
}

.system-capability-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.76fr) minmax(560px, 1.24fr);
  align-items: center;
  gap: 100px;
}

.system-capability-band.is-reversed .system-capability-copy {
  order: 2;
}

.system-capability-band.is-reversed .system-capability-media {
  order: 1;
}

.system-capability-index {
  color: var(--system-orange);
  font-size: 12px;
  font-weight: 900;
}

.system-capability-copy h3 {
  margin-top: 22px;
  color: var(--system-ink);
  font-size: 34px;
  font-weight: 850;
  line-height: 1.35;
}

.system-capability-copy > p {
  margin-top: 24px;
  color: var(--system-copy);
  font-size: 16px;
  line-height: 1.9;
}

.system-capability-copy ul {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--system-line);
  list-style: none;
}

.system-capability-copy li {
  min-height: 54px;
  padding: 15px 12px 14px 0;
  color: var(--system-ink);
  border-bottom: 1px solid var(--system-line);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.7;
}

.system-capability-copy li:nth-child(odd) {
  margin-right: 18px;
}

.system-capability-media {
  box-shadow: 0 26px 62px rgba(24, 56, 54, 0.12);
}

.system-capability-media img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  object-position: center;
  background: #f4f6f7;
}

.system-terminals {
  padding: 138px 0 154px;
  color: #fff;
  background: #0f2f32;
  border-top: 7px solid var(--system-blue);
}

.system-terminal-head {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(300px, 0.62fr);
  column-gap: 120px;
}

.system-terminal-head > p {
  grid-column: 1 / -1;
  margin-bottom: 24px;
  color: #79c9ba;
}

.system-terminal-head h2 {
  color: #fff;
}

.system-terminal-head > div {
  color: rgba(255, 255, 255, 0.68);
}

.system-terminal-stage {
  position: relative;
  min-height: 700px;
  margin-top: 90px;
}

.system-desktop {
  width: 82%;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.26);
}

.system-desktop img {
  width: 100%;
  height: 600px;
  object-fit: contain;
  object-position: center top;
  background: #eef2f3;
}

.system-phones {
  position: absolute;
  right: var(--page-pad);
  bottom: -36px;
  width: 36%;
  height: 560px;
  pointer-events: none;
}

.system-phone {
  position: absolute;
  bottom: 0;
  width: 210px;
  margin: 0;
  padding: 10px 8px 8px;
  overflow: hidden;
  background: #111d20;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
}

.system-phone > span {
  width: 44px;
  height: 4px;
  margin: 0 auto 8px;
  display: block;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.22);
}

.system-phone img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
}

.system-phone.has-caption img {
  height: 386px;
}

.system-phone-caption {
  min-height: 42px;
  padding: 7px 2px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.system-phone-caption span,
.system-phone-caption strong,
.system-phone-caption em {
  display: block;
}

.system-phone-caption strong {
  font-size: 11px;
  line-height: 1.2;
}

.system-phone-caption em {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-style: normal;
  line-height: 1.2;
}

.hzh-mini-program-icon {
  width: 30px;
  height: 20px;
  display: inline-block;
  flex: 0 0 auto;
  overflow: hidden;
  background-color: transparent;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
}

.hzh-mini-program-icon[data-transparent-mark="true"] {
  opacity: 1;
}

.system-phone-1 {
  z-index: 3;
  right: 150px;
  bottom: 22px;
}

.system-phone-2 {
  z-index: 2;
  right: 0;
  bottom: 78px;
}

.system-phone-3 {
  z-index: 1;
  right: 294px;
  bottom: 66px;
}

.system-outcomes {
  padding: 90px 0;
  background: #fff;
}

.system-outcome-head {
  text-align: center;
}

.system-outcome-head p {
  color: var(--system-green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.system-outcome-head h2 {
  max-width: 920px;
  margin: 18px auto 0;
  color: var(--system-ink);
  font-size: 42px;
  line-height: 1.32;
}

.system-outcome-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--system-line);
  border-bottom: 1px solid var(--system-line);
}

.system-outcome {
  min-height: 180px;
  padding: 38px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--system-line);
}

.system-outcome:last-child {
  border-right: 1px solid var(--system-line);
}

.system-outcome strong {
  color: var(--system-green);
  font-size: 31px;
  font-weight: 850;
  line-height: 1.3;
}

.system-outcome span {
  margin-top: 14px;
  color: var(--system-copy);
  font-size: 14px;
  line-height: 1.7;
}

.system-related {
  padding: 118px 0;
  background: var(--system-mist);
  border-top: 1px solid var(--system-line);
}

.system-related-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(560px, 1.3fr);
  align-items: center;
  gap: 100px;
}

.system-related-copy h2 {
  margin-top: 22px;
  font-size: 40px;
}

.system-related-copy > div {
  margin-top: 24px;
}

.system-related-copy .system-text-link {
  margin-top: 32px;
}

.system-related-media {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background: #e8ecec;
  border-left: 6px solid var(--system-orange);
}

.system-related-media img {
  width: 100%;
  height: 410px;
  object-fit: contain;
  object-position: center;
  background: #f4f6f7;
  transition: transform 0.55s ease;
}

.system-related-media:hover img {
  transform: scale(1.02);
}

.system-related-media span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 11px 15px;
  color: #fff;
  background: var(--system-dark);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 800;
}

.system-cta {
  min-height: 610px;
}

.system-cta::after {
  background: rgba(7, 34, 34, 0.72);
}

.system-cta .detail-ghost-button {
  color: #fff;
}

.system-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.system-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1240px) {
  .system-hero {
    padding-top: 68px;
  }

  .system-hero-grid {
    grid-template-columns: minmax(320px, 0.82fr) minmax(490px, 1.18fr);
    gap: 44px;
  }

  .system-hero h1 {
    font-size: 52px;
  }

  .system-hero-window {
    width: 100%;
    min-height: 0;
  }

  .system-story-layout {
    grid-template-columns: minmax(470px, 1.1fr) minmax(300px, 0.7fr);
    gap: 58px;
  }

  .system-story-image-wrap {
    height: 450px;
  }

  .system-capability-layout {
    grid-template-columns: minmax(320px, 0.78fr) minmax(480px, 1.12fr);
    gap: 60px;
  }

  .system-capability-media img {
    height: 400px;
  }

  .system-terminal-stage {
    min-height: 630px;
  }

  .system-desktop img {
    height: 520px;
  }

  .system-phones {
    width: 42%;
    transform: scale(0.9);
    transform-origin: right bottom;
  }
}

@media (max-width: 980px) {
  .system-title-tail {
    display: inline;
  }

  .system-hero {
    padding-top: 82px;
  }

  .system-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .system-hero-copy {
    max-width: 720px;
  }

  .system-hero-window {
    width: 100%;
  }

  .system-facts {
    margin-top: 58px;
  }

  .system-section-head,
  .system-terminal-head {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .system-section-head > div,
  .system-terminal-head > div {
    max-width: 680px;
  }

  .system-story {
    padding-top: 110px;
  }

  .system-story-layout {
    grid-template-columns: minmax(400px, 1fr) minmax(280px, 0.68fr);
    gap: 40px;
  }

  .system-story-image-wrap {
    height: 390px;
  }

  .system-story-step {
    min-height: 42vh;
    padding-left: 42px;
  }

  .system-capability-band {
    padding: 92px 0;
  }

  .system-capability-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .system-capability-band.is-reversed .system-capability-copy,
  .system-capability-band.is-reversed .system-capability-media {
    order: initial;
  }

  .system-capability-media img {
    height: 480px;
  }

  .system-terminal-stage {
    min-height: 720px;
  }

  .system-desktop {
    width: 100%;
  }

  .system-desktop img {
    height: 470px;
  }

  .system-phones {
    right: 0;
    width: 58%;
    height: 470px;
    transform: scale(0.78);
  }

  .system-related-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }
}

@media (max-width: 760px) {
  .system-hero {
    padding-top: 60px;
  }

  .system-hero::after {
    width: 46%;
    height: 5px;
  }

  .system-title-line {
    gap: 12px;
  }

  .system-identity {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    background-size: 154px auto;
  }

  .system-hero h1 {
    margin-top: 24px;
    font-size: 42px;
  }

  .system-hero-summary {
    margin-top: 26px;
    font-size: 16px;
  }

  .system-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .system-hero-window {
    min-height: 0;
  }

  .system-facts {
    min-height: 106px;
  }

  .system-fact {
    padding: 23px 18px;
  }

  .system-fact strong {
    font-size: 15px;
  }

  .system-story {
    padding: 96px 0 50px;
  }

  .system-section-head h2,
  .system-terminal-head h2 {
    font-size: 36px;
  }

  .system-story-layout {
    margin-top: 62px;
    display: block;
  }

  .system-story-stage {
    display: none;
  }

  .system-story-step,
  .system-story-step:last-child {
    min-height: 0;
    padding: 42px 0 64px 32px;
    cursor: default;
  }

  .system-story-copy {
    opacity: 1;
    transform: none;
  }

  .system-story-copy h3 {
    font-size: 25px;
  }

  .system-story-mobile-media {
    margin: 30px 0 0;
    display: block;
    overflow: hidden;
    background: #f2f5f5;
    border: 1px solid var(--system-line);
    border-radius: 4px;
  }

  .system-story-mobile-media img {
    width: 100%;
    height: 360px;
    object-fit: contain;
    object-position: center top;
  }

  .system-section-head-dark {
    padding-top: 96px;
    padding-bottom: 86px;
  }

  .system-capability-band {
    padding: 76px 0;
  }

  .system-capability-copy h3 {
    font-size: 29px;
  }

  .system-capability-copy ul {
    grid-template-columns: 1fr;
  }

  .system-capability-copy li:nth-child(odd) {
    margin-right: 0;
  }

  .system-capability-media img {
    height: 360px;
  }

  .system-terminals {
    padding: 100px 0 110px;
  }

  .system-terminal-stage {
    min-height: 0;
    margin-top: 60px;
  }

  .system-desktop img {
    height: 340px;
  }

  .system-phones {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% + var(--page-pad));
    height: auto;
    margin-top: 36px;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 0 var(--page-pad) 18px 0;
    pointer-events: auto;
    transform: none;
    scroll-snap-type: x mandatory;
  }

  .system-phone {
    position: relative;
    right: auto;
    bottom: auto;
    width: 196px;
    min-width: 196px;
    scroll-snap-align: start;
  }

  .system-phone img {
    height: 390px;
  }

  .system-outcomes {
    padding: 70px 0;
  }

  .system-outcome {
    min-height: 160px;
    padding: 30px 22px;
  }

  .system-outcome strong {
    font-size: 25px;
  }

  .system-related {
    padding: 88px 0;
  }

  .system-related-copy h2 {
    font-size: 34px;
  }

  .system-related-media,
  .system-related-media img {
    min-height: 0;
    height: 340px;
  }
}

@media (max-width: 560px) {
  .system-hero {
    padding-top: 48px;
  }

  .system-title-line > p {
    font-size: 10px;
  }

  .system-hero h1 {
    font-size: 36px;
  }

  .system-hero-en {
    font-size: 10px;
  }

  .system-audience {
    align-items: flex-start;
  }

  .system-hero-window {
    min-height: 0;
  }

  .system-window-bar {
    height: 34px;
  }

  .system-facts {
    grid-template-columns: 1fr;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .system-fact {
    min-height: 76px;
    padding: 16px 0;
    display: grid;
    grid-template-columns: 88px 1fr;
    align-items: center;
    border-left: 0;
    border-bottom: 1px solid var(--system-line);
  }

  .system-fact:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .system-fact strong {
    margin-top: 0;
  }

  .system-section-head h2,
  .system-terminal-head h2 {
    font-size: 31px;
  }

  .system-story-mobile-media img,
  .system-capability-media img {
    height: 280px;
  }

  .system-capability-copy h3 {
    font-size: 26px;
  }

  .system-desktop img {
    height: 260px;
  }

  .system-outcome-grid {
    grid-template-columns: 1fr;
  }

  .system-outcome {
    min-height: 124px;
    border-left: 0;
    border-bottom: 1px solid var(--system-line);
  }

  .system-outcome:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .system-related-copy h2 {
    font-size: 30px;
  }

  .system-related-media,
  .system-related-media img {
    height: 270px;
  }

  .system-related-media span {
    right: 10px;
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .system-reveal {
    opacity: 1;
    transform: none;
  }

  .system-story-image-wrap img,
  .system-related-media img {
    transition: none;
  }
}

/* Superseded one-screen experiment retained outside the active viewport range. */
@media screen and (max-width: 0px) {
/* One-screen system narrative */
.system-capabilities {
  padding: 88px 0;
  background: var(--system-warm);
}

.system-capabilities .system-section-head-dark {
  padding-top: 0;
  padding-bottom: 0;
  color: var(--system-ink);
  background: transparent;
  box-shadow: none;
  clip-path: none;
}

.system-capabilities .system-section-head-dark > p {
  color: var(--system-green);
}

.system-capabilities .system-section-head-dark h2 {
  color: var(--system-ink);
}

.system-capabilities .system-section-head-dark > div {
  color: var(--system-copy);
}

.system-capability-console {
  margin-top: 46px;
}

.system-capability-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--system-line);
  border-bottom: 1px solid var(--system-line);
}

.system-capability-tab {
  min-width: 0;
  min-height: 82px;
  padding: 15px 22px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 12px;
  color: var(--system-muted);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--system-line);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.22s ease,
    background 0.22s ease;
}

.system-capability-tab:first-child {
  border-left: 1px solid var(--system-line);
}

.system-capability-tab span {
  color: var(--system-orange);
  font-size: 11px;
  font-weight: 900;
}

.system-capability-tab strong {
  overflow: hidden;
  font-size: 14px;
  line-height: 1.5;
  text-overflow: ellipsis;
}

.system-capability-tab:hover,
.system-capability-tab.is-active {
  color: #fff;
  background: var(--system-dark);
}

.system-capability-panel {
  padding-top: 42px;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(540px, 1.28fr);
  align-items: center;
  gap: 84px;
}

.system-capability-panel[hidden] {
  display: none;
}

.system-capability-panel .system-capability-media img {
  height: 410px;
}

@media (min-width: 900px) and (min-height: 560px) {
  html {
    scroll-snap-type: y mandatory;
  }

  .system-hero,
  .system-story,
  .system-capabilities,
  .system-terminals,
  .system-outcomes,
  .system-related,
  .system-cta {
    height: calc(100svh - var(--header-height));
    min-height: 0;
    scroll-snap-align: start;
  }

  .system-hero {
    padding: 28px 0 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) 76px;
  }

  .system-hero-grid {
    min-height: 0;
    height: 100%;
    grid-template-columns: minmax(330px, 0.78fr) minmax(500px, 1.22fr);
    gap: 52px;
  }

  .system-title-line {
    gap: 13px;
  }

  .system-identity {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    background-size: 154px auto;
  }

  .system-hero h1 {
    margin-top: 17px;
    font-size: 50px;
    line-height: 1.04;
  }

  .system-hero-en {
    margin-top: 9px;
  }

  .system-hero-summary {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.72;
  }

  .system-audience {
    margin-top: 12px;
  }

  .system-hero-actions {
    margin-top: 18px;
  }

  .system-hero-actions .detail-button {
    min-height: 42px;
  }

  .system-hero-window {
    width: 100%;
    max-height: 450px;
    box-shadow: 0 20px 48px rgba(24, 56, 54, 0.13);
  }

  .system-hero-window img {
    max-height: 410px;
  }

  .system-facts {
    min-height: 76px;
    height: 76px;
    margin-top: 0;
  }

  .system-fact {
    padding: 12px 28px;
  }

  .system-fact strong {
    margin-top: 5px;
    font-size: 15px;
  }

  .system-story {
    padding: 34px 0;
  }

  .system-story .system-section-head,
  .system-capabilities .system-section-head,
  .system-terminals .system-terminal-head {
    min-height: 94px;
    grid-template-columns: minmax(380px, 0.9fr) minmax(300px, 0.62fr);
    column-gap: 72px;
  }

  .system-story .system-section-head > p,
  .system-capabilities .system-section-head > p,
  .system-terminals .system-terminal-head > p {
    margin-bottom: 10px;
  }

  .system-story .system-section-head h2,
  .system-capabilities .system-section-head h2,
  .system-terminals .system-terminal-head h2 {
    font-size: 34px;
    line-height: 1.24;
  }

  .system-story .system-section-head > div,
  .system-capabilities .system-section-head > div,
  .system-terminals .system-terminal-head > div {
    font-size: 14px;
    line-height: 1.72;
  }

  .system-story-layout {
    height: calc(100% - 120px);
    margin-top: 20px;
    grid-template-columns: minmax(500px, 1.18fr) minmax(300px, 0.72fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 50px;
  }

  .system-story-window {
    position: static;
    top: auto;
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-rows: 38px minmax(0, 1fr) 64px;
    box-shadow: 0 18px 42px rgba(24, 56, 54, 0.12);
  }

  .system-story-image-wrap {
    height: auto;
  }

  .system-story-window figcaption {
    min-height: 64px;
    padding: 12px 20px;
  }

  .system-story-steps {
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .system-story-step,
  .system-story-step:last-child {
    min-height: 0;
    flex: 0 0 57px;
    padding: 9px 0 9px 38px;
    align-content: start;
    overflow: hidden;
    transition:
      flex-basis 0.28s ease,
      background 0.28s ease;
  }

  .system-story-step.is-active {
    flex: 1 1 0;
  }

  .system-story-marker {
    top: 28px;
    left: -10px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
  }

  .system-story-step.is-active .system-story-marker {
    transform: translateY(-50%) scale(1.06);
  }

  .system-story-copy {
    opacity: 0.62;
    transform: none;
  }

  .system-story-copy > p {
    font-size: 9px;
  }

  .system-story-copy h3 {
    margin-top: 3px;
    font-size: 16px;
    line-height: 1.45;
  }

  .system-story-copy > div {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 13px;
    line-height: 1.72;
    transition:
      max-height 0.28s ease,
      margin 0.28s ease,
      opacity 0.28s ease;
  }

  .system-story-step.is-active .system-story-copy {
    opacity: 1;
  }

  .system-story-step.is-active .system-story-copy h3 {
    margin-top: 8px;
    font-size: 22px;
  }

  .system-story-step.is-active .system-story-copy > div {
    max-height: 112px;
    margin-top: 10px;
    opacity: 1;
  }

  .system-capabilities {
    padding: 32px 0;
  }

  .system-capability-console {
    height: calc(100% - 120px);
    margin-top: 20px;
  }

  .system-capability-tabs {
    height: 64px;
  }

  .system-capability-tab {
    min-height: 64px;
    padding: 10px 16px;
  }

  .system-capability-panel {
    height: calc(100% - 64px);
    padding-top: 22px;
    grid-template-columns: minmax(300px, 0.72fr) minmax(470px, 1.28fr);
    gap: 56px;
  }

  .system-capability-copy h3 {
    margin-top: 10px;
    font-size: 27px;
  }

  .system-capability-copy > p {
    margin-top: 13px;
    font-size: 13px;
    line-height: 1.72;
  }

  .system-capability-copy ul {
    margin-top: 18px;
  }

  .system-capability-copy li {
    min-height: 42px;
    padding: 9px 8px 8px 0;
    font-size: 12px;
  }

  .system-capability-panel .system-capability-media img {
    height: 300px;
  }

  .system-terminals {
    padding: 34px 0;
  }

  .system-terminal-stage {
    min-height: 0;
    height: calc(100% - 118px);
    margin-top: 20px;
  }

  .system-desktop {
    width: 80%;
  }

  .system-desktop img {
    height: 340px;
  }

  .system-phones {
    right: var(--page-pad);
    bottom: 0;
    width: 38%;
    height: 330px;
    transform: none;
  }

  .system-phone {
    width: 145px;
    padding: 7px 6px 6px;
  }

  .system-phone img {
    height: 275px;
  }

  .system-phone-1 {
    right: 104px;
    bottom: 0;
  }

  .system-phone-2 {
    right: 0;
    bottom: 28px;
  }

  .system-phone-3 {
    right: 205px;
    bottom: 22px;
  }

  .system-outcomes {
    padding: 0;
    display: grid;
    align-content: center;
  }

  .system-outcome-head h2 {
    font-size: 36px;
  }

  .system-outcome {
    min-height: 158px;
    padding: 30px 32px;
  }

  .system-related {
    padding: 0;
    display: flex;
    align-items: center;
  }

  .system-related-layout {
    grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
    gap: 70px;
  }

  .system-related-copy h2 {
    font-size: 36px;
  }

  .system-related-media,
  .system-related-media img {
    min-height: 0;
    height: 350px;
  }

  .system-cta {
    padding: 64px 0;
  }
}

@media (min-width: 900px) and (max-height: 700px) {
  .system-hero {
    padding-top: 18px;
    grid-template-rows: minmax(0, 1fr) 62px;
  }

  .system-identity {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    background-size: 126px auto;
  }

  .system-hero h1 {
    margin-top: 11px;
    font-size: 42px;
  }

  .system-hero-summary {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.62;
  }

  .system-audience {
    margin-top: 8px;
    font-size: 11px;
  }

  .system-hero-actions {
    margin-top: 12px;
  }

  .system-facts {
    min-height: 62px;
    height: 62px;
  }

  .system-fact {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .system-story,
  .system-capabilities,
  .system-terminals {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .system-story .system-section-head,
  .system-capabilities .system-section-head,
  .system-terminals .system-terminal-head {
    min-height: 76px;
  }

  .system-story .system-section-head h2,
  .system-capabilities .system-section-head h2,
  .system-terminals .system-terminal-head h2 {
    font-size: 29px;
  }

  .system-story-layout,
  .system-capability-console,
  .system-terminal-stage {
    height: calc(100% - 92px);
    margin-top: 12px;
  }

  .system-capability-tabs {
    height: 56px;
  }

  .system-capability-tab {
    min-height: 56px;
  }

  .system-capability-panel {
    height: calc(100% - 56px);
    padding-top: 14px;
  }

  .system-capability-panel .system-capability-media img {
    height: 245px;
  }

  .system-desktop img {
    height: 285px;
  }

  .system-phones {
    height: 285px;
    transform: scale(0.86);
    transform-origin: right bottom;
  }

  .system-related-media,
  .system-related-media img {
    height: 300px;
  }

  .system-cta {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}

@media (max-width: 899px) {
  html {
    scroll-snap-type: none;
  }

  .system-capabilities {
    padding: 92px 0;
  }

  .system-capabilities .system-section-head-dark {
    padding-top: 0;
    padding-bottom: 0;
  }

  .system-capability-console {
    margin-top: 48px;
  }

  .system-capability-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .system-capability-tab {
    width: 220px;
    min-width: 220px;
    scroll-snap-align: start;
  }

  .system-capability-panel {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .system-capability-panel .system-capability-media img {
    height: 360px;
  }
}

@media (max-width: 560px) {
  .system-capabilities {
    padding: 78px 0;
  }

  .system-capability-console {
    margin-top: 36px;
  }

  .system-capability-tab {
    width: 190px;
    min-width: 190px;
    min-height: 70px;
    padding: 12px 15px;
  }

  .system-capability-panel {
    padding-top: 34px;
    gap: 34px;
  }

  .system-capability-panel .system-capability-copy h3 {
    font-size: 26px;
  }

  .system-capability-panel .system-capability-media img {
    height: 250px;
  }

  .system-story-step:not(.is-active) .system-story-mobile-media {
    display: none;
  }
}

@media (max-width: 899px) {
  html {
    scroll-snap-type: y mandatory;
  }

  .system-hero,
  .system-story,
  .system-capabilities,
  .system-terminals,
  .system-outcomes,
  .system-related,
  .system-cta {
    min-height: calc(100svh - var(--header-height));
    scroll-snap-align: start;
  }

  .system-hero {
    height: calc(100svh - var(--header-height));
    padding: 30px 0 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) 76px;
  }

  .system-hero-grid {
    height: 100%;
    min-height: 0;
    gap: 24px;
  }

  .system-hero h1 {
    margin-top: 18px;
  }

  .system-hero-summary {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.66;
  }

  .system-audience {
    margin-top: 10px;
  }

  .system-hero-actions {
    margin-top: 16px;
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .system-hero-actions .detail-button {
    min-height: 40px;
    padding: 0 16px;
    font-size: 12px;
  }

  .system-hero-window {
    align-self: end;
  }

  .system-hero-window img {
    height: 280px;
    object-fit: contain;
  }

  .system-facts {
    height: 76px;
    min-height: 76px;
    margin-top: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .system-fact {
    min-height: 76px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-left: 1px solid var(--system-line);
    border-bottom: 0;
  }

  .system-fact:last-child {
    border-right: 1px solid var(--system-line);
  }

  .system-fact strong {
    margin-top: 4px;
    font-size: 13px;
  }

  .system-story {
    height: calc(100svh - var(--header-height));
    padding: 28px 0;
    overflow: hidden;
  }

  .system-story .system-section-head,
  .system-capabilities .system-section-head,
  .system-terminals .system-terminal-head {
    display: block;
  }

  .system-story .system-section-head > p,
  .system-capabilities .system-section-head > p,
  .system-terminals .system-terminal-head > p {
    margin-bottom: 8px;
  }

  .system-story .system-section-head h2,
  .system-capabilities .system-section-head h2,
  .system-terminals .system-terminal-head h2 {
    font-size: 30px;
    line-height: 1.28;
  }

  .system-story .system-section-head > div,
  .system-capabilities .system-section-head > div,
  .system-terminals .system-terminal-head > div {
    max-width: none;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.64;
  }

  .system-story-layout {
    height: calc(100% - 152px);
    margin-top: 18px;
    display: block;
  }

  .system-story-stage {
    display: none;
  }

  .system-story-steps {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .system-story-step,
  .system-story-step:last-child {
    min-height: 0;
    flex: 0 0 48px;
    padding: 7px 0 7px 28px;
    align-content: start;
    overflow: hidden;
  }

  .system-story-step.is-active {
    flex: 1 1 0;
  }

  .system-story-marker {
    top: 24px;
    left: -9px;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
  }

  .system-story-step.is-active .system-story-marker {
    transform: translateY(-50%) scale(1.04);
  }

  .system-story-copy {
    opacity: 0.62;
    transform: none;
  }

  .system-story-copy > p {
    display: none;
  }

  .system-story-copy h3 {
    margin-top: 0;
    font-size: 15px;
    line-height: 1.55;
  }

  .system-story-copy > div {
    display: none;
  }

  .system-story-step.is-active .system-story-copy {
    opacity: 1;
  }

  .system-story-step.is-active .system-story-copy > p {
    display: block;
    font-size: 9px;
  }

  .system-story-step.is-active .system-story-copy h3 {
    margin-top: 5px;
    font-size: 21px;
  }

  .system-story-step.is-active .system-story-copy > div {
    margin-top: 8px;
    display: block;
    font-size: 12px;
    line-height: 1.62;
  }

  .system-story-mobile-media,
  .system-story-step:not(.is-active) .system-story-mobile-media {
    display: none;
  }

  .system-story-step.is-active .system-story-mobile-media {
    margin-top: 12px;
    display: block;
  }

  .system-story-step.is-active .system-story-mobile-media img {
    height: 250px;
  }

  .system-capabilities {
    height: calc(100svh - var(--header-height));
    min-height: 0;
    padding: 28px 0;
    overflow: hidden;
  }

  .system-capability-console {
    height: calc(100% - 152px);
    margin-top: 18px;
  }

  .system-capability-tabs {
    height: 62px;
    scrollbar-width: none;
  }

  .system-capability-tabs::-webkit-scrollbar {
    display: none;
  }

  .system-capability-tab {
    width: 210px;
    min-width: 210px;
    min-height: 62px;
    padding: 9px 14px;
  }

  .system-capability-panels {
    height: calc(100% - 62px);
  }

  .system-capability-panel {
    height: 100%;
    padding-top: 18px;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 18px;
    overflow: hidden;
  }

  .system-capability-panel .system-capability-copy h3 {
    margin-top: 7px;
    font-size: 23px;
  }

  .system-capability-panel .system-capability-copy > p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.62;
  }

  .system-capability-panel .system-capability-copy ul {
    margin-top: 12px;
  }

  .system-capability-panel .system-capability-copy li {
    min-height: 34px;
    padding: 6px 5px 5px 0;
    font-size: 11px;
  }

  .system-capability-panel .system-capability-media {
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-rows: 34px minmax(0, 1fr);
    overflow: hidden;
  }

  .system-capability-panel .system-capability-media img {
    height: 100%;
    min-height: 0;
  }

  .system-terminals {
    height: calc(100svh - var(--header-height));
    min-height: 0;
    padding: 28px 0;
    overflow: hidden;
  }

  .system-terminal-stage {
    min-height: 0;
    height: calc(100% - 152px);
    margin-top: 18px;
  }

  .system-desktop {
    width: 100%;
  }

  .system-desktop img {
    height: 230px;
  }

  .system-phones {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% + var(--page-pad));
    height: 274px;
    margin-top: 16px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 0 var(--page-pad) 10px 0;
    transform: none;
    pointer-events: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .system-phones::-webkit-scrollbar {
    display: none;
  }

  .system-phone {
    position: relative;
    right: auto;
    bottom: auto;
    width: 132px;
    min-width: 132px;
    padding: 6px 5px 5px;
    scroll-snap-align: start;
  }

  .system-phone img {
    height: 236px;
  }

  .system-outcomes {
    height: calc(100svh - var(--header-height));
    min-height: 0;
    padding: 30px 0;
    display: grid;
    align-content: center;
    overflow: hidden;
  }

  .system-outcome-head h2 {
    margin-top: 12px;
    font-size: 29px;
  }

  .system-outcome-grid {
    margin-top: 34px;
  }

  .system-outcome {
    min-height: 118px;
    padding: 23px 20px;
  }

  .system-related {
    height: calc(100svh - var(--header-height));
    min-height: 0;
    padding: 42px 0;
    overflow: hidden;
  }

  .system-related-layout {
    height: 100%;
    align-content: center;
    gap: 30px;
  }

  .system-related-media,
  .system-related-media img {
    height: 280px;
  }

  .system-cta {
    height: calc(100svh - var(--header-height));
    min-height: 0;
    padding: 44px 0;
  }
}

@media (max-width: 560px) {
  .system-hero {
    padding-top: 28px;
    grid-template-rows: minmax(0, 1fr) 70px;
  }

  .system-hero-grid {
    gap: 20px;
  }

  .system-title-line {
    gap: 10px;
  }

  .system-identity {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    background-size: 138px auto;
  }

  .system-hero h1 {
    margin-top: 14px;
    font-size: 32px;
  }

  .system-hero-en {
    margin-top: 7px;
  }

  .system-hero-summary {
    margin-top: 13px;
    font-size: 13px;
    line-height: 1.6;
  }

  .system-audience {
    margin-top: 8px;
    font-size: 11px;
  }

  .system-hero-actions {
    margin-top: 12px;
    gap: 14px;
  }

  .system-text-link {
    gap: 7px;
    font-size: 12px;
  }

  .system-text-link span {
    width: 28px;
    height: 28px;
  }

  .system-hero-window img {
    height: 200px;
  }

  .system-facts {
    height: 70px;
    min-height: 70px;
  }

  .system-fact {
    min-height: 70px;
    padding: 9px 7px;
  }

  .system-fact span {
    font-size: 9px;
  }

  .system-fact strong {
    font-size: 10px;
    line-height: 1.45;
  }

  .system-story,
  .system-capabilities,
  .system-terminals {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .system-story .system-section-head h2,
  .system-capabilities .system-section-head h2,
  .system-terminals .system-terminal-head h2 {
    font-size: 26px;
  }

  .system-story .system-section-head > div,
  .system-capabilities .system-section-head > div,
  .system-terminals .system-terminal-head > div {
    font-size: 12px;
  }

  .system-story-layout,
  .system-capability-console,
  .system-terminal-stage {
    height: calc(100% - 150px);
    margin-top: 14px;
  }

  .system-story-step.is-active .system-story-mobile-media img {
    height: 195px;
  }

  .system-capability-tabs {
    height: 56px;
  }

  .system-capability-tab {
    width: 180px;
    min-width: 180px;
    min-height: 56px;
  }

  .system-capability-panels {
    height: calc(100% - 56px);
  }

  .system-capability-panel {
    padding-top: 14px;
    gap: 13px;
  }

  .system-capability-panel .system-capability-copy h3 {
    font-size: 20px;
  }

  .system-capability-panel .system-capability-copy > p {
    font-size: 11px;
    line-height: 1.55;
  }

  .system-capability-panel .system-capability-copy li {
    min-height: 30px;
    font-size: 10px;
  }

  .system-desktop img {
    height: 195px;
  }

  .system-phones {
    height: 250px;
    margin-top: 12px;
  }

  .system-phone {
    width: 120px;
    min-width: 120px;
  }

  .system-phone img {
    height: 214px;
  }

  .system-outcome-head h2 {
    font-size: 26px;
  }

  .system-outcome-grid {
    margin-top: 26px;
  }

  .system-outcome {
    min-height: 106px;
  }

  .system-related {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .system-related-media,
  .system-related-media img {
    height: 240px;
  }
}
}
