:root {
  color-scheme: dark;
  --charcoal: #4d4b45;
  --charcoal-deep: #33322e;
  --gold: #e9c477;
  --gold-pale: #f5dda1;
  --cream: #f5edda;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--charcoal-deep);
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
}

.launch {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 5rem) 1.5rem;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 241, 204, 0.08), transparent 36%),
    linear-gradient(145deg, #55534d 0%, var(--charcoal) 48%, #41403b 100%);
}

.launch::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  pointer-events: none;
}

.launch__content {
  width: min(92vw, 48rem);
  text-align: center;
  animation: reveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.launch__logo {
  display: block;
  width: min(82vw, 31rem);
  height: auto;
  margin: 0 auto clamp(5rem, 11vh, 8.5rem);
  filter: drop-shadow(0 1.25rem 1.4rem rgba(0, 0, 0, 0.22));
}

.launch__message {
  padding-block: 0.75rem;
}

.launch__eyebrow {
  margin: 0 0 clamp(1.25rem, 2.5vh, 2rem);
  color: var(--gold-pale);
  font-size: clamp(0.74rem, 1.5vw, 0.9rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-wrap: balance;
  text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.3);
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.13;
  background: var(--gold);
  pointer-events: none;
}

.ambient--one {
  top: -13rem;
  right: -8rem;
}

.ambient--two {
  bottom: -16rem;
  left: -9rem;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-height: 760px) {
  .launch {
    padding-block: 3rem;
  }

  .launch__logo {
    width: min(62vh, 25rem);
    margin-bottom: clamp(4rem, 10vh, 6rem);
  }
}

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