:root {
  --bg-color: #000000;
  --gold-light: #FFDF73;
  --gold-base: #D4AF37;
  --gold-dark: #B8860B;
  --gold-gradient: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-hover: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-gold: rgba(212, 175, 55, 0.4);
  --glow-gold: rgba(212, 175, 55, 0.4);
  --glow-blue: rgba(0, 191, 255, 0.15);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body, html {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background grid/particles placeholder */
.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  opacity: 0.5;
  pointer-events: none;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-spacing {
  padding: 100px 0;
  position: relative;
}

.min-vh-100 {
  min-height: 100vh;
}
.min-vh-50 {
  min-height: 50vh;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.space-between {
  justify-content: space-between;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.pb-20 { padding-bottom: 20px; }
.w-full { width: 100%; }

.max-w-600 { max-width: 600px; }
.max-w-800 { max-width: 800px; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.glow-text {
  text-shadow: 0 0 20px var(--glow-gold);
  letter-spacing: 2px;
  font-weight: 800;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.25rem;
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: border-box;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--bg-color);
  border: none;
}
.glow-gold {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.7);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: var(--glass-bg-hover);
  border-color: var(--gold-base);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
}
.glow-white:hover {
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, var(--glow-blue), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.glass-card:hover::before {
  opacity: 1;
}

.hover-lift:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px var(--glow-gold);
}

.hover-glow:hover {
  box-shadow: 0 0 40px var(--glow-gold);
  border-color: var(--gold-base);
}

.gold-border {
  border-top: 1px solid var(--gold-base);
}

/* Navbar Premium Sticky Header */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

.navbar.nav-scrolled {
  padding: 16px 40px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-item {
  position: relative;
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  padding: 5px 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold-base); /* Small gold underline */
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--glow-gold);
}

.nav-item:hover, .nav-item.active {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
}

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

/* Hamburger Menu Icon */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Sidebar Swipe Menu */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  padding: 80px 40px;
  transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.open {
  right: 0;
  box-shadow: -10px 0 50px rgba(0,0,0,0.8);
}

.mobile-sidebar-close {
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: 2.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.3s ease;
}
.mobile-sidebar-close:hover {
  color: var(--text-primary);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.mobile-nav-item {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding-left: 0;
  border-left: 0px solid transparent;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
  color: #fff;
  padding-left: 10px; /* Slight slide jump on hover */
  border-left: 2px solid var(--gold-base);
}
.desktop-only { display: inline-flex; }
.mobile-only { display: none; }
.desktop-text { display: inline; }
.mobile-text { display: none; }

/* Hero Section */
.hero {
  position: relative;
}
.hero-title {
  font-size: 5rem;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 1.5rem;
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 20px;
}
.hero-content {
  gap: 60px;
}
.hero-text {
  flex: 1;
  z-index: 2;
}
.hero-visuals {
  flex: 1;
  position: relative;
  height: 500px;
}

.glass-panel {
  position: absolute;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}
.float-delay-1 { animation-delay: 0s; }
.float-delay-2 { animation-delay: 2s; }
.float-delay-3 { animation-delay: 4s; }

.icon {
  font-size: 2rem;
}

/* Grids */
.cards-grid {
  display: grid;
  gap: 24px;
}
.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.cols-auto {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Zones */
.zone-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.zone-card {
  text-align: center;
}
.zone-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--gold-base);
  box-shadow: 0 15px 30px rgba(0,0,0,0.9), inset 0 0 20px rgba(212, 175, 55, 0.1);
}

/* Workflow Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 600px;
  margin: 60px auto 0;
}
.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.step-num {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
}
.step-content h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

/* THE NEXT VERSION OF YOU (Cinematic Section) */
.vision {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.vision::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-gradient);
  box-shadow: 0 0 20px var(--glow-gold);
  z-index: 10;
}

.vision-bg-layered {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('./vision-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Desktop parallax base */
  opacity: 0.15;
  filter: blur(5px);
  z-index: 0;
}

.vision-bg-layered::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, var(--bg-color) 70%);
  mix-blend-mode: overlay;
}

/* Dream Echo Text Effect */
.dream-echo-container {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.dream-echo {
  font-family: var(--font-heading);
  font-size: 12vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  letter-spacing: 0.2em;
  animation: floatEcho 20s infinite alternate ease-in-out;
}

@keyframes floatEcho {
  0% { transform: translateX(-5%); opacity: 0.01; }
  50% { opacity: 0.03; }
  100% { transform: translateX(5%); opacity: 0.01; }
}

.dream-echo.e-1 { animation-delay: 0s; }
.dream-echo.e-2 { animation-delay: -5s; color: rgba(212, 175, 55, 0.02); }
.dream-echo.e-3 { animation-delay: -10s; }
.dream-echo.e-4 { animation-delay: -15s; color: rgba(212, 175, 55, 0.02); }
.dream-echo.e-5 { animation-delay: -2s; }

/* Vision Core Layout */
.vision .container {
  z-index: 2;
  position: relative;
}

/* Next Version Cards Grid */
.vision-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 5;
}

