.vs-hero{
  --bg:#06101a;
  --bg-2:#0b1525;
  --panel:rgba(255,255,255,.08);
  --panel-2:rgba(255,255,255,.12);
  --stroke:rgba(255,255,255,.12);
  --text:#f5f8ff;
  --muted:#adbbcd;
  --blue:#67a8ff;
  --cyan:#59dfd2;
  --violet:#8d6bff;
  --shadow:0 30px 80px rgba(0,0,0,.45);

  position:relative;
  overflow:hidden;
  min-height:100svh;
  display:flex;
  align-items:center;
  padding:28px 24px 72px;
  color:var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(103,168,255,.18), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(141,107,255,.16), transparent 24%),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
  isolation:isolate;
}

.vs-hero__bg,
.vs-hero__noise,
.vs-hero__grid,
.vs-hero__glow{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.vs-hero__bg{
  z-index:-4;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.02), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.02), transparent 55%);
}

.vs-hero__noise{
  z-index:-3;
  opacity:.05;
  background-image:
    radial-gradient(rgba(255,255,255,.4) .6px, transparent .6px);
  background-size:14px 14px;
}

.vs-hero__grid{
  z-index:-2;
  opacity:.14;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:38px 38px;
  mask-image:radial-gradient(circle at center, black 38%, transparent 88%);
}

.vs-hero__glow{
  z-index:-1;
  border-radius:50%;
  filter:blur(80px);
  opacity:.55;
  animation:vsGlowFloat 10s ease-in-out infinite;
}

.vs-hero__glow--1{
  inset:auto;
  width:320px;
  height:320px;
  left:-80px;
  top:90px;
  background:rgba(103,168,255,.28);
}

.vs-hero__glow--2{
  inset:auto;
  width:280px;
  height:280px;
  right:-60px;
  top:80px;
  background:rgba(141,107,255,.24);
  animation-delay:-3s;
}

.vs-hero__inner{
  width:min(1280px, 100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:42px;
  align-items:center;
}

.vs-hero__content{
  max-width:610px;
}

.vs-hero__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 20px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 12px 28px rgba(0,0,0,.18);
  font-size:13px;
  color:#dde9ff;
}

.vs-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  flex:0 0 auto;
  background:linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow:0 0 16px rgba(89,223,210,.75);
}

.vs-hero__title{
  margin:0 0 18px;
  font-size:clamp(2.6rem, 5.4vw, 5rem);
  line-height:.92;
  letter-spacing:-.05em;
  font-weight:800;
  text-wrap:balance;
  max-width:10ch;
}

.vs-hero__title span{
  display:block;
  margin-top:10px;
  max-width:14ch;
  font-size:.48em;
  line-height:1.02;
  letter-spacing:-.035em;
  background:linear-gradient(90deg, #ffffff 0%, #b6deff 35%, #7be3ff 68%, #d8c7ff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.vs-hero__text{
  margin:0 0 28px;
  max-width:58ch;
  color:var(--muted);
  font-size:clamp(1rem, 1.2vw, 1.08rem);
  line-height:1.7;
}

.vs-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:24px;
}

.vs-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 22px;
  border-radius:18px;
  text-decoration:none;
  font-weight:800;
  font-size:.98rem;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.vs-btn:hover{
  transform:translateY(-2px);
}

.vs-btn--primary{
  color:#06101a;
  background:linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow:
    0 16px 34px rgba(103,168,255,.22),
    0 0 28px rgba(89,223,210,.16);
}

.vs-btn--glass{
  color:#eef6ff;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 10px 26px rgba(0,0,0,.16);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.vs-btn--glass:hover{
  background:rgba(255,255,255,.09);
  border-color:rgba(255,255,255,.18);
}

.vs-hero__proof{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  max-width:520px;
}

