/* ==========================================================================
   SLIDE 06 — AKT 1 — THE LINEUP (product renders)
   The five real product renders as ONE hardware family. Five cards across the
   stage; each render sits on its own near-black plate (the renders are matte
   bottles on dark, so the plate seats them seamlessly). Mono command-name +
   role eyebrow + a single deadpan reframe line. KERNEL (the flagship powder
   tub) carries a quiet cyan top-edge as the one focal product.
   ========================================================================== */

.nc-lineup__slide { justify-content: center; gap: var(--space-2xl); }

.nc-lineup__head { text-align: left; }
.nc-lineup__head .nc-eyebrow { margin-bottom: var(--space-sm); }
.reveal .nc-lineup__title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
}

.nc-lineup__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}

.nc-prod {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

/* the render plate — near-black so the matte bottle blends in, not a grey box */
.nc-prod__shot {
  background: radial-gradient(120% 90% at 50% 35%, #141313 0%, #0c0b0b 70%, #080707 100%);
  display: grid;
  place-items: center;
  padding: var(--space-md) var(--space-md) 0;
  aspect-ratio: 1 / 1;
}
.nc-prod__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nc-prod__cap {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}
.nc-prod__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1;
}
.nc-prod__role {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  margin: 0.15rem 0 0.4rem;
}
.nc-prod__line {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  line-height: 1.4;
  color: var(--text-muted);
}

/* KERNEL — the flagship. One quiet cyan top-edge = the focal product. */
.nc-prod--hero { border-color: rgba(43,212,196,0.4); }
.nc-prod--hero::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  z-index: 1;
}
.nc-prod--hero .nc-prod__role { color: var(--accent-2); }
