/* Compact beta documentation layout. */
.guide-layout { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 28px; padding-block: 30px 60px; align-items: start; }
.guide-nav { position: sticky; top: 98px; display: grid; gap: 4px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.guide-nav strong { margin-bottom: 8px; }
.guide-nav a { padding: 7px 9px; color: var(--muted); border-radius: 7px; font-size: .86rem; }
.guide-nav a:hover { color: var(--text); background: rgba(117,213,164,.07); }
.guide-content { display: grid; gap: 18px; }
.guide-section { scroll-margin-top: 100px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg,rgba(22,32,29,.94),rgba(15,22,20,.94)); }
.guide-section h2 { margin-bottom: 14px; font-size: clamp(1.7rem,3vw,2.4rem); }
.guide-section h3 { margin-top: 24px; }
.guide-section p,.guide-section li { color: var(--muted); }
.guide-section a { color: var(--green-light); font-weight: 700; }
.guide-section :last-child { margin-bottom: 0; }
.guide-steps { padding-left: 22px; }
.guide-steps li + li { margin-top: 9px; }
.guide-note { padding: 14px 16px; border-left: 3px solid var(--green-light); background: rgba(117,213,164,.06); border-radius: 0 9px 9px 0; }

@media (max-width: 800px) {
  .guide-layout { grid-template-columns: 1fr; }
  .guide-nav { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .guide-nav strong { grid-column: 1/-1; }
}
