:root {
  --blue: #0b4dbb;
  --blue-dark: #073b93;
  --logo-blue: #073b93;
  --navy: #0b1f3b;
  --navy-soft: #17385f;
  --white: #ffffff;
  --gray-50: #f6f8fb;
  --gray-100: #edf2f7;
  --gray-200: #d9e1ec;
  --text: #10233e;
  --muted: #536174;
  --shadow: 0 16px 38px rgba(11, 31, 59, 0.14);
  --border: 1px solid rgba(11, 31, 59, 0.11);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 96px;
  padding: 0 64px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(11, 77, 187, 0.16);
  box-shadow: 0 8px 26px rgba(11, 31, 59, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 390px;
  color: var(--logo-blue);
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  color: var(--logo-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0;
}

.brand small {
  position: relative;
  width: fit-content;
  margin-top: 5px;
  padding: 0 34px;
  color: var(--logo-blue);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand small::before,
.brand small::after {
  position: absolute;
  top: 50%;
  width: 26px;
  height: 2px;
  content: "";
  background: var(--logo-blue);
}

.brand small::before {
  left: 0;
}

.brand small::after {
  right: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 96px;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 38px;
  height: 3px;
  content: "";
  background: var(--blue);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 180ms var(--ease-out);
}

.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.site-nav a:focus-visible,
.footer-links a:focus-visible,
.product-card a:focus-visible,
.quick-actions a:focus-visible {
  outline: 2px solid rgba(11, 77, 187, 0.5);
  outline-offset: 4px;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 22px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 4px;
  box-shadow: 0 12px 24px rgba(11, 77, 187, 0.28);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 160ms var(--ease-out),
    background 180ms ease,
    box-shadow 180ms var(--ease-out);
}

.header-cta:focus-visible,
.button:focus-visible {
  background: var(--blue-dark);
  box-shadow: 0 16px 28px rgba(11, 77, 187, 0.34);
  outline: 2px solid rgba(11, 77, 187, 0.34);
  outline-offset: 3px;
}

.header-cta:active,
.button:active {
  transform: scale(0.97);
}

.header-cta svg,
.button svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms var(--ease-out);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  color: var(--navy);
  background: var(--white);
  border: var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition:
    transform 140ms var(--ease-out),
    border-color 160ms ease,
    box-shadow 160ms var(--ease-out);
}

.nav-toggle:active {
  transform: scale(0.97);
}

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 31, 59, 0.86) 0%, rgba(11, 31, 59, 0.67) 31%, rgba(11, 31, 59, 0.12) 69%),
    linear-gradient(180deg, rgba(11, 31, 59, 0.06) 0%, rgba(11, 31, 59, 0.15) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 64px 0 112px;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 4.35rem;
  line-height: 1.06;
  letter-spacing: 0;
  text-shadow: 0 10px 30px rgba(5, 18, 37, 0.35);
}

.hero-copy {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
  font-weight: 500;
}

.hero .button {
  margin-top: 28px;
  min-width: 154px;
}

.capability-strip {
  position: relative;
  z-index: 4;
  margin-top: -76px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(180deg, #183c68 0%, #102b4d 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  box-shadow: 0 20px 44px rgba(11, 31, 59, 0.26);
}

.capability-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  min-height: 126px;
  padding: 28px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  isolation: isolate;
  transition: background 180ms ease;
}

.capability-grid article::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 72%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.capability-grid article:last-child {
  border-right: 0;
}

.capability-grid svg {
  width: 52px;
  height: 52px;
  color: var(--white);
  stroke-width: 1.7;
}

.capability-grid h2 {
  margin: 0;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: uppercase;
}

.capability-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  line-height: 1.45;
}

.section {
  scroll-margin-top: 118px;
  padding: 92px 0;
}

.products-section {
  padding-top: 44px;
  background:
    radial-gradient(circle at 50% 0%, rgba(11, 77, 187, 0.07), transparent 360px),
    var(--white);
}

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

