/* ── NourishPay page-specific styles ─────────────────────────────────────── */
/* Uses design tokens from shared.css — do not redefine --bg, --text, etc.   */

/* ── Section rhythm ──────────────────────────────────────────────────────── */
.np-section {
  padding: 128px 40px;
}
.np-section--alt {
  background: var(--surface);
}
.np-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.np-inner--narrow {
  max-width: 760px;
}
@media (max-width: 900px) {
  .np-section { padding: 96px 32px; }
}
@media (max-width: 600px) {
  .np-section { padding: 72px 24px; }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.np-hero {
  padding: 140px 40px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.np-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(106,191,68,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(208,104,46,.08) 0%, transparent 60%);
  pointer-events: none;
}
.np-hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.np-hero .display {
  margin-bottom: 32px;
}
.np-hero .lead {
  max-width: 600px;
  margin: 0 auto 48px;
}
.np-trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.np-trust-bar span {
  font-size: 0.75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted, #7A9BA0);
}
.np-trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted, #7A9BA0);
  display: inline-block;
}

/* ── What-is grid ────────────────────────────────────────────────────────── */
.np-concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 680px) {
  .np-concept-grid { grid-template-columns: 1fr; gap: 20px; }
}
.np-concept-card {
  background: var(--surface);
  border: 1px solid rgba(106,191,68,.15);
  border-radius: 14px;
  padding: 40px 32px;
}
.np-concept-card .card-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}
.np-concept-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-bright, #E8F4F0);
  margin-bottom: 12px;
}
.np-concept-card p {
  font-size: 0.9rem;
  color: var(--text-muted, #7A9BA0);
  line-height: 1.7;
}

/* ── Value callout ───────────────────────────────────────────────────────── */
.np-value-callout {
  background: var(--surface);
  border: 1px solid rgba(208,104,46,.25);
  border-radius: 20px;
  padding: 88px 72px;
  text-align: center;
}
.np-value-callout .eyebrow {
  margin-bottom: 20px;
}
.np-value-callout .display {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 24px;
  line-height: 1.25;
}
.np-value-callout p:not(.eyebrow) {
  max-width: 540px;
  margin: 0 auto;
  color: var(--text-muted, #7A9BA0);
  line-height: 1.75;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .np-value-callout { padding: 64px 48px; }
}
@media (max-width: 600px) {
  .np-value-callout { padding: 48px 28px; }
}

/* ── Calculator ──────────────────────────────────────────────────────────── */
.np-calc-box {
  background: var(--surface);
  border: 1px solid rgba(106,191,68,.2);
  border-radius: 20px;
  padding: 64px 56px;
}
.np-calc-box .eyebrow {
  margin-bottom: 12px;
}
.np-calc-box h2 {
  margin-bottom: 16px;
}
.np-calc-question {
  font-size: 1.05rem;
  color: var(--text-muted, #7A9BA0);
  margin-bottom: 48px;
  line-height: 1.6;
}
.np-spend-display-wrap {
  text-align: center;
  margin-bottom: 24px;
}
#np-spend-display {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--accent-2);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.np-spend-label {
  font-size: 0.8rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted, #7A9BA0);
  margin-top: 6px;
}
.np-slider-wrap {
  margin-bottom: 24px;
}
#np-spend-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(
    to right,
    var(--accent-2) 0%,
    var(--accent-2) var(--fill, 33%),
    rgba(106,191,68,.2) var(--fill, 33%),
    rgba(106,191,68,.2) 100%
  );
  outline: none;
  cursor: pointer;
}
#np-spend-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(106,191,68,.2);
  cursor: pointer;
  transition: box-shadow .15s;
}
#np-spend-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 7px rgba(106,191,68,.25);
}
#np-spend-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: var(--accent-2);
  cursor: pointer;
}
.np-slider-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted, #7A9BA0);
  margin-top: 8px;
}
.np-preset-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.np-preset-btn {
  flex: 1;
  min-width: 72px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(106,191,68,.25);
  background: transparent;
  color: var(--text-muted, #7A9BA0);
  font-size: 0.875rem;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.np-preset-btn:hover,
.np-preset-btn.active {
  background: rgba(106,191,68,.12);
  border-color: var(--accent-2);
  color: var(--accent-2);
}
#np-calc-result {
  min-height: 140px;
}
.calc-result-inner {
  background: rgba(106,191,68,.06);
  border: 1px solid rgba(106,191,68,.2);
  border-radius: 14px;
  padding: 36px 40px;
}
.calc-label {
  font-size: 0.75rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted, #7A9BA0);
  margin-bottom: 6px;
}
.calc-tier-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 20px;
}
.calc-note {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted, #7A9BA0);
  margin-bottom: 16px;
  font-style: italic;
}
.calc-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 500px) {
  .calc-numbers { grid-template-columns: 1fr; }
}
/* 3-column variant used by the level-finder output */
.calc-numbers--3col {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 600px) {
  .calc-numbers--3col { grid-template-columns: 1fr; }
}
.calc-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(0,0,0,.15);
  border-radius: 10px;
  padding: 20px 20px;
}
/* Label sits above value in the level-finder output */
.calc-numbers--3col .calc-stat {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.calc-numbers--3col .calc-stat:first-child {
  border-top: none;
  padding-top: 0;
}
@media (min-width: 601px) {
  .calc-numbers--3col .calc-stat {
    border-top: none;
    padding-top: 0;
    border-left: 1px solid rgba(255,255,255,.06);
    padding-left: 16px;
  }
  .calc-numbers--3col .calc-stat:first-child {
    border-left: none;
    padding-left: 0;
  }
}
.calc-stat-val {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-bright, #E8F4F0);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.calc-stat-key {
  font-size: 0.8rem;
  color: var(--text-muted, #7A9BA0);
}
.calc-stat-note {
  font-size: 0.75rem;
  color: var(--text-muted, #7A9BA0);
  opacity: 0.8;
  margin-top: 2px;
}
.np-calc-disclaimer {
  margin-top: 32px;
  padding: 24px 28px;
  border-radius: 12px;
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.05);
}
.np-calc-disclaimer p {
  font-size: 0.78rem;
  color: var(--text-muted, #7A9BA0);
  line-height: 1.6;
  margin-bottom: 8px;
}
.np-calc-disclaimer p:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .np-calc-box { padding: 48px 40px; }
}
@media (max-width: 600px) {
  .np-calc-box { padding: 36px 24px; }
}

/* ── How It Works ─────────────────────────────────────────────────────────── */
.np-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 720px) {
  .np-steps {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .np-steps { grid-template-columns: 1fr; gap: 16px; }
}
.np-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(106,191,68,.1);
  border-radius: 14px;
}
.np-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg, #080F0A);
  border: 2px solid var(--accent-2);
  color: var(--accent-2);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.np-step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-bright, #E8F4F0);
  margin-bottom: 12px;
}
.np-step p {
  font-size: 0.875rem;
  color: var(--text-muted, #7A9BA0);
  line-height: 1.65;
}

/* ── Program Levels (Tier Cards) ─────────────────────────────────────────── */
.np-section-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted, #7A9BA0);
  letter-spacing: .04em;
  margin-bottom: 48px;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.np-tiers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .np-tiers-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .np-tiers-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 480px) {
  .np-tiers-grid { grid-template-columns: 1fr; gap: 14px; }
}
.np-tier-card {
  background: var(--surface);
  border: 1px solid rgba(106,191,68,.15);
  border-radius: 16px;
  padding: 32px 24px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}
