:root {
  color-scheme: dark;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #f8f3e8;
  background: #22165c;
  font-synthesis: none;
  --purple: #22165c;
  --gold: #f4c45e;
  --cream: #f8f3e8;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--purple);
}

.launch {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  grid-template-rows: auto 1fr auto;
  padding: clamp(24px, 4vw, 60px);
}

.launch__image,
.launch__veil {
  position: absolute;
  inset: -28px;
  z-index: -2;
}

.launch__image {
  background: url("/images/foyer-2026.webp") center / cover no-repeat;
  filter: blur(10px) saturate(0.76);
  transform: scale(1.04);
  animation: settle 16s ease-out both;
}

.launch__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(34 22 92 / 95%) 0%, rgb(34 22 92 / 86%) 48%, rgb(34 22 92 / 58%) 100%),
    linear-gradient(0deg, rgb(16 10 48 / 55%), transparent 55%);
}

.launch__header,
.launch__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}

.launch__header {
  padding-bottom: 28px;
  border-bottom: 1px solid rgb(248 243 232 / 20%);
}

.launch__logo {
  width: clamp(190px, 23vw, 360px);
  height: auto;
}

.launch__edition {
  color: rgb(248 243 232 / 68%);
}

.launch__content {
  align-self: center;
  width: min(890px, 100%);
  padding: clamp(64px, 10vh, 120px) 0;
}

.launch__eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  font-weight: 600;
}

.launch h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 8vw, 126px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.93;
  text-wrap: balance;
}

.launch__copy {
  max-width: 510px;
  margin: clamp(28px, 5vh, 54px) 0 0;
  color: rgb(248 243 232 / 76%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.55;
}

.launch__status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 13px 19px;
  border: 1px solid rgb(244 196 94 / 48%);
  border-radius: 999px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  font-weight: 700;
}

.launch__status-mark {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgb(244 196 94 / 13%);
}

.launch__footer {
  padding-top: 24px;
  border-top: 1px solid rgb(248 243 232 / 20%);
  color: rgb(248 243 232 / 58%);
}

@keyframes settle {
  from {
    transform: scale(1.09);
  }
  to {
    transform: scale(1.04);
  }
}

@media (max-width: 640px) {
  .launch {
    padding: 24px 20px;
  }

  .launch__edition {
    display: none;
  }

  .launch__content {
    padding: 70px 0;
  }

  .launch h1 {
    font-size: clamp(48px, 15vw, 76px);
    line-height: 0.98;
  }

  .launch__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .launch__veil {
    background:
      linear-gradient(90deg, rgb(34 22 92 / 94%), rgb(34 22 92 / 75%)),
      linear-gradient(0deg, rgb(16 10 48 / 62%), transparent 55%);
  }
}

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