.section-heading-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2,
.section-copy h2,
.contact-intro h2,
.narrow-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: capitalize;
}

.section-heading-center h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  text-transform: uppercase;
}

.section-heading-center h2::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 44px;
  height: 3px;
  content: "";
  background: var(--blue);
  transform: translateX(-50%);
}

.section-copy p,
.section-heading p,
.contact-intro p,
.narrow-copy p {
  color: var(--muted);
  font-size: 1rem;
}

.section-copy > p:not(.section-kicker),
.contact-intro > p,
.narrow-copy > p {
  margin: 20px 0 0;
}

.proof-section {
  background:
    linear-gradient(180deg, rgba(237, 242, 247, 0.58), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 58px;
  align-items: center;
}

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

.proof-card {
  display: grid;
  align-content: start;
  min-height: 178px;
  padding: 24px;
  background: var(--white);
  border: var(--border);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(11, 31, 59, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.proof-card svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
  stroke-width: 1.8;
}

.proof-card strong {
  margin-top: 18px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.28;
}

.proof-card span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.product-card {
  display: grid;
  overflow: hidden;
  min-height: 342px;
  background: var(--white);
  border: var(--border);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(11, 31, 59, 0.12);
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    border-color 180ms ease;
}

.product-card:focus-within {
  border-color: rgba(11, 77, 187, 0.22);
  box-shadow: 0 16px 34px rgba(11, 31, 59, 0.18);
}

.product-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: var(--white);
  transition: transform 420ms var(--ease-out);
}

.product-card div {
  display: grid;
  align-content: start;
  padding: 18px 24px 20px;
}

.product-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.22;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-card p {
  margin: 9px 0 18px;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.4;
}

.product-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  min-height: 44px;
  padding: 10px 0;
  margin-top: auto;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    transform 160ms var(--ease-out);
}

.product-card a:active {
  transform: scale(0.97);
}

.product-card a svg {
  width: 16px;
  height: 16px;
  transition: transform 160ms var(--ease-out);
}

.markets-preview {
  padding: 22px 0 58px;
  background: var(--white);
}

.market-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 8px;
}

.market-row div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--blue-dark);
  font-weight: 800;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    transform 160ms var(--ease-out);
}

.market-row div::after {
  position: absolute;
  left: calc(50% - 44px);
  width: 48px;
  height: 48px;
  content: "";
  border: 1px solid rgba(11, 77, 187, 0.24);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.72);
  transition:
    opacity 180ms ease,
    transform 260ms var(--ease-out);
}

.market-row svg {
  width: 40px;
  height: 40px;
  color: var(--blue);
  stroke-width: 1.7;
}

.market-row .geo-icon {
  width: 46px;
  height: 46px;
  overflow: visible;
}

.market-row .geo-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-section,
.process-section,
.careers-section {
  background: var(--gray-50);
}

.services-section,
.contact-section {
  background: var(--white);
}

.split-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: center;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: var(--border);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-panel figcaption {
  padding: 16px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: var(--border);
}

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

.value-card {
  min-height: 214px;
  padding: 26px;
  background: var(--gray-50);
  border: var(--border);
  border-radius: 6px;
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    border-color 180ms ease;
}

.value-card:focus-within {
  border-color: rgba(11, 77, 187, 0.26);
  box-shadow: 0 16px 32px rgba(11, 31, 59, 0.1);
}

