
:root{
  --bg:#04111a;
  --bg-2:#071824;
  --bg-3:#091c29;
  --panel:#081823;
  --panel-2:#0a1d2a;
  --line:rgba(148,172,188,.17);
  --line-strong:rgba(203,166,108,.42);
  --gold:#d0a86c;
  --gold-2:#b98e53;
  --text:#f0f1ee;
  --muted:#a8b3bd;
  --muted-2:#7f909d;
  --mono:"IBM Plex Mono","SFMono-Regular",Consolas,"Liberation Mono",monospace;
  --sans:"Inter",ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  --max:1180px;
  --pad:22px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 78% 10%,rgba(23,54,74,.20),transparent 27%),
    linear-gradient(180deg,#06131d 0%,#04111a 100%);
  color:var(--text);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.55;
  letter-spacing:-.005em;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:50;
  pointer-events:none;
  opacity:.08;
  background-image:
    linear-gradient(rgba(255,255,255,.024) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.024) 1px,transparent 1px);
  background-size:70px 70px;
  mask-image:linear-gradient(to bottom,#000 0%,rgba(0,0,0,.78) 50%,transparent 92%);
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
svg{display:block}
button,input,textarea{font:inherit}
.container{width:min(var(--max),calc(100% - 44px));margin-inline:auto}
.section-border{border-bottom:1px solid var(--line)}
.section{padding:44px 0 48px}
p{margin:0 0 16px;color:var(--muted);font-size:15px;line-height:1.57}
strong{color:var(--text);font-weight:700}
h1,h2,h3{margin:0;color:var(--text)}
h1{
  font-size:clamp(42px,5vw,68px);
  line-height:.99;
  letter-spacing:-.045em;
  font-weight:700;
}
h2{
  font-size:clamp(31px,3.25vw,44px);
  line-height:1.04;
  letter-spacing:-.032em;
  font-weight:700;
}
h3{
  font-size:15px;
  line-height:1.25;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:700;
}
.eyebrow,.micro{
  font-family:var(--mono);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-weight:700;
}
.eyebrow{
  color:var(--gold);
  font-size:11px;
  line-height:1.35;
}
.micro{
  color:#8da0af;
  font-size:9px;
  line-height:1.45;
}
.eyebrow.large{
  font-size:17px;
  line-height:1.34;
  letter-spacing:.13em;
}
.eyebrow.large span{color:#f0f1ee}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(4,14,22,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  height:58px;
  display:flex;
  align-items:center;
  gap:24px;
}
.brand{width:138px;flex:none}
.brand img{width:100%;height:auto;object-fit:contain}
.primary-nav{
  margin-left:auto;
  display:flex;
  gap:27px;
  align-items:center;
}
.primary-nav a,.site-footer nav a{
  font:600 9px/1.1 var(--mono);
  text-transform:uppercase;
  letter-spacing:.15em;
  color:#a1aeb8;
  transition:.18s ease;
}
.primary-nav a:hover,.site-footer nav a:hover{color:var(--gold)}
.nav-toggle{display:none}
.nav-cta{margin-left:4px}

/* BUTTONS */
.button{
  min-height:39px;
  padding:0 19px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(208,168,108,.62);
  font:700 9px/1 var(--mono);
  text-transform:uppercase;
  letter-spacing:.16em;
  transition:.18s ease;
}
.button-solid{
  background:var(--gold);
  color:#09131b;
}
.button-solid:hover{background:#dfba83;transform:translateY(-1px)}
.button-outline{
  background:rgba(6,18,27,.28);
  color:#f0f1ee;
}
.button-outline:hover{
  background:rgba(208,168,108,.07);
  border-color:var(--gold);
}

/* HERO */
.hero{
  min-height:510px;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:url("../images/hero.webp") 71% 54%/cover no-repeat;
  filter:saturate(.75) brightness(.43) contrast(1.07);
  transform:scale(1.01);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(4,14,22,.99) 0%,rgba(4,14,22,.93) 33%,rgba(4,14,22,.61) 57%,rgba(4,14,22,.48) 76%,rgba(4,14,22,.63) 100%),
    linear-gradient(180deg,rgba(2,11,18,.15),rgba(2,11,18,.59));
}
.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:58px;
  align-items:center;
}
.hero-copy{padding:40px 0 42px}
.hero-copy .eyebrow{margin-bottom:14px}
.hero h1 span{color:var(--gold)}
.hero-intro{
  max-width:590px;
  border-left:1px solid var(--gold);
  padding-left:16px;
  margin-top:18px;
}
.hero-intro p{font-size:14px;line-height:1.58;margin-bottom:8px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}
.hero-question{
  justify-self:end;
  width:min(100%,310px);
  padding:17px 18px 16px;
  border:1px solid rgba(208,168,108,.58);
  background:rgba(4,14,22,.78);
  box-shadow:0 18px 50px rgba(0,0,0,.22);
}
.hero-question p{
  margin:8px 0 0;
  color:#f0f1ee;
  font:600 13px/1.55 var(--mono);
  letter-spacing:.01em;
}

