/* ITES Venture — Operator brand system
   First-pass mockup for the Claude Design session.
   ------------------------------------------------ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Operator palette — locked */
  --charcoal: #0F1419;
  --charcoal-2: #161C24;
  --charcoal-3: #1F2731;
  --azure: #2D8AC9;
  --teal: #00D4B4;
  --logo-teal: #01C8D4;
  --indigo: #4338CA;
  --steel: #64748B;
  --mist: #EAF1F8;
  --rule: #C9D6E2;
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, #2D8AC9 0%, #00D4B4 100%);

  /* Type */
  --display: "Space Grotesk", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--azure); text-decoration: none; }
a:hover { color: var(--teal); }

/* ----- Wrappers ----- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { padding: 64px 0; }
section.tight { padding: 48px 0; }

.dark { background: var(--charcoal); color: var(--white); }
.dark a { color: var(--teal); }
.mist { background: var(--mist); color: var(--charcoal); }

/* ----- Top nav ----- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15,20,25,.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px var(--gutter);
  max-width: var(--maxw); margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.78);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px;
  height: 2px; background: var(--azure);
}
.nav-cta {
  font-family: var(--body); font-size: 14px; font-weight: 600;
  padding: 9px 16px; border: 1px solid rgba(255,255,255,.18);
  color: var(--white) !important; border-radius: 2px;
  transition: all .15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { border-color: var(--teal); background: rgba(0,212,180,.08); }
.nav-mobile { display: none; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-mobile { display: flex; gap: 12px; align-items: center; }
}

/* ----- Eyebrow tag ----- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--azure);
  margin: 0 0 18px 0;
  display: inline-block;
  position: relative;
  padding-left: 14px;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 8px; height: 1px; background: currentColor;
}
.eyebrow.on-light { color: var(--azure); }
.eyebrow.teal { color: var(--teal); }

/* ----- v2: Marginalia system ----- */
.margin-note {
  position: absolute;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--azure);
  opacity: .85;
  pointer-events: none;
  white-space: nowrap;
}
.margin-note.muted { color: var(--steel); opacity: .7; }
.dark .margin-note { color: var(--azure); opacity: .9; }
.margin-note.vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: .26em;
}
.margin-note .tick {
  display: inline-block; width: 18px; height: 1px;
  background: currentColor; vertical-align: middle;
  margin: 0 8px;
}

/* Section anchor label — vertical mono on left edge */
section.has-margin, .has-margin {
  position: relative;
}
.section-anchor {
  position: absolute;
  left: 24px;
  top: 80px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--azure);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: .85;
}
.section-anchor::after {
  content: ""; display: inline-block;
  width: 1px; height: 64px;
  background: var(--azure);
  margin-top: 12px; opacity: .55;
}
.dark .section-anchor { color: var(--azure); }

