:root {
  --bg: #fbfbfa;
  --fg: #1c1c1a;
  --muted: #6b6b66;
  --rule: #e2e2dd;
  --accent: #b4531f;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #16161a;
    --fg: #e8e8e4;
    --muted: #96968f;
    --rule: #2b2b31;
    --accent: #e08b52;
  }
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  padding: 4rem 1.5rem 3rem;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

main { width: 100%; max-width: 34rem; flex: 1; }

h1 {
  margin: 0 0 .5rem;
  font-size: clamp(2rem, 7vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.lede {
  margin: 0 0 3rem;
  color: var(--muted);
  font-size: 1.05rem;
}

section { border-top: 1px solid var(--rule); padding-top: 1.75rem; }

h2 {
  margin: 0 0 1rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.apps li {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  padding: .45rem 0;
}

.apps em { color: var(--muted); font-style: normal; }

.dot {
  flex: none;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-1px);
}

.note { margin: 1.25rem 0 0; color: var(--muted); font-size: .9rem; }

footer {
  width: 100%;
  max-width: 34rem;
  margin-top: 4rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.6;
}