.vs-hero__proof span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
  color:#cfdbeb;
  font-size:.86rem;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.vs-hero__visual{
  position:relative;
  min-height:620px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.vs-showcase{
  position:relative;
  width:min(100%, 580px);
  perspective:1400px;
  z-index:2;
}

.vs-browser{
  position:relative;
  border-radius:30px;
  padding:14px;
  background:linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  transform-style:preserve-3d;
  transition:transform .18s ease-out;
}

.vs-browser__bar{
  display:flex;
  gap:8px;
  padding:4px 4px 12px;
}

.vs-browser__bar span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.22);
}

.vs-browser__body{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 18% 10%, rgba(89,223,210,.12), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(141,107,255,.12), transparent 30%),
    linear-gradient(180deg, #0b1828 0%, #0d1f31 100%);
  padding:18px;
  min-height:480px;
}

.vs-ui-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:24px;
}

.vs-ui-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.vs-ui-brand__mark{
  width:46px;
  height:46px;
  border-radius:15px;
  display:grid;
  place-items:center;
  font-weight:800;
  letter-spacing:-.03em;
  background:linear-gradient(135deg, rgba(103,168,255,.24), rgba(89,223,210,.16));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 10px 26px rgba(0,0,0,.16);
}

.vs-ui-brand__meta strong{
  display:block;
  font-size:.96rem;
  color:#f2f7ff;
}

.vs-ui-brand__meta span{
  display:block;
  margin-top:2px;
  color:#9fb3c7;
  font-size:.78rem;
}

.vs-ui-nav{
  display:flex;
  gap:8px;
}

.vs-ui-nav span{
  display:block;
  width:44px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
}

.vs-ui-main{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(0, .85fr);
  gap:18px;
  align-items:center;
  margin-bottom:18px;
}

.vs-chip{
  display:inline-flex;
  margin-bottom:14px;
  padding:8px 12px;
  border-radius:999px;
  font-size:.74rem;
  color:#d6e8fa;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.08);
}

.vs-ui-copy h2{
  margin:0 0 12px;
  font-size:2rem;
  line-height:1;
  letter-spacing:-.04em;
  color:#f4f8ff;
}

.vs-ui-copy p{
  margin:0 0 16px;
  color:#aabacc;
  line-height:1.65;
  font-size:.95rem;
  max-width:30ch;
}

.vs-ui-actions{
  display:flex;
  gap:10px;
}

.vs-ui-actions span{
  display:block;
  width:96px;
  height:14px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
}

.vs-ui-actions .is-primary{
  background:linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow:0 0 18px rgba(103,168,255,.22);
}

.vs-phone{
  display:flex;
  justify-content:center;
  align-items:center;
}

.vs-phone__frame{
  width:210px;
  border-radius:28px;
  padding:10px;
  background:linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 22px 46px rgba(0,0,0,.25);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  transform:translateZ(36px);
}

.vs-phone__notch{
  width:42%;
  height:8px;
  margin:2px auto 12px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
}

.vs-phone__screen{
  min-height:250px;
  padding:16px 14px;
  border-radius:20px;
  background:rgba(7,16,28,.56);
  border:1px solid rgba(255,255,255,.06);
}

.vs-phone__avatar{
  width:60px;
  height:60px;
  margin:0 auto 12px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow:0 0 22px rgba(103,168,255,.24);
}

.vs-phone__line{
  width:100%;
  height:10px;
  margin-bottom:10px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
}

.vs-phone__line.short{
  width:70%;
  margin-left:auto;
  margin-right:auto;
}

.vs-phone__icons{
  display:flex;
  justify-content:center;
  gap:10px;
  margin:16px 0 18px;
}

.vs-phone__icons span{
  width:30px;
  height:30px;
  border-radius:10px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.07);
}

.vs-phone__qr{
  width:84px;
  height:84px;
  margin:0 auto;
  border-radius:16px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.14) 50%, transparent 50%),
    linear-gradient(rgba(255,255,255,.14) 50%, transparent 50%);
  background-size:16px 16px;
  background-color:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.08);
}

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

