:root{
  --bg0:#070a14;
  --bg1:#06081b;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.10);
  --line: rgba(160,190,255,0.18);
  --text: #eaf3ff;
  --muted: rgba(234,243,255,0.74);
  --muted2: rgba(234,243,255,0.56);

  --cyan: #00f0ff;
  --magenta: #ff52dc;
  --lime: #00dcae;
  --gold: #ffd15a;

  --shadow: 0 18px 60px rgba(0,0,0,0.55);
  --shadow2: 0 12px 40px rgba(0,0,0,0.45);

  --radius: 18px;
  --radius-lg: 26px;

  --max: 1160px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% -10%, rgba(0,240,255,0.18), transparent 60%),
              radial-gradient(900px 500px at 80% 5%, rgba(255,82,220,0.15), transparent 60%),
              radial-gradient(900px 500px at 30% 90%, rgba(0,220,174,0.12), transparent 60%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  color: var(--text);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,10,20,0.72);
  border-bottom: 1px solid var(--line);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 180px;
}
.brand img{ width:80px; margin:0 8px 0 2px; border-radius: 12px; box-shadow: 0 10px 28px rgba(0,0,0,0.45); }
.brand b{ letter-spacing: 0.4px; font-size: 16px; }
.brand span{ display:block; font-size:12px; color: var(--muted2); margin-top:2px; }

