:root {
  --ink: #1b2430;
  --ink-soft: #334155;
  --paper: #fafbf8;
  --paper-deep: #eef2f7;
  --white: #ffffff;
  --line: #d8e0ea;
  --muted: #687386;
  --blue: #0149ad;
  --orange: #fa751f;
  --teal: var(--blue);
  --teal-dark: var(--blue);
  --lime: var(--orange);
  --coral: var(--orange);
  --gold: var(--orange);
  --header-height: 92px;
  --page-width: 1240px;
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

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

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: 46px;
  font-weight: 560;
}

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

.section-pad {
  padding-block: 96px;
}

.tone-paper {
  background: var(--paper);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal-dark);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--blue);
  background: rgba(250, 251, 248, .98);
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.primary-header {
  display: grid;
  grid-template-columns: 190px 1fr 132px;
  align-items: center;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  overflow: hidden;
}

.brand-logo {
  width: 88px;
  height: 62px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.main-nav a,
.header-cta {
  position: relative;
  padding-block: 25px;
  font-size: 14px;
  font-weight: 620;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid var(--blue);
  border-radius: 2px;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.main-nav .lang-link {
  color: var(--muted);
  font-weight: 720;
}

.main-nav .lang-link:hover {
  color: var(--orange);
}

.solution-rail-shell {
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid var(--blue);
  background: var(--blue);
}

.solution-rail {
  display: flex;
  align-items: center;
  height: 46px;
  overflow-x: auto;
  gap: 27px;
  scrollbar-width: none;
  white-space: nowrap;
}

.solution-rail::-webkit-scrollbar {
  display: none;
}

.solution-rail a,
.rail-label {
  flex: 0 0 auto;
  font-size: 11px;
}

.solution-rail a {
  position: relative;
  padding-block: 15px;
  color: rgba(255, 255, 255, .78);
  font-weight: 610;
}

.solution-rail a:hover,
.solution-rail a.active {
  color: var(--white);
}

.solution-rail a.active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
}

.rail-label {
  padding-right: 4px;
  color: var(--orange);
  font-weight: 750;
  text-transform: uppercase;
}

.site-header.scrolled {
  color: var(--blue);
  background: rgba(250, 251, 248, .98);
  box-shadow: 0 8px 28px rgba(1, 73, 173, .1);
}

.site-header.scrolled .header-cta {
  border-color: var(--blue);
}

.site-header.scrolled .solution-rail-shell {
  border-color: var(--blue);
  background: var(--blue);
}

.icon-button,
.menu-toggle {
  display: none;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 650px;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background-color: var(--blue);
}

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

.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(to top, rgba(1, 73, 173, .48), transparent);
  content: "";
}

.home-hero {
  min-height: min(820px, 92vh);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 73, 173, .94) 0%, rgba(1, 73, 173, .8) 37%, rgba(1, 73, 173, .24) 72%, rgba(1, 73, 173, .1) 100%),
    linear-gradient(180deg, rgba(1, 73, 173, .32) 0%, transparent 32%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-height);
  padding-bottom: 112px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 44px;
  gap: 9px;
  color: rgba(255, 255, 255, .67);
  font-size: 12px;
}

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

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: 68px;
  font-weight: 560;
}

.home-hero h1 {
  font-size: 82px;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .87);
  font-size: 22px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  margin-top: 38px;
  gap: 28px;
}

.primary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 12px 18px;
  gap: 20px;
  border: 1px solid var(--orange);
  border-radius: 2px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 720;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

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

.dark-button:hover,
.dark-button:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--blue);
}

.text-link,
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.text-link {
  padding-block: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
}

