:root {
  color-scheme: dark;
  --bg: #171613;
  --fg: #e8e3d6;
  --muted: #948d7c;
  --accent: #cdb98f;
  --rule: #34312a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 2rem 1.5rem;
}

main {
  max-width: 32rem;
  width: 100%;
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
}

.intro {
  color: var(--muted);
  margin: 0 0 2.5rem;
  font-size: 1rem;
}

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

.sections li {
  padding: 1.25rem 0;
  border-top: 1px solid var(--rule);
}

.sections li:last-child {
  border-bottom: 1px solid var(--rule);
}

.section-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.section-link:hover {
  text-decoration: underline;
}

.section-link.disabled {
  color: var(--muted);
}

.soon {
  margin-left: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  vertical-align: middle;
}

.section-desc {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
