.help-page {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(79, 70, 229, 0.08), transparent 45%),
    radial-gradient(ellipse at 90% 20%, rgba(5, 150, 105, 0.07), transparent 40%),
    var(--bg);
  min-height: 100dvh;
}

.help-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.help-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.help-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 20px 64px;
}

.help-eyebrow {
  margin: 0 0 8px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.help-main > h1 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.2rem);
  line-height: 1.2;
}

.help-lead {
  margin: 0 0 32px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.help-section {
  margin-bottom: 36px;
}

.help-section h2 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}

.help-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 10px;
  color: var(--text);
}

.help-list li {
  line-height: 1.45;
}

.help-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 12px;
}

.help-steps li {
  counter-increment: step;
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.help-steps li::before {
  content: counter(step);
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  display: grid;
  place-items: center;
}

.help-steps .help-step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.help-steps .help-step-body span {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.help-faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 8px;
}

.help-faq summary {
  cursor: pointer;
  font-weight: 600;
}

.help-faq p {
  margin: 10px 0 0;
  color: var(--text-muted);
  line-height: 1.45;
}

.help-footer-cta {
  margin: 40px 0 0;
}

.help-footer-cta .btn {
  text-decoration: none;
  display: inline-flex;
}

code {
  font-size: 0.9em;
  background: var(--bg);
  padding: 1px 6px;
  border-radius: 6px;
}

.gate-help-link {
  margin: 4px 0 0;
  text-align: center;
  font-size: 0.9rem;
}

.gate-help-link a {
  color: var(--primary);
  text-decoration: none;
}

.gate-help-link a:hover {
  text-decoration: underline;
}

.topbar-help {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 8px;
}

.topbar-help:hover {
  color: var(--primary);
}
