*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#050505;
  color:white;
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
  position:relative;
}


.bg-glow{
  position:fixed;
  border-radius:50%;
  filter:blur(140px);
  z-index:-1;
}

.glow-1{
  width:500px;
  height:500px;
  background:#ff7a00;
  top:-150px;
  left:-100px;
  opacity:0.15;
}

.glow-2{
  width:450px;
  height:450px;
  background:#ff006a;
  right:-100px;
  bottom:-100px;
  opacity:0.12;
}

.navbar{
  padding:28px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid rgba(255,255,255,0.08);
  position:sticky;
  top:0;
  backdrop-filter:blur(10px);
  z-index:100;
}

.logo{
  font-size:28px;
  font-weight:900;
  letter-spacing:6px;
}

nav{
  display:flex;
  gap:40px;
}

nav a{
  color:rgba(255,255,255,0.7);
  text-decoration:none;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:2px;
  transition:0.3s;
}

nav a:hover{
  color:white;
}

.hero{
  min-height:100vh;
  padding:80px 8%;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
}

.launch-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(255,255,255,0.15);
  padding:12px 18px;
  border-radius:100px;
  margin-bottom:30px;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:3px;
  color:rgba(255,255,255,0.7);
}

.dot{
  width:10px;
  height:10px;
  background:#00ff88;
  border-radius:50%;
  animation:pulse 1.5s infinite;
}

@keyframes pulse{
  0%{transform:scale(1);}
  50%{transform:scale(1.5);}
  100%{transform:scale(1);}
}

.hero h1{
  font-size:88px;
  line-height:0.95;
  font-weight:900;
  text-transform:uppercase;
}

.hero h1 span{
  display:block;
  color:#ff8c2b;
}

.hero p{
  margin-top:35px;
  font-size:20px;
  line-height:1.8;
  color:rgba(255,255,255,0.7);
  max-width:650px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:40px;
}

.primary-btn,
.secondary-btn{
  padding:18px 34px;
  border-radius:100px;
  border:none;
  cursor:pointer;
  font-weight:700;
  transition:0.3s;
}

.primary-btn{
  background:white;
  color:black;
}

.primary-btn:hover{
  transform:translateY(-4px);
}

.secondary-btn{
  background:transparent;
  border:1px solid rgba(255,255,255,0.15);
  color:white;
}

.secondary-btn:hover{
  background:rgba(255,255,255,0.08);
}

.stats{
  display:flex;
  gap:50px;
  margin-top:60px;
}

.stats h2{
  font-size:42px;
  font-weight:900;
}

.stats span{
  color:rgba(255,255,255,0.5);
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
}

.phone-card{
  width:420px;
  height:620px;
  margin:auto;
  border-radius:50px;
  background:linear-gradient(to bottom,rgba(255,255,255,0.08),rgba(255,255,255,0.03));
  border:1px solid rgba(255,255,255,0.1);
  position:relative;
  overflow:hidden;
  backdrop-filter:blur(30px);
}

.mini-card{
  background:rgba(0,0,0,0.3);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:30px;
  padding:25px;
  backdrop-filter:blur(20px);
}

.top-card{
  position:absolute;
  top:40px;
  left:30px;
  right:30px;
}

.top-card span,
.mini-card span,
.orange-card span{
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:3px;
  color:rgba(255,255,255,0.6);
}

.top-card h3{
  margin-top:12px;
  font-size:48px;
  line-height:1;
  font-weight:900;
}

.bottom-content{
  position:absolute;
  bottom:30px;
  left:30px;
  right:30px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.mini-card h4{
  margin-top:10px;
  font-size:28px;
}

.orange-card{
  background:#ff8c2b;
  color:black;
  padding:30px;
  border-radius:30px;
}

.orange-card span{
  color:rgba(0,0,0,0.6);
}

.orange-card h4{
  margin-top:12px;
  font-size:36px;
  line-height:1.1;
  font-weight:900;
  text-transform:uppercase;
}

section{
  padding:120px 8%;
}

.section-title span{
  text-transform:uppercase;
  letter-spacing:4px;
  color:#ff8c2b;
  font-size:13px;
}

.section-title h2{
  margin-top:18px;
  font-size:68px;
  text-transform:uppercase;
  line-height:1;
}

.story{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.story-text{
  color:rgba(255,255,255,0.7);
  font-size:20px;
  line-height:1.9;
}

.story-text p{
  margin-bottom:25px;
}

.project-grid{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.project-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  padding:35px;
  border-radius:35px;
  transition:0.4s;
}

.project-card:hover{
  transform:translateY(-10px);
  background:rgba(255,255,255,0.07);
}

.emoji{
  font-size:48px;
  margin-bottom:25px;
}

.project-card h3{
  font-size:30px;
  margin-bottom:16px;
  text-transform:uppercase;
}

.project-card p{
  color:rgba(255,255,255,0.65);
  line-height:1.7;
}

.marquee-section{
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,0.08);
  border-bottom:1px solid rgba(255,255,255,0.08);
  padding:30px 0;
}

.marquee{
  display:flex;
  gap:80px;
  width:max-content;
  animation:marquee 18s linear infinite;
  font-size:42px;
  font-weight:900;
  text-transform:uppercase;
}

.marquee span:nth-child(even){
  color:#ff8c2b;
}

@keyframes marquee{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

.launch-section{
  text-align:center;
}

.launch-small{
  color:#ff8c2b;
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:13px;
}

.launch-section h2{
  font-size:82px;
  margin-top:25px;
  line-height:0.95;
  text-transform:uppercase;
}

.launch-section h2 span{
  display:block;
  color:#ff8c2b;
}

.launch-section p{
  max-width:700px;
  margin:35px auto;
  color:rgba(255,255,255,0.7);
  font-size:20px;
  line-height:1.8;
}

.waitlist{
  display:flex;
  justify-content:center;
  gap:15px;
  margin-top:45px;
}

.waitlist input{
  width:340px;
  padding:18px 24px;
  border-radius:100px;
  border:1px solid rgba(255,255,255,0.15);
  background:rgba(255,255,255,0.04);
  color:white;
  outline:none;
}

.waitlist button{
  padding:18px 34px;
  border:none;
  border-radius:100px;
  background:#ff8c2b;
  color:black;
  font-weight:800;
  cursor:pointer;
}

footer{
  padding:40px 8%;
  border-top:1px solid rgba(255,255,255,0.08);
  display:flex;
  justify-content:space-between;
  color:rgba(255,255,255,0.5);
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:2px;
}

.footer-links{
  display:flex;
  gap:25px;
}

@media(max-width:1100px){

  .hero{
    grid-template-columns:1fr;
  }

  .story{
    grid-template-columns:1fr;
  }

  .project-grid{
    grid-template-columns:1fr 1fr;
  }

  .hero h1{
    font-size:64px;
  }

  .section-title h2{
    font-size:52px;
  }

  .launch-section h2{
    font-size:58px;
  }
}

@media(max-width:700px){

  nav{
    display:none;
  }

  .hero{
    padding-top:40px;
  }

  .hero h1{
    font-size:48px;
  }

  .phone-card{
    width:100%;
    height:550px;
  }

  .stats{
    flex-direction:column;
    gap:30px;
  }

  .project-grid{
    grid-template-columns:1fr;
  }

  .waitlist{
    flex-direction:column;
    align-items:center;
  }

  .waitlist input{
    width:100%;
  }

  footer{
    flex-direction:column;
    gap:20px;
  }

}
