body.vtp-landing-page {
  --page-foreground: #ffffff;
  --page-shadow: rgba(13, 23, 28, 0.46);
  --page-overlay-top: rgba(10, 17, 21, 0.28);
  --page-overlay-bottom: rgba(10, 17, 21, 0.48);
  min-height: 100%;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--page-foreground);
  background: #172125;
}

body.vtp-landing-page *,
body.vtp-landing-page *::before,
body.vtp-landing-page *::after {
  box-sizing: border-box;
}

.coming-soon-page {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(2rem, 7vw, 5rem);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.coming-soon-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../landing-background.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.coming-soon-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, var(--page-overlay-top), var(--page-overlay-bottom)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), rgba(10, 17, 21, 0.36));
}

.coming-soon-content {
  width: min(100%, 58rem);
  text-shadow: 0 0.25rem 2rem var(--page-shadow);
}

.coming-soon-title,
.coming-soon-subtitle {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0;
  max-inline-size: 100%;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.coming-soon-title {
  font-size: clamp(1.15rem, 7vw, 4.75rem);
  line-height: 1.02;
}

.coming-soon-subtitle {
  margin-top: 1rem;
  font-size: clamp(1rem, 3vw, 2.25rem);
  line-height: 1.2;
}

@media (max-width: 42rem) {
  .coming-soon-page {
    padding-inline: 1.25rem;
  }
}
