:root {
  color-scheme: dark;
  --bg: #0b0b10;
  --bg-elevated: #15151d;
  --text: #f2f2f7;
  --text-muted: #9a9aa5;
  --accent: #7c5cff;
  --border: #26262f;
  --max-width: 780px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

.brand .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

nav.site-nav a {
  color: var(--text-muted);
  margin-left: 20px;
  font-size: 14px;
}

nav.site-nav a:hover { color: var(--text); }

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.hero {
  text-align: center;
  padding: 60px 0 40px;
}

.hero h1 {
  font-size: 34px;
  margin-bottom: 12px;
}

.hero p.tagline {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

.pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 18px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
}

.btn.primary {
  background: var(--accent);
  color: white;
}

.btn.secondary {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
}

footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.legal h1 {
  font-size: 28px;
  margin-bottom: 4px;
}

.legal .updated {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 19px;
  margin-top: 36px;
  margin-bottom: 10px;
}

.legal h3 {
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 6px;
}

.legal p, .legal li {
  color: #d4d4dc;
  font-size: 15px;
}

.legal ul { padding-left: 20px; }

.placeholder {
  background: rgba(124, 92, 255, 0.15);
  border: 1px dashed var(--accent);
  border-radius: 4px;
  padding: 0 4px;
  color: #c9bcff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92em;
}

table.simple {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

table.simple th, table.simple td {
  border: 1px solid var(--border);
  padding: 8px 10px;
  text-align: left;
}

table.simple th {
  background: var(--bg-elevated);
  color: var(--text-muted);
}
