:root{
  --bg:#020711;
  --bg2:#061221;
  --card:#071522;
  --blue:#00c8ff;
  --blue2:#168cff;
  --gold:#f4c64e;
  --white:#f7fbff;
  --muted:#9eb1c4;
  --line:rgba(0,200,255,.22);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  background:
    radial-gradient(circle at 80% 10%,rgba(0,153,255,.14),transparent 28%),
    radial-gradient(circle at 15% 35%,rgba(0,200,255,.07),transparent 25%),
    var(--bg);
  color:var(--white);
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.6;
  overflow-x:hidden;
}

button,a{
  font:inherit;
}

button{
  cursor:pointer;
}

.hero{
  min-height:92vh;
  padding:28px 7% 70px;
  position:relative;
  border-bottom:1px solid var(--line);
}

.hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--blue),transparent);
  box-shadow:0 0 18px var(--blue);
}

nav{
  max-width:1400px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}

.brand{
  font-size:1.2rem;
  font-weight:800;
  letter-spacing:2px;
}

.brand b{
  color:var(--gold);
}

.navBtns{
  display:flex;
  gap:10px;
}

.navBtns button{
  color:#dff8ff;
  background:rgba(4,19,32,.7);
  border:1px solid rgba(0,200,255,.35);
  border-radius:10px;
  padding:10px 17px;
  transition:.25s ease;
}

.navBtns button:hover{
  border-color:var(--blue);
  box-shadow:0 0 18px rgba(0,200,255,.25);
  transform:translateY(-2px);
}

.heroGrid{
  max-width:1400px;
  margin:110px auto 0;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  align-items:center;
  gap:80px;
}

.eyebrow{
  color:var(--blue);
  font-weight:800;
  letter-spacing:2px;
  font-size:.78rem;
  margin-bottom:15px;
}

.hero h1{
  max-width:760px;
  font-size:clamp(2.4rem,5vw,5.2rem);
  line-height:1.02;
  letter-spacing:-2px;
}

.hero h1 span{
  color:var(--gold);
  text-shadow:0 0 25px rgba(244,198,78,.25);
}

.hero h2{
  margin:30px 0 13px;
  font-size:1.1rem;
  color:#d9f7ff;
}

.heroGrid>div>p:last-child{
  max-width:680px;
  color:var(--muted);
  font-size:1.08rem;
}

.orb{
  width:min(430px,80vw);
  aspect-ratio:1;
  margin:auto;
  border:1px solid rgba(0,200,255,.35);
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  position:relative;
  background:
    radial-gradient(circle,rgba(0,200,255,.17),rgba(4,14,26,.45) 50%,transparent 70%);
  box-shadow:
    0 0 80px rgba(0,157,255,.18),
    inset 0 0 70px rgba(0,200,255,.08);
}

.orb::before,
.orb::after{
  content:"";
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(0,200,255,.17);
}

.orb::before{
  inset:30px;
}

.orb::after{
  inset:65px;
}

