:root{
  --blue:#1E4E8C;
  --graphite:#2B2F36;
  --steel:#A7ADB4;
  --light:#E8EAED;
  --dark:#121A22;
  --white:#FFFFFF;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial,Helvetica,sans-serif;
  color:var(--graphite);
  background:var(--white);
  line-height:1.6;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(1180px,90%);
  margin:auto;
}

/* HEADER */

header{
  background:#fff;
  border-bottom:1px solid #e8eaed;
  position:sticky;
  top:0;
  z-index:100;
}

.nav{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo-mark{
  width:50px;
  height:50px;
  position:relative;
}

.logo-mark span{
  position:absolute;
  width:43px;
  height:10px;
  left:3px;
  transform:skewX(-35deg);
}

.logo-mark span:nth-child(1){
  top:4px;
  background:var(--blue);
}

.logo-mark span:nth-child(2){
  top:19px;
  background:#707981;
}

.logo-mark span:nth-child(3){
  top:34px;
  background:var(--graphite);
}

.brand-text strong{
  display:block;
  font-size:22px;
  line-height:1;
  letter-spacing:.8px;
}

.brand-text small{
  display:block;
  margin-top:5px;
  font-size:9px;
  letter-spacing:1.7px;
}

nav{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:13px;
  font-weight:700;
}

nav a:hover{
  color:var(--blue);
}

/* BUTTONS */

.btn{
  display:inline-block;
  padding:14px 22px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.7px;
  text-transform:uppercase;
  border:1px solid var(--blue);
  transition:.2s ease;
}

.btn-primary{
  background:var(--blue);
  color:#fff;
}

.btn-primary:hover{
  background:#173e70;
}

.btn-outline{
  margin-left:10px;
  border-color:rgba(255,255,255,.65);
  color:#fff;
}

.btn-outline:hover{
  background:rgba(255,255,255,.08);
}

/* HERO */

.hero{
  min-height:660px;
  display:flex;
  align-items:center;
  color:#fff;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg,#121a22 0%,rgba(18,26,34,.94) 45%,rgba(30,78,140,.62) 100%);
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.17;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px);
  background-size:55px 55px;
}

.hero::after{
  content:"";
  position:absolute;
  width:560px;
  height:560px;
  right:-100px;
  top:40px;
  border:1px solid rgba(255,255,255,.1);
  transform:rotate(45deg);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:760px;
}

.eyebrow{
  font-size:11px;
  letter-spacing:4px;
  text-transform:uppercase;
  margin-bottom:20px;
  color:#dce4eb;
}

h1{
  font-size:clamp(44px,6vw,76px);
  line-height:1.03;
  letter-spacing:-2.5px;
  margin-bottom:26px;
}

.hero p{
  max-width:660px;
  font-size:18px;
  color:#e3e8ec;
  margin-bottom:34px;
}

/* GENERAL SECTIONS */

section{
  padding:90px 0;
}

.section-head{
  margin-bottom:42px;
}

.section-head small{
  color:var(--blue);
  font-size:11px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
}

.section-head h2{
  margin-top:7px;
  font-size:clamp(32px,4vw,48px);
  line-height:1.15;
}

/* SOLUTIONS */

.solutions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.solution{
  min-height:380px;
  padding:46px;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  position:relative;
  overflow:hidden;
}

.solution:first-child{
  background:
    linear-gradient(to top,rgba(18,26,34,.98),rgba(30,78,140,.5)),
    #83919c;
}

.solution:last-child{
  background:
    linear-gradient(to top,rgba(18,26,34,.98),rgba(43,47,54,.45)),
    #646d74;
}

.solution::before{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  right:-40px;
  top:-40px;
  border:1px solid rgba(255,255,255,.18);
  transform:rotate(45deg);
}

.solution h3{
  font-size:31px;
  margin-bottom:12px;
  position:relative;
}

.solution p{
  max-width:460px;
  color:#e8edf0;
  position:relative;
}

/* CAPABILITIES */

.capabilities{
  background:var(--dark);
  color:#fff;
}

.capabilities-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid rgba(255,255,255,.14);
  border-left:1px solid rgba(255,255,255,.14);
}

.capability{
  padding:28px;
  min-height:145px;
  border-right:1px solid rgba(255,255,255,.14);
  border-bottom:1px solid rgba(255,255,255,.14);
}

.capability strong{
  display:block;
  margin-bottom:6px;
}

.capability span{
  color:#b9c3ca;
  font-size:14px;
}

/* PROCESS */

.process{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:34px;
}

.process-item{
  border-top:3px solid var(--blue);
  padding-top:22px;
}

.process-number{
  font-size:34px;
  font-weight:700;
  color:var(--steel);
  margin-bottom:14px;
}

.process-item h3{
  margin-bottom:8px;
}

/* CTA */

.cta{
  background:var(--graphite);
  color:#fff;
  padding:78px 0;
}

.cta-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}

.cta h2{
  font-size:clamp(34px,4vw,54px);
  line-height:1.1;
  margin-bottom:10px;
}

/* FOOTER */

footer{
  background:#f5f6f7;
  padding:55px 0 32px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:50px;
}

footer h4{
  margin-bottom:12px;
}

footer p{
  font-size:14px;
  color:#636c73;
}

.copyright{
  margin-top:42px;
  padding-top:20px;
  border-top:1px solid #d9dde0;
  font-size:11px;
  letter-spacing:1px;
}

/* MOBILE */

@media(max-width:850px){

  nav{
    display:none;
  }

  .solutions,
  .process,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .capabilities-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero{
    min-height:570px;
  }

  .cta-inner{
    display:block;
  }

  .cta .btn{
    margin-top:25px;
  }
}

@media(max-width:520px){

  .capabilities-grid{
    grid-template-columns:1fr;
  }

  h1{
    font-size:44px;
  }

  .btn{
    width:100%;
    text-align:center;
    margin:10px 0 0;
  }

  .solution{
    min-height:310px;
    padding:30px;
  }

  .brand-text small{
    display:none;
  }
}
