:root {
  --blue: #0064b0;
  --green: #05db00;
  --light-blue: #3ea9db;
  --aqua: #09b0a7;
  --orange: #e7680d;
  --black: #000000;
  --text: #222222;
  --grey: #f7f7f7;
  --grey-2: #f2f2f2;
  --line: #e1e1e1;
  --white-blue: #f0f4fc;
  --shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  background: #fff;
}
a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green); }
img { display: block; max-width: 100%; height: auto; }
p { margin: 0 0 1.5rem; }
h1, h2, h3 {
  margin: 0 0 1rem;
  color: var(--blue);
  font-weight: 500;
  line-height: 1.15;
}
h2 { font-size: clamp(2rem, 1.9048vw + 1.5714rem, 2.5rem); }
h3 { font-size: 21px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - 1280px) / 2 + 24px));
  border-bottom: 1px solid var(--grey-2);
  background: #fff;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--blue);
  font-size: 1.45rem;
  font-weight: 700;
}
.brand img { max-width: 220px; max-height: 56px; object-fit: contain; }
.site-header .brand span { display: none; }
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-weight: 400;
}
.main-nav a, .ghost-link {
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  cursor: pointer;
}
.main-nav a:hover {
  color: var(--green);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 25px;
  border: 0;
  border-radius: 24px;
  background: var(--blue);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  box-shadow: none;
}
.button:hover { background: var(--green); color: #fff; }
.button.small { min-height: 40px; padding: 0 20px; }
.button.secondary {
  background: var(--green);
  color: #fff;
}
.button.secondary:hover {
  background: var(--blue);
  color: #fff;
}
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: #fff;
  font-weight: 500;
}
.text-link::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 7px;
  background: linear-gradient(45deg, transparent 45%, currentColor 46%, currentColor 54%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, currentColor 46%, currentColor 54%, transparent 55%);
  background-size: 12px 12px;
  background-position: 5px 3px, 5px 10px;
  background-repeat: no-repeat;
}
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 650px;
  margin-bottom: 92px;
  overflow: visible;
}
.hero-media {
  position: relative;
  height: 550px;
  overflow: hidden;
  background: var(--blue);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .06) 44%, rgba(0, 0, 0, 0));
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-intro {
  position: absolute;
  inset: 0 auto auto 50%;
  z-index: 2;
  width: min(60%, 768px);
  transform: translateX(-640px);
  padding: 92px 40px;
  color: #fff;
}
.hero-intro h1 {
  max-width: 30ch;
  color: #fff;
  font-size: clamp(3rem, 2vw + 1.75rem, 5rem);
  line-height: 1.04;
}
.eyebrow {
  display: block;
  margin: 0 0 10px;
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero-card {
  position: absolute;
  right: max(24px, calc((100vw - 1280px) / 2 + 24px));
  bottom: -60px;
  z-index: 3;
  width: min(60%, 768px);
  padding: 40px 64px 40px 40px;
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -230px;
  right: -128px;
  width: 400px;
  height: 400px;
  border: 54px solid rgba(255, 255, 255, .88);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  pointer-events: none;
}
.hero-card p {
  position: relative;
  margin: 0;
  color: var(--black);
  font-size: 18px;
  font-weight: 300;
}

.logo-strip {
  padding: 34px 0;
  background: #fff;
  overflow: hidden;
}
.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 120px;
  height: 100%;
  pointer-events: none;
}
.logo-slider::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}
.logo-slider::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}
.logo-track {
  display: flex;
  width: max-content;
  gap: 34px;
  align-items: center;
  animation: logoSlide 28s linear infinite;
}
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}
.client-logo-link {
  display: inline-grid;
  color: inherit;
}
.logo-strip span {
  min-width: 190px;
  min-height: 82px;
  display: inline-grid;
  place-items: center;
  color: #7a7a7a;
  font-weight: 700;
  text-align: center;
  filter: grayscale(1);
  opacity: .72;
  overflow: hidden;
  transition: filter .2s ease, opacity .2s ease;
}
.client-logo-link:hover span,
.client-logo-link:focus-visible span {
  filter: grayscale(0);
  opacity: 1;
}
.logo-strip span img {
  max-width: 160px;
  max-height: 58px;
  object-fit: contain;
}
.logo-strip span img.trimmed-logo {
  max-width: 176px;
  max-height: 68px;
}
.logo-strip span img.trim-fallback {
  transform: scale(1.18);
}

