:root{
  --bg:#070b14;
  --bg2:#0b1220;
  --card:#0e1730;
  --card2:#0c142b;
  --text:#e9eefc;
  --muted:#a8b2d3;
  --line:rgba(255,255,255,.10);
  --shadow: 0 28px 90px rgba(0,0,0,.55);
  --shadow2: 0 14px 45px rgba(0,0,0,.45);
  --accent:#7c5cff;
  --accent2:#00d2ff;
  --good:#46ffa6;

  --radius:18px;
  --radius2:26px;
  --max:1140px;

  --font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(124,92,255,.24), transparent 60%),
    radial-gradient(700px 500px at 85% 12%, rgba(0,210,255,.18), transparent 55%),
    radial-gradient(900px 700px at 50% 110%, rgba(70,255,166,.08), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
strong{font-weight:700}

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

.skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:12px; top:12px; width:auto; height:auto; padding:10px 12px;
  background:rgba(255,255,255,.10); border:1px solid var(--line); border-radius:12px;
  backdrop-filter: blur(12px);
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(7,11,20,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.brand{
  display:flex; align-items:center; gap:10px;
  letter-spacing:.2px;
}
.brand__mark{
  width:34px; height:34px; border-radius:12px;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.35), transparent 65%),
    conic-gradient(from 240deg, var(--accent), var(--accent2), var(--good), var(--accent));
  box-shadow: 0 10px 22px rgba(124,92,255,.25);
  position:relative;
}
.brand__mark::after{
  content:"";
  position:absolute; inset:1px;
  border-radius:11px;
  background: rgba(7,11,20,.68);
  border: 1px solid rgba(255,255,255,.08);
}
.brand__text{
  font-weight:800;
  font-size:15px;
}
.brand--small .brand__mark{width:28px; height:28px; border-radius:10px}

.nav{display:flex; align-items:center; gap:14px}
.nav__panel{
  display:flex; align-items:center; gap:8px;
}
.nav__link{
  padding:10px 12px;
  border-radius:12px;
  color:rgba(233,238,252,.92);
  font-weight:600;
  font-size:13px;
  opacity:.85;
  transition: .18s ease;
}
.nav__link:hover{opacity:1; background:rgba(255,255,255,.06)}
.nav__cta{
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(124,92,255,.18), rgba(0,210,255,.10));
  font-weight:700;
  font-size:13px;
  transition:.18s ease;
}
.nav__cta:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.20)}

.nav__toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:var(--text);
  cursor:pointer;
}
.nav__toggleLines{
  display:block;
  width:18px;
  height:2px;
  background: rgba(233,238,252,.90);
  position:relative;
  margin:0 auto;
  border-radius:999px;
}
.nav__toggleLines::before,
.nav__toggleLines::after{
  content:"";
  position:absolute;
  left:0;
  width:18px; height:2px;
  background: rgba(233,238,252,.90);
  border-radius:999px;
}
.nav__toggleLines::before{top:-6px}
.nav__toggleLines::after{top:6px}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition: .18s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18)}
.btn:active{transform: translateY(0px)}
.btn--primary{
  border-color: rgba(124,92,255,.40);
  background:
    radial-gradient(120px 60px at 30% 10%, rgba(255,255,255,.25), transparent 60%),
    linear-gradient(135deg, rgba(124,92,255,.95), rgba(0,210,255,.65));
  box-shadow: 0 22px 45px rgba(124,92,255,.22);
}
.btn--primary:hover{box-shadow: 0 26px 60px rgba(124,92,255,.26)}
.btn--ghost{
  background: rgba(255,255,255,.04);
}
.btn--wide{width:100%}

/* Typography */
.kicker{
  margin:0 0 10px 0;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(233,238,252,.92);
  font-weight:700;
  font-size:12px;
  letter-spacing:.2px;
}
.kicker::before{
  content:"";
  width:10px; height:10px;
  border-radius:99px;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.25));
  box-shadow: 0 0 0 6px rgba(124,92,255,.12);
}

