:root {
  --paper: #e6d4b8;
  --ink: #4b354d;
  --muted: #6d5e50;
  --purple: #6d3fd1;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body { color: var(--ink); background: var(--paper); font-family: Arial, Helvetica, sans-serif; }

.launch-page {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding: 32px;
  background:
    radial-gradient(circle at 20% 15%, rgb(255 248 229 / 70%), transparent 34%),
    radial-gradient(circle at 82% 82%, rgb(109 63 209 / 16%), transparent 36%),
    var(--paper);
}

.launch-paper {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .7;
  background-image:
    repeating-linear-gradient(3deg, transparent 0 5px, rgb(78 51 29 / 3%) 6px, transparent 7px 13px),
    radial-gradient(circle, rgb(70 45 24 / 10%) 0 .5px, transparent .9px);
  background-size: 100% 19px, 9px 11px;
  mix-blend-mode: multiply;
}

.launch-glow {
  position: absolute;
  z-index: -1;
  width: min(48vw, 580px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(2px);
  animation: launch-float 10s ease-in-out infinite;
}

.launch-glow-one { left: -18vw; top: -22vw; background: rgb(255 247 226 / 48%); }
.launch-glow-two { right: -20vw; bottom: -24vw; background: rgb(109 63 209 / 12%); animation-delay: -5s; }

.launch-content {
  display: grid;
  justify-items: center;
  gap: clamp(28px, 4vw, 48px);
  width: 100%;
}

.launch-logo {
  display: block;
  width: 380px;
  max-width: 100%;
  height: auto;
  animation: launch-logo-arrive 1s cubic-bezier(.16, 1, .3, 1) both;
}

.launch-title {
  max-width: 1050px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 92px;
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.065em;
  text-align: center;
  text-wrap: balance;
  animation: launch-arrive 1s cubic-bezier(.16, 1, .3, 1) both;
}

.launch-title span {
  display: block;
  color: var(--purple);
  font-style: italic;
  text-shadow: 0 16px 45px rgb(82 42 170 / 16%);
}

.launch-coming {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 24px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: launch-arrive 1s .28s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes launch-arrive {
  from { opacity: 0; transform: translateY(28px) scale(.97); filter: blur(12px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes launch-logo-arrive {
  from { opacity: 0; transform: translateY(20px) scale(.9); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes launch-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(24px, -20px, 0) scale(1.08); }
}

@media (max-width: 600px) {
  .launch-page { padding: 24px; }
  .launch-logo { width: 240px; }
  .launch-title { font-size: 52px; line-height: .98; }
  .launch-coming { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .launch-logo, .launch-title, .launch-coming, .launch-glow { animation: none; }
}
