/* Builder — single stylesheet. No JS, no external assets. */

:root {
  --bg: #0f1115;
  --surface: #161920;
  --text: #e6e8ec;
  --muted: #9aa1ad;
  --accent: #d9a05b;
  --border: #262a33;
  --maxw: 44rem;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #ffffff;
    --surface: #f6f7f9;
    --text: #1a1d23;
    --muted: #5c636e;
    --accent: #8a5a1c;
    --border: #e2e5ea;
  }
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); }
a:hover { text-decoration: none; }

/* Header */

.site-header {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2rem 1.25rem 0;
}

.wordmark {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

/* Layout */

main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { margin: 3.5rem 0; }

h1 {
  font-size: clamp(2rem, 6vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

h2 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

p { margin: 0 0 1rem; }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: var(--surface);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

/* Hero */

.hero { margin-top: 4rem; }

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  margin-top: 0.5rem;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* Features */

.features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.features p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Prose pages */

.prose { padding-top: 3rem; padding-bottom: 1rem; }
.prose h2 { margin-top: 2.5rem; }
.prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: 0.5rem; }

.updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

/* Footer */

.site-footer {
  max-width: var(--maxw);
  margin: 4rem auto 0;
  padding: 1.75rem 1.25rem 3rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

.site-footer p { margin: 0 0 0.5rem; }

.fine {
  color: var(--muted);
  font-size: 0.82rem;
}
