:root {
  --ink: #171c22;
  --muted: #5b6874;
  --paper: #ffffff;
  --soft: #f3f7fa;
  --mist: #e7edf3;
  --panel: #fafcfd;
  --line: #d7e0e7;
  --guard: #2d353d;
  --guard-dark: #1f252d;
  --accent: #18c2e3;
  --accent-dark: #1291aa;
  --focus: #18c2e3;
  --shadow: 0 18px 40px rgba(22, 31, 40, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.about-page {
  background: linear-gradient(180deg, #2d353d 0, #2d353d 320px, #eef3f7 320px, #f7f9fb 100%);
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  font-weight: 800;
}

h1 {
  max-width: 980px;
  font-size: 2.75rem;
}

h2 {
  font-size: 1.85rem;
}

p {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
  color: var(--paper);
  background: var(--guard-dark);
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(147, 223, 240, 0.16);
  background: rgba(31, 37, 45, 0.88);
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.2);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 2rem));
  min-height: 72px;
  margin: 0 auto;
  gap: 1.5rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.brand {
  color: var(--paper);
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 10px 18px rgba(16, 24, 32, 0.18);
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-menu a {
  min-width: 84px;
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.site-menu a:hover,
.site-menu a[aria-current="page"] {
  color: var(--paper);
  background: rgba(24, 194, 227, 0.12);
  box-shadow: inset 0 0 0 1px rgba(147, 223, 240, 0.12);
}

.menu-toggle {
  display: none;
  min-width: 78px;
  min-height: 42px;
  border: 1px solid rgba(147, 223, 240, 0.18);
  border-radius: 6px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
  font-weight: 800;
}

.menu-toggle:hover {
  background: rgba(24, 194, 227, 0.12);
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero {
  min-height: 54vh;
  padding: 5.25rem max(1rem, calc((100% - 1180px) / 2)) 4.5rem;
  color: var(--paper);
  background-image: linear-gradient(90deg, rgba(20, 27, 35, 0.86), rgba(20, 27, 35, 0.54), rgba(20, 27, 35, 0.24)), url("../img/hero-government-it.jfif");
  background-position: center right;
  background-size: cover;
}

.hero h1,
.hero p {
  color: var(--paper);
}

.hero-content {
  width: min(860px, calc(100% - 2rem));
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #93dff0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 118px;
  padding: 0.7rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--guard-dark);
  background: var(--accent);
}

.button.primary:hover {
  background: #49d2ec;
}

.button.secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.72);
}

.button.secondary:hover {
  color: var(--guard-dark);
  background: var(--paper);
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.25rem 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 2.25rem;
  width: 100%;
  padding-right: max(1rem, calc((100% - 1180px) / 2));
  padding-left: max(1rem, calc((100% - 1180px) / 2));
  background: linear-gradient(90deg, var(--soft), var(--mist));
  border-bottom: 1px solid var(--line);
}

.section-copy p {
  max-width: 760px;
}

.image-panel img {
  width: 100%;
  max-height: 420px;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding-right: max(1rem, calc((100% - 1180px) / 2));
  padding-left: max(1rem, calc((100% - 1180px) / 2));
  background: var(--guard);
}

.quote-copy {
  max-width: 880px;
}

blockquote {
  margin: 0;
}

blockquote p {
  margin-bottom: 1rem;
  color: var(--paper);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.16;
}

blockquote cite {
  color: #93dff0;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-band img {
  width: 160px;
  height: 160px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--paper);
}