/* Hero kinetic mesh — slow drift */
@keyframes meshDrift {
  0%   { transform: translate3d(0, 0, 0); }
  50%  { transform: translate3d(-1.2%, -0.6%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
.hero-mesh-drift { animation: meshDrift 24s ease-in-out infinite; }

@keyframes pointPulse {
  0%, 100% { opacity: .55; }
  50%      { opacity: 1; }
}
.point-pulse { animation: pointPulse 4s ease-in-out infinite; }

/* Subtle engineering-grid texture for dark sections */
.grid-texture {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(45,138,201,.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(45,138,201,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* Anthem slab — full-bleed Brand Azure punctuation */
.anthem-slab {
  background: var(--azure);
  color: var(--white);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative; overflow: hidden;
}
.anthem-slab .anthem-line {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  margin: 0;
  max-width: 1100px;
}
.anthem-slab .anthem-line strong { font-weight: 700; }
.anthem-slab .anthem-eyebrow {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin-bottom: 28px; display: block;
}
.anthem-slab::before {
  content: ""; position: absolute; right: -8%; top: -30%;
  width: 540px; height: 540px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  pointer-events: none;
}
.anthem-slab::after {
  content: ""; position: absolute; right: 4%; top: 12%;
  width: 320px; height: 320px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  pointer-events: none;
}
.anthem-slab .anthem-deco {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.anthem-sweep {
  animation: anthem-sweep-rot 14s linear infinite;
  opacity: .9;
}
@keyframes anthem-sweep-rot {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .anthem-sweep { animation: none; }
}

/* Oversized capability numerals (capabilities page) */
.cap-block .num-large {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(96px, 11vw, 168px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--azure);
  opacity: .9;
  margin: 0;
}

/* Hero tagline scaled up */
.hero-tagline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -.005em;
}

.h-display {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(44px, 6.5vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0;
}
.h-display .light { font-weight: 300; }
.h-display .teal { color: var(--teal); }

.h-section {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin: 0 0 8px 0;
}
.h-section .light { font-weight: 300; }

.h-card {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 8px 0;
}

/* ----- Sub copy ----- */
.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--steel);
  max-width: 620px;
  margin: 22px 0 0 0;
}
.dark .lede { color: rgba(234, 241, 248, .76); }

/* ----- Tagline split ----- */
.tagline {
  font-family: var(--display);
  font-weight: 500;
}
.tagline .accent { color: var(--teal); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 600; font-size: 15px;
  padding: 14px 22px; border-radius: 2px;
  border: 1px solid transparent; cursor: pointer;
  transition: all .15s ease;
  letter-spacing: .005em;
}
.btn-primary { background: var(--teal); color: var(--charcoal); }
.btn-primary:hover { background: #00f0ce; color: var(--charcoal); }
.btn-secondary { background: transparent; border-color: rgba(255,255,255,.22); color: var(--white); }
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }
.btn-on-light { background: var(--charcoal); color: var(--white); }
.btn-on-light:hover { background: var(--azure); color: var(--white); }
.btn-ghost-light { background: transparent; border-color: var(--rule); color: var(--charcoal); }
.btn-ghost-light:hover { border-color: var(--azure); color: var(--azure); }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ----- Hero ----- */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  padding: clamp(80px, 11vw, 140px) 0 clamp(80px, 11vw, 140px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 40px;
}
.hero-tagline {
  margin-top: 34px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: .005em;
  color: rgba(255,255,255,.86);
}
.hero-tagline .accent { color: var(--teal); }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* ----- Trust band ----- */
.trust-band {
  background: var(--mist);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
}
.trust-row {
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  align-items: center; justify-content: center;
}
.trust-chip {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--charcoal);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.trust-chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--azure); display: inline-block;
}
.trust-chip + .trust-chip::before {
  content: ""; width: 1px; height: 14px; background: var(--rule);
  display: inline-block; margin-right: 18px; vertical-align: middle;
}

/* ----- Capability grid ----- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 56px;
}
.cap-card {
  background: var(--white);
  padding: 32px 26px;
  display: flex; flex-direction: column;
  min-height: 280px;
  transition: background .2s ease;
}
.cap-card:hover { background: #FAFCFE; }
.cap-card {
  position: relative; overflow: hidden;
  border-top: 2px solid transparent;
  background-color: var(--white);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(45,138,201,.10) 1px, transparent 1.4px);
  background-size: 14px 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cap-card .num {
  font-family: var(--mono); font-size: 12px; color: var(--azure);
  letter-spacing: .12em; margin-bottom: 22px;
  position: relative; z-index: 2;
}
.cap-card h3, .cap-card p, .cap-card .arrow-mark { position: relative; z-index: 2; }
.cap-card:hover { border-top-color: var(--azure); transform: translateY(-2px); }

/* Corner field-tag */
.cap-card .corner-mark {
  position: absolute; top: 14px; right: 16px;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .14em; color: var(--azure); opacity: .75;
  display: flex; align-items: center; gap: 8px;
  z-index: 2;
}
.cap-card .corner-mark::before {
  content: ""; width: 14px; height: 1px; background: var(--azure); opacity: .55;
}

/* Abstract data-viz watermark */
.cap-card .watermark {
  position: absolute;
  right: -28px; bottom: -28px;
  width: 200px; height: 200px;
  opacity: .09;
  pointer-events: none;
  z-index: 1;
  transition: opacity .25s ease, transform .25s ease;
}
.cap-card:hover .watermark { opacity: .18; transform: translate(-4px, -4px); }
.cap-card .watermark svg { width: 100%; height: 100%; display: block; }
.cap-card .watermark svg * { stroke: var(--azure); fill: none; stroke-width: 1.2; }
.cap-card .watermark svg .dot { fill: var(--azure); stroke: none; }
.cap-card h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 18px; line-height: 1.18; letter-spacing: -0.01em;
  margin: 0 0 12px 0; color: var(--charcoal);
}
.cap-card p {
  font-size: 14px; line-height: 1.5; color: var(--steel);
  margin: 0; flex: 1;
}
.cap-card .arrow-mark {
  margin-top: 22px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule); border-radius: 50%;
  color: var(--azure); font-size: 13px;
  transition: all .2s ease;
}
.cap-card:hover .arrow-mark { background: var(--charcoal); color: var(--teal); border-color: var(--charcoal); }

@media (max-width: 1100px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .cap-grid { grid-template-columns: 1fr; } }

/* ----- Stat band ----- */
.stat-band { padding: 88px 0; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.stat {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,.10);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--teal);
  margin-bottom: 12px;
}
.stat .lab {
  font-family: var(--body); font-size: 14px; line-height: 1.4;
  color: rgba(255,255,255,.78);
}
@media (max-width: 820px) {
  .stat-row { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.10); }
  .stat:last-child { border-bottom: none; }
}

