:root{
  --bg0:#070b14;
  --bg1:#0a1222;
  --card:#0b1220cc;
  --card2:#0b1220e6;
  --stroke:#ffffff14;
  --stroke2:#ffffff1f;
  --text:#eaf0ff;
  --muted:#b9c3dd;
  --muted2:#93a2c7;
  --blue:#2b6cff;
  --blue2:#1f57ff;
  --shadow: 0 18px 50px rgba(0,0,0,.55);
  --shadow2: 0 12px 30px rgba(0,0,0,.5);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 480px at 18% 10%, rgba(43,108,255,.22), transparent 55%),
    radial-gradient(850px 520px at 72% 15%, rgba(90,74,255,.14), transparent 55%),
    radial-gradient(900px 520px at 50% 90%, rgba(43,108,255,.12), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.wrap{max-width:1180px; margin:0 auto; padding:0 24px}

/* Top bar */
.topbar{
  position:sticky; top:0; z-index:50;
  background: linear-gradient(180deg, rgba(7,11,20,.82), rgba(7,11,20,.55));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
}
.nav{
  height:72px;
  display:flex; align-items:center; justify-content:space-between;
}
.brand{display:flex; align-items:center; gap:12px;}
.logo{
  width:34px; height:34px;
  border-radius:10px;
  display:grid; place-items:center;
  background: radial-gradient(60% 60% at 30% 30%, rgba(255,255,255,.22), transparent 55%),
              linear-gradient(135deg, rgba(43,108,255,.9), rgba(25,35,70,.95));
  border:1px solid var(--stroke2);
  box-shadow: 0 10px 24px rgba(43,108,255,.18);
  font-weight:800;
  letter-spacing:.5px;
  font-size:13px;
}
.brand .name{font-weight:700; letter-spacing:.2px;}

.navlinks{display:flex; align-items:center; gap:18px;}
.navlink{
  font-size:14px;
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
  transition: background .2s, color .2s;
}
.navlink:hover{background:rgba(255,255,255,.06); color:var(--text)}

.cta{display:flex; align-items:center; gap:12px;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  height:42px;
  padding:0 16px;
  border-radius:14px;
  border:1px solid var(--stroke2);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-weight:600;
  font-size:14px;
  cursor:pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{background:rgba(255,255,255,.06); transform: translateY(-1px)}
.btn.primary{
  border-color: rgba(43,108,255,.55);
  background: linear-gradient(180deg, rgba(43,108,255,.95), rgba(31,87,255,.85));
  box-shadow: 0 12px 28px rgba(43,108,255,.22);
}
.btn.primary:hover{transform: translateY(-1px); filter:saturate(1.1)}
.btn .dot{width:7px;height:7px;border-radius:99px;background:#fff; opacity:.9}

/* Dropdown */
.dropdown{position:relative}
.dropbtn{display:inline-flex; align-items:center; gap:8px;}
.chev{
  width:10px; height:10px; display:inline-block;
  border-right:2px solid var(--muted2);
  border-bottom:2px solid var(--muted2);
  transform: rotate(45deg);
  margin-top:-2px;
}
.menu{
  position:absolute;
  top:52px; left:0;
  width:240px;
  padding:10px;
  border-radius:16px;
  background: rgba(8,12,22,.75);
  border:1px solid var(--stroke2);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow2);
  display:none;
}
.menu.open{display:block}
.menu a{
  display:flex; flex-direction:column;
  padding:10px 12px;
  border-radius:14px;
  color:var(--text);
  border:1px solid transparent;
}
.menu a:hover{background: rgba(255,255,255,.06); border-color: var(--stroke);}
.menu small{color:var(--muted2); margin-top:2px; font-weight:500}

/* Mobile */
.hamburger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--stroke2);
  background:rgba(255,255,255,.04);
  cursor:pointer;
}
.hamburger span{
  display:block;
  width:18px; height:2px;
  background:var(--text);
  margin:0 auto;
  position:relative;
}
.hamburger span::before,
.hamburger span::after{
  content:"";
  position:absolute; left:0;
  width:18px; height:2px;
  background:var(--text);
}
.hamburger span::before{top:-6px}
.hamburger span::after{top:6px}

.mobilepanel{display:none; padding:14px 0 18px;}
.mobilepanel.open{display:block}
.mobilepanel .navlink, .mobilepanel .btn{width:100%}
.mobilegrid{display:grid; gap:10px}

/* Hero */
.hero{padding:64px 0 46px;}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:30px;
  align-items:start;
}
.pillrow{display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-bottom:18px;}
.pill{
  display:inline-flex; align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:12.5px;
  font-weight:600;
}
.dotblue{width:8px;height:8px;border-radius:99px;background:var(--blue)}
h1{margin:0 0 12px; font-size:44px; line-height:1.1; letter-spacing:-.8px;}
.sub{margin:0 0 22px; color:var(--muted); max-width:52ch; font-size:15.5px; line-height:1.6;}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap;}