/* TACTICAL CORNERS */
.hero::before,.split-panel::before,.operational::before,.section::before,.final-cta::before{
  content:"";
  position:absolute;
  left:14px;
  top:10px;
  width:12px;
  height:12px;
  border-left:1px solid rgba(208,168,108,.58);
  border-top:1px solid rgba(208,168,108,.58);
  pointer-events:none;
}
.hero::after,.split-panel::after,.operational::after,.section::after,.final-cta::after{
  content:"";
  position:absolute;
  right:14px;
  bottom:10px;
  width:12px;
  height:12px;
  border-right:1px solid rgba(208,168,108,.58);
  border-bottom:1px solid rgba(208,168,108,.58);
  pointer-events:none;
}
.split-panel,.operational,.section,.final-cta{position:relative}

/* THINK LIKE ADVERSARY */
.split-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  min-height:390px;
}
.panel-copy{
  padding:42px 42px 36px 0;
}
.panel-copy .eyebrow{margin-bottom:8px}
.panel-copy h2{
  max-width:510px;
  margin-bottom:16px;
}
.panel-copy p{font-size:14px;max-width:560px}
.panel-image.recon{
  background:
    linear-gradient(180deg,rgba(4,15,22,.05),rgba(4,15,22,.20)), url("../images/surveillance-camera.webp") center/cover no-repeat;
  filter:saturate(.58) brightness(.57);
  min-height:390px;
  position:relative;
}
/* OPERATIONAL */
.operational{
  background:
    linear-gradient(90deg,rgba(8,25,36,.8),rgba(5,18,27,.62)),
    repeating-radial-gradient(circle at 42% 50%,transparent 0 14px,rgba(113,148,166,.05) 15px 16px);
}
.operational-grid{
  display:grid;
  grid-template-columns:1.17fr .83fr;
  gap:62px;
  align-items:center;
}
.operational p{font-size:13px}
.question-list{
  border-left:1px solid var(--line);
  padding-left:12px;
}
.question-list div{
  min-height:47px;
  display:flex;
  align-items:center;
  gap:13px;
  border-bottom:1px solid var(--line);
  color:#d7dde0;
  font-size:12px;
}
.question-list .mini-icon{
  width:24px;height:24px;flex:0 0 24px;
  color:var(--gold);
}
.question-list .mini-icon svg,
.card-icon svg,
.cap-icon svg,
.feature-icon svg{
  width:100%;height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:1.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* THE ANALYSIS */
.section-head{margin-bottom:18px}
.section-head p{font-size:13px;margin-top:5px}
.four-col{display:grid;grid-template-columns:repeat(4,1fr)}
.card{
  padding:8px 22px 0;
  border-left:1px solid var(--line);
}
.card:first-child{border-left:none;padding-left:0}
.card-icon{
  width:34px;height:34px;
  color:var(--gold);
  margin-bottom:12px;
}
.card p{font-size:12.5px;line-height:1.48;margin-bottom:9px}

/* TEST WHAT WE CAN */
.testing{padding-bottom:24px}
.testing-grid{
  display:grid;
  grid-template-columns:1.32fr .50fr;
  gap:0;
}
.testing-grid>div:first-child{
  padding-right:30px;
}
.testing p{font-size:12.5px;line-height:1.48}
.day-night-copy{
  border-left:1px solid var(--line);
  padding-left:28px;
}
.day-night-copy .eyebrow{
  font-size:16px;
  line-height:1.4;
  letter-spacing:.12em;
}
.cap-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7px 25px;
  margin:18px 0 15px;
}
.cap-item{
  display:grid;
  grid-template-columns:28px 1fr;
  align-items:center;
  gap:10px;
  min-height:35px;
}
.cap-icon{
  width:24px;height:24px;color:var(--gold)
}
.cap-item span:last-child{
  color:#d9dfe2;
  font-size:12px;
  line-height:1.32;
}
.fine-print{font-size:11.5px!important}

