:root {
  color-scheme: light;
  --ink: #111111;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.coming-soon {
  display: flex;
  min-height: 100svh;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 5vw, 52px);
  padding: 32px 20px;
  text-align: center;
}

.message {
  display: grid;
  width: min(100%, 900px);
  justify-items: center;
  gap: clamp(10px, 2vw, 16px);
}

.logo {
  display: block;
  width: min(96px, 28vw);
  height: auto;
  margin-top: clamp(6px, 1.5vw, 18px);
  opacity: 0;
  animation: fade-in 1800ms ease-out 250ms forwards;
}

h1 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(2rem, 9vw, 4.25rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

p {
  margin: 0;
  max-width: 100%;
  font-size: clamp(1.05rem, 3.2vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

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