/* ==========================================================================
   TWGA — The Worthington Group Aviation
   Executive-grade federal-facing design system
   Institutional consulting tone — matches TWGA brand mark (navy + red)
   Palette: Navy | Red | Steel Gray | White  (GovCon Standard)
   ========================================================================== */

/* --- Design Tokens ------------------------------------------------------- */
:root {
  /* Core palette — TWGA brand: institutional navy + signal red
     Aligned to dev wireframe spec: Navy #0A1F33 · Steel #6B7280 · Light Gray #F5F7FA */
  --c-ink:        #0A1628;   /* deepest navy / ink (body type) */
  --c-navy:       #0A1F33;   /* primary navy — buttons, brand, links */
  --c-navy-2:     #1A3556;   /* mid navy — gradients, accents */
  --c-slate:      #334E68;   /* slate accent */
  --c-steel:      #6B7280;   /* muted steel — secondary text */
  --c-line:       #D8DEE9;   /* hairlines */
  --c-fog:        #F5F7FA;   /* section wash — light gray */
  --c-paper:      #FFFFFF;   /* paper */
  --c-cream:      #F6F7FA;   /* cool paper */
  --c-red:        #E4141F;   /* TWGA red — primary accent (from logo mark) */
  --c-red-dk:     #B30F18;   /* red hover / deep */
  --c-red-lt:     #FDECED;   /* red wash / tint backgrounds */
  --c-signal:     #1F6FEB;   /* link / informational signal */
  --c-success:    #2E7D32;
  --c-danger:     #B42318;

  /* Type scale */
  --f-sans: "Inter", "Helvetica Neue", Arial, system-ui, -apple-system, sans-serif;
  --f-serif: "Source Serif Pro", "Georgia", "Times New Roman", serif;
  --f-mono: "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  /* Spacing */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  --radius: 2px;
  --radius-lg: 6px;
  --container: 1200px;        /* dev wireframe spec — 1200 max + 120 side gap on 1440 */
  --container-narrow: 960px;

  --shadow-sm: 0 1px 2px rgba(10,22,40,.06), 0 1px 1px rgba(10,22,40,.04);
  --shadow-md: 0 6px 24px rgba(10,22,40,.08), 0 2px 6px rgba(10,22,40,.04);
  --shadow-lg: 0 20px 48px rgba(10,22,40,.12), 0 4px 12px rgba(10,22,40,.06);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--c-navy); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--c-red-dk); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--c-red);
  outline-offset: 3px;
}
button { font-family: inherit; cursor: pointer; }

/* Accessibility — skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-navy); color: #fff; padding: 12px 16px;
  z-index: 1000; font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; }

/* --- Typography ---------------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--f-sans);
  color: var(--c-ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 var(--s-4);
  font-weight: 700;
}
h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); }
h4 { font-size: 1.125rem; }
p  { margin: 0 0 var(--s-4); }
p.lead { font-size: 1.15rem; color: var(--c-slate); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-red-dk);
  margin-bottom: var(--s-3);
}
.eyebrow--light { color: var(--c-red); }

/* --- Layout -------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s-5); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: var(--s-9) 0; }
.section--tight { padding: var(--s-8) 0; }
.section--dark { background: var(--c-navy); color: #D8DEE9; }
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4 { color: #fff; }
.section--dark p.lead { color: #B7C3D4; }
.section--ink { background: var(--c-ink); color: #D8DEE9; }
.section--ink h1,.section--ink h2,.section--ink h3 { color: #fff; }
.section--fog { background: var(--c-fog); }
.section--cream { background: var(--c-cream); }

.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2,1fr); } }

/* --- Announcement bar ---------------------------------------------------- */
.announce {
  background: var(--c-ink);
  color: #C9D3E3;
  font-size: 0.8125rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.announce .container { display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); }
.announce a { color: var(--c-red); font-weight: 600; }
.announce__meta { display: flex; gap: var(--s-5); align-items: center; }
.announce__meta span::before { content: "●"; color: var(--c-red); margin-right: 6px; font-size: .6em; }
@media (max-width: 700px) { .announce__meta { display: none; } }