/* SLIDER */
.slider-wrap{margin-top:16px}
.comparison{
  position:relative;
  aspect-ratio:16/4.2;
  overflow:hidden;
  border:1px solid rgba(208,168,108,.43);
  background:#07131c;
  box-shadow:0 12px 32px rgba(0,0,0,.24);
}
.comparison-image{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;object-position:center 53%;
  user-select:none;pointer-events:none;
}
.comparison-day{position:absolute;inset:0;width:50%;overflow:hidden}
.comparison-day .comparison-image{max-width:none}
.comparison-line{
  position:absolute;top:0;bottom:0;left:50%;
  width:1px;background:#e9e4db;transform:translateX(-50%)
}
.comparison-handle{
  position:absolute;left:50%;top:50%;
  transform:translate(-50%,-50%);
  width:44px;height:44px;border-radius:50%;
  border:1px solid #ebe5dc;background:#07131c;color:white;
  font:700 18px/1 var(--mono);
  cursor:ew-resize;
  box-shadow:0 7px 22px rgba(0,0,0,.36);
}
.slider-label{
  position:absolute;top:10px;
  padding:7px 10px;
  background:rgba(4,14,22,.90);
  border:1px solid rgba(208,168,108,.40);
  font:700 8px/1 var(--mono);
  letter-spacing:.16em;
  text-transform:uppercase;
}
.slider-label-left{left:10px}
.slider-label-right{right:10px}

/* THREE FEATURES */
.evidence{padding:25px 0 30px}
.three-col{display:grid;grid-template-columns:repeat(3,1fr)}
.feature{
  padding:5px 24px 0;
  border-left:1px solid var(--line);
}
.feature:first-child{border-left:none;padding-left:0}
.feature-icon{
  width:31px;height:31px;color:var(--gold);margin-bottom:8px
}
.feature .eyebrow{font-size:9px}
.feature p{font-size:11.5px;line-height:1.45}

/* PARTNERS */
.partner-strip{padding:26px 0}
.partner-grid{
  display:grid;
  grid-template-columns:1fr 220px;
  gap:50px;
  align-items:center;
}
.partner-grid p{
  margin-bottom:7px;
  font-size:11.5px;
  line-height:1.5;
}
.partner-lines{
  border-left:1px solid var(--gold);
  padding-left:20px;
  display:flex;flex-direction:column;gap:2px;
}
.partner-lines strong{
  color:var(--gold);
  font-size:12px;
}

/* CTA */
.final-cta{
  padding:38px 0 40px;
  background:
    linear-gradient(90deg,rgba(4,15,23,.94),rgba(5,25,38,.74)),
    url("../images/night.webp") center 72%/cover no-repeat;
}
.final-grid{
  display:grid;
  grid-template-columns:1fr 300px;
  gap:48px;
  align-items:center;
}
.final-grid h2{
  max-width:760px;
  font-size:clamp(30px,3.7vw,46px);
  margin:7px 0 12px;
}
.final-grid p{font-size:13px}
.contact-box{
  display:flex;flex-direction:column;gap:8px;align-items:stretch
}
.contact-box>a:not(.button){
  font:600 10px/1.4 var(--mono);
  color:#b8c2c9;
}
.contact-box>a:not(.button):hover{color:var(--gold)}

/* FOOTER */
.site-footer{
  padding:22px 0 28px;
  background:#04111a;
}
.footer-grid{
  display:grid;
  grid-template-columns:120px 1fr 210px;
  gap:26px;
  align-items:center;
}
.footer-grid img{width:128px;height:auto;object-fit:contain}
.site-footer nav{
  display:flex;
  justify-content:center;
  gap:22px;
}
.site-footer .micro{text-align:right}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .6s ease,transform .6s ease
}
.reveal.visible{opacity:1;transform:none}

/* SMALL GOLD DIVIDERS / BRACKETS */
.hero-question,
.comparison{
  position:relative;
}
.hero-question::before,.comparison::before{
  content:"";
  position:absolute;left:-1px;top:-1px;width:13px;height:13px;
  border-left:1px solid var(--gold);
  border-top:1px solid var(--gold);
  z-index:3;pointer-events:none;
}
.hero-question::after,.comparison::after{
  content:"";
  position:absolute;right:-1px;bottom:-1px;width:13px;height:13px;
  border-right:1px solid var(--gold);
  border-bottom:1px solid var(--gold);
  z-index:3;pointer-events:none;
}

