:root {
  --navy: #001030;
  --navy-2: #071a3d;
  --blue: #005cf8;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --charcoal: #1f2937;
  --steel: #6b7280;
  --light-grey: #e5e7eb;
  --mid-grey: #c9ced6;
  --success: #147a4a;
  --danger: #b42318;
  --max-width: 1180px;
  --header-height: 82px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 10px 30px rgba(0, 16, 48, 0.08);
  --shadow-md: 0 22px 55px rgba(0, 16, 48, 0.14);
  --font-sans: Inter, Aptos, "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  font-weight: 760;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 720;
}

p {
  margin: 0;
}

ul,
ol {
  margin-top: 0;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

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

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

.section {
  padding-block: clamp(76px, 10vw, 132px);
}

.section-sm {
  padding-block: clamp(52px, 7vw, 84px);
}

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

.section-dark {
  color: rgba(255, 255, 255, 0.84);
  background: var(--navy);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-grid {
  position: relative;
  overflow: hidden;
}

.section-grid::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 80%, transparent);
}

.section-grid > * {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section-dark .eyebrow {
  color: #5f9cff;
}

.lead {
  max-width: 780px;
  color: var(--steel);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.7;
}

.section-dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.section-heading .lead {
  justify-self: end;
}

.stack > * + * {
  margin-top: 22px;
}

.stack-sm > * + * {
  margin-top: 12px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.nav-link:focus-visible,
.footer-link:focus-visible,
.mobile-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 92, 248, 0.4);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
}

.button-primary:hover {
  background: #004bd1;
}

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

.button-secondary:hover {
  border-color: var(--navy);
}

.button-dark-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.36);
}

.button-dark-outline:hover {
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
}

.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.placeholder {
  display: inline;
  padding: 2px 6px;
  color: #7a2e0e;
  background: #fff1e8;
  border: 1px dashed #df7f4f;
  border-radius: 4px;
  font-weight: 720;
}

.notice {
  padding: 18px 20px;
  background: #fff8e8;
  border: 1px solid #eed8a4;
  border-left: 4px solid #c58a00;
  border-radius: var(--radius-sm);
}

.notice strong {
  color: var(--navy);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 16, 48, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: clamp(215px, 25vw, 305px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  position: relative;
  padding: 10px 11px;
  color: #425066;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  right: 11px;
  bottom: 4px;
  left: 11px;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--navy);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  margin-left: 8px;
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 8px;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-toggle span {
  position: relative;
}

.mobile-toggle span::before {
  position: absolute;
  top: -7px;
}

.mobile-toggle span::after {
  position: absolute;
  top: 7px;
}

.mobile-toggle[aria-expanded="true"] span {
  background: transparent;
}

.mobile-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 9vw, 128px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.hero::before {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 760px;
  height: 760px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero::after {
  position: absolute;
  top: -170px;
  right: -90px;
  width: 570px;
  height: 570px;
  content: "";
  border: 1px solid rgba(0, 92, 248, 0.36);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: clamp(48px, 7vw, 90px);
  align-items: center;
}

.hero h1 {
  max-width: 820px;
  color: var(--white);
}

.hero h1 span {
  color: #72a7ff;
}

.hero-copy {
  max-width: 720px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
}

.hero .eyebrow {
  color: #72a7ff;
}

.hero-panel {
  position: relative;
  padding: 28px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}

.hero-panel::before {
  position: absolute;
  inset: 16px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 17px;
}

.system-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.system-title {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9bc0ff;
  font-size: 0.74rem;
  font-weight: 750;
}

.system-status::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 92, 248, 0.14);
}

.system-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.system-node {
  position: relative;
  z-index: 2;
  min-height: 108px;
  padding: 18px;
  background: rgba(0, 16, 48, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.system-node strong {
  display: block;
  color: var(--white);
  font-size: 0.93rem;
}

.system-node span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
}

.system-node::after {
  position: absolute;
  top: 20px;
  right: 18px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
}

.system-bus {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(55px, 7vw, 86px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-item {
  padding: 24px;
  background: var(--navy);
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.proof-item span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
}

/* Cards and grids */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.industry-card,
.case-card,
.value-card {
  position: relative;
  min-width: 0;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-card {
  display: flex;
  min-height: 315px;
  flex-direction: column;
}

.card-icon {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--blue);
  background: #edf4ff;
  border-radius: 10px;
}

.card-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p,
.industry-card p,
.case-card p,
.value-card p {
  margin-top: 15px;
  color: var(--steel);
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 28px;
}

.service-card::before {
  position: absolute;
  top: -1px;
  right: 30px;
  left: 30px;
  height: 3px;
  content: "";
  background: var(--blue);
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 180ms ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  color: var(--blue);
  background: #edf4ff;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-warning {
  color: #7a2e0e;
  background: #fff1e8;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 218px;
  padding: 70px 22px 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  counter-increment: process;
}

.process-step::before {
  position: absolute;
  top: 22px;
  left: 22px;
  content: "0" counter(process);
  color: #72a7ff;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.process-step h3 {
  font-size: 1.1rem;
}

.process-step p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.split-reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.sticky-copy {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

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

.list-check li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}

.list-check svg {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-list {
  display: grid;
  gap: 1px;
  background: var(--light-grey);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.capability-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.36fr) minmax(0, 0.64fr);
  gap: 24px;
  padding: 24px;
  background: var(--white);
}

.capability-row strong {
  color: var(--navy);
}

.capability-row span {
  color: var(--steel);
}

/* Band */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(45px, 7vw, 72px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.cta-band::after {
  position: absolute;
  right: -90px;
  bottom: -180px;
  width: 410px;
  height: 410px;
  content: "";
  border: 60px solid rgba(0, 92, 248, 0.2);
  border-radius: 50%;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  max-width: 720px;
  margin-top: 15px;
}

/* Page hero */
.page-hero {
  padding-block: clamp(76px, 10vw, 130px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: 60px;
  align-items: end;
}

.page-hero h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.page-hero p {
  font-size: 1.12rem;
}

.page-kicker {
  padding: 25px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
}

.page-kicker strong {
  display: block;
  color: var(--white);
}

.page-kicker span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.55);
}

/* Service detail */
.detail-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.33fr) minmax(0, 0.67fr);
  gap: 60px;
  padding-block: 52px;
  border-top: 1px solid var(--light-grey);
}

.detail-number {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.detail-content h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
}

.detail-content > p {
  max-width: 820px;
  margin-top: 18px;
  color: var(--steel);
  font-size: 1.05rem;
}

.detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 30px;
}