/* --- Header (white bg, navy/red logo on light) -------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-3) 0;
  gap: var(--s-5);
  min-height: 96px;
}
.brand {
  display: flex; align-items: center; gap: var(--s-3);
  color: var(--c-ink); font-weight: 700; letter-spacing: -0.01em;
  font-size: 1.0625rem; text-decoration: none;
}
.brand__logo { height: 68px; width: auto; display: block; }
.brand__tag { display: none; /* legal name lives inside the logo image */ }
@media (max-width: 1100px) { .brand__logo { height: 60px; } }
@media (max-width: 900px) { .brand__logo { height: 54px; } }
@media (max-width: 520px) { .brand__logo { height: 44px; } .site-header__inner { min-height: 76px; } }
.brand__mark { display: none; }
.brand__name { display: none; }

.nav { display: flex; align-items: center; gap: var(--s-5); }
.nav__list { display: flex; gap: var(--s-4); list-style: none; margin: 0; padding: 0; align-items: center; }
.nav__link {
  color: var(--c-ink); font-weight: 500; font-size: 0.9375rem;
  padding: 8px 2px; position: relative;
  transition: color .15s var(--ease);
}
.nav__link:hover { color: var(--c-navy); }
.nav__link.is-active,
.nav__link[aria-current="page"] { color: var(--c-navy); }
.nav__link.is-active::after,
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -10px;
  height: 2px; background: var(--c-red);
}

/* Header CTA — navy primary on light header */
.nav__cta.btn--primary {
  background: var(--c-navy); color: #fff; border-color: var(--c-navy);
}
.nav__cta.btn--primary:hover { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }

/* --- Services dropdown -------------------------------------------------- */
.nav__item { position: relative; }
.nav__item--dropdown > .nav__link {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
}
.nav__caret {
  width: 9px; height: 9px; border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor; transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .2s var(--ease);
}
.nav__dropdown {
  position: absolute; top: calc(100% + 8px); left: -8px;
  min-width: 280px;
  background: #fff; color: var(--c-ink);
  border: 1px solid var(--c-line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: var(--s-3); list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .15s var(--ease), transform .15s var(--ease), visibility .15s;
}
.nav__dropdown::before {
  content: ""; position: absolute; top: -6px; left: 24px;
  width: 12px; height: 12px; background: #fff;
  border-left: 1px solid var(--c-line); border-top: 1px solid var(--c-line);
  transform: rotate(45deg);
}
.nav__item--dropdown:hover > .nav__dropdown,
.nav__item--dropdown:focus-within > .nav__dropdown,
.nav__item--dropdown.is-open > .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__item--dropdown:hover > .nav__link .nav__caret,
.nav__item--dropdown.is-open > .nav__link .nav__caret { transform: rotate(225deg) translate(-2px, -2px); }
.nav__dropdown a {
  display: block; padding: 10px 12px; border-radius: 6px;
  color: var(--c-ink); text-decoration: none;
  font-size: 0.9375rem; font-weight: 500; letter-spacing: 0;
  text-transform: none; line-height: 1.35;
}
.nav__dropdown a:hover { background: var(--c-fog); color: var(--c-navy); }
.nav__dropdown a .nav__dropdown-meta { display: block; font-size: 0.75rem; color: var(--c-steel); margin-top: 2px; font-weight: 400; }

.nav__toggle {
  display: none; background: transparent; border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius); padding: 8px 12px; color: #fff;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.75rem; font-weight: 600;
}
@media (max-width: 960px) {
  .nav__list { display: none; }
  .nav__toggle { display: inline-flex; align-items: center; gap: 8px; }
  .nav.is-open .nav__list {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--c-navy);
    padding: var(--s-4) var(--s-5); border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-md);
    align-items: stretch; gap: var(--s-2);
  }
  .nav.is-open .nav__link { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav.is-open .nav__cta { margin-top: var(--s-3); }
  .nav__dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent;
    padding: 0 0 0 var(--s-3); margin-top: var(--s-2);
  }
  .nav__dropdown::before { display: none; }
  .nav__dropdown a { color: rgba(255,255,255,0.85); }
  .nav__dropdown a:hover { background: rgba(255,255,255,0.06); color: #fff; }
  .nav__dropdown a .nav__dropdown-meta { color: rgba(255,255,255,0.55); }
}

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 12px 22px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.9375rem; letter-spacing: 0.01em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  text-decoration: none; line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--c-navy); color: #fff; }
.btn--primary:hover { background: var(--c-ink); color: #fff; }
.btn--gold, .btn--red { background: var(--c-red); color: #fff; }
.btn--gold:hover, .btn--red:hover { background: var(--c-red-dk); color: #fff; }
.btn--ghost { background: transparent; color: var(--c-ink); border-color: var(--c-ink); }
.btn--ghost:hover { background: var(--c-ink); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: #fff; color: var(--c-navy); }
.btn--sm { padding: 8px 14px; font-size: 0.8125rem; }
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn__icon { width: 16px; height: 16px; }

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--c-ink);
  color: #D8DEE9;
  padding: var(--s-10) 0 var(--s-9);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 40%, rgba(228,20,31,.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--c-ink) 0%, var(--c-navy-2) 100%);
  z-index: 0;
}
.hero__grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  z-index: 0;
}
.hero__radar {
  position: absolute; top: 50%; right: -120px; transform: translateY(-50%);
  width: 640px; height: 640px;
  opacity: .7;
  z-index: 0;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 820px; }
