:root {
  --handbook-sidebar: 284px;
  --handbook-topbar: 70px;
  --handbook-rail: 244px;
}

body.handbook-body {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 58% -8%,
      rgba(59, 215, 255, 0.09),
      transparent 28rem
    ),
    var(--navy-deep);
  color: #e9f0fb;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.handbook-body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  pointer-events: none;
}

.handbook-topbar {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: var(--handbook-sidebar) minmax(260px, 1fr) auto;
  min-height: var(--handbook-topbar);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 8, 23, 0.94);
  backdrop-filter: blur(18px);
}

.handbook-brand {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 12px 23px;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-weight: 700;
  text-decoration: none;
}

.handbook-brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(59, 215, 255, 0.2);
}

.handbook-brand small {
  display: block;
  margin-top: -2px;
  color: var(--mint);
  font-family: var(--sans);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.handbook-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
}

.handbook-search {
  position: relative;
  width: min(100%, 560px);
}

.handbook-search::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 15px;
  width: 12px;
  height: 12px;
  border: 1.5px solid #8294b3;
  border-radius: 50%;
  content: "";
  transform: translateY(-60%);
  pointer-events: none;
}

.handbook-search::after {
  position: absolute;
  z-index: 1;
  top: calc(50% + 5px);
  left: 26px;
  width: 6px;
  height: 1.5px;
  background: #8294b3;
  content: "";
  transform: rotate(45deg);
  pointer-events: none;
}

.handbook-search input {
  width: 100%;
  height: 42px;
  padding: 0 84px 0 42px;
  border: 1px solid rgba(185, 200, 227, 0.22);
  border-radius: 7px;
  background: rgba(12, 28, 62, 0.64);
  color: var(--white);
  font-size: 0.79rem;
}

.handbook-search input::placeholder {
  color: #889bb9;
}

.handbook-search kbd {
  position: absolute;
  top: 50%;
  right: 10px;
  padding: 2px 7px;
  border: 1px solid rgba(185, 200, 227, 0.22);
  border-radius: 5px;
  color: #8496b3;
  font-family: var(--sans);
  font-size: 0.62rem;
  transform: translateY(-50%);
}

.guide-search-results {
  position: absolute;
  z-index: 60;
  top: calc(100% + 7px);
  right: 0;
  left: 0;
  display: none;
  overflow: hidden;
  border: 1px solid rgba(116, 247, 200, 0.3);
  border-radius: 8px;
  background: #07142e;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
}

.guide-search-results[data-open="true"] {
  display: block;
}

.guide-search-results a,
.guide-search-empty {
  display: block;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  color: #d8e4f5;
  font-size: 0.77rem;
  text-decoration: none;
}

.guide-search-results a:last-child {
  border-bottom: 0;
}

.guide-search-results a:hover,
.guide-search-results a:focus-visible {
  background: rgba(116, 247, 200, 0.08);
  color: var(--mint);
}

.guide-search-results span {
  display: block;
  color: #8799b7;
  font-size: 0.65rem;
}

.handbook-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 11px 22px 11px 0;
}

.handbook-home-link,
.handbook-portal-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(185, 200, 227, 0.22);
  border-radius: 7px;
  color: #c8d4e7;
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.handbook-portal-link {
  border-color: rgba(116, 247, 200, 0.48);
  background: rgba(116, 247, 200, 0.07);
  color: var(--mint);
}

.handbook-home-link:hover,
.handbook-home-link:focus-visible,
.handbook-portal-link:hover,
.handbook-portal-link:focus-visible {
  border-color: var(--mint);
  color: var(--mint);
}

.handbook-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(185, 200, 227, 0.24);
  border-radius: 7px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.handbook-menu-button span,
.handbook-menu-button::before,
.handbook-menu-button::after {
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
  content: "";
}

.handbook-menu-button span {
  margin: 4px 0;
}

.handbook-shell {
  display: grid;
  grid-template-columns: var(--handbook-sidebar) minmax(0, 1fr);
  min-height: 100vh;
  padding-top: var(--handbook-topbar);
}

.handbook-sidebar {
  position: sticky;
  z-index: 30;
  top: var(--handbook-topbar);
  height: calc(100vh - var(--handbook-topbar));
  overflow-y: auto;
  border-right: 1px solid var(--line);
  background: rgba(5, 13, 31, 0.94);
  scrollbar-color: rgba(116, 247, 200, 0.22) transparent;
}

.handbook-sidebar-inner {
  padding: 30px 20px 44px;
}

.handbook-nav-group {
  margin-bottom: 25px;
}