.page-hero {
  min-height: 28vh;
  padding: 3.75rem max(1rem, calc((100% - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.not-found {
  min-height: 100vh;
}

.page-hero > div {
  max-width: 900px;
}

.page-hero p {
  max-width: 820px;
}

.services-hero {
  background: linear-gradient(90deg, rgba(232, 239, 236, 0.97), rgba(232, 239, 236, 0.84)), url("../img/washington-dc.jpg") center/cover;
}

.about-hero {
  position: relative;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 2rem;
  min-height: 34vh;
  padding-top: 3.5rem;
  padding-bottom: 3.35rem;
  background:
    radial-gradient(circle at 18% 22%, rgba(27, 194, 227, 0.24) 0, rgba(27, 194, 227, 0.08) 18%, rgba(27, 194, 227, 0) 42%),
    radial-gradient(circle at 82% 34%, rgba(27, 194, 227, 0.2) 0, rgba(27, 194, 227, 0.06) 20%, rgba(27, 194, 227, 0) 38%),
    linear-gradient(118deg, transparent 0 71%, rgba(217, 221, 224, 0.12) 71%, rgba(217, 221, 224, 0.03) 79%, transparent 79% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 62px),
    linear-gradient(135deg, #3a434c 0%, #2d353d 44%, #1f252d 100%);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 22px 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 22%, rgba(255, 255, 255, 0) 40%),
    linear-gradient(180deg, rgba(27, 194, 227, 0.08) 0%, rgba(27, 194, 227, 0) 28%);
  border: 1px solid rgba(217, 221, 224, 0.12);
  clip-path: polygon(0 0, 72% 0, 84% 18%, 100% 18%, 100% 100%, 18% 100%, 0 74%);
  pointer-events: none;
}

.about-hero > * {
  position: relative;
  z-index: 1;
}

.about-hero > div {
  align-self: center;
}

.about-hero .eyebrow {
  color: #8cdeef;
}

.about-hero h1 {
  color: var(--paper);
}

.about-hero h1 {
  max-width: 720px;
  text-shadow: 0 12px 28px rgba(8, 22, 20, 0.2);
}

.about-hero::after {
  content: "";
  position: absolute;
  right: max(1rem, calc((100% - 1180px) / 2));
  top: 50%;
  width: min(30vw, 340px);
  height: min(30vw, 340px);
  background: radial-gradient(circle, rgba(27, 194, 227, 0.28) 0, rgba(27, 194, 227, 0.1) 34%, rgba(27, 194, 227, 0) 68%);
  transform: translateY(-50%);
  pointer-events: none;
}

.about-hero img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  justify-self: end;
  filter: drop-shadow(0 18px 32px rgba(8, 22, 20, 0.16));
}

.contact-logo img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: contain;
  background: var(--panel);
  padding: 0.7rem;
  box-shadow: var(--shadow);
}

.contact-hero {
  color: var(--paper);
  min-height: 17rem;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
  background-color: var(--guard-dark);
  background-image: linear-gradient(90deg, rgba(20, 27, 35, 0.97) 0%, rgba(20, 27, 35, 0.88) 38%, rgba(20, 27, 35, 0.68) 64%, rgba(20, 27, 35, 0.34) 100%), url("../img/contact-tech-banner.png");
  background-position: center center, center 58%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, 100% auto;
}

.contact-hero .eyebrow,
.contact-hero h1,
.contact-hero p {
  color: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
  width: 100%;
  padding-right: max(1rem, calc((100% - 1180px) / 2));
  padding-left: max(1rem, calc((100% - 1180px) / 2));
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
  min-height: 0;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 22px rgba(18, 32, 30, 0.06);
}

.service-card img {
  width: 86px;
  height: 86px;
  padding: 0.45rem;
  border-radius: 6px;
  object-fit: contain;
  background: var(--paper);
  border: 1px solid var(--line);
}

.service-card > div {
  min-width: 0;
}

.service-card h2 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
}

.service-card p {
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.service-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-card li + li {
  margin-top: 0.22rem;
}

.wide-card {
  grid-column: 1 / -1;
}

.capabilities-hero h1 {
  max-width: 1080px;
}

.capabilities-hero p {
  max-width: 920px;
}

.capability-summary,
.partner-strengths,
.capability-band,
.proof-strip,
.taxonomy-section {
  width: 100%;
  padding: 3rem max(1rem, calc((100% - 1180px) / 2));
}

.capability-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  background: var(--guard-dark);
}

.capability-summary article {
  min-height: 190px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.capability-summary span,
.proof-grid span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #93dff0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.capability-summary h2 {
  margin-bottom: 0.6rem;
  color: var(--paper);
  font-size: 1.15rem;
}

.capability-summary p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.partner-strengths {
  background: var(--panel);
}

.capability-heading {
  display: grid;
  gap: 0.35rem;
  max-width: 880px;
  margin-bottom: 1.5rem;
}

.capability-heading h2 {
  margin-bottom: 0;
}

.capability-heading p:last-child {
  margin-bottom: 0;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.partner-card,
.capability-card,
.proof-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(18, 32, 30, 0.06);
}

.partner-card {
  padding: 1.35rem;
}

.capability-kicker {
  margin-bottom: 0.45rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.partner-card h3,
.capability-card h3 {
  margin-bottom: 0.85rem;
  color: var(--guard-dark);
  font-size: 1.15rem;
  line-height: 1.2;
}

.partner-card ul,
.capability-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.partner-card li + li,
.capability-card li + li {
  margin-top: 0.35rem;
}

.capability-band {
  background: linear-gradient(180deg, var(--mist), var(--soft));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.capability-card {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  min-height: 360px;
  padding: 1.2rem;
}

.capability-card p:not(.capability-kicker) {
  margin-bottom: 0;
}

.capability-card ul {
  font-size: 0.94rem;
  line-height: 1.48;
}

.capability-dropdown-section {
  padding-top: 3rem;
}

.capability-dropdowns {
  display: grid;
  gap: 0.8rem;
}

.capability-dropdown {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(18, 32, 30, 0.06);
  overflow: hidden;
}

.capability-dropdown summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.45fr) minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  padding: 1rem 1.2rem;
  color: var(--guard-dark);
  cursor: pointer;
  list-style: none;
}

.capability-dropdown summary::-webkit-details-marker {
  display: none;
}

.capability-dropdown summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  color: var(--paper);
  background: var(--guard);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 30px;
  text-align: center;
  transform: translateY(-50%);
}

.capability-dropdown[open] summary::after {
  content: "-";
}

.capability-dropdown summary span {
  color: var(--guard-dark);
  font-size: 1.05rem;
  font-weight: 800;
}

.capability-dropdown summary strong {
  max-width: 820px;
  padding-right: 2.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.dropdown-body {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 1fr);
  gap: 1.5rem;
  padding: 0 1.2rem 1.2rem;
  border-top: 1px solid var(--line);
}

.dropdown-body p {
  margin: 1rem 0 0;
}

.dropdown-body ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.48;
}

