.nal-launch-section {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(200,184,238,.42), transparent 28rem),
    radial-gradient(circle at 92% 88%, rgba(215,243,90,.28), transparent 25rem),
    #202126;
  color: #fff;
}

.nal-launch-section::before {
  content: "FIRST LAUNCH";
  position: absolute;
  top: -0.18em;
  right: -0.04em;
  color: rgba(255,255,255,.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.08em;
  pointer-events: none;
}

.nal-launch-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

.nal-launch-head .nal-eyebrow { color: #d7f35a; }
.nal-launch-head h2 {
  max-width: 760px;
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.nal-launch-head > p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  line-height: 1.75;
}

.nal-launch-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.nal-launch-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.07);
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}

.nal-launch-card__media {
  position: relative;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  background: #dddcd6;
}
.nal-launch-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.nal-launch-card:hover .nal-launch-card__media img { transform: scale(1.025); }

.nal-launch-card__badges {
  position: absolute;
  inset: 16px 16px auto 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.nal-launch-card__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  color: #202126;
  background: rgba(255,255,255,.92);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .04em;
}
.nal-launch-card__badges span:last-child { background: #d7f35a; }

.nal-launch-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
.nal-launch-card__body h3 {
  margin: 7px 0 0;
  color: #fff;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.06;
  letter-spacing: -.055em;
}
.nal-launch-card__subtitle {
  margin: 10px 0 0;
  color: #c8b8ee;
  font-weight: 760;
  line-height: 1.55;
}
.nal-launch-card__summary {
  margin: 16px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.68;
}
.nal-launch-card__meta {
  margin: 18px 0 0;
  color: rgba(255,255,255,.58);
  font-size: .88rem;
  font-weight: 740;
}
.nal-launch-card__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: auto;
  padding-top: 24px;
}
.nal-launch-card__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 17px;
  border-radius: 999px;
  font-weight: 820;
  text-align: center;
}
.nal-launch-card__detail {
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  background: transparent;
}
.nal-launch-card__action {
  color: #202126;
  background: #d7f35a;
}
.nal-launch-card__actions a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.nal-launch-note {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  color: rgba(255,255,255,.6);
  font-size: .86rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .nal-launch-head { grid-template-columns: 1fr; align-items: start; }
  .nal-launch-grid { grid-template-columns: 1fr; }
  .nal-launch-card { display: grid; grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr); }
  .nal-launch-card__media { aspect-ratio: auto; min-height: 320px; }
}

@media (max-width: 640px) {
  .nal-launch-section { padding: 58px 0; }
  .nal-launch-head { gap: 18px; margin-bottom: 24px; }
  .nal-launch-head h2 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .nal-launch-card { display: flex; border-radius: 22px; }
  .nal-launch-card__media { min-height: 0; aspect-ratio: 4 / 3; }
  .nal-launch-card__body { padding: 20px; }
  .nal-launch-card__body h3 { font-size: 1.75rem; }
  .nal-launch-card__actions a { min-height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  .nal-launch-card__media img { transition: none; }
}
