/* ============================================================
   National Workforce Resources, LLC
   Institutional dark register. Locked palette:
   bg #05080F | surface #0B2545 | text #F5F2EA | muted #8FA3BD
   gold #C9A227 (decorative authority only, never buttons)
   cyan #5FD0E0 (micro-accent only) | CTA #E8622A (identical on
   every dark surface; navy fill on bone sections)
   ============================================================ */
:root{
  --ink:#05080F;
  --navy:#0B2545;
  --navy-deep:#081A33;
  --navy-steel:#0F2C52;
  --navy-line:#16355F;
  --gold:#C9A227;
  --gold-bright:#E4C860;
  --cyan:#5FD0E0;
  --cta:#E8622A;
  --cta-hover:#F2733C;
  --bone:#EFEBDF;
  --bone-deep:#E6E0D0;
  --paper:#F5F2EA;
  --slate:#8FA3BD;
  --slate-dim:#65788F;
  --ink-soft:#33465C;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth; overflow-x:hidden;}
body{
  font-family:Inter,-apple-system,"Segoe UI",system-ui,sans-serif; font-size:16px; margin:0;
  overflow-x:hidden; background:var(--ink); color:var(--paper); -webkit-font-smoothing:antialiased;
}
h1,h2,h3{font-family:Inter,-apple-system,"Segoe UI",system-ui,sans-serif;}
.mono{font-family:"JetBrains Mono",Consolas,"Courier New",monospace;}
img{display:block; max-width:100%;}
a{color:inherit;}
*:focus-visible{outline:2px solid var(--cyan); outline-offset:3px;}

.skip-link{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
.skip-link:focus{
  position:fixed; left:12px; top:12px; width:auto; height:auto; clip:auto; margin:0; z-index:2000;
  background:var(--cta); color:#fff; padding:12px 20px; font-weight:700; text-decoration:none;
}

/* ===== EYEBROW + HAIRLINE ===== */
.eyebrow{
  font-family:"JetBrains Mono",Consolas,monospace; font-weight:500; font-size:11px;
  letter-spacing:0.2em; text-transform:uppercase; color:var(--cyan);
  margin:0 0 14px; line-height:1.8; overflow-wrap:anywhere;
}
.eyebrow::before{
  content:""; display:inline-block; width:26px; height:1px; background:var(--gold);
  vertical-align:middle; margin-right:12px; margin-bottom:2px;
}
.hairline{
  height:1px; width:100%; border:0; margin:0 0 30px;
  background:linear-gradient(90deg,var(--gold) 0%, rgba(201,162,39,0.05) 100%);
}
.hairline.center{width:90px; margin:0 auto 30px; background:var(--gold);}

section{padding:clamp(4.5rem,8vw,7.5rem) clamp(1.5rem,5vw,7rem); position:relative;}
.wrap{max-width:1200px; margin:0 auto;}

/* ===== HEADER ===== */
header{
  position:fixed; top:0; left:0; width:100%; z-index:1000; height:70px;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 clamp(1.25rem,4vw,3rem);
  background:transparent; border-bottom:1px solid transparent;
  transition:background .35s ease, border-color .35s ease, height .35s ease;
}
header.scrolled{height:62px; background:var(--navy-deep); border-bottom:1px solid rgba(201,162,39,0.24);}
@supports (backdrop-filter:blur(10px)){
  header.scrolled{background:rgba(8,16,29,0.92); backdrop-filter:blur(10px);}
}
header.solid{background:var(--navy-deep); border-bottom:1px solid rgba(201,162,39,0.24);}
.wordmark{display:flex; align-items:center; gap:13px; text-decoration:none;}
.seal{
  width:34px; height:34px; position:relative; flex-shrink:0;
  border:1.5px solid var(--gold); display:grid; place-items:center;
  transform:rotate(45deg); background:rgba(201,162,39,0.06);
}
.seal b{
  transform:rotate(-45deg); font-weight:800; font-size:12px;
  color:var(--gold-bright); letter-spacing:0.02em;
}
.wm-block{display:flex; flex-direction:column; line-height:1;}
.wordmark-text{font-weight:800; font-size:19px; letter-spacing:0.22em; color:var(--paper);}
.wm-tag{
  font-family:"JetBrains Mono",Consolas,monospace; font-size:8.5px; letter-spacing:0.16em;
  text-transform:uppercase; color:var(--slate); margin-top:5px; white-space:nowrap;
}
nav.desktop{display:flex; align-items:center; gap:28px;}
nav.desktop a{
  font-weight:600; font-size:12.5px; text-transform:uppercase; letter-spacing:0.1em;
  color:var(--slate); text-decoration:none; transition:color .2s; position:relative;
}
nav.desktop a:not(.nav-cta)::after{
  content:""; position:absolute; left:0; bottom:-6px; width:0; height:1px; background:var(--gold); transition:width .25s ease;
}
nav.desktop a:not(.nav-cta):hover{color:var(--paper);}
nav.desktop a:not(.nav-cta):hover::after{width:100%;}
nav.desktop a.nav-cta{
  background:var(--cta); color:#fff; padding:10px 20px; font-weight:700; transition:.2s;
}
nav.desktop a.nav-cta:hover{background:var(--cta-hover);}

.hamburger{
  display:none; background:none; border:0; cursor:pointer;
  width:44px; height:44px; flex-direction:column; justify-content:center; align-items:center; gap:6px;
}
.hamburger span{display:block; width:26px; height:2px; background:var(--gold); transition:.3s;}
.hamburger[aria-expanded="true"] span:nth-child(1){transform:translateY(8px) rotate(45deg);}
.hamburger[aria-expanded="true"] span:nth-child(2){opacity:0;}
.hamburger[aria-expanded="true"] span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}

.mobile-overlay{
  position:fixed; inset:0; z-index:999; background:rgba(5,8,15,0.98);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:24px;
  opacity:0; visibility:hidden; transition:opacity .3s; overflow-y:auto; padding:2rem 0;
}
.mobile-overlay.open{opacity:1; visibility:visible;}
.mobile-overlay a{
  font-weight:700; font-size:25px; color:var(--paper); text-decoration:none; letter-spacing:0.01em;
}
.mobile-overlay a:hover{color:var(--gold);}
.mobile-overlay .mo-cta{background:var(--cta); color:#fff; padding:12px 28px; font-size:19px; margin-top:6px;}
.mobile-overlay .phone-line{
  font-family:"JetBrains Mono",Consolas,monospace; font-size:15px; color:var(--gold);
  font-weight:500; letter-spacing:0.06em;
}

/* ===== HERO ===== */
#top{
  min-height:100svh; display:flex; flex-direction:column; justify-content:center;
  position:relative; isolation:isolate; overflow:hidden;
  padding-top:clamp(7rem,13vw,10rem); padding-bottom:clamp(3rem,6vw,5rem);
  background:linear-gradient(168deg, var(--ink) 0%, var(--navy-deep) 58%, var(--navy) 100%);
}
/* near-invisible static document-line texture, no GPU compositing */
#top::before{
  content:""; position:absolute; inset:0; z-index:-1; pointer-events:none;
  background-image:repeating-linear-gradient(180deg, rgba(143,163,189,0.03) 0px, rgba(143,163,189,0.03) 1px, transparent 1px, transparent 96px);
}
.hero-grid{
  display:grid; grid-template-columns:1.25fr 0.75fr; gap:clamp(36px,5vw,72px);
  align-items:center; max-width:1200px; margin:0 auto; width:100%;
}
.hero-inner h1{
  font-weight:800; font-size:clamp(2rem,5vw,3.9rem); color:var(--paper);
  line-height:1.08; margin:0; letter-spacing:-0.02em; overflow-wrap:break-word;
}
.hero-inner h1 .grad{
  background:linear-gradient(100deg, var(--gold-bright) 0%, var(--gold) 55%, #A9851C 100%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:var(--gold);
}
.hero-sub{
  font-size:clamp(1.02rem,1.6vw,1.18rem); color:rgba(245,242,234,0.82);
  max-width:600px; margin-top:24px; line-height:1.7;
}
.cta-row{display:flex; gap:14px; flex-wrap:wrap; margin-top:34px; align-items:center;}
.btn-primary{
  background:var(--cta); color:#fff; font-weight:700; font-size:14.5px; letter-spacing:0.03em;
  padding:16px 30px; border-radius:0; text-decoration:none; border:0; cursor:pointer;
  box-shadow:0 8px 30px rgba(232,98,42,0.28); transition:.2s; min-height:48px;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
}
.btn-primary:hover{background:var(--cta-hover); transform:translateY(-2px); box-shadow:0 12px 36px rgba(232,98,42,0.36);}
.btn-primary svg{width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:2; flex-shrink:0;}
.btn-secondary{
  border:1px solid rgba(143,163,189,0.55); color:rgba(245,242,234,0.75); background:transparent;
  font-weight:600; font-size:14px; letter-spacing:0.03em; padding:15px 26px; border-radius:0;
  text-decoration:none; transition:.2s; min-height:48px; cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
}
.btn-secondary:hover{border-color:var(--paper); color:var(--paper);}
.btn-secondary svg{width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:2; flex-shrink:0;}

/* email-me-a-copy soft gate */
.softgate-toggle{
  background:none; border:0; cursor:pointer; font-family:Inter,sans-serif;
  font-size:13px; color:var(--slate); text-decoration:underline; text-underline-offset:3px; padding:8px 2px;
}
.softgate-toggle:hover{color:var(--cyan);}
.softgate{display:none; margin-top:14px; max-width:460px;}
.softgate.open{display:flex; gap:8px; flex-wrap:wrap;}
.softgate input[type=email]{
  flex:1 1 220px; background:rgba(5,8,15,0.55); border:1px solid var(--navy-line); color:var(--paper);
  font-family:Inter,sans-serif; font-size:15px; padding:12px 14px; border-radius:0; min-height:46px;
}
.softgate input[type=email]:focus{border-color:var(--gold); outline:none;}
.softgate button{
  background:var(--navy-steel); border:1px solid var(--navy-line); color:var(--paper);
  font-weight:600; font-size:13px; padding:12px 18px; cursor:pointer; transition:.2s; min-height:46px;
}
.softgate button:hover{border-color:var(--gold); color:var(--gold-bright);}
.softgate-msg{font-size:12.5px; color:var(--cyan); margin-top:8px; display:none; line-height:1.6;}

.direct-line{
  display:flex; align-items:center; gap:12px; margin-top:30px; flex-wrap:wrap;
}
.direct-line .dl-k{
  font-family:"JetBrains Mono",Consolas,monospace; font-weight:500; font-size:11px;
  letter-spacing:0.18em; color:var(--slate);
}
.direct-line a{
  display:inline-flex; align-items:center; gap:9px; text-decoration:none;
  font-weight:700; font-size:18px; color:var(--paper); transition:color .2s;
}
.direct-line a:hover{color:var(--gold-bright);}
.direct-line svg{width:18px; height:18px; stroke:var(--gold); fill:none; stroke-width:1.8;}

/* Contractor Profile credential card */
.cred-card{
  border:1px solid rgba(201,162,39,0.55); background:linear-gradient(165deg, rgba(15,44,82,0.5) 0%, rgba(8,26,51,0.75) 100%);
  padding:clamp(24px,2.6vw,34px); position:relative;
}
.cred-card .cc-head{
  font-family:"JetBrains Mono",Consolas,monospace; font-weight:500; font-size:11px;
  letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin:0 0 20px;
  display:flex; align-items:center; gap:10px;
}
.cred-card .cc-head svg{width:16px; height:16px; stroke:var(--gold); fill:none; stroke-width:1.6;}
.cred-row{
  display:flex; justify-content:space-between; align-items:baseline; gap:16px;
  padding:12px 0; border-bottom:1px solid rgba(22,53,95,0.8);
}
.cred-row:last-of-type{border-bottom:0;}
.cred-row .ck{font-size:12px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; color:var(--slate); flex-shrink:0;}
.cred-row .cv{
  font-family:"JetBrains Mono",Consolas,monospace; font-size:13px; color:var(--paper);
  text-align:right; overflow-wrap:anywhere;
}
.cred-row .cv.pend{color:var(--slate);}
.cred-row .cv .tick{color:var(--cyan);}
.cred-foot{
  margin-top:18px; font-size:11.5px; line-height:1.7; color:var(--slate);
}
.cred-foot a{color:var(--cyan); text-decoration:none;}
.cred-foot a:hover{text-decoration:underline;}

/* ===== SECTION VARIANTS ===== */
.sec-ink{background:var(--ink);}
.sec-navy{background:var(--navy-deep);}
.sec-steel{background:linear-gradient(180deg, var(--navy-deep) 0%, var(--ink) 100%);}
.sec-bone{background:var(--bone); color:var(--navy);}
.sec-bone .eyebrow{color:#0F6C7A;}
.sec-bone .hairline{background:linear-gradient(90deg,var(--gold) 0%, rgba(201,162,39,0.1) 100%);}

.sec-head{max-width:820px; margin:0 0 48px;}
.sec-head.center{margin:0 auto 48px; text-align:center;}
.sec-head h2{
  font-weight:800; font-size:clamp(1.6rem,3.4vw,2.6rem); line-height:1.16;
  margin:0 0 18px; letter-spacing:-0.015em; color:var(--paper);
}
.sec-bone .sec-head h2{color:var(--navy);}
.sec-head p{font-size:16.5px; color:rgba(245,242,234,0.78); line-height:1.75; margin:0;}
.sec-bone .sec-head p{color:var(--ink-soft);}
.sec-head .accent{color:var(--gold-bright);}
.sec-bone .sec-head .accent{color:var(--gold);}

/* ===== TEAMING ===== */
.team-paths{display:grid; grid-template-columns:1fr 1fr; gap:20px; max-width:1200px; margin:0 auto;}
.path-card{
  background:linear-gradient(160deg, var(--navy-steel) 0%, var(--navy-deep) 100%);
  border:1px solid var(--navy-line); padding:clamp(28px,3vw,40px); position:relative;
  display:flex; flex-direction:column;
}
.path-card::before{content:""; position:absolute; top:0; left:0; width:64px; height:2px; background:var(--gold);}
.path-card .pc-tag{
  font-family:"JetBrains Mono",Consolas,monospace; font-weight:500; font-size:10.5px;
  letter-spacing:0.18em; text-transform:uppercase; color:var(--cyan); margin:0 0 16px;
}
.path-card h3{font-weight:700; font-size:21px; color:var(--paper); margin:0 0 14px; line-height:1.3;}
.path-card p{font-size:15px; color:rgba(245,242,234,0.78); line-height:1.72; margin:0 0 14px;}
.path-card p:last-of-type{margin-bottom:22px;}
.path-card .pc-cta{margin-top:auto;}
.team-note{
  max-width:1200px; margin:26px auto 0; font-size:14px; color:var(--slate); line-height:1.7;
}
.team-note strong{color:var(--paper); font-weight:600;}

/* prime delivery diagram */
.prime-card{
  background:linear-gradient(160deg, var(--navy-steel) 0%, var(--navy-deep) 100%);
  border:1px solid var(--navy-line); padding:clamp(26px,3vw,38px); position:relative; overflow:hidden;
}
.prime-card::before{content:""; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg, var(--gold) 0%, rgba(201,162,39,0.15) 100%);}
.prime-card .pc-label{
  font-family:"JetBrains Mono",Consolas,monospace; font-size:11px; letter-spacing:0.16em;
  text-transform:uppercase; color:var(--cyan); margin:0 0 22px;
}
.prime-node{
  display:flex; align-items:center; gap:16px; padding:15px 18px; border:1px solid var(--navy-line);
  background:rgba(5,8,15,0.35); min-width:0;
}
.prime-node > span{min-width:0;}
.prime-node.head{border-color:var(--gold); background:rgba(201,162,39,0.08);}
.prime-node .pn-ico{width:38px; height:38px; border:1px solid var(--gold); display:grid; place-items:center; flex-shrink:0;}
.prime-node.head .pn-ico{background:rgba(201,162,39,0.14);}
.prime-node .pn-ico svg{width:20px; height:20px; stroke:var(--gold); fill:none; stroke-width:1.6;}
.prime-node .pn-name{font-weight:700; font-size:15px; color:var(--paper);}
.prime-node .pn-desc{
  font-family:"JetBrains Mono",Consolas,monospace; font-size:10.5px; letter-spacing:0.06em;
  color:var(--slate); margin-top:4px; text-transform:uppercase; display:block;
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap; max-width:100%;
}
.prime-connector{display:flex; justify-content:center; padding:6px 0;}
.prime-connector svg{width:18px; height:18px; stroke:var(--gold); fill:none; stroke-width:1.5;}
.prime-fan{display:grid; grid-template-columns:1fr 1fr; gap:10px;}
.prime-fan .pn-name{font-size:13px;}

/* ===== TRUST BAR ===== */
.trust-strip{
  background:var(--navy); padding:26px clamp(1.5rem,5vw,7rem);
  border-top:1px solid rgba(201,162,39,0.3); border-bottom:1px solid rgba(201,162,39,0.3);
}
.trust-strip .inner{
  display:flex; justify-content:center; align-items:center; gap:clamp(18px,3.5vw,48px);
  flex-wrap:wrap; max-width:1150px; margin:0 auto;
}
.trust-item{display:flex; align-items:center; gap:12px; text-decoration:none;}
.trust-item svg{width:25px; height:25px; stroke:var(--gold); fill:none; flex-shrink:0; stroke-width:1.5;}
.trust-item .ti-name{font-weight:700; font-size:13.5px; letter-spacing:0.04em; color:var(--paper); display:block;}
.trust-item .ti-sub{
  font-family:"JetBrains Mono",Consolas,monospace; font-size:10px; letter-spacing:0.06em;
  text-transform:uppercase; color:var(--slate); display:block; margin-top:3px;
}
a.trust-item:hover .ti-name{color:var(--gold-bright);}
.trust-sep{width:1px; height:30px; background:var(--navy-line);}

/* ===== CAPABILITIES ===== */
.cap-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:1px; max-width:1200px; margin:0 auto;
  background:var(--bone-deep); border:1px solid var(--bone-deep);
}
.cap-cell{background:var(--paper); padding:clamp(24px,2.6vw,34px); transition:background .3s ease;}
.cap-cell:hover{background:#FBF9F3;}
.cap-cell .cap-naics{
  font-family:"JetBrains Mono",Consolas,monospace; font-size:11px; letter-spacing:0.08em;
  color:#0F6C7A; margin:0 0 16px;
}
.cap-cell .cap-ico{width:42px; height:42px; border:1px solid var(--gold); display:grid; place-items:center; margin:0 0 18px; background:rgba(201,162,39,0.06);}
.cap-cell .cap-ico svg{width:22px; height:22px; stroke:var(--gold); fill:none; stroke-width:1.5;}
.cap-cell h3{font-weight:700; font-size:18px; color:var(--navy); margin:0 0 10px; line-height:1.3;}
.cap-cell p{font-size:14.5px; color:var(--ink-soft); line-height:1.68; margin:0;}
.cap-capacity{
  max-width:1200px; margin:26px auto 0; padding:22px 26px; border-left:3px solid var(--gold);
  background:rgba(201,162,39,0.07); font-size:15px; color:var(--navy); line-height:1.75;
}
.cap-capacity strong{font-weight:700;}
.cap-note{
  max-width:1200px; margin:18px auto 0; font-style:italic; font-size:13.5px; color:var(--ink-soft); line-height:1.7;
}

/* ===== MID-PAGE CTA BAND ===== */
.cta-band{
  background:var(--navy); border-top:1px solid rgba(201,162,39,0.3); border-bottom:1px solid rgba(201,162,39,0.3);
  padding:clamp(2.6rem,4.5vw,3.6rem) clamp(1.5rem,5vw,7rem);
}
.cta-band .inner{
  max-width:1150px; margin:0 auto; display:flex; align-items:center; justify-content:space-between;
  gap:26px; flex-wrap:wrap;
}
.cta-band h2{font-weight:800; font-size:clamp(1.25rem,2.4vw,1.7rem); color:var(--paper); margin:0; line-height:1.3; letter-spacing:-0.01em;}
.cta-band .cb-actions{display:flex; align-items:center; gap:20px; flex-wrap:wrap;}

/* ===== HOW WE WORK ===== */
.work-inner{max-width:980px; margin:0 auto;}
.steps{position:relative;}
.steps::before{
  content:""; position:absolute; left:27px; top:20px; bottom:20px; width:1px;
  background:linear-gradient(180deg, var(--gold) 0%, rgba(201,162,39,0.2) 100%);
}
.step{display:grid; grid-template-columns:56px 1fr; gap:26px; align-items:start; padding:0 0 42px;}
.step:last-child{padding-bottom:0;}
.step .snum{
  width:56px; height:56px; border:1px solid var(--gold); background:var(--bone);
  display:grid; place-items:center; font-weight:800; font-size:19px; color:var(--gold);
  position:relative; z-index:1;
}
.step .scontent{padding-top:4px;}
.step .seye{
  font-family:"JetBrains Mono",Consolas,monospace; font-weight:500; font-size:11px;
  text-transform:uppercase; letter-spacing:0.14em; color:#0F6C7A; margin:0 0 8px;
}
.step h3{font-weight:700; font-size:21px; color:var(--navy); margin:0 0 10px; letter-spacing:-0.01em;}
.step p{font-size:15.5px; color:var(--ink-soft); line-height:1.72; max-width:640px; margin:0;}
.work-foot{
  margin-top:36px; margin-left:82px; padding:22px 26px; border-left:3px solid var(--gold);
  background:rgba(201,162,39,0.07); font-weight:600;
  font-size:clamp(1.02rem,1.8vw,1.2rem); color:var(--navy); line-height:1.55;
}
.work-foot .em{color:#0F6C7A;}

/* ===== LEADERSHIP ===== */
.lead-grid{
  display:grid; grid-template-columns:0.85fr 1.15fr; gap:clamp(36px,5vw,64px);
  align-items:center; max-width:1100px; margin:0 auto;
}
.lead-panel{
  border:1px solid var(--navy-line); background:linear-gradient(165deg, var(--navy-steel) 0%, var(--navy-deep) 100%);
  padding:clamp(30px,3.4vw,46px); text-align:center; position:relative;
}
.lead-panel::before{content:""; position:absolute; top:0; left:0; width:64px; height:2px; background:var(--gold);}
.lead-mono{
  width:96px; height:96px; margin:0 auto 22px; border:1.5px solid var(--gold);
  display:grid; place-items:center; transform:rotate(45deg); background:rgba(201,162,39,0.06);
}
.lead-mono b{transform:rotate(-45deg); font-weight:800; font-size:26px; color:var(--gold-bright); letter-spacing:0.04em;}
.lead-panel .lp-name{font-weight:800; font-size:21px; color:var(--paper); margin:0 0 6px;}
.lead-panel .lp-role{
  font-family:"JetBrains Mono",Consolas,monospace; font-size:11px; letter-spacing:0.14em;
  text-transform:uppercase; color:var(--gold); margin:0 0 18px;
}
.lead-panel .lp-facts{display:flex; flex-direction:column; gap:9px; text-align:left; margin-top:8px;}
.lead-panel .lp-facts span{display:flex; align-items:center; gap:10px; font-size:13.5px; color:var(--slate); line-height:1.5;}
.lead-panel .lp-facts svg{width:15px; height:15px; stroke:var(--gold); fill:none; stroke-width:1.7; flex-shrink:0;}
.lead-copy p{font-size:16px; color:rgba(245,242,234,0.82); line-height:1.78; margin:0 0 16px;}
.lead-copy p strong{color:var(--paper); font-weight:600;}
.lead-copy .founded-line{
  font-size:14.5px; color:var(--slate); border-left:2px solid var(--gold);
  padding-left:18px; line-height:1.7; margin-top:24px;
}

/* ===== CONTACT ===== */
.contact-grid{
  display:grid; grid-template-columns:0.9fr 1.1fr; gap:clamp(40px,5vw,68px);
  align-items:start; max-width:1150px; margin:0 auto;
}
.contact-left h2{font-weight:800; font-size:clamp(1.8rem,3.4vw,2.7rem); color:var(--paper); margin:0 0 18px; line-height:1.14; letter-spacing:-0.015em;}
.contact-left .csub{font-size:16.5px; color:rgba(245,242,234,0.8); line-height:1.75; margin:0 0 30px;}
.contact-block{display:flex; flex-direction:column; margin-bottom:22px;}
.cb-line{display:flex; align-items:center; gap:14px; text-decoration:none; padding:14px 0; border-bottom:1px solid var(--navy-line);}
.cb-line svg{width:22px; height:22px; stroke:var(--gold); fill:none; stroke-width:1.5; flex-shrink:0;}
.cb-line .cb-k{
  font-family:"JetBrains Mono",Consolas,monospace; font-size:10px; letter-spacing:0.12em;
  text-transform:uppercase; color:var(--slate); margin-bottom:4px; display:block;
}
.cb-line .cb-v{font-weight:700; font-size:17px; color:var(--paper); transition:color .2s; overflow-wrap:anywhere; display:block;}
.cb-line > span{min-width:0;}
a.cb-line:hover .cb-v{color:var(--gold-bright);}
.contact-sub-note{font-size:13.5px; color:var(--slate); line-height:1.7; margin-top:10px;}

.form-card{background:rgba(15,44,82,0.28); border:1px solid var(--navy-line); padding:clamp(28px,3vw,42px); position:relative;}
.form-card::before{content:""; position:absolute; top:0; left:0; width:60px; height:2px; background:var(--gold);}
.form-sla{
  display:flex; align-items:center; gap:10px; margin:0 0 22px; padding:12px 16px;
  border:1px solid rgba(95,208,224,0.35); background:rgba(95,208,224,0.06);
  font-size:13px; color:var(--cyan); line-height:1.5;
}
.form-sla svg{width:16px; height:16px; stroke:var(--cyan); fill:none; stroke-width:1.8; flex-shrink:0;}
.form-card label{
  display:block; font-weight:600; font-size:12px; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--slate); margin-bottom:8px; margin-top:20px;
}
.form-card label:first-of-type{margin-top:0;}
.req{color:var(--gold);}
.form-card input, .form-card textarea{
  width:100%; background:rgba(5,8,15,0.55); border:1px solid var(--navy-line); color:var(--paper);
  font-family:Inter,sans-serif; font-size:16px; padding:13px 16px; border-radius:0; transition:border-color .2s;
}
.form-card input::placeholder, .form-card textarea::placeholder{color:var(--slate-dim);}
.form-card input:focus, .form-card textarea:focus{border-color:var(--gold); outline:none;}
.form-card textarea{resize:vertical; min-height:120px;}
.form-submit{
  width:100%; background:var(--cta); color:#fff; font-weight:800; font-size:14.5px; letter-spacing:0.04em;
  padding:16px; border:0; border-radius:0; cursor:pointer; margin-top:26px; min-height:50px;
  transition:.2s; display:inline-flex; align-items:center; justify-content:center; gap:10px;
}
.form-submit svg{width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:2;}
.form-submit:hover{background:var(--cta-hover);}
.form-note{
  font-size:12px; color:var(--slate); text-align:center; margin-top:14px; line-height:1.7;
}
.honeypot{position:absolute; left:-9999px; opacity:0; height:0; overflow:hidden;}
.form-confirm{font-size:1.12rem; color:var(--paper); line-height:1.65; text-align:center; padding:40px 10px; font-weight:600;}
.form-confirm .check{width:58px; height:58px; margin:0 auto 22px; border:2px solid var(--gold); border-radius:50%; display:grid; place-items:center;}
.form-confirm .check svg{width:28px; height:28px; stroke:var(--gold); fill:none; stroke-width:2;}
.form-error{color:#F0A5A5; font-size:13px; margin-top:12px; display:none; line-height:1.6;}

/* ===== FOOTER ===== */
footer{background:var(--ink); padding:clamp(3rem,5vw,4rem) clamp(1.5rem,5vw,7rem) 2.4rem; border-top:1px solid var(--navy-line);}
.footer-grid{display:grid; grid-template-columns:1.4fr 0.8fr 1fr 1.2fr; gap:40px; max-width:1200px; margin:0 auto;}
.footer-brand .wordmark{margin-bottom:18px;}
.footer-brand .tagline{font-size:13.5px; color:var(--slate); line-height:1.75; max-width:320px;}
.footer-col h4{
  font-family:"JetBrains Mono",Consolas,monospace; font-weight:500; font-size:11px;
  letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); margin:0 0 18px;
}
.footer-nav{display:flex; flex-direction:column; gap:12px;}
.footer-nav a{font-size:14px; color:var(--slate); text-decoration:none; transition:color .2s;}
.footer-nav a:hover{color:var(--gold-bright);}
.footer-contact{display:flex; flex-direction:column; gap:13px;}
.footer-contact a, .footer-contact span{
  font-size:13.5px; color:var(--slate); text-decoration:none;
  display:flex; align-items:flex-start; gap:10px; line-height:1.5;
}
.footer-contact a:hover{color:var(--gold-bright);}
.footer-contact svg{width:16px; height:16px; stroke:var(--gold); fill:none; stroke-width:1.6; flex-shrink:0; margin-top:2px;}
.footer-avail p{font-size:13px; color:var(--slate); line-height:1.65; margin:0 0 14px;}
.avail-form{display:flex; gap:8px; flex-wrap:wrap;}
.avail-form input[type=email]{
  flex:1 1 170px; background:rgba(15,44,82,0.35); border:1px solid var(--navy-line); color:var(--paper);
  font-family:Inter,sans-serif; font-size:14px; padding:11px 13px; border-radius:0; min-height:44px;
}
.avail-form input[type=email]:focus{border-color:var(--gold); outline:none;}
.avail-form button{
  background:var(--navy-steel); border:1px solid var(--navy-line); color:var(--paper);
  font-weight:700; font-size:12.5px; padding:11px 16px; cursor:pointer; transition:.2s; min-height:44px;
}
.avail-form button:hover{border-color:var(--gold); color:var(--gold-bright);}
.avail-msg{font-size:12px; color:var(--cyan); margin-top:8px; display:none;}
.footer-registry{
  max-width:1200px; margin:36px auto 0; text-align:center;
  font-family:"JetBrains Mono",Consolas,monospace; font-weight:500; font-size:11px;
  letter-spacing:0.08em; text-transform:uppercase; color:var(--gold);
  line-height:2; overflow-wrap:break-word;
  padding:14px clamp(1rem,3vw,2rem); border:1px solid rgba(201,162,39,0.28);
  background:rgba(201,162,39,0.04);
}
.footer-rule{height:1px; background:var(--navy-line); border:0; max-width:1200px; margin:26px auto 22px;}
.footer-bottom{max-width:1200px; margin:0 auto; display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap;}
.footer-bottom p{font-size:11.5px; color:var(--slate-dim); line-height:1.7; margin:0;}
.footer-bottom .certs-line{color:var(--slate);}

/* ===== CERTIFICATIONS PAGE ===== */
.page-hero{
  padding-top:clamp(9rem,15vw,12rem); padding-bottom:clamp(3rem,5vw,4.5rem);
  background:linear-gradient(168deg, var(--ink) 0%, var(--navy-deep) 70%, var(--navy) 100%);
}
.page-hero h1{font-weight:800; font-size:clamp(1.9rem,4.4vw,3.2rem); color:var(--paper); line-height:1.1; margin:0 0 20px; letter-spacing:-0.02em;}
.page-hero p{font-size:16.5px; color:rgba(245,242,234,0.8); line-height:1.75; max-width:720px; margin:0 0 28px;}
.reg-table{max-width:900px; margin:0 auto; border:1px solid var(--navy-line);}
.reg-row{
  display:grid; grid-template-columns:220px 1fr; gap:20px; padding:20px 26px;
  border-bottom:1px solid var(--navy-line); background:rgba(15,44,82,0.18);
}
.reg-row:nth-child(even){background:rgba(8,26,51,0.3);}
.reg-row:last-child{border-bottom:0;}
.reg-row .rk{font-weight:700; font-size:13.5px; letter-spacing:0.04em; text-transform:uppercase; color:var(--gold); line-height:1.5;}
.reg-row .rv{font-size:14.5px; color:rgba(245,242,234,0.85); line-height:1.7;}
.reg-row .rv .mono{font-size:13px; color:var(--paper);}
.reg-row .rv a{color:var(--cyan); text-decoration:none;}
.reg-row .rv a:hover{text-decoration:underline;}
.naics-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px; max-width:900px; margin:0 auto;}
.naics-item{
  display:flex; gap:16px; align-items:baseline; padding:16px 20px;
  border:1px solid var(--navy-line); background:rgba(15,44,82,0.18);
}
.naics-item .code{
  font-family:"JetBrains Mono",Consolas,monospace; font-weight:500; font-size:14px;
  color:var(--gold-bright); flex-shrink:0;
}
.naics-item .desc{font-size:14px; color:rgba(245,242,234,0.8); line-height:1.55;}

