/* ═══════════════════════════════════════════════════════
   MATRIXASTRO — Main Stylesheet
   Design: Dark mystical, premium feel, high conversion
   Colors: Deep navy, purple, gold accents, star whites
   ═══════════════════════════════════════════════════════ */

/* Logo wordmark font — official brand font, see includes/logo.php + docs/brand/ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700&display=swap');

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

:root {
  --bg-deep:      #080B1A;
  --bg-card:      #0F1429;
  --bg-card-2:    #141930;
  --purple-deep:  #0B1233;
  --purple-mid:   #1B2A6B;
  --purple-light: #2E44A8;
  --gold:         #F59E0B;
  --gold-light:   #FCD34D;
  --star-white:   #F1F5FF;
  --text-muted:   #94A3B8;
  --border:       rgba(46,68,168, 0.25);
  --glow:         rgba(46,68,168, 0.4);
  --pink:         #EC4899;
  --blue:         #3B82F6;
  --green:        #10B981;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--star-white);
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.hidden { display: none !important; }
a { color: var(--gold-light); text-decoration: none; }

/* ─────────────────── HERO ─────────────────── */
.hero {
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  /* Purple glow from the top (dulled further), a soft whitish "dawn"
     glow rising from the bottom, over the deep base — stars render in
     .stars-bg below. */
  background:
    radial-gradient(ellipse at 50% 0%, rgba(27,42,107,0.22) 0%, transparent 55%),
    linear-gradient(to top, rgba(241,245,255,0.16) 0%, rgba(241,245,255,0.05) 20%, transparent 45%),
    var(--bg-deep);
  padding: 48px 20px 80px;
  overflow: hidden;
}

/* Static star field — small, still (no drift/twinkle animation),
   modeled on a denser scattered-particle look rather than a handful
   of dots. Mostly white with a few warm gold flecks to match the
   dawn glow beneath. */
.stars-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 8% 12%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 17% 42%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 24% 78%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(2.5px 2.5px at 32% 22%, rgba(255,255,255,1) 0%, rgba(255,255,255,0.3) 40%, transparent 100%),
    radial-gradient(1px 1px at 38% 88%, rgba(226,183,85,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 55%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(2.5px 2.5px at 52% 15%, rgba(255,255,255,1) 0%, rgba(255,255,255,0.3) 40%, transparent 100%),
    radial-gradient(1px 1px at 58% 65%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 63% 33%, rgba(226,183,85,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 8%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(2.5px 2.5px at 76% 48%, rgba(255,255,255,1) 0%, rgba(255,255,255,0.3) 40%, transparent 100%),
    radial-gradient(1.5px 1.5px at 82% 72%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 28%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 93% 60%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 12% 60%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 96% 90%, rgba(226,183,85,0.5) 0%, transparent 100%);
}

/* MatrixAstro logo — the 3 small dots orbit continuously around the mark */
.matrixastro-orbit {
  animation: matrixastro-orbit-spin 10s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes matrixastro-orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.logo-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.logo-mark .matrixastro-logo { pointer-events: none; }

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--star-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-title-line { white-space: nowrap; }
@media (max-width: 480px) {
  .hero-title { font-size: clamp(13px, 4.6vw, 26px); }
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #1B2A6B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: rgba(241,245,255,0.8);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  font-size: 13px;
  color: var(--gold-light);
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, #D97706 100%);
  color: #1A0F00;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 42px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 32px rgba(245,158,11,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(245,158,11,0.6); }

.pulse {
  animation: pulse-glow 2.5s infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(245,158,11,0.4); }
  50%       { box-shadow: 0 8px 48px rgba(245,158,11,0.75); }
}

/* ─────────────────── QUIZ WRAPPER ─────────────────── */
.quiz-wrapper {
  padding: 60px 20px;
  background: radial-gradient(ellipse at center, rgba(27,42,107,0.15) 0%, transparent 70%);
}

.quiz-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 48px;
  box-shadow: 0 0 60px var(--glow);
}

@media(max-width: 600px) {
  .quiz-card { padding: 28px 20px; }
}

/* Progress Bar */
.progress-container {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--purple-light), var(--gold));
  border-radius: 4px;
  transition: width 0.5s ease;
}
.step-label {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
  margin-bottom: 32px;
}

/* Questions */
.question { animation: fadeIn 0.35s ease; }
.question.hidden { display: none !important; }
.question.slide-in { animation: slideIn 0.35s ease; }

@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.question-icon { font-size: 40px; text-align: center; margin-bottom: 16px; }

.question-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 3vw, 26px);
  text-align: center;
  color: var(--star-white);
  margin-bottom: 8px;
}

