@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root{
  --bg:#020b15;
  --dark:#03101d;
  --panel:#061727;
  --line:#1e3854;
  --blue:#2176ff;
  --blue2:#0f4cc2;
  --text:#ffffff;
  --muted:#b9c5d5;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Inter,system-ui,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
.container{width:min(1180px,92%);margin:auto}

.site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:50;
  background:rgba(2,11,21,.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{
  height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.brand img{width:240px;display:block}
nav{display:flex;align-items:center;gap:30px}
nav a{
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  font-size:.82rem;
  font-weight:800;
  opacity:.9;
  position:relative;
}
nav a.active:after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-24px;
  height:2px;
  background:var(--blue);
}
.header-btn{
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  font-weight:900;
  border:1px solid var(--blue);
  border-radius:3px;
  padding:14px 32px;
  font-size:.82rem;
}

.hero{
  min-height:645px;
  padding-top:92px;
  position:relative;
  overflow:hidden;
  background:linear-gradient(90deg,#020b15 0%,#061729 45%,#07111d 100%);
}
.hero-image{
  position:absolute;
  inset:92px 0 0 47%;
  background:
    linear-gradient(90deg,rgba(2,11,21,.15),rgba(2,11,21,.1)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1500&q=80') center/cover;
  filter:saturate(.65) contrast(1.15) brightness(.82);
}
.hero-angle{
  position:absolute;
  top:92px;
  bottom:0;
  left:32%;
  width:35%;
  background:linear-gradient(110deg,#020b15 0%,rgba(2,11,21,.95) 38%,rgba(2,11,21,.2) 39%,rgba(2,11,21,.05) 100%);
  clip-path:polygon(0 0,60% 0,28% 100%,0 100%);
}
.hero-content{
  position:relative;
  min-height:553px;
  display:flex;
  align-items:center;
}
.hero-copy{max-width:540px;padding-top:22px}
h1{
  font-size:clamp(3.2rem,5.1vw,5.25rem);
  line-height:1.08;
  letter-spacing:-.055em;
  font-weight:900;
}
h1 span,h2 span{color:var(--blue)}
.hero-copy p{
  margin:24px 0 30px;
  color:#d3dbe7;
  font-size:1.12rem;
}
.primary-btn{
  display:inline-flex;
  align-items:center;
  gap:18px;
  text-decoration:none;
  color:#fff;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  border:1px solid rgba(255,255,255,.12);
  padding:15px 28px;
  border-radius:4px;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.02em;
}

.trusted{
  background:#020b15;
  padding:24px 0 30px;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.trusted p{
  text-align:center;
  color:var(--blue);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:.8rem;
  margin-bottom:18px;
}
.logo-row{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  align-items:center;
  text-align:center;
}
.logo-row span{
  color:rgba(255,255,255,.68);
  font-size:1.35rem;
  font-weight:800;
  border-right:1px solid rgba(255,255,255,.18);
  padding:0 18px;
}
.logo-row span:last-child{border-right:0}

.services,.industries,.contact{
  background:linear-gradient(180deg,#03111f,#05192b);
  padding:78px 0;
}
.section-title{text-align:center;margin-bottom:34px}
.section-title p,.kicker{
  color:var(--blue);
  text-transform:uppercase;
  letter-spacing:.2em;
  font-weight:800;
  font-size:.82rem;
  margin-bottom:10px;
}
h2{
  font-size:clamp(2rem,3.2vw,3.1rem);
  line-height:1.12;
  letter-spacing:-.04em;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.service-card{
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(6,23,39,.96),rgba(3,16,29,.96));
  border-radius:4px;
  padding:28px;
  min-height:300px;
  transition:.25s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  border-color:var(--blue);
  box-shadow:0 24px 60px rgba(0,0,0,.28);
}
.icon{
  width:56px;height:56px;border-radius:50%;
  display:grid;place-items:center;
  border:1px solid #124d93;
  background:rgba(33,118,255,.12);
  color:#79b3ff;
  font-size:1.5rem;
  margin-bottom:24px;
}
.service-card h3{font-size:1.04rem;margin-bottom:18px}
.service-card p{color:#c7d1df;font-size:.94rem;margin-bottom:30px}
.service-card a{
  color:#4ea0ff;text-decoration:none;
  text-transform:uppercase;font-size:.82rem;font-weight:800;
}

.split-section,.approach,.insights{
  padding:86px 0;
  background:#020b15;
}
.split,.approach-grid,.contact-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:70px;
  align-items:start;
}
.split p:not(.kicker),.approach p,.insight-box p,.contact p{
  color:#c2ccda;
  font-size:1.05rem;
  margin-bottom:18px;
}
.pill-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.pill-grid span{
  border:1px solid var(--line);
  background:rgba(255,255,255,.035);
  padding:20px;
  border-radius:4px;
  text-align:center;
  font-weight:800;
}
.steps{display:grid;gap:16px}
.steps div{
  border:1px solid var(--line);
  background:rgba(255,255,255,.035);
  padding:24px;
  border-radius:4px;
}
.steps strong{color:var(--blue)}
.steps h3{margin:5px 0}

.insight-box{
  border:1px solid var(--line);
  background:linear-gradient(135deg,rgba(33,118,255,.14),rgba(255,255,255,.03));
  border-radius:4px;
  padding:45px;
  text-align:center;
}

form{
  display:grid;
  gap:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.035);
  padding:30px;
  border-radius:4px;
}
input,textarea{
  width:100%;
  background:#020b15;
  border:1px solid var(--line);
  color:#fff;
  padding:15px;
  font:inherit;
  border-radius:3px;
}
button{
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:#fff;
  border:0;
  padding:15px 22px;
  font:inherit;
  font-weight:900;
  text-transform:uppercase;
  border-radius:3px;
  cursor:pointer;
}

footer{
  background:#020811;
  border-top:1px solid rgba(255,255,255,.08);
  padding:28px 0;
}
.footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:#98a6b8;
}
.footer img{width:190px}

@media(max-width:980px){
  nav{display:none}
  .header-btn{display:none}
  .brand img{width:220px}
  .hero-image{inset:92px 0 0 0;opacity:.2}
  .hero-angle{display:none}
  .hero-copy{max-width:760px}
  .service-grid,.logo-row,.pill-grid{grid-template-columns:1fr}
  .logo-row span{border-right:0;border-bottom:1px solid rgba(255,255,255,.14);padding:14px}
  .split,.approach-grid,.contact-grid{grid-template-columns:1fr;gap:35px}
  .footer{flex-direction:column;align-items:flex-start}
}