.hero h1 { color: #fff; }
.hero p.lead { color: #B7C3D4; font-size: 1.25rem; max-width: 62ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-4); margin-top: var(--s-6); }
.hero__meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5);
  margin-top: var(--s-8); padding-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__meta dt {
  font-size: 0.6875rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-red); margin-bottom: 6px; font-weight: 600;
}
.hero__meta dd { margin: 0; color: #fff; font-weight: 600; font-size: 0.95rem; }
@media (max-width: 800px) {
  .hero__meta { grid-template-columns: repeat(2, 1fr); }
  .hero__radar { display: none; }
}

/* --- Credibility band ----------------------------------------------------
   Dev wireframe: light gray (#F5F7FA = --c-fog) authority strip, ~80px tall  */
.trust-band {
  padding: var(--s-5) 0;
  background: var(--c-fog);
  border-bottom: 1px solid var(--c-line);
}
.trust-band__label {
  text-align: center; color: var(--c-steel);
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: var(--s-4); font-weight: 600;
}
.trust-band__grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: var(--s-4);
  align-items: center;
}
.trust-band__item {
  display: flex; align-items: center; justify-content: center;
  color: var(--c-slate); font-weight: 600; font-size: 0.8125rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  opacity: .8;
}
@media (max-width: 900px) {
  .trust-band__grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
}
@media (max-width: 520px) {
  .trust-band__grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
}

/* --- Cards --------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-sm);  /* dev wireframe: very subtle baseline shadow */
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #B6C2D2; } /* slight lift on hover */
.card--link { display: block; color: inherit; }
.card__kicker {
  font-family: var(--f-mono);
  font-size: 0.75rem; letter-spacing: 0.08em;
  color: var(--c-steel); margin-bottom: var(--s-3);
}
.card__title { font-size: 1.25rem; margin-bottom: var(--s-3); }
.card__body { color: var(--c-slate); font-size: 0.95rem; }
.card__more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--s-4); color: var(--c-navy);
  font-weight: 600; font-size: 0.875rem;
}
.card--navy {
  background: var(--c-navy); color: #D8DEE9; border-color: var(--c-navy-2);
}
.card--navy .card__title { color: #fff; }
.card--navy .card__kicker { color: var(--c-red); }
.card--navy:hover { background: var(--c-ink); }

/* --- Feature block ------------------------------------------------------- */
.split {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--s-8); align-items: center;
}
.split--reverse > :first-child { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: var(--s-6); }
  .split--reverse > :first-child { order: 0; }
}

