.home-system-example {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  color: #fff;
  background: var(--fz-navy);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.home-system-example p { display: grid; gap: 5px; }
.home-system-example small { color: rgba(255,255,255,.56); font-size: 10px; font-weight: 900; }
.home-system-example strong { font-size: 18px; line-height: 1.35; font-weight: 900; word-break: keep-all; }
.home-system-example button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 0 13px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 5px;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.home-system-example button:hover { background: rgba(255,255,255,.09); }
.home-system-example button:focus-visible { outline: 3px solid var(--fz-blue); outline-offset: 3px; }
.home-system-example button span { font-size: 17px; line-height: 1; }
.home-system-sequence { margin-bottom: 30px; border-top: 0; }
.home-system-sequence li {
  position: relative;
  min-height: 116px;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 20px;
  background: #fff;
  transition: color .26s ease, background-color .26s ease, box-shadow .26s ease;
}
.home-system-sequence li::before {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
  height: 3px;
  background: var(--fz-blue);
  transition: right 1.05s linear;
}
.home-system-sequence li.is-active {
  color: #fff;
  background: var(--fz-ink);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.home-system-sequence li.is-active::before { right: 0; }
.home-system-sequence li > div { display: grid; gap: 8px; }
.home-system-sequence li span { color: var(--fz-muted); font-size: 12px; line-height: 1.5; font-weight: 650; word-break: keep-all; }
.home-system-sequence li.is-active small { color: #8fb0ff; }
.home-system-sequence li.is-active span { color: rgba(255,255,255,.67); }

@media (max-width: 860px) {
  .home-system-sequence { grid-template-columns: 1fr 1fr; }
  .home-system-sequence li { min-height: 108px; border-right: 1px solid var(--fz-line); border-bottom: 1px solid var(--fz-line); }
  .home-system-sequence li:nth-child(2n) { border-right: 0; }
  .home-system-sequence li:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 560px) {
  .home-system-example { min-height: 0; align-items: flex-start; padding: 17px 16px; }
  .home-system-example strong { font-size: 16px; }
  .home-system-example button { min-width: 38px; padding: 0 10px; }
  .home-system-example button span { font-size: 16px; }
  .home-system-sequence { grid-template-columns: 1fr; }
  .home-system-sequence li,
  .home-system-sequence li:nth-child(2n),
  .home-system-sequence li:nth-last-child(-n+2) { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--fz-line); }
  .home-system-sequence li:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .home-system-sequence li,
  .home-system-sequence li::before { transition: none !important; }
}