.dropdown-body li + li {
  margin-top: 0.35rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: stretch;
  gap: 1.5rem;
  color: var(--paper);
  background: var(--guard);
}

.proof-strip h2,
.proof-strip p {
  color: var(--paper);
}

.proof-strip .eyebrow {
  color: #93dff0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.proof-grid article {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.proof-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.taxonomy-section {
  background: var(--panel);
}

.taxonomy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.taxonomy-grid article {
  min-height: 170px;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.taxonomy-grid h3 {
  margin-bottom: 0.45rem;
  color: var(--guard-dark);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.taxonomy-grid p {
  margin-bottom: 0;
  font-size: 0.86rem;
  line-height: 1.42;
}

.cta-band {
  width: 100%;
  padding-right: max(1rem, calc((100% - 1180px) / 2));
  padding-left: max(1rem, calc((100% - 1180px) / 2));
  color: var(--paper);
  background: var(--guard-dark);
}

.cta-band h2,
.cta-band p {
  max-width: 760px;
  color: var(--paper);
}

.content-column {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100% - 900px) / 2));
  padding-left: max(1rem, calc((100% - 900px) / 2));
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.content-column p {
  max-width: 900px;
  font-size: 1rem;
}

.about-story {
  position: relative;
  background:
    linear-gradient(180deg, rgba(249, 251, 251, 0.98), rgba(241, 246, 246, 0.98));
}

