:root {
  --ink: #1a1f26;
  --muted: #5c6570;
  --line: #e2e6eb;
  --bg: #fafbfc;
  --surface: #fff;
  --surface-ghost-hover: #fff;
  --accent: #2c5282;
  --accent-hover: #1e3a5f;
  --focus-ring: #2c5282;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ink: #e8eaed;
    --muted: #9aa0a6;
    --line: #3c4043;
    --bg: #1b1b1d;
    --surface: #252528;
    --surface-ghost-hover: #323236;
    --accent: #8ab4f8;
    --accent-hover: #aecbfa;
    --focus-ring: #8ab4f8;
    color-scheme: dark;
  }
}

:root[data-theme="dark"] {
  --ink: #e8eaed;
  --muted: #9aa0a6;
  --line: #3c4043;
  --bg: #1b1b1d;
  --surface: #252528;
  --surface-ghost-hover: #323236;
  --accent: #8ab4f8;
  --accent-hover: #aecbfa;
  --focus-ring: #8ab4f8;
  color-scheme: dark;
}

:root[data-theme="light"] {
  --ink: #1a1f26;
  --muted: #5c6570;
  --line: #e2e6eb;
  --bg: #fafbfc;
  --surface: #fff;
  --surface-ghost-hover: #fff;
  --accent: #2c5282;
  --accent-hover: #1e3a5f;
  --focus-ring: #2c5282;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  transition: background-color 0.2s ease, color 0.2s ease;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
select:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 0 0 4px 4px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  z-index: 1000;
  transition: top 0.1s;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.wrap {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

header.site {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 100;
}

header.site .inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand-block:hover {
  text-decoration: none;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  border-radius: 8px;
  padding: 4px;
  flex-shrink: 0;
}

.site-logo {
  display: block;
  width: 44px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  vertical-align: middle;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.25;
}

.brand-name {
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
  color: var(--ink);
  transition: color 0.15s ease;
}

.brand-block:hover .brand-name {
  color: var(--accent);
}

.brand-tag {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
}

nav[aria-label] {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.25rem;
}

nav[aria-label] a {
  font-size: 0.95rem;
  padding: 0.15rem 0;
  color: var(--muted);
  transition: color 0.15s ease;
  border-bottom: 2px solid transparent;
}

nav[aria-label] a:hover {
  color: var(--ink);
  text-decoration: none;
}

nav[aria-label] a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--accent);
  font-weight: 500;
}

main {
  padding: 2.5rem 0 3.5rem;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 36rem;
}

h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.35rem;
}

.cards {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.1rem 1.15rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.btn:hover {
  background: var(--accent-hover);
  color: #fff;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: var(--surface-ghost-hover);
  border-color: var(--accent);
  color: var(--accent-hover);
  text-decoration: none;
}

footer.site {
  border-top: 1px solid var(--line);
  padding: 1.5rem 1.25rem 2rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--surface);
}

footer.site .wrap {
  max-width: 56rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.footer-copy {
  margin: 0;
  flex: 1 1 12rem;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 1 auto;
}

.footer-contact li {
  margin: 0 0 0.35rem;
}

.footer-contact li:last-child {
  margin-bottom: 0;
}

.footer-gov {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.footer-gov a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 2px;
}

.footer-gov a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.contact-details li {
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.contact-details li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.contact-details strong {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.contact-form-section {
  margin: 2.5rem 0 2rem;
}

.contact-form-section h2 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.contact-form-lead {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.75rem 1.5rem 2rem;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.contact-form {
  margin: 0;
}

.form-row {
  display: grid;
  gap: 1rem 1.25rem;
  margin-bottom: 1rem;
}

@media (min-width: 560px) {
  .form-row.form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.form-field .hint {
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
  opacity: 0.75;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: var(--accent);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.15);
}

:root[data-theme="dark"] .form-field input:focus,
:root[data-theme="dark"] .form-field textarea:focus {
  box-shadow: 0 0 0 3px rgba(138, 180, 248, 0.2);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .form-field input:focus,
  :root:not([data-theme="light"]) .form-field textarea:focus {
    box-shadow: 0 0 0 3px rgba(138, 180, 248, 0.2);
  }
}

.form-field textarea {
  min-height: 7rem;
  resize: vertical;
  line-height: 1.55;
}

.form-actions {
  margin-top: 1.35rem;
}

.form-actions .btn {
  width: 100%;
  text-align: center;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
}

@media (min-width: 480px) {
  .form-actions .btn {
    width: auto;
    min-width: 12rem;
  }
}


.form-actions .btn {
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-success:focus {
  outline: none;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-divider {
  margin: 2.75rem 0 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.contact-divider h2 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--ink);
}

.contact-divider p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
  border-left: 3px solid var(--line);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

.note-spaced {
  margin-top: 2rem;
}

.past-perf {
  margin: 1.25rem 0 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  border-left: 3px solid var(--accent);
}

.past-perf h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: baseline;
  justify-content: space-between;
}

.past-perf .pp-period {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.past-perf .pp-role {
  margin: 0 0 0.7rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.past-perf > p:not(.pp-role):not(.pp-tech) {
  margin: 0 0 0.75rem;
}

.past-perf .pp-tech {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
}

.past-perf .pp-tech strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: 0.4rem;
}

.gov-info {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.65rem 1.75rem;
  margin: 1rem 0 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.gov-info dt {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  align-self: start;
  padding-top: 0.18rem;
}

.gov-info dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 540px) {
  .gov-info {
    grid-template-columns: 1fr;
    gap: 0.15rem 0;
    padding: 1rem 1.1rem;
  }

  .gov-info dt {
    margin-top: 0.85rem;
  }

  .gov-info dt:first-of-type {
    margin-top: 0;
  }
}

/* ============================================================
   HERO
   ============================================================ */

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-40px, -30px) scale(1.08); }
  70%       { transform: translate(25px, 20px) scale(0.95); }
}

@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35%       { transform: translate(30px, -25px) scale(1.1); }
  65%       { transform: translate(-20px, 35px) scale(0.93); }
}

@keyframes scroll-dot-drop {
  0%        { top: 4px; opacity: 1; }
  80%, 100% { top: 18px; opacity: 0; }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0a1628;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 144, 217, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 144, 217, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(44, 82, 130, 0.45) 0%, transparent 70%);
  animation: orb-drift-1 14s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(232, 137, 26, 0.18) 0%, transparent 70%);
  animation: orb-drift-2 18s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 64rem;
  margin: 0 auto;
  padding: 8rem 1.5rem 7rem;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 1.5rem;
  animation: hero-fade-up 0.7s ease both;
  animation-delay: 0.1s;
}

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 1.5rem;
  animation: hero-fade-up 0.7s ease both;
  animation-delay: 0.25s;
}