.text-link:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero-facts {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.hero-facts > div {
  display: flex;
  min-height: 88px;
  align-items: center;
  padding-inline: 24px;
  gap: 13px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.hero-facts > div:first-child {
  padding-left: 0;
}

.hero-facts > div:last-child {
  border-right: 0;
}

.hero-facts strong {
  color: var(--orange);
  font-size: 28px;
  font-weight: 550;
}

.hero-facts span {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
}

.section-heading {
  margin-bottom: 48px;
}

.split-heading,
.with-link {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 64px;
}

.split-heading > p {
  max-width: 420px;
  margin-bottom: 3px;
  color: var(--muted);
}

.section-link {
  flex: 0 0 auto;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
}

.section-link:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.path-card {
  position: relative;
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 28px 26px 24px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease;
}

.path-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--path-color);
  content: "";
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform 180ms ease;
}

.path-card:first-child {
  border-left: 1px solid var(--line);
}

.path-card:hover {
  background: var(--blue);
  color: var(--white);
}

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

.path-card > span {
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 12px;
}

.path-card:hover > span {
  color: var(--orange);
}

.path-card strong {
  margin-bottom: 14px;
  font-size: 25px;
  font-weight: 600;
}

.path-card p {
  max-width: 240px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.path-card:hover p {
  color: rgba(255, 255, 255, .72);
}

.path-card i {
  margin-top: auto;
  font-size: 20px;
  font-style: normal;
}

.media-grid {
  display: grid;
  gap: 24px;
}

.media-grid.four-cols {
  grid-template-columns: repeat(4, 1fr);
}

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

.media-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.media-card::before {
  position: absolute;
  z-index: 1;
  inset: 0 0 auto;
  aspect-ratio: 16 / 10;
  background: rgba(1, 73, 173, .12);
  content: "";
  pointer-events: none;
  transition: background 180ms ease;
}

.media-card:hover {
  border-color: var(--blue);
  box-shadow: 0 18px 38px rgba(1, 73, 173, .1);
  transform: translateY(-3px);
}

.media-card:hover::before {
  background: rgba(250, 117, 31, .1);
}

.media-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  background-color: var(--ink-soft);
  transition: transform 300ms ease;
}

.media-card:hover .media-card-image {
  transform: scale(1.025);
}

.media-card-content {
  display: flex;
  min-height: 250px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px 24px 22px;
}

.media-eyebrow {
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 730;
  text-transform: uppercase;
}

.media-card-content > strong {
  margin-bottom: 14px;
  font-size: 21px;
  font-weight: 610;
  line-height: 1.18;
}

.media-description {
  color: var(--muted);
  font-size: 14px;
}

.media-action {
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
}

.media-card:hover .media-action {
  color: var(--orange);
}

.method-section {
  padding-block: 100px;
  color: var(--white);
  background: var(--blue);
}

.method-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
}

.method-heading {
  align-self: start;
  position: sticky;
  top: 160px;
}

.method-heading h2 {
  max-width: 500px;
  margin-bottom: 26px;
}

.method-heading > p:last-child {
  max-width: 490px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .64);
}

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

.method-steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  padding-block: 27px;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.method-steps li > span {
  color: var(--orange);
  font-size: 13px;
}

.method-steps strong {
  display: block;
  margin-bottom: 7px;
  font-size: 21px;
  font-weight: 580;
}

.method-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}

.name-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.name-strip span {
  display: grid;
  min-height: 80px;
  place-items: center;
  padding: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.contact-section {
  padding-block: 72px;
  background: var(--orange);
}

.contact-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.contact-layout h2 {
  font-size: 40px;
}

.contact-layout .eyebrow {
  margin-bottom: 12px;
}

.site-footer {
  padding-top: 72px;
  color: var(--white);
  background: var(--blue);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr .7fr .8fr;
  padding-bottom: 64px;
  gap: 72px;
}

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

.footer-logo {
  width: 104px;
  height: 73px;
}

.footer-main p {
  max-width: 370px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .57);
}

.footer-main nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.footer-main nav a:hover,
.footer-contact a:hover {
  color: var(--orange);
}

