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

:root {
  --bg:       #0c0b09;
  --panel:    #171512;
  --card:     #1e1b17;
  --border:   rgba(234,228,213,0.10);
  --crimson:  #C8352A;
  --green:    #2A9B6A;
  --cream:    #EAE4D5;
  --muted:    rgba(234,228,213,0.38);
  --dim:      rgba(234,228,213,0.18);
  --font:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --letter-tight: -0.02em;
}

html, body {
  width: 100%; height: 100%;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── Nav ──────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 100;
}

.nav-logo {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(234,228,213,0.88);
  text-decoration: none;
  margin-right: 6px;
}

.nav-pill {
  height: 26px;
  padding: 0 13px;
  border: 1px solid rgba(234,228,213,0.3);
  border-radius: 999px;
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: rgba(234,228,213,0.66);
  background: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.nav-pill:hover {
  border-color: rgba(234,228,213,0.38);
  color: rgba(234,228,213,0.82);
}
.nav-pill.active {
  border-color: rgba(234,228,213,0.42);
  color: rgba(234,228,213,0.92);
  background: rgba(234,228,213,0.05);
}

.nav-divider {
  width: 1px;
  height: 16px;
  background: rgba(234,228,213,0.10);
  margin: 0 4px;
  flex-shrink: 0;
}

/* ── Page shell (non-canvas pages) ───────────────── */
.page {
  min-height: 100vh;
  padding: 80px 0 64px;
}

.page-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Typography ───────────────────────────────────── */
.label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.body-text {
  font-size: 13px;
  line-height: 1.72;
  color: rgba(234,228,213,0.58);
  max-width: 540px;
}

.body-text p + p { margin-top: 1em; }

/* ── Divider ──────────────────────────────────────── */
.rule {
  border: none;
  border-top: 1px solid rgba(234,228,213,0.07);
  margin: 0;
}

/* ── Footer ───────────────────────────────────────── */
#footer {
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(234,228,213,0.06);
}
.footer-copy {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(234,228,213,0.18);
}
