:root {
  --bg: #fbfaf8;
  --surface: #ffffff;
  --border: #e5e1da;
  --text: #201d1a;
  --muted: #6b655d;
  --accent: #9a4c2b;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #171513;
    --surface: #1f1d1a;
    --border: #322e29;
    --text: #efece7;
    --muted: #a49c92;
    --accent: #e08a5e;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0 16px;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 72px 0 96px;
}

.intro h1 {
  margin: 0 0 12px;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.tagline {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.panel {
  margin-top: 48px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.panel h2 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.list li:first-child { border-top: 0; padding-top: 0; }

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

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

.list span { color: var(--muted); font-size: 15px; }

.foot {
  margin-top: 48px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 480px) {
  .page { padding-top: 48px; }
  .intro h1 { font-size: 32px; }
}
