:root {
  --v11-black: #0e0e10;
  --v11-stone: #5f8f6e;
  --v11-stone-light: #9fc7ac;
  --v11-off-white: #cfcbc2;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: "Baloo 2", "Segoe UI", sans-serif;
  --font-label: "Jost", "Segoe UI", sans-serif;
  --font-industrial: "Oswald", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
}

body {
  background: var(--v11-black);
  color: #f7f5f1;
  font-family: var(--font-label);
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ambient studio-atmosphere backdrop, not a literal hero shot: heavily dimmed,
   slow drift so the page doesn't feel dead while people wait for launch */
.soon-bg {
  position: fixed;
  inset: -4%;
  background: url("../img/bg-hero.jpg") center 30% / cover no-repeat;
  opacity: 0;
  animation:
    soon-bg-in 1.6s var(--ease-out) forwards,
    soon-bg-drift 24s var(--ease-out) 1.6s infinite alternate;
  z-index: 0;
}

/* Flat overlay, deliberately not a gradient: radial/linear gradients over a
   dark base band visibly on many displays. A flat tone has no tonal steps
   to band in the first place. */
.soon-scrim {
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 16, 0.82);
  z-index: 1;
}

/* Dither texture, breaks up any residual banding in the photo/JPEG underneath */
.soon-scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes soon-bg-in {
  from { opacity: 0; }
  to { opacity: 0.4; }
}

@keyframes soon-bg-drift {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.soon {
  position: relative;
  z-index: 2;
  max-width: 420px;
  width: 100%;
  padding: 32px;
  text-align: center;
}

.soon > * {
  opacity: 0;
  animation: soon-in 0.8s var(--ease-out) forwards;
}

.soon-logo { animation-delay: 0.1s; }
.soon-eyebrow { animation-delay: 0.28s; }
h1 { animation-delay: 0.42s; }
.soon-sub { animation-delay: 0.56s; }

@keyframes soon-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.soon-logo {
  display: block;
  height: 52px;
  width: auto;
  margin: 0 auto 40px;
}

.soon-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v11-off-white);
  margin: 0 0 18px;
}

h1 {
  font-family: var(--font-industrial);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.9rem, 5.5vw, 2.6rem);
  color: var(--v11-stone-light);
  margin: 0 0 16px;
}

.soon-sub {
  font-size: 1rem;
  color: var(--v11-off-white);
  margin: 0;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .soon-bg {
    animation: none;
    opacity: 0.4;
  }
  .soon > * {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
