:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --text: #14162b;
  --muted: #5b6079;
  --accent: #232222;
  --border: rgba(20, 22, 43, 0.1);
}

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

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

h1 {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
}

.subtext {
  color: var(--muted);
  margin-bottom: 2rem;
}

code {
  background: #eceef5;
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 0.9em;
}

.pages {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pages li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}

.pages a {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.pages a:hover {
  text-decoration: underline;
}

.pages .desc {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}
