:root {
  --ink: #102033;
  --muted: #5e6b7c;
  --navy: #071426;
  --navy-2: #0d243b;
  --charcoal: #17202b;
  --blue: #1769e0;
  --blue-2: #51a5ff;
  --teal: #14b8a6;
  --green: #6fd36f;
  --amber: #d4a73e;
  --white: #ffffff;
  --soft: #f4f8fb;
  --line: #d9e3ec;
  --shadow: 0 18px 48px rgba(7, 20, 38, 0.15);
  --radius: 8px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 20, 38, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: var(--navy-2);
  box-shadow: 0 0 0 4px rgba(81, 165, 255, 0.1);
  object-fit: cover;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.94rem;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.nav-menu .nav-cta {
  margin-left: 6px;
  background: var(--white);
  color: var(--navy);
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible,
.nav-menu .nav-cta[aria-current="page"] {
  background: #eaf5ff;
  color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(740px, calc(100svh - 74px));
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.97) 0%, rgba(7, 20, 38, 0.86) 38%, rgba(7, 20, 38, 0.35) 76%),
    linear-gradient(180deg, rgba(7, 20, 38, 0.28), rgba(7, 20, 38, 0.9)),
    url("techondria-systems-hero.png") center right / cover no-repeat;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(81, 165, 255, 0.65), transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: 56px;
  padding-block: 86px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 5.8rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(1.85rem, 3.8vw, 3.25rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-lede {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: var(--navy);
  background: linear-gradient(135deg, #8ce9e1, #73b7ff);
  box-shadow: 0 14px 34px rgba(23, 105, 224, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 42px rgba(23, 105, 224, 0.3);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary.dark {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.button-ghost {
  color: rgba(255, 255, 255, 0.9);
  border-color: transparent;
}

.button-ghost.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 20, 38, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-panel div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.hero-panel span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel strong {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.45;
}

.section {
  padding-block: clamp(70px, 9vw, 112px);
}

.section-tight {
  padding-block: 0;
  background: var(--soft);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.compact {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.trust-section {
  background: var(--white);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
}

.trust-layout .section-heading {
  margin-bottom: 0;
}

.trust-signal-grid {
  display: grid;
  gap: 12px;
}

.trust-signal-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.trust-signal-grid strong,
.trust-signal-grid span {
  display: block;
}

.trust-signal-grid span {
  margin-top: 5px;
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stats-grid div {
  min-height: 118px;
  padding: 22px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.18), rgba(23, 105, 224, 0.2)),
    var(--navy);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.stats-grid span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: -34px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--line);
}

.trust-strip div {
  padding: 24px;
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--navy);
  font-size: 1rem;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 20, 38, 0.06);
}

.service-card h2,
.service-card h3 {
  margin-top: 18px;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.18), rgba(23, 105, 224, 0.16));
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.split-band {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(20, 184, 166, 0.16), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--charcoal));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.split-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue-2));
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.split-content .button {
  margin-top: 30px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 46px;
  align-items: center;
}

.feature-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-copy .button {
  margin-top: 28px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.metric-grid div {
  min-height: 150px;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.22), rgba(23, 105, 224, 0.2)),
    var(--navy);
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid strong {
  font-size: 1.2rem;
}

.metric-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.credibility {
  background: var(--soft);
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.placeholder-grid div {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px dashed #b7c7d8;
  border-radius: var(--radius);
  color: #435368;
  background: rgba(255, 255, 255, 0.68);
  text-align: center;
  font-weight: 800;
}

.placeholder-grid a {
  color: var(--blue);
  text-decoration: none;
}

.placeholder-grid a:hover,
.placeholder-grid a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.cta-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 105, 224, 0.2), transparent 44%),
    var(--navy);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta h2 {
  max-width: 760px;
}

.cta p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(78px, 10vw, 126px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.16), transparent 38%),
    linear-gradient(90deg, rgba(7, 20, 38, 0.96), rgba(13, 36, 59, 0.94)),
    url("techondria-systems-hero.png") center right / cover no-repeat;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: end;
}

.page-hero p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-group {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 20, 38, 0.06);
}

.service-group span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-group h2 {
  margin-top: 10px;
  font-size: 1.55rem;
}

.service-group p {
  margin: 14px 0 0;
  color: var(--muted);
}

.service-group ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-group li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 720;
}

