/* ===================================================================
   Valentor Services Group — valentorgrp.com
   AEROSPACE PRIME system · near-black, gold instrument accents
   Display: Barlow Condensed (caps) · Body: Barlow · Data: IBM Plex Mono
   Sharp geometry: 2px radii, hairline structure, corner-cut buttons.
   =================================================================== */

/* ---------- typefaces: self-hosted, latin subset ----------
   Vendored from registry.npmjs.org into assets/fonts (see its LICENSE.md).
   Not Google Fonts: a hotlinked stylesheet is a render-blocking request to a
   host we do not control, on a site whose whole argument is that we control
   what we ship. font-display:swap so text paints on the first frame. */

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal; font-weight: 500; font-display: swap;
  src: url("assets/fonts/barlow-condensed-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal; font-weight: 600; font-display: swap;
  src: url("assets/fonts/barlow-condensed-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("assets/fonts/barlow-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal; font-weight: 500; font-display: swap;
  src: url("assets/fonts/barlow-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal; font-weight: 600; font-display: swap;
  src: url("assets/fonts/barlow-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("assets/fonts/ibm-plex-mono-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal; font-weight: 500; font-display: swap;
  src: url("assets/fonts/ibm-plex-mono-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal; font-weight: 600; font-display: swap;
  src: url("assets/fonts/ibm-plex-mono-latin-600-normal.woff2") format("woff2");
}

:root {
  --bg: #0a0a0b;
  --bg-2: #0e0e10;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #f2f0ea;
  --muted: #a3a099;
  --dim: #817e76;
  --gold: #c9a35f;
  --gold-bright: #e3c98e;
  --gold-dim: #a8853f;
  --gold-08: rgba(201, 163, 95, 0.08);
  --gold-15: rgba(201, 163, 95, 0.15);
  --gold-35: rgba(201, 163, 95, 0.35);
  --r: 2px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Barlow", -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 15.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(201, 163, 95, 0.35); color: #fff; }

img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ---------- keyboard access ---------- */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--gold);
  color: #141006;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateY(-250%);
}
.skip-link:focus { transform: none; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}
main:focus-visible { outline: none; }
/* corner-cut clip-paths clip outlines — inset ring instead */
.btn:focus-visible,
.note-filter:focus-visible,
.note-filter[aria-pressed="true"]:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--gold-bright);
}
.btn-primary:focus-visible { box-shadow: inset 0 0 0 2px #141006; }

/* ---------- cross-document view transitions ----------
   Two-engine (Chrome/Edge 126+, Safari 18.2+); Firefox simply gets a normal
   navigation. Pure CSS, no JS, no third party. Kept short — this is a seam
   softener, not a set piece. */
@view-transition { navigation: auto; }
.brand { view-transition-name: brand; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .22s; }

/* ---------- film grain — static texture over the near-black ---------- */

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.038;
}

/* ---------- division rail — fixed wayfinding through 01–06 ---------- */

.rail {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: grid;
  gap: 18px;
  justify-items: end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.rail.on, .rail:focus-within { opacity: 1; pointer-events: auto; }
.rail a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.2s ease;
}
.rail-name {
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.rail a::after {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--dim);
  flex: none;
  transition: width 0.25s var(--ease), background 0.25s ease;
}
.rail a:hover { color: var(--muted); }
.rail a.active { color: var(--gold-bright); }
.rail a.active::after { width: 24px; background: var(--gold); }
.rail a:hover .rail-name,
.rail a:focus-visible .rail-name,
.rail a.active .rail-name { opacity: 1; transform: none; }
@media (max-width: 1099px) { .rail { display: none; } }

/* ---------- display type ---------- */

.d1, .d2 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
}
.d1 { font-size: clamp(3.25rem, 9.5vw, 7.5rem); }
.d2 { font-size: clamp(2.25rem, 5.5vw, 4rem); }
.d1, .d2 { text-wrap: balance; }
/* Orphan control on long-form prose. Safari 26 does whole-paragraph, Chrome
   does the last few lines, Firefox ignores it harmlessly. Free polish on the
   exact thing a document-quality reader notices. */
.prose p, .prose li, .article-desc, .note-body p, .cap-lede,
.cap-comp dd, .cap-diff li, .cap-honest, .teaming-cell p { text-wrap: pretty; }
.article-title, .teaming-title, .cap-name { text-wrap: balance; }

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-dim);
  flex: none;
}

