/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(5,5,13,.55);
  backdrop-filter: blur(var(--blur));
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}
.brand__logo{
  height: 22px; width:auto; display:block;
  filter: drop-shadow(0 0 18px rgba(124,58,237,.35));
  opacity:.95;
}
.nav{
  display:none; gap:16px; align-items:center;
  color: rgba(245,246,255,.82);
  font-size: 13px;
}
.nav a{opacity:.9}
.nav a:hover{opacity:1}
@media(min-width:960px){ .nav{display:flex} }

/* Badge */
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(124,58,237,.12);
  color: rgba(245,246,255,.85);
  font-size: 12px;
}
.badge__dot{
  width:8px; height:8px; border-radius:99px;
  background: var(--accent);
  box-shadow: 0 0 22px rgba(124,58,237,.85);
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: rgba(245,246,255,.92);
  text-decoration:none;
  box-shadow: var(--shadow2);
}
.btn--primary{
  background: linear-gradient(180deg, rgba(124,58,237,.95), rgba(124,58,237,.60));
  border-color: rgba(167,139,250,.35);
}
.btn--ghost{ background: rgba(255,255,255,.03); }
.btn--sm{ padding: 10px 12px; border-radius: 12px; }
.btn--full{ width:100%; }

/* Cards / Glass */
.card{
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 18px;
  backdrop-filter: blur(var(--blur));
  box-shadow: var(--shadow2);
}
.card--soft{ background: rgba(255,255,255,.04); }
.card__title{ font-weight: 750; letter-spacing: -.2px; }
.card__meta{ color: var(--muted); font-size: 13px; margin-top: 6px; }

/* HERO */
.hero{
  padding-top: 82px;
  padding-bottom: 82px;
  overflow: hidden;
}
.hero__inner{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.hero__bg{
  position:absolute; inset:-2px;
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(124,58,237,.55), transparent 62%),
    radial-gradient(800px 380px at 80% 20%, rgba(167,139,250,.18), transparent 55%),
    radial-gradient(900px 420px at 10% 40%, rgba(124,58,237,.12), transparent 55%);
  pointer-events:none;
}
.hero__cta{
  display:flex; gap:12px; justify-content:center;
  flex-wrap:wrap; margin-top: 18px;
}
.hero__trust{
  display:flex; gap:10px; justify-content:center;
  flex-wrap:wrap; margin-top: 20px;
  color: var(--muted); font-size: 13px;
}
.trust__item{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 10px 12px;
  border-radius: 999px;
  backdrop-filter: blur(var(--blur));
}

/* Pricing */
.price{
  font-size: 30px; font-weight: 800;
  letter-spacing: -.4px;
  margin: 10px 0 8px;
}
.list{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.card--price{ padding: 22px; }
.card--price .btn{ margin-top: 14px; }

/* Testimonials cards look */
.card--testimonial{ min-height: 190px; }
.card__top{display:flex; justify-content:space-between; align-items:center; margin-bottom:10px}
.avatar{width:34px;height:34px;border-radius:999px;background:rgba(255,255,255,.10);border:1px solid var(--border)}
.stars{letter-spacing:2px; color:rgba(245,246,255,.92); font-size:13px}
.quote{color:rgba(245,246,255,.78); margin:10px 0 0}
.name{font-weight:800}
.role{color:var(--muted); font-size:12px; margin-top:2px}
.logos-row{display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top:22px; opacity:.75}
.logo-pill{border:1px solid var(--border);border-radius:999px;padding:8px 12px;background:rgba(255,255,255,.03)}

/* Accordion */
.accordion__btn{
  width:100%;
  text-align:left;
  display:flex; justify-content:space-between; gap:14px; align-items:center;
  padding: 16px 18px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor:pointer;
}
.accordion__panel{
  display:none;
  padding: 12px 18px 2px;
  color: var(--muted);
}
.accordion__item + .accordion__item{ margin-top: 12px; }

/* CTA box */
.cta-box{
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(167,139,250,.35);
  background:
    radial-gradient(900px 240px at 50% 0%, rgba(124,58,237,.55), transparent 62%),
    rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  text-align:center;
}

/* Footer */
.footer{
  padding: 72px 0 30px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.16);
}
.footer__grid{display:grid; grid-template-columns:1fr; gap:22px}
@media(min-width:960px){ .footer__grid{grid-template-columns:1.2fr .9fr 1fr} }
.footer__title{font-weight:800; margin-bottom:10px}
.footer__bottom{
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}
.input{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
.form{display:grid; gap:10px}
.text--xs{font-size:12px}
