.feature-availability {
  max-width: 64ch;
  margin-top: 2rem;
  padding: 1rem 2rem;
  border-left: 3px solid #1a3556;
  background: #e8edf3;
  color: #555555;
  font-size: 0.88rem;
}
.router-head {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  border-bottom: 2px solid #000000;
  padding-bottom: 1rem;
}
.router-head h2 {
  margin: 0;
}
.router-sub {
  max-width: 64ch;
  color: #555555;
  font-weight: 300;
  line-height: 1.7;
  margin: 1rem 0 2rem;
}
.router {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #cccccc;
  border-top: 2px solid #000000;
}
.router-row {
  display: block;
  color: inherit;
  border-bottom: 1px solid #cccccc;
  transition: background 0.15s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.router-row:last-child {
  border-bottom: none;
}
.router-row:hover {
  background: #e8edf3;
  color: inherit;
}
.router-row:focus-visible {
  outline: 2px solid var(--arc);
  outline-offset: -2px;
}
.router-row-inner {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto minmax(12rem, 1.05fr);
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem;
}
.router-idx {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 600;
  color: #888888;
  letter-spacing: 0.04em;
  transition: color 0.15s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.router-row:hover .router-idx {
  color: var(--arc);
}
.router-job {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #000000;
}
.router-job small {
  display: block;
  font-family: "DM Sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  color: #555555;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 0.15rem;
}
.router-arrow {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 1rem;
  color: #999999;
  transition: color 0.15s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.15s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.router-row:hover .router-arrow {
  color: var(--arc);
  transform: translateX(4px);
}
.router-cap {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--arc);
}
.router-row {
  opacity: 0;
  transform: translateY(6px);
  animation: router-row-in 0.42s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.router-row:nth-child(1) {
  animation-delay: 0.06s;
}
.router-row:nth-child(2) {
  animation-delay: 0.13s;
}
.router-row:nth-child(3) {
  animation-delay: 0.2s;
}
.router-row:nth-child(4) {
  animation-delay: 0.27s;
}
.router-row:nth-child(5) {
  animation-delay: 0.34s;
}
.router-row:nth-child(6) {
  animation-delay: 0.41s;
}
.router-row:nth-child(7) {
  animation-delay: 0.48s;
}
@keyframes router-row-in {
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .router-row {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 760px) {
  .router-row-inner {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.75rem 1rem;
  }
  .router-arrow {
    display: none;
  }
  .router-cap {
    grid-column: 2;
  }
}
.metric-statement {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
  border: 1px solid #cccccc;
  border-top: 3px solid #1a3556;
  background: #e8edf3;
  padding: 4rem;
}
@media (max-width: 760px) {
  .metric-statement {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.metric-statement-figure {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid rgba(26, 53, 86, 0.25);
  padding-right: 4rem;
}
@media (max-width: 760px) {
  .metric-statement-figure {
    border-right: none;
    padding-right: 0;
  }
}
.metric-statement-num {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-weight: 600;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--arc);
  letter-spacing: -0.02em;
}
.metric-statement-num-label {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #555555;
  margin-top: 0.5rem;
}
.metric-statement-body h2 {
  margin: 0.25rem 0 0.75rem;
}
.metric-statement-body p {
  color: #555555;
  font-weight: 300;
  line-height: 1.7;
  margin: 0 0 1rem;
  max-width: 60ch;
}