/* RESPONSIVE */
@media(max-width:900px){
  .nav-toggle{
    display:block;margin-left:auto;
    border:1px solid var(--line);
    background:none;color:var(--text);
    padding:8px 10px;font-size:11px
  }
  .primary-nav{
    display:none;
    position:absolute;
    left:0;right:0;top:58px;
    background:#06131c;
    border-bottom:1px solid var(--line);
    padding:16px 22px;
    flex-direction:column;
    align-items:flex-start
  }
  .primary-nav.open{display:flex}
  .nav-cta{display:none}
  .hero-grid,.split-grid,.operational-grid,.testing-grid,.partner-grid,.final-grid{
    grid-template-columns:1fr
  }
  .hero-question{justify-self:start}
  .panel-copy{padding-right:0}
  .panel-image.recon{min-height:290px}
  .four-col,.three-col{grid-template-columns:1fr 1fr}
  .day-night-copy{border-left:none;border-top:1px solid var(--line);padding:22px 0 0}
  .testing-grid>div:first-child{padding-right:0}
  .comparison{aspect-ratio:16/7}
  .footer-grid{grid-template-columns:1fr}
  .site-footer nav{justify-content:flex-start;flex-wrap:wrap}
  .site-footer .micro{text-align:left}
}
@media(max-width:620px){
  .container{width:min(100% - 28px,var(--max))}
  .hero{min-height:650px}
  .hero-copy{padding-top:26px}
  .hero-grid{gap:24px}
  h1{font-size:44px}
  h2{font-size:31px}
  .hero-question{margin-bottom:24px}
  .four-col,.three-col{grid-template-columns:1fr}
  .card,.card:first-child,.feature,.feature:first-child{
    border-left:none;
    border-top:1px solid var(--line);
    padding:20px 0
  }
  .card:first-child,.feature:first-child{border-top:none}
  .cap-grid{grid-template-columns:1fr}
  .comparison{aspect-ratio:4/3}
  .partner-grid{gap:20px}
}


/* ===== LIVE TYPOGRAPHY + ICON CONSISTENCY FIX ===== */
html,body{
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}
body{
  font-size:15px;
  font-weight:400;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}
h1,h2,h3,
.hero-question p,
.primary-nav a,
.site-footer nav a,
.button,
.eyebrow,
.micro,
.slider-label{
  font-synthesis:none;
}
h1,h2{
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}
h1{font-weight:700}
h2{font-weight:700}
h3{font-weight:700}
p{
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:14px;
  line-height:1.56;
}
.eyebrow,.micro,
.primary-nav a,.site-footer nav a,
.button,.hero-question p,.slider-label{
  font-family:"IBM Plex Mono","SFMono-Regular",Consolas,"Liberation Mono",monospace;
}
.eyebrow{
  font-size:11px;
  line-height:1.35;
  letter-spacing:.155em;
}
.eyebrow.large{
  font-size:16px;
  line-height:1.36;
  letter-spacing:.12em;
}
.primary-nav a,.site-footer nav a{
  font-size:9px;
  line-height:1.2;
  letter-spacing:.145em;
}
.button{
  font-size:9px;
  line-height:1;
  letter-spacing:.15em;
}
.hero-question p{
  font-size:12px;
  line-height:1.58;
}
.card p,
.testing p{
  font-size:12.5px;
}
.feature p,
.partner-grid p{
  font-size:11.5px;
}

/* Force all custom SVG line icons to render identically */
.mini-icon,
.card-icon,
.cap-icon,
.feature-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:none;
  color:var(--gold);
  line-height:0;
}
.mini-icon svg,
.card-icon svg,
.cap-icon svg,
.feature-icon svg{
  display:block !important;
  overflow:visible;
  fill:none !important;
  stroke:currentColor !important;
  stroke-width:1.6 !important;
  stroke-linecap:round !important;
  stroke-linejoin:round !important;
  vector-effect:non-scaling-stroke;
}
.question-list .mini-icon{width:23px;height:23px}
.question-list .mini-icon svg{width:23px!important;height:23px!important}
.card-icon{width:35px;height:35px}
.card-icon svg{width:31px!important;height:31px!important}
.cap-icon{width:25px;height:25px}
.cap-icon svg{width:23px!important;height:23px!important}
.feature-icon{width:31px;height:31px}
.feature-icon svg{width:29px!important;height:29px!important}

