html,
body.launch-page {
  overflow: auto;
}

.launch-page .bg-overlay {
  background: rgba(2, 3, 3, 0.8);
}

.launch-shell {
  min-height: 100dvh;
  height: auto;
  overflow: auto;
  padding-block: clamp(18px, 4vh, 52px);
}

.launch-stage {
  width: min(100%, 780px);
  min-height: min(920px, calc(100dvh - 36px));
  justify-content: center;
}

.launch-content {
  margin-top: clamp(12px, 2vh, 34px);
}

.launch-panel {
  position: relative;
  overflow: hidden;
  width: min(100%, 680px);
  margin-top: clamp(18px, 3vh, 36px);
  border: 1px solid rgba(50, 214, 218, 0.58);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 50% 0%, rgba(70, 255, 131, 0.18), transparent 12rem),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    rgba(0, 0, 0, 0.62);
  background-size: auto, 100% 5px, auto;
  box-shadow:
    inset 0 0 40px rgba(50, 214, 218, 0.1),
    0 24px 72px rgba(0, 0, 0, 0.36);
}

.launch-panel::before,
.launch-panel::after {
  position: absolute;
  left: 18px;
  right: 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(70, 255, 131, 0.78), transparent);
}

.launch-panel::before {
  top: 18px;
}

.launch-panel::after {
  bottom: 18px;
}

.panel-label {
  margin: 0;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.launch-panel h2 {
  margin: clamp(14px, 3vh, 24px) 0 0;
  font-size: clamp(2rem, 7vw, 3.8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.launch-panel p:not(.panel-label) {
  max-width: 38rem;
  margin: 18px auto 0;
  color: #d7e3df;
  font-size: clamp(0.98rem, 2.5vw, 1.12rem);
  font-weight: 760;
  line-height: 1.5;
}

.launch-actions {
  display: grid;
  grid-template-columns: minmax(0, 260px);
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

.launch-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(50, 214, 218, 0.58);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.32);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.launch-button:hover,
.launch-button:focus-visible {
  color: #041012;
  background: var(--cyan);
  outline: none;
}

.launch-button:focus-visible {
  box-shadow: 0 0 0 3px rgba(50, 214, 218, 0.24);
}

.launch-button.primary {
  border-color: rgba(70, 255, 131, 0.74);
  background: rgba(70, 255, 131, 0.16);
}

.launch-button.primary:hover,
.launch-button.primary:focus-visible {
  color: #041006;
  background: var(--lime);
}

.launch-grid {
  display: grid;
  width: min(100%, 680px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: clamp(14px, 2.4vh, 26px) 0 0;
  padding: 0;
  list-style: none;
}

.launch-grid li {
  position: relative;
  min-height: 48px;
  border: 1px solid rgba(50, 214, 218, 0.28);
  border-radius: 8px;
  padding: 14px 14px 14px 34px;
  color: #e8f4ee;
  background: rgba(0, 0, 0, 0.36);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: left;
}

.launch-grid li::before {
  position: absolute;
  top: 18px;
  left: 14px;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(70, 255, 131, 0.78);
}

@media (prefers-reduced-motion: no-preference) {
  .launch-panel {
    animation: launch-glow 1200ms ease-out 1;
  }
}

@keyframes launch-glow {
  0% {
    border-color: rgba(70, 255, 131, 0.9);
    box-shadow:
      inset 0 0 50px rgba(70, 255, 131, 0.16),
      0 0 54px rgba(70, 255, 131, 0.16);
  }

  100% {
    border-color: rgba(50, 214, 218, 0.58);
    box-shadow:
      inset 0 0 40px rgba(50, 214, 218, 0.1),
      0 24px 72px rgba(0, 0, 0, 0.36);
  }
}

@media (max-width: 620px) {
  .launch-actions,
  .launch-grid {
    grid-template-columns: 1fr;
  }

  .launch-stage {
    min-height: auto;
  }
}
