:root{
  --bg:#070a12;
  --text:#eef2ff;
  --muted:rgba(238,242,255,.72);
  --muted2:rgba(238,242,255,.55);
  --line:rgba(255,255,255,.12);
  --card:rgba(255,255,255,.06);
  --shadow:0 24px 70px rgba(0,0,0,.45);
  --accent:#6d28d9;
  --accent2:#22d3ee;
  --radius:18px;
  --radius2:22px;
  --max: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, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 560px at 12% 0%, rgba(109,40,217,.28), transparent 60%),
    radial-gradient(800px 520px at 88% 10%, rgba(34,211,238,.18), transparent 55%),
    var(--bg);
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.grad{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.topbar{
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}
.topbar__inner{
  height:44px;
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted2);
  font-size:13px;
}
.topbar__dot{
  width:8px;height:8px;border-radius:999px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
}
.topbar__link{
  margin-left:auto;
  color:rgba(238,242,255,.9);
  font-weight:800;
}
.topbar__link:hover{text-decoration:underline}

.header{
  position:sticky; top:0; z-index:30;
  background:rgba(7,10,18,.58);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header__inner{
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:900}
.brand__mark{
  width:14px;height:14px;border-radius:999px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  box-shadow:0 0 0 4px rgba(255,255,255,.06);
}
.brand__text{letter-spacing:.2px}
.brand--small .brand__text{font-size:14px}
.brand__logo{height:22px; width:auto; display:block}

.nav{display:flex; align-items:center; gap:14px}
.nav__link{
  color:var(--muted2);
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
  transition: background .2s ease, color .2s ease;
}
.nav__link:hover{color:var(--text); background:rgba(255,255,255,.06)}
.nav__link.is-active{color:var(--text); background:rgba(255,255,255,.08)}
.nav__cta{
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(135deg, rgba(109,40,217,.35), rgba(34,211,238,.18));
  color:var(--text);
}
.nav__cta:hover{background:linear-gradient(135deg, rgba(109,40,217,.45), rgba(34,211,238,.24))}
.nav__toggle{
  display:none;
  width:42px;height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  cursor:pointer;
}
.nav__toggle span{
  display:block;
  width:18px;height:2px;
  background:rgba(255,255,255,.85);
  margin:5px auto;
  border-radius:999px;
}

.mobile{
  display:none;
  position:fixed;
  inset:74px 0 auto 0;
  height:calc(100vh - 74px);
  background:rgba(2,6,12,.68);
  backdrop-filter:blur(12px);
}
.mobile.is-open{display:block}
.mobile__panel{padding:14px 0; display:flex; flex-direction:column; gap:10px}
.mobile__link{
  padding:14px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
}
.mobile__cta{
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(135deg, rgba(109,40,217,.45), rgba(34,211,238,.22));
}

.hero{padding:64px 0 34px}
.hero__grid{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:22px;
  align-items:center;
}
.eyebrow{
  display:inline-flex; align-items:center;
  gap:10px;
  color:var(--muted2);
  font-size:13px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
}
h1{
  margin:14px 0 14px;
  font-size:44px;
  line-height:1.06;
  letter-spacing:-.9px;
}
.lead{
  margin:0 0 20px;
  color:var(--muted);
  line-height:1.75;
  max-width:60ch;
}

.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:16px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:900;
  font-size:14px;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.22)}
.btn:active{transform:translateY(0)}
.btn--primary{
  border-color:transparent;
  background:linear-gradient(135deg, rgba(109,40,217,1), rgba(34,211,238,.78));
  box-shadow:0 18px 40px rgba(109,40,217,.22);
}
.btn--primary:hover{background:linear-gradient(135deg, rgba(109,40,217,1), rgba(34,211,238,.92))}
.btn--ghost{background:rgba(255,255,255,.05)}

.hero__proof{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:12px;
}
.stat{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  padding:12px;
}
.stat__kpi{font-weight:950; letter-spacing:-.2px}
.stat__txt{color:var(--muted2); font-size:12px; margin-top:2px}

.trustline{margin-top:14px; display:flex; flex-wrap:wrap; gap:10px; align-items:center}
.trustline__label{color:var(--muted2); font-size:13px}
.chip{
  font-size:13px;
  padding:8px 10px;
  border-radius:999px;
  border:1px dashed rgba(255,255,255,.18);
  background:rgba(255,255,255,.03);
  color:rgba(238,242,255,.88);
}