.premium-vision-card {
  width: 280px;
  padding: 0; /* flush edges for image */
  background: rgba(20,20,20,0.8);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  text-align: left;
}
.premium-vision-card:hover {
  border-color: var(--gold-base);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
  transform: translateY(-8px);
}

.card-img-wrapper {
  height: 180px;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}
.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: contrast(1.1) brightness(0.9);
}
.premium-vision-card:hover .card-img-wrapper img {
  transform: scale(1.05);
  filter: contrast(1.2) brightness(1);
}

.card-vision-text {
  padding: 24px;
}
.card-vision-text h4 {
  font-size: 1.1rem;
  color: var(--gold-base);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.card-vision-text p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-primary);
}
.mega-title {
  font-size: 6rem;
  letter-spacing: 4px;
  text-shadow: 0 0 40px rgba(255,255,255,0.2);
}

/* Pricing Section */
.premium-card {
  border: 1px solid var(--gold-base);
  background: linear-gradient(180deg, rgba(20,20,20,0.9) 0%, rgba(0,0,0,0.95) 100%);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}
.consultation-card {
  opacity: 0.8;
  transform: scale(0.95);
}
.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}
.scarcity {
  background: rgba(255, 0, 0, 0.1);
  color: #ff4444;
  border-color: rgba(255, 0, 0, 0.3);
}
.card-desc {
  margin-top: 20px;
}
.price-block {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-old {
  font-size: 1.5rem;
  text-decoration: line-through;
  color: var(--text-secondary);
  opacity: 0.6;
}
.price-val {
  font-size: 4rem;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
}
.premium-card .price-val {
  font-size: 5rem;
}

/* Newsletter Minimal Form */
.minimal-form {
  display: flex;
  width: 100%;
  max-width: 400px;
  gap: 10px;
}
.glass-input {
  flex: 1;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 16px 20px;
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.glass-input:focus {
  border-color: var(--gold-base);
}
.btn-icon {
  padding: 16px 20px;
  font-size: 1.2rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--glass-border);
}
.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  margin-left: 20px;
}
.footer-links a:hover {
  color: var(--text-primary);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  z-index: 99;
}

/* Animations Triggered via JS */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.zoom-text {
  transform: scale(0.8);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1.2s ease-out;
}
.zoom-text.visible {
  transform: scale(1);
  opacity: 1;
}


/* Media Queries */
@media (max-width: 992px) {
  .hero-title { font-size: 4rem; }
  .mega-title { font-size: 4rem; }
  .cards-grid.cols-2 { grid-template-columns: 1fr; }
  .consultation-card { transform: none; order: 2; }
  .premium-card { order: 1; margin-bottom: 20px; }
}