/* ----- Past performance preview cards ----- */
.pp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pp-card {
  background: var(--white);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.pp-card:hover { border-color: var(--azure); transform: translateY(-2px); }
.pp-card .viz { aspect-ratio: 16/9; background: var(--charcoal); position: relative; }
.pp-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.pp-card .meta {
  font-family: var(--mono); font-size: 11px;
  color: var(--steel); letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 12px;
}
.pp-card h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 20px; line-height: 1.2; letter-spacing: -0.01em;
  margin: 0 0 10px 0;
}
.pp-card p { font-size: 14px; color: var(--steel); margin: 0 0 18px 0; flex: 1; }
.pp-card .rating {
  font-family: var(--mono); font-size: 12px;
  color: var(--azure); letter-spacing: .08em; text-transform: uppercase;
}
.pp-card .rating .pill {
  display: inline-block; padding: 4px 10px;
  background: rgba(0,212,180,.10);
  color: #00a085;
  border: 1px solid rgba(0,212,180,.28);
  border-radius: 2px;
  font-weight: 500;
  margin-right: 8px;
}
@media (max-width: 920px) { .pp-grid { grid-template-columns: 1fr; } }

/* ----- Two-col content ----- */
.two-col {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.two-col .label .eyebrow { margin-bottom: 24px; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }

/* ----- Footer ----- */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.foot-grid img { height: 240px; margin-bottom: 28px; }
.foot-grid h4 {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 18px 0;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-grid a { color: rgba(255,255,255,.7); font-size: 14px; }
.foot-grid a:hover { color: var(--white); }
.foot-tagline {
  font-family: var(--display); font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,.8);
  max-width: 320px; line-height: 1.5;
}
.foot-tagline .accent { color: var(--logo-teal); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono); font-size: 11px;
  color: rgba(255,255,255,.5); letter-spacing: .06em; text-transform: uppercase;
}
.foot-bottom .ids { display: flex; gap: 28px; flex-wrap: wrap; }
@media (max-width: 820px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* ----- Section heading layout ----- */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  margin-bottom: 4px;
}
.section-head .right p { color: var(--steel); margin: 0; font-size: 17px; line-height: 1.55; }
.dark .section-head .right p { color: rgba(255,255,255,.72); }
@media (max-width: 820px) { .section-head { grid-template-columns: 1fr; } }

/* ----- Pull quote ----- */
.pullquote {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 920px;
  margin: 0;
  color: var(--white);
}
.pullquote .mark { color: var(--teal); font-weight: 600; }
.pullquote-attr {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-top: 28px;
}

/* ----- Page hero (interior pages) ----- */
.page-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: clamp(56px, 6vw, 88px) 0 clamp(40px, 4.5vw, 64px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.05; letter-spacing: -0.025em;
  margin: 0; max-width: 12ch;
}
.page-hero h1 .light { font-weight: 300; }
.page-hero p { color: rgba(255,255,255,.76); max-width: 560px; margin-top: 20px; font-size: 18px; }
.crumbs {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 36px;
  display: flex; gap: 12px;
}
.crumbs a { color: rgba(255,255,255,.55); }
.crumbs a:hover { color: var(--teal); }
.crumbs .sep { color: rgba(255,255,255,.25); }
.crumbs .here { color: var(--teal); }

