:root{
  --bg:#07111d;
  --bg2:#0b1628;
  --panel:rgba(10,20,36,.78);
  --panel-2:rgba(255,255,255,.04);
  --text:#eff6ff;
  --muted:#9db0c9;
  --line:rgba(154,177,214,.16);
  --line-strong:rgba(154,177,214,.28);
  --accent:#61a6ff;
  --accent2:#7c5cff;
  --accent3:#41e4d4;
  --radius:22px;
  --radius2:28px;
  --shadow:0 22px 70px rgba(0,0,0,.32);
  --max:1180px;
}

*{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(900px 500px at 8% -8%, rgba(97,166,255,.18), transparent 60%),
    radial-gradient(700px 420px at 92% 6%, rgba(124,92,255,.16), transparent 55%),
    linear-gradient(180deg, #07111d 0%, #091422 42%, #07111d 100%);
  color:var(--text);
  min-height:100vh;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.site-bg{
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.55), transparent 90%);
}
.container{width:min(calc(100% - 32px), var(--max)); margin:0 auto}

.header{
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter: blur(16px);
  background:rgba(7,17,29,.7);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header__wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:82px;
}
.brand__logo{height:42px; width:auto}
.nav{display:flex; align-items:center; gap:14px; flex-wrap:wrap}
.nav a{
  color:var(--muted);
  font-weight:700;
  font-size:14px;
  transition:.22s ease;
}
.nav a:hover{color:var(--text)}
.nav__toggle{
  display:none;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:14px;
  padding:10px;
  cursor:pointer;
}
.nav__toggle span{
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  margin:4px 0;
  border-radius:999px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:0 18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(135deg, #66b6ff 0%, #6b7cff 48%, #8a5dff 100%);
  color:#ffffff;
  font-weight:800;
  letter-spacing:.01em;
  text-shadow:0 1px 0 rgba(0,0,0,.18);
  box-shadow:0 16px 36px rgba(68,115,255,.28), inset 0 1px 0 rgba(255,255,255,.16);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, filter .22s ease;
}
.btn:hover{transform:translateY(-1px); filter:brightness(1.06); box-shadow:0 22px 46px rgba(68,115,255,.34), 0 0 0 1px rgba(255,255,255,.06) inset}
.btn--ghost{
  background:rgba(255,255,255,.03);
  border-color:var(--line);
  color:var(--text);
  box-shadow:none;
}
.btn--small{min-height:40px; padding:0 16px; border-radius:14px; font-size:14px}
.textLink{color:#d5e4ff; font-weight:800}
.textLink:hover{color:#fff}

.nav .btn{
  position:relative;
  padding:0 20px;
  color:#ffffff;
  box-shadow:0 14px 34px rgba(98,126,255,.34), 0 0 26px rgba(124,92,255,.20);
}
.nav .btn::after{
  content:'';
  position:absolute;
  inset:1px;
  border-radius:15px;
  background:linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.02));
  pointer-events:none;
}
.nav .btn:hover{
  box-shadow:0 20px 44px rgba(98,126,255,.42), 0 0 30px rgba(97,166,255,.24);
}

.badge,
.panel__eyebrow,
.section__kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(125,149,255,.22);
  background:rgba(255,255,255,.03);
  color:#dce6ff;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.badge::before,
.panel__eyebrow::before,
.section__kicker::before{
  content:'';
  width:8px;
  height:8px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--accent3), var(--accent));
  box-shadow:0 0 18px rgba(65,228,212,.45);
}