/* Feature carousel card */
.featurecard{
  border-radius:22px;
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.feature-top{display:flex; align-items:center; justify-content:space-between; padding:16px 16px 12px;}
.feature-top .label{display:flex; gap:10px; align-items:center; color:var(--muted); font-size:13px; font-weight:600;}
.kbd{
  font-size:12px;
  padding:6px 10px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.2);
  color:var(--muted2);
}
.feature-body{
  padding:18px 18px 58px;
  min-height:260px;
  display:flex; align-items:flex-end;
  background:
    radial-gradient(650px 260px at 30% 25%, rgba(43,108,255,.18), transparent 60%),
    radial-gradient(520px 240px at 80% 35%, rgba(120,90,255,.14), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.35));
}
.feature-title{font-size:16px; font-weight:700; margin:0 0 6px;}
.feature-text{margin:0; color:var(--muted); line-height:1.5; font-size:14px;}
.controls{position:absolute; inset:0; pointer-events:none;}
.arrow{
  pointer-events:auto;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:38px;height:38px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.35);
  display:grid; place-items:center;
  cursor:pointer;
  transition: background .2s ease, transform .15s ease;
}
.arrow:hover{background:rgba(255,255,255,.06); transform:translateY(-50%) scale(1.02)}
.arrow.left{left:12px}
.arrow.right{right:12px}
.arrow i{
  width:10px;height:10px; display:block;
  border-right:2px solid var(--text);
  border-bottom:2px solid var(--text);
  opacity:.9;
}
.arrow.left i{transform:rotate(135deg)}
.arrow.right i{transform:rotate(-45deg)}

.dots{
  position:absolute;
  left:0; right:0; bottom:14px;
  display:flex; gap:8px;
  justify-content:center;
}
.dot{
  width:7px;height:7px;border-radius:99px;
  background:rgba(255,255,255,.25);
  border:1px solid rgba(255,255,255,.12);
  cursor:pointer;
  pointer-events:auto;
}
.dot.active{background:rgba(255,255,255,.85)}

/* Section */
.section{padding:22px 0 84px;}
.section h2{margin: 10px 0 6px; text-align:center; font-size:22px; letter-spacing:-.3px;}
.section p.lead{margin:0 0 26px; text-align:center; color:var(--muted); font-size:14.5px;}

.cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px;}
.card{
  border-radius:20px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  padding:18px 18px 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  min-height:160px;
}
.card h3{margin:0 0 10px; font-size:15.5px; letter-spacing:-.2px;}
.card p{margin:0 0 14px; color:var(--muted); font-size:14px; line-height:1.55;}
.bullets{margin:0; padding-left:18px; color:var(--muted2); font-size:13.5px; line-height:1.6;}
.bullets li{margin:4px 0}

/* Footer */
footer{border-top:1px solid var(--stroke); padding:22px 0 40px; color:var(--muted2); font-size:13px;}
.footgrid{display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; align-items:center;}
.footlinks{display:flex; gap:12px; flex-wrap:wrap}
.footlinks a{padding:8px 10px; border-radius:12px}
.footlinks a:hover{background:rgba(255,255,255,.05); color:var(--text)}

/* ---------- Inline-style replacements / new classes ---------- */
.dot--soft { background: rgba(255,255,255,.75); }
.btn--left { justify-content: flex-start; }
.section--noTop { padding-top: 0; }

.card--config{
  min-height:auto;
  padding:22px;
  background: rgba(255,255,255,.035);
}
.mb-6{ margin-bottom:6px; }
.mb-16{ margin-bottom:16px; }

.cards--contact{ grid-template-columns: 1.1fr .9fr; }
.card--auto{ min-height:auto; }

.footbrand{ display:flex; align-items:center; gap:10px; }
.logo--sm{ width:30px; height:30px; border-radius:10px; }
.footbrand__title{ font-weight:700; color:var(--text); }
.footbrand__sub{ margin-top:2px; }

.stack{ margin-top:16px; display:grid; gap:10px; }

.quoteform__row{
  display:grid;
  gap:10px;
  grid-template-columns: 1fr 1fr;
  margin-bottom:10px;
}
.quoteform__actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.helper{ display:inline-block; color:var(--muted2); font-size:13px; }

.field{
  height:44px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.25);
  color:var(--text);
  padding:0 12px;
  outline:none;
}
.field--full{ width:100%; margin-bottom:10px; }
.textarea{ height:auto; padding:10px 12px; resize:vertical; margin-bottom:12px; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; gap:18px}
  h1{font-size:38px}
  .cards{grid-template-columns:1fr}

  .cards--contact{ grid-template-columns: 1fr; }
  .quoteform__row{ grid-template-columns: 1fr; }
}
@media (max-width: 820px){
  .navlinks, .cta .btn:not(.primary){display:none}
  .hamburger{display:block}
}