.mono {
  font-family: var(--mono);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

/* ===================================================================
   Buttons — stencil-cut plates. Uppercase labels, corner cuts on
   opposing corners, scanline sweep on the primary.
   =================================================================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  overflow: hidden;
  cursor: pointer;
  border: 0;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn .arr {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s var(--ease);
}
.btn:hover .arr { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(115deg, var(--gold-bright), var(--gold));
  color: #141006;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.5) 50%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
  pointer-events: none;
}
.btn-primary:hover::before { transform: translateX(120%); }

.btn-outline {
  background: rgba(10, 10, 11, 0.45);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--border-strong);
  transition: box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.15s var(--ease);
}
.btn-outline:hover {
  box-shadow: inset 0 0 0 1px var(--gold);
  background: var(--gold-08);
  color: var(--gold-bright);
}

.btn-line {
  /* also used on <button> (capability print action) — reset UA chrome */
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 8px 0;
  position: relative;
}
.btn-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.btn-line:hover::after { transform: scaleX(1); }
.btn-line .arr {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s var(--ease);
}
.btn-line:hover .arr { transform: translateX(3px); }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 22px; height: 22px; }
/* the V draws itself on load — a stripe being earned */
.brand-mark path[pathLength] {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawV 0.9s var(--ease) 0.15s forwards;
}
.brand-mark path[pathLength]:last-of-type { animation-delay: 0.5s; }
@keyframes drawV { to { stroke-dashoffset: 0; } }
.brand-word {
  font-family: var(--display);
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 2px;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav .btn { padding: 11px 18px; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media picture { display: contents; }
.panel-media picture { display: contents; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.72);
}
/* The hero is a still, not footage, so it earns its motion from a very slow
   orbital drift. GSAP adds scale-depth on scroll-out; this is the idle clock. */
.hero-media .hero-still {
  transform-origin: 58% 42%;
  animation: heroDrift 72s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroDrift {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12) translate3d(-1.4%, 1%, 0); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.55) 0%, rgba(10, 10, 11, 0.15) 40%, rgba(10, 10, 11, 0.88) 100%),
    radial-gradient(ellipse 90% 60% at 50% 115%, rgba(201, 163, 95, 0.12), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 56px;
}
.hero-title { margin: 20px 0 24px; max-width: 12ch; }
.hero-title .gold { color: var(--gold-bright); }
.hero-sub {
  max-width: 620px;
  color: #cfccc4;
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
/* Sits above the fact strip, not on top of it. It used to be pinned to the
   hero's bottom edge, where it collided with the right-hand fact at 1440x900. */
.hero-credit {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  margin: 0 clamp(20px, 4vw, 48px) 10px 0;
  font-family: var(--mono);
  font-size: 0.5625rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
}

/* staged entrance */
.stage {
  opacity: 0;
  transform: translateY(16px);
  animation: stageIn 0.7s var(--ease) forwards;
}
.stage-1 { animation-delay: 0.15s; }
.stage-2 { animation-delay: 0.3s; }
.stage-3 { animation-delay: 0.45s; }
.stage-4 { animation-delay: 0.6s; }
@keyframes stageIn { to { opacity: 1; transform: none; } }

/* fact strip */
.factline {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 11, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.factline-inner {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
  gap: 16px 40px;
  padding: 18px 0;
}
.fact {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: stageIn 0.6s var(--ease) forwards;
}
.fact:nth-child(1) { animation-delay: 0.8s; }
.fact:nth-child(2) { animation-delay: 0.92s; }
.fact:nth-child(3) { animation-delay: 1.04s; }
.fact:nth-child(4) { animation-delay: 1.16s; }
.fact b { color: var(--gold); font-weight: 500; }
.fact .dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  flex: none;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ---------- scroll reveals ---------- */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

/* ===================================================================
   Division panels — full-viewport, alternating media
   =================================================================== */

.panel {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 64px 96px max(32px, calc((100vw - 1240px) / 2 + 32px));
}
.panel:nth-child(even) .panel-copy {
  order: 2;
  padding: 96px max(32px, calc((100vw - 1240px) / 2 + 32px)) 96px 64px;
}
.panel-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 65% at 50% 42%, rgba(201, 163, 95, 0.06), transparent 72%),
    var(--bg-2);
}
.panel-media img,
.panel-media canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.panel-media canvas { z-index: 1; }
.panel-media img { filter: saturate(0.8) brightness(0.8); }
.panel-media img.drift {
  animation: kenburns 44s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1.02); }
  to { transform: scale(1.11) translate(-1.8%, 1.2%); }
}
/* when GSAP drives the drift from scroll, the clock-based version yields */
.gsap-motion .panel-media img.drift { animation: none; }
.panel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 11, 0.35), transparent 40%);
  pointer-events: none;
}
.panel:nth-child(even) .panel-media::after {
  background: linear-gradient(270deg, rgba(10, 10, 11, 0.35), transparent 40%);
}
.media-credit {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.5625rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
}

