:root {
  color-scheme: light dark;
  --background: #f7f7f5;
  --foreground: #111113;
  --muted: #707077;
  --mark-background: #111113;
  --mark-foreground: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.landing {
  min-height: 100svh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 28px;
  padding: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand__mark {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: var(--mark-background);
}

h1 {
  margin: 0;
  font-size: 3.25rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.5;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0b0b0c;
    --foreground: #f7f7f5;
    --muted: #929299;
    --mark-background: #f7f7f5;
    --mark-foreground: #111113;
  }
}

@media (max-width: 420px) {
  .landing {
    gap: 22px;
    padding: 20px;
  }

  .brand {
    gap: 12px;
  }

  .brand__mark {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  h1 {
    font-size: 1.45rem;
  }
}
