:root{
  --blue:#65A9DF;
  --green:#A1C051;
  --shadow:0 18px 60px rgba(0,0,0,.35);
  --radius:22px;
  --radius2:28px;
  --container:1040px;
}

*{box-sizing:border-box}
html,body{width:100%; overflow-x:hidden}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Manrope,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:rgba(255,255,255,.92);
  background:
    radial-gradient(1200px 700px at 15% 10%, rgba(101,169,223,.25), transparent 60%),
    radial-gradient(900px 600px at 85% 15%, rgba(161,192,81,.22), transparent 55%),
    radial-gradient(900px 600px at 50% 90%, rgba(101,169,223,.18), transparent 55%),
    linear-gradient(180deg, #050711, #04050d 40%, #02030a);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(var(--container), calc(100% - 40px)); margin-inline:auto}

.skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto; height:auto;
  padding:10px 14px; border-radius:14px; background:#fff; color:#111;
  z-index:9999;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(4,6,12,.55);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand__logo{
  width:44px;
  height:44px;
  border-radius:14px;
  padding:8px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
}
.brand__text{display:flex; flex-direction:column; line-height:1.1}
.brand__name{font-weight:800; letter-spacing:.6px}
.brand__tag{font-size:12px; color:rgba(255,255,255,.72)}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  color:rgba(255,255,255,.84);
}
.nav a{
  padding:10px 12px;
  border-radius:14px;
  transition:transform .15s ease, background .15s ease, color .15s ease;
}
.nav a:hover{
  background:rgba(255,255,255,.10);
  transform:translateY(-1px);
  color:#fff;
}
.pill{
  background:linear-gradient(135deg, rgba(101,169,223,.95), rgba(161,192,81,.90));
  color:#06101a;
  box-shadow:0 14px 30px rgba(0,0,0,.25);
}

.navbtn{
  display:none;
  width:44px;
  height:44px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  cursor:pointer;
  padding:10px;
}
.navbtn span{
  display:block;
  height:2px;
  background:rgba(255,255,255,.9);
  border-radius:2px;
  margin:6px 0;
  transition:transform .2s ease, opacity .2s ease;
}

.hero{
  position:relative;
  padding:64px 0 36px;
  overflow:hidden;
}
.hero__inner{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}
.hero__logo{
  width:200px;
  border-radius:28px;
  padding:12px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 16px 44px rgba(0,0,0,.25);
}
h1{
  margin:10px 0 0;
  font-size:clamp(34px, 4.6vw, 58px);
  line-height:1.02;
  letter-spacing:-.9px;
}
.lead{
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:clamp(15px, 1.8vw, 18px);
  line-height:1.6;
  max-width:62ch;
}

.cta{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-top:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-weight:900;
  transition:transform .15s ease, background .15s ease, border-color .15s ease, filter .15s ease;
  cursor:pointer;
  width:auto;
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.10); border-color:rgba(255,255,255,.20)}
.btn:active{transform:translateY(0px); filter:brightness(.98)}
.btn--primary{
  border:none;
  color:#06101a;
  background:linear-gradient(135deg, rgba(101,169,223,.98), rgba(161,192,81,.94));
}
.btn--primary:hover{filter:saturate(1.05) brightness(1.02);background: linear-gradient(135deg, rgba(101, 169, 223, .98), rgba(161, 192, 81, .94)); }}
.btn--ghost{background:rgba(255,255,255,.02)}

.hero__chips{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-top:6px;
}
.chip{
  display:inline-flex;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  font-weight:900;
  color:rgba(255,255,255,.86);
}

.hero__bg{
  position:absolute;
  left:0;
  right:0;
  top:-180px;
  height:620px;
  background:
    radial-gradient(540px 340px at 18% 55%, rgba(101,169,223,.20), transparent 60%),
    radial-gradient(540px 340px at 82% 45%, rgba(161,192,81,.18), transparent 60%);
  filter: blur(12px);
  pointer-events:none;
}

.section{
  padding:58px 0;
}
.section--alt{
  background:rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
}
.section__head.center{
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:10px;
}
.maxw{max-width:70ch}
h2{
  margin:0;
  font-size:clamp(26px, 3.2vw, 36px);
  letter-spacing:-.4px;
}
h3{margin:0 0 6px; font-size:16px}
p{margin:0; line-height:1.6; color:rgba(255,255,255,.78)}
.muted{color:rgba(255,255,255,.68)}