.hero-headline-line2 {
  color: #9ec5e8;
  font-weight: 600;
}

.hero-em {
  font-style: normal;
  color: #e8891a;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.6);
  margin: 0 0 2.5rem;
  max-width: 38rem;
  line-height: 1.55;
  animation: hero-fade-up 0.7s ease both;
  animation-delay: 0.4s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  animation: hero-fade-up 0.7s ease both;
  animation-delay: 0.55s;
}

.hero-scroll-mouse {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  margin-left: -10px;
  display: block;
  width: 20px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  z-index: 1;
}

.hero-scroll-mouse::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.55);
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 50%;
  margin-left: -2px;
  animation: scroll-dot-drop 2s ease-in-out infinite;
}

/* Hero buttons live on dark so are hardcoded, not theme-token */
.btn-hero {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  background: #e8891a;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.btn-hero:hover {
  background: #cf7910;
  color: #fff;
  text-decoration: none;
}

.btn-hero:focus-visible {
  outline: 2px solid #e8891a;
  outline-offset: 3px;
}

.btn-hero-ghost {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.btn-hero-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  text-decoration: none;
}

/* ============================================================
   CREDIBILITY STRIP
   ============================================================ */

.strip-cred {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
}

.cred-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
}

.cred-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-right: 1rem;
  border-left: 1px solid var(--line);
  padding-left: 1.25rem;
  min-height: 4.5rem;
}

.cred-item:first-child {
  border-left: none;
  padding-left: 0;
}

@media (max-width: 800px) {
  .cred-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
  .cred-item:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .cred-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .cred-item {
    border-left: none;
    padding-left: 0;
  }
}

.cred-num {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.cred-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ============================================================
   SHARED SECTION UTILITIES
   ============================================================ */

.wrap-wide {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

.section-kicker-light {
  color: rgba(255,255,255,0.5);
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 2.5rem;
  color: var(--ink);
}

/* ============================================================
   CAPABILITIES SECTION
   ============================================================ */

.section-caps {
  padding: 6rem 0 5rem;
  background: var(--bg);
}

.cap-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}

.cap-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.cap-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-color: var(--accent);
}

.cap-num {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--line);
  font-variant-numeric: tabular-nums;
  transition: color 0.2s ease;
}

.cap-card:hover .cap-num {
  color: var(--accent);
}

.cap-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  color: var(--ink);
}

.cap-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.65;
  flex: 1;
}

.cap-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}

.cap-link:hover {
  text-decoration: underline;
  color: var(--accent-hover);
}

/* ============================================================
   LEADERSHIP SECTION
   ============================================================ */

.section-leadership {
  background: #132d52;
  padding: 6rem 0;
  color: #fff;
}

.leadership-inner {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}

.leadership-text {
  flex: 1 1 28rem;
}

.leadership-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 1.25rem;
  line-height: 1.15;
}

.leadership-title-role {
  font-weight: 400;
  font-size: 0.7em;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-top: 0.35rem;
  letter-spacing: 0;
}

.section-leadership p {
  color: rgba(255,255,255,0.72);
  margin: 0 0 1rem;
  line-height: 1.7;
  max-width: 38rem;
}

.btn-light {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.75rem 1.6rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  text-decoration: none;
}

.leadership-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
}

