/* Nexa — e-commerce concept. The page is deliberately image led: a heading,
   two or three sentences, then a full width screen. Everything else (nav,
   more-work, CTA, footer) comes from detail-common. */

.nx-hero {
  padding: 140px 0 100px;
  text-align: center;
  background: var(--bg-dark);
}

.nx-eyebrow {
  display: inline-block;
  margin: 0 0 20px;
  color: var(--mint);
  font-family: var(--font-hand);
  font-size: var(--text-l);
  font-weight: 700;
  transform: rotate(-3deg);
}

.nx-title {
  margin: 0 0 24px;
  color: var(--text-dark-1);
  font-family: var(--font-display);
  font-size: var(--h1);
  font-weight: var(--fw-semibold);
  letter-spacing: -.04em;
  line-height: .92;
}

.nx-desc {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-dark-2);
  font-size: var(--text-m);
  line-height: 1.5;
}

/* the hero export already sits on black, so it needs no frame around it */
.nx-hero-mockup {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: clamp(36px, 5vw, 56px) auto 0;
}

/* ---------- screen sections ---------- */

.nx-section { padding-top: var(--section-pad-sm, 64px); }

.nx-lede {
  max-width: 720px;
  margin: 0 0 clamp(28px, 4vw, 44px);
  color: var(--text-light-2);
  font-size: var(--text-m);
  line-height: var(--lh-text);
}

.nx-shot {
  margin: 0;
  border: 1px solid var(--border-soft, #efefef);
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  background: #fff;
}

.nx-shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* the two checkout steps read as one flow, so they sit directly under each other */
.nx-stack {
  display: grid;
  gap: 20px;
}

@media (max-width: 680px) {
  .nx-hero { padding: 112px 0 72px; }
  .nx-lede { font-size: var(--text-r, 16px); }
  .nx-shot { border-radius: 8px; }
}