.handbook-nav-group > p {
  margin: 0 10px 8px;
  color: #7185a6;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.handbook-nav-group a {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 36px;
  margin: 2px 0;
  padding: 7px 10px;
  border-left: 2px solid transparent;
  border-radius: 0 6px 6px 0;
  color: #aebdd4;
  font-size: 0.75rem;
  font-weight: 650;
  text-decoration: none;
}

.handbook-nav-group a::before {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(185, 200, 227, 0.16);
  border-radius: 6px;
  color: #6f84a7;
  font-size: 0.58rem;
  content: attr(data-icon);
}

.handbook-nav-group a:hover,
.handbook-nav-group a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
}

.handbook-nav-group a[aria-current="page"] {
  border-left-color: var(--mint);
  background: linear-gradient(
    90deg,
    rgba(116, 247, 200, 0.12),
    rgba(116, 247, 200, 0.025)
  );
  color: var(--mint);
}

.handbook-nav-group a[aria-current="page"]::before {
  border-color: rgba(116, 247, 200, 0.4);
  color: var(--mint);
}

.handbook-sidebar-help {
  margin: 12px 8px 0;
  padding: 16px;
  border: 1px solid rgba(255, 200, 87, 0.24);
  border-radius: 8px;
  background: rgba(255, 200, 87, 0.045);
}

.handbook-sidebar-help strong {
  display: block;
  margin-bottom: 5px;
  color: #fff3c6;
  font-family: var(--serif);
  font-size: 0.94rem;
  font-weight: 400;
}

.handbook-sidebar-help p {
  margin-bottom: 10px;
  color: #91a3bf;
  font-size: 0.67rem;
  line-height: 1.45;
}

.handbook-sidebar-help a {
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 850;
  text-decoration: none;
}

.handbook-content {
  min-width: 0;
}

.handbook-layout {
  display: grid;
  grid-template-columns: minmax(0, 860px) var(--handbook-rail);
  gap: clamp(42px, 5vw, 76px);
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: 72px clamp(30px, 5vw, 72px) 110px;
}

.guide-article {
  min-width: 0;
}

.guide-article-header {
  margin-bottom: 54px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.guide-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
  color: #7186a7;
  font-size: 0.68rem;
  font-weight: 750;
}

.guide-breadcrumbs a {
  color: #9fb0c9;
  text-decoration: none;
}

.guide-breadcrumbs a:hover {
  color: var(--mint);
}

.guide-eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--mint);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.guide-eyebrow::before {
  width: 29px;
  height: 1px;
  background: currentColor;
  content: "";
}

.guide-article h1 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: clamp(3.15rem, 5vw, 5.5rem);
  line-height: 0.98;
}

.guide-article h1 em {
  color: var(--gold);
}

.guide-lede {
  max-width: 720px;
  margin-bottom: 0;
  color: #b9c8df;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.65;
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}

.guide-meta span {
  padding: 5px 9px;
  border: 1px solid rgba(185, 200, 227, 0.18);
  border-radius: 999px;
  color: #8fa1bd;
  font-size: 0.64rem;
  font-weight: 750;
}

.guide-section {
  margin: 0 0 68px;
  scroll-margin-top: calc(var(--handbook-topbar) + 28px);
}

.guide-section + .guide-section {
  padding-top: 4px;
}

.guide-section-kicker {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.guide-article h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.03;
}

.guide-article h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.22;
}

.guide-article h4 {
  margin: 0 0 7px;
  color: #dce8f7;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.guide-article p,
.guide-article li {
  color: #b8c5da;
}

.guide-article a {
  color: var(--mint);
  text-underline-offset: 3px;
}

.guide-article code {
  padding: 2px 5px;
  border: 1px solid rgba(59, 215, 255, 0.18);
  border-radius: 4px;
  background: rgba(59, 215, 255, 0.07);
  color: #c9f7ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86em;
}

.procedure {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: procedure;
}

.procedure > li {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 0 0 31px;
  counter-increment: procedure;
}

.procedure > li::before {
  position: relative;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 200, 87, 0.58);
  border-radius: 50%;
  background: #0a1733;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.92rem;
  content: counter(procedure);
}

.procedure > li:not(:last-child)::after {
  position: absolute;
  top: 39px;
  bottom: -1px;
  left: 18px;
  width: 1px;
  background: linear-gradient(var(--line-strong), rgba(116, 247, 200, 0.04));
  content: "";
}

.procedure > li > div {
  padding-top: 6px;
}

.procedure p {
  margin: 8px 0 0;
  font-size: 0.88rem;
  line-height: 1.62;
}

.procedure p strong {
  color: #dbe8f7;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.expected {
  color: #9fb8b1 !important;
}