/* --- Stat block ---------------------------------------------------------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5);
}
.stat { padding: var(--s-5); border-left: 3px solid var(--c-red); }
.stat__num {
  font-size: 2.75rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--c-ink); line-height: 1; margin-bottom: var(--s-2);
}
.section--dark .stat__num { color: #fff; }
.stat__label { color: var(--c-slate); font-size: 0.875rem; line-height: 1.45; }
.section--dark .stat__label { color: #B7C3D4; }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2,1fr); } }

/* --- Audience cards (Dual journey) --------------------------------------- */
.journey { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
.journey__card {
  padding: var(--s-7); border-radius: var(--radius-lg);
  border: 1px solid var(--c-line); background: #fff;
  display: flex; flex-direction: column;
  position: relative;
}
.journey__card--federal { background: linear-gradient(160deg, var(--c-ink), var(--c-navy)); color: #D8DEE9; border-color: var(--c-navy); }
.journey__card--federal h3 { color: #fff; }
.journey__card--commercial h3 { color: var(--c-ink); }
.journey__tag {
  align-self: flex-start; font-family: var(--f-mono); font-size: 0.6875rem;
  letter-spacing: 0.12em; padding: 4px 10px; border-radius: 99px;
  background: rgba(228,20,31,.12); color: var(--c-red);
  margin-bottom: var(--s-4); font-weight: 600;
}
.journey__card--commercial .journey__tag { background: rgba(11,37,69,.08); color: var(--c-navy); }
.journey__list { list-style: none; padding: 0; margin: var(--s-4) 0; }
.journey__list li { padding: 10px 0 10px 26px; position: relative; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 0.9375rem; }
.journey__card--commercial .journey__list li { border-bottom-color: var(--c-line); color: var(--c-slate); }
.journey__list li:last-child { border-bottom: 0; }
.journey__list li::before {
  content: ""; position: absolute; left: 0; top: 16px; width: 14px; height: 2px; background: var(--c-red);
}
@media (max-width: 900px) { .journey { grid-template-columns: 1fr; } }

/* --- Capability Statement embedded visual ------------------------------- */
.cap-stmt {
  background: var(--c-cream);
  border: 1px solid #E6DFCF;
  border-radius: var(--radius-lg);
  padding: var(--s-7);
  position: relative;
  overflow: hidden;
}
.cap-stmt::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--c-navy) 0%, var(--c-red) 100%);
}
.cap-stmt__header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: var(--s-4); margin-bottom: var(--s-5); }
.cap-stmt__title { margin: 0; font-size: 1.375rem; }
.cap-stmt__doc-meta { font-family: var(--f-mono); font-size: 0.75rem; color: var(--c-slate); text-align: right; }
.cap-stmt__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
@media (max-width: 800px) { .cap-stmt__grid { grid-template-columns: 1fr; } }
.cap-stmt__block h4 {
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-navy); margin-bottom: var(--s-2); padding-bottom: 6px;
  border-bottom: 1px solid rgba(11,37,69,.15);
}
.cap-stmt__block ul { list-style: none; padding: 0; margin: 0; font-size: 0.9375rem; color: var(--c-ink); }
.cap-stmt__block li { padding: 4px 0; line-height: 1.5; }
.cap-stmt__block li::before { content: "▸ "; color: var(--c-red-dk); font-size: 0.75em; }
.cap-stmt__codes { font-family: var(--f-mono); font-size: 0.875rem; }
.cap-stmt__codes li::before { content: ""; }
.cap-stmt__footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s-4); margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid rgba(11,37,69,.15); }

/* --- Process / Timeline steps ------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { padding: var(--s-5); border-left: 1px solid var(--c-line); position: relative; }
.step:first-child { border-left: 0; padding-left: 0; }
.step__num { font-family: var(--f-mono); color: var(--c-red-dk); font-size: 0.8125rem; margin-bottom: var(--s-3); font-weight: 600; }
.step__title { font-size: 1rem; font-weight: 700; margin-bottom: var(--s-2); }
.step__body { color: var(--c-slate); font-size: 0.9rem; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-left: 0; border-top: 1px solid var(--c-line); padding-left: 0; padding-top: var(--s-5); }
  .step:first-child { border-top: 0; padding-top: 0; }
}

/* --- Insights / articles ------------------------------------------------- */
.article-card {
  display: flex; flex-direction: column;
  border-top: 2px solid var(--c-navy);
  padding-top: var(--s-4);
}
.article-card__meta { font-family: var(--f-mono); font-size: 0.75rem; color: var(--c-steel); margin-bottom: var(--s-3); }
.article-card__title { font-size: 1.125rem; margin-bottom: var(--s-3); }
.article-card__title a { color: var(--c-ink); }
.article-card__title a:hover { color: var(--c-red-dk); }
.article-card__excerpt { color: var(--c-slate); font-size: 0.9375rem; }

