:root {
    --primary: #8A2BE2;
    --primary-dark: #6A1B9A;
    --secondary: #d20ed2;
    --background: #0A0A0F;
    --surface: #1A1A24;
    --surface-dark: #12121A;
    --text: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --spacing: 120px;
    --border-radius: 16px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}
















body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(to right, var(--text), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

nav {
    padding: 10px 0; /* Reduced from 20px */
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  nav .container {
    align-items: center;
    height: 60px; /* Optional: controls overall height */
  }

  .logo {
    margin: 0;
  }
  
  .nav-links a {
    padding: 0;
    margin: 0;
  }
  

.logo img {
    height: 100px;
    max-height: 100px;
    width: auto;
    object-fit: contain;
  }
  

nav .container {
    display: flex;
    justify-content: space-between; /* This spreads items to both ends */
    align-items: center;
    flex-direction: row;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(to right, var(--text), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--spacing) 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.1;
    animation: float 10s ease-in-out infinite;
}

.gradient-sphere:nth-child(1) {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -100px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    animation-delay: 0s;
}

.gradient-sphere:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -50px;
    left: -50px;
    background: linear-gradient(-45deg, var(--primary), var(--secondary));
    animation-delay: -3s;
}

.gradient-sphere:nth-child(3) {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    animation-delay: -6s;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.2s;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.4s;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.hero-stats .label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    padding: var(--spacing) 0;
    background: var(--surface-dark);
    position: relative;
    overflow: hidden;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    width: 100%;
    padding: 0;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.feature-card {
    background: var(--surface);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.result-image {
    width: 100%;
    height: calc(100% - 70px);
    object-fit: contain;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    background: var(--surface-dark);
    padding: 10px;
}

.check-chart-link {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: var(--primary);
    color: var(--text);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.2);
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.check-chart-link:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    box-shadow: 0 6px 15px rgba(138, 43, 226, 0.4);
}

.check-chart-link:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(138, 43, 226, 0.3);
}

/* Reviews Section */
.reviews {
  padding: var(--spacing) 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}



/* Results Carousels */
.results-carousel,
.reviews-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin: 0 -20px 40px;
}

.results-track,
.reviews-track {
    display: flex;
    gap: 30px;
    padding: 20px;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

.results-track .result-image {
    width: 400px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.review-card {
    min-width: 350px;
    background: var(--surface);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-content {
    position: relative;
}

.review-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text);
    font-weight: 500;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.review-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--primary);
}

.author-info span {
    font-size: 14px;
    color: var(--text-secondary);
    display: block;
    opacity: 0.8;
}

.pricing {
  padding: var(--spacing) 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--surface);
    border-radius: var(--border-radius);
    padding: 60px 30px 40px;
    text-align: center;
    border: 1px solid rgba(15, 15, 16, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.pricing-card h3 {
    font-size: 24px;
    margin: 0 0 20px;
    background: linear-gradient(to right, var(--text), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
    line-height: 1;
}

.price span {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: normal;
    margin-left: 4px;
}

.badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--text);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.2);
    z-index: 2;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.1);
}

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

.pricing-card.featured {
    background: linear-gradient(45deg, var(--surface), var(--surface-dark));
    border: 1px solid var(--primary);
}

.pricing-card ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.pricing-card ul li::before {
    content: "•";
    color: var(--primary);
    margin-right: 10px;
    font-size: 20px;
}

.pricing-button {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--text);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.waitlist-button {
    background: var(--primary);
    opacity: 0.9;
}

.waitlist-button:hover {
    opacity: 1;
    background: var(--primary);
}

/* Join Section */
.join {
  padding: var(--spacing) 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.join-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
}

.join-content h2 {
    margin-bottom: 20px;
}

.join-content p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.join-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.join-stats .stat {
    text-align: center;
}

.join-stats .value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.join-stats .label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary);
    color: var(--text);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-button.featured {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    padding: 60px 0;
    background: var(--background);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(to right, var(--text), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-400px * 8));
    }
}