/* Prevent old fallback glyph styling from influencing icons */
.question-list span,
.cap-grid div{
  font-family:inherit;
}
.question-list .mini-icon,
.cap-grid .cap-icon{
  font-family:initial;
}

/* Match mock-up text density */
.hero-intro p{font-size:14px;line-height:1.56}
.panel-copy p{font-size:13.5px;line-height:1.54}
.operational p{font-size:12.5px;line-height:1.52}
.day-night-copy p{font-size:12px;line-height:1.48}

/* A little more visual separation around icons, matching approved comp */
.card-icon,
.feature-icon{
  margin-bottom:10px;
}
.question-list div{
  gap:14px;
}
.cap-item{
  grid-template-columns:26px 1fr;
  gap:11px;
}


/* ===== RESTORE APPROVED MOCK-UP IMAGERY ===== */
.testing-grid{
  grid-template-columns:minmax(0,1.35fr) minmax(180px,.52fr) minmax(0,.60fr);
  gap:0;
  align-items:stretch;
}
.testing-grid>div:first-child{
  padding-right:28px;
}
.drone-visual{
  min-height:310px;
  background:
    linear-gradient(180deg,rgba(5,17,25,.02),rgba(5,17,25,.12)),
    url("../images/drone-assessment.webp") center 48%/cover no-repeat;
  border-left:1px solid var(--line);
  border-right:1px solid var(--line);
  position:relative;
  overflow:hidden;
}
.drone-visual::before{
  content:"";
  position:absolute;
  left:8px;top:8px;
  width:13px;height:13px;
  border-left:1px solid rgba(208,168,108,.62);
  border-top:1px solid rgba(208,168,108,.62);
}
.drone-visual::after{
  content:"";
  position:absolute;
  right:8px;bottom:8px;
  width:13px;height:13px;
  border-right:1px solid rgba(208,168,108,.62);
  border-bottom:1px solid rgba(208,168,108,.62);
}
.day-night-copy{
  border-left:none;
  padding:0 0 0 26px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  align-self:stretch;
}
.field-copy-top p:first-child{margin-top:0}
.field-copy-bottom p:last-child{margin-bottom:0}
.panel-image.recon{
  background:
    linear-gradient(180deg,rgba(4,15,22,.04),rgba(4,15,22,.18)),
    url("../images/surveillance-camera.webp") center 50%/cover no-repeat !important;
  filter:none;
}
@media(max-width:900px){
  .testing-grid{grid-template-columns:1fr}
  .drone-visual{min-height:330px;border:1px solid var(--line);margin:18px 0}
  .day-night-copy{padding:22px 0 0;border-top:1px solid var(--line)}
}


/* ===== FINAL AURISEC LOGO TREATMENT ===== */
.brand{
  width:138px;
  flex:none;
  display:flex;
  align-items:center;
}
.brand img{
  width:100%;
  height:auto;
  object-fit:contain;
  display:block;
}
.footer-grid img{
  width:128px;
  height:auto;
  object-fit:contain;
  display:block;
}
@media(max-width:620px){
  .brand{width:126px}
  .footer-grid img{width:118px}
}


/* ===== CRISP SURVEILLANCE IMAGE CAPTION ===== */
.panel-image.recon{
  position:relative;
  background:
    linear-gradient(180deg,rgba(4,15,22,.03),rgba(4,15,22,.18)),
    url("../images/surveillance-camera.webp") center 48%/cover no-repeat !important;
  filter:none !important;
}
.panel-image.recon::after{
  content:"DIFFERENT PERSPECTIVE.\A REAL OUTCOMES.";
  white-space:pre;
  position:absolute;
  right:24px;
  bottom:22px;
  z-index:2;
  color:#eef0ec;
  font-family:"IBM Plex Mono","SFMono-Regular",Consolas,"Liberation Mono",monospace;
  font-size:9px;
  font-weight:600;
  line-height:1.62;
  letter-spacing:.14em;
  text-transform:uppercase;
  text-shadow:0 1px 5px rgba(0,0,0,.45);
  -webkit-font-smoothing:antialiased;
  text-rendering:geometricPrecision;
}
@media(max-width:620px){
  .panel-image.recon::after{
    right:16px;
    bottom:16px;
    font-size:8px;
  }
}