.footer-contact span {
  color: rgba(255, 255, 255, .47);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .45);
  font-size: 11px;
}

.landing-intro {
  border-bottom: 1px solid var(--line);
}

.intro-split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(200px, .45fr);
  align-items: end;
  gap: 100px;
}

.display-copy {
  max-width: 900px;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 480;
  line-height: 1.35;
}

.intro-aside {
  display: flex;
  align-items: baseline;
  padding-top: 18px;
  gap: 14px;
  border-top: 1px solid var(--ink);
}

.intro-aside strong {
  color: var(--teal);
  font-size: 42px;
  font-weight: 540;
}

.intro-aside span {
  max-width: 160px;
  color: var(--muted);
  font-size: 12px;
}

.detail-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .62fr);
  gap: 100px;
}

.simple-detail-page .detail-intro {
  min-height: 500px;
}

.simple-detail-page .detail-intro-grid {
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
}

.simple-detail-page .detail-intro h2 {
  max-width: 470px;
  font-size: 40px;
}

.simple-detail-copy {
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}

.simple-detail-copy .display-copy {
  margin-bottom: 28px;
}

.simple-detail-copy > p:not(.display-copy) {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 5px;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 720;
}

.back-link:hover,
.back-link:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
}

.detail-facts {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.detail-facts > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding-block: 18px;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.detail-facts dt {
  color: var(--muted);
  font-size: 12px;
}

.detail-facts dd {
  margin: 0;
  font-size: 14px;
  font-weight: 650;
}

.theme-list {
  border-top: 1px solid var(--ink);
}

.theme-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  padding-block: 18px;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.theme-list span {
  color: var(--teal);
  font-size: 12px;
}

.theme-list strong {
  font-size: 15px;
  font-weight: 610;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: grid;
  min-height: 150px;
  grid-template-columns: 48px 1fr 24px;
  align-content: start;
  padding: 25px;
  gap: 8px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 160ms ease, color 160ms ease;
}

.service-card:hover {
  background: var(--blue);
  color: var(--white);
}

.service-card > span {
  grid-row: span 2;
  color: var(--teal);
  font-size: 12px;
}

.service-card strong {
  font-size: 18px;
  font-weight: 610;
}

.service-card small {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
}

.service-card:hover small {
  color: rgba(255, 255, 255, .62);
}

.service-card i {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 20px;
  font-style: normal;
}

.value-band {
  color: var(--white);
  background: var(--blue);
}

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

.value-grid > div {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  gap: 13px;
  border-right: 1px solid rgba(255, 255, 255, .17);
}

.value-grid > div:first-child {
  padding-left: 0;
}

.value-grid strong {
  color: var(--orange);
  font-size: 12px;
}

.value-grid span {
  max-width: 210px;
  font-size: 17px;
  font-weight: 580;
}

.application-list {
  border-top: 1px solid var(--line);
}

.application-list a {
  display: grid;
  grid-template-columns: minmax(150px, .35fr) 1fr 28px;
  align-items: center;
  min-height: 82px;
  padding-inline: 18px;
  gap: 26px;
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease, color 160ms ease;
}

.application-list a:hover {
  background: var(--white);
}

.applications-section:not(.tone-paper) .application-list a:hover {
  background: var(--paper);
}

.application-list span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
}

.application-list strong {
  font-size: 17px;
  font-weight: 560;
}

.application-list i {
  justify-self: end;
  font-size: 19px;
  font-style: normal;
}

.service-detail-page .page-hero h1 {
  max-width: 980px;
  font-size: 58px;
}

.case-context-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .65fr);
  gap: 110px;
}

.case-context-layout h2 {
  max-width: 620px;
  font-size: 40px;
}

.case-facts a {
  border-bottom: 1px solid var(--line);
}

.case-facts a:hover,
.case-facts a:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
}