/* Reveal Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-slide {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal-slide.visible {
    opacity: 1;
    transform: translateY(0);
}



/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        grid-column: span 2;
    }
}



@media (max-width: 768px) {
    :root {
        --spacing: 80px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .nav-links {
        display: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        grid-column: auto;
    }
    
    .results-track .result-image {
        width: 300px;
    }
    
    .review-card {
        min-width: 280px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .join-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}



.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.background-overlay .gradient-sphere {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  filter: blur(80px);
  opacity: 0.1;
  animation: float 10s ease-in-out infinite;
}

.background-overlay .gradient-sphere:nth-child(1) {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  animation-delay: 0s;
}

.background-overlay .gradient-sphere:nth-child(2) {
  width: 400px;
  height: 400px;
  bottom: -50px;
  left: -50px;
  background: linear-gradient(-45deg, var(--primary), var(--secondary));
  animation-delay: -3s;
}

.background-overlay .gradient-sphere:nth-child(3) {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  animation-delay: -6s;
}



@media (max-width: 768px) {
  nav {
    display: none !important;
  }
}

.logo img {
  max-width: 120px;
  height: auto;
  display: block;
}





.nav-links .cta-button {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-align: center;
  
    background: linear-gradient(
      90deg,
      var(--primary) 0%,
      var(--secondary) 100%
    );
    border: none;
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .nav-links .cta-button::after {
    content: '';
    position: absolute;
    top: 0; left: -60%;
    width: 40%; height: 100%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-25deg);
    transition: transform 0.4s ease;
    z-index: 1;
  }
  
  .nav-links .cta-button:hover {
    color: #fff;
    transform: translateY(-2px) scale(1.02);
    /* use your darker primary for the glow */
    box-shadow: 0 6px 16px var(--primary-dark);
  }
  
  .nav-links .cta-button:hover::after {
    transform: translateX(250%) skewX(-25deg);
  }
  
  nav {
    padding: 15px 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
  }
  
  nav.hidden {
    transform: translateY(-100%);
  }
  
  nav.transparent {
    background: rgba(10, 10, 15, 0.7);
  }
  


  /* Scroll Animation Base Styles - Enhanced for smoother transitions */
.scroll-animate {
    opacity: 0;
    transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.075), 
                opacity 1s ease;
    will-change: transform, opacity;
  }
  
  /* Direction-based animations with reduced distance for subtlety */
  .from-left {
    transform: translateX(-30px); /* Reduced from -50px */
  }
  
  .from-right {
    transform: translateX(30px); /* Reduced from 50px */
  }
  
  .fade-in {
    transform: translateY(20px); /* Reduced from 30px */
  }
  
  /* Animation triggers */
  .animate-in {
    opacity: 1;
    transform: translate(0, 0);
  }
  
  /* Highlight animation for scroll targets (more subtle) */
  .highlight {
    animation: pulse 2s ease;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.1);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(138, 43, 226, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(138, 43, 226, 0);
    }
  }
  
  /* Staggered animation for lists and grids with smoother timing */
  .feature-grid .feature-card.animate-in,
  .pricing-grid .pricing-card.animate-in,
  .review-card.animate-in {
    transition-delay: calc(var(--item-index, 0) * 0.08s); /* Reduced from 0.1s */
  }
  
  /* Progressive reveal effect */
  .progressive-reveal {
    position: relative;
    --reveal-progress: 0;
  }
  
  .progressive-reveal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, transparent calc(var(--reveal-progress) * 100%), var(--background) 100%);
    pointer-events: none;
    transition: opacity 0.5s ease;
    opacity: calc(1 - var(--reveal-progress));
  }
  
  /* Enhanced section transitions - REMOVED borders */
  section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none !important; /* Remove any borders */
    border-top: none !important;
    border-bottom: none !important;
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 0 !important; /* Remove any margins that might create gaps */
  }
  
  section::after, section::before {
    display: none !important; /* Remove any pseudo-elements that might create dividers */
  }
  
  /* Making sections flow together smoothly */
  section + section {
    margin-top: 0 !important;
  }
  
  /* Add a class to assign staggered animation delays */
  .feature-grid .feature-card, 
  .pricing-grid .pricing-card {
    --item-index: 0; /* Will be set with JavaScript */
  }
  
  /* Scroll indicator - HIDE on mobile */
  .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px; /* Smaller size */
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
  
  .scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollIndicate 2s infinite;
  }
  
  @keyframes scrollIndicate {
    0% {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateX(-50%) translateY(15px);
      opacity: 0;
    }
  }
  
  /* Hide scroll indicator on mobile */
  @media (max-width: 768px) {
    .scroll-indicator {
      display: none !important;
    }
  }
  
  /* Hidden before load - smoother initial page load */
  body {
    opacity: 0;
    transition: opacity 0.7s ease;
  }
  
  body.loaded {
    opacity: 1;
  }
  
  /* Improve gradient sphere animation */
  .gradient-sphere {
    transition: transform 0.4s ease-out;
    will-change: transform;
  }



  /* Mobile-specific fixes */