.question-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}

/* Options Grid */
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 10px;
}
.options-2col { grid-template-columns: 1fr 1fr; }

@media(max-width: 480px) {
  .options-grid { grid-template-columns: 1fr; }
}

.option-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--bg-card-2);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  color: var(--star-white);
}
.option-btn:hover {
  border-color: var(--purple-light);
  background: rgba(46,68,168,0.12);
  transform: translateY(-2px);
}
.option-btn.selected {
  border-color: var(--gold);
  background: rgba(245,158,11,0.12);
  box-shadow: 0 0 20px rgba(245,158,11,0.2);
}
.opt-icon  { font-size: 26px; margin-bottom: 8px; }
.opt-label { font-size: 15px; font-weight: 700; color: var(--star-white); }
.opt-desc  { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* Birth Date Inputs */
.birth-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
@media(max-width: 480px) {
  .birth-inputs { grid-template-columns: 1fr; }
}

.input-group label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.cosmic-select {
  width: 100%;
  background: var(--bg-card-2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--star-white);
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  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 fill='%232E44A8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.cosmic-select:focus {
  outline: none;
  border-color: var(--purple-light);
}
.cosmic-select option { background: var(--bg-card); }

.next-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--purple-light) 0%, #142150 100%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0.5;
}
.next-btn.ready, .next-btn:not(:disabled) {
  opacity: 1;
  box-shadow: 0 6px 24px rgba(46,68,168,0.4);
}
.next-btn:not(:disabled):hover { transform: translateY(-2px); }