.include-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.include-item {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.include-item > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.include-item > div > span {
  color: var(--teal);
  font-size: 12px;
}

.include-type {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 720;
  text-transform: uppercase;
}

.include-type.producto {
  border-color: rgba(250, 117, 31, .5);
  color: var(--orange);
  background: rgba(250, 117, 31, .08);
}

.include-type.integracion {
  border-color: rgba(1, 73, 173, .42);
  color: var(--blue);
  background: rgba(1, 73, 173, .06);
}

.include-item h3 {
  max-width: 300px;
  margin: 40px 0 0;
  font-size: 22px;
  font-weight: 590;
}

.existing-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
}

.stack-section {
  color: var(--white);
  background: var(--blue);
}

.stack-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 100px;
}

.stack-layout h2 {
  margin-bottom: 24px;
}

.stack-layout > div:first-child > p:last-child {
  max-width: 420px;
  color: rgba(255, 255, 255, .62);
}

.stack-label {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 720;
  text-transform: uppercase;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 38px;
  gap: 8px;
}

.chip-list span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 2px;
  font-size: 12px;
}

.partner-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.partner-mini-grid span {
  min-width: 0;
  padding: 14px;
  border-right: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  font-size: 13px;
}

.partner-mini-grid b,
.partner-group-list b {
  color: var(--orange);
}

.technology-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 100px;
}

.technology-layout h2 {
  margin-bottom: 24px;
}

.large-copy {
  max-width: 430px;
  color: var(--muted);
  font-size: 18px;
}

.technology-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.technology-list li {
  display: grid;
  grid-template-columns: 50px 1fr 190px;
  align-items: center;
  min-height: 76px;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.technology-list li > span {
  color: var(--teal);
  font-size: 12px;
}

.technology-list strong {
  font-size: 17px;
  font-weight: 610;
}

.technology-list small {
  justify-self: end;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.related-solution-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 80px;
}

.related-image {
  aspect-ratio: 16 / 10;
  background-color: var(--ink-soft);
  background-image: var(--related-image);
  background-position: center;
  background-size: cover;
}

.related-solution-layout h2 {
  margin-bottom: 22px;
  font-size: 40px;
}

.related-solution-layout p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
}

.partner-name-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-name-grid > div {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.partner-name-grid strong {
  font-size: 16px;
}

.partner-name-grid span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.partner-group-list {
  border-top: 1px solid var(--ink);
}

.partner-group-list > section {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) 1fr 1fr;
  padding-block: 30px;
  gap: 50px;
  border-bottom: 1px solid var(--line);
}

.partner-group-list > section > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.partner-group-list > section > div span {
  color: var(--teal);
  font-size: 11px;
}

.partner-group-list h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 590;
}

.partner-group-list section > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.partner-group-list ul {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  margin: 0;
  padding: 0;
  gap: 7px;
  list-style: none;
}

.partner-group-list li {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 11px;
}

