:root{
  color-scheme:dark;
  --black:#0A0A0A;
  --slate:#111827;
  --white:#FFFFFF;
  --muted:#9CA3AF;
  --purple:#7C3AED;
  --blue:#3B82F6;
  --line:rgba(255,255,255,.10);
  --line-strong:rgba(255,255,255,.16);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--white);
  background:
    radial-gradient(circle at 50% -10%,rgba(59,130,246,.16),transparent 26rem),
    radial-gradient(circle at 0% 18%,rgba(124,58,237,.12),transparent 22rem),
    linear-gradient(180deg,var(--black) 0%,#0d0f15 48%,var(--slate) 100%);
  letter-spacing:0;
}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  border-bottom:1px solid rgba(255,255,255,.07);
  background:rgba(10,10,10,.78);
  backdrop-filter:blur(22px);
}
.header-inner,.container,.site-footer{
  width:min(1160px,calc(100% - 40px));
  margin:0 auto;
}
.header-inner{
  min-height:74px;
  display:flex;
  align-items:center;
  gap:18px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand-mark{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border:1px solid var(--line-strong);
  border-radius:12px;
  background:
    linear-gradient(135deg,rgba(124,58,237,.26),rgba(59,130,246,.18)),
    rgba(255,255,255,.04);
  color:var(--white);
  font-size:15px;
  font-weight:900;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.16),0 16px 42px rgba(0,0,0,.28);
}
.brand-copy{
  display:grid;
  gap:2px;
  line-height:1.1;
}
.brand-copy strong{font-size:16px;font-weight:850}
.brand-copy small{color:var(--muted);font-size:11px;font-weight:750}
.site-nav{
  display:flex;
  align-items:center;
  gap:24px;
  margin-left:auto;
  color:var(--muted);
  font-size:14px;
  font-weight:750;
}
.site-nav a{padding:8px 0}
.site-nav a:hover,.site-nav a.is-active{color:var(--white)}
.menu-toggle{
  display:none;
  width:42px;
  height:42px;
  margin-left:auto;
  border:1px solid var(--line);
  border-radius:10px;
  background:rgba(255,255,255,.04);
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  border-radius:999px;
  background:var(--white);
}
.button{
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border:1px solid var(--line-strong);
  border-radius:10px;
  color:var(--white);
  background:rgba(255,255,255,.045);
  font-size:14px;
  font-weight:850;
  cursor:pointer;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.button:hover{transform:translateY(-1px);border-color:rgba(255,255,255,.25)}
.button-primary{
  border-color:transparent;
  background:linear-gradient(135deg,var(--purple),var(--blue));
  box-shadow:0 16px 40px rgba(59,130,246,.20);
}
.hero{
  min-height:calc(100svh - 74px);
  display:flex;
  align-items:center;
  padding:88px 0 112px;
}
.hero-content{max-width:850px}
.badge{
  width:max-content;
  max-width:100%;
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:26px;
  padding:7px 11px;
  border:1px solid var(--line);
  border-radius:999px;
  color:#d6d9e1;
  background:rgba(255,255,255,.045);
  font-size:12px;
  font-weight:800;
}
.badge:before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--purple),var(--blue));
}
.eyebrow{
  margin:0 0 12px;
  color:var(--muted);
  font-size:12px;
  font-weight:850;
  text-transform:uppercase;
}
h1,h2,h3,p{margin-top:0}
h1{
  max-width:900px;
  margin-bottom:22px;
  font-size:clamp(46px,8.5vw,92px);
  line-height:.94;
  font-weight:880;
}
.lead{
  max-width:650px;
  margin:0;
  color:#d9dde6;
  font-size:clamp(18px,3.6vw,23px);
  line-height:1.55;
}
.actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:36px;
}
.hero-proof{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
  color:var(--muted);
  font-size:13px;
  font-weight:750;
}
.hero-proof span{
  padding-left:13px;
  border-left:1px solid var(--line-strong);
}
.hero-proof span:first-child{padding-left:0;border-left:0}
.section,.page{
  padding:92px 0;
  border-top:1px solid rgba(255,255,255,.065);
}
.section-head{
  max-width:720px;
  margin-bottom:36px;
}
.section-head h2,.page-title{
  margin-bottom:0;
  font-size:clamp(32px,5vw,54px);
  line-height:1.03;
}
.section-head p,.page-lead{
  margin:16px 0 0;
  color:var(--muted);
  font-size:17px;
  line-height:1.65;
}
.grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.card{
  min-height:168px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:14px;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.card h3{
  margin-bottom:10px;
  font-size:21px;
  line-height:1.18;
}
.card p{
  margin-bottom:0;
  color:var(--muted);
  line-height:1.55;
}
.service-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:34px;
}
.card-index{
  color:rgba(255,255,255,.42);
  font-size:13px;
  font-weight:850;
}
.product-card{
  position:relative;
  overflow:hidden;
  min-height:230px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:
    radial-gradient(circle at 92% 8%,rgba(59,130,246,.20),transparent 14rem),
    linear-gradient(135deg,rgba(124,58,237,.13),rgba(255,255,255,.035));
}
.product-card:after{
  content:"";
  position:absolute;
  right:22px;
  bottom:22px;
  width:86px;
  height:86px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  background:linear-gradient(135deg,rgba(124,58,237,.32),rgba(59,130,246,.20));
}
.product-card h3,.product-card p,.product-card .eyebrow,.product-card .button{position:relative;z-index:1}
.reference-card{
  min-height:118px;
  display:flex;
  align-items:flex-end;
}
.reference-card h3{margin:0}
.contact-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.contact-band p{
  max-width:560px;
  margin:14px 0 0;
  color:var(--muted);
  line-height:1.65;
}
.contact-layout{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
}
.contact-form{
  display:grid;
  gap:14px;
}
label{
  display:block;
  margin-bottom:8px;
  color:#d8dce5;
  font-size:13px;
  font-weight:800;
}
input,textarea{
  width:100%;
  min-height:50px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:10px;
  outline:0;
  background:rgba(255,255,255,.04);
  color:var(--white);
}
textarea{min-height:136px;resize:vertical}
input:focus,textarea:focus{
  border-color:rgba(59,130,246,.72);
  box-shadow:0 0 0 4px rgba(59,130,246,.12);
}
.site-footer{
  padding:34px 0 44px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:14px;
}
.site-footer strong{color:var(--white)}
.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.footer-links a:hover{color:var(--white)}
@media (max-width:940px){
  .grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid-3{grid-template-columns:1fr}
}
@media (max-width:760px){
  .header-inner,.container,.site-footer{width:min(100% - 28px,1160px)}
  .header-inner{min-height:68px;flex-wrap:wrap;padding:12px 0}
  .brand-mark{width:36px;height:36px}
  .menu-toggle{display:block}
  .site-nav{
    display:none;
    width:100%;
    margin:0;
    padding:12px 0 4px;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }
  .site-nav.is-open{display:flex}
  .site-nav a{padding:12px 0;border-bottom:1px solid rgba(255,255,255,.06)}
  .header-cta{display:none}
  .hero{min-height:calc(100svh - 68px);padding:64px 0 86px}
  h1{font-size:clamp(42px,13vw,66px)}
  .lead{font-size:18px}
  .section,.page{padding:64px 0}
  .grid,.grid-3,.contact-layout{grid-template-columns:1fr}
  .card{min-height:auto;padding:22px}
  .contact-band,.site-footer{align-items:flex-start;flex-direction:column}
  .actions{flex-direction:column}
  .button{width:100%}
  .hero-proof{display:grid;gap:10px}
  .hero-proof span{padding-left:0;border-left:0}
}
