:root {
  --brand: #146cff;
  --brand-dark: #0b4fd2;
  --brand-soft: #eaf2ff;
  --ink: #0b2b4d;
  --ink-deep: #061b3a;
  --paper: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #eef3f9;
  --text: #15243a;
  --muted: #596a82;
  --line: #dbe3ee;
  --shadow: 0 24px 70px rgba(6, 27, 58, 0.12);
  --radius: 1.1rem;
  --shell: 76rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 20rem;
  min-height: 100vh;
  background: var(--paper);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--ink);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--brand-dark);
}

button,
input,
textarea {
  font: inherit;
}

button,
.button {
  touch-action: manipulation;
}

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.65rem 0.9rem;
  transform: translateY(-150%);
  border-radius: 0.5rem;
  background: var(--surface);
  color: var(--ink-deep);
  font-weight: 700;
}

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

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

.narrow {
  width: min(calc(100% - 2rem), 50rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(1, 61, 81, 0.12);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 8px 24px rgba(1, 61, 81, 0.06);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-link img {
  width: auto;
  height: 4.35rem;
  object-fit: contain;
}

.site-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  list-style: none;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 0.65rem 0.15rem;
  color: var(--ink-deep);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  border-radius: 999px;
  background: var(--brand);
  content: "";
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 0.27rem 0;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.54rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.54rem) rotate(-45deg);
}

main {
  min-height: 55vh;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: clamp(34rem, 74vh, 48rem);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-deep) url("/assets/images/home-hero.jpg") center / cover no-repeat;
  color: #ffffff;
  text-align: center;
}

.home-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 27, 37, 0.91), rgba(1, 61, 81, 0.66));
  content: "";
}

.hero-copy {
  width: min(calc(100% - 2rem), 58rem);
  padding-block: 6rem;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0;
  color: #ffffff;
}

