.launchpad-page {
  min-height: 100vh;
  background: #f5f5f7;
}

.launchpad-page main,
.launchpad-page .footer {
  font-family: "Manrope", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.launchpad-container {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
}

.launchpad-header {
  padding: 142px 0 68px;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 56, 56, 0.12), transparent 25%),
    radial-gradient(circle at 58% 0%, rgba(0, 36, 85, 0.12), transparent 30%),
    #fbfbfd;
  border-bottom: 1px solid rgba(5, 14, 60, 0.12);
}

.launchpad-kicker,
.app-type {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.launchpad-kicker {
  margin: 0 0 16px;
  color: #dc0000;
  font-size: 14px;
}

.launchpad-header h1 {
  max-width: 860px;
  margin: 0;
  color: #11162a;
  font-size: clamp(56px, 9vw, 104px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.launchpad-intro {
  max-width: 600px;
  margin: 26px 0 0;
  color: #5f6878;
  font-size: 18px;
  line-height: 1.6;
}

.launchpad-library {
  padding: 54px 0 110px;
}

.library-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.library-bar h2 {
  margin: 0;
  color: #11162a;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.launchpad-card:focus-visible {
  outline: 3px solid rgba(220, 0, 0, 0.42);
  outline-offset: 3px;
}

.project-library-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.launchpad-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  align-items: start;
  column-gap: 20px;
  row-gap: 16px;
  min-height: 204px;
  padding: 24px;
  border: 1px solid rgba(5, 14, 60, 0.09);
  border-radius: 28px;
  color: #11162a;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(5, 14, 60, 0.07);
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.launchpad-card:hover {
  border-color: rgba(5, 14, 60, 0.18);
  box-shadow: 0 22px 48px rgba(5, 14, 60, 0.12);
  transform: translateY(-4px);
  text-decoration: none;
}

.app-icon {
  display: grid;
  grid-row: 1 / span 2;
  width: 96px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-radius: 25%;
  background: #11162a;
  box-shadow:
    0 16px 30px rgba(5, 14, 60, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.life-quest-icon { background: #050e3c; }

.life-quest-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cut-studio-icon {
  background: #245bea;
}

.cut-studio-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.app-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.app-type {
  margin-bottom: 7px;
  color: #dc0000;
  font-size: 12px;
}

.app-copy strong {
  color: #11162a;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.app-copy > span:last-child {
  margin-top: 8px;
  color: #5f6878;
  font-size: 15px;
  line-height: 1.5;
}

.open-project {
  grid-column: 2;
  justify-self: start;
  color: #11162a;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.open-project span {
  color: #dc0000;
}

.launchpad-footer {
  background: #f5f5f7;
}

@media (max-width: 900px) {
  .project-library-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .launchpad-card {
    min-height: 176px;
  }
}

@media (max-width: 734px) {
  .launchpad-container {
    width: min(100% - 32px, 1120px);
  }

  .launchpad-header {
    padding: 112px 0 50px;
  }

  .launchpad-header h1 {
    font-size: clamp(52px, 18vw, 76px);
  }

  .launchpad-intro {
    font-size: 16px;
  }

  .launchpad-library {
    padding: 36px 0 76px;
  }

  .library-bar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }

  .launchpad-card {
    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 17px;
    min-height: 0;
    padding: 18px;
    border-radius: 24px;
  }

  .app-icon {
    grid-row: auto;
    width: 82px;
  }

  .app-copy strong {
    font-size: 19px;
  }

  .app-copy > span:last-child {
    font-size: 14px;
  }

  .open-project {
    display: none;
  }
}

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