:root{
  --navy-950:#081326;
  --navy-900:#0b2447;
  --navy-800:#123164;
  --navy-700:#1a4080;
  --blue-600:#2f6fed;
  --blue-500:#4d84f2;
  --blue-100:#e4edff;
  --blue-50:#f3f7ff;
  --slate-900:#101828;
  --slate-600:#475467;
  --slate-400:#98a2b3;
  --border:#e6eaf2;
  --gray-50:#f8fafc;
  --white:#ffffff;
  --radius:12px;
  --radius-sm:8px;
  --maxw:1180px;
  --shadow-sm: 0 1px 2px rgba(16,24,40,0.06);
  --shadow-md: 0 4px 24px rgba(16,24,40,0.08);
  --shadow-lg: 0 16px 48px rgba(16,24,40,0.12);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

body{
  margin:0;
  font-family:'Inter', sans-serif;
  color:var(--slate-600);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3{
  font-family:'Sora', sans-serif;
  color:var(--slate-900);
  line-height:1.15;
  margin:0;
  letter-spacing:-0.01em;
  font-weight:700;
}

.mono{
  font-family:'IBM Plex Mono', monospace;
  letter-spacing:0.06em;
}

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

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 32px;
}

:focus-visible{
  outline:3px solid var(--blue-500);
  outline-offset:3px;
}

/* ---------- NAV ---------- */
header.site-nav{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:16px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--slate-900);
  text-decoration:none;
}
.brand img{ height:30px; width:auto; }
.brand-name{
  font-family:'Sora', sans-serif;
  font-weight:700;
  font-size:16.5px;
  letter-spacing:0.005em;
}
.brand-name span{ color:var(--blue-600); }

nav.primary{ display:flex; align-items:center; gap:8px; }
nav.primary a{
  color:var(--slate-600);
  text-decoration:none;
  font-size:14.5px;
  font-weight:500;
  padding:9px 14px;
  border-radius:var(--radius-sm);
  transition:color .15s ease, background .15s ease;
}
nav.primary a:not(.nav-cta):hover{ color:var(--slate-900); background:var(--gray-50); }
.nav-cta{
  background:var(--navy-900) !important;
  color:var(--white) !important;
  margin-left:8px;
  font-weight:600 !important;
}
.nav-cta:hover{ background:var(--blue-600) !important; }

.nav-toggle{
  display:none;
  background:none;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  width:40px;
  height:36px;
  padding:0;
  cursor:pointer;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:var(--slate-900);
  transition:transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero{
  position:relative;
  background:linear-gradient(180deg, var(--blue-50) 0%, var(--white) 78%);
  overflow:hidden;
  padding:88px 0 96px;
}
.hero-inner{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  align-items:center;
  position:relative;
  z-index:2;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--blue-600);
  background:var(--white);
  border:1px solid var(--blue-100);
  padding:7px 14px;
  border-radius:999px;
  margin-bottom:24px;
  box-shadow:var(--shadow-sm);
}
.eyebrow .dot{
  width:7px; height:7px; border-radius:50%;
  background:var(--blue-600);
  box-shadow:0 0 0 0 rgba(47,111,237,0.5);
  animation:pulse 2s infinite;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(47,111,237,0.45); }
  70%{ box-shadow:0 0 0 8px rgba(47,111,237,0); }
  100%{ box-shadow:0 0 0 0 rgba(47,111,237,0); }
}
.hero h1{
  font-size:clamp(36px, 4.6vw, 56px);
  max-width:15ch;
}
.hero h1 .accent{ color:var(--blue-600); }
.hero p.lede{
  font-size:17.5px;
  line-height:1.65;
  color:var(--slate-600);
  max-width:48ch;
  margin:22px 0 34px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 24px;
  border-radius:var(--radius-sm);
  font-family:'Inter', sans-serif;
  font-size:14.5px;
  font-weight:600;
  text-decoration:none;
  transition:transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  cursor:pointer;
  border:1px solid transparent;
}
.btn:hover{ transform:translateY(-1px); }
.btn-primary{ background:var(--navy-900); color:var(--white); box-shadow:var(--shadow-md); }
.btn-primary:hover{ background:var(--blue-600); }
.btn-ghost{ border-color:var(--border); color:var(--slate-900); background:var(--white); }
.btn-ghost:hover{ border-color:var(--slate-400); }

.hero-meta{
  margin-top:56px;
  display:flex;
  gap:40px;
  flex-wrap:wrap;
  border-top:1px solid var(--border);
  padding-top:26px;
}
.hero-meta div .k{ font-size:11px; color:var(--blue-600); margin-bottom:6px; font-family:'IBM Plex Mono',monospace; letter-spacing:0.06em; text-transform:uppercase; }
.hero-meta div .v{ font-size:14.5px; font-weight:600; color:var(--slate-900); }

