:root{
  --bg:#05060a;
  --bg2:#070914;
  --text:#e9ecff;
  --muted:rgba(233,236,255,.65);
  --muted2:rgba(233,236,255,.45);
  --card:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.10);
  --shadow:0 20px 60px rgba(0,0,0,.55);
  --blue:#2dd4ff;
  --blue2:#5b7cff;
  --vio:#7c5cff;
  --vio2:#4f46e5;
  --radius:18px;
  --radius2:22px;
  --w:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 65% 10%, rgba(124,92,255,.22), transparent 60%),
    radial-gradient(700px 420px at 35% 15%, rgba(45,212,255,.18), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 55%, #05050a 100%);
  overflow-x:hidden;
}

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

.container,.wrap{max-width:var(--w); margin:0 auto; padding:0 20px}

/* star canvas */
#stars{
  position:fixed;
  inset:0;
  width:100vw;
  height:100vh;
  z-index:-1;
  pointer-events:none;
  opacity:.55;
}

/* topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0,0,0,.20);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:68px;
}

.brand{display:flex; align-items:center; gap:12px; font-weight:700; letter-spacing:.2px}
.brand img{border-radius:12px}
.brand .brand-text{display:none}

.nav{display:flex; gap:22px; font-size:14px; color:var(--muted)}
.nav a{padding:10px 8px; border-radius:10px}
.nav a:hover{color:var(--text); background:rgba(255,255,255,.04)}

.actions{display:flex; gap:12px; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:600;
  font-size:14px;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.18)}
.btn:active{transform:translateY(0)}
/* helpers */
.w{width:100%}
.center{text-align:center}


.btn.primary{
  border-color: rgba(124,92,255,.45);
  background: linear-gradient(180deg, rgba(124,92,255,.95), rgba(99,102,241,.85));
  box-shadow: 0 18px 45px rgba(124,92,255,.18);
}
.btn.primary:hover{border-color: rgba(124,92,255,.65)}

.burger{display:none}
.mobile{
  display:none;
  padding:12px 0 18px;
}
.mobile a{display:block; padding:10px 12px; border-radius:12px; color:var(--muted)}
.mobile a:hover{background:rgba(255,255,255,.04); color:var(--text)}

/* hero */
.hero{padding:72px 0 30px}
.hero .center{max-width:860px; margin:0 auto; text-align:center}
.hero .pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  color:var(--muted);
  font-size:13px;
  margin:0 0 22px;
}
.hero .pill .dot{
  width:26px; height:26px; border-radius:10px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}

.h1{
  font-size:56px;
  line-height:1.02;
  letter-spacing:-.8px;
  margin:0;
}
.h1 .accent{
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:18px auto 26px;
  max-width:660px;
  color:var(--muted);
  font-size:18px;
  line-height:1.55;
}
.hero .cta{display:flex; gap:14px; justify-content:center; flex-wrap:wrap}

.stats{
  display:flex;
  gap:52px;
  justify-content:center;
  margin:34px 0 0;
  flex-wrap:wrap;
}
.stat{min-width:140px; text-align:center}
.stat .n{font-size:28px; font-weight:800; color:rgba(123,92,255,.95)}
.stat .t, .stat .l{font-size:12px; color:var(--muted2); margin-top:6px}

/* section */
.section{padding:64px 0}
.section .title{font-size:34px; margin:0 0 10px; text-align:center; letter-spacing:-.3px}
.section .subtitle{margin:0 auto 30px; text-align:center; color:var(--muted); max-width:760px; line-height:1.55}
.note{margin:16px auto 0; color:var(--muted2); max-width:760px; text-align:center; font-size:12px}
.center{text-align:center; margin-top:18px}

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

.card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,knowingly,.05);
}

/* fix: background typo fallback */
.card{background: rgba(255,255,255,.05); box-shadow: 0 25px 70px rgba(0,0,0,.25)}
.card.pad{padding:22px}

.feature{
  min-height:150px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;
}
.feature .icon{opacity:.9; margin-bottom:10px; font-size:18px}
.feature h3{margin:0 0 10px; font-size:18px}
.feature p{margin:0; color:var(--muted); font-size:14px; line-height:1.55}

/* servers */
.server{padding:20px}
.server .top{display:flex; gap:12px; align-items:center; margin-bottom:14px}
.server .flag{font-size:20px}
.server .country{font-weight:700}
.server .city{color:var(--muted2); font-size:12px; margin-top:2px}

.server .metrics{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:8px;
  margin:12px 0 10px;
}
.metric{display:flex; flex-direction:column; gap:4px; text-align:center}
.metric .val{font-weight:800; color:rgba(34,197,94,.85)}
.metric .lbl{font-size:11px; color:var(--muted2); text-transform:uppercase; letter-spacing:.6px}

.server .status{display:flex; gap:10px; align-items:center; color:rgba(34,197,94,.9); font-size:13px}
.server .status .bullet{width:7px; height:7px; border-radius:50%; background:rgba(34,197,94,.9)}