@media screen and (max-width: 480px) {
    /* Fix hero heading to fit properly */
    .hero h1 {
      font-size: 2.2rem; /* Reduce font size */
      line-height: 1.1;
      padding: 0 10px;
      margin-bottom: 15px;
      white-space: normal; /* Allow text to wrap */
      text-align: center;
    }
    
    /* Adjust stats layout */
    .hero-stats {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      width: 100%;
      padding: 0 15px;
      margin: 15px 0;
    }
    
    .stat {
      flex: 1;
      padding: 0 5px;
    }
    
    .stat .value {
      font-size: 1.8rem; /* Smaller font size for stats */
    }
    
    .stat .label {
      font-size: 0.7rem;
    }
    
    /* Ensure container has proper padding */
    .hero .container {
      padding: 0 10px;
    }
    
    /* Adjust hero content container */
    .hero-content {
      width: 100%;
      max-width: 100%;
    }
  }
  
  /* Even smaller screens */
  @media screen and (max-width: 375px) {
    .hero h1 {
      font-size: 1.8rem; /* Even smaller for very small screens */
    }
    
    .stat .value {
      font-size: 1.5rem;
    }
  }

  @media screen and (max-width: 768px) {
  /* Improve overall spacing */
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
    justify-content: space-between;
  }
  
  /* Add some visual interest */
  .hero h1 {
    margin-bottom: 15px;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
  }
  
  /* Make stats more compact and aligned */
  .hero-stats {
    display: flex;
    justify-content: center;
    margin: 25px 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
  }
  
  .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
  }
  
  .stat:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
  }
  
  /* Make button more prominent */
  .cta-button {
    margin-top: 20px;
    width: 80%;
    max-width: 250px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
  }
}

/* Mobile-specific improvements */
@media screen and (max-width: 768px) {
    /* Make heading smaller and better spaced */
    .hero h1 {
      font-size: 2.2rem;
      line-height: 1.2;
      letter-spacing: 0;
      margin-bottom: 15px;
    }
    
    /* Adjust paragraph text for better readability */
    .hero p {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 auto 30px;
      max-width: 90%;
      padding: 0;
    }
    
    /* Better stats container */
    .hero-stats {
      background: rgba(26, 26, 36, 0.4);
      border-radius: 12px;
      padding: 15px 5px;
      margin: 10px auto 30px;
      width: 90%;
      display: flex;
      justify-content: space-evenly;
      align-items: center;
    }
    
    /* Fix stats styling */
    .stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 8px;
    }
    
    .stat .value {
      font-size: 1.6rem;
      margin-bottom: 8px;
    }
    
    .stat .label {
      font-size: 0.75rem;
      white-space: nowrap;
    }
    
    /* Fix CTA button */
    .cta-button,
    .check-chart-link,
    .launch-my-token {
      width: 70%;
      max-width: 220px;
      font-size: 0.95rem;
      padding: 14px 10px;
      margin: 10px auto;
    }
  }
  
  /* Smallest screens */
  @media screen and (max-width: 375px) {
    .hero h1 {
      font-size: 1.7rem;
    }
    
    .stat .value {
      font-size: 1.4rem;
    }
    
    .stat .label {
      font-size: 0.65rem;
    }
  }
  

  /* Final mobile-specific layout fixes for hero */
