:root{
  --bg:#0b0d12;
  --surface:#151820;
  --text:#f5f7fb;
  --muted:#9aa2b1;
  --line:#282d38;
  --accent:#7c5cff;
  --accent-dark:#6848e8;
  --shadow:0 18px 50px rgba(0,0,0,.35);
  --radius:18px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at 50% 0%,rgba(124,92,255,.16),transparent 32%),
    var(--bg);
  color:var(--text);
}

a{
  color:inherit;
  text-decoration:none;
}

header{
  width:min(1120px,calc(100% - 32px));
  margin:auto;
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:25px;
  font-weight:900;
  letter-spacing:-1px;
}

.accent{
  color:var(--accent);
}

.mark{
  width:30px;
  height:30px;
  border-radius:9px;
  background:linear-gradient(135deg,#111827,#6c4df6);
  position:relative;
  box-shadow:0 7px 20px rgba(124,92,255,.30);
}

.mark:after{
  content:"↓";
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color:#fff;
  font-size:25px;
  font-weight:950;
  line-height:1;
  text-shadow:0 2px 5px rgba(0,0,0,.22);
}

nav{
  display:flex;
  gap:25px;
  color:#aab2c2;
  font-size:14px;
  font-weight:600;
}

nav a:hover{
  color:var(--accent);
}

main{
  width:100%;
}

.hero{
  width:min(850px,calc(100% - 28px));
  margin:55px auto 0;
  text-align:center;
}

.eyebrow{
  display:inline-block;
  padding:8px 13px;
  border-radius:999px;
  background:#211c3b;
  color:var(--accent);
  font-size:11px;
  font-weight:800;
  letter-spacing:1.4px;
}

h1{
  margin:20px 0 15px;
  font-size:clamp(42px,7vw,72px);
  line-height:1.02;
  letter-spacing:-3px;
}

h1 span{
  color:var(--accent);
}

.lead{
  max-width:650px;
  margin:0 auto 30px;
  color:var(--muted);
  font-size:17px;
  line-height:1.65;
}

.platform-icons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:24px;
  margin:0 auto 24px;
}

.platform-icon{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px;
  min-width:58px;
}

.platform-icon span{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:#151820;
  border:1px solid var(--line);
  box-shadow:0 5px 18px rgba(17,24,39,.06);
  font-size:21px;
  font-weight:900;
}

.platform-icon small{
  color:#7a8190;
  font-size:10px;
  font-weight:700;
}

.tool{
  background:#151820;
  padding:10px;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow);
  display:flex;
  gap:10px;
  text-align:left;
}

.input-wrap{
  flex:1;
  min-width:0;
  position:relative;
  display:flex;
  align-items:center;
}

#url{
  width:100%;
  min-width:0;
  height:58px;
  border:0;
  outline:0;
  background:#1c2029;
  border-radius:14px;
  padding:0 105px 0 18px;
  font-size:15px;
  color:var(--text);
}

#url::placeholder{
  color:#747d8e;
}

#url:focus{
  box-shadow:inset 0 0 0 2px rgba(124,92,255,.30);
}

.paste{
  position:absolute;
  right:7px;
  height:44px;
  padding:0 13px;
  border:0;
  border-radius:11px;
  background:#151820;
  color:#555d6d;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 3px 10px rgba(17,24,39,.08);
}

.paste:hover{
  color:var(--accent);
}

.download-main{
  min-width:170px;
  height:58px;
  border:0;
  border-radius:14px;
  background:var(--accent);
  color:white;
  font-size:15px;
  font-weight:900;
  cursor:pointer;
  transition:.2s;
}

.download-main:hover{
  background:var(--accent-dark);
  transform:translateY(-1px);
}

.download-main:disabled{
  opacity:.7;
  cursor:wait;
  transform:none;
}

.result{
  min-height:24px;
  margin-top:16px;
  color:var(--muted);
  font-size:14px;
}

.result.error{
  color:#dc2626;
}

.result.loading{
  color:var(--accent);
}

.notice{
  margin:14px auto 0;
  max-width:650px;
  color:#737c8d;
  font-size:11px;
  line-height:1.6;
}

.trust{
  width:min(950px,calc(100% - 28px));
  margin:55px auto 20px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:#151820;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:0 10px 35px rgba(17,24,39,.05);
  overflow:hidden;
}

.trust div{
  padding:24px 18px;
  text-align:center;
  border-right:1px solid var(--line);
}

.trust div:last-child{
  border-right:0;
}

.trust strong{
  display:block;
  font-size:15px;
  margin-bottom:6px;
}

.trust span{
  color:var(--muted);
  font-size:12px;
}

.section{
  width:min(1000px,calc(100% - 28px));
  margin:95px auto 0;
}

.section-head{
  text-align:center;
  margin-bottom:28px;
}

