:root {
  color-scheme: dark;
  --bg: #0f1115;
  --surface: #181a1f;
  --text: #f5f1ea;
  --text-secondary: #9a9a9a;
  --accent: #d4a574;
  --border: #262a33;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

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

.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

header.site {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

header.site img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

header.site .wordmark {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
}

h1 {
  font-size: 28px;
  margin-bottom: 4px;
}

h2 {
  font-size: 18px;
  color: var(--accent);
  margin-top: 36px;
  margin-bottom: 10px;
}

p,
li {
  color: var(--text);
  font-size: 15.5px;
}

.updated {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 28px;
}

a {
  color: var(--accent);
}

strong {
  color: var(--text);
}

.tagline {
  color: var(--text-secondary);
  font-size: 17px;
  margin-bottom: 32px;
}

.hero {
  text-align: center;
  padding: 64px 0 40px;
}

.hero img {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 34px;
  margin-bottom: 12px;
}

.hero .tagline {
  font-size: 18px;
  max-width: 480px;
  margin: 0 auto 32px;
}

.badge {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
}

footer.site {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13.5px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

footer.site a {
  color: var(--text-secondary);
}

footer.site a:hover {
  color: var(--accent);
}
