/* Orbit site. Monochrome, typographic, matching the 12-ring icon aesthetic. */
:root {
  --ink: #000;
  --body: #555;
  --whisper: #999;
  --hairline: #eaeaea;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #fff;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
}
main { width: 100%; max-width: 560px; padding: 72px 24px 48px; flex: 1; }
.wordmark {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 48px;
}
.rings { display: block; margin: 0 auto 40px; }
h1 { font-size: 22px; font-weight: 600; text-align: center; margin-bottom: 12px; }
.tagline { text-align: center; color: var(--body); font-size: 15px; line-height: 1.7; margin-bottom: 40px; }
h2 { font-size: 15px; font-weight: 600; margin: 32px 0 8px; }
p, li { font-size: 14px; line-height: 1.75; color: var(--body); }
ul { padding-left: 20px; }
a { color: var(--ink); }
.meta { color: var(--whisper); font-size: 12px; text-align: center; margin-bottom: 40px; }
.rule { border: none; border-top: 1px solid var(--hairline); margin: 40px 0; }
.button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 13px 36px;
  border-radius: 10px;
}
nav.footer {
  width: 100%;
  max-width: 560px;
  padding: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: center;
  gap: 24px;
}
nav.footer a { color: var(--whisper); font-size: 12px; text-decoration: none; }
nav.footer a:hover { color: var(--ink); }
