:root{
  --bg:#0b1220;
  --panel:#0f1a33;
  --panel2:#0c1630;
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --muted2:rgba(234,240,255,.55);
  --line:rgba(234,240,255,.12);
  --accent:#6ea8ff;
  --accent2:#8b5cf6;
  --ok:#34d399;
  --shadow: 0 16px 50px rgba(0,0,0,.35);
  --radius:16px;
  --radius2:22px;
  --max:1120px;
}
.logo {
  height: 100px;
  width: auto;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: radial-gradient(1100px 650px at 12% 10%, rgba(110,168,255,.18), transparent 55%),
              radial-gradient(900px 600px at 85% 18%, rgba(139,92,246,.16), transparent 55%),
              linear-gradient(180deg, var(--bg), #070b14 75%);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.95}
img{max-width:100%; display:block}

.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#111; border:1px solid var(--line); border-radius:10px; z-index:9999}

.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 */
.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.55);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__mark{
  width:28px; height:28px; display:grid; place-items:center;
  border-radius:10px;
  background: linear-gradient(135deg, rgba(110,168,255,.22), rgba(139,92,246,.22));
  border:1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.brand__name{font-weight:700; letter-spacing:.2px}

.nav{display:flex; align-items:center; gap:14px}
.nav__toggle{
  display:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}
.nav__burger{
  width:18px; height:2px; background: var(--text); position:relative; display:block;
}
.nav__burger::before,.nav__burger::after{
  content:""; position:absolute; left:0; width:18px; height:2px; background: var(--text);
}
.nav__burger::before{top:-6px}
.nav__burger::after{top:6px}

.nav__menu{display:flex; align-items:center; gap:18px}
.nav__link{color:var(--muted); font-weight:500}
.nav__link:hover{color:var(--text)}

/* Buttons */
.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,.16);
  background: linear-gradient(135deg, rgba(110,168,255,.25), rgba(139,92,246,.25));
  box-shadow: var(--shadow);
  font-weight:700;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}
.btn--ghost{
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  box-shadow: none;
}
.btn--small{padding:10px 12px; border-radius:12px; font-weight:700}
.btn--wide{width:100%}

/* Hero */
.hero{
  position:relative;
  padding:60px 0 20px;
  overflow:hidden;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:stretch;
}
.hero h1{
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.05;
  margin:14px 0 14px;
  letter-spacing:-.6px;
}
.hero__lead{
  color:var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.hero__badges{
  margin:18px 0 0; padding:0; list-style:none;
  display:flex; gap:14px; flex-wrap:wrap; color:var(--muted);
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius:999px;
  color:var(--muted);
  width:fit-content;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.2) 35%, rgba(110,168,255,.9));
  box-shadow: 0 0 0 4px rgba(110,168,255,.12);
}

.hero__card{display:flex}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: var(--radius2);
  padding:18px;
}
.glass{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  box-shadow: var(--shadow);
}
.card__kicker{color:var(--muted2); margin:0 0 6px}
.card__title{margin:0 0 14px; letter-spacing:-.2px}
.card__footer{margin-top:14px}
.muted{color:var(--muted)}
.tiny{font-size:.86rem}

.checklist{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.checklist--compact{gap:8px}
.check{
  display:inline-grid; place-items:center;
  width:22px; height:22px;
  border-radius:8px;
  background: rgba(52,211,153,.12);
  border:1px solid rgba(52,211,153,.25);
  margin-right:10px;
  color: var(--ok);
  font-weight:800;
}

.hero__bg{
  position:absolute; inset:auto -40% -50% -40%;
  height:420px;
  background: radial-gradient(circle at 30% 30%, rgba(110,168,255,.16), transparent 55%),
              radial-gradient(circle at 70% 10%, rgba(139,92,246,.14), transparent 55%);
  filter: blur(2px);
  pointer-events:none;
}

/* Trust */
.trust{
  padding:14px 0 30px;
}
.trust__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px; flex-wrap:wrap;
}
.trust__stats{display:flex; gap:12px; flex-wrap:wrap}
.stat{
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 16px;
  padding:12px 14px;
  min-width: 160px;
}
.stat__num{margin:0; font-weight:800}
.stat__label{margin:2px 0 0; color:var(--muted2); font-size:.92rem}