/* Hero graphic */
.hero-graphic{
  position:relative;
  height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-ring{
  position:absolute;
  border-radius:50%;
  border:1px solid var(--blue-100);
}
.ring-1{ width:420px; height:420px; }
.ring-2{ width:320px; height:320px; border-style:dashed; border-color:#cfe0ff; }
.hero-orb{
  width:220px; height:220px;
  border-radius:50%;
  background:radial-gradient(circle at 32% 28%, #ffffff 0%, var(--blue-100) 55%, #dfeaff 100%);
  box-shadow:var(--shadow-lg);
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-orb img{ width:104px; height:auto; }
.floating-chip{
  position:absolute;
  display:flex;
  align-items:center;
  gap:8px;
  background:var(--white);
  border:1px solid var(--border);
  box-shadow:var(--shadow-md);
  border-radius:999px;
  padding:9px 14px 9px 10px;
  font-size:12.5px;
  font-weight:600;
  color:var(--slate-900);
  animation:float 5s ease-in-out infinite;
}
.floating-chip .swatch{ width:8px; height:8px; border-radius:50%; background:var(--blue-600); flex:none; }
.chip-1{ top:6%; left:-4%; animation-delay:0s; }
.chip-2{ top:62%; left:-10%; animation-delay:1.2s; }
.chip-3{ top:14%; right:-8%; animation-delay:0.6s; }
.chip-4{ top:70%; right:-6%; animation-delay:1.8s; }
@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

/* ---------- FACT STRIP ---------- */
.fact-strip{
  background:var(--white);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:36px 0;
}
.fact-strip .wrap{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.fact-strip .item{ text-align:center; }
.fact-strip .num{
  font-family:'Sora', sans-serif;
  font-weight:700;
  font-size:26px;
  color:var(--navy-900);
}
.fact-strip .lbl{ font-size:13px; color:var(--slate-600); margin-top:4px; }

/* ---------- MISSION ---------- */
.mission{ padding:104px 0; background:var(--white); }
.mission-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:center;
}
.mission .tag{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  letter-spacing:0.1em;
  color:var(--blue-600);
  text-transform:uppercase;
  display:block;
  margin-bottom:14px;
}
.mission h2{ font-size:clamp(26px,3.2vw,36px); max-width:15ch; margin-bottom:20px; }
.mission p{ font-size:16px; line-height:1.75; color:var(--slate-600); }
.mission-card{
  background:var(--gray-50);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:36px;
}
.mission-card .row{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:16px 0;
  border-bottom:1px solid var(--border);
}
.mission-card .row:last-child{ border-bottom:none; padding-bottom:0; }
.mission-card .row:first-child{ padding-top:0; }
.mission-card .icon-badge{
  width:38px; height:38px;
  border-radius:10px;
  background:var(--blue-100);
  display:flex; align-items:center; justify-content:center;
  flex:none;
}
.mission-card .row-title{ font-weight:700; color:var(--slate-900); font-size:15px; margin-bottom:3px; }
.mission-card .row-sub{ font-size:13.5px; color:var(--slate-600); }

/* ---------- SECTION HEAD ---------- */
.section{ padding:100px 0; }
.section-head{
  max-width:60ch;
  margin:0 auto 56px;
  text-align:center;
}
.section-head .tag{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  letter-spacing:0.1em;
  color:var(--blue-600);
  text-transform:uppercase;
  margin-bottom:14px;
  display:block;
}
.section-head h2{ font-size:clamp(28px,3.6vw,38px); }
.section-head p{ margin-top:14px; font-size:16px; color:var(--slate-600); }

/* ---------- SERVICES ---------- */
.services{ background:var(--gray-50); }
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.service-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:32px 28px;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:#d8e2f5; }
.service-card .icon-badge{
  width:48px; height:48px;
  border-radius:12px;
  background:var(--blue-100);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.service-card h3{
  font-size:17px;
  font-weight:700;
  color:var(--slate-900);
  margin-bottom:9px;
}
.service-card p{
  font-size:14.5px;
  line-height:1.6;
  color:var(--slate-600);
  margin:0;
}

.contract-banner{
  margin-top:48px;
  background:var(--navy-900);
  color:var(--white);
  padding:20px 32px;
  text-align:center;
  line-height:1.7;
  border-radius:var(--radius);
  font-size:14px;
  font-weight:500;
}
.contract-banner strong{ color:var(--blue-500); font-weight:700; }

/* ---------- VALUES ---------- */
.values{ background:var(--white); }
.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.value-card{
  padding:32px 28px;
  border-radius:var(--radius);
  background:var(--blue-50);
  border:1px solid var(--blue-100);
}
.value-card .icon-badge{
  width:46px; height:46px;
  border-radius:12px;
  background:var(--white);
  box-shadow:var(--shadow-sm);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.value-card h3{ font-size:17px; margin-bottom:8px; }
.value-card p{ font-size:14.5px; line-height:1.6; color:var(--slate-600); margin:0; }

/* ---------- LOCATIONS ---------- */
.locations{ background:var(--gray-50); }
.timeline{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.stop{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px 26px 26px;
  position:relative;
}
.stop .skyline{
  width:100%;
  height:96px;
  margin-bottom:18px;
}
.stop .city{
  font-weight:700;
  font-size:18px;
  color:var(--slate-900);
  margin-bottom:3px;
}
.stop .country{
  font-size:13px;
  color:var(--slate-600);
  margin-bottom:16px;
}
.stop .launch-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'IBM Plex Mono', monospace;
  font-size:11.5px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--navy-900);
  background:var(--blue-50);
  border:1px solid var(--blue-100);
  padding:7px 13px;
  border-radius:999px;
}
.stop .launch-tag .dot{ width:6px; height:6px; border-radius:50%; background:var(--blue-600); }

/* ---------- CONTACT / CTA ---------- */
.cta-section{
  background:var(--navy-900);
  color:var(--white);
  padding:96px 0;
  position:relative;
  overflow:hidden;
}
.cta-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 85% 20%, rgba(79,132,242,0.25), transparent 55%);
  pointer-events:none;
}
.cta-inner{ position:relative; z-index:1; text-align:center; max-width:640px; margin:0 auto; }
.cta-inner .tag{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  letter-spacing:0.1em;
  color:var(--blue-500);
  text-transform:uppercase;
  display:block;
  margin-bottom:16px;
}
.cta-inner h2{ color:var(--white); font-size:clamp(28px,4vw,40px); margin-bottom:16px; }
.cta-inner p{ color:rgba(255,255,255,0.7); font-size:16px; line-height:1.6; margin-bottom:32px; }
.cta-inner .btn-primary{ background:var(--blue-600); }
.cta-inner .btn-primary:hover{ background:var(--blue-500); }
.cta-inner .btn-ghost{ background:transparent; border-color:rgba(255,255,255,0.25); color:var(--white); }
.cta-inner .btn-ghost:hover{ border-color:rgba(255,255,255,0.6); }
.cta-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---------- FOOTER ---------- */
footer{
  background:var(--navy-950);
  color:rgba(255,255,255,0.55);
  padding:64px 0 32px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-brand{ display:flex; align-items:center; gap:10px; color:var(--white); margin-bottom:14px; }
.footer-brand img{ height:24px; }
.footer-brand span{ font-family:'Sora',sans-serif; font-weight:700; font-size:15px; }
.footer-col h4{
  color:rgba(255,255,255,0.9);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:0.06em;
  font-family:'IBM Plex Mono', monospace;
  margin:0 0 16px;
}
.footer-col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px; }
.footer-col a{ text-decoration:none; color:rgba(255,255,255,0.6); font-size:14px; transition:color .15s ease; }
.footer-col a:hover{ color:var(--white); }
.footer-desc{ font-size:14px; line-height:1.6; color:rgba(255,255,255,0.5); max-width:32ch; }
.footer-bottom{
  padding-top:28px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  font-size:13px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-graphic{ display:none; }
  .mission-inner{ grid-template-columns:1fr; gap:36px; }
  .services-grid{ grid-template-columns:1fr 1fr; }
  .values-grid{ grid-template-columns:1fr; }
  .timeline{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .fact-strip .wrap{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 880px){
  .nav-toggle{ display:flex; }
  nav.primary{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    flex-direction:column;
    align-items:stretch;
    gap:2px;
    background:var(--white);
    border-bottom:1px solid var(--border);
    max-height:0;
    overflow:hidden;
    transition:max-height .25s ease;
    padding:0 16px;
  }
  nav.primary.open{ max-height:320px; padding:12px 16px 16px; }
  nav.primary a{ width:100%; padding:12px 14px; }
  .nav-cta{ margin-left:0; text-align:center; justify-content:center; }
}
@media (max-width: 560px){
  .wrap{ padding:0 20px; }
  .hero{ padding:64px 0 56px; }
  .hero-meta{ flex-direction:column; gap:16px; }
  .services-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:32px; }
  .footer-bottom{ flex-direction:column; }
}