@media (max-width: 1050px) {
  .page-width {
    width: min(calc(100% - 40px), var(--page-width));
  }

  .primary-header {
    grid-template-columns: 160px 1fr 112px;
  }

  .main-nav {
    gap: 20px;
  }

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

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

  .path-card:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .name-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .method-layout,
  .stack-layout,
  .technology-layout {
    gap: 60px;
  }

  .intro-split,
  .detail-intro-grid {
    gap: 60px;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 78px;
  }

  .page-width {
    width: min(calc(100% - 32px), var(--page-width));
  }

  .section-pad,
  .method-section {
    padding-block: 68px;
  }

  h2 {
    font-size: 35px;
  }

  .primary-header {
    position: relative;
    grid-template-columns: 1fr 42px;
    min-height: 62px;
    gap: 12px;
  }

  .brand-logo {
    width: 68px;
    height: 48px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    justify-self: end;
    padding: 0;
    border: 1px solid var(--blue);
    border-radius: 2px;
    background: transparent;
    color: currentColor;
    cursor: pointer;
  }

  .site-header.scrolled .menu-toggle {
    border-color: var(--blue);
  }

  .main-nav {
    position: fixed;
    z-index: -1;
    inset: 62px 0 auto;
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    gap: 0;
    background: var(--white);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 160ms ease;
  }

  .site-header.menu-open .main-nav {
    z-index: 55;
    max-height: calc(100vh - 62px);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 19px 22px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

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

  .main-nav a.active {
    color: var(--orange);
  }

  .solution-rail {
    gap: 22px;
  }

  .page-hero,
  .home-hero {
    min-height: 670px;
  }

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

  .hero-overlay {
    background: linear-gradient(90deg, rgba(1, 73, 173, .94) 0%, rgba(1, 73, 173, .78) 78%, rgba(1, 73, 173, .34) 100%);
  }

  .hero-inner {
    justify-content: flex-end;
    padding-top: 150px;
    padding-bottom: 122px;
  }

  .breadcrumbs {
    margin-bottom: 28px;
  }

  .page-hero h1,
  .home-hero h1 {
    margin-bottom: 18px;
    font-size: 44px;
  }

  .hero-lead {
    font-size: 18px;
  }

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

  .hero-facts > div {
    min-height: 54px;
    padding-inline: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .hero-facts > div:first-child {
    padding-left: 0;
  }

  .hero-facts strong {
    font-size: 20px;
  }

  .hero-facts span {
    font-size: 10px;
  }

  .split-heading,
  .with-link,
  .contact-layout {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .path-grid,
  .media-grid.four-cols,
  .media-grid.three-cols,
  .service-grid,
  .value-grid,
  .method-layout,
  .intro-split,
  .detail-intro-grid,
  .stack-layout,
  .technology-layout,
  .case-context-layout,
  .related-solution-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 230px;
    border-left: 1px solid var(--line);
  }

  .path-card > span {
    margin-bottom: 34px;
  }

  .media-grid {
    gap: 18px;
  }

  .media-card-content {
    min-height: 220px;
  }

  .method-layout,
  .stack-layout,
  .technology-layout,
  .intro-split,
  .detail-intro-grid,
  .case-context-layout,
  .related-solution-layout {
    gap: 44px;
  }

  .service-detail-page .page-hero h1 {
    font-size: 38px;
  }

  .case-context-layout h2 {
    font-size: 34px;
  }

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

  .include-item {
    min-height: 180px;
  }

  .method-heading {
    position: static;
  }

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

  .intro-split {
    align-items: start;
  }

  .display-copy {
    font-size: 25px;
  }

  .simple-detail-page .detail-intro {
    min-height: 0;
  }

  .simple-detail-page .detail-intro h2 {
    font-size: 34px;
  }

  .simple-detail-copy {
    padding-top: 20px;
  }

  .intro-aside {
    max-width: 280px;
  }

  .service-card {
    min-height: 135px;
  }

  .value-grid > div {
    min-height: 112px;
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .17);
  }

  .application-list a {
    grid-template-columns: 1fr 26px;
    padding-block: 17px;
    gap: 7px 16px;
  }

  .application-list span {
    grid-column: 1;
  }

  .application-list strong {
    grid-column: 1;
    grid-row: 2;
  }

  .application-list i {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .technology-list li {
    grid-template-columns: 34px 1fr;
    padding-block: 14px;
    gap: 7px 12px;
  }

  .technology-list small {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .related-solution-layout h2 {
    font-size: 35px;
  }

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

  .partner-group-list > section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-section {
    padding-block: 60px;
  }

  .contact-layout h2 {
    font-size: 34px;
  }

  .footer-main {
    gap: 42px;
  }
}

@media (max-width: 420px) {
  .page-width {
    width: min(calc(100% - 24px), var(--page-width));
  }

  .page-hero h1,
  .home-hero h1 {
    font-size: 40px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .partner-name-grid,
  .partner-mini-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
