/* ==========================================================================
   NZVPN Design System · home.css
   Home page specific styles
   ========================================================================== */

/* ---------- Body & Hero Background (from approved hero design) ---------- */
body {
  background:
    linear-gradient(180deg, var(--mist) 0%, var(--bg) 100%) top/100% 640px no-repeat,
    var(--bg);
}

.site-head {
  background: transparent;
}

.hero {
  background: none;
}

/* ---------- Stats Band ---------- */
.stats-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-panel);
}

.stats-band-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

.stats-band .stat {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.stats-band .stat-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

/* ---------- Section Head ---------- */
.section-head {
  max-width: 680px;
}

.section-head .eyebrow {
  margin-bottom: 8px;
}

.section-head h2 {
  margin-top: 8px;
}

.section-head p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ---------- Section More Link ---------- */
.section-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--accent-dark);
  transition: color 0.15s ease;
}

.section-more:hover {
  color: var(--accent-deep);
}

.section-more svg {
  display: block;
  flex-shrink: 0;
}

/* ---------- Line Note ---------- */
.line-note {
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--tint2);
  border: 1px solid var(--tint);
  border-radius: var(--r-md);
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- Feature Rows (Prisma style) ---------- */
.feature-rows {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 64px;
}

.feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
  min-width: 0;
}

.feature-text .eyebrow {
  margin-bottom: 8px;
}

.feature-text h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.feature-text p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.feature-visual {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual svg {
  width: 220px;
  height: 176px;
  max-width: 100%;
}

/* ---------- Why Block ---------- */
.why-block {
  margin-top: 72px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-panel);
}

.why-block h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.why-block p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- Plan Traffic Note ---------- */
.plan-traffic-note {
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

.plan-traffic-note strong {
  color: var(--text);
  font-weight: 600;
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--accent-deep);
  color: var(--bg);
}

.cta-band-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 56px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin-top: 8px;
  font-size: 15px;
  opacity: 0.85;
}

.cta-band .btn-main {
  background: var(--bg);
  color: var(--accent-deep);
  box-shadow: none;
}

.cta-band .btn-main:hover {
  background: var(--tint2);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .feature-row {
    flex-direction: column;
    gap: 32px;
  }

  .feature-row:nth-child(even) {
    flex-direction: column;
  }

  .feature-text {
    text-align: center;
  }

  .feature-text .eyebrow {
    text-align: center;
  }

  .feature-visual {
    order: -1;
  }

  .stats-band-inner {
    gap: 24px;
  }

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px var(--gutter);
  }
}

@media (max-width: 640px) {
  .stats-band-inner {
    gap: 14px 20px;
    font-size: 12px;
  }

  .stats-band .stat-num {
    font-size: 16px;
  }

  .feature-visual svg {
    width: 180px;
    height: 144px;
  }

  .why-block {
    padding: 20px;
  }
}