.panel-index {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin-bottom: 16px;
}
.panel-title { margin-bottom: 8px; }
.panel-vision {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  margin-bottom: 20px;
}
.panel-copy p.body {
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 28px;
}
.spec {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  max-width: 460px;
  margin-bottom: 24px;
}
.spec b { color: var(--muted); font-weight: 500; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 20px;
  width: fit-content;
  box-shadow: inset 0 0 0 1px var(--border-strong);
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
.tag::before { content: ""; width: 5px; height: 5px; flex: none; }
.tag--op { color: var(--gold-bright); }
.tag--op::before { background: var(--gold); animation: pulse 2.4s ease-in-out infinite; }
.tag--dev { color: var(--dim); }
.tag--dev::before { box-shadow: inset 0 0 0 1px var(--dim); }

/* ===================================================================
   Federal — the record
   =================================================================== */

.federal {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 90% at 85% 10%, rgba(201, 163, 95, 0.05), transparent 60%),
    var(--bg-2);
  padding: 128px 0;
}
.federal-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.federal h2 { margin: 16px 0 20px; }
.federal-copy p { color: var(--muted); max-width: 48ch; margin-bottom: 18px; }
.federal-copy .btn { margin-top: 14px; }

/* Teaming — the lane open before certification. Sits under the record grid
   because a prime's SB liaison reads the ledger first, then asks "so what can
   you do for me today". */
.teaming {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.teaming-head { margin-bottom: 28px; }
.teaming-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  line-height: 1.02;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  margin-top: 14px;
}
.teaming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.teaming-cell p { color: var(--muted); font-size: 0.9375rem; line-height: 1.6; }
.teaming-k {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.teaming-cta { margin-top: 30px; }
@media (max-width: 900px) {
  .teaming-grid { grid-template-columns: 1fr; gap: 26px; }
  .teaming { margin-top: 52px; }
}

.record {
  border: 1px solid var(--border-strong);
  background: rgba(10, 10, 11, 0.6);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.record-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border-strong);
  background: var(--surface-2);
}
.record-title {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.record-stamp {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
  text-transform: uppercase;
}
.record-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
}
.record-row:last-child { border-bottom: 0; }
.record-label {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}
.record-value {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
/* ===================================================================
   The standard — manifesto
   =================================================================== */

.standard { padding: 128px 0; border-top: 1px solid var(--border); }
.standard h2 { margin: 16px 0 24px; max-width: 20ch; }
.standard-lede { color: var(--muted); max-width: 60ch; margin-bottom: 56px; font-size: 1.0625rem; }
.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.standard-cell { background: var(--bg); padding: 32px 28px; }
.standard-cell .num {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--gold-dim);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.standard-cell h3 {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.standard-cell p { color: var(--muted); font-size: 0.9375rem; }

/* ===================================================================
   Field notes — index
   =================================================================== */

.notes { padding: 128px 0; border-top: 1px solid var(--border); }
.notes-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 20px; }
.notes-head h2 { margin-top: 16px; }
.notes-lede { color: var(--muted); max-width: 58ch; margin-bottom: 40px; }

.note-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.note-filter {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 0;
  box-shadow: inset 0 0 0 1px var(--border);
  padding: 8px 14px;
  cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.note-filter:hover { box-shadow: inset 0 0 0 1px var(--border-strong); color: var(--text); }
.note-filter[aria-pressed="true"] {
  box-shadow: inset 0 0 0 1px var(--gold);
  color: var(--gold-bright);
  background: var(--gold-08);
}

.notes-list { border-top: 1px solid var(--border); }
.note-row {
  display: grid;
  grid-template-columns: 200px 1fr 32px;
  gap: 32px;
  align-items: baseline;
  padding: 26px 8px 26px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}
.note-row:hover { background: var(--surface); }
.note-row.filtered-out { display: none; }
.note-meta { display: grid; gap: 5px; }
.note-date { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.08em; color: var(--dim); }
.note-cat {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.note-body h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}
.note-row:hover .note-body h3 { color: var(--gold-bright); }
.note-body p { color: var(--muted); font-size: 0.9063rem; max-width: 68ch; }
.note-go {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--dim);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  align-self: center;
  transition: transform 0.25s var(--ease), stroke 0.2s ease;
}
.note-row:hover .note-go { transform: translateX(4px); stroke: var(--gold); }

/* ===================================================================
   Article pages
   =================================================================== */

.article-shell { padding: 150px 0 96px; }
.article-head { max-width: 820px; margin: 0 auto 40px; padding: 0 32px; }
.article-meta { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; flex-wrap: wrap; }
.article-title {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.0;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  margin-bottom: 20px;
}
.article-desc { color: var(--muted); font-size: 1.125rem; line-height: 1.6; max-width: 62ch; }

.article-illo { max-width: 980px; margin: 0 auto 64px; padding: 0 32px; }
.article-illo svg {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201, 163, 95, 0.05), transparent 70%),
    var(--bg-2);
}
.article-illo img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  filter: saturate(0.85) brightness(0.92);
}
.article-illo figcaption {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--dim);
  text-align: center;
}