.hero__visual .visualCard{
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}
.illus{width:100%; height:auto; display:block}
.floating{
  position:absolute;
  bottom:14px; left:14px; right:14px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.floating__badge{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(7,10,18,.45);
  color:rgba(238,242,255,.92);
  font-size:12px;
  font-weight:900;
}

.miniRow{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.miniCard{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  padding:12px;
}
.miniCard strong{display:block}
.miniCard span{display:block; color:var(--muted2); font-size:12px; margin-top:2px}

.section{padding:56px 0}
.section--alt{
  background:rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{max-width:78ch; margin-bottom:22px}
.section__head h2{margin:0 0 10px; font-size:30px; letter-spacing:-.5px}
.section__head p{margin:0; color:var(--muted); line-height:1.7}

.grid{display:grid; gap:14px}
.cards{grid-template-columns:repeat(2, 1fr)}
.card{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  padding:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}
.card--accent{
  background:linear-gradient(135deg, rgba(109,40,217,.18), rgba(34,211,238,.10));
  border-color:rgba(255,255,255,.16);
}
.icon{
  width:44px;height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(135deg, rgba(109,40,217,.25), rgba(34,211,238,.12));
  margin-bottom:12px;
}
.icon svg{width:22px;height:22px; color:rgba(255,255,255,.92)}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0 0 12px; color:var(--muted); line-height:1.65}
.list{margin:0; padding-left:18px; color:var(--muted2); line-height:1.7}
.list li{margin:6px 0}
.link{display:inline-flex; font-weight:950}
.link:hover{text-decoration:underline}

.ctaStrip{
  margin-top:16px;
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.ctaStrip strong{display:block}
.ctaStrip span{display:block; color:var(--muted2); font-size:13px; margin-top:2px}

.steps{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.step{
  display:flex;
  gap:12px;
  padding:16px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}
.step__num{
  width:34px;height:34px;border-radius:14px;
  display:grid;place-items:center;
  font-weight:950;
  background:linear-gradient(135deg, rgba(109,40,217,.9), rgba(34,211,238,.55));
}
.step__body h3{margin:0 0 6px; font-size:16px}
.step__body p{margin:0; color:var(--muted); line-height:1.65}

.results{grid-template-columns:repeat(3,1fr)}
.result{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  padding:16px;
}
.result h3{margin:0 0 8px}
.result p{margin:0; color:var(--muted); line-height:1.7}

.proof{
  margin-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.proof__card{
  flex:1;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  padding:16px;
}
.proof__card p{margin:6px 0 0; color:var(--muted); line-height:1.65}

.faq{
  display:grid;
  gap:10px;
  max-width:920px;
}
.faq__item{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  padding:12px 14px;
}
.faq__item summary{
  cursor:pointer;
  font-weight:950;
  color:rgba(238,242,255,.95);
}
.faq__item p{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.7;
}

.contact{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:14px;
  align-items:start;
}
.contact__copy h2{margin:0 0 10px; font-size:30px}
.contact__copy p{margin:0 0 14px; color:var(--muted); line-height:1.7}

.contact__meta{display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin:14px 0}
.meta{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  padding:12px;
}
.meta strong{display:block}
.meta span{display:block; color:var(--muted2); font-size:12px; margin-top:2px}

.contact__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}

.preset{
  margin:10px 0 14px;
  padding:12px;
  border-radius:14px;
  border:1px dashed rgba(255,255,255,.18);
  background:rgba(255,255,255,.04);
}
.muted{color:var(--muted)}
.small{font-size:12px}

.float{
  position:fixed;
  right:18px; bottom:18px;
  z-index:40;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(135deg, rgba(109,40,217,.92), rgba(34,211,238,.62));
  box-shadow:0 18px 40px rgba(0,0,0,.28);
}
.float__icon svg{width:20px;height:20px;color:#fff}
.float__text{font-weight:950; font-size:13px; color:#fff}

.footer{padding:28px 0 40px}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:18px;
}
.footer__links{display:flex; gap:14px; flex-wrap:wrap; color:var(--muted2)}
.footer__links a:hover{text-decoration:underline}
.footer__bottom{margin-top:10px}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  h1{font-size:38px}
  .hero__proof{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .results{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .contact__meta{grid-template-columns:1fr}
  .proof{flex-direction:column; align-items:stretch}
}
@media (max-width: 860px){
  .nav{display:none}
  .nav__toggle{display:block}
}