.error-msg { color: #F87171; font-size: 13px; text-align: center; margin-top: 10px; }

/* ─────────────────── LOADING ─────────────────── */
.loading-animation { text-align: center; padding: 20px 0; }

.cosmic-spinner {
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
  position: relative;
}
.orbit {
  position: absolute;
  font-size: 20px;
  animation: orbit-spin 3s linear infinite;
}
.orbit-1 { top: 0; left: 50%; animation-duration: 2s; }
.orbit-2 { top: 50%; right: 0; animation-duration: 3s; animation-delay: -1s; }
.orbit-3 { bottom: 0; left: 50%; animation-duration: 4s; animation-delay: -2s; }

@keyframes orbit-spin {
  from { transform: rotate(0deg) translateX(50px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

.loading-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: var(--star-white);
  margin-bottom: 24px;
}

.loading-step {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  opacity: 0.4;
  transition: opacity 0.4s;
}
.loading-step.active { opacity: 1; color: var(--gold-light); }

/* ─────────────────── RESULTS ─────────────────── */
.results-wrapper {
  padding: 60px 20px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.results-header { text-align: center; margin-bottom: 40px; }

.results-tag {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.personalisation-badge {
  display: inline-block;
  background: rgba(46,68,168,0.2);
  border: 1px solid rgba(46,68,168,0.4);
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 14px;
  color: var(--purple-light);
  margin-bottom: 16px;
}

.results-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 4vw, 38px);
  color: var(--star-white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.results-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* Primary Offer Card */
.primary-offer-card { margin-bottom: 40px; }

.primary-card {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--bg-card) 100%);
  border: 1.5px solid rgba(245,158,11,0.3);
  border-radius: 20px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(245,158,11,0.1);
}
.primary-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.primary-card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.primary-icon { font-size: 48px; flex-shrink: 0; }
.primary-card-titles { flex: 1; }
.primary-name    { font-family: 'Cinzel', serif; font-size: 22px; color: var(--star-white); margin: 6px 0 4px; }
.primary-tagline { font-size: 14px; color: var(--text-muted); }

.personal-line {
  background: rgba(245,158,11,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.primary-description {
  font-size: 15px;
  color: rgba(241,245,255,0.85);
  line-height: 1.7;
  margin-bottom: 20px;
}

.primary-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--gold-light);
}

.primary-cta-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--gold) 0%, #D97706 100%);
  color: #1A0F00;
  font-size: 18px;
  font-weight: 700;
  padding: 18px;
  border-radius: 50px;
  transition: all 0.2s;
  box-shadow: 0 6px 28px rgba(245,158,11,0.4);
  margin-bottom: 12px;
}
.primary-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(245,158,11,0.6); color: #1A0F00; }

.affiliate-note { font-size: 11px; color: var(--text-muted); text-align: center; }
.age-gate-note  { font-size: 12px; color: #F59E0B; text-align: center; margin-bottom: 10px; }

/* Badge variants */
.badge-gold   { background: rgba(245,158,11,0.15); color: var(--gold-light); }
.badge-purple { background: rgba(46,68,168,0.15); color: #6E8AD9; }
.badge-pink   { background: rgba(236,72,153,0.15); color: #F9A8D4; }
.badge-blue   { background: rgba(59,130,246,0.15); color: #93C5FD; }
.badge-green  { background: rgba(16,185,129,0.15); color: #6EE7B7; }
.badge-silver { background: rgba(148,163,184,0.15); color: #CBD5E1; }

.primary-badge, .offer-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Also Explore Divider */
.also-explore {
  text-align: center;
  margin: 0 0 24px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* Secondary Offers Grid */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media(max-width: 700px) {
  .offers-grid { grid-template-columns: 1fr; }
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  transition: all 0.2s;
}
.offer-card:hover {
  border-color: rgba(46,68,168,0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--glow);
}
.offer-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.offer-icon   { font-size: 28px; }
.offer-name   { font-family: 'Cinzel', serif; font-size: 15px; color: var(--star-white); margin-bottom: 6px; }
.offer-tagline    { font-size: 12px; color: var(--gold-light); margin-bottom: 8px; }
.offer-description{ font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; }
.offer-cta-btn {
  display: block;
  text-align: center;
  background: rgba(46,68,168,0.15);
  border: 1px solid rgba(46,68,168,0.4);
  color: #6E8AD9;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 50px;
  transition: all 0.2s;
}
.offer-cta-btn:hover { background: rgba(46,68,168,0.3); color: var(--star-white); }

/* Live Reading Section */
.live-reading-section {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}
.live-reading-section h3 { font-family: 'Cinzel', serif; font-size: 20px; margin-bottom: 10px; }
.live-reading-section p  { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.live-advisor-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple-light) 0%, #142150 100%);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(46,68,168,0.4);
  transition: all 0.2s;
}
.live-advisor-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(46,68,168,0.6); color: white; }

/* Retake */
.retake-section { text-align: center; }
.retake-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}
.retake-btn:hover { border-color: var(--purple-light); color: var(--star-white); }

/* ─────────────────── SOCIAL PROOF / TESTIMONIALS (wealthprofusion-inspired) ─────────────────── */
.social-proof { padding: 60px 20px; background: var(--bg-card); }
.proof-inner  { max-width: 1000px; margin: 0 auto; }
.proof-inner h3 { font-family: 'Cinzel', serif; font-size: 24px; text-align: center; margin-bottom: 8px; }
.proof-sub { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 36px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width: 700px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  transition: all .2s;
}
.testimonial-card:hover { border-color: rgba(245,158,11,0.4); transform: translateY(-3px); }
.quote-mark { font-size: 34px; color: var(--gold); line-height: 1; margin-bottom: 8px; font-family: Georgia, serif; }
.testimonial-quote { font-size: 14px; color: rgba(241,245,255,0.85); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-person { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--gold) 100%);
  color: #1A0F00; font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-name { font-size: 13px; font-weight: 700; color: var(--star-white); text-align: left; }
.testimonial-role { font-size: 12px; color: var(--gold-light); text-align: left; }

/* ─────────────────── CAPSULE STAT BAR ─────────────────── */
.capsule-bar-section { padding: 40px 20px; background: var(--bg-deep); }
.capsule-bar {
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.capsule-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 50px; padding: 10px 20px; font-size: 13px; font-weight: 700;
  color: var(--gold-light); white-space: nowrap;
}

/* ─────────────────── WHY TRUST US — TEXT CARDS ─────────────────── */
.trust-cards-section { padding: 20px 20px 70px; background: var(--bg-deep); }
.trust-cards-inner { max-width: 1000px; margin: 0 auto; }
.trust-cards-inner > h3 { font-family: 'Cinzel', serif; font-size: 22px; text-align: center; color: var(--star-white); margin-bottom: 32px; }
.trust-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media(max-width: 900px) { .trust-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 480px) { .trust-cards-grid { grid-template-columns: 1fr; } }
.trust-text-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  padding: 24px 20px; text-align: center; transition: all .2s;
}
.trust-text-card:hover { border-color: rgba(46,68,168,.5); transform: translateY(-3px); }
.trust-card-icon { font-size: 30px; display: block; margin-bottom: 10px; }
.trust-text-card h4 { font-family: 'Cinzel', serif; font-size: 15px; color: var(--star-white); margin-bottom: 8px; }
.trust-text-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }

/* ─────────────────── EXPLORE TOOLS ─────────────────── */
.explore-tools{padding:60px 20px;background:var(--bg-deep)}
.explore-inner{max-width:900px;margin:0 auto}
.explore-inner > h3{font-family:'Cinzel',serif;font-size:22px;text-align:center;color:var(--star-white);margin-bottom:28px}
.explore-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
@media(max-width:640px){.explore-grid{grid-template-columns:1fr}}
.explore-card{
  display:block;background:var(--bg-card);border:1.5px solid var(--border);border-radius:18px;
  overflow:hidden;text-align:center;transition:all .2s;color:var(--star-white);
}
.explore-card > *:not(.explore-photo-wrap){padding-left:26px;padding-right:26px}
.explore-photo-wrap{position:relative;margin-bottom:18px}
.explore-photo{width:100%;height:140px;object-fit:cover;display:block}
.explore-photo-wrap.tint-navy .explore-photo{
  filter:saturate(1.4) hue-rotate(225deg) brightness(0.8) contrast(1.15);
}
.explore-photo-wrap.tint-navy::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(135deg, rgba(46,68,168,0.55) 0%, rgba(8,11,26,0.1) 50%, rgba(46,68,168,0.35) 100%);
  mix-blend-mode:color;pointer-events:none;
}
.explore-photo-wrap.tint-navy::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(8,11,26,0) 40%, rgba(8,11,26,0.55) 100%);
  pointer-events:none;
}
.explore-card h4{margin-top:0}
.explore-card p{margin-bottom:0}
.explore-link{display:block;padding:14px 26px 28px}
.explore-card:hover{border-color:var(--gold);transform:translateY(-3px);box-shadow:0 10px 36px rgba(245,158,11,0.15)}
.explore-icon{
  display:flex;align-items:center;justify-content:center;
  width:44px;height:44px;margin:0 auto 10px;border-radius:12px;
  background:linear-gradient(135deg,var(--purple-light) 0%,var(--purple-mid) 100%);
  color:#fff;font-size:20px;font-family:Georgia,'Times New Roman',serif;
  font-variant-emoji:text;
}
.explore-card h4{font-family:'Cinzel',serif;font-size:18px;margin-bottom:8px;color:var(--star-white)}
.explore-card p{font-size:13px;color:var(--text-muted);line-height:1.6;margin-bottom:14px}
.explore-link{font-size:13px;font-weight:700;color:var(--gold-light)}