.robot{
  width:150px;
  height:150px;
  border-radius:32px;
  display:grid;
  place-items:center;
  font-size:3.2rem;
  font-weight:900;
  letter-spacing:-4px;
  color:#fff;
  background:linear-gradient(145deg,#0b2842,#008dcc);
  border:1px solid #27d9ff;
  box-shadow:
    0 0 35px rgba(0,200,255,.45),
    inset 0 0 25px rgba(255,255,255,.08);
  z-index:1;
}

.orb p{
  text-align:center;
  color:var(--muted);
  margin-top:24px;
  z-index:1;
}

.orb strong{
  color:var(--gold);
}

main{
  width:100%;
}

.stats{
  max-width:1400px;
  margin:auto;
  padding:55px 7%;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
  border-bottom:1px solid var(--line);
}

.stats div{
  text-align:center;
  padding:12px;
}

.stats b{
  display:block;
  color:var(--blue);
  font-size:clamp(1.6rem,3vw,2.6rem);
  line-height:1.1;
  text-shadow:0 0 20px rgba(0,200,255,.25);
}

.stats span{
  color:var(--muted);
  font-size:.86rem;
}

.journey{
  max-width:920px;
  margin:auto;
  padding:110px 7%;
  text-align:center;
}

.journey h2,
.sectionTitle h2{
  font-size:clamp(2rem,4vw,3.7rem);
  line-height:1.1;
  margin-bottom:25px;
}

.journey>p:not(.eyebrow){
  color:#b9c9d8;
  max-width:780px;
  margin:0 auto 18px;
}

.journey strong{
  color:#fff;
}

.bigStat{
  margin:45px auto 15px;
  color:var(--gold);
  font-size:clamp(4rem,10vw,7.5rem);
  font-weight:900;
  line-height:1;
  text-shadow:0 0 40px rgba(244,198,78,.2);
}

.journey small{
  display:block;
  margin-top:25px;
  color:#6f8498;
}

.products{
  padding:100px 7%;
  border-top:1px solid var(--line);
  background:linear-gradient(180deg,rgba(5,18,32,.35),transparent);
}
.productSteps{
  max-width:850px;
  margin:0 auto 45px;
  text-align:center;
  color:var(--gold);
  font-size:1.15rem;
  font-weight:800;
  letter-spacing:3px;
}

.productSteps span{
  color:var(--blue);
  margin:0 10px;
}
.sectionTitle{
  max-width:850px;
  margin:0 auto 55px;
  text-align:center;
}

.sectionTitle>p:last-child{
  color:var(--muted);
}

.grid{
  max-width:1250px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.card{
  background:
    linear-gradient(145deg,rgba(10,28,43,.92),rgba(3,11,20,.96));
  border:1px solid rgba(0,200,255,.2);
  border-radius:20px;
  padding:17px;
  display:flex;
  flex-direction:column;
  gap:14px;
  min-width:0;
  transition:.3s ease;
  box-shadow:0 15px 50px rgba(0,0,0,.2);
}

.card:hover{
  transform:translateY(-7px);
  border-color:rgba(0,200,255,.6);
  box-shadow:0 18px 60px rgba(0,157,255,.13);
}

.card img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  border-radius:13px;
  background:#08131f;
}

.card h3{
  font-size:1.12rem;
  min-height:54px;
}
.selectedReason{
  color:var(--muted);
  font-size:.9rem;
  line-height:1.5;
  margin-bottom:8px;
}

.selectedReason strong{
  display:block;
  color:var(--gold);
  margin-bottom:4px;
}
.buy,
.preview{
  width:100%;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  border-radius:10px;
  text-decoration:none;
  font-weight:800;
  transition:.25s ease;
}

.buy{
  color:#00111a;
  border:0;
  background:linear-gradient(90deg,#00c8ff,#5be7ff);
  margin-top:auto;
  box-shadow:0 0 22px rgba(0,200,255,.12);
}

.buy:hover{
  transform:translateY(-2px);
  box-shadow:0 0 25px rgba(0,200,255,.32);
}

.preview{
  color:#eafaff;
  background:transparent;
  border:1px solid rgba(0,200,255,.35);
}

.preview:hover{
  border-color:var(--blue);
  background:rgba(0,200,255,.06);
}

.trust{
  max-width:1100px;
  margin:30px auto 90px;
  padding:30px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
  text-align:center;
  color:#c8d9e6;
  border-top:1px solid rgba(0,200,255,.16);
  border-bottom:1px solid rgba(0,200,255,.16);
}

.trust div::first-letter{
  color:var(--gold);
}

footer{
  text-align:center;
  padding:40px 20px;
  color:#71879a;
  font-size:.78rem;
  letter-spacing:1.5px;
  border-top:1px solid rgba(255,255,255,.05);
}

.overlay{
  position:fixed;
  inset:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:25px;
  background:rgba(0,3,8,.94);
  backdrop-filter:blur(8px);
  opacity:0;
  visibility:hidden;
  transition:opacity .3s ease,visibility .3s ease;
}

.overlay.open{
  opacity:1;
  visibility:visible;
}

.modal{
  position:relative;
  width:min(1050px,96vw);
  max-height:90vh;
  overflow:auto;
  padding:28px;
  border-radius:22px;
  background:#040b13;
  border:1px solid rgba(0,200,255,.38);
  box-shadow:0 0 60px rgba(0,157,255,.2);
  transform:scale(.97);
  transition:transform .3s ease;
}

.overlay.open .modal{
  transform:scale(1);
}

.close{
  position:absolute;
  top:13px;
  right:15px;
  z-index:5;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(0,0,0,.75);
  color:#fff;
  font-size:1.7rem;
  line-height:1;
}

.close:hover{
  border-color:var(--blue);
  color:var(--blue);
}

#modalImage{
  width:100%;
  max-height:78vh;
  object-fit:contain;
  display:block;
  border-radius:13px;
}

#modalText{
  color:#c4d5e3;
}

.videoBox{
  width:min(850px,96vw);
  padding:60px 20px 20px;
}

.videoBox video{
  display:block;
  width:100%;
  max-height:76vh;
  background:#000;
  border-radius:12px;
}

.wait{
  width:min(650px,95vw);
  padding:65px 40px 45px;
  text-align:center;
}

.wait h2{
  font-size:clamp(1.8rem,5vw,3rem);
  line-height:1.1;
  margin-bottom:25px;
}

.wait>p{
  color:var(--muted);
}

#countdown{
  margin:30px auto;
  padding:20px 12px;
  color:var(--gold);
  font-size:clamp(2rem,8vw,4rem);
  font-weight:900;
  letter-spacing:3px;
  border-top:1px solid rgba(244,198,78,.3);
  border-bottom:1px solid rgba(244,198,78,.3);
}

body.modal-open{
  overflow:hidden;
}

@media(max-width:950px){
  .hero{
    min-height:auto;
  }

  .heroGrid{
    grid-template-columns:1fr;
    margin-top:75px;
    gap:55px;
    text-align:center;
  }

  .heroGrid>div>p,
  .hero h1{
    margin-left:auto;
    margin-right:auto;
  }

  .stats{
    grid-template-columns:repeat(2,1fr);
  }

  .grid{
    grid-template-columns:repeat(2,1fr);
  }

  .trust{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:650px){
  .hero{
    padding:20px 20px 55px;
  }

  nav{
    flex-direction:column;
  }

  .brand{
    font-size:1rem;
  }

  .navBtns{
    width:100%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:6px;
  }

  .navBtns button{
    padding:9px 5px;
    font-size:.76rem;
  }

  .heroGrid{
    margin-top:60px;
  }

  .hero h1{
    font-size:2rem;
    letter-spacing:-1px;
  }

  .orb{
    width:min(330px,90vw);
  }

  .robot{
    width:120px;
    height:120px;
    font-size:2.6rem;
  }

  .stats{
    padding:45px 20px;
  }

  .stats div:last-child{
    grid-column:1/-1;
  }

  .journey,
  .products{
    padding:80px 20px;
  }

  .grid{
    grid-template-columns:1fr;
  }

  .card h3{
    min-height:0;
  }

  .trust{
    margin:10px 20px 65px;
    grid-template-columns:1fr 1fr;
    padding:22px 10px;
    font-size:.83rem;
  }

  .modal{
    padding:18px;
  }

  .wait{
    padding:65px 20px 35px;
  }
}