.hero-copy h1 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(4.5rem, 14vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-copy h2 {
  max-width: 46rem;
  margin: 1.5rem auto 0;
  font-size: clamp(1.35rem, 3.5vw, 2.15rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

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

.section-ink {
  background: var(--ink);
  color: #ffffff;
}

.section-ink h2,
.section-ink h3,
.section-ink h4 {
  color: #ffffff;
}

.section-heading {
  max-width: 52rem;
  margin: 0 auto clamp(2.4rem, 5vw, 4rem);
  text-align: center;
}

.section-heading h2,
.page-heading,
.detail-copy h1,
.article-header h1 {
  margin: 0;
  color: var(--ink-deep);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.section-heading p,
.section-intro {
  margin: 1.25rem auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.section-ink .section-heading p {
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lede-grid,
.detail-grid {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.lede-grid > img,
.detail-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.lede-grid > img {
  max-height: 32rem;
  object-fit: contain;
}

.lede-copy h2 {
  margin: 0 0 1.25rem;
  color: var(--ink-deep);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.15;
}

.lede-copy h4 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 500;
}

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

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

.card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(1, 61, 81, 0.08);
}

.card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  display: flex;
  height: 100%;
  padding: 1.6rem;
  flex-direction: column;
}

.card h3,
.card h4 {
  margin: 0;
  color: var(--ink-deep);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.25;
}

.card p {
  margin: 1rem 0 1.4rem;
  color: var(--muted);
}

.card-actions {
  display: flex;
  margin-top: auto;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.text-link {
  color: var(--ink);
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 2.85rem;
  padding: 0.65rem 1.15rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand);
  border-radius: 0.65rem;
  background: var(--brand);
  color: #151515;
  font-weight: 800;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--brand-dark);
  background: #ff9b1c;
  color: #151515;
}

.button.secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--ink);
  color: #ffffff;
}

.load-more-wrap {
  margin-top: 2.2rem;
  text-align: center;
}

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

.value-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.value-card img {
  width: 5rem;
  height: 5rem;
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  object-fit: cover;
}

.value-card h4 {
  margin: 0;
  font-size: 1.25rem;
}

.value-card p {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.closing-copy {
  max-width: 56rem;
  margin: 2.75rem auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  text-align: center;
}

.page-hero {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  background: linear-gradient(135deg, var(--ink-deep), var(--ink));
  color: #ffffff;
  text-align: center;
}

.page-hero .page-heading,
.page-hero p {
  color: #ffffff;
}

.page-hero p {
  max-width: 55rem;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

.services-intro img {
  max-height: 22rem;
}

.gallery-single {
  width: min(100%, 42rem);
  margin-inline: auto;
}

.gallery-single img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-hero {
  padding-block: clamp(3rem, 7vw, 6rem);
  background: var(--surface-soft);
}

.detail-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.detail-media img {
  max-height: 38rem;
  object-position: center;
}

.detail-copy h1 {
  margin-bottom: 1.5rem;
}

.detail-copy p {
  margin: 0;
  font-size: 1.08rem;
}

.article-header {
  padding-block: clamp(4rem, 8vw, 7rem) 2rem;
  text-align: center;
}

.article-header .date {
  margin: 1rem 0 0;
  color: var(--muted);
  font-style: italic;
}

.article-image {
  width: min(calc(100% - 2rem), 64rem);
  max-height: 36rem;
  margin: 2rem auto 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.article-body,
.policy-body {
  padding-block: 3rem clamp(4rem, 8vw, 7rem);
}

.prose {
  color: #243b43;
}

.prose h2,
.prose h3 {
  margin: 2.5rem 0 0.85rem;
  color: var(--ink-deep);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.25;
}

.prose h3 {
  font-size: 1.55rem;
}

.prose p,
.prose li {
  margin-block: 0.85rem;
}

.prose ol,
.prose ul {
  padding-left: 1.45rem;
}

.prose a {
  font-weight: 700;
}

.insight-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.insight-card img {
  width: 100%;
  height: 100%;
  min-height: 23rem;
  object-fit: cover;
}

.insight-card .card-body {
  padding: clamp(2rem, 5vw, 4rem);
  justify-content: center;
}

.insight-card h2 {
  margin: 0;
  color: var(--ink-deep);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
}

.insight-card .date {
  color: var(--muted);
  font-style: italic;
}

.availability {
  width: min(100%, 40rem);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.availability-row {
  display: grid;
  padding: 1rem 1.35rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 7rem 1fr;
}

.availability-row:last-child {
  border-bottom: 0;
}

.availability-row strong {
  color: var(--ink-deep);
}

.contact-section {
  background: linear-gradient(135deg, var(--ink-deep), var(--ink));
  color: #ffffff;
}

.contact-section .section-heading h2,
.contact-section .section-heading h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.15;
}

.contact-section .section-heading p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-form {
  display: grid;
  max-width: 52rem;
  margin-inline: auto;
  gap: 1.15rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field.full,
.contact-form .form-actions {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
}

.field input {
  height: 3.2rem;
  padding-inline: 0.9rem;
}

.field textarea {
  min-height: 10rem;
  padding: 0.8rem 0.9rem;
  resize: vertical;
}

.form-actions {
  text-align: center;
}

.form-actions .button {
  min-width: 11rem;
  cursor: pointer;
}

.policy-title {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: var(--ink);
  color: #ffffff;
  text-align: center;
}

.policy-title h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.1;
}

.definition-list {
  display: grid;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(12rem, 0.45fr) minmax(0, 1fr);
}

.definition-list dt,
.definition-list dd {
  margin: 0;
  padding: 1.1rem 1.35rem;
  border-bottom: 1px solid var(--line);
}

.definition-list dt {
  color: var(--ink-deep);
  font-weight: 800;
}

.definition-list dd:nth-last-child(-n + 1),
.definition-list dt:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.policy-links {
  display: flex;
  margin: 2rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  list-style: none;
}

.site-footer {
  border-top: 4px solid var(--brand);
  background: #001e28;
  color: rgba(255, 255, 255, 0.84);
}

.footer-inner {
  display: grid;
  padding-block: 2.8rem;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}

.footer-contact p {
  margin: 0;
}

.footer-label {
  display: block;
  color: #ffffff;
  font-weight: 800;
}

.site-footer a {
  color: #ffffff;
}

.footer-nav {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.5rem;
  list-style: none;
}

.footer-nav a {
  font-weight: 700;
  text-decoration: none;
}

.not-found {
  display: grid;
  min-height: 65vh;
  padding-block: 5rem;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  color: var(--ink-deep);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 1;
}

.not-found p {
  color: var(--muted);
  font-size: 1.2rem;
}

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

  .site-nav {
    position: fixed;
    top: 5.25rem;
    right: 0;
    left: 0;
    display: none;
    min-height: calc(100vh - 5.25rem);
    padding: 1.25rem 1rem 2rem;
    background: var(--paper);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    width: min(100%, 30rem);
    margin-inline: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    padding: 1rem 0.5rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
  }

  .site-nav a::after {
    display: none;
  }

  .lede-grid,
  .detail-grid,
  .insight-card {
    grid-template-columns: 1fr;
  }

  .detail-media {
    order: -1;
  }

  .detail-media img {
    max-height: 30rem;
  }

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

  .insight-card img {
    min-height: 18rem;
    max-height: 26rem;
  }
}

@media (max-width: 40rem) {
  .shell,
  .narrow {
    width: min(calc(100% - 1.25rem), var(--shell));
  }

  .home-hero {
    min-height: 34rem;
  }

  .hero-copy {
    padding-block: 4.5rem;
  }

  .card-grid,
  .card-grid.two,
  .values-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .field.full,
  .contact-form .form-actions {
    grid-column: 1;
  }

  .definition-list {
    grid-template-columns: 1fr;
  }

  .definition-list dt {
    padding-bottom: 0.25rem;
    border-bottom: 0;
  }

  .definition-list dd {
    padding-top: 0.25rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .availability-row {
    grid-template-columns: 5rem 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .contact-section,
  .site-footer,
  .skip-link,
  .load-more-wrap {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  .section,
  .article-body,
  .policy-body {
    padding-block: 1rem;
  }
}

/* Enterprise refresh: 2026-07-26 */

.site-header {
  border-bottom-color: rgba(6, 27, 58, 0.09);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(6, 27, 58, 0.06);
}

.header-inner {
  min-height: 5rem;
}

.brand-link img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
}

.site-nav a {
  color: var(--ink-deep);
  font-size: 0.94rem;
  letter-spacing: 0.01em;
}

.site-nav a::after {
  height: 2px;
  background: var(--brand);
}

.button {
  min-height: 3.15rem;
  padding: 0.78rem 1.25rem;
  border-color: var(--brand);
  border-radius: 0.7rem;
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(20, 108, 255, 0.2);
}

.button:hover {
  border-color: #2f7fff;
  background: #2f7fff;
  color: #ffffff;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--ink-deep);
}

.eyebrow {
  color: var(--brand-dark);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.eyebrow-light {
  color: #8ebaff;
}

.home-hero {
  min-height: clamp(38rem, 76vh, 50rem);
  place-items: initial;
  background-position: center;
  text-align: left;
}

.home-hero::before {
  background: linear-gradient(90deg, rgba(3, 14, 35, 0.98) 0%, rgba(5, 28, 59, 0.95) 38%, rgba(5, 29, 61, 0.67) 62%, rgba(1, 9, 24, 0.16) 100%);
}

.hero-layout {
  display: grid;
  min-height: inherit;
  align-items: center;
}

.hero-copy {
  width: min(100%, 47rem);
  padding-block: 7rem;
}

.home-hero .hero-copy h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(3rem, 4.75vw, 4.25rem);
  font-weight: 750;
  line-height: 1.01;
  letter-spacing: -0.045em;
  text-shadow: none;
}

.hero-lede {
  max-width: 42rem;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.55;
}

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

.capability-band {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.capability-band-grid {
  display: grid;
  min-height: 5.25rem;
  align-items: center;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-band-grid span {
  padding: 0.65rem 1.25rem;
  border-right: 1px solid var(--line);
  color: var(--ink-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.capability-band-grid span:first-child {
  border-left: 1px solid var(--line);
}

.section-heading-left {
  max-width: 47rem;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.section-heading-left p {
  margin-left: 0;
}

.section-heading h2,
.page-heading,
.detail-copy h1,
.article-header h1 {
  font-weight: 720;
  letter-spacing: -0.045em;
}

.enterprise-capabilities .section-heading h2,
#delivery-title,
#leadership-title,
#cta-title {
  font-size: clamp(2.15rem, 3.6vw, 3.25rem);
}

.enterprise-capabilities {
  overflow: hidden;
  background: var(--paper);
}

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

.capability-card {
  position: relative;
  display: flex;
  min-height: 27rem;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 36px rgba(6, 27, 58, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.capability-card::after {
  position: absolute;
  top: -6rem;
  right: -5rem;
  width: 15rem;
  height: 15rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 108, 255, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.capability-card:hover {
  transform: translateY(-3px);
  border-color: #b8cbe9;
  box-shadow: 0 22px 55px rgba(6, 27, 58, 0.1);
}

.capability-icon {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1.8rem;
  border: 1px solid #caddfb;
  border-radius: 0.85rem;
  background: var(--brand-soft);
  color: var(--brand);
  place-items: center;
}

.capability-icon svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.product-label,
.product-index {
  margin: 0 0 0.75rem;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.capability-card h3 {
  max-width: 31rem;
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.capability-card > p:not(.product-label) {
  max-width: 32rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.capability-list,
.feature-list,
.service-card ul {
  margin: 1.45rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.capability-list li,
.feature-list li,
.service-card li {
  position: relative;
  margin: 0.55rem 0;
  padding-left: 1.35rem;
  color: #3f526d;
}

.capability-list li::before,
.feature-list li::before,
.service-card li::before {
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.arrow-link {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink-deep);
  font-weight: 800;
  text-decoration: none;
}

.arrow-link span {
  color: var(--brand);
  font-size: 1.2em;
  transition: transform 150ms ease;
}

.arrow-link:hover span {
  transform: translateX(3px);
}

.delivery-section {
  background: var(--ink-deep);
  color: #ffffff;
}

.delivery-layout {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.delivery-intro h2,
.leadership-layout h2,
.cta-inner h2,
.product-copy h2,
.principles-layout h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  font-weight: 720;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.delivery-intro > p:not(.eyebrow) {
  margin: 1.25rem 0 1.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

.delivery-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.delivery-steps li {
  display: grid;
  padding: 1.35rem 0;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: 4rem 1fr;
}

.delivery-steps li > span {
  color: #76aaff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.82rem;
}

.delivery-steps h3,
.delivery-steps p {
  margin: 0;
}

.delivery-steps h3 {
  color: #ffffff;
  font-size: 1.2rem;
}

.delivery-steps p {
  color: rgba(255, 255, 255, 0.65);
}

.leadership-section {
  background: #ffffff;
}

.leadership-layout {
  display: grid;
  align-items: end;
  gap: clamp(2rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
}

.leadership-layout h2 {
  color: var(--ink-deep);
}

.leadership-copy p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.enterprise-cta {
  background: linear-gradient(135deg, #0c3d7a 0%, #061b3a 70%);
  color: #ffffff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.cta-inner h2 {
  color: #ffffff;
}

.cta-inner p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.site-footer {
  border-top: 0;
  background: #030e20;
}

.footer-inner {
  padding-block: 2.4rem;
}

.footer-contact {
  gap: 1.5rem 2.5rem;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer-label {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Capabilities page */

.page-hero-content {
  max-width: 61rem;
  margin-inline: auto;
}

.page-hero-content .button {
  margin-top: 2rem;
}

.capability-hero,
.service-hero {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background: radial-gradient(circle at 80% 20%, rgba(20, 108, 255, 0.38), transparent 30%), linear-gradient(135deg, #030e20, #0b2b4d);
}

.capability-hero .page-heading,
.service-hero .page-heading {
  font-size: clamp(3rem, 4.5vw, 4rem);
}

.capability-hero p,
.service-hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.capability-jump {
  position: sticky;
  z-index: 80;
  top: 5rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.capability-jump-inner {
  display: flex;
  min-height: 4.1rem;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 5vw, 3.5rem);
}

.capability-jump a {
  color: var(--ink-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.product-section {
  padding-block: clamp(4rem, 7vw, 6rem);
  scroll-margin-top: 9rem;
  background: #ffffff;
}

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

.product-layout {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.product-layout-reverse .product-copy {
  order: 2;
}

.product-copy h2 {
  color: var(--ink-deep);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
}

.product-copy > p:not(.product-index) {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.feature-list {
  margin-block: 1.7rem 2rem;
}

.feature-list li {
  margin: 0.7rem 0;
}

.product-visual {
  min-width: 0;
  min-height: 30rem;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid #cbd7e8;
  border-radius: 1.5rem;
  background: #f8fbff;
  box-shadow: 0 30px 80px rgba(6, 27, 58, 0.15);
}

.visual-topbar {
  display: flex;
  padding: 0.5rem 0.35rem 1.2rem;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-deep);
  font-size: 0.85rem;
  font-weight: 800;
}

.visual-status {
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: #dff8ec;
  color: #0e6844;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.route-map {
  width: 100%;
  height: auto;
  border: 1px solid #dce6f3;
  border-radius: 1rem;
  background: linear-gradient(140deg, #eef5ff, #ffffff);
}

.map-road {
  fill: none;
  stroke: #d2ddea;
  stroke-linecap: round;
  stroke-width: 18;
}

.map-road-secondary {
  stroke-width: 12;
}

.route-line {
  fill: none;
  stroke: var(--brand);
  stroke-linecap: round;
  stroke-width: 5;
}

.route-two {
  stroke: #19a7ce;
}

.route-nodes circle {
  fill: #ffffff;
  stroke: var(--brand);
  stroke-width: 4;
}

.visual-tags {
  display: flex;
  margin-top: 1rem;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.visual-tags span {
  padding: 0.46rem 0.7rem;
  border: 1px solid #d5e0ee;
  border-radius: 999px;
  background: #ffffff;
  color: #52647b;
  font-size: 0.74rem;
  font-weight: 700;
}

.guard-visual {
  display: grid;
  background: #07172f;
  grid-template-columns: 1fr 0.65fr;
  grid-template-rows: auto 1fr;
}

.guard-visual .visual-topbar {
  color: #ffffff;
  grid-column: 1 / -1;
}

.scan-document {
  display: flex;
  min-height: 22rem;
  padding: 2.1rem;
  flex-direction: column;
  border-radius: 1rem 0 0 1rem;
  background: #ffffff;
  gap: 1.2rem;
}

.document-line {
  position: relative;
  height: 0.72rem;
  border-radius: 999px;
  background: #dce5f0;
}

.document-line.flagged {
  background: #d6e5ff;
  box-shadow: 0 0 0 3px rgba(20, 108, 255, 0.15);
}

.document-line.flagged span {
  position: absolute;
  top: -0.62rem;
  right: 0.2rem;
  padding: 0.18rem 0.38rem;
  border-radius: 0.3rem;
  background: var(--brand);
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 800;
}

.width-90 { width: 90%; }
.width-85 { width: 85%; }
.width-80 { width: 80%; }
.width-70 { width: 70%; }
.width-60 { width: 60%; }

.scan-results {
  display: flex;
  padding: 1.3rem;
  justify-content: center;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  gap: 1.25rem;
}

.scan-results span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.77rem;
  font-weight: 700;
}

.scan-results i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #36d497;
  box-shadow: 0 0 0 4px rgba(54, 212, 151, 0.13);
}

.speech-visual {
  background: linear-gradient(155deg, #07172f, #0b315b);
  color: #ffffff;
}

.speech-visual .visual-topbar {
  color: #ffffff;
}

.waveform {
  display: flex;
  height: 10rem;
  padding: 1.4rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  gap: 0.32rem;
}

.waveform i {
  width: 0.5rem;
  min-height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(#40baff, #146cff);
}

.speech-output {
  display: grid;
  margin-top: 1rem;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.speech-output div {
  min-height: 8rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
}

.speech-output span,
.speech-output strong {
  display: block;
}

.speech-output span {
  margin-bottom: 1rem;
  color: #8ebaff;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speech-output strong {
  color: #ffffff;
  font-size: 0.86rem;
  line-height: 1.35;
}

.vision-visual {
  background: #06152b;
}

.visual-search {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.visual-search span {
  margin-right: 0.55rem;
  color: #7eb4ff;
  font-size: 1.2rem;
}

.vision-grid {
  display: grid;
  margin-top: 1rem;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vision-frame {
  position: relative;
  height: 11rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.85rem;
  background: linear-gradient(145deg, #1d3f62, #0a1b33);
}

.vision-frame::before,
.vision-frame::after {
  position: absolute;
  border: 1px solid rgba(102, 177, 255, 0.72);
  content: "";
}

.vision-frame::before {
  top: 25%;
  right: 28%;
  width: 34%;
  height: 45%;
}

.vision-frame::after {
  right: 14%;
  bottom: 14%;
  left: 14%;
  height: 2px;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
}

.vision-frame.active {
  border-color: #4b98ff;
  box-shadow: 0 0 0 3px rgba(20, 108, 255, 0.18);
}

.vision-frame span {
  position: absolute;
  z-index: 1;
  right: 0.55rem;
  bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.67rem;
}

.vision-result {
  display: flex;
  margin-top: 1rem;
  padding: 1rem;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.85rem;
  background: #ffffff;
}

.vision-result span {
  color: var(--brand-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vision-result strong {
  color: var(--ink-deep);
  font-size: 0.82rem;
}

/* Services page */

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

.service-card {
  min-height: 22rem;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(6, 27, 58, 0.06);
}

.service-number {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--brand);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.service-card > p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.service-principles {
  background: var(--surface-soft);
}

.principles-layout {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.principles-layout h2 {
  color: var(--ink-deep);
}

.principle-list {
  border-top: 1px solid #cbd6e4;
}

.principle-list div {
  display: grid;
  padding: 1.25rem 0;
  border-bottom: 1px solid #cbd6e4;
  grid-template-columns: 10rem 1fr;
}

.principle-list strong {
  color: var(--ink-deep);
}

.principle-list span {
  color: var(--muted);
}

@media (max-width: 56rem) {
  .capability-band-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-band-grid span,
  .capability-band-grid span:first-child {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-band-grid span:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .delivery-layout,
  .leadership-layout,
  .product-layout,
  .principles-layout {
    grid-template-columns: 1fr;
  }

  .product-layout-reverse .product-copy {
    order: initial;
  }

  .product-copy {
    max-width: 42rem;
  }

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

  .capability-jump {
    top: 5.25rem;
  }
}

@media (max-width: 40rem) {
  .brand-link img {
    width: 4.1rem;
    height: 4.1rem;
  }

  .home-hero {
    min-height: 38rem;
    background-position: 63% center;
  }

  .home-hero::before {
    background: linear-gradient(90deg, rgba(3, 14, 35, 0.98), rgba(5, 28, 59, 0.88));
  }

  .hero-copy {
    padding-block: 5.5rem;
  }

  .home-hero .hero-copy h1 {
    font-size: clamp(2.55rem, 10.8vw, 2.9rem);
  }

  .enterprise-capabilities .section-heading h2,
  #delivery-title,
  #leadership-title,
  #cta-title {
    font-size: 2rem;
  }

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

  .hero-actions .button {
    width: 100%;
  }

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

  .capability-card {
    min-height: 0;
  }

  .capability-jump-inner {
    display: grid;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .capability-jump a {
    display: flex;
    min-height: 2.8rem;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.4rem;
    text-align: center;
  }

  .product-section {
    scroll-margin-top: 11rem;
  }

  .product-visual {
    min-height: 23rem;
    padding: 0.9rem;
  }

  .guard-visual {
    display: block;
  }

  .scan-document {
    min-height: 15rem;
    border-radius: 0.85rem;
  }

  .scan-results {
    padding-block: 1.2rem 0;
    border-left: 0;
  }

  .speech-output {
    grid-template-columns: 1fr;
  }

  .speech-output div {
    min-height: 0;
  }

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

  .vision-frame:last-child {
    display: none;
  }

  .vision-result {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .principle-list div {
    grid-template-columns: 1fr;
  }
}

/* Enterprise contact */

.contact-hero {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background: radial-gradient(circle at 78% 20%, rgba(20, 108, 255, 0.34), transparent 28%), linear-gradient(135deg, #030e20, #0b2b4d);
}

.contact-hero .page-heading {
  font-size: clamp(3rem, 4.5vw, 4rem);
}

.contact-layout {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.contact-intro h2 {
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.contact-intro > p:not(.eyebrow) {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-direct {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

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

.contact-direct span {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct a {
  font-weight: 800;
}

.enterprise-form {
  max-width: none;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.enterprise-form .field label {
  color: var(--ink-deep);
  font-size: 0.82rem;
}

.enterprise-form .field input,
.enterprise-form .field textarea {
  border-color: #cbd6e4;
  background: #f9fbfe;
}

.enterprise-form .field input:focus,
.enterprise-form .field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(20, 108, 255, 0.12);
  outline: 0;
}

.enterprise-form .form-actions {
  text-align: left;
}

@media (max-width: 56rem) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Enterprise about */

.about-hero,
.profile-hero {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background: radial-gradient(circle at 78% 20%, rgba(20, 108, 255, 0.34), transparent 28%), linear-gradient(135deg, #030e20, #0b2b4d);
}

.about-hero .page-heading,
.profile-hero .page-heading {
  font-size: clamp(3rem, 4.5vw, 4rem);
}

.about-positioning {
  display: grid;
  align-items: end;
  gap: clamp(2rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.about-positioning h2,
.founder-copy h2 {
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.about-positioning > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.about-principles {
  display: grid;
  margin-top: clamp(3rem, 7vw, 6rem);
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-principles article {
  min-height: 15rem;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.about-principles span {
  color: var(--brand);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.about-principles h3 {
  margin: 3.25rem 0 0;
  color: var(--ink-deep);
  font-size: 1.35rem;
}

.about-principles p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.founder-layout {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
}

.founder-layout > img {
  width: 100%;
  max-height: 38rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center top;
}

.founder-copy > p:not(.eyebrow):not(.founder-role):not(.profile-note) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.founder-role {
  margin: 0.75rem 0 1.5rem;
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-copy .arrow-link {
  margin-top: 1.8rem;
}

.expertise-tags {
  display: flex;
  margin-top: 1.7rem;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.expertise-tags span {
  padding: 0.5rem 0.7rem;
  border: 1px solid #cbd8ea;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--ink-deep);
  font-size: 0.74rem;
  font-weight: 800;
}

.profile-note {
  margin: 1.8rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 56rem) {
  .about-positioning,
  .founder-layout {
    grid-template-columns: 1fr;
  }

  .founder-layout > img {
    width: min(100%, 30rem);
  }
}

@media (max-width: 40rem) {
  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-principles article {
    min-height: 0;
  }

  .about-principles h3 {
    margin-top: 2rem;
  }
}


 
/* Balanced primary-page type scale */

.home-hero .hero-copy h1 {
  font-size: clamp(3rem, 4.2vw, 3.75rem);
}

.enterprise-capabilities .section-heading h2,
#delivery-title,
#leadership-title,
#cta-title,
#capability-cta-title,
#services-title,
#principles-title,
#services-cta-title,
#about-cta-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
}

@media (max-width: 40rem) {
  .home-hero .hero-copy h1 {
    font-size: 2.5rem;
  }

  .capability-hero .page-heading,
  .service-hero .page-heading,
  .contact-hero .page-heading,
  .about-hero .page-heading,
  .profile-hero .page-heading {
    font-size: 2.5rem;
  }

  .product-copy h2,
  .contact-intro h2,
  .about-positioning h2,
  .founder-copy h2,
  .enterprise-capabilities .section-heading h2,
  #delivery-title,
  #leadership-title,
  #cta-title,
  #capability-cta-title,
  #services-title,
  #principles-title,
  #services-cta-title,
  #about-cta-title {
    font-size: 1.875rem;
  }
}
