:root {
  --bg: #0e0d0b;
  --text: #ece7de;
  --muted: #9a938a;
  --accent: #f0a63b;
  --rule: #262420;
}

* { box-sizing: border-box; }

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

.wrap {
  max-width: 40rem;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

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

/* Landing */
.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
}

.hero h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  margin: 1.25rem 0 0.25rem;
}

.tagline {
  color: var(--muted);
  font-size: 1.125rem;
  margin: 0 0 2rem;
}

.badge {
  display: inline-block;
  border: 1px solid var(--text);
  border-radius: 10px;
  padding: 0.6rem 1.4rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.badge small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.75rem;
}

.support {
  text-align: center;
  color: var(--muted);
  margin: 3rem 0;
}

/* Legal pages */
.legal h1 { font-size: 1.75rem; letter-spacing: -0.01em; }
.legal h2 { font-size: 1.15rem; margin-top: 2.25rem; }
.legal .updated { color: var(--muted); font-size: 0.9rem; }
.legal ul { padding-left: 1.25rem; }

footer {
  border-top: 1px solid var(--rule);
  margin-top: 3rem;
  padding-top: 1.5rem;
  color: var(--muted);
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-links a { color: var(--muted); margin-left: 1rem; }
.footer-links a:first-child { margin-left: 0; }
