/* Launch information, rebuilt as an editorial manifest rather than a stats table. */
.hero .hero-actions {
  margin-top: clamp(24px, 2.4vw, 34px);
}

.launch-manifest {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid color-mix(in srgb, var(--lime) 27%, var(--line));
  border-radius: clamp(22px, 2.4vw, 32px);
  background:
    radial-gradient(circle at 0 100%, #ccff0018, transparent 34%),
    linear-gradient(135deg, #ccff0008, transparent 44%),
    var(--surface);
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 72px);
  box-shadow: 0 24px 72px #00000024;
  position: relative;
  overflow: hidden;
}

.launch-manifest::after {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(24px, 3vw, 38px);
  width: 58px;
  height: 4px;
  background: var(--lime);
}

.launch-manifest-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
}

.launch-manifest-intro .eyebrow {
  margin-bottom: 18px;
}

.launch-manifest-title {
  max-width: 300px;
  margin: 0;
  color: var(--graphite);
  font-size: clamp(34px, 4.1vw, 58px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.launch-manifest-content {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto;
  border-left: 1px solid var(--line);
  padding-left: clamp(28px, 4vw, 58px);
}

.launch-manifest-facts {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.launch-manifest-facts > div {
  min-height: 94px;
  padding: 4px clamp(18px, 2.5vw, 34px) 22px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
}

.launch-manifest-facts > div + div {
  border-left: 1px solid var(--line);
  padding-left: clamp(22px, 3.4vw, 48px);
}

.launch-manifest-facts dt,
.launch-manifest-contract > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.18em;
}

.launch-manifest-facts dd {
  margin: 0;
  color: var(--graphite);
  font-size: clamp(20px, 2.15vw, 30px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.launch-status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px #ccff0017;
}

.launch-manifest-contract {
  min-width: 0;
  padding: 24px 0 4px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(180px, 0.54fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.launch-manifest-contract strong {
  color: var(--graphite);
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.065em;
  overflow-wrap: anywhere;
}

.launch-manifest-contract strong a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 720px) {
  .hero {
    padding-bottom: 54px;
  }

  .hero .hero-actions {
    margin-top: 22px;
  }

  .launch-manifest {
    width: 100%;
    padding: 26px 22px 22px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .launch-manifest::after {
    right: 22px;
    width: 46px;
  }

  .launch-manifest-title {
    max-width: none;
    font-size: clamp(34px, 10vw, 48px);
  }

  .launch-manifest-content {
    border-left: 0;
    padding-left: 0;
  }

  .launch-manifest-facts > div {
    min-height: 82px;
    padding: 0 14px 20px 0;
  }

  .launch-manifest-facts > div + div {
    padding-left: 18px;
  }

  .launch-manifest-facts dd {
    font-size: clamp(18px, 5.2vw, 23px);
  }

  .launch-manifest-contract {
    padding-top: 22px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .launch-manifest-contract strong {
    width: 100%;
    font-size: clamp(10px, 3.05vw, 13px);
    letter-spacing: 0.015em;
    line-height: 1.4;
  }

  .launch-manifest-contract strong a {
    display: block;
    width: 100%;
    white-space: nowrap;
  }
}

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

  .launch-manifest-facts {
    grid-template-columns: 1fr;
  }

  .launch-manifest-facts > div {
    min-height: 76px;
    padding: 0 0 18px;
  }

  .launch-manifest-facts > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 18px 0;
  }
}
