:root {
  color-scheme: dark;
  --bg: #080d13;
  --panel: #101822;
  --ink: #f5f7fb;
  --muted: #9aa7b5;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 34rem),
    var(--bg);
}

.coming-soon {
  display: grid;
  min-height: 100vh;
  place-items: center;
  align-content: center;
  padding: 32px;
  text-align: center;
}

.mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  font-size: 24px;
  font-weight: 800;
}

h1 {
  margin: 22px 0 0;
  font-size: clamp(52px, 10vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

.message {
  max-width: 420px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.5;
}