.navlinks{
  display:flex;
  align-items:center;
  gap:18px;
  font-size: 14px;
  color: var(--muted);
}
.navlinks a{
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.navlinks a:hover{
  border-color: rgba(0,240,255,0.25);
  background: rgba(0,240,255,0.06);
  color: var(--text);
}

.cta{
  display:flex;
  align-items:center;
  gap:10px;
}

.langWrap{
  position:relative;
}
.langWrap:after{
  content:"▾";
  position:absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(234,243,255,0.65);
  pointer-events:none;
  font-size: 12px;
}
.langSelect{
  border: 1px solid rgba(234,243,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  padding: 10px 32px 10px 12px;
  border-radius: 14px;
  font-size: 14px;
  cursor:pointer;
  appearance: none;
  box-shadow: var(--shadow2);
}
.langSelect:hover{
  border-color: rgba(0,240,255,0.28);
  background: rgba(255,255,255,0.08);
}
.langSelect:focus{
  outline:none;
  border-color: rgba(0,240,255,0.35);
  box-shadow: 0 0 0 4px rgba(0,240,255,0.12);
}

.btn{
  border: 1px solid rgba(0,240,255,0.35);
  background: rgba(0,240,255,0.08);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  cursor:pointer;
  box-shadow: var(--shadow2);
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.btn:hover{ transform: translateY(-1px); background: rgba(0,240,255,0.12); border-color: rgba(0,240,255,0.55); }
.btn:active{ transform: translateY(0px); }

.btn.primary{
  border-color: rgba(255,82,220,0.55);
  background: rgba(255,82,220,0.12);
}
.btn.primary:hover{
  background: rgba(255,82,220,0.18);
  border-color: rgba(255,82,220,0.70);
}

.btn.ghost{
  border-color: rgba(234,243,255,0.20);
  background: rgba(255,255,255,0.06);
}
.btn.ghost:hover{
  background: rgba(255,255,255,0.09);
  border-color: rgba(234,243,255,0.28);
}

.hamburger{
  display:none;
  border: 1px solid rgba(234,243,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 14px;
  cursor:pointer;
}
.hamburger svg{ width: 18px; height: 18px; }

.hero{
  padding: 46px 0 22px 0;
  position:relative;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items:stretch;
}

.heroCard{
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  overflow:hidden;
  position:relative;
}

.kicker{
  display:flex;
  align-items:center;
  gap:12px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.2px;
  flex-wrap:wrap;
}
.kicker .dot{
  width:10px; height:10px; border-radius:10px;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(0,240,255,0.65);
}
.kicker .pill{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.20);
}

h1{
  margin: 16px 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.6px;
}
h1 em{
  font-style:normal;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.lead{
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 60ch;
}

.heroActions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.badges{
  margin-top: 16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.badge{
  border: 1px solid rgba(234,243,255,0.14);
  background: rgba(0,0,0,0.22);
  border-radius: 999px;
  padding: 8px 10px;
  display:flex;
  gap: 10px;
  align-items:center;
  color: var(--muted);
  font-size: 13px;
}
.badge i{
  width: 10px; height:10px; border-radius: 10px;
  background: var(--magenta);
  box-shadow: 0 0 18px rgba(255,82,220,0.55);
}
.badge i.cyan{ background: var(--cyan); box-shadow: 0 0 18px rgba(0,240,255,0.55); }
.badge i.lime{ background: var(--lime); box-shadow: 0 0 18px rgba(0,220,174,0.55); }
.badge i.gold{ background: var(--gold); box-shadow: 0 0 18px rgba(255,209,90,0.55); }

.heroArt{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.heroArt img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
}

.heroArt .label{
  position:absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  font-size: 13px;
  color: var(--muted);
  max-width: 90%;
}

.section{
  padding: 56px 0;
}
.section h2{
  margin:0;
  font-size: 28px;
  letter-spacing: -0.3px;
}
.section p.sub{
  margin: 10px 0 0;
  color: var(--muted);
  line-height:1.6;
  max-width: 74ch;
}

.grid3{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid2{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
}
.card:hover{
  border-color: rgba(0,240,255,0.30);
  background: rgba(255,255,255,0.06);
}

.card .icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.22);
  padding: 10px;
}
.card h3{
  margin: 14px 0 8px;
  font-size: 18px;
}
.card p{
  margin:0;
  color: var(--muted);
  line-height:1.55;
  font-size: 14px;
}

.inlineList{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.chip{
  border: 1px solid rgba(234,243,255,0.16);
  background: rgba(0,0,0,0.24);
  border-radius: 999px;
  padding: 9px 11px;
  color: var(--muted);
  font-size: 13px;
}

.split{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items:stretch;
  margin-top: 18px;
}

.figure{
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  overflow:hidden;
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}
.figure img{ width:100%; height:100%; object-fit: cover; }

.figure .caption{
  padding: 10px 12px;
  color: rgba(234,243,255,0.55);
  font-size: 13px;
  border-top: 1px solid rgba(160,190,255,0.12);
  background: rgba(0,0,0,0.18);
}

.steps{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.step{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.18);
  padding: 14px;
  display:flex;
  gap: 12px;
}
.step .num{
  width: 32px; height: 32px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(0,240,255,0.35);
  background: rgba(0,240,255,0.09);
  box-shadow: 0 0 26px rgba(0,240,255,0.20);
  font-weight: 700;
}
.step b{ display:block; }
.step div{ color: var(--muted); font-size: 14px; line-height: 1.55; }
.step div b{ color: var(--text); margin-bottom: 2px; }

.compare{
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow:hidden;
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow2);
}
.compare table{ width:100%; border-collapse: collapse; }
.compare th, .compare td{
  padding: 14px 14px;
  border-bottom: 1px solid rgba(160,190,255,0.12);
  vertical-align: top;
  font-size: 14px;
}
.compare th{
  text-align:left;
  background: rgba(0,0,0,0.25);
  color: rgba(234,243,255,0.92);
  font-weight: 650;
}
.compare tr:last-child td{ border-bottom:none; }
.compare .good{
  color: rgba(234,243,255,0.98);
}
.compare .good:before{
  content:"✓";
  margin-right: 8px;
  color: var(--lime);
}
.compare .bad{
  color: var(--muted);
}
.compare .bad:before{
  content:"⚠";
  margin-right: 8px;
  color: var(--gold);
}
.compare .head{
  background: linear-gradient(90deg, rgba(0,240,255,0.10), rgba(255,82,220,0.08));
}

.pricing{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.plan{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.plan.featured{
  border-color: rgba(255,82,220,0.40);
  background: linear-gradient(180deg, rgba(255,82,220,0.14), rgba(255,255,255,0.05));
}
.plan h3{ margin: 0; font-size: 18px; }
.plan .tag{
  display:inline-flex;
  gap:10px;
  align-items:center;
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}
.plan .tag i{
  width:10px; height:10px; border-radius: 10px; background: var(--magenta);
  box-shadow: 0 0 18px rgba(255,82,220,0.55);
}
.plan .price{
  margin-top: 14px;
  font-size: 26px;
  letter-spacing: -0.3px;
}
.plan .price span{ color: var(--muted2); font-size: 13px; margin-left: 6px; }
.plan ul{
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height:1.65;
  font-size: 14px;
}
.plan ul li{ margin: 6px 0; }
.plan .planCta{ margin-top: 16px; display:flex; gap:10px; flex-wrap:wrap; }

.contactGrid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contactCard{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.contactCard h3{ margin:0; font-size: 18px; }
.contactCard p{ margin: 10px 0 0; color: var(--muted); line-height: 1.6; }

.form{
  display:grid;
  gap: 10px;
  margin-top: 12px;
}
.field label{
  display:block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(234,243,255,0.18);
  background: rgba(0,0,0,0.28);
  color: var(--text);
  outline:none;
}
.field input:focus, .field textarea:focus, .field select:focus{
  border-color: rgba(0,240,255,0.35);
  box-shadow: 0 0 0 4px rgba(0,240,255,0.12);
}
.field textarea{ min-height: 120px; resize: vertical; }

.smallRow{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
}
.smallRow code{
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(234,243,255,0.18);
  background: rgba(0,0,0,0.25);
}

.footer{
  border-top: 1px solid rgba(160,190,255,0.12);
  padding: 22px 0 40px;
  color: var(--muted2);
  font-size: 13px;
}
.footerGrid{
  display:flex;
  justify-content:space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer a{ color: rgba(234,243,255,0.74); text-decoration: underline; }
.footer a:hover{ color: rgba(234,243,255,0.95); }
.note{ max-width: 76ch; line-height: 1.55; }

.toast{
  position:fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,0.72);
  border: 1px solid rgba(234,243,255,0.18);
  color: rgba(234,243,255,0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transform: translateY(14px);
  opacity:0;
  pointer-events:none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.toast.show{ opacity:1; transform: translateY(0); }

@media (max-width: 980px){
  .heroGrid{ grid-template-columns: 1fr; }
  .heroArt{ height: 360px; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .contactGrid{ grid-template-columns: 1fr; }
}

@media (max-width: 840px){
  .navlinks{ display:none; }
  .hamburger{ display:inline-flex; align-items:center; justify-content:center; }
  .navlinks.mobile{
    display:flex;
    position:absolute;
    left: 0;
    right: 0;
    top: 70px;
    flex-direction:column;
    gap: 6px;
    padding: 12px;
    border-bottom: 1px solid rgba(160,190,255,0.14);
    background: rgba(7,10,20,0.92);
  }
  .navlinks.mobile a{ width:100%; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .btn{ transition:none; }
  .toast{ transition:none; }
}
