*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cs-background);
  color: var(--cs-text);
}

.logo {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-actions {
  display: flex;
  gap: 8px;
}

.page-header {
  padding: 100px 24px 48px;
  text-align: center;
  border-bottom: 1px solid var(--cs-border);
  margin-bottom: 48px;
}

.page-header-badge {
  margin-bottom: 16px;
  display: inline-block;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.page-header-meta {
  color: var(--cs-text-muted);
  font-size: 14px;
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.prose h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 40px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cs-border);
}

.prose p {
  color: var(--cs-text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
  font-size: 14px;
}

.prose ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.prose li {
  color: var(--cs-text-muted);
  line-height: 1.85;
  margin-bottom: 6px;
  font-size: 14px;
}

.prose strong {
  color: var(--cs-text);
}

.prose a {
  color: var(--cs-primary);
}

.callout {
  padding: 14px 16px;
  border-radius: var(--cs-radius);
  border-left: 4px solid var(--cs-primary);
  background: rgba(124, 58, 237, 0.08);
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--cs-text-muted);
}

.logo { font-size:18px;font-weight:800;background:linear-gradient(135deg,#7c3aed,#0ea5e9);-webkit-background-clip:text;-webkit-text-fill-color:transparent;text-decoration:none; }
.nav-right { display:flex;align-items:center;gap:6px;flex-wrap:wrap; }
.nav-more-wrap { position:relative; }
.nav-more-menu { position:absolute;right:0;top:calc(100% + 8px);min-width:200px;max-height:70vh;overflow-y:auto;background:var(--cs-surface);border:1px solid var(--cs-border);border-radius:8px;box-shadow:0 12px 40px rgba(0,0,0,0.35);padding:8px 0;z-index:300; }
.nav-more-menu[hidden] { display:none; }
.nav-more-menu a { display:block;padding:8px 16px;font-size:13px;color:var(--cs-text-muted);text-decoration:none; }
.nav-more-menu a:hover { background:rgba(124,58,237,0.1);color:var(--cs-text); }