@media screen and (max-width: 768px) {
    .hero h1 {
      font-size: 2.2rem;
      line-height: 1.3;
      margin-bottom: 20px;
      text-align: center;
      white-space: normal;
    }
  
    .hero h1 .hero-line {
      display: block;
      margin-bottom: 6px;
      font-weight: 700;
    }
  
    .hero p {
      font-size: 1rem;
      max-width: 90%;
      margin: 0 auto 30px;
      line-height: 1.5;
    }
  
    .hero-stats {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 90%;
      margin: 10px auto 30px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      padding: 12px 10px;
    }
  
    .hero-stats .stat {
      flex: 1;
      text-align: center;
      padding: 0 6px;
      position: relative;
    }
  
    .hero-stats .stat:not(:last-child)::after {
      content: "";
      position: absolute;
      right: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: rgba(255, 255, 255, 0.1);
    }
  
    .stat .value {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--primary);
    }
  
    .stat .label {
      font-size: 0.75rem;
      color: var(--text-secondary);
    }
  
    .cta-button {
      width: 75%;
      max-width: 240px;
      font-size: 1rem;
      margin: 0 auto;
      padding: 14px 16px;
      box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    }
  }
  
  @media screen and (max-width: 375px) {
    .hero h1 {
      font-size: 1.7rem;
    }
  
    .stat .value {
      font-size: 1.3rem;
    }
  
    .stat .label {
      font-size: 0.65rem;
    }
  }
  
  @media (max-width: 768px) {
    .mobile-hero-heading,
    .hero h1 {
      font-size: 2.1rem;
      line-height: 1.3;
      font-weight: 800;
      text-align: center;
      white-space: normal;
      letter-spacing: -0.5px;
      margin-bottom: 20px;
      padding: 0 16px;
  
      /* force solid white text */
      color: #ffffff !important;
      background: none !important;
      -webkit-background-clip: unset !important;
      -webkit-text-fill-color: #ffffff !important;
      text-shadow: none !important;
    }

  
  
    .hero-content {
      padding: 0 12px;
      align-items: center;
    }
  
    .hero p {
      font-size: 1rem;
      text-align: center;
      max-width: 90%;
      margin: 0 auto 30px;
      line-height: 1.6;
    }
  
    .hero-stats {
      display: flex;
      justify-content: space-around;
      align-items: center;
      width: 90%;
      margin: 0 auto 30px;
      padding: 12px 10px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 14px;
    }
  
    .hero-stats .stat {
      text-align: center;
      flex: 1;
    }
  
    .stat .value {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--primary);
    }
  
    .stat .label {
      font-size: 0.75rem;
      color: var(--text-secondary);
    }
  
    .cta-button {
      width: 80%;
      max-width: 240px;
      margin: 0 auto;
      font-size: 1rem;
      padding: 14px 20px;
      text-align: center;
      display: block;
    }
  }
  
  @media (max-width: 400px) {
    .mobile-hero-heading {
      font-size: 1.7rem;
    }
  
    .stat .value {
      font-size: 1.2rem;
    }
  
    .stat .label {
      font-size: 0.65rem;
    }
  }
  

  .mobile-scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: none; /* Hidden by default, shown only on mobile */
  }
  
  .mobile-scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: mobileScrollIndicate 2s infinite;
  }
  
  @keyframes mobileScrollIndicate {
    0% {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateX(-50%) translateY(12px);
      opacity: 0;
    }
  }
  
  /* Show mobile scroll indicator only on mobile */
  @media (max-width: 768px) {
    .mobile-scroll-indicator {
      display: block;
    }
    
    /* Fix vertical spacing issues */
    .hero {
      padding-top: 80px;
      padding-bottom: 60px;
      min-height: 90vh; /* Reduced from 100vh to avoid excessive whitespace */
      justify-content: center;
    }
    
    /* Better spacing for sections */
    section {
      padding: 50px 0; /* Reduced from var(--spacing) */
    }
    
    /* Adjust container padding */
    .container {
      padding: 0 15px;
    }
    
    /* Fix vertical spacing in the hero content */
    .hero-content {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: auto;
      gap: 25px;
    }
    
    /* Improve spacing for feature cards */
    .feature-card {
      min-height: 400px; /* Reduced from 500px */
      padding: 20px;
    }
    
    /* Remove extra space around pricing cards */
    .pricing-grid {
      gap: 20px;
      margin-top: 30px;
    }
    
    /* Improve vertical rhythm between sections */
    .features, .reviews, .pricing, .join {
      padding: 60px 0;
    }
    
    /* Fix spacing around buttons */
    .cta-button, .check-chart-link {
      margin-top: 15px;
    }
    
    /* Footer spacing */
    footer {
      padding: 40px 0;
    }
  }
  
  /* Extra small devices */
  @media (max-width: 375px) {
    /* Even tighter spacing */
    section {
      padding: 40px 0;
    }
    
    /* Smaller feature cards for tiny screens */
    .feature-card {
      min-height: 350px;
      padding: 15px;
    }
  }
  

  /* Enhanced Mobile Scroll Indicator */
.mobile-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    opacity: 0.7;
    transition: all 0.4s ease;
    display: none; /* Hidden by default, shown only on mobile */
    z-index: 100;
    backdrop-filter: blur(4px);
    background: rgba(10, 10, 15, 0.15);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
  }
  
  .mobile-scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: mobileScrollIndicate 1.8s infinite;
  }
  
  @keyframes mobileScrollIndicate {
    0% {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }
    75% {
      transform: translateX(-50%) translateY(15px);
      opacity: 0;
    }
    100% {
      transform: translateX(-50%) translateY(0);
      opacity: 0;
    }
  }
  
  /* Only show on mobile devices */
  @media (max-width: 768px) {
    .mobile-scroll-indicator {
      display: block;
    }
    
    /* Fix spacing issues on mobile */
    .hero {
      padding-top: 80px;
      padding-bottom: 80px;
      min-height: 90vh;
      justify-content: center;
      position: relative;
    }
    
    /* Remove spacing issues */
    .container {
      padding: 0 15px;
    }
    
    /* Fix excessive vertical spacing */
    .hero-content {
      gap: 20px;
    }
    
    section {
      padding: 50px 0;
    }
  }
  
  /* Fix spacing issues in hero section */
  .hero p {
    margin-bottom: 85px;
  }

  
  
  .hero-stats {
    margin-bottom: 30px;
  }

  /* Enhanced Discount Banner with animations */