/* ----- Capability anchor list ----- */
.cap-toc {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--rule); border: 1px solid var(--rule);
}
.cap-toc a {
  background: var(--white);
  padding: 22px 18px;
  display: flex; flex-direction: column;
  color: var(--charcoal);
  transition: background .15s ease;
}
.cap-toc a:hover { background: var(--mist); color: var(--azure); }
.cap-toc .num { font-family: var(--mono); font-size: 12px; color: var(--azure); letter-spacing: .12em; }
.cap-toc .name { font-family: var(--display); font-weight: 600; font-size: 15px; margin-top: 10px; line-height: 1.25; }
@media (max-width: 1100px) { .cap-toc { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .cap-toc { grid-template-columns: 1fr; } }

/* ----- Capability detail block ----- */
.cap-block {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 6vw, 96px);
  padding: 64px 0;
  border-bottom: 1px solid var(--rule);
  scroll-margin-top: 90px;
}
.cap-block:last-child { border-bottom: none; }
.cap-block .num-large {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 1; color: var(--rule);
  letter-spacing: -0.04em;
}
.cap-block .label-row { font-family: var(--mono); font-size: 12px; color: var(--azure); letter-spacing: .12em; text-transform: uppercase; margin-top: 8px; }
.cap-block .cap-glyph {
  width: 100%; max-width: 220px; aspect-ratio: 1 / 1;
  position: sticky; top: 120px;
}
.cap-block .cap-glyph svg { width: 100%; height: 100%; display: block; }
.cap-block .cap-glyph svg * { stroke: var(--azure); fill: none; stroke-width: 1.2; }
.cap-block .cap-glyph svg .dot { fill: var(--azure); stroke: none; }
@media (max-width: 820px) {
  .cap-block .cap-glyph { max-width: 120px; position: static; }
}
.cap-block ul { padding-left: 0; list-style: none; margin: 24px 0 0; }
.cap-block ul li {
  padding: 14px 0; border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  font-size: 16px;
}
.cap-block ul li:last-child { border-bottom: 1px solid var(--rule); }
.cap-block ul li::before {
  content: "+"; font-family: var(--mono); color: var(--teal); font-weight: 500;
}
.cap-block .meta-grid {
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--rule);
}
.cap-block .meta-grid > div {
  padding: 18px 22px;
  border-right: 1px solid var(--rule);
}
.cap-block .meta-grid > div:last-child { border-right: none; }
.cap-block .meta-grid .lab { font-family: var(--mono); font-size: 11px; color: var(--steel); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.cap-block .meta-grid .val { font-family: var(--body); font-size: 14px; line-height: 1.4; color: var(--charcoal); }
@media (max-width: 820px) {
  .cap-block { grid-template-columns: 1fr; padding: 56px 0; }
  .cap-block .meta-grid { grid-template-columns: 1fr; }
  .cap-block .meta-grid > div { border-right: none; border-bottom: 1px solid var(--rule); }
  .cap-block .meta-grid > div:last-child { border-bottom: none; }
}

/* ----- Vehicle cards ----- */
.vehicle {
  background: var(--white);
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  margin-bottom: 24px;
}
.vehicle .left {
  background: var(--charcoal);
  color: var(--white);
  padding: 36px 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.vehicle .left::before {
  content: ""; position: absolute; inset: 0;
  background: var(--gradient);
  opacity: 0.12;
  pointer-events: none;
}
.vehicle .vehicle-tag {
  font-family: var(--mono); font-size: 11px;
  color: var(--azure); letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.vehicle .vehicle-name {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.05; letter-spacing: -0.02em; margin: 0;
}
.vehicle .vehicle-name .light { font-weight: 300; }
.vehicle .vehicle-num {
  font-family: var(--mono); font-size: 14px;
  color: rgba(255,255,255,.7); margin-top: 32px;
  letter-spacing: .04em;
  position: relative; z-index: 1;
}
.vehicle .right { padding: 36px 32px; }
.vehicle .right p { margin: 0 0 24px; font-size: 15px; color: var(--steel); line-height: 1.55; }
.vehicle .specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 32px;
  margin-bottom: 24px;
}
.vehicle .spec .lab { font-family: var(--mono); font-size: 11px; color: var(--steel); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }
.vehicle .spec .val { font-family: var(--body); font-size: 14px; color: var(--charcoal); font-weight: 500; }
.vehicle .naics {
  font-family: var(--mono); font-size: 12px;
  color: var(--steel);
  padding: 12px 14px;
  background: var(--mist); border-radius: 2px;
  line-height: 1.7;
}
@media (max-width: 820px) { .vehicle { grid-template-columns: 1fr; } }

/* ----- Past Performance large cards ----- */
.pp-large {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 0;
  border: 1px solid var(--rule);
  margin-bottom: 32px;
  background: var(--white);
}
.pp-large .viz-large {
  background: var(--charcoal);
  position: relative; overflow: hidden;
  min-height: 360px;
}
.pp-large .pp-content { padding: 40px 36px; }
.pp-large .customer { font-family: var(--mono); font-size: 12px; color: var(--azure); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.pp-large h3 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.pp-large h3 .light { font-weight: 300; }
.pp-large .scope { color: var(--steel); margin-bottom: 24px; font-size: 15px; }
.pp-large .specs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  border-top: 1px solid var(--rule); padding-top: 20px;
  margin-bottom: 22px;
}
.pp-large .spec .lab { font-family: var(--mono); font-size: 11px; color: var(--steel); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }
.pp-large .spec .val { font-family: var(--body); font-size: 14px; color: var(--charcoal); font-weight: 500; }
.pp-large .outcomes { list-style: none; padding: 0; margin: 0; }
.pp-large .outcomes li {
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  font-size: 14px; line-height: 1.45;
}
.pp-large .outcomes li::before { content: "✓"; color: var(--teal); font-weight: 600; }
.pp-large .rating-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.pp-large .rating-row .pill {
  display: inline-block;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 11px;
  background: rgba(0,212,180,.10);
  color: #007F69;
  border: 1px solid rgba(0,212,180,.32);
  border-radius: 2px;
}
.pp-large .rating-row .cpars-label { font-family: var(--mono); font-size: 11px; color: var(--steel); letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 920px) {
  .pp-large { grid-template-columns: 1fr; }
  .pp-large .specs { grid-template-columns: 1fr 1fr; }
}

/* ----- Leadership cards ----- */
.leader-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.leader {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 36px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  align-items: start;
}
.leader .avatar {
  width: 110px; height: 110px;
  background: var(--charcoal);
  position: relative; overflow: hidden;
  border-radius: 2px;
}
.leader .avatar::after {
  content: "TBD"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .14em; color: rgba(0,212,180,.7);
}
.leader .name { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; margin: 0; }
.leader .title { font-family: var(--mono); font-size: 12px; color: var(--azure); letter-spacing: .1em; text-transform: uppercase; margin: 6px 0 14px; }
.leader p { margin: 0; font-size: 14px; color: var(--steel); line-height: 1.55; }
@media (max-width: 720px) {
  .leader-grid { grid-template-columns: 1fr; }
  .leader { grid-template-columns: 1fr; }
}

/* ----- Customer logos in past-performance + capability-statement ----- */
.pp-content .customer .customer-logo {
  width: 22px; height: 22px; object-fit: contain;
  vertical-align: -6px; margin-right: 10px; display: inline-block;
}
.perf .ttl .perf-logo {
  width: 16px; height: 16px; object-fit: contain;
  vertical-align: -3px; margin-right: 6px; display: inline-block;
}

/* ----- CTA banner ----- */
.cta-banner {
  background: var(--charcoal);
  color: var(--white);
  padding: 96px 0 110px;
  position: relative; overflow: hidden;
}
.cta-banner .cta-deco {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.cta-banner { border-top: 1px solid rgba(255,255,255,.06); }
.cta-banner h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 24px;
  max-width: 22ch;
}
.cta-banner h2 .light { font-weight: 300; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ----- Contact page ----- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); }
.contact-card {
  border: 1px solid var(--rule);
  padding: 36px;
  background: var(--white);
}
.contact-card h3 { font-family: var(--display); font-weight: 700; font-size: 22px; margin: 0 0 14px; }
.contact-card p { color: var(--steel); margin: 0 0 22px; font-size: 15px; }
.contact-card .big-mailto {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--charcoal);
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 12px;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 6px;
}
.contact-card .big-mailto:hover { color: var(--azure); }
.contact-card .addr {
  font-family: var(--mono); font-size: 13px;
  color: var(--charcoal); line-height: 1.7;
  background: var(--mist); padding: 16px 18px; border-radius: 2px;
  margin-top: 6px;
}
.audience-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.audience-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  border: 1px solid var(--rule);
  color: var(--charcoal);
  transition: all .15s ease;
}
.audience-list a:hover { border-color: var(--azure); background: var(--mist); }
.audience-list .a-label { font-family: var(--display); font-weight: 600; font-size: 16px; }
.audience-list .a-arrow { color: var(--azure); font-family: var(--mono); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ----- About: Values ----- */
.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 32px;
}
.value-card .num {
  font-family: var(--mono); font-size: 12px; color: var(--azure);
  letter-spacing: .12em; margin-bottom: 18px;
}
.value-card h3 { font-family: var(--display); font-weight: 700; font-size: 22px; line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 12px; }
.value-card h3 .light { font-weight: 300; }
.value-card p { color: var(--steel); margin: 0; font-size: 15px; line-height: 1.55; }
@media (max-width: 720px) { .values-grid { grid-template-columns: 1fr; } }

