:root {
  --black: #030304;
  --iron: #101012;
  --bone: #f1eadb;
  --smoke: #9a9387;
  --ash: #403c37;
  --ember: #ff3b18;
  --ember-soft: #a22a18;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: var(--black);
  color: var(--bone);
  font-family: "Bahnschrift", "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.duat {
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 72%, rgba(255, 59, 24, 0.16), transparent 28rem),
    radial-gradient(circle at 12% 18%, rgba(241, 234, 219, 0.06), transparent 18rem),
    linear-gradient(180deg, #070707 0%, var(--black) 58%, #0b0504 100%);
}

.launch {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: clamp(18px, 4vw, 54px);
  isolation: isolate;
}

.launch::before {
  content: "";
  position: absolute;
  inset: clamp(14px, 2.8vw, 38px);
  z-index: -3;
  border: 1px solid rgba(241, 234, 219, 0.08);
  pointer-events: none;
}

.launch::after {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(92px, 14vw, 170px);
  height: 1px;
  z-index: -4;
  background: linear-gradient(90deg, transparent, rgba(255, 59, 24, 0.65), transparent);
  box-shadow: 0 0 46px rgba(255, 59, 24, 0.36);
}

.launch__ambient {
  position: absolute;
  inset: 0;
  z-index: -5;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(255, 59, 24, 0.08) 46.2% 46.7%, transparent 47%),
    linear-gradient(180deg, transparent 0 55%, rgba(241, 234, 219, 0.035) 55.2%, transparent 55.5%),
    radial-gradient(ellipse at 50% 102%, rgba(255, 59, 24, 0.2), transparent 34rem);
}

.launch__meta {
  align-self: start;
  margin: clamp(12px, 2vw, 26px) 0 0;
  color: var(--smoke);
  font-size: clamp(0.78rem, 1.2vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.launch__center {
  align-self: center;
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) 0 clamp(84px, 13vw, 150px);
  text-align: center;
}

.wordmark {
  position: relative;
  margin: 0;
  color: rgba(241, 234, 219, 0.9);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(6rem, 23vw, 18rem);
  font-weight: 400;
  line-height: 0.8;
  text-shadow: 0 22px 64px rgba(0, 0, 0, 0.74);
  transform: scaleY(1.04);
}

.launch__line {
  margin: clamp(18px, 3vw, 34px) 0 0;
  color: var(--bone);
  font-size: clamp(1.8rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.98;
}

.launch__subline {
  max-width: 38rem;
  margin: clamp(16px, 2.3vw, 24px) auto 0;
  color: var(--smoke);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  font-weight: 800;
  line-height: 1.42;
}

.launch__mark {
  content: "";
  position: absolute;
  left: 50%;
  bottom: clamp(86px, 14vw, 168px);
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 59, 24, 0.14), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
  animation: ember-breath 6s ease-in-out infinite;
}

.social {
  align-self: end;
  justify-self: end;
  display: flex;
  gap: 10px;
  margin-bottom: clamp(10px, 2vw, 24px);
}

.social a {
  min-width: 7.6rem;
  padding: 13px 16px;
  border: 1px solid rgba(241, 234, 219, 0.15);
  color: var(--smoke);
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.social a:hover {
  border-color: rgba(255, 59, 24, 0.72);
  color: var(--bone);
  transform: translateY(-2px);
}

.social a:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 4px;
}

@keyframes ember-breath {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-50%) scale(0.96);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.03);
  }
}

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

  .wordmark {
    font-size: clamp(5.8rem, 30vw, 9rem);
  }

  .launch__center {
    padding: 82px 0 118px;
  }

  .launch__line {
    font-size: clamp(2.2rem, 12vw, 3.7rem);
  }

  .launch__subline {
    max-width: 20rem;
  }

  .social {
    justify-self: stretch;
    margin-bottom: 6px;
  }

  .social a {
    flex: 1;
    text-align: center;
  }
}

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