.command-block {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
  padding: 14px 14px 14px 18px;
  border: 1px solid rgba(59, 215, 255, 0.25);
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    rgba(59, 215, 255, 0.07),
    rgba(14, 29, 64, 0.32)
  );
  box-shadow: inset 3px 0 0 rgba(59, 215, 255, 0.7);
}

.command-block code {
  padding: 0;
  border: 0;
  background: transparent;
  color: #ddfbff;
  font-size: 0.84rem;
  overflow-wrap: anywhere;
}

.copy-button {
  min-width: 72px;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid rgba(116, 247, 200, 0.35);
  border-radius: 6px;
  background: rgba(116, 247, 200, 0.07);
  color: var(--mint);
  font-size: 0.65rem;
  font-weight: 850;
  cursor: pointer;
}

.copy-button:hover {
  border-color: var(--mint);
  background: rgba(116, 247, 200, 0.13);
}

.guide-callout {
  margin: 28px 0;
  padding: 18px 20px;
  border: 1px solid rgba(116, 247, 200, 0.27);
  border-radius: 8px;
  background: rgba(116, 247, 200, 0.055);
}

.guide-callout.warning {
  border-color: rgba(255, 200, 87, 0.32);
  background: rgba(255, 200, 87, 0.055);
}

.guide-callout.danger {
  border-color: rgba(255, 107, 120, 0.32);
  background: rgba(255, 107, 120, 0.055);
}

.guide-callout p:last-child {
  margin-bottom: 0;
}

.guide-callout strong {
  color: var(--white);
}

.workflow-grid,
.role-directory,
.command-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 27px 0 0;
}

.workflow-card,
.role-card,
.command-card {
  position: relative;
  display: flex;
  min-height: 150px;
  flex-direction: column;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(
    145deg,
    rgba(17, 36, 77, 0.48),
    rgba(7, 16, 36, 0.32)
  );
  text-decoration: none;
}

a.workflow-card:hover,
a.role-card:hover {
  border-color: rgba(116, 247, 200, 0.34);
  background: linear-gradient(
    145deg,
    rgba(17, 46, 80, 0.7),
    rgba(7, 16, 36, 0.44)
  );
}

