/* ============================================================
   NUMEROLOGY PRELANDER — STYLESHEET
   Fonts: Cinzel (headings), Playfair Display (body/quotes), Lato (UI)
   Color Palette:
     --deep-navy:   #0a0d1a
     --midnight:    #0f1535
     --purple-dark: #1a0a3d
     --purple-mid:  #4a1a8c
     --purple-light:#8b5cf6
     --gold:        #d4af37
     --gold-light:  #f0d060
     --white:       #ffffff
     --off-white:   #f5f0ff
     --text-body:   #2d2d3a
============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  color: #2d2d3a;
  background-color: #0a0d1a;
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

/* ---- DISCLAIMER BAR ---- */
.disclaimer-bar {
  background: linear-gradient(90deg, #1a0a3d, #0f1535, #1a0a3d);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.disclaimer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 960px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: #c8b8e8;
  font-family: 'Lato', sans-serif;
  line-height: 1.4;
}

.disclaimer-inner i {
  color: #d4af37;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.disclaimer-inner strong { color: #d4af37; }

/* ---- SITE HEADER ---- */
.site-header {
  background: rgba(10, 13, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 14px 20px;
  position: sticky;
  top: 37px;
  z-index: 999;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 0.08em;
}

.logo-symbol { font-size: 0.7rem; opacity: 0.7; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.85rem;
  color: #c8b8e8;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.site-nav a:hover { color: #d4af37; }

.site-nav .nav-cta {
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #0a0d1a;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
}

.site-nav .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  color: #0a0d1a;
}

/* ---- HERO SECTION ---- */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  background-image: url('../images/hero_banner.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 13, 26, 0.55) 0%,
    rgba(26, 10, 61, 0.65) 50%,
    rgba(10, 13, 26, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: #d4af37;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(139, 92, 246, 0.5);
}

.hero-title em {
  font-style: italic;
  color: #d4af37;
  font-family: 'Playfair Display', serif;
}

.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-trust {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- CTA BUTTONS ---- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 50px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.3;
}

.cta-btn--hero {
  background: linear-gradient(135deg, #d4af37 0%, #f0d060 50%, #d4af37 100%);
  background-size: 200% auto;
  color: #0a0d1a;
  box-shadow: 0 6px 40px rgba(212, 175, 55, 0.45), 0 0 80px rgba(212, 175, 55, 0.15);
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.cta-btn--hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 60px rgba(212, 175, 55, 0.6);
  color: #0a0d1a;
}

.cta-btn--gold {
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #0a0d1a;
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
}

.cta-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.55);
  color: #0a0d1a;
}

.cta-btn--purple {
  background: linear-gradient(135deg, #6d28d9, #8b5cf6, #a78bfa);
  color: #ffffff;
  box-shadow: 0 6px 30px rgba(109, 40, 217, 0.45);
}

.cta-btn--purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(109, 40, 217, 0.6);
  color: #ffffff;
}

.cta-btn--final {
  background: linear-gradient(135deg, #d4af37 0%, #f0d060 40%, #d4af37 80%, #f0d060 100%);
  background-size: 300% auto;
  color: #0a0d1a;
  box-shadow: 0 8px 50px rgba(212, 175, 55, 0.5), 0 0 100px rgba(212, 175, 55, 0.2);
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  padding: 20px 40px;
  animation: shimmer 3s linear infinite;
}

.cta-btn--final:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 70px rgba(212, 175, 55, 0.65);
  color: #0a0d1a;
}

/* ---- ARTICLE META ---- */
.article-meta {
  background: #f5f0ff;
  border-bottom: 1px solid #e0d4f5;
  padding: 10px 20px;
}

.article-meta-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #6b5b8a;
  font-family: 'Lato', sans-serif;
}

.article-meta-inner span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-meta-inner i { color: #8b5cf6; }

/* ---- MAIN ARTICLE ---- */
.article-main {
  background: #ffffff;
}

.article-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- ARTICLE SECTIONS ---- */
.article-section {
  padding: 64px 0;
  border-bottom: 1px solid #ede8f8;
}

.article-section:last-child { border-bottom: none; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #1a0a3d;
  margin-bottom: 28px;
  line-height: 1.25;
}

.section-title--light {
  color: #ffffff;
}

.article-section p {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  color: #3a3550;
  line-height: 1.85;
  margin-bottom: 20px;
}

/* ---- SECTION IMAGES ---- */
.section-image-wrap {
  margin-bottom: 36px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26, 10, 61, 0.15);
}

.section-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.section-image-wrap:hover img { transform: scale(1.02); }

.image-caption {
  background: #f5f0ff;
  padding: 10px 16px;
  font-size: 0.82rem;
  color: #6b5b8a;
  font-style: italic;
  font-family: 'Lato', sans-serif;
  text-align: center;
}

/* ---- PROBLEM CARDS ---- */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.problem-card {
  background: linear-gradient(135deg, #f5f0ff, #ede8f8);
  border: 1px solid #d4c8f0;
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

.problem-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #6d28d9, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #ffffff;
  font-size: 1.3rem;
}

.problem-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #1a0a3d;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.9rem;
  color: #5a4a7a;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---- NUMBERS INFOGRAPHIC ---- */
.numbers-infographic-wrap {
  text-align: center;
  margin: 36px 0;
}

.numbers-infographic {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 12px 50px rgba(26, 10, 61, 0.2);
}

/* ---- NUMBER CARDS ---- */
.numbers-explainer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.number-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: linear-gradient(135deg, #faf8ff, #f0ebff);
  border: 1px solid #d4c8f0;
  border-left: 4px solid #8b5cf6;
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.number-card:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 30px rgba(139, 92, 246, 0.12);
}

.number-badge {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, #d4af37, #f0d060);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a0d1a;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

.number-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #1a0a3d;
  margin-bottom: 10px;
}

.number-content p {
  font-size: 0.98rem;
  color: #4a3a6a;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ---- CTA SECTIONS ---- */
.cta-section {
  padding: 64px 24px;
  text-align: center;
}

.cta-section--mid {
  background: linear-gradient(135deg, #f5f0ff 0%, #ede8f8 50%, #f0ebff 100%);
  border-top: 1px solid #d4c8f0;
  border-bottom: 1px solid #d4c8f0;
}

.cta-section--dark {
  background: linear-gradient(135deg, #0f1535, #1a0a3d, #0f1535);
  color: #ffffff;
}

.cta-section-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-stars {
  color: #d4af37;
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #1a0a3d;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-section--dark h2 { color: #ffffff; }

.cta-section p {
  font-size: 1.05rem;
  color: #4a3a6a;
  line-height: 1.8;
  margin-bottom: 28px;
}

.cta-section--dark p { color: rgba(255, 255, 255, 0.8); }

.cta-sub-note {
  font-size: 0.82rem;
  color: #7a6a9a;
  margin-top: 14px;
  margin-bottom: 0;
}

.cta-section--dark .cta-sub-note { color: rgba(255, 255, 255, 0.5); }

.cta-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: #d4af37;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cta-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.cta-trust-badges span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cta-trust-badges i { color: #d4af37; }

/* ---- DISCOVER GRID ---- */
.discover-section { background: #ffffff; }

.discover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.discover-item {
  background: #faf8ff;
  border: 1px solid #e8e0f5;
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.discover-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.12);
}

.discover-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a0a3d, #4a1a8c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #d4af37;
  font-size: 1.3rem;
}

.discover-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #1a0a3d;
  margin-bottom: 10px;
}

.discover-item p {
  font-size: 0.9rem;
  color: #5a4a7a;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ---- TESTIMONIALS SECTION ---- */
.testimonials-section {
  position: relative;
  padding: 80px 24px;
  background-image: url('../images/testimonials_bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 13, 26, 0.82);
  z-index: 1;
}

.testimonials-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-intro {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  text-align: left;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  transition: transform 0.2s, border-color 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
}

.testimonial-stars {
  color: #d4af37;
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #6d28d9, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(212, 175, 55, 0.7);
  font-family: 'Lato', sans-serif;
}

/* ---- HISTORY SECTION ---- */
.history-section {
  background: linear-gradient(135deg, #faf8ff, #ffffff);
}

/* ---- FINAL CTA SECTION ---- */
.final-cta-section {
  background: linear-gradient(135deg, #0a0d1a 0%, #1a0a3d 50%, #0a0d1a 100%);
  padding: 80px 24px;
  text-align: center;
}

.final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
}

.final-cta-decoration {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  color: #d4af37;
  font-size: 1.2rem;
  opacity: 0.7;
}

.final-cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.25;
}

.final-cta-section p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  margin-bottom: 20px;
}

.final-cta-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 20px;
  margin-bottom: 0;
  font-style: italic;
}

/* ---- SITE FOOTER ---- */
.site-footer {
  background: #060810;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 40px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 860px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: 'Lato', sans-serif;
}

.footer-disclaimer strong { color: rgba(255, 255, 255, 0.5); }

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  font-family: 'Lato', sans-serif;
  transition: color 0.2s;
}

.footer-links a:hover { color: #d4af37; }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  font-family: 'Lato', sans-serif;
  margin-bottom: 0;
}

/* ---- INTRO SECTION ---- */
.intro-section { padding-top: 56px; }

.intro-text p:first-child::first-letter {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #6d28d9;
  float: left;
  line-height: 0.85;
  margin-right: 8px;
  margin-top: 6px;
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .site-header { top: 52px; }

  .disclaimer-inner { font-size: 0.72rem; }

  .site-nav { gap: 12px; }
  .site-nav a:not(.nav-cta) { display: none; }

  .hero-section { background-attachment: scroll; min-height: 80vh; }

  .testimonials-section { background-attachment: scroll; }

  .number-card { flex-direction: column; gap: 16px; }

  .article-meta-inner { gap: 10px; }

  .cta-btn { padding: 15px 24px; font-size: 0.82rem; }

  .cta-btn--final { padding: 16px 24px; }

  .section-image-wrap img { height: 240px; }

  .numbers-infographic { max-width: 320px; }
}

@media (max-width: 480px) {
  .header-inner { justify-content: center; }
  .site-logo { font-size: 1rem; }
  .hero-title { font-size: 1.9rem; }
  .cta-trust-badges { gap: 12px; font-size: 0.78rem; }
}