/* ----- Recognition strip ----- */
.recognition {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule); border: 1px solid var(--rule);
  margin-top: 56px;
}
.recognition > div { background: var(--white); padding: 28px 24px; }
.recognition .lab { font-family: var(--mono); font-size: 11px; color: var(--azure); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.recognition .val { font-family: var(--display); font-weight: 600; font-size: 17px; line-height: 1.3; letter-spacing: -0.01em; }
@media (max-width: 720px) { .recognition { grid-template-columns: 1fr; } }

/* ----- Map placeholder ----- */
.map-placeholder {
  aspect-ratio: 16/8;
  background: var(--charcoal);
  border: 1px solid var(--rule);
  position: relative; overflow: hidden;
  margin-top: 28px;
}

/* ----- v3: Metric strip (homepage, dark) ----- */
.metric-strip {
  background: var(--charcoal);
  color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.metric-strip::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(45,138,201,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(45,138,201,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.metric-strip .metric-deco {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .9;
}
.metric-strip .metric-spark {
  width: 100%; max-width: 220px; height: 28px;
  margin: -2px 0 8px 0; display: block; overflow: visible;
}
.metric-strip .metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative; z-index: 1;
}
.metric-strip .metric {
  background: var(--charcoal);
  padding: 56px 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.metric-strip .metric .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--teal);
}
.metric-strip .metric .num .unit {
  font-weight: 300;
  color: rgba(0,212,180,.78);
  font-size: 0.5em;
  letter-spacing: -0.02em;
  margin-left: 4px;
}
.metric-strip .metric .lab {
  font-family: var(--mono); font-size: 11px;
  color: rgba(255,255,255,.62);
  letter-spacing: .14em; text-transform: uppercase;
}
.metric-strip .metric .desc {
  font-family: var(--body); font-size: 13px; line-height: 1.5;
  color: rgba(255,255,255,.78);
}
@media (max-width: 920px) {
  .metric-strip .metric-row { grid-template-columns: repeat(2, 1fr); }
  .metric-strip .metric { padding: 36px 24px; }
}

/* ----- v3: Agency seal strip ----- */
.seal-strip {
  background: var(--mist);
  border-bottom: 1px solid var(--rule);
  padding: 32px 0;
}
.seal-row {
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
}
.seal-row .seal-lead {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--steel);
  border-right: 1px solid var(--rule);
  padding-right: clamp(20px, 3vw, 48px);
}
.seal-row .seal-lead strong { color: var(--charcoal); display:block; font-weight: 600; margin-bottom:4px; font-family: var(--display); font-size: 13px; letter-spacing:-.005em; text-transform:none; }
.seal-row .seal {
  display: flex; flex-direction: column; gap: 8px; align-items: center; justify-content: center;
  text-align: center;
}
.seal-row .seal svg,
.seal-row .seal img {
  width: 56px; height: 56px;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity .2s ease;
}
.seal-row .seal img { display: block; }
.seal-row .seal:hover img { opacity: 1; }
.seal-row .seal .lab {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--steel);
  line-height: 1.3;
}
@media (max-width: 820px) {
  .seal-row { grid-template-columns: 1fr 1fr; }
  .seal-row .seal-lead { grid-column: 1 / -1; border-right: none; border-bottom: 1px solid var(--rule); padding-right: 0; padding-bottom: 16px; }
}

