:root{
  --bg:#0b1220;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.10);
  --text:#e9eefc;
  --muted:#a9b4d0;
  --line: rgba(255,255,255,.12);
  --shadow: 0 18px 45px rgba(0,0,0,.45);
  --r:18px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 10% 0%, rgba(124,92,255,.22), transparent 60%),
              radial-gradient(1000px 700px at 90% 10%, rgba(0,203,255,.15), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.9}
img{max-width:100%;display:block}

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

.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0
}

.header{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(11,18,32,.6);
  border-bottom:1px solid var(--line);
}
.header__inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0}

.brand{display:flex;gap:10px;align-items:center;font-weight:700;letter-spacing:.2px}
.brand__mark{
  width:36px;height:36px;border-radius:12px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(124,92,255,1), rgba(0,203,255,1));
  box-shadow: var(--shadow);
}
.brand__name{font-size:16px}

.nav__toggle{
  display:none;border:1px solid var(--line);background:var(--panel);
  border-radius:12px;padding:10px;cursor:pointer
}
.nav__hamburger{
  width:18px;height:2px;background:var(--text);display:block;position:relative
}
.nav__hamburger::before,.nav__hamburger::after{
  content:"";position:absolute;left:0;width:18px;height:2px;background:var(--text)
}
.nav__hamburger::before{top:-6px}
.nav__hamburger::after{top:6px}

.nav__menu{display:flex;gap:18px;align-items:center;list-style:none;margin:0;padding:0}
.nav__menu a{color:var(--muted);font-weight:500}
.nav__menu a:hover{color:var(--text)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:12px 16px;border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(124,92,255,1), rgba(0,203,255,1));
  color:#081021;font-weight:700;box-shadow: var(--shadow);
}
.btn--ghost{
  background: transparent;
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn--small{padding:10px 14px;border-radius:12px}

.pill{
  display:inline-block;
  padding:6px 10px;border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:13px;
}

.hero{position:relative;padding:66px 0 30px;overflow:hidden}
.hero__grid{display:grid;grid-template-columns:1.25fr .9fr;gap:24px;align-items:center}
.hero h1{font-size:46px;line-height:1.1;margin:12px 0 12px}
.hero__sub{font-size:18px;color:var(--muted);max-width:58ch}
.grad{
  background: linear-gradient(135deg, rgba(124,92,255,1), rgba(0,203,255,1));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero__cta{display:flex;gap:12px;flex-wrap:wrap;margin:18px 0 22px}

.trust{display:flex;gap:14px;flex-wrap:wrap;margin-top:18px}
.trust__item{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:16px;padding:12px 14px;
  min-width:160px;
}
.trust__num{font-weight:700}
.trust__txt{color:var(--muted);font-size:13px}

.hero__card{position:relative}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: var(--r);
  padding:18px;
}
.card--glow{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
}
.card__top{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px}
.badge{
  display:inline-flex;align-items:center;
  padding:6px 10px;border-radius:999px;
  background: rgba(0,203,255,.12);
  border:1px solid rgba(0,203,255,.22);
  color:#bdf6ff;
  font-size:12px;font-weight:700;
}
.chip{
  padding:6px 10px;border-radius:999px;
  background: rgba(124,92,255,.10);
  border:1px solid rgba(124,92,255,.22);
  color:#d9d2ff;
  font-size:12px;font-weight:600;
}

.checklist{padding-left:18px;margin:10px 0 0}
.checklist li{margin:7px 0;color:var(--muted)}
.card__bottom{display:flex;justify-content:space-between;align-items:center;margin-top:14px}
.link{color:#cfefff;font-weight:700}
.link:hover{text-decoration:underline}

.hero__bg{
  position:absolute;inset:auto -200px -380px -200px;height:520px;
  background: radial-gradient(closest-side, rgba(124,92,255,.20), transparent 70%),
              radial-gradient(closest-side, rgba(0,203,255,.12), transparent 70%);
  filter: blur(10px);
  pointer-events:none;
}

.strip{border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:rgba(255,255,255,.02)}
.strip__inner{display:flex;align-items:center;gap:14px;padding:14px 0;flex-wrap:wrap}
.strip__tags{display:flex;gap:10px;flex-wrap:wrap}
.tag{
  padding:6px 10px;border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:13px;
}

.section{padding:54px 0}
.section__head{margin-bottom:18px}
.section__head h2{font-size:32px;margin:0 0 6px}
.muted{color:var(--muted)}
.small{font-size:13px}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace}

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

.bullets{padding-left:18px;margin:10px 0 0}
.bullets li{margin:7px 0;color:var(--muted)}

.callout{
  margin-top:18px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
  border:1px solid rgba(0,203,255,.18);
  background: rgba(0,203,255,.06);
  border-radius: var(--r);
  padding:18px;
}

.project__img{
  height:150px;border-radius:14px;margin-bottom:12px;
  border:1px dashed rgba(255,255,255,.20);
  background: rgba(255,255,255,.03);
  display:grid;place-items:center;color:var(--muted);font-size:13px;
}
.project__meta{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}

.price__num{font-size:34px;font-weight:800;margin:6px 0 6px}
.price--featured{
  border:1px solid rgba(124,92,255,.28);
  background: linear-gradient(180deg, rgba(124,92,255,.12), rgba(0,203,255,.06));
}

.quote blockquote{margin:0;color:var(--text);font-weight:600}
.quote figcaption{margin-top:10px}

.faq{display:grid;gap:12px}
details summary{cursor:pointer;font-weight:700}
details p{margin:10px 0 0}

.contact{display:grid;grid-template-columns:1.2fr .8fr;gap:16px}
.form label{display:grid;gap:6px;margin-bottom:12px}
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
input:focus,select:focus,textarea:focus{border-color:rgba(0,203,255,.45)}
.sep{border:0;border-top:1px solid var(--line);margin:14px 0}

.footer{border-top:1px solid var(--line);padding:22px 0;background:rgba(0,0,0,.10)}
.footer__inner{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.footer__links{display:flex;gap:14px}
.footer__links a{color:var(--muted)}
.footer__links a:hover{color:var(--text)}

@media (max-width: 920px){
  .hero__grid{grid-template-columns:1fr}
  .hero h1{font-size:38px}
  .contact{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
}
@media (max-width: 720px){
  .nav__toggle{display:inline-flex}
  .nav__menu{
    position:absolute;right:20px;top:64px;
    flex-direction:column;align-items:stretch;
    width:min(320px, calc(100vw - 40px));
    padding:12px;
    background: rgba(11,18,32,.92);
    border:1px solid var(--line);
    border-radius:16px;
    display:none;
  }
  .nav__menu.open{display:flex}
  .grid2{grid-template-columns:1fr}
}