:root {
  color-scheme: light;
  --blue: #0844b3;
  --blue-dark: #0844b3;
  --ink: #0844b3;
  --muted: #5f6f8d;
  --line: rgba(15, 98, 254, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 24%, rgba(15, 98, 254, 0.16), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.page {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.coming-soon {
  flex: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  text-align: center;
}

h1 {
  display: grid;
  gap: 10px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.footer {
  gap: 5px;
  padding: 20px 0 34px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}


