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

html,
body {
  margin: 0;
  padding: 0;
}

/* Page background and typography */
.launcher-body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #e5f0ff 0, #e5f0ff 30%, #0f172a 100%);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Centered panel */
.launcher {
  width: 100%;
  max-width: 1200px;
  padding: 2.5rem 1.5rem;
}

.launcher__panel {
  background: #ffffff;
  border-radius: 1.75rem;
  padding: 2.5rem 2rem 2.25rem;
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(15, 23, 42, 0.04);
}

/* Header */
.launcher__header {
  margin-bottom: 2rem;
}

.launcher__title {
  margin: 0 0 0.25rem;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.launcher__subtitle {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6b7280;
}

/* Cards container */
.launcher__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

/* Card styling */
.launcher-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 1.4rem;
  border-radius: 1.25rem;
  text-decoration: none;
  background: linear-gradient(145deg, #0f172a, #111827);
  color: #f9fafb;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
  transition:
    transform 150ms ease-out,
    box-shadow 150ms ease-out,
    border-color 150ms ease-out,
    background 150ms ease-out;
}

.launcher-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(56, 189, 248, 0.22),
    transparent 60%
  );
  opacity: 0.9;
  pointer-events: none;
}

.launcher-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.45);
  border-color: rgba(96, 165, 250, 0.9);
  background: linear-gradient(145deg, #020617, #020617);
}

/* Card inner content */
.launcher-card__content {
  position: relative;
  z-index: 1;
}

.launcher-card__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
}

.launcher-card__title {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.launcher-card__label {
  margin: 0;
  font-size: 0.95rem;
  color: #d1d5db;
}

/* CTA chip */
.launcher-card__cta {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: 1.25rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e7eb;
  background-color: rgba(15, 23, 42, 0.85);
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .launcher__panel {
    padding: 1.75rem 1.4rem 1.9rem;
    border-radius: 1.4rem;
  }

  .launcher__title {
    font-size: 1.5rem;
  }
}