.continued {
  max-width: 700px;
  margin: 56px auto 0;
  padding: 22px 28px;
  box-shadow: inset 0 0 0 1px var(--gold-35);
  background: var(--gold-08);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}
.continued-label {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 8px;
}
.continued p:not(.continued-label) { color: var(--muted); font-size: 0.9375rem; }

.prose {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #d6d3cb;
}
.prose p { margin-bottom: 24px; }
.prose h2 {
  font-family: var(--display);
  font-size: 1.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin: 52px 0 18px;
}
.prose h3 { font-size: 1.125rem; font-weight: 600; margin: 36px 0 12px; }
.prose a { color: var(--gold-bright); border-bottom: 1px solid var(--gold-35); transition: border-color 0.15s ease; }
.prose a:hover { border-bottom-color: var(--gold-bright); }
.prose strong { color: var(--text); font-weight: 600; }
.prose ul, .prose ol { margin: 0 0 24px 22px; }
.prose li { margin-bottom: 10px; }
.prose li::marker { color: var(--gold-dim); }
.prose blockquote {
  margin: 32px 0;
  padding: 6px 0 6px 24px;
  border-left: 2px solid var(--gold-dim);
  color: var(--text);
  font-size: 1.125rem;
}
.prose hr { border: 0; border-top: 1px solid var(--border); margin: 48px 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 24px; font-size: 0.875rem; }
.prose th {
  text-align: left;
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-strong);
}
.prose td { padding: 10px 12px; border-bottom: 1px solid var(--border); color: var(--muted); }
.prose td:first-child { color: var(--text); }

.sources {
  max-width: 700px;
  margin: 64px auto 0;
  padding: 26px 32px 0;
  border-top: 1px solid var(--border);
}
.sources h2 {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 16px;
}
.sources ol { list-style: none; counter-reset: src; display: grid; gap: 8px; }
.sources li {
  counter-increment: src;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.71875rem;
  line-height: 1.6;
  color: var(--muted);
  word-break: break-all;
}
.sources li::before { content: counter(src, decimal-leading-zero); color: var(--gold-dim); }
.sources a { color: var(--muted); transition: color 0.15s ease; }
.sources a:hover { color: var(--gold-bright); }

.next-notes { max-width: 820px; margin: 80px auto 0; padding: 0 32px; }
.next-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}
.next-label::after { content: ""; flex: 1; height: 1px; background: var(--border); }

/* ---------- contact ---------- */