.section-head>span{
  color:var(--accent);
  font-size:11px;
  font-weight:900;
  letter-spacing:1.4px;
}

.section-head h2{
  margin:9px 0 0;
  font-size:32px;
  letter-spacing:-1px;
}

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

.cards article{
  background:#151820;
  border:1px solid var(--line);
  border-radius:18px;
  padding:25px;
}

.cards article>span{
  color:var(--accent);
  font-weight:900;
  font-size:12px;
}

.cards h3{
  margin:15px 0 8px;
  font-size:20px;
}

.cards p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}

.faq{
  max-width:800px;
  margin-bottom:100px;
}

details{
  background:#151820;
  border:1px solid var(--line);
  border-radius:14px;
  padding:18px 20px;
  margin-bottom:10px;
}

summary{
  cursor:pointer;
  font-weight:800;
}

details p{
  color:var(--muted);
  line-height:1.7;
  font-size:14px;
  margin-bottom:0;
}

footer{
  width:min(1000px,calc(100% - 28px));
  margin:0 auto;
  padding:25px 0 35px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  color:#737c8d;
  font-size:12px;
}

footer a:hover{
  color:var(--accent);
}

@media(max-width:700px){

  header{
    min-height:65px;
  }

  nav{
    display:none;
  }

  .hero{
    margin-top:38px;
  }

  h1{
    font-size:44px;
    letter-spacing:-2px;
  }

  .lead{
    font-size:15px;
  }

  .platform-icons{
    gap:13px;
  }

  .platform-icon{
    min-width:55px;
  }

  .platform-icon span{
    width:38px;
    height:38px;
    border-radius:11px;
  }

  .platform-icon small{
    font-size:9px;
  }

  .tool{
    flex-direction:column;
    padding:8px;
  }

  #url{
    height:55px;
  }

  .download-main{
    width:100%;
    height:56px;
  }

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

  .trust div{
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .trust div:last-child{
    border-bottom:0;
  }

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

  .section{
    margin-top:70px;
  }

  .section-head h2{
    font-size:27px;
  }

  footer{
    flex-direction:column;
    gap:10px;
    text-align:center;
  }
}


/* VOOXOR platform colors */
.platform-icon.tiktok span{
  background:#11151c;
  color:#fff;
  border-color:#303642;
}

.platform-icon.instagram span{
  background:linear-gradient(135deg,#7b2cff,#e1306c,#ff9a3c);
  color:#fff;
  border:0;
}

.platform-icon.facebook span{
  background:#1877f2;
  color:#fff;
  border:0;
}

.platform-icon.snapchat span{
  background:#fffc00;
  color:#111;
  border:0;
}

.paste{
  background:#252a35;
  color:#dce1eb;
}

.trust,
.cards article,
details{
  background:#151820;
  border-color:#282d38;
}

#url{
  color:#f5f7fb;
}

footer{
  border-color:#282d38;
}

/* Premium platform icons */
.platform-icons{
  gap:18px;
}

.platform-icon{
  transition:transform .2s ease;
  cursor:default;
}

.platform-icon:hover{
  transform:translateY(-4px);
}

.platform-icon span{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-size:22px;
  box-shadow:0 8px 22px rgba(0,0,0,.28);
}

.platform-icon.tiktok span{
  background:#050608;
  color:#fff;
  text-shadow:
    -2px 0 #25f4ee,
    2px 0 #fe2c55;
  border:1px solid #30343e;
}

.platform-icon.instagram span{
  background:linear-gradient(
    135deg,
    #7b2cff 0%,
    #e1306c 50%,
    #ff9a3c 100%
  );
  color:#fff;
}

.platform-icon.facebook span{
  background:#1877f2;
  color:#fff;
}

.platform-icon.snapchat span{
  background:#fffc00;
  color:#111;
}

.platform-icon small{
  color:#aeb5c2;
  font-weight:700;
}

@media(max-width:700px){
  .platform-icons{
    gap:10px;
  }

  .platform-icon span{
    width:42px;
    height:42px;
    border-radius:13px;
    font-size:20px;
  }
}

/* Premium Download Button */
.download-main{
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,#866cff,#6848e8);
  box-shadow:
    0 10px 28px rgba(124,92,255,.28),
    inset 0 1px 0 rgba(255,255,255,.20);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.download-main:before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:70%;
  height:100%;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.20),
    transparent
  );
  transform:skewX(-20deg);
  transition:left .55s ease;
}

.download-main:hover:before{
  left:140%;
}

.download-main:hover{
  background:linear-gradient(135deg,#967fff,#7655f0);
  transform:translateY(-2px);
  box-shadow:
    0 15px 35px rgba(124,92,255,.38),
    inset 0 1px 0 rgba(255,255,255,.25);
}

.download-main:active{
  transform:translateY(0);
}

.download-main:disabled{
  background:#514a72;
  box-shadow:none;
}