.workflow-card > span:first-child,
.role-card > span:first-child,
.command-card > span:first-child {
  color: var(--gold);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow-card strong,
.role-card strong,
.command-card strong {
  display: block;
  margin: 20px 0 8px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.13rem;
  font-weight: 400;
  line-height: 1.2;
}

.workflow-card p,
.role-card p,
.command-card p {
  margin-bottom: 0;
  color: #99aac3;
  font-size: 0.74rem;
  line-height: 1.5;
}

.workflow-card .card-arrow,
.role-card .card-arrow {
  margin-top: auto;
  padding-top: 16px;
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 850;
}

.command-card {
  min-height: 220px;
}

.command-card .command-block {
  margin: 15px 0 10px;
}

.command-card dl {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 5px 10px;
  margin: auto 0 0;
  font-size: 0.69rem;
}

.command-card dt {
  color: #778aa8;
  font-weight: 850;
}

.command-card dd {
  margin: 0;
  color: #aebdd2;
}

.reference-table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.reference-table th,
.reference-table td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.reference-table th {
  color: #7d91af;
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reference-table td:first-child {
  color: #e5edf8;
  font-weight: 750;
}

.check-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.84rem;
}

.check-list li::before {
  position: absolute;
  top: 0.22em;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 1px solid rgba(116, 247, 200, 0.42);
  border-radius: 50%;
  color: var(--mint);
  font-size: 0.55rem;
  content: "✓";
}

.plain-list li::before {
  position: absolute;
  top: 0.68em;
  left: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.portal-figure {
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 200, 87, 0.35);
  border-radius: 10px;
  background: #09142c;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

.portal-figure img {
  width: 100%;
}

.portal-figure figcaption {
  padding: 11px 14px;
  border-top: 1px solid var(--line);
  color: #889bb8;
  font-size: 0.66rem;
  line-height: 1.5;
}

.page-rail {
  position: sticky;
  top: calc(var(--handbook-topbar) + 35px);
  align-self: start;
}

.rail-panel {
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 22, 49, 0.56);
}

.rail-panel > p:first-child,
.rail-panel > h2 {
  margin: 0 0 13px;
  color: #7286a6;
  font-family: var(--sans);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rail-toc {
  display: grid;
  gap: 7px;
}

.rail-toc a {
  padding: 3px 0 3px 10px;
  border-left: 1px solid rgba(185, 200, 227, 0.18);
  color: #9aabc3;
  font-size: 0.69rem;
  line-height: 1.4;
  text-decoration: none;
}

.rail-toc a:hover,
.rail-toc a[aria-current="location"] {
  border-left-color: var(--mint);
  color: var(--mint);
}

.rail-panel strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
}

.rail-panel > p:not(:first-child) {
  margin-bottom: 12px;
  color: #8fa1bd;
  font-size: 0.68rem;
  line-height: 1.5;
}

.page-rail .command-block {
  flex-wrap: wrap;
  gap: 8px;
}

.page-rail .command-block code {
  white-space: nowrap;
}

.page-rail .copy-button {
  margin-left: auto;
}

.rail-link {
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 850;
  text-decoration: none;
}

.guide-next {
  display: flex;
  gap: 13px;
  justify-content: space-between;
  align-items: center;
  margin-top: 78px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.guide-next a {
  display: block;
  max-width: 48%;
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 850;
  text-decoration: none;
}

.guide-next a:last-child {
  text-align: right;
}

.guide-next span {
  display: block;
  margin-bottom: 5px;
  color: #7184a3;
  font-size: 0.59rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  margin-top: 70px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: #7185a4;
  font-size: 0.65rem;
}

.guide-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.guide-footer a {
  color: #8ea0ba;
  text-decoration: none;
}

.drawer-scrim {
  display: none;
}

@media (max-width: 1240px) {
  :root {
    --handbook-sidebar: 252px;
  }

  .handbook-layout {
    grid-template-columns: minmax(0, 820px) 218px;
    gap: 35px;
    padding-inline: 36px;
  }

  .handbook-home-link {
    display: none;
  }
}

@media (max-width: 1020px) {
  .handbook-topbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .handbook-brand {
    min-width: 224px;
    border-right: 0;
  }

  .handbook-menu-button {
    display: flex;
    margin-left: 14px;
  }

  .handbook-brand {
    min-width: 0;
    padding-left: 10px;
  }

  .handbook-brand span {
    display: none;
  }

  .handbook-shell {
    grid-template-columns: 1fr;
  }

  .handbook-sidebar {
    position: fixed;
    top: var(--handbook-topbar);
    bottom: 0;
    left: 0;
    width: 284px;
    height: auto;
    transform: translateX(-105%);
    transition: transform 180ms ease;
  }

  .handbook-body[data-menu-open="true"] .handbook-sidebar {
    transform: translateX(0);
  }

  .drawer-scrim {
    position: fixed;
    z-index: 25;
    inset: var(--handbook-topbar) 0 0;
    border: 0;
    background: rgba(0, 0, 0, 0.58);
  }

  .handbook-body[data-menu-open="true"] .drawer-scrim {
    display: block;
  }

  .handbook-layout {
    width: min(100%, 1010px);
  }
}

@media (max-width: 820px) {
  .handbook-layout {
    grid-template-columns: minmax(0, 1fr);
    max-width: 760px;
  }

  .page-rail {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 42px;
  }

  .page-rail .rail-panel:first-child {
    display: none;
  }

  .workflow-grid,
  .role-directory,
  .command-directory {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  :root {
    --handbook-topbar: 116px;
  }

  .handbook-topbar {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 58px 58px;
  }

  .handbook-menu-button {
    grid-column: 1;
    grid-row: 1;
    margin-left: 12px;
  }

  .handbook-brand {
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
    padding: 9px;
  }

  .handbook-brand img {
    width: 34px;
    height: 34px;
  }

  .handbook-actions {
    grid-column: 3;
    grid-row: 1;
    padding: 8px 12px 8px 0;
  }

  .handbook-portal-link {
    min-height: 36px;
    padding: 7px 9px;
    font-size: 0.62rem;
  }

  .handbook-search-wrap {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 7px 13px 9px;
    border-top: 1px solid rgba(185, 200, 227, 0.08);
  }

  .handbook-search input {
    height: 40px;
  }

  .handbook-layout {
    padding: 42px 21px 75px;
  }

  .guide-article-header {
    margin-bottom: 42px;
  }

  .guide-breadcrumbs {
    margin-bottom: 21px;
  }

  .guide-article h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .guide-article h2 {
    font-size: 2.05rem;
  }

  .guide-section {
    margin-bottom: 53px;
  }

  .procedure > li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .procedure > li::before {
    width: 32px;
    height: 32px;
  }

  .procedure > li:not(:last-child)::after {
    top: 33px;
    left: 15px;
  }

  .command-block {
    align-items: flex-start;
  }

  .reference-table {
    display: block;
    overflow-x: auto;
  }

  .page-rail {
    display: block;
  }

  .page-rail .rail-panel {
    display: block;
  }

  .page-rail .rail-panel:first-child {
    display: none;
  }

  .guide-next {
    align-items: flex-start;
  }

  .guide-footer {
    display: block;
  }

  .guide-footer nav {
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .handbook-sidebar {
    transition: none;
  }
}
