:root {
  /* The app's dark shell ground and the brand accent from assets/prod/logo.svg. */
  --ground: #1d1a23;
  --foreground: #f2f0f6;
  --muted: #8f8a9c;
  --accent: #7970f6;

  color-scheme: dark light;
}

@media (prefers-color-scheme: light) {
  :root {
    --ground: #d1d1d1;
    --foreground: #1d1a23;
    --muted: #56525f;
    --accent: #5b50d8;
  }
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  min-height: 100svh;
  padding: 3rem 1.5rem;
  background: var(--ground);
  color: var(--foreground);
  font-family:
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 34rem;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  font-size: clamp(2.25rem, 9vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.mark {
  width: 1.1em;
  height: 1.1em;
  flex: none;
}

.lede {
  margin: 0;
  font-size: clamp(1.05rem, 3.5vw, 1.25rem);
  text-wrap: balance;
}

.status {
  margin: 0;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 500;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.8rem;
}

footer p {
  margin: 0;
}

a {
  color: inherit;
}
