/* Help center — extends website/style.css, same design tokens. */

.help-page { max-width: 700px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }

.help-breadcrumb { font-family: var(--font-mono); font-size: 0.8125rem; color: var(--lichen); margin-bottom: 0.75rem; }
.help-breadcrumb a { color: var(--lichen); }

.help-page h1 { font-family: var(--font-display); font-weight: 700; font-size: 2.5rem; color: var(--moss); margin-bottom: 1rem; }

.help-intro { font-size: 1.0625rem; line-height: 1.65; color: var(--bark); margin-bottom: 2.5rem; }

.help-shot { text-align: center; margin-bottom: 2.5rem; }
.help-shot img { max-width: 320px; width: 100%; height: auto; border-radius: 12px; box-shadow: 0 8px 24px rgba(32, 35, 31, 0.18); }

.help-list { list-style: none; display: grid; gap: 1.5rem; margin-bottom: 2.5rem; }
.help-list li { display: flex; gap: 0.9rem; align-items: baseline; }
.help-list .step-num {
  flex: 0 0 auto; width: 1.75rem; height: 1.75rem; border-radius: 50%;
  background: var(--hivis); color: var(--bark); font-family: var(--font-mono); font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 0.9375rem;
}
.help-list strong { display: block; font-family: var(--font-display); font-weight: 700; color: var(--moss); margin-bottom: 0.2rem; }
.help-list li p { font-size: 1rem; line-height: 1.55; color: var(--bark); }

.related-guides { border-top: 1px solid var(--stone); padding-top: 1.5rem; }
.related-guides h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--moss); margin-bottom: 0.75rem; }
.related-guides ul { list-style: none; display: grid; gap: 0.5rem; }
.related-guides a { color: var(--moss); font-weight: 600; }

.help-index-grid { list-style: none; display: grid; gap: 0.9rem; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); margin-bottom: 3rem; }
.help-index-grid a {
  display: block; background: var(--stone); border-radius: 12px; padding: 1.25rem 1.5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; color: var(--moss);
}
.help-index-grid a:hover { background: var(--paper); border: 1px solid var(--moss); }
.help-index-grid span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.9375rem; color: var(--bark); margin-top: 0.35rem; }

.guide-steps { list-style: none; counter-reset: guide-step; display: grid; gap: 2rem; margin-bottom: 2.5rem; }
.guide-steps li { position: relative; padding-left: 3rem; }
.guide-steps li::before {
  counter-increment: guide-step; content: counter(guide-step);
  position: absolute; left: 0; top: 0;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--moss); color: var(--paper); font-family: var(--font-mono); font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.guide-steps h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.1875rem; color: var(--moss); margin-bottom: 0.4rem; }
.guide-steps p { font-size: 1.0625rem; line-height: 1.6; color: var(--bark); }
.guide-steps p + p { margin-top: 0.6rem; }