.np-tier-card:hover {
  border-color: rgba(106,191,68,.4);
}
.np-tier-card.calc-highlight {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 1px var(--accent-2), 0 8px 32px rgba(106,191,68,.12);
}
.np-tier-badge {
  font-size: 0.7rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 10px;
}
.np-tier-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-bright, #E8F4F0);
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
  line-height: 1;
}
.np-tier-period {
  font-size: 0.78rem;
  color: var(--text-muted, #7A9BA0);
  margin-bottom: 28px;
}
.np-tier-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  flex: 1;
}
.np-tier-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.np-tier-stat:first-child {
  padding-top: 0;
}
.np-tier-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.np-tier-stat-val {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-bright, #E8F4F0);
  font-variant-numeric: tabular-nums;
}
.np-tier-stat-key {
  font-size: 0.74rem;
  color: var(--text-muted, #7A9BA0);
  line-height: 1.45;
}

/* ── GROW Rewards section ─────────────────────────────────────────────────── */
.np-grow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 700px) {
  .np-grow-grid { grid-template-columns: 1fr; gap: 40px; }
}
.np-grow-text .eyebrow {
  margin-bottom: 16px;
}
.np-grow-text .h2 {
  margin-bottom: 24px;
}
.np-grow-text p {
  color: var(--text-muted, #7A9BA0);
  line-height: 1.75;
  margin-bottom: 28px;
}
.np-grow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-2);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.np-grow-link:hover { text-decoration: underline; }
.np-grow-visual {
  background: var(--bg, #080F0A);
  border: 1px solid rgba(106,191,68,.15);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
}
.np-grow-icon {
  font-size: 4.5rem;
  margin-bottom: 20px;
}
.np-grow-visual h3 {
  margin-bottom: 16px;
}
.np-grow-visual p {
  font-size: 0.9rem;
  color: var(--text-muted, #7A9BA0);
  line-height: 1.7;
}

/* ── NFT Section ─────────────────────────────────────────────────────────── */
.np-nft-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 700px) {
  .np-nft-grid { grid-template-columns: 1fr; gap: 40px; }
}
.np-nft-visual {
  background: var(--surface);
  border: 1px solid rgba(208,104,46,.2);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
}
.np-nft-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}
.np-nft-visual h3 {
  font-size: 1rem;
  color: var(--text-bright, #E8F4F0);
  margin-bottom: 12px;
}
.np-nft-visual p {
  font-size: 0.84rem;
  color: var(--text-muted, #7A9BA0);
  line-height: 1.7;
}
.np-nft-text .eyebrow {
  margin-bottom: 16px;
}
.np-nft-text .h2 {
  margin-bottom: 24px;
}
.np-nft-text p {
  color: var(--text-muted, #7A9BA0);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ── Terms / Risks FAQ ───────────────────────────────────────────────────── */
.np-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  overflow: hidden;
}
.np-faq-item {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.np-faq-item:last-child {
  border-bottom: none;
}
.np-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-bright, #E8F4F0);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: background .15s;
}
.np-faq-q:hover {
  background: rgba(255,255,255,.03);
}
.np-faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--text-muted, #7A9BA0);
  transition: transform .2s;
}
.np-faq-item.open .np-faq-chevron {
  transform: rotate(180deg);
}
.np-faq-a {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
}
.np-faq-item.open .np-faq-a {
  max-height: 600px;
  padding: 0 28px 24px;
}
.np-faq-a p {
  font-size: 0.9rem;
  color: var(--text-muted, #7A9BA0);
  line-height: 1.75;
}
.np-faq-a ul {
  font-size: 0.9rem;
  color: var(--text-muted, #7A9BA0);
  line-height: 1.75;
}
.np-faq-a strong {
  color: var(--text-bright, #E8F4F0);
}

/* ── Get Started ─────────────────────────────────────────────────────────── */
#get-started {
  text-align: center;
}
.np-gs-wrap {
  max-width: 580px;
  margin: 0 auto;
}
.np-gs-wrap .eyebrow {
  margin-bottom: 16px;
}
.np-gs-wrap .h2 {
  margin-bottom: 16px;
}
.np-gs-wrap > p {
  color: var(--text-muted, #7A9BA0);
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ═══ NOURISHPAY CTA PLACEHOLDER ════════════════════════════════════════════
   Replace the form below with the actual GHL NourishPay form embed or
   update the form action/method when the real form URL is available.
   Search this file for: NOURISHPAY_CTA_URL
   ══════════════════════════════════════════════════════════════════════════ */
.np-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.np-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .np-form-row { grid-template-columns: 1fr; }
}
.np-form input,
.np-form select {
  width: 100%;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-bright, #E8F4F0);
  outline: none;
  transition: border-color .15s;
  box-sizing: border-box;
}
.np-form input::placeholder {
  color: var(--text-muted, #7A9BA0);
}
.np-form select {
  color: var(--text-muted, #7A9BA0);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A9BA0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.np-form select option {
  background: #16241A;
  color: #BACED2;
}
.np-form input:focus,
.np-form select:focus {
  border-color: var(--accent-2);
}
.np-form .btn {
  width: 100%;
  justify-content: center;
}
.np-form-legal {
  font-size: 0.76rem;
  color: var(--text-muted, #7A9BA0);
  line-height: 1.6;
  text-align: center;
  margin-top: 8px;
}

/* ── Section headers ─────────────────────────────────────────────────────── */
.np-section-header {
  margin-bottom: 64px;
}
.np-section-header.centered {
  text-align: center;
}
.np-section-header .eyebrow {
  margin-bottom: 16px;
}
.np-section-header .h2 {
  margin-bottom: 16px;
}
.np-section-header p {
  color: var(--text-muted, #7A9BA0);
  max-width: 520px;
  line-height: 1.7;
}
.np-section-header.centered p {
  margin: 0 auto;
}