.discount-banner {
    display: flex;
    justify-content: center;
    width: 80%;
    max-width: 600px;
    margin: 0 auto 20px;      /* “gap” below it before the title */
    padding: 12px 0;
    position: relative;
    z-index: 10;
    transform: translateY(-20px);
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
    animation-delay: 0.5s;
  }
  
  .discount-banner-inner {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(67, 83, 255, 0.15) 0%, rgba(111, 66, 193, 0.15) 100%);
    border-radius: 30px;
    padding: 8px 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(67, 83, 255, 0.15);
    border: 1px solid rgba(111, 66, 193, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }
  
  .discount-banner-inner:hover {
    background: linear-gradient(90deg, rgba(67, 83, 255, 0.25) 0%, rgba(111, 66, 193, 0.25) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 83, 255, 0.25);
  }
  
  .new-badge {
    background: #4353FF;
    color: white;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    margin-right: 12px;
    box-shadow: 0 2px 5px rgba(67, 83, 255, 0.3);
  }
  
  .discount-text {
    color: white;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
  }
  
  .arrow-icon {
    color: white;
    font-size: 18px;
    margin-left: 10px;
    font-weight: 300;
    transition: transform 0.3s ease;
  }
  
  .discount-banner-inner:hover .arrow-icon {
    transform: translateX(3px);
  }
  
  /* Scroll fade effect */
  .banner-fade {
    opacity: 0.8;
    transform: translateY(5px) scale(0.98);
  }
  
  /* Animation keyframes */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 768px) {
    .discount-banner-inner {
      padding: 6px 15px;
    }
    
    .discount-text {
      font-size: 13px;
    }
  }

  /* 1. Center the container inside the hero */
.hero {
    display: flex;              /* you already have this */
    justify-content: center;    /* ← add this */
    align-items: center;        /* you already have this */
  }
  
  /* 2. Center the contents of that container */
  .hero .container {
    text-align: center;         /* center all the text inside */
    align-items: center;        /* if you ever change container to flex, keeps items centered */
  }
  
  /* Optional: make sure your CTA and stats also center nicely */
  @media (min-width: 1025px) {
    .hero-stats {
      justify-content: center;  /* center the three stats horizontally */
    }
  }
  
  /* desktop: force ALL-CAPS */
@media (min-width: 1025px) {
    .hero-content h1 {
      text-transform: uppercase;
    }
  }
  
  /* mobile: back to normal casing */
  @media (max-width: 1024px) {
    .hero-content h1 {
      text-transform: none;
    }
  }
  
  
  

  

  /* —— HERO SPACING OVERRIDE —— */
@media (max-width: 768px) {
    /* Optional: tweak top/bottom padding of the whole hero */
    .hero {
      padding-top: 80px;
      padding-bottom: 80px;
    }
  
    /* Turn hero-content into a column with uniform gaps */
    .hero-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;        /* adjust this value to taste */
      padding: 0 16px;  /* horizontal breathing room */
      text-align: center;
    }
  
    /* Nuke any leftover margin-bottom on hero children */
    .hero-content > * {
      margin-bottom: 0 !important;
    }
  }
  
  

  

  /* 1) Hide our mobile‐only pieces by default */
.hamburger,
.mobile-menu {
  display: none;
}

/* 2) Under 769px, hide the normal links and show the mobile toggle + menu */
@media (max-width: 768px) {
  /* hide desktop links */
  nav .nav-links {
    display: none;
  }

  /* show the hamburger button we inject via JS */
  .hamburger {
    display: block;
    font-size: 1.8rem;
    color: var(--text);
    cursor: pointer;
    user-select: none;
    /* position it at the right edge of the nav */
    margin-left: auto;
  }

  /* style the mobile menu overlay */
  .mobile-menu {
    display: none;           /* off by default */
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(10px);
    padding: 4rem 2rem 2rem;
    overflow-y: auto;
    z-index: 999;
    transition: opacity 0.3s ease;
  }
  .mobile-menu.open {
    display: block;          /* when JS adds .open */
    opacity: 1;
  }

  /* ensure the nav itself remains transparent/blurry */
  nav {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(10px);
  }
}


