:root {
  color-scheme: light dark;
  --bg: #f5f7fa;
  --text: #18202c;
  --muted: #667085;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0c1119;
    --text: #edf2f8;
    --muted: #9ba9ba;
  }
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  transition: background-color 180ms ease, color 180ms ease;
}

.placeholder {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.025em;
  color: var(--text);
  font-size: clamp(2.65rem, 7vw, 4rem);
  font-weight: 800;
  font-kerning: none;
  font-feature-settings: "kern" 0;
  letter-spacing: 0;
  line-height: 1;
}

.logo-letter {
  display: block;
}

.logo-dot {
  display: inline-block;
  align-self: flex-end;
  width: 0.16em;
  height: 0.16em;
  margin: 0 0 0.035em 0.045em;
  border-radius: 50%;
  background: #1769e0;
}

@media (prefers-color-scheme: dark) {
  .logo-dot {
    background: #5b9cff;
  }
}

p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  text-wrap: balance;
}

@media (max-width: 480px) {
  .placeholder {
    padding-inline: 20px;
  }

  p {
    margin-top: 14px;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    transition: none;
  }
}