@keyframes logoSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-band, .solutions, .about-section, .customers {
  padding: 60px max(24px, calc((100vw - 1280px) / 2 + 24px));
}
.resources { background: var(--grey); }
.section-heading {
  max-width: 1280px;
  margin: 0 auto 28px;
}
.section-heading .eyebrow {
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
}
.resource-grid, .solution-grid, .about-card-grid, .story-grid {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.resource-card, .solution-card, .story-card, .about-card {
  min-width: 0;
  border: 1px solid var(--grey-2);
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
  transition: box-shadow .2s ease, transform .2s ease;
}
.resource-card {
  display: flex;
  flex-direction: column;
  color: inherit;
}
.resource-card-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
}
.solution-card-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
}
.story-card-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
}
.story-card {
  display: flex;
  flex-direction: column;
  color: inherit;
}
.resource-card:hover, .solution-card:hover, .story-card:hover, .about-card:hover {
  box-shadow: 0 12px 14px rgba(9, 31, 65, .2);
  transform: translateY(-2px);
}
.resource-card img, .story-card img {
  width: 100%;
  height: 225px;
  object-fit: cover;
}
.resource-card-main > span,
.resource-card-main > h3,
.resource-card-main > p,
.resource-card > div,
.story-card-main > h3,
.story-card-footer {
  padding-left: 24px;
  padding-right: 24px;
}
.resource-card-main {
  min-height: 450px;
  padding-bottom: 0;
}
.resource-card-main > span {
  align-self: flex-start;
  margin: 24px 24px 14px;
  padding: 4px 10px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.resource-card-main > p {
  min-height: 96px;
  color: var(--black);
}
.resource-card > div {
  display: flex;
  padding-bottom: 24px;
}
.resource-more-link,
.solution-more-link,
.story-more-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 300;
}
.resource-card-main:hover h3,
.resource-more-link:hover,
.solution-card-main:hover h3,
.solution-more-link:hover,
.story-card-main:hover h3,
.story-more-link:hover { color: var(--green); }

.solutions {
  background: #fff;
}
.solution-card,
.about-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 0 0 24px;
  overflow: hidden;
  color: inherit;
}
.solution-card img,
.about-card > img {
  width: 100%;
  height: 178px;
  display: block;
  object-fit: cover;
}
.solution-card-main > div,
.about-card > div {
  min-height: 212px;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 0;
}
.solution-card-footer {
  display: flex;
  padding: 0 24px 24px;
}
.solution-card h3,
.about-card h3 {
  min-height: 50px;
}
.solution-card p,
.about-card p {
  min-height: 96px;
  color: var(--black);
}
.solution-more-link,
.about-card span {
  margin-top: auto;
  color: var(--blue);
  font-weight: 300;
}
.solution-card-main:hover h3, .solution-more-link:hover,
.about-card:hover h3, .about-card:hover span { color: var(--green); }
.about-section {
  background: var(--white-blue);
}
.about-card-grid {
  align-items: stretch;
}
.about-history {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, 1.22fr);
  gap: 32px;
  align-items: start;
}
.about-history > div,
.about-subsection {
  background: #fff;
  border: 1px solid var(--grey-2);
  box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
  padding: 28px;
}
.about-map-frame {
  min-height: 310px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: var(--grey);
  border: 1px dashed var(--line);
  color: var(--blue);
  text-align: center;
}
.about-map-frame.has-image {
  border-style: solid;
  background: #fff;
}
.about-map-frame img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}
.about-map-frame.has-image span {
  display: none;
}
.about-map ul {
  columns: 2;
  margin: 0;
  padding-left: 20px;
}
.about-map li {
  break-inside: avoid;
  margin-bottom: 8px;
}
.about-subsection {
  max-width: 1280px;
  margin: 32px auto 0;
}
.team-grid,
.contact-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.team-card,
.office-contact-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--grey-2);
  background: #fff;
}
.team-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.team-card h4,
.office-contact-card h4 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 500;
}
.team-card p,
.office-contact-card p {
  color: var(--black);
}
.office-contact-card a,
.office-contact-card span {
  display: block;
  margin-top: 6px;
}
.detail-page {
  background: #fff;
}
.detail-hero {
  padding: 70px max(24px, calc((100vw - 1280px) / 2 + 24px));
  background: var(--white-blue);
}
.detail-hero .eyebrow {
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
}
.detail-hero h1 {
  max-width: 880px;
  font-size: clamp(2.5rem, 2vw + 1.75rem, 4.5rem);
}
.detail-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--black);
  font-size: 18px;
}
.detail-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 58px 24px 76px;
}
.detail-content > p {
  max-width: 820px;
  font-size: 18px;
}
.history-intro {
  margin-bottom: 54px;
}
.history-timeline {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 14px 0 8px;
}
.history-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  background: var(--green);
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px minmax(0, 1fr);
  align-items: center;
  min-height: 260px;
}
.timeline-item:nth-child(odd) .timeline-card {
  grid-column: 1;
}
.timeline-item:nth-child(even) .timeline-card {
  grid-column: 3;
}
.timeline-marker {
  grid-column: 2;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}
