body {
  margin: 0;
  overflow-x: hidden;
  color: white;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #0a0a0a, #000);
  scroll-behavior: smooth;
}
.glass {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease-in-out;
}
.glass:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: scale(1.03);
}
.neon-text {
  text-shadow: 0 0 10px #3DD08A, 0 0 20px #3DD08A;
  animation: fadeIn 1.5s ease-in-out;
}


.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
  background: radial-gradient(circle, rgba(61,208,138,0.05) 0%, transparent 70%),
              radial-gradient(circle at 70% 20%, rgba(61,208,138,0.08) 0%, transparent 60%),
              radial-gradient(circle at 30% 80%, rgba(61,208,138,0.04) 0%, transparent 60%);
  animation: moveBackground 18s infinite alternate ease-in-out;
}

.bubble {
  position: absolute;
  bottom: -100px;
  background: rgba(61, 208, 138, 0.1);
  border-radius: 50%;
  filter: blur(6px);
  animation: rise 10s infinite ease-in;
}

a { transition: all 0.3s ease-in-out; cursor: pointer; }
a:hover { transform: translateY(-2px); filter: drop-shadow(0 0 6px rgba(61, 208, 138, 0.6)); }

html {
  scroll-behavior: smooth;
}

.CTA{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  /* display: flex;
  flex-direction: row;
  align-items: flex-start; */
} 

.CTA .block-cta:first-child h2, 
.CTA .block-cta:first-child p{
  text-align: end;
}

.CTA .block-cta:first-child div{
  align-items: end;
}

.road{
  border-left: 6px solid rgba(61, 208, 138, 0.9);
  margin-left: 12px;
  padding-left: 20px;
}



.whatisleaf{
  width: 100%;
  text-align: start;
}

.dot{
    position: absolute;            
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background-color: #3DD08A;
    border-radius: 50%;
    margin-right: 0;       
    flex-shrink: 0;
    pointer-events: none;
}

/* .dot{
  width: 16px;
  height: 16px;
  background-color: #3DD08A;
  border-radius: 50%;
  transform: translate(-50%, -50%); 
  pointer-events: none;
  top
} */

.dot.i1{
  left: 63px;            
  top: 180px;             
}

.dot.i2{
  left: 63px;           
  top: 395px;    
}

.dot.i3{
  left: 63px;           
  top: 615px;    
}

.dot.i4{
  left: 63px;           
  top: 835px;    
}

.dot.i5{
  left: 63px;           
  top: 1030px;    
}

.dot.i6{
  left: 63px;           
  top: 1220px;    
}

.dot.i7{
  left: 63px;           
  top: 1420px;    
}

.dot.i8{
  left: 63px;           
  top: 1610px;    
}

.timeline-item {
  text-align: start;
}

.timeline_point{
  position: absolute;
  left: -36px;
  width: 24px;
  height: 24px;
  border: 1px solid #3DD08A;
  background-color: rgba(61, 208, 138, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}


.timeline-bullet {
  width: 24px;
  height: 24px;
  border: 1px solid #3DD08A;
  background-color: rgba(61, 208, 138, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
} 

.timeline-bullet i{
  font-size: small;
}

.road .glass:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: scale(1);
}



@media (max-width: 767px) {
  .whatisleaf{
    max-width: 90%;
  }

  .CTA{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .CTA .block-cta{
    text-align: start;
  }

  .CTA .block-cta:first-child h2, 
  .CTA .block-cta:first-child p{
    text-align: start;
  }

  .CTA .block-cta:first-child div{
    align-items: start;
  }

  .CTA .block-cta:first-child a{
    justify-content: center;
  }

  .CTA .block-cta a{
    justify-content: center;
  }

  .CTA .block-cta:last-child{
    border-top: 1px solid rgba(61, 208, 138, 0.2);
    padding-top: 35px;  
  }


  .CTA .block-cta div{
    justify-content: space-between;
  }

  .dot.dot{
    left: 39px;
  }

}


@media (max-width: 430px) {
  .whatisleaf{
    max-width: 98%;
  }
}


.neon {
  color:#3DD08A;
  text-shadow:0 0 12px rgba(61,208,138,0.25);
}

.fade-up {
  opacity:0;
  transform:translateY(20px);
  animation:fadeUp 1s ease forwards;
}

.delay-1{animation-delay:.1s}
.delay-2{animation-delay:.3s}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


@keyframes fadeUp{to{opacity:1;transform:none}}

@keyframes moveBackground {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
  100% { transform: translate(-20px, 20px) scale(1); }
}

@keyframes rise {
  0% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { opacity: 0.6; }
  100% { transform: translateY(-110vh) scale(1.4); opacity: 0; }
}
