.value-card svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.value-card h3 {
  margin: 18px 0 9px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.28;
  letter-spacing: 0;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.process-timeline::before {
  position: absolute;
  top: 27px;
  left: 8%;
  right: 8%;
  height: 2px;
  content: "";
  background: var(--gray-200);
}

.process-timeline::after {
  position: absolute;
  top: 27px;
  left: 8%;
  right: 8%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent 0%, rgba(11, 77, 187, 0.08) 8%, var(--blue) 50%, rgba(11, 77, 187, 0.08) 92%, transparent 100%);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.process-timeline li {
  position: relative;
  padding: 0 10px;
  text-align: center;
}

.process-timeline span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  background: var(--blue);
  border: 5px solid var(--gray-50);
  border-radius: 50%;
  transition:
    background 180ms ease,
    box-shadow 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.process-timeline span::after {
  position: absolute;
  inset: -8px;
  content: "";
  border: 1px solid rgba(11, 77, 187, 0.28);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.74);
}

.process-timeline span svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.8;
}

.process-timeline small {
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
}

.process-timeline strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 0.86rem;
  line-height: 1.35;
}

.stats-band {
  padding: 52px 0;
  color: var(--white);
  background: var(--navy);
}

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

.stats-grid div {
  min-height: 104px;
  padding: 22px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.stats-grid strong {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.narrow-copy {
  max-width: 740px;
  text-align: center;
}

.contact-layout {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
}

.contact-brand {
  width: fit-content;
  margin-top: 30px;
  padding: 20px;
  background: var(--white);
  border: var(--border);
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(11, 31, 59, 0.08);
}

.contact-brand img {
  width: min(260px, 62vw);
  height: auto;
  max-width: 100%;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
}

.contact-points svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--blue);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: var(--border);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.required-note {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 0.86rem;
}

.required-note span,
.required-mark {
  color: var(--blue);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--text);
  background: var(--gray-50);
  border: 1px solid rgba(11, 31, 59, 0.16);
  border-radius: 4px;
  outline: 0;
  transition:
    border-color 180ms ease,
    box-shadow 180ms var(--ease-out),
    background 180ms ease;
}

.contact-form input {
  height: 46px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 77, 187, 0.12);
}

.contact-form input:invalid:focus,
.contact-form textarea:invalid:focus {
  border-color: #b45309;
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.14);
}

.full-field,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

.form-submit {
  width: fit-content;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--blue);
  font-weight: 700;
}

.quick-actions {
  position: fixed;
  z-index: 40;
  right: 0;
  top: 65%;
  display: grid;
  width: 112px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  border-radius: 7px 0 0 7px;
  box-shadow: 0 14px 30px rgba(11, 31, 59, 0.22);
  transform: translateY(-50%);
}

.quick-actions a {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 20px 12px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    background 160ms ease,
    transform 160ms var(--ease-out);
}

.quick-actions a:last-child {
  border-bottom: 0;
}

.quick-actions a:active {
  transform: scale(0.97);
}

.quick-actions svg {
  width: 28px;
  height: 28px;
  transition: transform 180ms var(--ease-out);
}

.quick-actions span {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #07172c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 56px;
  padding: 54px 0;
}

.footer-brand strong,
.footer-brand span {
  display: block;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-brand strong {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1;
}

.footer-brand span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  letter-spacing: 0;
}

.footer-brand p {
  max-width: 420px;
  margin: 20px 0 0;
}

.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-links a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  padding: 18px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 420ms var(--ease-out),
    transform 420ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-icon {
  overflow: visible;
  transform-box: fill-box;
  transform-origin: center;
  transition:
    filter 180ms ease,
    transform 180ms var(--ease-out);
}

.js .motion-icon [data-draw="true"] {
  stroke-dasharray: var(--path-length);
  stroke-dashoffset: var(--path-length);
  transition: stroke-dashoffset 880ms var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0ms) + var(--draw-delay, 0ms));
}

.js .reveal.is-visible .motion-icon [data-draw="true"],
.js .motion-icon.is-icon-visible [data-draw="true"],
.reduced-motion .motion-icon [data-draw="true"] {
  stroke-dashoffset: 0;
}

.process-timeline.is-animated::after {
  animation: timeline-signal 1800ms var(--ease-out) 160ms both;
}

.process-timeline.is-animated span {
  animation: process-node-pop 520ms var(--ease-out) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 220ms);
}

