:root {
  color-scheme: dark;
  background: #050505;
  color: #d2a23b;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 45%, #141311 0, #080808 43%, #030303 100%);
}

.coming-soon {
  display: grid;
  min-height: 100svh;
  place-content: center;
  justify-items: center;
  gap: clamp(1.5rem, 4vh, 2.75rem);
  padding: clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}

.logo {
  display: block;
  width: min(78vw, 46rem);
  height: auto;
}

.teaser {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25em;
  margin: 0;
  color: #e3e0da;
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  font-weight: 450;
  letter-spacing: 0.16em;
  line-height: 1.7;
  text-transform: uppercase;
}

@media (max-width: 34rem) {
  .logo {
    width: min(92vw, 31rem);
  }

  .teaser {
    max-width: 19rem;
  }

  .teaser span {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .logo,
  .teaser {
    animation: reveal 900ms ease-out both;
  }

  .teaser {
    animation-delay: 180ms;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(0.4rem);
    }
  }
}