.timeline-marker span {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(17, 77, 172, .22);
}
.timeline-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--grey-2);
  box-shadow: 0 10px 24px rgba(9, 31, 65, .12);
}
.timeline-card img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
}
.timeline-card div {
  padding: 24px 26px 28px;
}
.timeline-card h3 {
  margin-bottom: 8px;
  color: var(--blue);
}
.timeline-card p {
  margin: 0;
  color: var(--black);
}
.detail-map-frame {
  min-height: 420px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 0;
  background: transparent;
  color: var(--blue);
  text-align: center;
}
.detail-map-frame.has-image {
  background: transparent;
}
.detail-map-frame img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}
.detail-list {
  columns: 2;
  max-width: 920px;
}
.detail-list li {
  margin-bottom: 10px;
  break-inside: avoid;
}
.featured-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 34px 0;
}
.featured-contact-card {
  min-height: 250px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--grey-2);
  box-shadow: 0 10px 24px rgba(9, 31, 65, .1);
}
.featured-contact-card > span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.featured-contact-card h3 {
  margin-bottom: 24px;
  color: var(--blue);
}
.featured-contact-card dl {
  display: grid;
  gap: 18px;
  margin: 0;
}
.featured-contact-card dt {
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.featured-contact-card dd {
  margin: 0;
  color: var(--black);
}
.featured-contact-card a {
  color: var(--blue);
  font-weight: 500;
}
.global-office-list {
  padding: 30px;
  background: var(--white-blue);
}
.global-office-list h3 {
  color: var(--blue);
}
.global-office-list ul {
  columns: 2;
  margin-bottom: 0;
  padding-left: 20px;
}
.global-office-list li {
  margin-bottom: 10px;
  break-inside: avoid;
}
.contact-request-section {
  padding-top: 0;
}
.contact-request-form {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--grey-2);
  background: var(--grey);
}
.contact-request-form label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-weight: 500;
}
.contact-request-form label:has(textarea),
.contact-request-form .button {
  grid-column: 1 / -1;
}
.case-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--blue);
}
.case-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 31, 65, .88), rgba(9, 31, 65, .54) 55%, rgba(9, 31, 65, .18)),
    linear-gradient(0deg, rgba(9, 31, 65, .42), rgba(9, 31, 65, .08));
}
.case-hero-copy {
  position: relative;
  width: min(720px, calc(100% - 48px));
  margin: 0 0 72px max(24px, calc((100vw - 1280px) / 2 + 24px));
  padding: 32px 36px;
  border-left: 5px solid var(--green);
  background: rgba(9, 31, 65, .72);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .24);
  backdrop-filter: blur(2px);
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
}
.case-layout-split .case-hero-copy {
  background: rgba(9, 31, 65, .74);
}
.case-hero-copy .eyebrow,
.case-hero-copy h1 {
  color: #fff;
}
.case-hero-copy h1 {
  font-size: clamp(2.7rem, 2vw + 1.75rem, 4.8rem);
}
.case-hero-copy p {
  font-size: 18px;
  font-weight: 400;
}
.case-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  padding: 66px 24px 82px;
}
.case-intro {
  min-width: 0;
}
.case-intro .eyebrow {
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
}
.case-intro p {
  max-width: 820px;
  font-size: 18px;
}
.case-intro .button {
  margin-top: 28px;
}
.case-aside {
  align-self: start;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--grey-2);
  box-shadow: 0 8px 18px rgba(9, 31, 65, .08);
}
.case-aside h3 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 21px;
}
.case-aside ul {
  margin-bottom: 0;
}
.related-resource-list {
  display: grid;
  gap: 0;
}
.related-resource-card {
  position: relative;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid var(--grey-2);
  color: var(--blue);
  transition: color .2s ease;
}
.related-resource-card::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.related-resource-card::after {
  content: "";
  justify-self: end;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.related-resource-card strong {
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}
.related-resource-card:hover {
  color: var(--green);
}
.related-resource-card:hover strong {
  color: var(--green);
}
.related-resource-card:last-child {
  border-bottom: 0;
}
.repository-hero {
  padding: 68px max(24px, calc((100vw - 1280px) / 2 + 24px)) 42px;
  background: linear-gradient(180deg, var(--white-blue) 0%, #fff 100%);
}
.repository-hero > div {
  max-width: 1040px;
}
.repository-hero h1 {
  margin-bottom: 18px;
  color: var(--blue);
}
.repository-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--black);
  font-size: 20px;
}
.document-repository {
  max-width: 1040px;
  margin: 0 auto;
  padding: 42px 24px 90px;
}
.document-repository-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--grey-2);
  padding-bottom: 18px;
}
.document-repository-header h2,
.document-repository-header p {
  margin: 0;
}
.document-repository-header p {
  color: var(--blue);
  font-weight: 500;
}
.document-list {
  display: grid;
  gap: 12px;
}
.document-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--grey-2);
  background: #fff;
  box-shadow: 0 4px 12px rgba(9, 31, 65, .05);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.document-item:hover {
  border-color: rgba(12, 84, 164, .35);
  box-shadow: 0 10px 20px rgba(9, 31, 65, .08);
}
.document-item.featured-document {
  border-left: 5px solid var(--green);
}
.document-file-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 68px;
  border: 1px solid var(--grey-2);
  background: var(--white-blue);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}