.leadership-logo-wrap {
  background: rgba(0,0,0,0.35);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   CTA BAND
   ============================================================ */

.section-cta-band {
  background: #0a1628;
  padding: 6rem 0;
  text-align: center;
}

.cta-band-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.cta-band-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  margin: 0 0 2.5rem;
  line-height: 1.6;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-headline,
  .hero-sub,
  .hero-actions {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-orb-1,
  .hero-orb-2,
  .hero-scroll-mouse::before {
    animation: none;
  }
}

.footer-theme {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.theme-label {
  font-size: 0.85rem;
  color: var(--muted);
}

#theme-select {
  font: inherit;
  font-size: 0.85rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 50px;
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
}

/* ============================================================
   CAPABILITY STATEMENT
   On-screen: branded, scrollable layout.
   On-print:  one-page (or front/back) PDF with hidden chrome.
   ============================================================ */

.cap-actions {
  max-width: 60rem;
  margin: 1.25rem auto 1rem;
  padding: 0 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cap-actions-bottom {
  margin: 1rem auto 2.5rem;
}

.cap-page {
  max-width: 60rem;
  margin: 0 auto 2.5rem;
  padding: 2rem 2rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.cap-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.cap-logo {
  width: 64px;
  height: auto;
  flex: 0 0 auto;
}

.cap-title {
  flex: 1 1 auto;
}

.cap-title h1 {
  margin: 0 0 0.15rem;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cap-tagline {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.cap-doctype {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
}

.cs-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.5rem 2rem;
}

.cap-section {
  margin: 0 0 1.25rem;
  page-break-inside: avoid;
  break-inside: avoid;
}

.cap-section h2 {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.3rem;
}

.cap-section > p {
  font-size: 0.88rem;
  margin: 0 0 0.5rem;
  line-height: 1.5;
}

.cap-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.cap-list li {
  margin: 0 0 0.35rem;
  line-height: 1.45;
}

.cap-pp {
  margin: 0 0 0.9rem;
  page-break-inside: avoid;
  break-inside: avoid;
}

.cap-pp:last-child {
  margin-bottom: 0;
}

.cap-pp-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.95rem;
}

.cap-pp-head strong {
  font-weight: 600;
}

.cap-pp-date {
  font-size: 0.78rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.cap-pp-role {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.05rem 0 0.35rem;
}

.cap-pp p {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  line-height: 1.45;
}

.cap-pp-tech {
  font-size: 0.75rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.cap-data {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.4rem 0.85rem;
  margin: 0;
  font-size: 0.85rem;
}

.cap-data dt {
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  align-self: start;
  padding-top: 0.1rem;
}

.cap-data dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
  word-break: break-word;
}

.cap-data dd a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 2px;
}

.cap-data dd a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.cap-footer {
  margin-top: 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .cap-page {
    padding: 1.25rem 1.25rem 1rem;
  }
  .cs-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .cap-header {
    gap: 0.85rem;
  }
  .cap-title h1 {
    font-size: 1.25rem;
  }
}

/* ----- PRINT ----- */
@page {
  size: letter;
  margin: 0.45in;
}

@media print {
  :root,
  :root[data-theme="dark"],
  :root[data-theme="light"] {
    --ink: #000;
    --muted: #333;
    --line: #999;
    --bg: #fff;
    --surface: #fff;
    --accent: #1f4575;
    color-scheme: light;
  }

  html, body {
    background: #fff !important;
    color: #000 !important;
    font-size: 10pt;
  }

  .no-print,
  header.site,
  footer.site,
  .skip-link {
    display: none !important;
  }

  main#main {
    padding: 0 !important;
    margin: 0 !important;
  }

  .cap-page {
    max-width: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }

  .cap-header {
    border-bottom: 1.5pt solid #1f4575;
    padding-bottom: 0.4rem;
    margin-bottom: 0.65rem;
  }

  .cap-logo {
    width: 50px;
  }

  .cap-title h1 {
    font-size: 14pt;
  }

  .cap-tagline {
    font-size: 9pt;
  }

  .cap-doctype {
    font-size: 7.5pt;
  }

  .cs-grid {
    gap: 0.45rem 1.1rem;
  }

  .cap-section {
    margin-bottom: 0.55rem;
  }

  .cap-section h2 {
    font-size: 7.5pt;
    margin-bottom: 0.25rem;
    padding-bottom: 0.15rem;
  }

  .cap-list,
  .cap-pp p,
  .cap-section > p {
    font-size: 8.5pt;
  }

  .cap-list li {
    margin-bottom: 0.15rem;
  }

  .cap-pp {
    margin-bottom: 0.55rem;
  }

  .cap-pp-head {
    font-size: 9pt;
  }

  .cap-pp-date,
  .cap-pp-role,
  .cap-pp-tech {
    font-size: 7.5pt;
  }

  .cap-data {
    font-size: 8pt;
    gap: 0.18rem 0.6rem;
  }

  .cap-data dt {
    font-size: 6.5pt;
  }

  .cap-footer {
    margin-top: 0.5rem;
    padding-top: 0.3rem;
    font-size: 7pt;
  }

  .cap-data dd a {
    color: #000;
    text-decoration: none;
  }

  a {
    color: #000 !important;
    text-decoration: none !important;
  }
}
