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

body{
  font-family:'Space Grotesk',sans-serif;
  background:#030712;
  color:white;
  overflow-x:hidden;
}

.container{
  width:min(1200px,92%);
  margin:auto;
}

.bg-grid{
  position:fixed;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size:60px 60px;
  z-index:-2;
}

header{
  position:sticky;
  top:0;
  backdrop-filter:blur(16px);
  background:rgba(3,7,18,0.75);
  border-bottom:1px solid rgba(255,255,255,0.08);
  z-index:100;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo{
  display:flex;
  gap:14px;
  align-items:center;
}

.logo-icon{
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:#22d3ee;
  color:#000;
  font-size:28px;
}

.logo h1{
  font-size:22px;
}

.logo span{
  color:#94a3b8;
  font-size:13px;
}

nav{
  display:flex;
  gap:28px;
}

nav a{
  color:#cbd5e1;
  text-decoration:none;
}

.btn-primary,.btn-secondary{
  padding:14px 24px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  display:inline-block;
}

.btn-primary{
  background:#22d3ee;
  color:#000;
}

.btn-secondary{
  border:1px solid rgba(255,255,255,0.12);
  color:white;
}

.hero{
  position:relative;
  padding:120px 0 80px;
}

.glow{
  position:absolute;
  border-radius:999px;
  filter:blur(120px);
}

.glow1{
  width:400px;
  height:400px;
  background:rgba(34,211,238,0.18);
  top:10%;
  left:5%;
}

.glow2{
  width:400px;
  height:400px;
  background:rgba(168,85,247,0.14);
  top:20%;
  right:10%;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
}

.badge{
  display:inline-block;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(34,211,238,0.3);
  background:rgba(34,211,238,0.1);
  color:#cffafe;
  margin-bottom:24px;
}

.hero h2{
  font-size:92px;
  line-height:.92;
  letter-spacing:-4px;
  margin-bottom:28px;
}

.hero h2 span{
  background:linear-gradient(to right,#67e8f9,#fff,#c084fc);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero p{
  font-size:22px;
  line-height:1.7;
  color:#cbd5e1;
  margin-bottom:36px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  margin-bottom:42px;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.stat-card{
  padding:22px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.04);
}

.stat-card strong{
  display:block;
  margin-bottom:10px;
}

.robot-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(34,211,238,0.2);
  border-radius:42px;
  padding:26px;
  box-shadow:0 0 90px rgba(34,211,238,0.15);
}

.robot-frame{
  min-height:620px;
  border-radius:36px;
  border:1px solid rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  background:radial-gradient(circle at top, rgba(34,211,238,0.22), transparent 35%), linear-gradient(to bottom right,#020617,#0f172a,#082f49);
}

.robot{
  font-size:160px;
  filter:drop-shadow(0 0 30px rgba(34,211,238,0.7));
}

.feature-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.feature{
  padding:18px;
  text-align:center;
  border-radius:20px;
  background:rgba(255,255,255,0.08);
}

.brands{
  padding:24px 0;
  border-top:1px solid rgba(255,255,255,0.08);
  border-bottom:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
}

.brand-row{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:18px;
  color:#cbd5e1;
}

.section{
  padding:110px 0;
}

.section-heading{
  max-width:760px;
  margin-bottom:60px;
}

.section-heading span,
.small-title{
  color:#67e8f9;
  letter-spacing:3px;
  font-size:13px;
  font-weight:700;
}

.section-heading h3,
.contact h3{
  font-size:58px;
  line-height:1;
  margin:18px 0 24px;
}

.section-heading p,
.contact p{
  color:#cbd5e1;
  font-size:20px;
  line-height:1.7;
}

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.card{
  padding:34px;
  border-radius:32px;
  background:linear-gradient(to bottom, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border:1px solid rgba(255,255,255,0.08);
  transition:.4s;
}

.card:hover{
  transform:translateY(-10px);
  border-color:rgba(34,211,238,0.35);
  box-shadow:0 0 60px rgba(34,211,238,0.15);
}

.card h4{
  font-size:24px;
  margin-bottom:18px;
}

.card p{
  color:#cbd5e1;
  line-height:1.7;
}

.dark{
  background:rgba(255,255,255,0.03);
}

.use-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.use-item{
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.04);
}

.why-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
}

.why-card{
  padding:42px;
  border-radius:36px;
  background:linear-gradient(to bottom right, rgba(34,211,238,0.12), rgba(59,130,246,0.08));
  border:1px solid rgba(34,211,238,0.18);
}

.why-card h3{
  font-size:46px;
  margin-bottom:24px;
}

.why-card p{
  color:#cbd5e1;
  line-height:1.8;
  font-size:18px;
}

.why-list{
  display:grid;
  gap:16px;
}

.why-list div{
  padding:24px;
  border-radius:24px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  padding:60px;
  border-radius:42px;
  background:linear-gradient(to bottom right,#020617,#0f172a);
  border:1px solid rgba(34,211,238,0.18);
  box-shadow:0 0 90px rgba(34,211,238,0.12);
}

.contact-form{
  display:grid;
  gap:16px;
}

.contact-form input,
.contact-form textarea{
  padding:18px 20px;
  border-radius:18px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  color:white;
}

.contact-form textarea{
  min-height:140px;
}

.contact-form button{
  border:none;
  border-radius:999px;
  padding:18px;
  font-weight:700;
  background:#22d3ee;
  cursor:pointer;
}

.contact-info{
  margin-top:30px;
  display:grid;
  gap:12px;
  color:#cbd5e1;
}

footer{
  padding:30px 0;
  border-top:1px solid rgba(255,255,255,0.08);
}

.footer{
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#94a3b8;
}

@media(max-width:980px){
  .hero-grid,
  .cards,
  .use-grid,
  .why-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

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

  .hero h2{
    font-size:64px;
  }

  .section-heading h3,
  .contact h3{
    font-size:42px;
  }

  nav{
    display:none;
  }

  .brand-row{
    justify-content:center;
  }
}