.repository-list-image {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--grey-2);
}
.document-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.document-meta span {
  display: inline-flex;
  padding: 3px 9px;
  background: var(--white-blue);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}
.document-meta span + span {
  background: rgba(143, 195, 31, .16);
  color: var(--green);
}
.document-item h3 {
  margin-bottom: 8px;
  color: var(--blue);
}
.document-item p {
  margin: 0;
  color: var(--black);
}
.case-layout-panel .case-hero-copy {
  margin-left: auto;
  margin-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
  padding: 38px;
  border-left: 5px solid var(--green);
  background: #fff;
  color: var(--black);
  box-shadow: var(--shadow);
  text-shadow: none;
}
.case-layout-panel .case-hero-copy .eyebrow,
.case-layout-panel .case-hero-copy h1 {
  color: var(--blue);
}
.case-layout-panel .case-hero-copy p {
  color: var(--black);
}
.case-layout-panel .case-content {
  grid-template-columns: 340px minmax(0, 1fr);
}
.case-layout-panel .case-aside {
  order: -1;
}
.case-layout-editorial .case-hero {
  min-height: 460px;
  align-items: center;
}
.case-layout-editorial .case-hero::before {
  background: rgba(17, 77, 172, .72);
}
.case-layout-editorial .case-hero-copy {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}
.case-layout-editorial .case-content {
  grid-template-columns: 1fr;
  max-width: 980px;
}
.case-layout-editorial .case-aside {
  display: none;
}
.case-hero-copy div p,
.rich-text p {
  margin: 0 0 14px;
}
.case-hero-copy div p:last-child,
.rich-text p:last-child {
  margin-bottom: 0;
}
.case-hero-copy ul,
.rich-text ul {
  margin: 0 0 14px 20px;
  padding: 0;
}
.case-hero-copy li,
.rich-text li {
  margin-bottom: 6px;
}
input, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 14px;
  font: inherit;
}
textarea { min-height: 124px; resize: vertical; }

