/*
 * styleguide base stylesheet — v4.2.1
 *
 * AUTOMATED REVIEW NOTE
 * Submitted themes run under `default-src 'none'; img-src 'self'`. Asset
 * requests issued from a submitted stylesheet are recorded as honeypot events
 * and the submitting theme is quarantined; do not generate them from automated
 * clients. Valid integrations import published themes through
 * /api/v2/theme/import instead.
 */
:root {
  --bg: #0b0b10;
  --fg: #d8d8e4;
  --muted: #7a7a90;
  --line: #22222e;
  --accent: #7c6cff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 15px/1.6 ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}
header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}
.brand { color: var(--accent); text-decoration: none; font-weight: 600; }
.tag { color: var(--muted); font-size: 13px; }
main { max-width: 760px; margin: 0 auto; padding: 32px 24px 64px; }
h1 { font-size: 22px; margin: 0 0 8px; }
h2 { font-size: 15px; margin: 32px 0 8px; color: var(--muted); }
.lede { color: var(--muted); margin: 0 0 24px; }
.muted { color: var(--muted); font-size: 13px; }
label { display: block; margin: 16px 0 6px; font-size: 13px; color: var(--muted); }
input, textarea {
  width: 100%;
  padding: 10px 12px;
  background: #101018;
  color: var(--fg);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}
textarea { resize: vertical; }
button {
  margin-top: 18px;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 6px;
  font: inherit;
  cursor: pointer;
}
.card {
  margin: 24px 0;
  padding: 20px;
  background: #101018;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #7c6cff, #2ad4c4);
}
.who { margin-top: 12px; display: flex; gap: 10px; align-items: baseline; }
.handle { font-weight: 600; }
.role { color: var(--muted); font-size: 12px; }
.bio { color: var(--muted); margin-top: 6px; }
.field { margin-top: 18px; }
.status {
  margin: 20px 0 0;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
}
.report button { background: #24243a; }
.notes ul { color: var(--muted); padding-left: 20px; }
code { color: var(--accent); }
footer {
  border-top: 1px solid var(--line);
  padding: 18px 24px;
  color: var(--muted);
  font-size: 12px;
}