/* --- Forms --------------------------------------------------------------- */
.form { display: grid; gap: var(--s-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--c-ink);
}
.field label .req { color: var(--c-danger); margin-left: 2px; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 0.9375rem;
  padding: 12px 14px; border: 1px solid var(--c-line); border-radius: var(--radius);
  background: #fff; color: var(--c-ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--c-navy);
  box-shadow: 0 0 0 3px rgba(11,37,69,.12);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field__help { font-size: 0.75rem; color: var(--c-steel); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.8125rem; color: var(--c-slate); }
.consent input { margin-top: 3px; }
.form-status { padding: var(--s-4); border-radius: var(--radius); font-size: 0.9rem; display: none; }
.form-status.is-visible { display: block; }
.form-status--success { background: #E8F5E9; color: #1B5E20; border: 1px solid #A5D6A7; }
.form-status--error { background: #FEE4E2; color: #912018; border: 1px solid #FDA29B; }

/* --- Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--c-ink);
  color: #8FA1B7;
  padding: var(--s-8) 0 var(--s-5);
  border-top: 4px solid var(--c-red);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-6); margin-bottom: var(--s-7);
}
.site-footer h5 {
  color: #fff; font-size: 0.8125rem; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: var(--s-4);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; font-size: 0.9rem; }
.site-footer a { color: #8FA1B7; }
.site-footer a:hover { color: var(--c-red); }
.footer-brand { color: #fff; font-weight: 700; margin-bottom: var(--s-3); font-size: 1.125rem; }
.footer-small { color: #6B7A92; font-size: 0.85rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: var(--s-5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3);
  font-size: 0.8125rem;
}
.footer-codes { font-family: var(--f-mono); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* --- Social media links ------------------------------------------------- */
.social-links {
  display: flex; gap: var(--s-3); align-items: center; margin-top: var(--s-3);
}
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #C9D3E3;
  transition: background .15s var(--ease), color .15s var(--ease), transform .15s var(--ease);
}
.social-links a:hover {
  background: var(--c-red); color: #fff; transform: translateY(-2px);
}
.social-links svg { width: 18px; height: 18px; display: block; fill: currentColor; }

/* Announce-bar social mini-cluster — sits with the meta data */
.announce__social {
  display: inline-flex; gap: 10px; align-items: center; margin-left: var(--s-3);
  padding-left: var(--s-3); border-left: 1px solid rgba(255,255,255,0.12);
}
.announce__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; color: #C9D3E3;
  transition: color .15s var(--ease);
}
.announce__social a:hover { color: #fff; }
.announce__social svg { width: 14px; height: 14px; display: block; fill: currentColor; }
@media (max-width: 700px) { .announce__social { display: none; } }

/* --- Breadcrumb --------------------------------------------------------- */
.crumbs { padding: var(--s-4) 0; font-size: 0.8125rem; color: var(--c-steel); border-bottom: 1px solid var(--c-line); }
.crumbs a { color: var(--c-slate); }
.crumbs span[aria-current] { color: var(--c-ink); font-weight: 600; }
.crumbs .sep { margin: 0 8px; color: var(--c-steel); }

/* --- Page header --------------------------------------------------------- */
.page-head {
  background: var(--c-ink);
  color: #D8DEE9;
  padding: var(--s-8) 0 var(--s-7);
  position: relative; overflow: hidden;
}
.page-head::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 0%, transparent 90%);
}
.page-head__inner { position: relative; z-index: 1; max-width: 780px; }
.page-head h1 { color: #fff; margin-bottom: var(--s-4); }
.page-head p { color: #B7C3D4; font-size: 1.0625rem; max-width: 60ch; }

/* --- Callout ------------------------------------------------------------- */
.callout {
  background: #fff;
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-red);
  padding: var(--s-5) var(--s-6);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: var(--s-5) 0;
}
.callout--ink { background: var(--c-ink); color: #D8DEE9; border-color: var(--c-navy-2); border-left-color: var(--c-red); }
.callout h3 { margin-top: 0; }

/* --- CTA strip ----------------------------------------------------------- */
.cta-strip {
  background: linear-gradient(160deg, var(--c-navy) 0%, var(--c-ink) 100%);
  color: #fff;
  padding: var(--s-8) 0;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; top: -50px; right: -50px;
  width: 300px; height: 300px; border: 1px solid rgba(228,20,31,.2);
  border-radius: 50%;
}
.cta-strip::after {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border: 1px solid rgba(228,20,31,.12);
  border-radius: 50%;
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-6); flex-wrap: wrap;
}
.cta-strip h2 { color: #fff; margin: 0; max-width: 640px; }

/* --- Tables ------------------------------------------------------------- */
.tbl { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.tbl th, .tbl td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--c-line); }
.tbl th {
  background: var(--c-fog); font-weight: 600; font-size: 0.8125rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--c-slate);
}
.tbl tr:last-child td { border-bottom: 0; }
.tbl--compact th,.tbl--compact td { padding: 10px 12px; }