/* ----- v3: News / insights cards ----- */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--charcoal);
  transition: border-color .2s ease, transform .2s ease;
}
.news-card:hover { border-color: var(--azure); transform: translateY(-2px); }
.news-card .news-meta {
  padding: 22px 24px 0;
  display: flex; gap: 14px; align-items: center;
  font-family: var(--mono); font-size: 11px;
  color: var(--azure); letter-spacing: .12em; text-transform: uppercase;
}
.news-card .news-meta .pill {
  display: inline-block; padding: 4px 10px;
  border: 1px solid rgba(45,138,201,.32);
  border-radius: 2px;
  color: var(--azure);
}
.news-card .news-meta .date { color: var(--steel); }
.news-card h3 {
  font-family: var(--display); font-weight: 600;
  font-size: 19px; line-height: 1.25;
  letter-spacing: -.01em;
  padding: 16px 24px 10px; margin: 0;
}
.news-card p {
  padding: 0 24px 24px; margin: 0;
  color: var(--steel); font-size: 14px; line-height: 1.55;
  flex: 1;
}
.news-card .news-cta {
  border-top: 1px solid var(--rule);
  padding: 14px 24px;
  font-family: var(--mono); font-size: 11px;
  color: var(--azure); letter-spacing: .12em; text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
}
.news-card:hover .news-cta { color: var(--teal); }
@media (max-width: 920px) { .news-grid { grid-template-columns: 1fr; } }

/* ----- v3: Capability outcome line ----- */
.cap-card .outcome {
  font-family: var(--mono); font-size: 11px;
  color: var(--teal); letter-spacing: .04em;
  line-height: 1.5;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(0,212,180,.35);
  text-transform: none;
  position: relative; z-index: 2;
}
.cap-card .outcome::before {
  content: "→ "; color: var(--teal); font-weight: 600; opacity: 0.85;
}

/* Capability outcome chip */
.cap-outcome {
  margin-top: 22px;
  padding: 14px 18px;
  border-left: 2px solid var(--teal);
  background: var(--mist);
  font-size: 14px;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.5;
}
.cap-outcome .oc-lab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--azure);
  margin-right: 10px;
}

