:root {
  --ink: #11110f;
  --paper: #f7f0e5;
  --cream: #fffaf2;
  --coral: #ff5735;
  --orange: #ff9f28;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; margin: 0; }

body {
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.launch-page {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 78% 48%, rgba(255, 87, 53, .13), transparent 33%),
    radial-gradient(circle at 12% 10%, rgba(255, 159, 40, .08), transparent 28%),
    var(--ink);
}

.launch-shell {
  width: min(1160px, calc(100% - 64px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
  margin: 0 auto;
  padding: 64px 0 116px;
}

.launch-copy h1 {
  margin: 0 0 38px;
  font-size: clamp(52px, 5.8vw, 80px);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -.055em;
}

.launch-copy h1 em {
  color: var(--coral);
  font-style: normal;
}

.brand-panel {
  width: min(430px, 100%);
  padding: 19px 24px;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 20px 7px 20px 7px;
  box-shadow: 8px 8px 0 var(--coral), 0 24px 55px rgba(0, 0, 0, .3);
  transform: rotate(-1deg);
}

.brand-panel img {
  width: 100%;
  height: auto;
  display: block;
}

.art-stage {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 16px;
}

.bottom-banner {
  position: absolute;
  inset: auto 0 0;
  height: 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.banner-track {
  display: flex;
  width: max-content;
  animation: banner-scroll 18s linear infinite;
}

.banner-group {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
  padding-right: 30px;
}

.banner-group span {
  min-width: max-content;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.banner-group i {
  color: var(--coral);
  font-size: 18px;
  font-style: normal;
}

@keyframes banner-scroll {
  to { transform: translateX(-50%); }
}

.hero-art {
  width: min(500px, 42vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, .3));
  animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {
  50% { transform: translateY(-8px); }
}

@media (max-width: 980px) {
  .launch-shell {
    grid-template-columns: 1fr;
    width: min(720px, calc(100% - 42px));
    padding: 76px 0 116px;
    text-align: center;
  }

  .brand-panel { margin-inline: auto; }
  .art-stage { min-height: 430px; }
  .hero-art { width: min(490px, 76vw); }
}

@media (max-width: 600px) {
  .launch-shell {
    width: calc(100% - 32px);
    gap: 16px;
    padding: 54px 0 112px;
  }

  .launch-copy h1 {
    margin: 0 0 28px;
    font-size: clamp(43px, 13vw, 60px);
  }

  .brand-panel {
    width: min(350px, calc(100vw - 54px));
    padding: 15px 18px;
    box-shadow: 6px 6px 0 var(--coral), 0 20px 45px rgba(0, 0, 0, .3);
  }

  .art-stage {
    min-height: 360px;
    padding: 0;
  }

  .hero-art { width: min(400px, 92vw); }
  .bottom-banner { height: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