.contact {
  text-align: center;
  padding: 140px 0;
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse 60% 70% at 50% 110%, rgba(201, 163, 95, 0.08), transparent 65%);
}
.contact .kicker { justify-content: center; }
.contact .kicker::before { display: none; }
.contact h2 { margin: 16px 0 12px; }
.contact-sub { color: var(--muted); margin-bottom: 44px; }
.contact-mail {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  /* 4.5vw alone overflowed a 320px screen: the address is 23 characters of
     condensed caps, so size it against the character count, not the viewport. */
  font-size: clamp(1.15rem, 6.2vw, 3.25rem);
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--gold-bright);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.contact-mail:hover { border-bottom-color: var(--gold); }
.contact-copyhint { margin-top: 14px; font-size: 0.8125rem; color: var(--dim); }
.copy-toast {
  margin: 12px auto 0;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  opacity: 0;
  transform: translateY(-4px);
}
.copy-toast.show { animation: toast 2.2s var(--ease) forwards; }
@keyframes toast {
  0% { opacity: 0; transform: translateY(-4px); }
  12%, 78% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-4px); }
}
.contact-addr { margin-top: 28px; font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }
.contact-note { margin-top: 10px; font-size: 0.8125rem; color: var(--dim); }

/* ---------- footer ---------- */

.footer { border-top: 1px solid var(--border); padding: 56px 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px 64px;
  align-items: start;
}
.footer-brand { display: grid; justify-items: start; gap: 4px; }
.footer-mark { width: 30px; height: 30px; margin-bottom: 8px; }
/* bookend: the V draws again when the reader reaches the end */
.footer-mark path[pathLength] {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.9s var(--ease) 0.1s;
}
.footer-mark path[pathLength]:last-of-type { transition-delay: 0.4s; }
.footer-mark.drawn path[pathLength] { stroke-dashoffset: 0; }
.footer-word {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.footer-tag {
  font-family: var(--mono);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { display: inline-block; padding: 4px 0; }
.footer-links a {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--gold-bright); }
.footer-legal { grid-column: 1 / -1; border-top: 1px solid var(--border); padding-top: 22px; }
@media (max-width: 760px) {
  .btn-line { padding: 12px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .footer-links { gap: 14px 20px; }
}
.footer-legal p { color: var(--dim); font-size: 0.78125rem; }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .panel { grid-template-columns: 1fr; min-height: 0; }
  .panel-copy, .panel:nth-child(even) .panel-copy { order: 0; padding: 72px 32px; }
  .panel-media { min-height: 300px; }
  .federal-grid { grid-template-columns: 1fr; gap: 44px; }
  .standard-grid { grid-template-columns: 1fr; }
  .factline-inner { grid-template-columns: repeat(2, auto); }
  .note-row { grid-template-columns: 1fr 32px; }
  .note-meta { grid-column: 1 / -1; grid-template-columns: auto auto; justify-content: start; gap: 16px; }
  .nav-links { gap: 18px; }
  .nav .btn { display: none; }
  .note-filter { padding: 12px 16px; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .panel-copy, .panel:nth-child(even) .panel-copy { padding: 56px 20px; }
  .factline-inner { grid-template-columns: 1fr; gap: 10px; }
  .record-row { grid-template-columns: 1fr; gap: 4px; }
  .nav-links a:not([href$="#contact"]) { display: none; }
}

/* Screen-reader-only text (link context, e.g. "opens in a new tab") */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* "The buyers we want are the ones who verify" — so route them. Each row
   points at the public database where that fact lives, or will live. */
.record-verify {
  display: inline-block;
  margin-top: 6px;
  padding: 5px 0;
  font-family: var(--mono);
  font-size: 0.5875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.18s var(--ease);
}
.record-verify::after { content: " \2197"; }
.record-verify:hover, .record-verify:focus-visible { color: var(--gold); }

/* the one live link inside the record ledger */
.record-link {
  display: inline-block;
  padding: 2px 0;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 163, 95, 0.32);
  transition: border-color 0.18s var(--ease), color 0.18s var(--ease);
}
.record-link:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }
.contact-note a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 163, 95, 0.32);
  transition: border-color 0.18s var(--ease), color 0.18s var(--ease);
}
.contact-note a:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }

/* ===================================================================
   CAPABILITY STATEMENT (capability.html)
   Two audiences, one file. On screen it is a page of the site. On paper it
   is a one-page federal capability statement: white, black, US Letter,
   because contracting officers save these to PDF and file them, and a
   near-black page renders as a toner brick in a procurement folder.
   =================================================================== */

