.layout-help {
  grid-template-columns: 1fr;
  grid-template-rows: 48px 1fr;
}

.help-main {
  overflow-y: auto;
  padding: 40px 0;
}

.help-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.help-hero {
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
}

.help-hero h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.help-hero p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Steps */
.help-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.help-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.help-step:last-child { border-bottom: none; }

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-body h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.step-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-body code {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: 'Fira Code', 'Consolas', monospace;
  font-size: 12px;
  color: var(--text);
}

/* Sections */
.help-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.help-section h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text);
}

.help-section p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.help-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.help-section ul li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.help-section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.help-section code {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: 'Fira Code', 'Consolas', monospace;
  font-size: 12px;
  color: var(--text);
}

/* Status list */
.help-status-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.help-status-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4px;
}

.badge.pass  { background: rgba(21,128,61,.1);  color: var(--green);  border: 1px solid rgba(21,128,61,.25); }
.badge.fail  { background: rgba(185,28,28,.1);  color: var(--red);    border: 1px solid rgba(185,28,28,.25); }
.badge.error { background: rgba(180,83,9,.1);   color: var(--orange); border: 1px solid rgba(180,83,9,.25); }
