@font-face {
  font-family: "Nunito";
  src: url("./assets/nunito.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
}

:root {
  color-scheme: light;
  font-family: "Nunito", ui-rounded, system-ui, sans-serif;
  color: #17274b;
  background: #ffffff;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.coming-soon {
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: max(2rem, env(safe-area-inset-top))
    max(1.5rem, env(safe-area-inset-right))
    max(2rem, env(safe-area-inset-bottom))
    max(1.5rem, env(safe-area-inset-left));
  background:
    radial-gradient(ellipse 52% 24% at 50% 110%, #cdeeff 0%, #e9f6ff 40%, transparent 100%),
    #ffffff;
}

.identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: clamp(1.75rem, 4vh, 3rem);
  padding-bottom: clamp(1rem, 5vh, 3rem);
  text-align: center;
}

.logo {
  display: block;
  width: clamp(11rem, 20vw, 15rem);
  max-width: 70%;
  height: auto;
  mix-blend-mode: multiply;
  animation: arrive 850ms both;
}

h1 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(2.4rem, 6.1vw, 5.25rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.055em;
  text-wrap: balance;
  animation: arrive 850ms 100ms both;
}

h1 span {
  color: #0861ff;
}

::selection {
  color: #ffffff;
  background: #0861ff;
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo,
  h1 {
    animation: none;
  }
}