.h2{font-size:34px; line-height:1.15; margin:0}
.h3{font-size:18px; margin:0 0 8px 0}
.muted{color:var(--muted)}
.fine{font-size:12px; line-height:1.45; margin:0}

/* Hero */
.hero{padding:56px 0 24px 0}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:center;
}
.hero__title{
  font-size:48px;
  line-height:1.05;
  margin:0 0 14px 0;
  letter-spacing:-.02em;
}
.hero__subtitle{
  margin:0 0 20px 0;
  color: rgba(233,238,252,.86);
  max-width: 60ch;
}
.hero__actions{display:flex; gap:10px; flex-wrap:wrap}
.hero__trust{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-top:22px;
}
.stat{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.stat__num{font-weight:900; font-size:18px}
.stat__label{font-weight:600; font-size:12px; color:rgba(168,178,211,.95)}

.hero__art{
  position:relative;
  min-height: 360px;
  display:flex;
  flex-direction: column;
  gap: 40px;
  align-items:center;
  justify-content:center;
}
.portrait{
  position:relative;
  width:min(260px, 70%);
  z-index: 2;
  border-radius: 26px;
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(220px 160px at 30% 15%, rgba(255,255,255,.12), transparent 60%),
    rgba(7,11,20,.40);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 55px rgba(0,0,0,.55);
  overflow:hidden;
  transform: rotate(1.2deg);
}
.portrait::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: conic-gradient(from 220deg, rgba(124,92,255,.75), rgba(0,210,255,.45), rgba(70,255,166,.30), rgba(124,92,255,.75));
  filter: blur(12px);
  opacity:.25;
  pointer-events:none;
}
.portrait__img{
  display:block;
  width:100%;
  height:auto;
  position:relative;
  z-index:1;
  transform: translateY(2px);
  opacity:.98;
}
.portrait__cap{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:2;
  padding:10px 10px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,11,20,.62);
  backdrop-filter: blur(12px);
}
.portrait__name{font-weight:900; font-size:13px; letter-spacing:.2px}
.portrait__role{margin-top:2px; font-weight:700; font-size:11px; color: rgba(168,178,211,.95)}
.hero__bgOrbs{
  position:absolute;
  inset:-40px;
  background:
    radial-gradient(260px 220px at 25% 25%, rgba(124,92,255,.35), transparent 62%),
    radial-gradient(260px 220px at 75% 35%, rgba(0,210,255,.22), transparent 62%),
    radial-gradient(300px 260px at 55% 85%, rgba(70,255,166,.14), transparent 68%);
  filter: blur(14px);
  opacity:.9;
  z-index:0;
}

.cardGlow{
  position:relative;
  z-index:1;
  width:min(420px, 100%);
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(300px 200px at 35% 15%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.cardGlow::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    conic-gradient(from 210deg, rgba(124,92,255,.80), rgba(0,210,255,.55), rgba(70,255,166,.42), rgba(124,92,255,.80));
  filter: blur(10px);
  opacity:.35;
  z-index:0;
}
.cardGlow__top{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 16px 10px 16px;
}
.badge{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(7,11,20,.55);
  font-weight:800;
  font-size:12px;
}
.dots{display:flex; gap:6px}
.dots span{
  width:8px; height:8px; border-radius:99px;
  background: rgba(233,238,252,.35);
}
.dots span:nth-child(1){background: rgba(255,120,120,.45)}
.dots span:nth-child(2){background: rgba(255,220,120,.45)}
.dots span:nth-child(3){background: rgba(120,255,180,.45)}
.cardGlow__body{
  position:relative;
  z-index:1;
  padding:14px 16px 18px 16px;
}
.chipRow{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:14px}
.chip{
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  font-weight:700;
  font-size:12px;
  color: rgba(233,238,252,.90);
}
.chip--strong{
  border-color: rgba(124,92,255,.35);
  background: linear-gradient(135deg, rgba(124,92,255,.22), rgba(0,210,255,.10));
}
.lines{display:grid; gap:10px; margin-bottom:16px}
.lines span{
  height:10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,.05));
}
.lines span:nth-child(2){width:86%}
.lines span:nth-child(3){width:72%}
.lines span:nth-child(4){width:92%}
.lines span:nth-child(5){width:64%}

