:root{
  --navy:#071427;
  --navy2:#0B1F3A;
  --panel:#0D2039;
  --panel2:#132B4B;
  --line:rgba(255,255,255,.10);
  --text:#F5F8FC;
  --muted:#B7C4D4;
  --blue:#1F6FEB;
  --blue2:#56A8FF;
  --silver:#B9C3CF;
  --max:1240px;
  --shadow:0 24px 70px rgba(0,0,0,.28);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top right, rgba(31,111,235,.18), transparent 24%),
    radial-gradient(circle at 20% 10%, rgba(86,168,255,.08), transparent 18%),
    linear-gradient(180deg, #06111F 0%, #08182C 42%, #06111D 100%);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

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

.container{
  width:min(var(--max), calc(100% - 44px));
  margin:0 auto;
}

.nav{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(6,17,31,.78);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

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

.brand img{
  height:62px;
  width:auto;
  filter:drop-shadow(0 8px 24px rgba(0,0,0,.18));
}

.menu{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:15px;
}

.menu a:hover,
.menu a.active{
  color:#fff;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 18px;
  border-radius:14px;
  border:1px solid var(--line);
  font-weight:700;
  letter-spacing:.01em;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:linear-gradient(135deg, var(--blue2), var(--blue));
  border:none;
  color:#fff;
  box-shadow:0 14px 30px rgba(31,111,235,.24);
}

.btn-secondary{
  background:rgba(255,255,255,.03);
}

.hero{
  padding:84px 0 56px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:36px;
  align-items:center;
}

.eyebrow{
  color:var(--blue2);
  font-size:12px;
  letter-spacing:.24em;
  text-transform:uppercase;
  font-weight:700;
  margin-bottom:16px;
}

h1{
  font-size:clamp(44px, 6.2vw, 76px);
  line-height:1.02;
  margin:0 0 18px;
  letter-spacing:-.04em;
  max-width:11ch;
}

.lead{
  font-size:18px;
  color:var(--muted);
  max-width:62ch;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.hero-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:34px;
}

.pill{
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px 18px;
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  color:#DDE7F2;
  font-size:14px;
}

.visual{
  position:relative;
  min-height:700px;
  border-radius:30px;
  overflow:hidden;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 78% 16%, rgba(74,163,255,.24), transparent 22%),
    linear-gradient(160deg, #0B2140, #09192E 58%, #0E2748);
  box-shadow:var(--shadow);
}

.visual:before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.75), transparent 100%);
}

.center-logo{
  position:absolute;
  top:110px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  z-index:1;
}

.center-logo img{
  width:100%;
  max-width:300px;
  height:auto;
  filter:drop-shadow(0 20px 40px rgba(0,0,0,.34));
  border-radius:18px;
}

.floating{
  position:absolute;
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  background:rgba(8,23,42,.88);
  backdrop-filter:blur(10px);
  padding:20px;
  box-shadow:0 20px 48px rgba(0,0,0,.2);
}

.status{
  top:24px;
  right:24px;
  width:260px;
  z-index:3;
}

.status .dot{
  display:inline-block;
  width:9px;
  height:9px;
  border-radius:50%;
  background:#2BD576;
  margin-right:8px;
}

.ops{
  left:24px;
  right:24px;
  bottom:120px;
  width:auto;
  max-width:360px;
  z-index:4;
}

.metric{
  right:24px;
  bottom:24px;
  width:180px;
  text-align:center;
  z-index:3;
}

.metric strong{
  display:block;
  font-size:40px;
  line-height:1;
  margin:6px 0;
}

.status p,
.ops p,
.metric span{
  margin:10px 0 0;
}

.section{
  padding:46px 0;
}

.section-header{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin-bottom:24px;
}

.smallcaps{
  color:var(--blue2);
  font-size:12px;
  letter-spacing:.24em;
  text-transform:uppercase;
  font-weight:700;
}

h2{
  margin:6px 0 0;
  font-size:clamp(30px,4.2vw,48px);
  line-height:1.06;
  letter-spacing:-.035em;
}

.sub{
  margin:0;
  color:var(--muted);
  max-width:58ch;
}

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

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.tile{
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px;
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  box-shadow:0 10px 28px rgba(0,0,0,.12);
}

