/* Shared guide body. Revit is the canonical visual reference; Navisworks
   maps its product-specific markup to these same reading components. */
.navis-guide__section {
  margin: 0 0 34px;
  scroll-margin-top: 34px;
}
.navis-guide__section h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: normal;
}
.navis-guide__section h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
}
.navis-guide__section p,
.navis-guide__section li {
  font-size: 15px;
  line-height: 1.8;
}

/* Revit's numbered installation and first-step sequence. */
.navis-guide__section ol {
  list-style: none;
  margin: 8px 0 12px;
  padding: 0;
  counter-reset: step;
}
.navis-guide__section ol > li {
  position: relative;
  padding: 0 0 18px 44px;
  counter-increment: step;
}
.navis-guide__section ol > li::before {
  position: absolute;
  top: -2px;
  left: 0;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(111, 210, 255, .30);
  border-radius: 8px;
  background: rgba(111, 210, 255, .08);
  color: var(--cyan);
  content: counter(step);
  font: 600 13px var(--mono);
}
.navis-guide__section ol > li:not(:last-child)::after {
  position: absolute;
  top: 32px;
  bottom: 6px;
  left: 13px;
  width: 1px;
  background: rgba(255, 255, 255, .11);
  content: '';
}

/* Revit's code, prompt and callout treatments. */
.navis-guide__section pre {
  margin: 10px 0 14px;
  padding: 14px 16px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 10px;
  background: #05070a;
}
.navis-guide__section code {
  color: var(--cyan-soft);
  font: 13px/1.6 var(--mono);
}
.navis-guide__section p code,
.navis-guide__section li code,
.navis-guide__commands > code {
  border-radius: 5px;
  background: rgba(255, 255, 255, .05);
  color: var(--ink);
  font-size: 12.5px;
}
.navis-guide__commands > code {
  display: block;
  margin: 8px 0 0;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
}
.navis-guide__callout {
  margin: 20px 0;
  padding: 14px 18px;
  border: 1px solid rgba(111, 210, 255, .20);
  border-radius: 12px;
  background: rgba(111, 210, 255, .05);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
}
.navis-guide__callout strong { color: var(--ink); }

/* Revit's compact legal footer, kept inside the reading column. */
.navis-guide__footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .11);
}
.navis-guide__footer-legal,
.navis-guide__footer-copy {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