.highlights{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:12px;
}
.highlight{
  display:flex;
  gap:14px;
  align-items:center;
  padding:16px 16px;
  border-radius:22px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
}
.icon{
  width:60px;
  height:60px;
  border-radius:20px;
  display:grid;
  place-items:center;
  font-size:28px;
  background:linear-gradient(135deg, rgba(101,169,223,.22), rgba(161,192,81,.18));
  border:1px solid rgba(255,255,255,.12);
  flex:0 0 auto;
}
.highlight__text strong{display:block; font-weight:900}
.highlight__text span{display:block; color:rgba(255,255,255,.70); font-weight:700; font-size:13px; margin-top:2px}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:14px;
}
.card{
  padding:18px 16px;
  border-radius:24px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  transition:transform .15s ease, background .15s ease;
}
.card:hover{transform:translateY(-2px); background:rgba(255,255,255,.08)}
.card__icon{
  width:52px;
  height:52px;
  border-radius:20px;
  display:grid;
  place-items:center;
  font-size:24px;
  background:linear-gradient(135deg, rgba(101,169,223,.22), rgba(161,192,81,.18));
  border:1px solid rgba(255,255,255,.12);
  margin-bottom:10px;
}
.card p{color:rgba(255,255,255,.70); font-weight:650; font-size:13px}

.contactBox{
  width:min(920px, 100%);
  margin:0 auto;
  padding:22px;
  border-radius:var(--radius2);
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 50px rgba(0,0,0,.25);
}
.contactTitle{text-align:center}

.contactLinks{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin:12px 0 6px;
}
.contactLinks .btn{width:100%}

.mini{margin-top:14px}
.label{display:block; font-weight:900; margin-bottom:8px}
.mini__row{
  display:flex;
  gap:10px;
  align-items:center;
}
input{
  flex:1;
  height:48px;
  padding:0 14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff;
  outline:none;
  font-weight:800;
}
input::placeholder{color:rgba(255,255,255,.55)}
input:focus{border-color:rgba(101,169,223,.65); box-shadow:0 0 0 4px rgba(101,169,223,.15)}
.hint{margin-top:10px; font-size:12px; color:rgba(255,255,255,.62); font-weight:700}

.quote{
  padding:14px 14px;
  border-radius:var(--radius2);
  background:linear-gradient(135deg, rgba(101,169,223,.14), rgba(161,192,81,.10));
  border:1px solid rgba(255,255,255,.12);
  margin:10px 0 12px;
  text-align:center;
}
.quote p{
  margin:8px 0;
  font-weight:850;
  color:rgba(255,255,255,.90);
}
.quote__mark{
  font-size:26px;
  font-weight:900;
  color:rgba(255,255,255,.85);
  line-height:1;
}
.quote__mark--end{display:block}

.footer{
  padding:22px 0 26px;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.10);
}
.footer__left{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer__logo{
  width:40px;
  height:40px;
  border-radius:16px;
  padding:8px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
}
.footer__right{color:rgba(255,255,255,.70); font-weight:850}

.toast{
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  background:rgba(0,0,0,.72);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  padding:12px 14px;
  border-radius:18px;
  box-shadow:0 18px 50px rgba(0,0,0,.35);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
  z-index:80;
  max-width:min(520px, calc(100% - 30px));
  text-align:center;
  font-weight:900;
}
.toast--show{
  opacity:1;
  transform:translateX(-50%) translateY(-2px);
}

@media (max-width: 980px){
  .contactLinks{grid-template-columns:1fr}
}

@media (max-width: 760px){
  .navbtn{display:block}
  .nav{
    position:fixed;
    top:70px;
    left:14px;
    right:14px;
    display:grid;
    gap:8px;
    padding:12px;
    border-radius:24px;
    background:rgba(5,7,14,.92);
    border:1px solid rgba(255,255,255,.12);
    transform:translateY(-10px);
    opacity:0;
    pointer-events:none;
    transition:opacity .18s ease, transform .18s ease;
  }
  .nav a{padding:12px 12px}
  .nav--open{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }
  .pill{color:#06101a}
  .mini__row{flex-direction:column; align-items:stretch}
  input{width:100%}
  .footer__inner{flex-direction:column; align-items:flex-start}
}
