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

body{
  font-family:'Outfit',sans-serif;
  background:#0b033c;
  color:#fff;
  overflow-x:hidden;
  position:relative;
}

/* =========================
   GLOW
========================= */

.bg-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(140px);
  z-index:-1;
}

.glow-1{
  width:500px;
  height:500px;
  background:#36fafd;
  top:-150px;
  left:-100px;
  opacity:.25;
}

.glow-2{
  width:500px;
  height:500px;
  background:#d400ff;
  bottom:-200px;
  right:-100px;
  opacity:.18;
}
/* =========================
   NAVBAR
========================= */

.navbar{
  width:100%;
  padding:30px 80px;

  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:48px;
  font-weight:700;

  background:
  linear-gradient(to right,#ff00c8,#8b5cff);

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.nav-links{
  display:flex;
  gap:40px;

  padding:18px 40px;

  border-radius:999px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(20px);
}

.nav-links a{
  text-decoration:none;
  color:#fff;
  font-size:14px;
}

.nav-actions{
  display:flex;
  gap:16px;
}

.login-btn,
.pricing-btn{
  text-decoration:none;
  color:#fff;

  padding:14px 26px;

  border-radius:999px;
}

.login-btn{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.pricing-btn{
  background:
  linear-gradient(to right,
  #ff00c8,
  #8b5cff);
}

/* =========================
   HERO
========================= */

.roadmap-hero{
  max-width:1200px;

  margin:auto;

  text-align:center;

  padding:140px 24px 120px;
}

.hero-tag{
  color:#ff4fe1;
  letter-spacing:5px;
  font-size:14px;
}

.roadmap-hero h1{
  font-size:92px;
  font-weight:300;
  line-height:1;

  margin:28px 0;
}

.roadmap-hero p{
  max-width:760px;
  margin:auto;

  color:#bdb7d0;

  line-height:2;
  font-size:18px;
}

/* =========================
   TIMELINE
========================= */

.timeline-section{
  position:relative;

  max-width:1200px;
  margin:auto;

  padding:40px 24px 140px;
}

.timeline-line{
  position:absolute;

  left:50%;
  top:0;
  bottom:0;

  width:2px;

  background:
  linear-gradient(to bottom,
  transparent,
  #ff00c8,
  #8b5cff,
  transparent);

  transform:translateX(-50%);
}

.timeline-item{
  position:relative;

  width:50%;

  padding:40px;
}

.timeline-item:nth-child(even){
  margin-left:auto;
}

.timeline-dot{
  position:absolute;

  top:60px;

  width:18px;
  height:18px;

  border-radius:50%;

  background:#ff00c8;

  box-shadow:
  0 0 30px rgba(255,0,255,.6);
}

.timeline-item:nth-child(odd) .timeline-dot{
  right:-9px;
}

.timeline-item:nth-child(even) .timeline-dot{
  left:-9px;
}

.timeline-card{
  padding:40px;

  border-radius:34px;

  background:
  rgba(255,255,255,.03);

  border:1px solid rgba(255,255,255,.06);

  backdrop-filter:blur(20px);

  transition:.4s;
}

.timeline-card:hover{
  transform:translateY(-8px);

  box-shadow:
  0 0 40px rgba(255,0,255,.12);
}

.timeline-card span{
  color:#ff4fe1;
  letter-spacing:4px;
  font-size:12px;
}

.timeline-card h3{
  font-size:42px;
  font-weight:300;
  line-height:1.1;

  margin:20px 0;
}

.timeline-card p{
  color:#bdb7d0;
  line-height:1.9;

  margin-bottom:30px;
}

.timeline-card ul{
  padding-left:18px;
}

.timeline-card li{
  color:#c7c1d6;
  margin-bottom:12px;
}

/* =========================
   FUTURE
========================= */

.future-section{
  max-width:1400px;

  margin:auto;

  display:grid;
  grid-template-columns:1fr 1fr;

  gap:60px;

  align-items:center;

  padding:0 80px 140px;
}

.future-content span{
  color:#ff4fe1;
  letter-spacing:5px;
  font-size:13px;
}

.future-content h2{
  font-size:72px;
  font-weight:300;
  line-height:1.08;

  margin:24px 0;
}

.future-content p{
  color:#bdb7d0;
  line-height:2;
  font-size:18px;

  margin-bottom:40px;
}

.future-content a{
  display:inline-flex;

  padding:18px 34px;

  border-radius:999px;

  text-decoration:none;
  color:#fff;

  background:
  linear-gradient(to right,
  #ff00c8,
  #8b5cff);
}

.future-image{
  border-radius:40px;
  overflow:hidden;

  border:1px solid rgba(255,255,255,.08);

  transform:rotate(2deg);

  box-shadow:
  0 0 60px rgba(255,0,255,.12);
}

.future-image img{
  width:100%;
  display:block;
}

/* =========================
   CTA
========================= */

.roadmap-cta{
  position:relative;

  text-align:center;

  padding:180px 24px;

  overflow:hidden;
}

.cta-glow{
  position:absolute;

  width:700px;
  height:700px;

  border-radius:50%;

  background:#ff00c8;

  filter:blur(180px);

  opacity:.12;

  left:50%;
  top:50%;

  transform:
  translate(-50%,-50%);
}

.roadmap-cta span{
  color:#ff4fe1;
  letter-spacing:5px;
  font-size:13px;
}

.roadmap-cta h2{
  font-size:82px;
  font-weight:300;
  line-height:1.05;

  margin:24px 0;
}

.roadmap-cta p{
  color:#bdb7d0;
  font-size:18px;

  margin-bottom:40px;
}

.roadmap-cta a{
  display:inline-flex;

  padding:18px 36px;

  border-radius:999px;

  text-decoration:none;
  color:#fff;

  background:
  linear-gradient(to right,
  #ff00c8,
  #8b5cff);
}

/* =========================
   FOOTER
========================= */

.footer{
  padding:80px;

  border-top:1px solid rgba(255,255,255,.06);
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;

  gap:60px;
}

.footer-logo{
  font-size:42px;
  font-weight:700;

  background:
  linear-gradient(to right,#ff00c8,#8b5cff);

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  margin-bottom:20px;
}

.footer-col p{
  color:#9f99b4;
  line-height:1.9;
}

.footer-col h4{
  margin-bottom:24px;
}

.footer-col a{
  display:block;

  color:#9f99b4;

  text-decoration:none;

  margin-bottom:14px;
}

.footer-bottom{
  margin-top:60px;
  padding-top:30px;

  border-top:1px solid rgba(255,255,255,.06);

  display:flex;
  justify-content:space-between;

  color:#8d889f;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

  .future-section{
    grid-template-columns:1fr;
  }

  .timeline-line{
    left:20px;
  }

  .timeline-item{
    width:100%;
    padding-left:60px;
  }

  .timeline-item:nth-child(even){
    margin-left:0;
  }

  .timeline-dot{
    left:11px !important;
  }
}

@media(max-width:768px){

  .navbar{
    padding:24px;
  }

  .nav-links{
    display:none;
  }

  .future-section,
  .footer{
    padding-left:24px;
    padding-right:24px;
  }

  .roadmap-hero h1,
  .future-content h2,
  .roadmap-cta h2{
    font-size:42px;
  }

  .timeline-card h3{
    font-size:30px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
    gap:12px;
  }
}