/* ============================================================
   HOLISTIC SOUL JOURNEY — pages/home.css
   ============================================================ */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

#particles-js {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,43,184,0.45), transparent 60%);
  filter: blur(80px);
  top: -200px; left: 50%; transform: translateX(-50%);
  z-index: 1;
  animation: glowPulse 9s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.20), transparent 70%);
  filter: blur(80px);
  bottom: -150px; right: -100px;
  z-index: 1;
  animation: drift 16s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: twinkle 2.5s ease-in-out infinite;
}

.hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: var(--fs-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 1.4rem;
}
.hero-title em { font-style: italic; font-weight: 500; }

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}

.hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Floating decorative star marks */
.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-stars span {
  position: absolute;
  color: var(--gold-light);
  font-size: 1.2rem;
  text-shadow: 0 0 12px rgba(201,168,76,0.6);
  animation: twinkle 4s ease-in-out infinite;
}
.hero-stars span:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.hero-stars span:nth-child(2) { top: 24%; right: 14%; animation-delay: 0.8s; font-size: 0.9rem; }
.hero-stars span:nth-child(3) { bottom: 28%; left: 18%; animation-delay: 1.6s; }
.hero-stars span:nth-child(4) { bottom: 36%; right: 10%; animation-delay: 2.4s; font-size: 1.4rem; }
.hero-stars span:nth-child(5) { top: 60%; left: 50%; animation-delay: 3.2s; font-size: 0.8rem; }

/* ---------- Pillar section (three doorways) ---------- */
.pillars {
  position: relative;
}
.pillars .orb-purple {
  top: -100px; left: -120px;
  width: 320px; height: 320px;
}
.pillars .orb-gold {
  bottom: -100px; right: -100px;
  width: 280px; height: 280px;
}

/* ---------- Stats band ---------- */
.stats-band {
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(13, 5, 32, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 3rem 0;
}

/* ---------- Lead magnet promo block ---------- */
.lead-promo {
  position: relative;
  overflow: hidden;
}
.lead-promo .promo-card {
  position: relative;
  padding: 3rem 2.4rem;
  background: linear-gradient(135deg, rgba(74,14,143,0.6), rgba(13,5,32,0.6));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.lead-promo .promo-card::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.30), transparent 70%);
  top: -150px; right: -150px;
  filter: blur(40px);
  animation: glowPulse 8s ease-in-out infinite;
}
.lead-promo .promo-card-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lead-promo .blueprint-card {
  width: 260px;
  padding: 2rem 1.5rem;
  border-radius: 22px;
  background: var(--gold-gradient);
  color: var(--black-deep);
  text-align: center;
  transform: rotate(-3deg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(201,168,76,0.4);
  animation: float 7s ease-in-out infinite;
}
.lead-promo .blueprint-card .tag {
  display: inline-block;
  background: var(--black-deep);
  color: var(--gold-light);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  margin-bottom: 1.2rem;
}
.lead-promo .blueprint-card h3 {
  color: var(--black-deep);
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.lead-promo .blueprint-card .sigil {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: var(--black-deep);
  margin: 0.4rem 0;
}
.lead-promo .blueprint-card .label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black-deep);
}

/* ---------- Blog preview ---------- */
.posts-preview .grid-3 { gap: 1.6rem; }

/* ---------- Final CTA band ---------- */
.final-cta {
  position: relative;
  text-align: center;
  padding: 6rem 0;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 50% 50%, rgba(107,43,184,0.45), transparent 70%);
  z-index: 0;
}
.final-cta > .container { position: relative; z-index: 1; }
