/* Kaizely Help (wiki-style) */

:root {
  --help-bg: #f4f6f8;
  --help-surface: #ffffff;
  --help-text: #1f2937;
  --help-muted: #6b7280;
  --help-border: #e5e7eb;
  --help-brand: #1ab394;
  --help-link: #1ab394;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--help-text);
  background: var(--help-bg);
}

.help-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--help-surface);
  border-bottom: 1px solid var(--help-border);
}

.help-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.help-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--help-text);
  font-weight: 700;
}

.help-brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--help-brand);
  display: inline-block;
}

.help-header a {
  color: var(--help-link);
  text-decoration: none;
}

.help-header a:hover { text-decoration: underline; }

.help-shell {
  max-width: 1200px;
  margin: 18px auto;
  padding: 0 16px 32px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
}

.help-nav {
  background: var(--help-surface);
  border: 1px solid var(--help-border);
  border-radius: 10px;
  padding: 12px;
  height: fit-content;
}

.help-nav h3 {
  margin: 8px 8px 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--help-muted);
}

.help-nav a {
  display: block;
  padding: 10px 10px;
  border-radius: 8px;
  color: var(--help-text);
  text-decoration: none;
}

.help-nav a:hover {
  background: #f3f4f6;
}

.help-nav a.active {
  background: rgba(26, 179, 148, 0.12);
  border: 1px solid rgba(26, 179, 148, 0.25);
}

.help-content {
  background: var(--help-surface);
  border: 1px solid var(--help-border);
  border-radius: 10px;
  padding: 22px;
}

.help-content h1 { margin-top: 0; }
.help-content h2 { margin-top: 26px; }
.help-content h3 { margin-top: 18px; }

.help-content p, .help-content li {
  line-height: 1.6;
}

.help-content a { color: var(--help-link); }

.callout {
  border-left: 4px solid var(--help-brand);
  background: rgba(26, 179, 148, 0.08);
  padding: 12px 14px;
  border-radius: 8px;
}

.muted { color: var(--help-muted); }

.kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  background: #f3f4f6;
  border: 1px solid var(--help-border);
  border-bottom-width: 2px;
  padding: 0 6px;
  border-radius: 6px;
}

.help-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px 24px;
  color: var(--help-muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .help-shell { grid-template-columns: 1fr; }
}