.hero{position:relative; overflow:hidden}
.hero--home{padding:78px 0 48px}
.hero--internal{padding:72px 0 38px}
.hero__grid{display:grid; gap:22px; align-items:center}
.hero__grid--home{grid-template-columns:1.08fr .92fr}
.hero__grid--internal{grid-template-columns:1fr .86fr}
.hero__content h1{
  margin:18px 0 16px;
  font-size:clamp(38px, 5vw, 68px);
  line-height:1.02;
  letter-spacing:-.04em;
  max-width:12ch;
}
.grad{
  background:linear-gradient(90deg, var(--accent3), var(--accent), #bfd8ff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead,
.lead2{
  color:var(--muted);
  line-height:1.78;
  font-size:16px;
}
.lead{max-width:64ch; margin:0 0 22px}
.hero__cta{display:flex; flex-wrap:wrap; gap:12px; margin-bottom:20px}
.hero__stats{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.hero__stats--compact .stat{min-height:100%}
.stat{
  border:1px solid var(--line);
  border-radius:20px;
  padding:16px;
  background:rgba(255,255,255,.03);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}
.stat__num{font-weight:800; font-size:15px}
.stat__txt{margin-top:8px; color:var(--muted); font-size:13px; line-height:1.55}

.hero__card{position:relative}
.hero__card--stack{min-height:100%}
.cardGlow{
  position:absolute;
  inset:-16px;
  border-radius:36px;
  background:
    radial-gradient(420px 220px at 20% 16%, rgba(97,166,255,.30), transparent 62%),
    radial-gradient(420px 220px at 82% 34%, rgba(124,92,255,.28), transparent 64%),
    radial-gradient(340px 180px at 58% 88%, rgba(65,228,212,.18), transparent 60%);
  filter:blur(16px);
}
.hero__panel,
.about__box,
.form,
.contactInfo__card,
.card,
.feature,
.pillarCard{
  position:relative;
  border:1px solid var(--line);
  background:var(--panel-2);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero__panel{padding:22px}
.hero__panel h3{margin:10px 0 0; font-size:24px; line-height:1.3}
.hero__panel--product h3{margin-top:12px}
.solutionStack{display:grid; gap:12px; margin-top:18px}
.stackItem{
  display:grid;
  gap:5px;
  padding:14px 14px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.025);
  border-radius:18px;
}
.stackItem strong{font-size:15px}
.stackItem span{color:var(--muted); line-height:1.55; font-size:14px}
.checklist{margin:16px 0 0; padding-left:18px; color:var(--muted); line-height:1.75}
.checklist--tight{margin-top:12px}
.mini-cta{display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-top:18px}
.mini-cta__hint{color:var(--muted); font-size:13px}

.section{padding:58px 0}
.section--soft{
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.008));
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.section__head{margin-bottom:22px}
.section__head--center{text-align:center; max-width:860px; margin:0 auto 24px}
.section__head h2{margin:14px 0 10px; font-size:clamp(28px, 3.4vw, 46px); line-height:1.08; letter-spacing:-.03em}
.section__head p{margin:0; color:var(--muted); line-height:1.7}

.grid{display:grid; gap:16px}
.pillars{grid-template-columns:repeat(3,1fr)}
.pillarCard{padding:20px}
.pillarCard h3{margin:16px 0 10px; font-size:20px}
.pillarCard p{margin:0 0 14px; color:var(--muted); line-height:1.7}
.pillTag{
  display:inline-flex;
  min-width:42px;
  min-height:42px;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  font-weight:900;
  background:linear-gradient(135deg, rgba(97,166,255,.18), rgba(124,92,255,.18));
  border:1px solid rgba(255,255,255,.08);
}

.cards{grid-template-columns:repeat(3,1fr)}
.cards--products{grid-template-columns:repeat(3,1fr)}
.card{padding:20px}
.card h3{margin:0 0 10px; font-size:21px; line-height:1.25}
.card p{margin:0 0 12px; color:var(--muted); line-height:1.7}
.card--highlight{
  background:linear-gradient(135deg, rgba(97,166,255,.14), rgba(124,92,255,.12));
  border-color:var(--line-strong);
}
.card--product{overflow:hidden}
.productTag{display:inline-flex; align-items:center; min-height:32px; padding:0 10px; margin-bottom:12px; border-radius:999px; border:1px solid rgba(97,166,255,.24); background:rgba(97,166,255,.08); color:#dbe7ff; font-size:12px; font-weight:800; letter-spacing:.04em; text-transform:uppercase}
.card__topline{
  width:100%;
  height:4px;
  border-radius:999px;
  margin-bottom:18px;
  background:linear-gradient(90deg, var(--accent3), var(--accent), var(--accent2));
}
.bullets{margin:0; padding-left:18px; color:var(--muted); line-height:1.75}

.features{grid-template-columns:repeat(4,1fr)}
.feature{padding:18px}
.feature h3{margin:0 0 8px; font-size:18px}
.feature p{margin:0; color:var(--muted); line-height:1.65}

.about,
.contactGrid,
.splitCallout{
  display:grid;
  gap:18px;
  align-items:start;
}
.about{grid-template-columns:1.08fr .92fr}
.contactGrid{grid-template-columns:1.1fr .9fr}
.splitCallout{grid-template-columns:1fr .92fr}
.about__box{padding:22px}
.about__highlight{
  display:grid;
  gap:6px;
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--muted);
  line-height:1.7;
}
.pillRow{display:flex; flex-wrap:wrap; gap:10px; margin-top:18px}
.pill{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:#d8e4f8;
  font-size:13px;
  font-weight:700;
}

.form{padding:18px}
.form__row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.form__field{display:flex; flex-direction:column; gap:8px; margin-bottom:12px}
label{font-weight:800; font-size:13px; color:#d9e6fa}
input, select, textarea{
  border:1px solid rgba(255,255,255,.13);
  background:rgba(0,0,0,.20);
  color:var(--text);
  border-radius:16px;
  padding:13px 14px;
  outline:none;
  font:inherit;
}
input:focus, select:focus, textarea:focus{
  border-color:rgba(97,166,255,.55);
  box-shadow:0 0 0 4px rgba(97,166,255,.10);
}
textarea{min-height:148px; resize:vertical}
.form__hint{color:var(--muted); font-size:12px; line-height:1.6; margin:12px 0 0}
.hp{display:none !important}

.contactInfo{display:grid; gap:14px}
.contactInfo__card{padding:20px}
.contactInfo__card h3{margin:10px 0 8px; font-size:22px}
.contactInfo__card p{margin:0; color:var(--muted); line-height:1.7}
.contactInfo__card--primary{
  background:linear-gradient(135deg, rgba(97,166,255,.14), rgba(124,92,255,.12));
  border-color:var(--line-strong);
}
.contactInfo__list{display:grid; gap:12px; margin-top:16px}
.contactInfo__list div{display:flex; justify-content:space-between; gap:12px; border-bottom:1px solid rgba(255,255,255,.05); padding-bottom:10px}
.k{color:var(--muted); font-weight:700}
.v{font-weight:800; text-align:right}
.ctaSide__buttons{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}

.footer{
  padding:30px 0;
  border-top:1px solid rgba(255,255,255,.06);
  background:rgba(5,11,18,.46);
}
.footer__wrap{display:flex; justify-content:space-between; gap:18px; align-items:flex-start}
.footer__logo{height:36px; width:auto; margin-bottom:10px}
.footer__brand p{margin:0; color:var(--muted); line-height:1.7; max-width:58ch}
.footer__links{display:flex; gap:14px; flex-wrap:wrap; color:var(--muted); font-weight:700; font-size:14px}
.footer__links a:hover{color:var(--text)}
.footer__bottom{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.06);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}

@media (max-width: 1080px){
  .hero__grid--home,
  .hero__grid--internal,
  .about,
  .contactGrid,
  .splitCallout{grid-template-columns:1fr}
  .hero__content h1{max-width:14ch}
  .cards,
  .cards--products,
  .pillars{grid-template-columns:1fr 1fr}
}
@media (max-width: 780px){
  .nav__toggle{display:block}
  .nav{
    position:fixed;
    top:84px;
    right:16px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    width:min(290px, calc(100vw - 32px));
    padding:16px;
    border-radius:18px;
    border:1px solid var(--line);
    background:rgba(7,17,29,.95);
    box-shadow:var(--shadow);
  }
  .nav.nav--open{display:flex}
  .hero--home{padding-top:58px}
  .hero__stats{grid-template-columns:1fr}
  .cards,
  .cards--products,
  .pillars,
  .features{grid-template-columns:1fr}
  .form__row{grid-template-columns:1fr}
  .footer__wrap{flex-direction:column}
  .v{text-align:left}
}