.about-story::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(1rem, calc((100% - 900px) / 2));
  width: min(180px, calc(100% - 2rem));
  height: 3px;
  background: linear-gradient(90deg, #18c2e3, rgba(217, 221, 224, 0.75) 62%, rgba(217, 221, 224, 0));
  border-radius: 999px;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.35rem;
  width: 100%;
  padding-right: max(1rem, calc((100% - 1120px) / 2));
  padding-left: max(1rem, calc((100% - 1120px) / 2));
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-details {
  display: grid;
  gap: 1.35rem;
  align-content: start;
}

.contact-card {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.contact-copy {
  margin-bottom: 0;
  max-width: 34rem;
}

.contact-methods {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-methods li {
  display: grid;
  gap: 0.22rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-methods span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-methods a {
  color: var(--guard-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-lead {
  font-size: 1.25rem;
  font-weight: 800;
}

.contact-lead a {
  color: var(--guard);
}

.linkedin-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.linkedin-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 54px;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--guard-dark);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-decoration: none;
}

.linkedin-links a:hover {
  border-color: var(--accent);
}

.linkedin-links svg {
  width: 22px;
  height: 22px;
  fill: #0a66c2;
  flex: 0 0 auto;
}

.contact-form {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.contact-form h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--guard-dark);
  font-weight: 800;
}

.contact-form label span {
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .button {
  width: 100%;
}

.form-note {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.site-footer {
  padding: 2rem 0;
  color: var(--paper);
  background: var(--guard-dark);
}

.footer-inner {
  display: grid;
  gap: 0.7rem;
  width: min(780px, calc(100% - 2rem));
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  justify-content: center;
  color: var(--paper);
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  h1 {
    font-size: 2.25rem;
  }

  h2,
  blockquote p {
    font-size: 1.55rem;
  }

  .brand span {
    max-width: 230px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: grid;
    gap: 0.35rem;
    padding: 0.5rem;
    border: 1px solid rgba(147, 223, 240, 0.14);
    border-radius: 8px;
    background: rgba(31, 37, 45, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-header.is-open .site-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
  }

  .hero {
    min-height: 52vh;
    padding-top: 4.5rem;
  }

  .split-section,
  .about-hero,
  .contact-layout,
  .quote-band,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .about-page {
    background:
      linear-gradient(180deg, #2d353d 0, #2d353d 210px, #eef3f7 210px, var(--soft) 100%);
  }

  .contact-hero {
    min-height: 0;
    background-position: center center, center center;
    background-size: auto, cover;
  }

  .about-hero {
    min-height: 32vh;
    padding-top: 3.1rem;
    padding-bottom: 2.95rem;
    background:
      radial-gradient(circle at 18% 18%, rgba(27, 194, 227, 0.24) 0, rgba(27, 194, 227, 0.08) 20%, rgba(27, 194, 227, 0) 42%),
      linear-gradient(180deg, rgba(217, 221, 224, 0.08) 0 60%, rgba(217, 221, 224, 0) 60%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 44px),
      linear-gradient(180deg, #3a434c 0%, #2d353d 56%, #1f252d 100%);
  }

  .about-hero::before {
    inset: 18px 18px 18px 18px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 24%, rgba(255, 255, 255, 0) 44%),
      linear-gradient(180deg, rgba(27, 194, 227, 0.08) 0%, rgba(27, 194, 227, 0) 26%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .about-hero::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -44px;
    width: 220px;
    height: 220px;
    transform: translateX(-50%);
  }

  .about-hero img,
  .quote-band img,
  .contact-logo img {
    max-width: 170px;
  }

  .about-hero img {
    justify-self: start;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .capability-summary,
  .partner-grid,
  .capability-matrix,
  .proof-grid,
  .taxonomy-grid {
    grid-template-columns: 1fr;
  }

  .capability-dropdown summary,
  .dropdown-body {
    grid-template-columns: 1fr;
  }

  .capability-dropdown summary strong {
    padding-right: 2.5rem;
  }

  .capability-card,
  .capability-summary article {
    min-height: 0;
  }

  .wide-card {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2rem;
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand span {
    max-width: 170px;
    line-height: 1.1;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 50vh;
    padding-bottom: 3rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .page-hero {
    min-height: 26vh;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .about-hero {
    min-height: 28vh;
    padding-top: 2.5rem;
    padding-bottom: 2.35rem;
  }

  .about-hero::after,
  .about-story::before {
    width: 140px;
  }

  .about-hero::after {
    height: 140px;
  }

  .capability-summary,
  .partner-strengths,
  .capability-band,
  .proof-strip,
  .taxonomy-section {
    padding-top: 2.35rem;
    padding-bottom: 2.35rem;
  }

  .service-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.85rem;
  }

  .service-card img {
    width: 72px;
    height: 72px;
  }

  .hero-actions,
  .linkedin-links {
    align-items: stretch;
  }

  .button,
  .linkedin-links a {
    width: 100%;
  }

  .linkedin-links {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .button {
    width: 100%;
  }
}
