*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: #f5f0e6;
  background: linear-gradient(160deg, #1a2f1a 0%, #2d4a3e 40%, #1a1a2e 100%);
}

.launcher {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

.launcher__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.launcher__header h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.04em;
  color: #d4a853;
}

.launcher__tagline {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.9;
}

.launcher__cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .launcher__cards {
    grid-template-columns: 1fr 1fr;
  }
}

.launcher__card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid rgba(212, 168, 83, 0.35);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  color: inherit;
  text-decoration: none;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.launcher__card:hover {
  transform: translateY(-2px);
  border-color: #d4a853;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.launcher__card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: #e056a0;
}

.launcher__card--visual h2 {
  color: #3a8f8f;
}

.launcher__card p {
  flex: 1;
  margin: 0 0 1.25rem;
  line-height: 1.55;
  font-size: 0.95rem;
  opacity: 0.92;
}

.launcher__cta {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d4a853;
}

.launcher__footer {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.75;
}

.launcher__footer code {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.8rem;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.launcher__footer a {
  color: #d4a853;
  text-decoration: none;
}

.launcher__footer a:hover code {
  text-decoration: underline;
}
