/* ── COMING SOON ── */
.screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg);
}

.logo {
  height: 30svw;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  animation: fadeUp 0.7s ease both;
}

.soon {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.15s;
}

.tagline {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.25s;
}