/* ----- v3: Treated mission imagery (replaces abstract viz) ----- */
.pp-img {
  position: relative; overflow: hidden;
  background: var(--charcoal);
}
.pp-img .duotone {
  position: absolute; inset: 0;
  background-position: center; background-size: cover;
  filter: grayscale(1) contrast(1.1) brightness(.55);
  opacity: 0.85;
}
.pp-img::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(45,138,201,.55), rgba(0,212,180,.18));
  mix-blend-mode: multiply;
}
.pp-img .pp-tag {
  position: absolute; left: 18px; top: 18px; z-index: 2;
  font-family: var(--mono); font-size: 10px;
  color: rgba(255,255,255,.85);
  letter-spacing: .14em; text-transform: uppercase;
  background: rgba(15,20,25,.6);
  border: 1px solid rgba(0,212,180,.35);
  padding: 5px 10px;
  backdrop-filter: blur(4px);
}
.pp-img .pp-coord {
  position: absolute; right: 18px; bottom: 16px; z-index: 2;
  font-family: var(--mono); font-size: 10px;
  color: rgba(255,255,255,.7);
  letter-spacing: .12em;
}
.pp-img .pp-grid {
  position: absolute; inset: 0; z-index: 1; opacity: .35; mix-blend-mode: screen;
}
/* Treated mission backdrops — abstract operational still rendered in CSS */
.pp-img.pp-aviation { background: linear-gradient(180deg, #0a1218 0%, #182530 60%, #0F1419 100%); }
.pp-img.pp-aviation .duotone {
  background:
    radial-gradient(ellipse 30% 20% at 30% 38%, rgba(0,212,180,.22), transparent 70%),
    radial-gradient(ellipse 55% 30% at 65% 62%, rgba(45,138,201,.32), transparent 70%),
    repeating-linear-gradient(120deg, rgba(255,255,255,.04) 0 2px, transparent 2px 11px),
    linear-gradient(180deg, #1c2a36 0%, #0F1419 100%);
  filter: none;
  opacity: 1;
}
.pp-img.pp-data { background: linear-gradient(180deg, #0F1419 0%, #142026 100%); }
.pp-img.pp-data .duotone {
  background:
    repeating-linear-gradient(0deg, rgba(0,212,180,.10) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, rgba(45,138,201,.12) 0 1px, transparent 1px 22px),
    radial-gradient(circle at 50% 50%, rgba(45,138,201,.35), transparent 70%),
    linear-gradient(140deg, #0F1419, #1a2630);
  filter: none;
  opacity: 1;
}
.pp-img.pp-construction { background: linear-gradient(180deg, #0F1419 0%, #1f2731 100%); }
.pp-img.pp-construction .duotone {
  background:
    linear-gradient(115deg, transparent 49%, rgba(0,212,180,.12) 50%, transparent 51%) 0 0/40px 40px,
    linear-gradient(65deg, transparent 49%, rgba(45,138,201,.18) 50%, transparent 51%) 0 0/40px 40px,
    radial-gradient(ellipse at 70% 30%, rgba(0,212,180,.18), transparent 60%),
    linear-gradient(180deg, #182027, #0F1419);
  filter: none;
  opacity: 1;
}

/* ----- v3: Partners / Teaming section ----- */
.partners-band {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  margin-top: 48px;
}
.partner-card {
  background: var(--charcoal);
  padding: 36px 30px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
}
.partner-card .num {
  font-family: var(--mono); font-size: 11px; color: var(--azure);
  letter-spacing: .14em; text-transform: uppercase;
}
.partner-card h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.01em;
  margin: 0; color: var(--white);
}
.partner-card h3 .light { font-weight: 300; }
.partner-card p { color: rgba(255,255,255,.74); font-size: 14px; line-height: 1.55; margin: 0; }
@media (max-width: 920px) { .partners-grid { grid-template-columns: 1fr; } }

/* ----- v3: Real leader avatars (photos) ----- */
.leader { grid-template-columns: 140px 1fr; }
.leader .avatar {
  width: 140px; height: 140px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--charcoal);
  position: relative;
}
.leader .avatar::after { content: none; }
.leader .avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02);
  display: block;
}
.leader .avatar::before {
  content: ""; position: absolute; left: -8px; top: -8px;
  width: 24px; height: 24px;
  border-top: 1px solid var(--teal);
  border-left: 1px solid var(--teal);
  z-index: 2;
}
@media (max-width: 720px) { .leader { grid-template-columns: 1fr; } }

/* ----- v3: Hero loading thumbnail rules (kept simple) ----- */

/* ----- v3: News badges & capability download ----- */
.cap-statement-band {
  background: linear-gradient(135deg, var(--charcoal) 0%, #182331 100%);
  color: var(--white);
  padding: 56px clamp(28px, 5vw, 56px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
  border: 1px solid rgba(0,212,180,.18);
}
.cap-statement-band::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(45,138,201,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(45,138,201,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.cap-statement-band > * { position: relative; z-index: 1; }
.cap-statement-band h3 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -.015em; line-height: 1.15;
  margin: 0 0 10px;
}
.cap-statement-band h3 .light { font-weight: 300; }
.cap-statement-band p { color: rgba(255,255,255,.78); margin: 0; font-size: 15px; line-height: 1.55; }
.cap-statement-band .meta {
  font-family: var(--mono); font-size: 11px;
  color: var(--teal); letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 14px;
}
.cap-statement-band .right-col { display: flex; flex-direction: column; gap: 10px; }
.cap-download-btn {
  display: inline-flex; align-items: center; justify-content: space-between;
  background: var(--teal); color: var(--charcoal);
  padding: 18px 22px;
  font-family: var(--body); font-weight: 600; font-size: 16px;
  letter-spacing: -.01em;
  border-radius: 2px;
  gap: 14px;
  transition: all .15s ease;
}
.cap-download-btn:hover { background: #00f0ce; color: var(--charcoal); transform: translateX(2px); }
.cap-download-btn .ext { font-family: var(--mono); font-size: 11px; opacity: .7; letter-spacing: .14em; }
.cap-download-btn .icon {
  width: 22px; height: 22px;
  border: 1.5px solid var(--charcoal);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  border-radius: 2px;
}
@media (max-width: 820px) {
  .cap-statement-band { grid-template-columns: 1fr; padding: 36px 28px; }
}

/* ----- v3: Map tile (refined dark Mapbox-style) ----- */
.map-tile {
  aspect-ratio: 16/8;
  background: #0a1116;
  border: 1px solid var(--rule);
  position: relative; overflow: hidden;
  margin-top: 20px;
}
.map-tile svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.map-tile .pin {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--teal);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 0 0 4px rgba(0,212,180,.18), 0 0 0 12px rgba(0,212,180,.08);
}
.map-tile .pin-label {
  position: absolute;
  font-family: var(--mono); font-size: 10px;
  color: var(--white);
  background: rgba(15,20,25,.85);
  padding: 4px 8px;
  border: 1px solid rgba(0,212,180,.32);
  letter-spacing: .14em; text-transform: uppercase;
  transform: translate(-50%, 14px);
  white-space: nowrap;
}

/* ----- v3: PP card download link ----- */
.pp-large .pp-foot {
  margin-top: 22px;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  align-items: center;
}
.pp-large .pp-foot .download-link {
  font-family: var(--mono); font-size: 12px;
  color: var(--azure); letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid transparent;
}
.pp-large .pp-foot .download-link:hover { color: var(--teal); border-bottom-color: var(--teal); }
.pp-large .pp-foot .pp-num {
  font-family: var(--mono); font-size: 11px; color: var(--steel);
  letter-spacing: .12em; text-transform: uppercase;
}

/* ----- v3: RMS reframe — modernization chip color variant ----- */
.pp-large .rating-row .pill.modern {
  background: rgba(45,138,201,.10);
  color: #0d5b91;
  border-color: rgba(45,138,201,.32);
}

/* ----- v3: Recognition 4-up ----- */
.recognition.four-up { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .recognition.four-up { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .recognition.four-up { grid-template-columns: 1fr; } }

/* ----- v3: Phone link ----- */
.phone-link {
  font-family: var(--mono); font-size: 14px;
  letter-spacing: .04em;
  color: var(--charcoal);
  display: inline-flex; align-items: center; gap: 8px;
}
.phone-link:hover { color: var(--azure); }
.phone-link .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

/* ----- v3: Sample TOs row (vehicles) ----- */
.sample-tos {
  margin-top: 22px;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}
.sample-tos .lab {
  font-family: var(--mono); font-size: 11px;
  color: var(--steel); letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 10px;
}
.sample-tos ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.sample-tos li {
  font-size: 14px; color: var(--charcoal);
  padding: 8px 0;
  display: grid; grid-template-columns: 24px 1fr; gap: 8px;
  align-items: start;
}
.sample-tos li::before {
  content: "+"; font-family: var(--mono); color: var(--azure); font-weight: 600;
}

/* ----- v3: Count-up ready state ----- */
.metric .num[data-count] { transition: opacity .3s; }

/* ----- v3: Footer phone ----- */
.foot-grid .phone {
  font-family: var(--mono); font-size: 14px;
  color: rgba(255,255,255,.85);
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: .04em;
}
.foot-grid .phone:hover { color: var(--teal); }

/* ----- v3: Smooth count-in for metric strip ----- */
.metric { opacity: 0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease; }
.metric.in { opacity: 1; transform: none; }

/* ----- Utility ----- */
.spacer-32 { height: 32px; }
.spacer-64 { height: 64px; }
.muted { color: var(--steel); }
.center { text-align: center; }
.divider { height: 1px; background: var(--rule); border: 0; margin: 64px 0; }
.dark .divider { background: rgba(255,255,255,.08); }

/* ----- v4: Real mission photography on past-performance cards ----- */
.pp-img.pp-aviation .duotone {
  background:
    linear-gradient(180deg, rgba(15,20,25,.30) 0%, rgba(15,20,25,.55) 100%),
    url("assets/past-performance/avcoe.png") center/cover no-repeat;
  filter: saturate(.95) contrast(1.02);
  opacity: 1;
}
.pp-img.pp-data .duotone {
  background:
    linear-gradient(180deg, rgba(15,20,25,.28) 0%, rgba(15,20,25,.55) 100%),
    url("assets/past-performance/denix.png") center/cover no-repeat;
  filter: saturate(.95) contrast(1.02);
  opacity: 1;
}
.pp-img.pp-construction .duotone {
  background:
    linear-gradient(180deg, rgba(15,20,25,.28) 0%, rgba(15,20,25,.55) 100%),
    url("assets/past-performance/usace-rms.png") center/cover no-repeat;
  filter: saturate(.95) contrast(1.02);
  opacity: 1;
}
/* Slightly stronger top scrim so the // tag stays legible */
.pp-img::after {
  background:
    linear-gradient(180deg, rgba(15,20,25,.35) 0%, transparent 28%, transparent 72%, rgba(15,20,25,.35) 100%);
  mix-blend-mode: normal;
}