/* ===== MOBILE DAY/NIGHT SLIDER RESPONSIVE FIX ===== */
.comparison{
  width:100%;
  max-width:100%;
}
.comparison-day{
  overflow:hidden;
}
.comparison-day .comparison-image{
  max-width:none !important;
  height:100%;
  object-fit:cover;
  object-position:center 53%;
}
@media(max-width:620px){
  .comparison{
    aspect-ratio:4/3;
    width:100%;
    max-width:100%;
  }
  .comparison-image{
    object-position:center center;
  }
  .slider-label{
    font-size:7px;
    padding:6px 8px;
  }
  .comparison-handle{
    width:42px;
    height:42px;
    font-size:17px;
  }
}

/* Operational Experience balance: align left copy to the five-stage list */
@media (min-width: 901px){
  .operational-grid > .reveal:first-child{
    min-height:235px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
  }
  .operational-grid > .reveal:first-child .eyebrow{margin-bottom:0;}
  .operational-grid > .reveal:first-child p{
    font-size:13.5px;
    line-height:1.58;
    margin:0;
  }
}

/* Partner delivery typography refinement — align scale/rhythm with opening content sections */
.partner-strip{padding:38px 0;}
.partner-grid{align-items:center;}
.partner-grid > div:first-child .eyebrow{
  font-size:12px;
  line-height:1.4;
  margin-bottom:13px;
}
.partner-grid > div:first-child p{
  font-size:14px;
  line-height:1.58;
  margin-bottom:10px;
  max-width:820px;
}
.partner-grid > div:first-child p:first-of-type{
  margin-bottom:14px;
}
.partner-grid > div:first-child p:last-of-type{
  margin-top:16px;
  margin-bottom:0;
  font-size:12.5px;
  line-height:1.5;
  letter-spacing:.01em;
}
@media (max-width:760px){
  .partner-strip{padding:32px 0;}
  .partner-grid > div:first-child p{font-size:13.5px;}
  .partner-grid > div:first-child p:last-of-type{font-size:11.5px;}
}


/* ===== FIELD CAPABILITY BALANCE — v9 ===== */
@media (min-width:901px){
  /* Slim the UAV panel by roughly 20% while giving the explanatory copy more room. */
  .testing-grid{
    grid-template-columns:minmax(0,1.35fr) minmax(155px,.42fr) minmax(0,.70fr);
  }
  .day-night-copy{
    justify-content:center;
    gap:34px;
    padding-left:28px;
  }
  .field-copy-top,
  .field-copy-bottom{
    margin:0;
  }
  .field-copy-top .eyebrow,
  .field-copy-bottom .eyebrow{
    margin-bottom:10px;
  }
  .field-copy-top p,
  .field-copy-bottom p{
    margin:0 0 10px;
    line-height:1.55;
  }
  .field-copy-top p:last-child,
  .field-copy-bottom p:last-child{
    margin-bottom:0;
  }
}

/* ===== FINAL TYPOGRAPHY & ALIGNMENT POLISH ===== */
/* Evidence: increase readability without changing layout */
.feature p{
  font-size:12.75px;
  line-height:1.52;
}

/* Analysis cards: retain size, add breathing room */
.card p{
  font-size:12.5px;
  line-height:1.58;
}
.card{
  padding-left:22px;
  padding-right:22px;
}

/* Field capability explanatory copy */
.field-copy-top p,
.field-copy-bottom p{
  font-size:13px;
  line-height:1.58;
}

/* Partner delivery modes: lift slightly so it reads as a deliberate engagement model */
.partner-grid > div:first-child p:last-of-type{
  font-size:13px;
  line-height:1.52;
}

/* Footer alignment: match the actual logo column width and vertically lock the closing line */
.footer-grid{
  grid-template-columns:128px minmax(0,1fr) 260px;
  align-items:center;
}
.site-footer .micro{
  justify-self:end;
  align-self:center;
  text-align:right;
  margin:0;
  line-height:1.4;
  white-space:nowrap;
}

@media(max-width:900px){
  .footer-grid{
    grid-template-columns:1fr;
  }
  .site-footer .micro{
    justify-self:start;
    text-align:left;
    white-space:normal;
  }
}

@media(max-width:760px){
  .feature p{font-size:12.5px;}
  .field-copy-top p,
  .field-copy-bottom p{font-size:12.75px;}
  .partner-grid > div:first-child p:last-of-type{font-size:12.5px;}
}