@media (max-width: 768px) {
  /* Global Minimal Luxury Tweaks */
  body {
    font-size: 15px;
    line-height: 1.6;
    padding-bottom: 90px;
  }
  .section-spacing {
    padding: 60px 0 !important;
  }
  
  /* Global Horizontal Margins */
  .container {
    padding: 0 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Stacking & Grids */
  .hero-content { flex-direction: column; text-align: center; }
  .hero-actions { justify-content: center; flex-direction: column; width: 100%; gap: 15px;}
  .hero-visuals { display: none; }
  
  .cards-grid.cols-2,
  .cards-grid,
  .value-list,
  .vision-cards-grid,
  .topics-grid { 
    grid-template-columns: 1fr !important; 
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  
  .split-container { flex-direction: column; gap: 40px; }
  
  /* Buttons Touch Sizes & Elegance */
  .btn, .btn-outline { 
    width: 100% !important; 
    display: block !important;
    padding: 14px 20px !important;
    border-radius: 8px !important;
    text-align: center !important;
    box-sizing: border-box !important;
    margin-bottom: 10px !important;
  }
  .btn.glow-gold {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2); 
  }

  /* Typography Refinements */
  .hero-title { font-size: 2.2rem !important; line-height: 1.2 !important; max-width: 100%; margin: 0 auto 20px auto; }
  .mega-title { font-size: 2rem !important; line-height: 1.2 !important; max-width: 100%; margin: 0 auto 20px auto;}
  .section-title { font-size: 1.8rem !important; line-height: 1.3 !important; max-width: 100%; margin: 0 auto 20px auto;}
  p, .section-desc { font-size: 1rem !important; line-height: 1.5 !important; margin: 0 auto 16px auto !important; max-width: 100%; }

  /* IOS Grid Navbar & Footer */
  .navbar { 
    padding: 16px 20px !important; 
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  .hamburger-menu { justify-self: start; }
  .logo { justify-self: center; text-align: center; font-size: 0.9rem; }
  .nav-actions { justify-self: end; display: flex; align-items: center; }
  .nav-links { display: none; }
  
  .footer .flex-row { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links a { display: inline-block; padding: 10px; margin: 5px; } 

  /* Header Scroll CTA Button (Small Layout) */
  .header-mobile-join {
    display: none;
    padding: 6px 14px !important;
    font-size: 0.8rem;
    border-radius: 6px;
    min-width: auto;
    min-height: auto;
    margin: 0;
  }
  .navbar.nav-scrolled .header-mobile-join {
    display: inline-flex !important; /* Show only when scrolled */
  }
  
  /* Class display inverters for mobile structure protection */
  .desktop-only { display: none !important; }
  .mobile-only { display: inline-flex !important; }
  .desktop-text { display: none !important; }
  .mobile-text { display: inline !important; }

  /* Sticky Bottom Pill CTA */
  .mobile-sticky-cta { 
    display: flex;
    justify-content: center;
    padding: 12px 20px 24px 20px !important; 
    background: transparent;
    border-top: none;
    z-index: 9999;
  }
  .pill-btn {
    border-radius: 50px !important; 
    padding: 12px 32px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,1), 0 0 15px rgba(212, 175, 55, 0.2) !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(184, 134, 11, 0.95)) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  .mobile-sticky-cta .cta-final { display: none; }
  .mobile-sticky-cta.show-price .cta-initial { display: none; }
  .mobile-sticky-cta.show-price .cta-final { display: inline; }

  /* Performance & Padding constraints */
  .glass-card {
    backdrop-filter: blur(2px) !important;
    -webkit-backdrop-filter: blur(2px) !important;
    background: rgba(15,15,15,0.95) !important;
    padding: 20px !important; 
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .glass-card.consultation-card { margin-bottom: 24px !important; }
  
  .bg-network,
  .vision-bg-layered,
  .shift-bg-network,
  .access-bg-parallax {
    filter: none;
    opacity: 0.15;
  }
  .timeline-bg-img {
    display: none; /* remove for mobile readability */
  }

  /* Structural paddings */
  .premium-vision-card { width: 100% !important; border-radius: 12px !important; }
}

/* Hero Cinematic Background */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg-cinematic {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('./hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: blur(8px) contrast(1.2) brightness(0.8);
  z-index: 0;
  animation: slowZoom 25s infinite alternate ease-in-out;
}

.hero-bg-cinematic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, var(--bg-color) 80%);
  mix-blend-mode: overlay;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

/* Mouse cursor glow */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1; /* just above background */
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Enhancing hero-desc font */
.hero-desc {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 500px;
}

/* Pulse animation for primary button */
.pulse-btn {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.8), 0 0 10px rgba(255, 255, 255, 0.2); }
  100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }
}

/* Update Glass Panel */
.glass-panel .card-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.glass-panel .card-info p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

.float-delay-4 { animation-delay: 6s; }

/* Subtle particle movement background effect */
.particles-layer {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.4;
  animation: particleMove 60s linear infinite;
  z-index: 1;
}

@keyframes particleMove {
  from { background-position: 0 0; }
  to { background-position: 1000px 1000px; }
}

/* Wealth Map Roadmap */
.roadmap-container {
  position: relative;
  padding: 40px 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  min-height: 250px;
}

.roadmap-nodes {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.roadmap-line {
  position: absolute;
  top: 60px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--glass-border);
  z-index: 1;
}

.roadmap-line-fill {
  position: absolute;
  top: 60px;
  left: 5%;
  height: 2px;
  background: var(--gold-base);
  box-shadow: 0 0 15px var(--glow-gold);
  z-index: 1;
  width: 0%;
  transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.roadmap-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.roadmap-node.active {
  opacity: 1;
  transform: translateY(0);
}

.node-point {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 2px solid var(--glass-border);
  margin-bottom: 24px;
  transition: all 0.4s ease;
  z-index: 3;
}

.roadmap-node.active .node-point {
  border-color: var(--gold-base);
  box-shadow: 0 0 15px var(--glow-gold);
  background: var(--gold-gradient);
}

.roadmap-card {
  text-align: left;
  padding: 24px;
  width: 90%;
  max-width: 250px;
}

.roadmap-card h3 {
  font-size: 1.1rem;
  margin: 10px 0;
}

.roadmap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roadmap-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  position: relative;
  padding-left: 14px;
}
.roadmap-list li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--gold-base);
  font-family: var(--font-heading);
}

