:root {
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #0b0b0b;
  color: #f5f5f5;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.coming-soon {
  width: min(100%, 64rem);
  text-align: center;
  animation: reveal 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand {
  margin: 0 0 clamp(2.25rem, 7vw, 4.75rem);
  color: #ffffff;
  font-size: clamp(0.72rem, 1.2vw, 0.9rem);
  font-weight: 650;
  letter-spacing: clamp(0.28em, 1vw, 0.55em);
  line-height: 1.4;
  text-indent: clamp(0.28em, 1vw, 0.55em);
}

h1 {
  margin: 0;
  color: #f7f7f7;
  font-size: clamp(2rem, 7vw, 5.75rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.status {
  margin: clamp(2rem, 6vw, 4rem) 0 0;
  color: #777777;
  font-size: clamp(0.82rem, 1.6vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon {
    animation: none;
  }
}