.detail-columns h3 {
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.detail-columns ul {
  display: grid;
  gap: 8px;
  padding-left: 19px;
  margin-top: 14px;
  color: var(--steel);
}

/* Industry */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.industry-card {
  min-height: 265px;
}

.industry-card h3 {
  margin-top: 18px;
}

/* Case studies */
.case-grid {
  display: grid;
  gap: 24px;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 0.66fr);
  gap: 42px;
  padding: 34px;
}

.case-meta {
  padding-right: 30px;
  border-right: 1px solid var(--light-grey);
}

.case-meta dl {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

.case-meta dt {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-meta dd {
  margin: 3px 0 0;
  color: var(--navy);
  font-weight: 700;
}

.case-body h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.case-body h3 {
  margin-top: 24px;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-body ul {
  display: grid;
  gap: 7px;
  padding-left: 20px;
  color: var(--steel);
}

/* About values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  min-height: 225px;
}

.value-index {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(46px, 8vw, 92px);
  align-items: start;
}

.contact-panel {
  padding: 32px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.contact-panel h2 {
  color: var(--white);
  font-size: 2rem;
}

.contact-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-list svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #72a7ff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list strong {
  display: block;
  color: var(--white);
}

.contact-list span,
.contact-list a {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
}

.form-card {
  padding: clamp(26px, 5vw, 42px);
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group-full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 750;
}

.required {
  color: var(--danger);
}

input,
select,
textarea {
  width: 100%;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid #bfc6d1;
  border-radius: 7px;
}

input,
select {
  min-height: 49px;
  padding: 0 13px;
}

textarea {
  min-height: 170px;
  padding: 13px;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #8d98a8;
}

.form-help {
  color: var(--steel);
  font-size: 0.76rem;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.checkbox-row label {
  color: var(--charcoal);
  font-weight: 500;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
}

.form-status {
  color: var(--steel);
  font-size: 0.8rem;
}

.bot-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
}

/* Legal */
.legal-content {
  display: grid;
  gap: 34px;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.legal-content h3 {
  margin-top: 20px;
  font-size: 1.1rem;
}

.legal-content p,
.legal-content li {
  color: #4d596c;
}

.legal-content ul {
  display: grid;
  gap: 8px;
}

/* Footer */
.site-footer {
  padding-top: 72px;
  color: rgba(255, 255, 255, 0.62);
  background: #000c25;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(150px, 0.7fr));
  gap: 46px;
}

.footer-brand img {
  width: min(100%, 325px);
}

.footer-brand p {
  max-width: 510px;
  margin-top: 22px;
}

.footer-title {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.footer-link {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* Utilities */
.align-centre {
  text-align: center;
}

.align-centre .lead {
  margin-inline: auto;
}

.margin-top-lg {
  margin-top: 54px;
}

.divider {
  height: 1px;
  background: var(--light-grey);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

/* Responsive */
@media (max-width: 1050px) {
  .site-nav {
    display: none;
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 22px 20px 28px;
    background: var(--white);
    border-bottom: 1px solid var(--light-grey);
    box-shadow: var(--shadow-md);
  }

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

  .nav-link {
    padding: 14px 10px;
    font-size: 1rem;
    border-bottom: 1px solid var(--light-grey);
  }

  .nav-link::after {
    display: none;
  }

  .header-cta {
    margin: 16px 0 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-grid,
  .page-hero-grid,
  .section-heading,
  .split,
  .split-reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .section-heading .lead {
    justify-self: start;
  }

  .sticky-copy {
    position: static;
  }

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

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

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

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 30px), var(--max-width));
  }

  .brand img {
    width: 218px;
  }

  .hero {
    padding-top: 65px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .hero-panel {
    padding: 20px;
  }

  .system-map {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .values-grid,
  .industry-grid,
  .process-grid,
  .detail-columns,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group-full {
    grid-column: auto;
  }

  .service-card {
    min-height: auto;
  }

  .detail-section,
  .case-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .case-meta {
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--light-grey);
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

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

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

@media (max-width: 420px) {
  .brand img {
    width: 188px;
  }

  .button {
    width: 100%;
  }

  .page-hero h1 {
    font-size: 2.55rem;
  }

  .service-card,
  .industry-card,
  .case-card,
  .value-card,
  .form-card,
  .contact-panel {
    padding: 24px;
  }
}

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

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