@media (max-width: 992px) {
  .roadmap-nodes {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }
  .roadmap-line {
    top: 20px; bottom: 0; left: 36px; width: 2px; height: auto; right: auto;
  }
  .roadmap-line-fill {
    top: 20px; left: 36px; width: 2px; height: 0%; right: auto;
    transition: height 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .roadmap-node {
    flex-direction: row;
    margin-bottom: 40px;
  }
  .node-point {
    margin-bottom: 0; margin-right: 24px;
  }
  .roadmap-card {
    width: auto;
    max-width: 100%;
  }
}

/* Public Access Reveal */
.public-access {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.access-bg-parallax {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('./vision-bg.png'); /* existing cinematic background */
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.1;
  filter: blur(10px);
  z-index: 1;
}

.history-timeline {
  position: relative;
}

.history-line {
  position: absolute;
  top: 0; bottom: 0; left: 20px;
  width: 2px;
  background: var(--glass-border);
  z-index: 1;
}

.history-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 60px;
  z-index: 2;
}
.history-item:last-child {
  margin-bottom: 0;
}

.history-dot {
  position: absolute;
  top: 40px; left: 13px; /* 20px vertical line mid. dot is 16px wide */
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 2px solid var(--gold-base);
  box-shadow: 0 0 10px var(--glow-gold);
  z-index: 3;
}

.history-dot.pulse-dot {
  animation: pulseGlow 2.5s infinite;
  background: var(--gold-base);
}

@media (max-width: 768px) {
  .history-item { padding-left: 50px; }
  .history-line { left: 15px; }
  .history-dot { left: 8px; }
}

/* Testimonials Carousel */
.testimonials-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-color);
}

.t-scroll-wrapper {
  width: 100%;
  padding-bottom: 20px; /* space for scrolling naturally if no hidden scrollbar */
}

.t-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 5%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.t-carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* T-card with hover glow logic extends glass-card hover logic, but adding constraints */
.t-card {
  min-width: 320px;
  max-width: 320px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 30px;
  border-radius: 12px;
  background: rgba(15, 15, 15, 0.7);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.t-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}

.t-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.t-avatar {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.t-info h4 {
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 2px 0;
}

.t-info span {
  font-size: 0.85rem;
  color: var(--gold-base); /* small city name in gold */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.t-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
  flex-grow: 1; /* ensure uniform spacing if cards are forced to same height */
}

/* Value Breakdown Section */
.value-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  border-radius: 12px;
}

.v-name {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: #fff;
}

.v-price {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.v-total {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 30px;
  border-color: var(--gold-base);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
  border-radius: 12px;
}

.v-total h3 {
  font-size: 2rem;
  margin: 0;
  letter-spacing: 2px;
}

.v-total h3 span {
  text-shadow: 0 0 15px var(--glow-gold);
}

.positioned-card {
  border-left: 3px solid var(--gold-base); /* distinct border marker */
  padding: 40px;
}

.reasoning-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.highlight-white {
  color: #FFF;
  font-weight: 600;
}

.final-positioning {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  line-height: 1.5;
}

.glow-shadow {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.large-ctas {
  font-size: 1.2rem;
  padding: 18px 40px;
}

@media (max-width: 768px) {
  .v-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px;
  }
  .v-total h3 {
    font-size: 1.5rem;
  }
  .final-positioning {
    font-size: 1.2rem;
  }
}

/* Legal Pages Architecture (Privacy / Terms) */
.legal-page-wrapper {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}
.legal-container {
  max-width: 650px;
  margin: 0 auto;
  background: rgba(15,15,15,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}
.legal-content p, .legal-content li {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .legal-container {
    padding: 30px 20px;
  }
}
/* --- SCROLL OFFSET FIX (Header ke piche section hide na ho) --- */
section {
  scroll-margin-top: 80px; 
}

/* --- MOBILE HERO 'CRAZY' UI UPGRADE --- */
@media (max-width: 768px) {
  
  .hero {
    align-items: flex-start !important;
    padding-top: 130px !important; /* Push text down gracefully */
  }

  .mobile-hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
  }

  .hero-title {
    font-size: 2.5rem !important; 
    line-height: 1.15 !important;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8) !important;
    margin-bottom: 10px !important;
  }

  .hero-subtitle {
    font-size: 1.4rem !important;
    margin-top: 15px !important;
    color: #FFF !important;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5) !important;
  }

  .hero-desc {
    font-size: 1.05rem !important;
    opacity: 0.85;
    margin-top: 20px !important;
  }
}