:root {
  --bg: #14110F;
  --bg-elevated: #1F1B17;
  --bg-elevated-2: #2A2520;
  --text: #E8DFD2;
  --text-muted: #A99B85;
  --text-faint: #6E6354;
  --border: rgba(232, 223, 210, 0.08);
  --border-strong: rgba(232, 223, 210, 0.16);
  --accent: #B8865A;
  --accent-deep: #8B6F47;
  --success: #6B8E5A;
  --danger: #A04E3C;
  --warning: #B89653;

  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --radius-input: 4px;
  --radius-card: 8px;
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 18px; font-weight: 500; }

p { margin: 0 0 1em; }

small { font-size: 13px; color: var(--text-muted); }

.micro {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.num, code, pre, .tabular {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

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

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

.shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.wordmark {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 56px;
  letter-spacing: -0.01em;
  margin: 0 0 0.25em;
}

.tagline {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  color: var(--text-muted);
  margin: 0;
}