.process-timeline.is-animated span::after {
  animation: process-ring 780ms var(--ease-out) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 260ms);
}

.contact-intro.is-visible .contact-points span:nth-child(1) svg {
  animation: check-pop 420ms var(--ease-out) 180ms both;
}

.contact-intro.is-visible .contact-points span:nth-child(2) svg {
  animation: check-pop 420ms var(--ease-out) 260ms both;
}

.contact-intro.is-visible .contact-points span:nth-child(3) svg {
  animation: check-pop 420ms var(--ease-out) 340ms both;
}

@keyframes timeline-signal {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  18% {
    opacity: 1;
  }

  76% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

@keyframes process-node-pop {
  0% {
    transform: scale(0.88);
  }

  60% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes process-ring {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.34);
  }
}

@keyframes icon-kick {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
  }

  48% {
    transform: translateY(-3px) scale(1.08) rotate(-3deg);
  }

  100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes geo-pulse {
  0% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.08) rotate(-2deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes check-pop {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  62% {
    opacity: 1;
    transform: scale(1.14);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.product-card.reveal:nth-child(2),
.proof-card.reveal:nth-child(2),
.value-card.reveal:nth-child(2),
.process-timeline .reveal:nth-child(2) {
  --reveal-delay: 40ms;
}

.product-card.reveal:nth-child(3),
.proof-card.reveal:nth-child(3),
.value-card.reveal:nth-child(3),
.process-timeline .reveal:nth-child(3) {
  --reveal-delay: 80ms;
}

.product-card.reveal:nth-child(4),
.proof-card.reveal:nth-child(4),
.value-card.reveal:nth-child(4),
.process-timeline .reveal:nth-child(4) {
  --reveal-delay: 120ms;
}

.product-card.reveal:nth-child(5),
.value-card.reveal:nth-child(5),
.process-timeline .reveal:nth-child(5) {
  --reveal-delay: 160ms;
}

.value-card.reveal:nth-child(6),
.process-timeline .reveal:nth-child(6) {
  --reveal-delay: 200ms;
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
  }

  .header-cta:hover,
  .button:hover {
    background: var(--blue-dark);
    box-shadow: 0 16px 28px rgba(11, 77, 187, 0.34);
    transform: translateY(-2px);
  }

  .header-cta:hover svg,
  .button:hover svg,
  .form-submit:hover svg {
    transform: translateX(3px);
  }

  .form-submit:hover svg {
    transform: translate(3px, -3px) rotate(-8deg);
  }

  .capability-grid article:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .capability-grid article:hover::before {
    opacity: 1;
  }

  .capability-grid article:hover svg {
    filter: drop-shadow(0 6px 10px rgba(255, 255, 255, 0.14));
    transform: translateY(-1px) scale(1.03);
  }

  .proof-card:hover svg,
  .value-card:hover svg,
  .quick-actions a:hover svg {
    animation: icon-kick 520ms var(--ease-out);
    filter: drop-shadow(0 6px 10px rgba(11, 77, 187, 0.18));
  }

  .product-card:hover {
    border-color: rgba(11, 77, 187, 0.22);
    box-shadow: 0 16px 34px rgba(11, 31, 59, 0.18);
    transform: translateY(-4px);
  }

  .product-card:hover img {
    transform: scale(1.035);
  }

  .product-card a:hover {
    color: var(--blue-dark);
    transform: translateX(2px);
  }

  .product-card a:hover svg {
    transform: translateX(4px);
  }

  .proof-card:hover {
    border-color: rgba(11, 77, 187, 0.22);
    box-shadow: 0 18px 34px rgba(11, 31, 59, 0.14);
    transform: translateY(-3px);
  }

  .value-card:hover {
    border-color: rgba(11, 77, 187, 0.26);
    box-shadow: 0 16px 32px rgba(11, 31, 59, 0.1);
    transform: translateY(-3px);
  }

  .market-row div:hover {
    color: var(--blue);
    transform: translateY(-2px);
  }

  .market-row div:hover::after {
    opacity: 1;
    transform: scale(1);
  }

  .market-row div:hover svg {
    animation: geo-pulse 700ms var(--ease-out);
    filter: drop-shadow(0 6px 10px rgba(11, 77, 187, 0.16));
  }

  .process-timeline li:hover span {
    background: var(--blue-dark);
    box-shadow: 0 12px 24px rgba(11, 77, 187, 0.18);
    transform: translateY(-2px);
  }

  .contact-points span:hover svg {
    transform: scale(1.12);
    filter: drop-shadow(0 5px 8px rgba(11, 77, 187, 0.16));
  }

  .quick-actions a:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-2px);
  }

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

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1320px) {
  .site-header {
    gap: 20px;
    padding: 0 28px;
  }

  .brand {
    min-width: 320px;
  }

  .brand strong {
    font-size: 1.55rem;
  }

  .site-nav {
    gap: 20px;
    font-size: 0.78rem;
  }

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

  .capability-grid article {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 24px 20px;
  }

  .capability-grid svg {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 78px;
  }

  .brand {
    min-width: 0;
  }

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

  .brand strong {
    font-size: 1.2rem;
  }

  .brand small {
    padding: 0 24px;
    font-size: 0.68rem;
  }

  .brand small::before,
  .brand small::after {
    width: 18px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 28px 18px;
    background: var(--white);
    border-bottom: var(--border);
    box-shadow: 0 18px 32px rgba(11, 31, 59, 0.12);
  }

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

  .site-nav a {
    min-height: auto;
    padding: 13px 0;
  }

  .site-nav a::after {
    left: 0;
    bottom: 7px;
    transform: scaleX(0);
    transform-origin: left;
  }

  .site-nav a:focus-visible::after,
  .site-nav a.is-active::after {
    transform: scaleX(1);
  }

  .capability-grid,
  .market-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-grid article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .capability-grid article:nth-child(2n) {
    border-right: 0;
  }

  .capability-grid article:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .split-layout,
  .proof-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 1420px) {
  .quick-actions {
    display: none;
  }
}