.tile h3{
  margin:0 0 10px;
  font-size:20px;
}

.tile p,
.tile li{
  margin:0;
  color:var(--muted);
}

.tile ul{
  margin:10px 0 0 18px;
  padding:0;
}

.service-icon{
  width:56px;
  height:56px;
  border-radius:16px;
  margin-bottom:18px;
  padding:8px;
  background:linear-gradient(135deg, rgba(74,163,255,.16), rgba(31,111,235,.25));
  border:1px solid rgba(255,255,255,.10);
  object-fit:contain;
}

.proof{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
}

.proof-main{
  min-height:340px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:
    radial-gradient(circle at top right, rgba(74,163,255,.18), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}

.big-number{
  font-size:78px;
  line-height:1;
  letter-spacing:-.05em;
  font-weight:700;
}

.proof-side{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.kpi strong{
  display:block;
  font-size:30px;
  margin-bottom:6px;
}

.capability{
  display:grid;
  grid-template-columns:1fr auto;
  gap:16px;
  align-items:center;
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.03);
}

.about-band,
.cta-band{
  margin:34px 0 44px;
  padding:36px;
  border-radius:30px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(31,111,235,.22), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
  align-items:center;
  box-shadow:var(--shadow);
}

.about-logo{
  max-width:340px;
  margin-left:auto;
  opacity:.98;
  filter:drop-shadow(0 14px 32px rgba(0,0,0,.22));
  border-radius:20px;
}

.page-hero{
  padding:64px 0 14px;
}

.page-hero h1{
  max-width:none;
  font-size:clamp(40px,5vw,62px);
}

.page-hero .lead{
  max-width:70ch;
}

footer{
  border-top:1px solid var(--line);
  padding:28px 0 42px;
  color:var(--muted);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  flex-wrap:wrap;
}

.footer-brand img{
  height:48px;
  width:auto;
}

.contact-list p{
  margin:8px 0;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.input,
textarea{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
}

textarea{
  min-height:160px;
  resize:vertical;
}

.input::placeholder,
textarea::placeholder{
  color:#91A3BB;
}

@media (max-width:1000px){
  .hero-grid,
  .proof,
  .about-band,
  .cta-band,
  .grid-2{
    grid-template-columns:1fr;
  }

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

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

  .proof-side{
    grid-template-columns:1fr 1fr;
  }

  .hero-cards{
    grid-template-columns:1fr;
  }

  .about-logo{
    margin:0 auto;
  }
}

@media (max-width:760px){
  .nav-inner{
    min-height:84px;
  }

  .menu{
    display:none;
  }

  .brand img{
    height:52px;
  }

  .visual{
    min-height:620px;
  }

  .center-logo{
    top:110px;
    left:50%;
    transform:translateX(-50%);
  }

  .center-logo img{
    max-width:240px;
  }

  .status{
    top:18px;
    right:18px;
    width:220px;
  }

  .ops{
    left:18px;
    right:18px;
    bottom:120px;
    max-width:none;
    width:auto;
  }

  .metric{
    right:18px;
    bottom:18px;
    width:150px;
  }

  .proof-side,
  .grid-4,
  .form-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:560px){
  .container{
    width:min(var(--max), calc(100% - 26px));
  }

  .hero{
    padding-top:56px;
  }

  .visual{
    min-height:660px;
  }

  .status{
    left:18px;
    right:18px;
    width:auto;
  }

  .center-logo{
    top:120px;
  }

  .center-logo img{
    max-width:220px;
  }

  .ops{
    left:18px;
    right:18px;
    bottom:120px;
    width:auto;
  }

  .metric{
    right:18px;
    bottom:18px;
    width:140px;
  }
}
.icon{
  width:64px;
  height:64px;
  background-image:url('assets/icons.png');
  background-size:200% 200%;
  margin-bottom:16px;
}

/* Top Left */
.icon-dc{
  background-position:0% 0%;
}

/* Top Right */
.icon-gsoc{
  background-position:100% 0%;
}

/* Bottom Left */
.icon-risk{
  background-position:0% 100%;
}

/* Bottom Right */
.icon-program{
  background-position:100% 100%;
}