.vs-stat{
  padding:16px 14px;
  border-radius:18px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}

.vs-stat strong{
  display:block;
  margin-bottom:4px;
  font-size:1rem;
  color:#eff6ff;
}

.vs-stat span{
  color:#aab9cc;
  font-size:.84rem;
  line-height:1.35;
}

.vs-hero-card{
  position:absolute;
  z-index:3;
  max-width:230px;
  padding:16px 18px;
  border-radius:22px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 20px 50px rgba(0,0,0,.26);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  animation:vsFloating 6s ease-in-out infinite;
}

.vs-hero-card strong{
  display:block;
  margin-bottom:6px;
  font-size:.96rem;
  color:#f5f9ff;
}

.vs-hero-card small{
  display:block;
  color:#b7c4d5;
  line-height:1.45;
  font-size:.82rem;
}

.vs-hero-card--top{
  top:28px;
  left:-8px;
}

.vs-hero-card--bottom{
  right:-6px;
  bottom:36px;
  animation-delay:-2s;
}

@keyframes vsFloating{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

@keyframes vsGlowFloat{
  0%,100%{ transform:translateY(0) scale(1); }
  50%{ transform:translateY(-12px) scale(1.04); }
}

@media (max-width:1100px){
  .vs-hero{
    min-height:auto;
    padding-top:84px;
  }

  .vs-hero__inner{
    grid-template-columns:1fr;
    gap:34px;
  }

  .vs-hero__content{
    max-width:100%;
    text-align:left;
  }

  .vs-hero__title{
    max-width:11ch;
  }

  .vs-hero__visual{
    min-height:500px;
  }

  .vs-hero-card--top{
    left:8px;
  }

  .vs-hero-card--bottom{
    right:8px;
  }
}

@media (max-width:768px){
  .vs-hero{
    padding:10px 18px 42px;
  }

  .vs-hero__inner{
    gap:26px;
  }

  .vs-hero__eyebrow{
    margin-bottom:16px;
    padding:8px 12px;
    font-size:12px;
  }

  .vs-hero__title{
    max-width:9ch;
    margin-bottom:14px;
    font-size:clamp(2.15rem, 12vw, 3.7rem);
    line-height:.96;
  }

  .vs-hero__title span{
    max-width:12ch;
    margin-top:8px;
  }

  .vs-hero__text{
    margin-bottom:20px;
    max-width:100%;
    font-size:1rem;
    line-height:1.58;
  }

  .vs-hero__actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-bottom:18px;
  }

  .vs-btn{
    min-height:52px;
    width:100%;
    padding:0 16px;
    font-size:.94rem;
  }

  .vs-hero__proof{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    max-width:100%;
    gap:10px;
  }

  .vs-hero__proof span{
    text-align:center;
    padding:10px 10px;
    font-size:.82rem;
  }

  .vs-hero__visual{
    min-height:340px;
  }

  .vs-showcase{
    width:min(100%, 450px);
  }

  .vs-browser{
    border-radius:24px;
    padding:12px;
  }

  .vs-browser__body{
    min-height:380px;
    padding:14px;
  }

  .vs-ui-main{
    grid-template-columns:1fr;
    gap:14px;
  }

  .vs-ui-copy h2{
    font-size:1.4rem;
  }

  .vs-ui-copy p{
    font-size:.9rem;
    max-width:none;
  }

  .vs-phone__frame{
    width:170px;
    transform:none;
  }

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

  .vs-hero-card{
    display:none;
  }
}

@media (max-width:560px){
  .vs-hero__actions{
    grid-template-columns:1fr;
  }

  .vs-hero__title{
    font-size:clamp(2rem, 13vw, 3.4rem);
  }

  .vs-ui-brand__meta{
    display:none;
  }

  .vs-ui-nav span{
    width:28px;
  }

  .vs-phone__frame{
    width:155px;
  }
}