.cap-shell {
  max-width: 1060px;
  margin: 0 auto;
  padding: 132px 20px 96px;
}

/* --- screen-only actions --- */
.cap-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.cap-hint {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--dim);
  margin: 0;
}
.cap-hint b { color: var(--muted); font-weight: 500; }
#cap-print .arr path { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* --- the document --- */
.cap-doc {
  border: 1px solid var(--border);
  background: var(--bg-2);
  padding: clamp(28px, 4vw, 52px);
}

.cap-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-strong);
}
.cap-ident { display: flex; align-items: flex-start; gap: 16px; }
.cap-mark { width: 44px; height: 44px; flex: none; margin-top: 2px; }
.cap-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  line-height: 1.02;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  margin: 0;
}
.cap-status {
  margin: 8px 0 0;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}
.cap-pending { color: var(--gold); font-style: normal; }
.cap-doctype {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.15;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: right;
  color: var(--gold);
  margin: 0;
  flex: none;
}

.cap-lede {
  margin: 22px 0 34px;
  max-width: 74ch;
  color: #cfccc4;
  font-size: 1rem;
  line-height: 1.62;
}

.cap-cols {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 40px;
}

.cap-cols--pair { grid-template-columns: 1fr 1fr; }
.cap-block { margin-bottom: 32px; }
.cap-block h2 {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.cap-sub {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 24px 0 10px;
}

.cap-comp { margin: 0; }
.cap-comp dt {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 14px;
}
.cap-comp dt:first-child { margin-top: 0; }
.cap-comp dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.cap-diff { list-style: none; margin: 0; padding: 0; }
.cap-diff li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.cap-diff li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 7px; height: 7px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}
.cap-diff b { color: var(--text); font-weight: 600; }

.cap-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.cap-cell {
  padding: 12px 14px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cap-cell:nth-child(3n) { border-right: 0; }
.cap-cell--span { grid-column: 1 / -1; border-right: 0; border-bottom: 0; }
.cap-k {
  font-family: var(--mono);
  font-size: 0.5875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.cap-v {
  font-family: var(--mono);
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text);
}
.cap-v i { font-style: normal; }

.cap-naics { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 32px; }
.cap-naics li {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 5px;
  break-inside: avoid;
}
.cap-naics b { font-family: var(--mono); color: var(--gold); font-weight: 500; margin-right: 7px; }
.cap-naics i { font-style: normal; color: var(--dim); }

.cap-keywords {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--muted);
}
.cap-poc-note {
  margin: 10px 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--dim);
  max-width: 34ch;
}
.cap-honest {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 82ch;
}
.cap-honest b { color: var(--text); font-weight: 600; }
.cap-url { font-family: var(--mono); color: var(--gold); }

