/* ============ GUIDE PAGE (member-dashboard/guide/) ============
   Telegram-link walkthrough. Reuses tokens.css/base.css/register.css
   (app-header, .page-hero, .reg-layout, .reg-section all come from
   register.css); this file adds only the guide-specific blocks. */

/* ---- Why-link intro ---- */
.guide-why {
  border: 2px solid var(--ink);
  background: var(--surface);
  padding: var(--space-4, 1.5rem);
  margin-bottom: var(--space-5, 2rem);
}
.guide-why__lead { margin: 0 0 var(--space-3, 1rem); font-weight: 600; }
.guide-why__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  font-size: 0.95rem;
}
.guide-why__list li { line-height: 1.45; }

/* ---- Numbered steps ---- */
.guide-steps {
  list-style: none;
  margin: 0 0 var(--space-5, 2rem);
  padding: 0;
  display: grid;
  gap: var(--space-4, 1.5rem);
}
.guide-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3, 1rem);
  align-items: start;
}
.guide-step__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  background: var(--rts-yellow, #FFF100);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 99px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
}
.guide-step__body { min-width: 0; }
.guide-step__h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0.2rem 0 0.5rem;
}
.guide-step__body p { margin: 0 0 0.7rem; line-height: 1.5; font-size: 0.95rem; }
.guide-step__cta { margin-top: 0.3rem; }
.guide-step__body code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--surface);
  padding: 0.1em 0.35em;
  border: 1px solid var(--line);
}

/* ---- Command block (scrolls, never breaks the mobile layout) ---- */
.guide-cmd {
  margin: 0 0 0.7rem;
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: var(--on-dark, #fff);
  border-radius: 0;
  overflow-x: auto;
}
.guide-cmd code {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: inherit;
  background: none;
  border: none;
  white-space: nowrap;
}

.guide-note {
  font-size: 0.88rem !important;
  color: var(--ink-dim);
}

/* ---- Help footer block ---- */
.guide-help {
  border-top: 1px solid var(--line);
  padding-top: var(--space-4, 1.5rem);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-dim);
}
.guide-help a { color: var(--accent-deep); text-decoration: underline; font-weight: 600; }