/* ===== REVEAL ===== */
[data-reveal]{opacity:0; transform:translateY(26px); transition:opacity .6s cubic-bezier(0.22,1,0.36,1), transform .6s cubic-bezier(0.22,1,0.36,1);}
[data-reveal].revealed{opacity:1; transform:none;}
[data-reveal][data-delay="1"]{transition-delay:.08s;}
[data-reveal][data-delay="2"]{transition-delay:.16s;}

/* ===== RESPONSIVE ===== */
@media (max-width:1060px){
  .hero-grid{grid-template-columns:1fr; gap:44px;}
  .cred-card{max-width:560px;}
}
@media (max-width:960px){
  nav.desktop{display:none;}
  .hamburger{display:flex;}
  .team-paths{grid-template-columns:1fr;}
  .lead-grid{grid-template-columns:1fr; gap:40px;}
  .lead-panel{max-width:460px; margin:0 auto;}
  .contact-grid{grid-template-columns:1fr; gap:44px;}
  .cap-grid{grid-template-columns:1fr 1fr;}
  .footer-grid{grid-template-columns:1fr 1fr; gap:36px;}
}
@media (max-width:680px){
  section{padding:clamp(3.5rem,10vw,5rem) 1.4rem;}
  .cap-grid{grid-template-columns:1fr;}
  .naics-grid{grid-template-columns:1fr;}
  .reg-row{grid-template-columns:1fr; gap:6px; padding:16px 18px;}
  .footer-grid{grid-template-columns:1fr; gap:32px;}
  .footer-bottom{flex-direction:column; gap:12px;}
  .eyebrow{font-size:10px; letter-spacing:0.14em;}
  #top{padding-top:6.5rem;}
  .cta-row .btn-primary, .cta-row .btn-secondary{width:100%;}
  .cta-band .inner{flex-direction:column; align-items:flex-start;}
  .wm-tag{display:none;}
  .wordmark-text{font-size:17px;}
  .work-foot{margin-left:0;}
  .steps::before{left:22px;}
  .step{grid-template-columns:46px 1fr; gap:18px;}
  .step .snum{width:46px; height:46px; font-size:16px;}
  .prime-fan{grid-template-columns:1fr;}
  .trust-sep{display:none;}
  .trust-strip .inner{gap:16px 24px;}
}
@media (max-height:640px){
  .mobile-overlay{justify-content:flex-start; gap:16px;}
  .mobile-overlay a{font-size:20px;}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  [data-reveal]{opacity:1; transform:none; transition:none;}
  .btn-primary:hover{transform:none;}
}