/* Partner proposition — strengthen right-hand hierarchy and align with left copy */
@media (min-width:901px){
  .partner-grid{
    grid-template-columns:minmax(0,1fr) 260px;
  }
  .partner-lines{
    align-self:center;
    justify-content:center;
    padding-left:22px;
    gap:5px;
  }
  .partner-lines strong{
    font-size:15px;
    line-height:1.5;
    font-weight:700;
  }
}

/* ===== MOBILE ANALYSIS CARD ALIGNMENT FIX ===== */
@media(max-width:620px){
  .four-col .card,
  .four-col .card:first-child{
    padding-left:0;
    padding-right:0;
  }
}

/* ===== SECTION IDENTIFIER STANDARDISATION — v10 ===== */
/* Use the "Think like the adversary" eyebrow treatment as the single site-wide standard. */
.eyebrow,
.eyebrow.large,
.feature .eyebrow,
.partner-grid > div:first-child .eyebrow,
.field-copy-top .eyebrow,
.field-copy-bottom .eyebrow{
  font-family:"IBM Plex Mono","SFMono-Regular",Consolas,"Liberation Mono",monospace;
  color:var(--gold);
  font-size:11px;
  line-height:1.35;
  letter-spacing:.155em;
  text-transform:uppercase;
  font-weight:700;
}