/* download grid (5 columns like reference) */
.dl-grid{grid-template-columns:repeat(5, 1fr)}

.dl{ text-align:center }
.dl .bigicon{font-size:34px; opacity:.95}
.dl .os{font-weight:800; font-size:18px; margin-top:14px}
.dl .meta{color:var(--muted2); font-size:12px; margin:8px 0 16px}

/* FAQ */
.faq{max-width:840px; margin:0 auto}
.faq-item{margin:12px 0}
.faq-q{
  width:100%;
  text-align:left;
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:18px 20px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:600;
  cursor:pointer;
}
.faq-q:hover{background:rgba(255,255,255,.06)}
.faq-a{max-height:0; overflow:hidden; transition:max-height .25s ease}
.faq-a-inner{padding:0 20px 16px; color:var(--muted); line-height:1.6}
.faq-item.open .faq-a{max-height:600px}
.faq-item.open .plus{transform:rotate(45deg)}
.plus{transition:transform .15s ease; font-size:18px; color:var(--muted2); flex:0 0 auto}

/* CTA band */
.band{
  margin:60px 0 0;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.10), transparent 40%),
    radial-gradient(circle at 70% 40%, rgba(255,255,255,.08), transparent 45%),
    linear-gradient(90deg, rgba(91,124,255,.65), rgba(124,92,255,.65));
  position:relative;
  overflow:hidden;
}
.band:before{
  content:"";
  position:absolute;
  inset:-60px;
  opacity:.25;
  background-image: radial-gradient(rgba(255,255,255,.55) 1px, transparent 1px);
  background-size: 18px 18px;
  transform:rotate(-8deg);
}
.band .inner{
  position:relative;
  padding:46px 20px;
  text-align:center;
}
.band h2{margin:0 0 10px; font-size:32px; letter-spacing:-.3px}
.band p{margin:0 0 18px; color:rgba(255,255,255,.80)}

/* footer */
.footer{padding:46px 0 28px; color:var(--muted)}
.footer .cols{
  display:grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap:24px;
}
.footer h4{margin:0 0 12px; color:var(--text)}
.footer a{color:var(--muted); display:block; padding:6px 0}
.footer a:hover{color:var(--text)}
.footer .fine{margin-top:22px; padding-top:18px; border-top:1px solid rgba(255,255,255,.08); font-size:12px; color:rgba(233,236,255,.45); text-align:center}

/* page */
.page-hero{padding:54px 0 18px}
.page-hero .h{font-size:38px; text-align:center; margin:0}
.page-hero .p{max-width:760px; margin:14px auto 0; text-align:center; color:var(--muted); line-height:1.55}

.kv{max-width:980px; margin:0 auto}
.kv .grid2{display:grid; grid-template-columns: repeat(3,1fr); gap:18px}

.price{text-align:center}
.price .name{font-weight:800; font-size:18px; margin:0}
.price .cost{font-size:34px; font-weight:900; margin:14px 0 6px; color:rgba(123,92,255,.95)}
.price .desc{color:var(--muted); font-size:13px; line-height:1.5; margin:0 0 18px}
.price ul{list-style:none; padding:0; margin:0 0 18px; color:var(--muted); font-size:13px}
.price li{padding:6px 0}

.steps{max-width:980px; margin:0 auto}
.steps .grid2{display:grid; grid-template-columns: repeat(2,1fr); gap:18px}
.step h3{margin:0 0 10px}
.step p{margin:0; color:var(--muted); line-height:1.6}

.code{
  margin-top:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  padding:12px 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color:rgba(233,236,255,.85);
  font-size:12px;
  overflow:auto;
}

/* responsive */
@media (max-width: 1100px){
  .dl-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width: 980px){
  .grid{grid-template-columns: repeat(2, 1fr)}
  .footer .cols{grid-template-columns: 1fr 1fr}
  .kv .grid2{grid-template-columns: repeat(2,1fr)}
  .steps .grid2{grid-template-columns: 1fr}
  .dl-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 760px){
  .nav{display:none}
  .actions{display:none}
  .burger{display:block}
  .mobile.show{display:block}
  .h1{font-size:42px}
  .grid{grid-template-columns: 1fr}
  .footer .cols{grid-template-columns: 1fr}
  .kv .grid2{grid-template-columns: 1fr}
  .dl-grid{grid-template-columns:1fr}
}


/* --- SEO-safe typography (keeps hero aesthetic) --- */
.subtitle.seo-intro{
  margin:14px auto 0;
  max-width:760px;
  font-size:16px;
  line-height:1.55;
  color:var(--muted);
  opacity:.92;
}
.seo-block{padding:56px 0 20px}
.seo-block .h2{margin:0 auto 18px; max-width:920px}
.seo-text{
  margin:0 auto;
  max-width:920px;
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
}
.seo-text p{margin:0 0 12px}
@media (max-width: 720px){
  .subtitle.seo-intro{font-size:15px}
  .seo-block{padding:40px 0 10px}
}