.cap-foot {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--border-strong);
}
.cap-poc h2 {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.cap-poc-line {
  margin: 0 0 6px;
  font-size: 0.875rem;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.cap-poc-line .cap-k { min-width: 62px; flex: none; }
.cap-poc-line b { font-family: var(--mono); color: var(--text); font-weight: 500; }
.cap-legal p {
  margin: 0 0 8px;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--dim);
}
.cap-rev { font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }

@media (max-width: 860px) {
  .cap-shell { padding-top: 108px; }
  .cap-cols, .cap-foot { grid-template-columns: 1fr; gap: 26px; }
  .cap-data { grid-template-columns: 1fr; }
  .cap-cell { border-right: 0; }
  .cap-naics { columns: 1; }
  .cap-head { flex-direction: column; }
  .cap-doctype { text-align: left; }
}

/* ---------- print: the document, on paper ---------- */

@media print {
  @page { size: letter; margin: 11mm; }

  .nav, .footer, .rail, .skip-link, .cap-actions { display: none !important; }
  body::after { display: none !important; }

  html, body {
    background: #fff !important;
    color: #111 !important;
    font-size: 10pt;
  }
  /* Chrome lays the page out at the full sheet width and crops to the @page
     box, which clips the right edge. Pinning the document to the real
     printable width (8.5in - 24mm) keeps every line inside the paper. */
  .cap-shell { width: 191mm; max-width: 191mm; margin: 0 auto; padding: 0; }
  .cap-doc { border: 0; background: transparent; padding: 0; }

  /* Letter minus margins is ~718 CSS px, which trips the 860px mobile rules.
     Everything below re-asserts the wide layout for paper. */
  .cap-head {
    flex-direction: row;
    align-items: flex-start;
    border-bottom: 1.4pt solid #111;
    padding-bottom: 6pt;
  }
  .cap-mark { width: 30pt; height: 30pt; }
  .cap-mark path { stroke: #8a6a24 !important; }
  .cap-name { font-size: 19.5pt; color: #111; }
  .cap-status { font-size: 7.5pt; margin-top: 4pt; color: #333; }
  .cap-doctype { font-size: 9pt; color: #8a6a24; text-align: right; }
  .cap-pending { color: #8a6a24; }

  .cap-lede { margin: 7pt 0 6pt; font-size: 9pt; line-height: 1.45; color: #222; max-width: none; }

  .cap-cols { grid-template-columns: 1.06fr 1fr; gap: 18pt; }
  .cap-cols--pair { grid-template-columns: 1fr 1fr; gap: 18pt; }
  .cap-block { margin-bottom: 4.5pt; break-inside: avoid; }
  .cap-block h2 {
    font-size: 7.8pt; color: #8a6a24; margin-bottom: 5pt;
    padding-bottom: 2.5pt; border-bottom: 0.5pt solid #999;
  }
  .cap-sub { font-size: 7.2pt; color: #444; margin: 6pt 0 3.5pt; }

  .cap-comp dt { font-size: 9.8pt; margin-top: 4pt; color: #111; }
  .cap-comp dd { font-size: 8.3pt; line-height: 1.24; color: #333; }
  .cap-diff li { font-size: 8.3pt; line-height: 1.27; color: #333; margin-bottom: 3.5pt; padding-left: 12pt; }
  .cap-diff li::before { background: #8a6a24; width: 4.5pt; height: 4.5pt; top: 0.5em; }
  .cap-diff b { color: #111; }

  .cap-data { grid-template-columns: repeat(3, 1fr); border: 0.5pt solid #999; }
  .cap-cell {
    padding: 3.5pt 7pt; gap: 1.5pt;
    border-right: 0.5pt solid #999;
    border-bottom: 0.5pt solid #999;
  }
  .cap-cell:nth-child(3n) { border-right: 0; }
  .cap-cell--span { border-right: 0; border-bottom: 0; }
  .cap-k { font-size: 6.5pt; color: #555; }
  .cap-v { font-size: 8.7pt; line-height: 1.4; color: #111; }
  .cap-naics { columns: 3; column-gap: 14pt; }
  .cap-naics li { font-size: 8pt; color: #333; margin-bottom: 1.5pt; }
  .cap-naics b { color: #8a6a24; }
  .cap-naics i { color: #666; }

  .cap-keywords { font-size: 7pt; line-height: 1.33; color: #444; }
  .cap-poc-note { font-size: 7pt; line-height: 1.32; color: #555; margin-top: 5pt; max-width: none; }
  .cap-honest { font-size: 8.3pt; line-height: 1.3; color: #333; max-width: none; }
  .cap-honest b { color: #111; }
  .cap-url { color: #8a6a24; }

  .cap-foot {
    grid-template-columns: 1fr 1.3fr;
    gap: 20pt;
    padding-top: 5pt;
    border-top: 1.4pt solid #111;
    break-inside: avoid;
  }
  .cap-poc h2 { font-size: 8pt; color: #8a6a24; margin-bottom: 6pt; }
  .cap-poc-line { font-size: 8.3pt; color: #333; margin-bottom: 2.5pt; }
  .cap-poc-line .cap-k { min-width: 44pt; }
  .cap-poc-line b { color: #111; }
  .cap-legal p { font-size: 6.9pt; line-height: 1.32; color: #555; margin-bottom: 2pt; }

  a[href]::after { content: none !important; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .stage, .fact { opacity: 1; transform: none; animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .fact .dot, .tag--op::before { animation: none; }
  .panel-media img.drift { animation: none; }
  .brand-mark path[pathLength] { stroke-dashoffset: 0; animation: none; }
  .footer-mark path[pathLength] { stroke-dashoffset: 0; transition: none; }
  .rail { display: none; }
  .btn-primary::before { display: none; }
  .hero-media .hero-still { animation: none; transform: scale(1.05); }
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
}