/* Sections */
.section{padding:10px 0}
.section--alt{background: rgba(255,255,255,.03); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section__head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:22px; flex-wrap:wrap}
.section__head h2{margin:0; font-size: clamp(24px, 2.2vw, 34px); letter-spacing:-.4px}
.section__head p{margin:0; max-width:72ch}

.grid{display:grid; gap:14px}
.grid--3{grid-template-columns: repeat(3, 1fr)}

.tile{
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding:18px;
}
.tile h3{margin:0 0 8px; letter-spacing:-.2px}
.tile p{margin:0 0 12px; color:var(--muted)}
.bullets{margin:0; padding-left:18px; color:var(--muted)}
.bullets li{margin:6px 0}

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.price{
  position:relative;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius2);
  padding:18px;
}
.price__head h3{margin:0 0 6px}
.price__head p{margin:0}
.price__tag{margin:14px 0}
.price--featured{
  background: linear-gradient(180deg, rgba(110,168,255,.12), rgba(139,92,246,.10));
  border-color: rgba(110,168,255,.25);
  box-shadow: var(--shadow);
}
.badge{
  position:absolute; top:14px; right:14px;
  font-size:.85rem;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(110,168,255,.3);
  background: rgba(110,168,255,.10);
  color: var(--text);
  font-weight:700;
}
.note{margin:18px 0 0; color:var(--muted)}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:12px;
}
.step{
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 16px;
  padding:16px;
}
.step__num{
  width:34px; height:34px;
  border-radius: 12px;
  display:grid; place-items:center;
  margin-bottom:10px;
  background: rgba(110,168,255,.12);
  border:1px solid rgba(110,168,255,.25);
  font-weight:800;
}
.step h3{margin:0 0 6px}
.step p{margin:0; color:var(--muted)}

/* Quotes */
.quote{
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding:18px;
  margin:0;
}
.quote blockquote{margin:0; color:var(--text); font-weight:600}
.quote figcaption{margin-top:10px; color:var(--muted2); font-size:.92rem}

/* FAQ */
.faq{
  display:grid;
  gap:10px;
}
details{
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 16px;
  padding: 14px 16px;
}
summary{
  cursor:pointer;
  font-weight:700;
}
details p{margin:10px 0 0; color:var(--muted)}

/* Contact */
.contact__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:start;
}
.contact__cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin:18px 0 14px;
}
.mini{
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 16px;
  padding:12px;
}
.mini h3{margin:0 0 6px; font-size:1rem}
.mini p{margin:0; color:var(--muted)}
.contact__actions{display:flex; gap:10px; flex-wrap:wrap}

.form{padding:18px}
.form__row{display:grid; gap:8px; margin-bottom:12px}
label{font-weight:600}
input, select, textarea{
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(10,16,30,.35);
  color: var(--text);
  padding:12px 12px;
  font: inherit;
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(110,168,255,.45);
  box-shadow: 0 0 0 4px rgba(110,168,255,.12);
}
.form__row--inline{
  grid-template-columns: 18px 1fr;
  align-items:start;
}
.form__row--inline input{margin-top:4px}

/* Footer */
.footer{
  padding:26px 0 38px;
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; flex-wrap:wrap;
}
.footer__links{display:flex; gap:14px}
.footer__links a{color:var(--muted)}
.footer__links a:hover{color:var(--text)}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .grid--3{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .contact__grid{grid-template-columns:1fr}
  .contact__cards{grid-template-columns:1fr}
}

@media (max-width: 820px){
  .nav__toggle{display:inline-flex}
  .nav__menu{
    position:absolute;
    right: 20px;
    top: 64px;
    width: min(360px, calc(100vw - 40px));
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:12px;
    border-radius: 18px;
    border:1px solid var(--line);
    background: rgba(11,18,32,.92);
    box-shadow: var(--shadow);
  }
  .nav__menu.is-open{display:flex}
  .nav__link{padding:10px 10px; border-radius:12px; background: rgba(255,255,255,.03)}
}
.btn--white {
  background: white;
  color: black;
  border: 1px solid white;
}

.btn--white:hover {
  background: #f2f2f2;
  color: black;
}