/* --- Pill tags ---------------------------------------------------------- */
.pill {
  display: inline-block; padding: 4px 10px; border-radius: 99px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
  background: var(--c-fog); color: var(--c-slate); margin-right: 6px;
}
.pill--gold, .pill--red { background: rgba(228,20,31,.12); color: var(--c-red-dk); }
.pill--nav { background: rgba(11,37,69,.08); color: var(--c-navy); }

/* --- Utilities ----------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; } .mt-3 { margin-top: var(--s-3); } .mt-4 { margin-top: var(--s-4); } .mt-5 { margin-top: var(--s-5); } .mt-6 { margin-top: var(--s-6); } .mt-7 { margin-top: var(--s-7); }
.mb-0 { margin-bottom: 0 !important; } .mb-3 { margin-bottom: var(--s-3); } .mb-4 { margin-bottom: var(--s-4); } .mb-5 { margin-bottom: var(--s-5); } .mb-6 { margin-bottom: var(--s-6); }
.max-60 { max-width: 60ch; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- Form (BEM) --------------------------------------------------------- */
.form__row { display: grid; gap: 6px; }
.form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 700px) { .form__row--2 { grid-template-columns: 1fr; } }
.form__label { font-weight: 600; font-size: 0.875rem; color: var(--c-ink); letter-spacing: 0.01em; }
.form input[type="text"], .form input[type="email"], .form input[type="tel"], .form input:not([type]), .form select, .form textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--c-line); border-radius: var(--radius);
  font: inherit; color: var(--c-ink); background: #fff; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--c-navy); box-shadow: 0 0 0 3px rgba(26,42,94,.18);
}
.form__choice-group { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.form__choice { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--c-line); border-radius: var(--radius); background: #fff; cursor: pointer; font-size: 0.9375rem; }
.form__choice:has(input:checked) { border-color: var(--c-red); background: var(--c-red-lt); color: var(--c-red-dk); }
.form__status { padding: var(--s-3) var(--s-4); border-radius: var(--radius); font-size: 0.9rem; min-height: 0; margin: 0; }
.form__status.is-success { background: #E8F5E9; color: #1B5E20; border: 1px solid #A5D6A7; }
.form__status.is-error { background: #FEE4E2; color: #912018; border: 1px solid #FDA29B; }
.form--inline { display: flex; gap: var(--s-3); flex-wrap: wrap; justify-content: center; align-items: center; }
.form--inline input[type="email"] { min-width: 280px; padding: 14px 16px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: #fff; }
.form--inline input[type="email"]::placeholder { color: rgba(255,255,255,.55); }
.form--inline input[type="email"]:focus { border-color: var(--c-red); background: rgba(255,255,255,.12); box-shadow: 0 0 0 3px rgba(228,20,31,.25); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- Numbered list ------------------------------------------------------ */
.numbered { list-style: none; counter-reset: step; padding: 0; margin: var(--s-4) 0 0; }
.numbered li { counter-increment: step; position: relative; padding: 0 0 var(--s-3) var(--s-6); line-height: 1.6; color: var(--c-ink); }
.numbered li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--c-red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.8125rem; font-weight: 700; font-family: var(--f-mono); }

/* --- Sticky consultation CTA ------------------------------------------- */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 18px;
  background: var(--c-red);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(228, 20, 31, 0.35), 0 4px 10px rgba(10, 22, 40, 0.20);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.005em;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, background 160ms ease;
}
.sticky-cta:hover { background: var(--c-red-dk); color: #fff; transform: translateY(0) scale(1.02); }
.sticky-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta__icon {
  width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sticky-cta__text { white-space: nowrap; }
.sticky-cta__close {
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  margin-left: 4px;
  transition: background 140ms ease;
}
.sticky-cta__close:hover { background: rgba(255, 255, 255, 0.38); }
.sticky-cta__close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
@media (max-width: 640px) {
  .sticky-cta { left: 12px; right: 12px; bottom: 12px; justify-content: center; padding: 14px 16px; border-radius: 14px; }
}

/* --- Federal evaluator routing band ------------------------------------ */
.fed-band {
  background: linear-gradient(90deg, var(--c-ink) 0%, var(--c-navy) 100%);
  color: #fff;
  border-bottom: 2px solid var(--c-red);
}
.fed-band .container {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding-top: 12px;
  padding-bottom: 12px;
  flex-wrap: wrap;
}
.fed-band__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--c-red);
  border-radius: 4px;
  color: #fff;
  flex-shrink: 0;
}
.fed-band__msg {
  flex: 1;
  min-width: 220px;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: #D8DEE9;
}
.fed-band__msg strong { color: #fff; font-weight: 600; }
.fed-band__codes {
  display: inline-flex;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: #8FA1B7;
}
.fed-band__cta {
  background: #fff;
  color: var(--c-ink);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 140ms ease, color 140ms ease;
}
.fed-band__cta:hover { background: var(--c-red); color: #fff; }
@media (max-width: 720px) {
  .fed-band__codes { display: none; }
}

/* --- Hero credential chips (authority signaling) ----------------------- */
.hero__creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: var(--s-4) 0 var(--s-3);
}
.hero__creds span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #D8DEE9;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.005em;
}
.hero__creds span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-red);
  flex-shrink: 0;
}

/* --- Sticky header scrolled state -------------------------------------- */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 6px 18px rgba(10, 22, 40, 0.06);
}