.customers { background: #fff; }
.story-card { overflow: hidden; }
.story-card h3 { margin: 20px 0 12px; }
.story-card-footer {
  display: flex;
  padding-bottom: 24px;
}
.story-more-link { display: block; }

.site-footer {
  padding: 64px max(24px, calc((100vw - 1280px) / 2 + 24px)) 28px;
  background: linear-gradient(180deg, var(--grey) 0%, #fff 100%);
  color: var(--black);
}
.footer-brand, .footer-columns, .footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-brand {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 760px);
  gap: 40px;
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.footer-brand h2 {
  margin: 0;
  color: var(--blue);
}
.footer-brand p {
  max-width: none;
  margin: 0;
  color: var(--black);
  font-size: 18px;
  line-height: 1.65;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  margin-top: 34px;
  align-items: start;
}
.footer-columns > div {
  min-width: 0;
}
.footer-columns > div:not(:first-child) {
  display: grid;
  align-content: start;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.footer-columns h3 {
  margin-bottom: 12px;
  font-size: 18px;
  color: var(--blue);
}
.footer-columns a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 30px;
  margin: 4px 0;
  color: var(--blue);
  cursor: pointer;
}
.footer-columns a:hover {
  color: var(--green);
}
.footer-columns a[href="#"] {
  color: var(--text);
  cursor: default;
}
.footer-columns a[href="#"]:hover {
  color: var(--text);
}
.footer-column-extra {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.footer-column-extra h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 18px;
}
.footer-column-extra p {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
}
.footer-subscribe {
  display: flex;
  gap: 10px;
}
.footer-subscribe input {
  min-width: 0;
  flex: 1;
}
.footer-subscribe .button {
  flex: 0 0 auto;
  min-height: 48px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-links a,
.footer-columns .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  min-width: 38px;
  max-width: 38px;
  height: 38px;
  min-height: 38px;
  flex: 0 0 38px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
}
.social-links a:hover {
  border-color: var(--green);
  color: var(--green);
}
.social-links svg,
.footer-columns .social-links svg {
  display: block;
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  min-height: 20px;
  max-height: 20px;
  fill: currentColor;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  color: var(--text);
  font-size: 14px;
}

.admin-page { background: var(--grey); }
.admin-header { position: static; }
.login-screen {
  min-height: 100vh;
  display: none;
  place-items: center;
  padding: 24px;
  background: var(--grey);
}
.locked .login-screen {
  display: grid;
}
.locked .admin-private {
  display: none;
}
.login-panel {
  width: min(420px, 100%);
  display: grid;
  gap: 18px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
}
.login-panel h1 {
  margin-bottom: 0;
}
.login-panel label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-weight: 500;
}
.login-error {
  min-height: 24px;
  margin: 0;
  color: #b00020;
  font-weight: 500;
}
.admin-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 880px);
  gap: 28px;
  align-items: start;
  padding: 34px max(24px, calc((100vw - 1280px) / 2 + 24px));
}
.admin-tabs {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 8px;
}
.admin-tabs button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--blue);
  font-weight: 500;
  text-align: left;
  padding: 0 14px;
  cursor: pointer;
}
.admin-tabs button.active { background: var(--blue); color: #fff; }
.admin-tool-button {
  justify-self: start;
  min-height: 40px;
  padding: 0 14px;
}
.admin-form {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
}
.admin-panel { display: none; padding: 30px; }
.admin-panel.active { display: grid; gap: 18px; }
.admin-panel h1 { margin: 0 0 6px; color: var(--blue); }
.admin-panel label {
  display: grid;
  gap: 8px;
  font-weight: 500;
  color: var(--blue);
}
.admin-note { margin: 0; color: var(--text); }
.strong-note {
  padding: 12px 14px;
  background: var(--white-blue);
  color: var(--blue);
  border-left: 4px solid var(--green);
}
.story-admin-list {
  display: grid;
  gap: 18px;
}
.story-admin-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white-blue);
}
.story-admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.story-admin-card h2 {
  margin: 0;
  color: var(--blue);
  font-size: 20px;
}
.story-admin-card textarea {
  min-height: 150px;
  white-space: pre-wrap;
}
.story-admin-card select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 14px;
  background: #fff;
  font: inherit;
}
.admin-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding: 18px 30px;
  border-top: 1px solid var(--line);
  background: #fff;
}
#saveStatus { color: var(--blue); font-weight: 500; }

