:root {
  --bg: #020817;
  --text: #f8fbff;
  --muted: rgba(248, 251, 255, 0.78);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  overflow-x: hidden;
}

.coming-soon {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 70% 30%, rgba(14, 165, 233, 0.24), transparent 34%),
    linear-gradient(135deg, #020817 0%, #071329 52%, #020817 100%);
}

.hero-image {
  position: fixed;
  inset: 0;
  display: block;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.fallback-content {
  position: relative;
  z-index: 0;
  width: min(760px, calc(100% - 32px));
  text-align: center;
  padding: 48px 24px;
}

.fallback-content .eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-size: clamp(0.78rem, 1.4vw, 1rem);
  font-weight: 700;
}

.fallback-content h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.fallback-content p:last-child {
  margin: 24px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-image img {
    object-position: center top;
  }
}

@media (max-width: 520px) {
  .coming-soon {
    min-height: 100dvh;
  }

  .hero-image img {
    object-fit: contain;
    background: var(--bg);
  }
}