.pulse{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.pulse__dot{
  width:10px; height:10px; border-radius:99px;
  background: rgba(70,255,166,.9);
  box-shadow: 0 0 0 0 rgba(70,255,166,.45);
  animation: ping 2s infinite;
}
.pulse__text{font-weight:700; font-size:13px; color: rgba(233,238,252,.90)}

@keyframes ping{
  0%{ box-shadow: 0 0 0 0 rgba(70,255,166,.38) }
  60%{ box-shadow: 0 0 0 10px rgba(70,255,166,0) }
  100%{ box-shadow: 0 0 0 0 rgba(70,255,166,0) }
}

/* Sections */
.section{padding:54px 0}
.section--alt{
  background:
    radial-gradient(800px 500px at 15% 20%, rgba(124,92,255,.16), transparent 60%),
    radial-gradient(700px 420px at 90% 20%, rgba(0,210,255,.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-top:1px solid rgba(255,255,255,.07);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.section__head{
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:end;
  gap:18px;
  margin-bottom:22px;
}
.section__head p{margin:0; max-width: 70ch}

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

.techRow{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}
.techRow__label{
  font-weight:800;
  font-size:12px;
}
.feature{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
}
.feature__icon{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(124,92,255,.22), rgba(0,210,255,.12));
  border:1px solid rgba(255,255,255,.12);
  margin-bottom:10px;
  font-weight:900;
}

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.priceCard{
  padding:18px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(300px 180px at 35% 10%, rgba(255,255,255,.09), transparent 55%),
    rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
}
.priceCard--featured{
  border-color: rgba(124,92,255,.32);
  background:
    radial-gradient(320px 220px at 30% 10%, rgba(124,92,255,.22), transparent 60%),
    radial-gradient(320px 220px at 80% 20%, rgba(0,210,255,.12), transparent 60%),
    rgba(255,255,255,.04);
}
.priceCard__tag{
  position:absolute;
  top:14px; right:14px;
  padding:7px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(7,11,20,.55);
}
.priceCard__price{
  margin:8px 0 14px 0;
  font-weight:900;
  font-size:26px;
  letter-spacing:-.01em;
}
.list{
  list-style:none;
  padding:0;
  margin:0 0 16px 0;
  display:grid;
  gap:10px;
}
.list li{
  display:flex; gap:10px;
  align-items:flex-start;
  color: rgba(233,238,252,.88);
  font-weight:600;
}
.list li::before{
  content:"";
  width:9px; height:9px;
  border-radius:99px;
  background: linear-gradient(135deg, var(--good), rgba(70,255,166,.35));
  box-shadow: 0 0 0 6px rgba(70,255,166,.10);
  margin-top:6px;
  flex: 0 0 auto;
}

.noteGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
  margin-top:14px;
}
.note{
  padding:16px 18px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  display:grid;
  gap:6px;
}
.note__title{font-weight:800}
.note__value{font-weight:900; font-size:20px}
.note__text{font-size:13px}

/* Sub sections */
.subSection{margin-top:18px}
.subSection__head{
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:end;
  gap:18px;
  margin: 18px 0 14px 0;
}
.subSection__title{
  font-size:20px;
  font-weight:900;
  letter-spacing:-.01em;
}
.subSection__text{margin:0; max-width: 72ch}
.priceCard__meta{margin:-6px 0 12px 0; font-size:12px}

/* Workload */
.loadCard{
  padding:16px 18px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(320px 220px at 20% 0%, rgba(0,210,255,.12), transparent 60%),
    rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  margin: 0 0 14px 0;
}
.loadCard__top{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.loadCard__title{font-weight:900; font-size:14px}
.loadCard__value{font-weight:900; font-size:14px; color: rgba(233,238,252,.92)}
.loadCard__bar{
  height:12px;
  border-radius: 999px;
  background: rgba(7,11,20,.60);
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
}
.loadCard__barFill{
  height:100%;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(0,210,255,.70));
  box-shadow: 0 10px 24px rgba(124,92,255,.20);
}
.loadCard__text{margin:10px 0 0 0; font-size:13px}

/* Steps */
.steps{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}
.steps--compact{margin-bottom:18px}
.step{
  display:flex;
  gap:14px;
  padding:18px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.step__num{
  width:52px; height:52px;
  border-radius:18px;
  display:grid; place-items:center;
  font-weight:900;
  background: linear-gradient(135deg, rgba(124,92,255,.22), rgba(0,210,255,.10));
  border:1px solid rgba(255,255,255,.12);
}
.step__title{font-weight:900; margin-bottom:4px}

/* FAQ */
.faq{display:grid; gap:10px}
.qa{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding:14px 16px;
}
.qa summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
.qa summary::-webkit-details-marker{display:none}
.qa summary::after{
  content:"+";
  float:right;
  opacity:.8;
}
.qa[open] summary::after{content:"–"}
.qa__body{padding-top:10px}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:start;
}
.contactCard{
  margin-top:14px;
  padding:18px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(320px 220px at 25% 10%, rgba(124,92,255,.15), transparent 60%),
    rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
}
.contactCard__row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.contactCard__row:last-of-type{border-bottom:0}
.contactCard__label{font-weight:700; font-size:12px}
.contactCard__value{font-weight:900}
.contactCard__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.form{
  padding:18px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
}
.form__head{margin-bottom:12px}
.form__head .h3{margin-bottom:4px}
.field{
  display:grid;
  gap:8px;
  margin-bottom:12px;
}
.field--full{grid-column:1 / -1}
.field__label{font-weight:800; font-size:12px; color: rgba(233,238,252,.90)}
.field__input{
  width:100%;
  border-radius: 14px;
  padding:12px 12px;
  background: rgba(7,11,20,.55);
  border:1px solid rgba(255,255,255,.12);
  color: var(--text);
  outline:none;
  font: inherit;
}
.field__input::placeholder{color: rgba(168,178,211,.70)}
.field__input:focus{
  border-color: rgba(124,92,255,.45);
  box-shadow: 0 0 0 6px rgba(124,92,255,.12);
}
textarea.field__input{resize: vertical; min-height: 120px}
.form__actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-top:8px;
}
.form__hint{font-size:12px}

/* Footer */
.footer{
  padding:26px 0 34px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(7,11,20,.35);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer__left{display:grid; gap:8px}
.footer__right{display:flex; gap:10px; flex-wrap:wrap}
.footer__link{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  font-weight:700;
  font-size:13px;
}
.footer__link:hover{background: rgba(255,255,255,.06)}

/* Toast */
.toast{
  position:fixed;
  bottom:18px;
  left:50%;
  transform: translateX(-50%);
  z-index:80;
  opacity:0;
  pointer-events:none;
  transition:.22s ease;
}
.toast.is-visible{opacity:1; transform: translateX(-50%) translateY(-4px)}
.toast__inner{
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(7,11,20,.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow2);
  font-weight:800;
  font-size:13px;
}

/* Mobile */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr; gap:18px}
  .hero__title{font-size:40px}
  .section__head{grid-template-columns: 1fr}
  .subSection__head{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .pricing{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr}
  .noteGrid{grid-template-columns:1fr}
  .portrait{width: min(320px, 82%); transform: rotate(.8deg)}
}

@media (max-width: 760px){
  .nav__toggle{display:inline-flex; align-items:center; justify-content:center}
  .nav__panel{
    position: absolute;
    right: 20px;
    top: 64px;
    width: min(320px, calc(100vw - 40px));
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding:12px;
    border-radius: var(--radius2);
    border:1px solid rgba(255,255,255,.12);
    background: rgba(7,11,20,.78);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow2);
  }
  .nav__panel.is-open{display:flex}
  .nav__link, .nav__cta{width:100%; text-align:left}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .pulse__dot{animation:none}
  .btn, .nav__link, .nav__cta, .toast{transition:none}
}


