/* ============================================================
   HOME PAGE STYLES
   Conversion page: hero, problem, how-it-helps, why-choose,
   income, proof preview, FAQ. Mobile-first throughout.
   ============================================================ */

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(56px, 14vw, 130px) 0 clamp(56px, 11vw, 110px);
  text-align: center;
  overflow: hidden;
}

/* Ambient copper glow behind the headline — the one restrained
   atmospheric touch. Kept subtle on purpose. */
.hero::before {
  content: "";
  position: absolute;
  top: -12%;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  max-width: 130vw;
  height: 720px;
  background: radial-gradient(
    circle,
    var(--glow-copper) 0%,
    rgba(197, 139, 92, 0.04) 38%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero .eyebrow { margin-bottom: 24px; }

.hero h1 {
  font-size: clamp(2rem, 8.5vw, 3.7rem);
  margin-bottom: 22px;
}

.hero-intro {
  max-width: 540px;
  margin: 0 auto clamp(32px, 6vw, 40px);
  font-size: clamp(1.02rem, 3.4vw, 1.14rem);
  color: var(--text-2);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 340px;
  margin: 0 auto;
}

/* Subtle name explanation under the buttons */
.hero-name {
  margin-top: clamp(36px, 7vw, 52px);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-name strong {
  color: var(--text-1);
  font-weight: 500;
}

@media (min-width: 560px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }
  .hero-actions .btn { min-width: 168px; }
}

/* ---------- SHARED SECTION SURFACE ---------- */
.panel {
  background: var(--bg-1);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

/* ---------- 1. PROBLEM ---------- */
.problem .container { max-width: 780px; }

.problem .section-head { margin-bottom: 0; }

.problem h2 { margin-bottom: 20px; }

.problem p {
  font-size: clamp(1.05rem, 3.6vw, 1.2rem);
  color: var(--text-2);
  line-height: 1.7;
}

/* ---------- 2. HOW NOVA HELPS ---------- */
.help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.help-card {
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: clamp(26px, 6vw, 34px);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease),
              background-color 0.3s var(--ease);
}

.help-card:hover {
  border-color: var(--border-copper);
  background: var(--bg-3);
  transform: translateY(-4px);
}

.help-card .card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--accent);
}

.help-card h3 { margin-bottom: 10px; }

.help-card p {
  font-size: 0.98rem;
  color: var(--text-2);
}

@media (min-width: 720px) {
  .help-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ---------- 3. WHY CHOOSE NOVA ---------- */
.choose { background: var(--bg-1); }

.choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.choose-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  transition: border-color 0.3s var(--ease);
}

.choose-item:hover { border-color: var(--border-copper); }

.choose-item .card-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
}

.choose-item span {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--text-1);
  font-weight: 500;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .choose-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .choose-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- 4. INCOME OPPORTUNITY ---------- */
.income .container { max-width: 820px; }

.income-card {
  background: linear-gradient(180deg, rgba(197, 139, 92, 0.06), var(--bg-2) 45%);
  border: 1px solid var(--border-copper);
  border-radius: var(--radius);
  padding: clamp(32px, 7vw, 56px);
  text-align: center;
}

.income-card .eyebrow { justify-content: center; margin-bottom: 20px; }

.income-card h2 { margin-bottom: 18px; }

.income-card p {
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(1.02rem, 3.4vw, 1.14rem);
  color: var(--text-2);
  line-height: 1.7;
}

.income-card p + p { margin-top: 16px; }

/* ---------- 5. PROOF PREVIEW ---------- */
.proof-preview .section-head { margin-bottom: clamp(32px, 6vw, 48px); }

.preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: clamp(32px, 6vw, 44px);
}

.preview-card {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
}

/* Blurred placeholder texture — swap for a real blurred screenshot.
   TODO (Proof Media Management): replace .preview-blur with
   <img> using a pre-blurred thumbnail so nothing sensitive shows. */
.preview-blur {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(197, 139, 92, 0.18), transparent 45%),
    radial-gradient(circle at 75% 60%, rgba(197, 139, 92, 0.1), transparent 50%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.03) 0 14px, transparent 14px 30px),
    var(--bg-3);
  filter: blur(6px);
  transform: scale(1.1);
}

.preview-card .lock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
}

.preview-card .lock .card-icon { width: 26px; height: 26px; color: var(--accent); }

.preview-card .lock span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.proof-preview .cta-row { text-align: center; }

@media (min-width: 720px) {
  .preview-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ---------- 6. FAQ ---------- */
.faq-home .section-head { margin-bottom: clamp(32px, 6vw, 48px); }
