:root {
  --bg: #ffffff;
  --fg: #1a1a1a;
  --muted: #6b7280;
  --faint: #b8bcc4;
  --accent: #2563eb;
  --rule: #ececec;
  --maxw: 640px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1115;
    --fg: #e6e7ea;
    --muted: #9aa0ab;
    --faint: #4b5160;
    --accent: #6ea8fe;
    --rule: #232733;
  }
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

nav {
  display: flex;
  gap: 1.4rem;
  align-items: baseline;
  font-size: 0.9rem;
  padding-bottom: 1.75rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
}

nav a, nav span { text-decoration: none; }

nav .active { color: var(--fg); font-weight: 600; }

nav .soon {
  color: var(--faint);
  cursor: not-allowed;
  position: relative;
}
nav .soon::after {
  content: "soon";
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: super;
  margin-left: 0.2rem;
  color: var(--faint);
}

h1 {
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0 0 0.25rem;
  letter-spacing: -0.01em;
}

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

p { margin: 0 0 1.25rem; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.sign {
  color: var(--muted);
  margin-top: 2rem;
}

footer {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
