/* Hush — shared styles for docs/ */
:root {
  --bg: #0B0D12;
  --card: #14171E;
  --text: #F5F2FF;
  --text-secondary: #B8BAC9;
  --text-tertiary: #6F7280;
  --accent: #A78BFA;
  --border: rgba(255,255,255,0.06);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

header.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

header.brand .mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--accent);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

header.brand .mark::before,
header.brand .mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

header.brand .mark::before {
  width: 22px; height: 22px;
  background: #fff;
  left: 5px; top: 7px;
}

header.brand .mark::after {
  width: 19px; height: 19px;
  background: var(--accent);
  left: 9px; top: 5px;
}

header.brand h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

header.brand a {
  color: inherit;
  text-decoration: none;
}

h1.page-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}

h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 36px 0 10px;
  letter-spacing: -0.005em;
}

p, ul {
  color: var(--text-secondary);
  font-size: 15px;
}

a { color: var(--accent); }

ul { padding-left: 18px; }
li { margin-bottom: 4px; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
  background: var(--card);
  border-radius: 10px;
  overflow: hidden;
}

th, td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

th { color: var(--text); font-weight: 600; }
tr:last-child td { border-bottom: 0; }

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

footer {
  margin-top: 56px;
  font-size: 12px;
  color: var(--text-tertiary);
}