.service-group li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.service-detail {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-detail span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-detail h2 {
  margin-top: 8px;
  font-size: 1.35rem;
}

.service-detail p {
  margin: 12px 0 0;
  color: var(--muted);
}

.credential-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.credential-panel p:not(.eyebrow) {
  color: var(--muted);
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.credential-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.credential-list strong,
.credential-list span {
  display: block;
}

.credential-list span {
  margin-top: 4px;
  color: var(--muted);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.role-grid div {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(7, 20, 38, 0.05);
  font-weight: 850;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.values-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.values-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.mission-panel {
  padding: clamp(28px, 5vw, 52px);
  border-left: 6px solid var(--teal);
  border-radius: var(--radius);
  background: var(--soft);
}

.mission-panel h2 {
  max-width: 1020px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;
}

.about-grid p:not(.eyebrow) {
  color: var(--muted);
}

.leadership-section {
  background: var(--soft);
}

.leadership-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  gap: 34px;
  align-items: start;
}

.leadership-panel p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.leadership-panel.dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.leader-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.leader-card span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.leader-card h3 {
  margin-top: 9px;
  color: var(--ink);
}

.leader-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.leader-card .button {
  margin-top: 22px;
}

.brand-art {
  margin: 0 0 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(7, 20, 38, 0.08);
}

.brand-art img {
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: contain;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr);
  gap: 48px;
  align-items: start;
}

.contact-aside p:not(.eyebrow),
.contact-layout > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.cta-section .contact-layout > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-choice-actions {
  margin-top: 24px;
}

.contact-choice-actions .button-secondary {
  background: rgba(255, 255, 255, 0.1);
}

.contact-methods div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.contact-methods strong,
.contact-methods a,
.contact-methods span {
  display: block;
}

.contact-methods a,
.contact-methods span {
  margin-top: 4px;
  color: var(--muted);
}

.form-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cta-section .form-panel {
  border-color: rgba(255, 255, 255, 0.18);
}

.form-panel label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.form-panel input,
.form-panel textarea,
.form-panel select {
  width: 100%;
  border: 1px solid #cbd7e3;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
}

.form-panel textarea {
  resize: vertical;
  min-height: 132px;
}

.form-panel input:focus,
.form-panel textarea:focus,
.form-panel select:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(23, 105, 224, 0.16);
}

.form-panel button {
  width: fit-content;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #050d18;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 220px 220px;
  gap: 44px;
  padding-block: 50px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 500px;
  margin: 0;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer a:not(.brand) {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
  outline: none;
  text-decoration: underline;
}

.footer-bottom {
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.capability-page {
  background: #e9f0f6;
}

.capability-sheet {
  width: min(980px, calc(100% - 32px));
  margin: 32px auto;
  padding: clamp(24px, 5vw, 48px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.capability-header {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.capability-header img {
  width: 100%;
}

.capability-sheet h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.capability-sheet h2 {
  margin-top: 28px;
  color: var(--ink);
  font-size: 1.35rem;
}

.capability-sheet p,
.capability-sheet li,
.capability-sheet dd {
  color: var(--muted);
}

.capability-sheet dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0 0;
}

.capability-sheet dl div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.capability-sheet dt {
  font-weight: 900;
}

.capability-sheet dd {
  margin: 4px 0 0;
}

.capability-sheet footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    background: rgba(7, 20, 38, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .feature-row,
  .trust-layout,
  .leadership-panel,
  .credential-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
    padding-block: 72px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .trust-strip,
  .card-grid.three,
  .card-grid.two,
  .service-group-grid,
  .service-list,
  .placeholder-grid,
  .role-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(7, 20, 38, 0.97), rgba(7, 20, 38, 0.82)),
      linear-gradient(180deg, rgba(7, 20, 38, 0.18), rgba(7, 20, 38, 0.92)),
      url("techondria-systems-hero.png") 62% center / cover no-repeat;
  }

  .hero-grid {
    padding-block: 48px 38px;
  }

  h1 {
    font-size: clamp(2.08rem, 12vw, 3.15rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-panel {
    display: none;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .card-grid.three,
  .card-grid.two,
  .service-group-grid,
  .service-list,
  .placeholder-grid,
  .metric-grid,
  .stats-grid,
  .role-grid,
  .values-grid,
  .about-grid,
  .credential-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .section-tight .shell {
    width: 100%;
  }

  .service-card,
  .service-detail,
  .form-panel {
    padding: 22px;
  }

  .contact-layout {
    gap: 30px;
  }

  .capability-header,
  .capability-sheet dl {
    grid-template-columns: 1fr;
  }

  .capability-header img {
    max-width: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
