:root {
  color-scheme: light;
  --ink: #17201c;
  --muted: #4f5c55;
  --paper: #f7f8f5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.landing {
  display: grid;
  justify-items: center;
  gap: 26px;
  text-align: center;
}

.logo {
  width: min(420px, 82vw);
  height: auto;
  display: block;
}

.landing p {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  color: var(--muted);
}