/* --- Hero 60/40 split layout (wireframe v2) ---------------------------- */
.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--s-7);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__layout .hero__inner { max-width: none; }
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
}
.hero__visual svg {
  width: 100%; height: 100%; display: block;
}

/* --- Rotating globe ---------------------------------------------------- */
/* World strip scrolls horizontally (right-to-left) inside the circular clip,
   which gives the visual effect of a real spherical Earth rotating around its axis. */
.twga-globe__scroll {
  animation: twga-globe-scroll 60s linear infinite;
}
.twga-globe__orbit {
  transform-origin: 210px 210px;
  animation: twga-globe-orbit 14s linear infinite;
}
@keyframes twga-globe-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-360px); }   /* one full 360° revolution; tile width = 360 */
}
@keyframes twga-globe-orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }      /* aircraft orbits right-to-left to match globe rotation */
}
@media (prefers-reduced-motion: reduce) {
  .twga-globe__scroll, .twga-globe__orbit { animation: none; }
}

@media (max-width: 900px) {
  .hero__layout { grid-template-columns: 1fr; gap: var(--s-5); }
  .hero__visual { max-width: 340px; margin: 0 auto; }
}
@media (max-width: 520px) {
  .hero__visual { max-width: 280px; }
}

/* --- Who-We-Serve segments grid (5-up audience self-identify) ---------- */
.segments {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-6);
}
.segment {
  display: flex; flex-direction: column;
  padding: var(--s-5);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  text-decoration: none; color: inherit;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), border-color .15s var(--ease);
  box-shadow: var(--shadow-sm);
}
.segment:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-navy);
}
.segment__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--c-fog); color: var(--c-navy);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-3);
}
.segment:hover .segment__icon { background: var(--c-navy); color: #fff; }
.segment__title {
  font-size: 0.9375rem;
  font-weight: 600; line-height: 1.3;
  margin: 0 0 var(--s-2); color: var(--c-ink);
}
.segment__body {
  margin: 0; color: var(--c-slate);
  font-size: 0.8125rem; line-height: 1.55;
}
@media (max-width: 1100px) { .segments { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .segments { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .segments { grid-template-columns: 1fr; } }

/* --- Problem section (3 columns w/ icon) ------------------------------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-7);
}
.problem-card {
  padding: var(--s-5);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  text-align: left;
}
.problem-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-red-lt);
  color: var(--c-red-dk);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-4);
}
.problem-card h3 { font-size: 1.0625rem; margin: 0 0 var(--s-2); color: var(--c-ink); }
.problem-card p { margin: 0; color: var(--c-slate); font-size: 0.9375rem; line-height: 1.55; }
@media (max-width: 720px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* --- Solution 3-pillar positioning ------------------------------------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-7);
  position: relative;
}
.pillar {
  text-align: center;
  padding: var(--s-5) var(--s-4);
}
.pillar__num {
  display: inline-flex; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  font-family: var(--f-mono); font-weight: 700; font-size: 0.875rem;
  color: var(--c-red); border: 1px solid var(--c-red);
  border-radius: 50%;
  margin-bottom: var(--s-4);
  letter-spacing: 0;
}
.pillar h3 { font-size: 1.125rem; margin: 0 0 var(--s-2); color: var(--c-ink); }
.pillar p { margin: 0; color: var(--c-slate); font-size: 0.9375rem; line-height: 1.55; }
@media (max-width: 720px) {
  .pillars { grid-template-columns: 1fr; gap: var(--s-4); }
}

/* --- Government Solutions dark callout (federal conversion trigger) ---- */
.gov-callout {
  background: linear-gradient(135deg, var(--c-ink) 0%, var(--c-navy) 100%);
  color: #fff;
  padding: var(--s-9) 0;
  position: relative;
  overflow: hidden;
}
.gov-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 70% 50%, black 30%, transparent 75%);
  pointer-events: none;
}
.gov-callout .container { position: relative; z-index: 1; }
.gov-callout__inner {
  max-width: 720px;
}
.gov-callout h2 { color: #fff; margin: var(--s-3) 0; }
.gov-callout p { color: #C9D3E3; font-size: 1.0625rem; margin-bottom: var(--s-5); }
.gov-callout__agencies {
  display: inline-flex; flex-wrap: wrap; gap: 10px;
  font-family: var(--f-mono); font-size: 0.75rem; letter-spacing: 0.1em;
  color: #8FA1B7;
  margin-bottom: var(--s-5);
}
.gov-callout__agencies span {
  padding: 4px 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
}

/* --- Differentiators checkmark list ------------------------------------ */
.diff-list {
  list-style: none;
  padding: 0;
  margin: var(--s-5) 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3) var(--s-5);
}
.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 1.0625rem;
  color: var(--c-ink);
  line-height: 1.45;
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--c-line);
}
.diff-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-red);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  margin-top: 1px;
}
@media (max-width: 720px) {
  .diff-list { grid-template-columns: 1fr; }
}

