/* NapLab (NapBed) page — the few classes the design adds on top of the shared
   np-*, ag-*, igf-* families. Ported verbatim from the design styles.css. */

/* Product intro block */
.np-product-desc { padding: 96px 40px 72px; background: var(--paper, #fff); text-align: center; }
.np-product-desc-inner { max-width: 720px; margin: 0 auto; }
.np-product-desc .ab-eyebrow { justify-content: center; }
.np-product-title { font-size: clamp(36px, 4vw, 56px); margin: 8px 0 24px; letter-spacing: -0.01em; }
.np-product-sub { font-size: 18px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 20px; }

@media (max-width: 860px) {
  .np-product-desc { padding: 64px 20px 48px; }
}

/* Coming-soon CTA block — ported verbatim from the design styles.css. */
.np-cta {
  background: var(--ink);
  color: #fff;
  padding: 100px 7vw;
  text-align: center;
}
.np-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.np-cta-title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0;
  color: #fff;
}
.np-cta-sub {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.68);
  margin: 0;
  text-wrap: pretty;
}
.np-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 15px 28px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.np-cta-btn:hover { background: var(--accent-warm); transform: translateY(-1px); }
.np-cta-divider {
  border: none;
  border-top: 2px solid rgba(255,255,255,.9);
  margin: 0;
}
