/* ===== V2 — No-Equipment / No-Gym section ===== */
/* All rules scoped .nfx-noequipment- and use global .nfx-page tokens */

.nfx-noequipment {
  /* tighter top gap (was clamp(4rem … 8rem) both sides) */
  padding-block: clamp(1.25rem, 0.8rem + 1.6vw, 3rem) clamp(3.5rem, 2.5rem + 4vw, 6.5rem);
}

.nfx-noequipment-grid {
  display: grid;
  grid-template-columns: 1fr 620px;
  align-items: center;
  gap: clamp(2.5rem, 1rem + 6vw, 7.5rem);
}

/* ---- Left column: copy ---- */
.nfx-noequipment-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
}

.nfx-noequipment-title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(2rem, 1.2rem + 3vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  background: linear-gradient(
    180deg,
    var(--nfx-text) 39.61%,
    rgba(255, 255, 255, 0) 157.79%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nfx-noequipment-lead {
  margin: 0;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--nfx-muted);
}

/* ---- Right column: dark stage with watermark + card ---- */
.nfx-noequipment-stage {
  position: relative;
  width: 100%;
  height: 500px;
  background: #0c0b0a;
  border: 1px solid rgba(34, 33, 32, 0.5);
  border-radius: 22px;
  overflow: hidden;
}

.nfx-noequipment-watermark {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  white-space: nowrap;
  font-weight: 600;
  font-size: clamp(3.5rem, 2rem + 6vw, 5.75rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  background: linear-gradient(
    180deg,
    #292928 39.61%,
    rgba(12, 11, 10, 0) 92.79%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
}

/* Ghost duplicate card behind for depth */
.nfx-noequipment-card {
  position: absolute;
  left: 50%;
  top: 102px;
  transform: translateX(-50%);
  width: min(480px, 86%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #161514;
  border: 1.5px solid #222120;
  border-radius: 16px;
}

.nfx-noequipment-card--ghost {
  top: 155px;
  left: calc(50% + 24px);
  opacity: 0.5;
}

.nfx-noequipment-card-title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--nfx-text);
}

.nfx-noequipment-card-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.75rem;
  background: #252525;
  border-radius: 10px;
}

.nfx-noequipment-card-text {
  margin: 0;
  flex: 1;
  font-weight: 500;
  font-size: clamp(1rem, 0.85rem + 0.6vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--nfx-text);
}

.nfx-noequipment-check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: var(--nfx-gold);
  border: 1.5px solid var(--nfx-gold);
  color: var(--nfx-ink);
}

.nfx-noequipment-check i {
  font-size: 30px;
  line-height: 1;
}

/* Bottom fade so the stage dissolves into the page */
.nfx-noequipment-fade {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 266px;
  background: linear-gradient(180deg, rgba(12, 11, 10, 0) 0%, #0c0b0a 50%);
  pointer-events: none;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .nfx-noequipment-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .nfx-noequipment-copy {
    max-width: none;
  }

  .nfx-noequipment-stage {
    height: 420px;
  }

  .nfx-noequipment-card--ghost {
    display: none;
  }

  .nfx-noequipment-card {
    width: min(440px, 92%);
  }
}