/* --- Executive profile split ------------------------------------------ */
.exec-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: var(--s-7);
  align-items: center;
}
.exec-profile__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-ink);
  aspect-ratio: 4 / 5;
  max-width: 380px;
}
.exec-profile__photo img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.exec-profile h2 { margin: var(--s-3) 0; }
.exec-profile p { color: var(--c-slate); font-size: 1rem; line-height: 1.65; }
@media (max-width: 900px) {
  .exec-profile { grid-template-columns: 1fr; gap: var(--s-5); }
  .exec-profile__photo { max-width: 280px; margin: 0 auto; }
}

/* --- 5/6-up capability grid (wireframe 2x3) ---------------------------- */
.grid-3-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 960px) {
  .grid-3-rows { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3-rows { grid-template-columns: 1fr; }
}

/* --- Mid-page CTA strip (lighter than .cta-strip) ---------------------- */
.cta-mid {
  margin: var(--s-7) 0;
  padding: var(--s-6) var(--s-5);
  background: var(--c-fog);
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-red);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.cta-mid__copy { flex: 1; min-width: 240px; }
.cta-mid__copy h3 { margin: 0 0 4px; font-size: 1.25rem; color: var(--c-ink); }
.cta-mid__copy p { margin: 0; color: var(--c-slate); font-size: 0.9375rem; }
.cta-mid__actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* --- Print --------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .announce, .cta-strip, .btn,
  .sticky-cta, .fed-band { display: none; }
  body { color: #000; background: #fff; }
}

/* --- Reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