/* Preserve the two-line Operational Experience treatment while matching identifier scale. */
.eyebrow.large span{color:#f0f1ee;}

/* ===== FIELD CAPABILITY HEADER SPACING FIX ===== */
/* Match the eyebrow-to-heading spacing used by the Think like the adversary section. */
.testing-grid > .reveal > .eyebrow{
  margin-bottom:8px;
}


/* ===== OPERATIONAL EXPERIENCE HEADING HIERARCHY FIX ===== */
/* Keep the section identifier at the standard eyebrow size, while giving
   “Applied differently.” the same heading scale as other section headlines. */
.operational-heading-block .eyebrow{
  margin-bottom:8px;
}
.operational-heading-block h2{
  margin:0 0 16px;
}
@media (min-width:901px){
  .operational-grid > .reveal:first-child .operational-heading-block{
    margin-bottom:0;
  }
}


/* ===== PARTNER DELIVERY HEADING HIERARCHY FIX ===== */
/* Treat the proposition as a section headline, matching the main h2 hierarchy. */
.partner-grid > div:first-child .eyebrow{
  margin-bottom:8px;
}
.partner-grid > div:first-child .partner-heading{
  margin:0 0 16px;
  max-width:820px;
}


/* ===== FINAL SECTION HEADING HIERARCHY ===== */
/* All primary section identifier/headline pairs use one consistent relationship. */
.section-head .eyebrow{
  margin-bottom:8px;
}
.section-head h2{
  margin:0 0 16px;
}

/* ===== OPERATIONAL EXPERIENCE SPACING CORRECTION ===== */
/* Override the older desktop balance rule so this identifier/headline pair
   uses the same 8px spacing as the other primary section headers. */
@media (min-width:901px){
  .operational-grid > .reveal:first-child .operational-heading-block .eyebrow{
    margin-bottom:8px;
  }
}

/* ===== ABOUT PAGE PREVIEW ===== */
.about-page .primary-nav a.active{color:var(--gold)}
.about-intro{padding:72px 0 58px;position:relative;overflow:hidden}
.about-intro::after{content:"";position:absolute;right:-8%;top:-90%;width:48%;height:270%;opacity:.14;background:radial-gradient(circle,rgba(208,168,108,.22),transparent 62%);pointer-events:none}
.about-title .eyebrow{margin-bottom:10px}
.about-title h1{font-size:clamp(42px,5vw,64px);max-width:900px}
.about-title h1 span{color:#aab6bf}
.about-director{padding:58px 0 64px}
.about-director-grid{display:grid;grid-template-columns:minmax(300px,.78fr) minmax(0,1.45fr);gap:64px;align-items:start}
.about-portrait-wrap{position:relative;border:1px solid var(--line);background:#071824;padding:8px}
.about-portrait{width:100%;aspect-ratio:1/1.16;object-fit:cover;object-position:50% 35%;filter:saturate(.82) contrast(1.02) brightness(.92)}
.portrait-caption{display:flex;justify-content:space-between;gap:18px;padding:12px 4px 3px;font:700 9px/1.35 var(--mono);letter-spacing:.15em;color:var(--gold)}
.portrait-caption span:last-child{color:#8da0af}
.about-bio .eyebrow{margin-bottom:8px}
.about-bio h2{margin:0 0 24px}
.about-bio p{font-size:14px;line-height:1.66;margin-bottom:17px;max-width:760px}
.about-bio .bio-close{margin-top:24px;padding-top:22px;border-top:1px solid var(--line)}
.about-link{display:inline-block;margin-top:4px;font:700 9px/1.2 var(--mono);letter-spacing:.15em;text-transform:uppercase;color:var(--gold)}
.specialist-section{padding:58px 0 60px;background:linear-gradient(180deg,rgba(8,24,35,.42),rgba(4,17,26,.18))}
.specialist-grid{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:68px;align-items:start}
.specialist-copy .eyebrow{margin-bottom:8px}
.specialist-copy h2{margin:0 0 22px;max-width:520px}
.specialist-copy p{font-size:14px;line-height:1.62;max-width:540px}
.specialist-list{display:grid;grid-template-columns:1fr 1fr;border-top:1px solid var(--line)}
.specialist-list div{position:relative;padding:13px 14px 13px 20px;border-bottom:1px solid var(--line);font:600 10px/1.4 var(--mono);letter-spacing:.045em;text-transform:uppercase;color:#c5cdd2}
.specialist-list div:nth-child(odd){border-right:1px solid var(--line)}
.specialist-list div::before{content:"";position:absolute;left:0;top:18px;width:6px;height:1px;background:var(--gold)}
.network-close{margin-top:38px;padding-top:28px;border-top:1px solid var(--line);display:grid;grid-template-columns:.9fr 1.1fr;gap:68px}
.network-close p{font-size:13px;line-height:1.6;margin:0}
@media(max-width:900px){
  .about-director-grid,.specialist-grid,.network-close{grid-template-columns:1fr;gap:34px}
  .about-portrait-wrap{max-width:520px}
  .specialist-list{margin-top:4px}
}
@media(max-width:620px){
  .about-intro{padding:46px 0 38px}
  .about-director{padding:38px 0 44px}
  .about-director-grid{gap:32px}
  .about-portrait-wrap{padding:6px}
  .about-portrait{aspect-ratio:1/1.12}
  .about-bio p{font-size:13.5px;line-height:1.62}
  .specialist-section{padding:42px 0 44px}
  .specialist-list{grid-template-columns:1fr}
  .specialist-list div:nth-child(odd){border-right:0}
  .network-close{margin-top:28px;padding-top:24px;gap:12px}
}

/* About page portrait sizing refinement */
@media (min-width:901px){
  .about-director-grid{
    grid-template-columns:300px minmax(0,1fr);
    gap:60px;
  }
  .about-portrait-wrap{
    width:100%;
    max-width:300px;
    justify-self:start;
  }
}
@media (max-width:900px){
  .about-portrait-wrap{
    max-width:400px;
  }
}


/* ===== INTEGRATED SITE — SHARED SECTION HEADER RHYTHM ===== */
/* Primary section identifiers use the same 8px identifier-to-heading gap across both pages. */
.about-title .eyebrow,
.about-bio .eyebrow,
.specialist-copy .eyebrow,
.final-grid .eyebrow{
  margin-bottom:8px;
}
.about-bio h2,
.specialist-copy h2,
.final-grid h2{
  margin-top:0;
}
/* Keep the About page title distinct as the page-level H1 while using the same identifier rhythm. */
.about-title h1{
  margin-top:0;
}

/* ===== EVIDENCE CARD HEADING SPACING ===== */
/* Match the standard 8px section identifier-to-copy rhythm across all three evidence cards. */
.evidence .feature > .eyebrow{
  margin-bottom:8px;
}


/* ===== SCOPE, DELIVERABLES & DISCRETION ===== */
.evidence-deliverable{margin-top:28px;padding-top:24px;border-top:1px solid var(--line-strong)}
.evidence-deliverable .eyebrow{margin-bottom:8px}
.evidence-deliverable h3{margin:0 0 10px;font-size:19px;line-height:1.25}
.evidence-deliverable p{max-width:820px;margin:0 0 7px;font-size:12.5px;line-height:1.55;color:var(--muted)}
.evidence-deliverable p strong{color:var(--text);font-weight:600}

@media(max-width:620px){.evidence-deliverable{margin-top:22px;padding-top:20px}}
