:root {
  color: #f7f6f1;
  background: #061825;
  font-family:
    Inter,
    Aptos,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
}

a {
  color: inherit;
}

.launch {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(24px, 4vw, 54px) clamp(24px, 7vw, 112px) 34px;
  background:
    radial-gradient(circle at 82% 18%, rgb(23 126 117 / 24%), transparent 29rem),
    linear-gradient(145deg, #061825, #0a2a38 66%, #0c3a42);
  grid-template-rows: auto 1fr auto;
}

.ambient {
  position: absolute;
  border: 1px solid rgb(159 227 215 / 13%);
  border-radius: 50%;
  pointer-events: none;
}

.ambient-one {
  width: min(55vw, 760px);
  height: min(55vw, 760px);
  right: -18vw;
  bottom: -36vw;
  box-shadow:
    0 0 0 70px rgb(159 227 215 / 4%),
    0 0 0 150px rgb(159 227 215 / 3%);
}

.ambient-two {
  width: 170px;
  height: 170px;
  top: 21%;
  right: 16%;
  opacity: 0.54;
}

.launch-header,
.launch-content,
footer {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin-inline: auto;
}

.launch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 820;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  color: #081b2c;
  background: #9fe3d7;
}

.mark svg {
  width: 28px;
  fill: currentColor;
}

.mark .mark-cut {
  fill: #9fe3d7;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #bbd1d8;
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f6c453;
  box-shadow: 0 0 0 5px rgb(246 196 83 / 12%);
}

.launch-content {
  display: flex;
  max-width: 1180px;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(90px, 14vh, 170px);
}

.eyebrow {
  margin: 0 0 18px;
  color: #9fe3d7;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(3.25rem, 8vw, 7.2rem);
  line-height: 0.93;
  letter-spacing: -0.067em;
  text-wrap: balance;
}

.intro {
  max-width: 680px;
  margin: 34px 0 0;
  color: #bfd2da;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.72;
}

.launch-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.primary {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 20px;
  border-radius: 8px;
  color: #081b2c;
  background: #9fe3d7;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease;
}

.primary:hover {
  transform: translateY(-2px);
}

.primary svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.launch-actions p {
  margin: 0;
  color: #91acb7;
  font-size: 0.88rem;
}

a:focus-visible {
  outline: 3px solid #f6c453;
  outline-offset: 5px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgb(159 227 215 / 14%);
}

footer p {
  margin: 0;
  color: #7896a2;
  font-size: 0.72rem;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .launch {
    padding-inline: 22px;
  }

  .status {
    font-size: 0.66rem;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .launch-actions,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .primary {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .primary {
    transition: none;
  }
}