/* ─────────────────── TOP NAV ─────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,11,26,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav-links a {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}
.site-nav-links a:hover,
.site-nav-links a.active { color: var(--gold-light); }
.nav-token-badge{
  background:rgba(245,158,11,0.12);border:1px solid rgba(245,158,11,0.35);border-radius:50px;
  padding:5px 13px !important;color:var(--gold-light) !important;
}
.nav-token-badge:hover{background:rgba(245,158,11,0.22)}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
}
.nav-toggle-line {
  width: 22px;
  height: 2px;
  background: var(--star-white);
  border-radius: 2px;
}

@media(max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .site-nav-links.open { max-height: 320px; }
  .site-nav-links a {
    width: 100%;
    padding: 14px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
}

/* ─────────────────── FOOTER (wealthprofusion.us-inspired 4-column layout) ─────────────────── */
.site-footer { background: #040610; padding: 56px 20px 32px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-columns {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
@media (max-width: 800px) {
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .footer-col-brand { grid-column: 1 / -1; margin-bottom: 8px; }
}
@media (max-width: 480px) {
  .footer-columns { grid-template-columns: 1fr; }
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--star-white);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-logo { margin-bottom: 14px; }
.footer-blurb { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; max-width: 340px; }
.footer-tagline { font-size: 12px; color: rgba(148,163,184,0.6); line-height: 1.7; font-style: italic; }

.footer-contact-line { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.footer-contact-line a { display: inline; color: var(--text-muted); margin: 0; }
.footer-contact-line a:hover { color: var(--gold-light); }

.footer-bottom { text-align: center; }
.footer-disclaimer { font-size: 11.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; max-width: 760px; margin-left: auto; margin-right: auto; }
.footer-affil { font-size: 11px; color: rgba(148,163,184,0.5); max-width: 640px; margin: 0 auto 16px; line-height: 1.6; }
.footer-copy  { font-size: 11px; color: rgba(148,163,184,0.4); }
