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

:root {
  --bg: #0d0d0d;
  --text: #e8e8e8;
  --muted: #888;
  --accent: #c9a227;
}

body {
  font-family: 'Space Mono', monospace;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.hero {
  margin-bottom: 4rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.hero .tagline {
  font-size: 1rem;
  color: var(--muted);
}

.section {
  margin-bottom: 3rem;
}

.section h2 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.section p {
  font-size: 0.95rem;
}

.section code {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15em 0.4em;
  font-size: 0.9em;
}

.placeholder {
  color: var(--muted);
}

.footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer p {
  font-size: 0.85rem;
  color: var(--muted);
}