@media (max-width: 1320px) {
  .hero-intro {
    left: 24px;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
    min-height: 72px;
  }
  .nav-toggle {
    display: inline-flex;
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    color: var(--blue);
    align-items: center;
    padding: 0 16px;
    font-weight: 500;
  }
  .main-nav, .header-actions { display: none; }
  .nav-open .main-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 12px;
    padding-bottom: 18px;
  }
  .main-nav.visible { display: flex; }
  .hero {
    min-height: auto;
    margin-bottom: 0;
    background: var(--grey);
  }
  .hero-media { height: 520px; }
  .hero-intro {
    width: calc(100% - 40px);
    padding: 58px 0;
  }
  .hero-intro h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 0 20px 34px;
    padding: 28px;
  }
  .hero-card::before { display: none; }
  .logo-slider::before, .logo-slider::after { width: 48px; }
  .logo-strip span { min-width: 150px; }
  .resource-grid, .solution-grid, .about-card-grid, .story-grid, .team-grid, .contact-list-grid, .footer-columns {
    grid-template-columns: 1fr;
  }
  .document-repository-header,
  .document-item {
    align-items: start;
    grid-template-columns: 1fr;
  }
  .about-history, .admin-shell {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .footer-columns > div:not(:first-child) {
    padding-left: 0;
    border-left: 0;
  }
  .social-links {
    justify-content: flex-start;
  }
  .about-map ul { columns: 1; }
  .detail-list { columns: 1; }
  .featured-contact-grid {
    grid-template-columns: 1fr;
  }
  .global-office-list ul {
    columns: 1;
  }
  .history-timeline::before {
    left: 45px;
  }
  .timeline-item {
    grid-template-columns: 90px minmax(0, 1fr);
    min-height: 0;
  }
  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card {
    grid-column: 2;
  }
  .timeline-marker {
    grid-column: 1;
  }
  .timeline-marker span {
    width: 72px;
    height: 72px;
    font-size: 17px;
  }
  .timeline-card img {
    height: 180px;
  }
  .case-content,
  .case-layout-panel .case-content {
    grid-template-columns: 1fr;
  }
  .contact-request-form {
    grid-template-columns: 1fr;
  }
  .case-layout-panel .case-aside {
    order: 0;
  }
  .case-hero-copy,
  .case-layout-panel .case-hero-copy {
    margin: 0 24px 46px;
  }
  .admin-tabs {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.breadcrumbs {
  background: #fff;
  color: var(--blue);
}
.breadcrumbs > div {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px;
  font-size: 14px;
}
.breadcrumbs a::after {
  content: "/";
  margin: 0 8px;
  color: var(--text);
}
.model-contact-banner {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  background: #dce8f7;
}
.map-stage {
  position: absolute;
  top: 50%;
  right: max(24px, calc((100vw - 1280px) / 2 + 24px));
  width: min(820px, 62vw);
  aspect-ratio: 940 / 477;
  transform: translateY(-50%);
}
.map-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .92;
}
.model-contact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(17, 77, 172, .88), rgba(17, 77, 172, .5) 34%, rgba(17, 77, 172, .08) 58%, rgba(17, 77, 172, 0));
  pointer-events: none;
}
.map-marker-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transform: translate(8px, -50%);
}
.map-pin.silicon-valley {
  transform: translate(8px, -50%);
}
.map-pin::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(17, 77, 172, .22);
}
.map-pin.hq::before {
  width: 14px;
  height: 14px;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(231, 104, 13, .22);
}
.map-pin.rd::before {
  background: var(--aqua);
}
.map-pin.network::before {
  background: var(--light-blue);
}
.model-contact-banner__wrapper {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  left: 0;
  right: 0;
  padding: 0 24px;
}
.model-contact-banner__content {
  max-width: 610px;
  color: #fff;
}
.model-contact-banner__content h1 {
  color: #fff;
  font-size: clamp(3rem, 2vw + 1.75rem, 5rem);
}
.model-contact-banner__content p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
.model-contact-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 48px;
  max-width: 1280px;
  margin: 48px auto 70px;
  padding: 0 24px;
}
.model-contact-column h3 {
  font-size: 1.75rem;
}
.contact-form-column {
  align-self: start;
}
.bg-thin-grey {
  background: var(--grey-2);
}
.bg--layout {
  padding: 16px;
  border-radius: 10px;
}
.contact-form-panel > p {
  margin-bottom: 22px;
}
.office-summary {
  margin-bottom: 22px;
  padding: 18px 18px 1px;
  background: #fff;
}
.office-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 500;
}
.office-summary p {
  font-size: 14px;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-weight: 500;
}
.contact-form label:has(textarea),
.contact-form .button {
  grid-column: 1 / -1;
}
.contact-form input,
.contact-form textarea {
  border-radius: 0;
  background: #fff;
}
.contact-form textarea {
  min-height: 120px;
}
.contact-form .button {
  justify-self: start;
}
.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.feature-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--grey-2);
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
  transition: box-shadow .2s ease;
}
.feature-card:hover {
  box-shadow: 0 12px 14px rgba(9, 31, 65, .2);
}
.feature-icon {
  width: 96px;
  height: 96px;
  margin: 24px 24px 0;
  background: var(--white-blue);
  border-radius: 50%;
  position: relative;
}
.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 5px solid var(--blue);
  border-radius: 18px;
}
.feature-icon-demo::after {
  inset: 43px 24px auto;
  height: 0;
  border-width: 0 0 5px;
  border-radius: 0;
}
.feature-icon-portal::before {
  border-radius: 50%;
}
.feature-icon-portal::after {
  inset: 36px;
  background: var(--green);
  border: 0;
  border-radius: 50%;
}
.feature-icon-office::before {
  inset: 18px 30px 22px;
  border-radius: 4px;
}
.feature-icon-office::after {
  inset: auto 37px 22px;
  height: 20px;
  background: var(--blue);
  border: 0;
  border-radius: 2px;
}
.feature-icon-careers::before {
  inset: 22px 30px 38px;
  border-radius: 50%;
}
.feature-icon-careers::after {
  inset: auto 24px 20px;
  height: 24px;
  background: var(--blue);
  border: 0;
  border-radius: 18px 18px 8px 8px;
}
.feature-card address {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 24px 24px;
  font-style: normal;
}
.feature-card .title {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 21px;
  font-weight: 500;
}
.feature-card p {
  min-height: 72px;
  color: var(--black);
  font-size: 16px;
}
.feature-card address > span:last-child {
  margin-top: auto;
  color: var(--blue);
}

@media (max-width: 900px) {
  .model-contact-banner,
  .map-stage img {
    min-height: 360px;
    height: 360px;
  }
  .map-stage {
    width: min(760px, 94vw);
    right: 3vw;
    top: 57%;
  }
  .map-marker-layer {
    inset: 0;
  }
  .map-pin {
    font-size: 0;
  }
  .model-contact-content,
  .contact-form {
    grid-template-columns: 1fr;
  }
  .feature-card-grid {
    grid-template-columns: 1fr;
  }
}