@media (max-width: 1060px) and (hover: hover) and (pointer: fine) {
  .site-nav a:hover::after {
    transform: scaleX(1);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 720px);
  }

  .site-header {
    padding: 0 16px;
  }

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

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    padding: 0 20px;
    font-size: 0.58rem;
  }

  .hero {
    min-height: 560px;
  }

  .hero-media {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 31, 59, 0.9) 0%, rgba(11, 31, 59, 0.74) 48%, rgba(11, 31, 59, 0.28) 100%),
      linear-gradient(180deg, rgba(11, 31, 59, 0.12) 0%, rgba(11, 31, 59, 0.22) 100%);
  }

  .hero-inner {
    padding: 70px 0 106px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

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

  .capability-strip {
    margin-top: -54px;
  }

  .capability-grid,
  .proof-grid,
  .product-grid,
  .market-row,
  .value-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid article,
  .capability-grid article:nth-child(2n),
  .capability-grid article:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .capability-grid article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .section-copy h2,
  .contact-intro h2,
  .narrow-copy h2 {
    font-size: 1.9rem;
  }

  .products-section {
    padding-top: 38px;
  }

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

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

  .quick-actions {
    display: none;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-timeline li {
    display: grid;
    grid-template-columns: 56px 34px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .process-timeline small {
    margin-top: 0;
  }

  .process-timeline strong {
    margin-top: 0;
  }

  .stats-grid div {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .stats-grid div:first-child {
    border-top: 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

@media (max-width: 440px) {
  .brand span {
    max-width: 190px;
  }

  .hero h1 {
    font-size: 2.18rem;
  }

  .button,
  .form-submit {
    width: 100%;
  }
}
