:root {
  --accent: #7c5cff;
  --grad: linear-gradient(135deg, #b9a6ff 0%, #7c5cff 45%, #5ba8ff 100%);
  --bg: #050508;
  --card: #111115;
  --border: #222228;
  --text: #ffffff;
  --dim: #a8a8b2;
  --faint: #8e8e98;
  --container: 760px;
  --gutter: 20px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-feature-settings: "cv11", "ss01";
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: #b9a6ff; text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding: 28px max(var(--gutter), env(safe-area-inset-right, 0px)) 64px max(var(--gutter), env(safe-area-inset-left, 0px));
}
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand img { width: 28px; height: 28px; border-radius: 8px; }
.nav-links { display: flex; gap: 16px; margin-left: auto; flex-wrap: wrap; }
.nav-links a { color: var(--dim); font-size: 14px; }
.nav-links a[aria-current="page"] { color: var(--text); }
h1 { font-size: 32px; line-height: 1.2; font-weight: 800; margin: 0 0 8px; }
.lede { color: var(--dim); margin: 0 0 28px; font-size: 15px; }
h2 { font-size: 20px; margin: 28px 0 10px; font-weight: 700; }
p, li { color: #e8e8ee; font-size: 15.5px; }
p { margin: 0 0 12px; }
ul { margin: 0 0 14px; padding-left: 1.2em; }
li { margin: 0 0 6px; }
strong { font-weight: 650; }
.foot {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--faint);
  font-size: 13px;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
