@charset "UTF-8";

:root {
  color-scheme: light;
  --bg: #f4f8fb;
  --surface: #edf3f7;
  --surface-strong: #e2ebf2;
  --surface-glass: rgba(244, 248, 251, 0.88);
  --text: #102534;
  --muted: #526878;
  --subtle: #5b7080;
  --line: rgba(16, 37, 52, 0.15);
  --accent: #0079d4;
  --accent-deep: #005fa8;
  --accent-soft: #d8eefb;
  --cyan: #5bd3fb;
  --success: #14745d;
  --warning: #8a5a10;
  --shadow: 0 24px 70px rgba(21, 68, 101, 0.13);
  --radius-card: 20px;
  --radius-control: 12px;
  --header-height: 78px;
  --shell: min(1180px, calc(100vw - 48px));
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  --font-heading-1: clamp(34px, calc(28px + 1.2vw), 50px);
  --font-heading-2: clamp(27px, calc(23px + .85vw), 38px);
  --font-heading-3: clamp(19px, calc(17px + .45vw), 23px);
  --font-heading-feature: clamp(23px, calc(20px + .75vw), 34px);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

h1 {
  margin-bottom: 22px;
  font-size: var(--font-heading-1);
  font-weight: 720;
  letter-spacing: -0.038em;
  line-height: 1.16;
}

h2 {
  margin-bottom: 16px;
  font-size: var(--font-heading-2);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.24;
}

h3 {
  margin-bottom: 10px;
  font-size: var(--font-heading-3);
  font-weight: 680;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.skip-link { position: fixed; left: 16px; top: 12px; z-index: 100; padding: 10px 16px; border-radius: var(--radius-control); background: var(--text); color: var(--bg); transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: var(--surface-glass);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(21, 68, 101, 0.08); }
.site-header__inner { min-height: var(--header-height); display: grid; grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr); align-items: center; gap: 24px; }
.site-header__brand-slot { justify-self: start; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.brand img { width: 34px; height: 38px; }
.brand span { display: grid; line-height: 1; }
.brand strong { font-size: 18px; letter-spacing: 0.045em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: 11px; letter-spacing: 0.12em; }
.site-nav { justify-self: center; }
.site-nav ul { display: flex; align-items: center; gap: clamp(24px, 2.5vw, 38px); margin: 0; padding: 0; list-style: none; }
.site-nav a { position: relative; display: inline-flex; align-items: center; justify-content: center; min-height: 43px; padding: 0 2px; color: var(--muted); font-size: 15px; font-weight: 650; white-space: nowrap; transition: color 180ms ease; }
.site-nav a::after { position: absolute; right: 26%; bottom: 1px; left: 26%; height: 2px; border-radius: 2px; background: var(--accent); content: ""; opacity: 0; transform: scaleX(.45); transition: opacity 180ms ease, transform 180ms ease; }
.site-nav a:hover { color: var(--text); }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: var(--text); }
.site-nav__mobile-action { display: none; }
.site-nav .nav-cta { min-height: 42px; padding: 0 20px; border-radius: 999px; background: var(--accent); color: #f7fbfe; }
.site-nav .nav-cta:hover { background: var(--accent-deep); color: #f7fbfe; }
.site-nav .nav-cta::after { display: none; }
.site-header__actions { display: flex; justify-self: end; align-items: center; gap: 10px; }
.header-contact { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 21px; border-radius: 999px; background: var(--text); color: #f7fbfe; font-size: 14px; font-weight: 680; box-shadow: 0 10px 24px rgba(16, 37, 52, .15); transition: transform 180ms ease, background 180ms ease; }
.header-contact:hover { background: var(--accent-deep); transform: translateY(-1px); }
.header-contact[aria-current="page"] { background: var(--accent); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 999px; background: var(--surface-strong); color: var(--text); }
.menu-toggle i { display: block; width: 18px; height: 2px; margin: 5px auto; border-radius: 2px; background: currentColor; transition: transform 180ms ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 680;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(1px) scale(0.99); }
.button-primary { background: var(--accent); color: #f7fbfe; box-shadow: 0 12px 30px rgba(0, 121, 212, 0.22); }
.button-primary:hover { background: var(--accent-deep); }
.button-secondary { border-color: var(--line); background: var(--surface); color: var(--text); }
.button-secondary:hover { border-color: var(--accent); color: var(--accent-deep); }
.button-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-deep); font-weight: 680; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }

.home-hero { padding: 20px 0 32px; overflow: hidden; }
.home-hero__stage { position: relative; width: min(1400px, calc(100vw - 48px)); min-height: 620px; margin-inline: auto; overflow: hidden; border-radius: 0 0 44px 44px; background: #edf7fd; isolation: isolate; }
.home-hero__stage::after { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(242, 249, 255, .98) 0%, rgba(242, 249, 255, .86) 34%, rgba(242, 249, 255, .3) 55%, transparent 73%); content: ""; pointer-events: none; }
.home-hero__copy { position: relative; z-index: 2; display: grid; min-height: 620px; width: min(1180px, calc(100% - 96px)); align-content: center; margin-inline: auto; color: #102534; text-align: left; }
.home-hero__eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 22px !important; color: #005fa8 !important; font-size: 12px !important; font-weight: 760; letter-spacing: .13em; }
.home-hero__eyebrow::before { width: 32px; height: 2px; background: #0079d4; content: ""; }
.home-hero__copy h1 { max-width: 560px; margin-bottom: 24px; text-align: left; }
.home-hero__copy > p:not(.home-hero__eyebrow) { max-width: 560px; margin: 0 0 30px; color: #526878; font-size: clamp(17px, 1.55vw, 19px); line-height: 1.75; }
.home-hero__copy .button-row { justify-content: flex-start; }
.home-hero__copy .button-secondary { border-color: rgba(16, 37, 52, .16); background: rgba(255, 255, 255, .78); color: #102534; backdrop-filter: blur(10px); }
.home-hero__visual { position: absolute; inset: 0; z-index: 0; display: block; overflow: hidden; }
.home-hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.section { padding-block: 80px; }
.section-first { padding-top: 28px; }
.section--tint { background: var(--surface); }
#technology,
#applications,
#cases,
#insights-preview { scroll-margin-top: calc(var(--header-height) + 20px); }
.section-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-heading p { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: 17px; }
.section-heading .section-kicker { margin-bottom: 12px; color: var(--accent-deep); font-size: 11px; font-weight: 780; letter-spacing: .16em; }
.section-action { margin-top: 34px; text-align: center; }

.solution-bento, .case-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.solution-card, .case-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); box-shadow: 0 16px 44px rgba(21, 68, 101, 0.07); }
.solution-card--1, .case-card--1 { grid-column: span 7; grid-row: span 2; }
.solution-card--2, .solution-card--3, .case-card--2, .case-card--3 { grid-column: span 5; display: grid; grid-template-columns: minmax(160px, 42%) 1fr; align-items: stretch; }
.solution-card picture, .case-card__image, .case-card__image picture { display: block; min-height: 0; overflow: hidden; }
.case-card__image picture { height: 100%; }
.solution-card--1 picture, .case-card--1 .case-card__image { aspect-ratio: 16 / 10; }
.solution-card--2 picture, .solution-card--3 picture, .case-card--2 .case-card__image, .case-card--3 .case-card__image { height: 100%; }
.solution-card img, .case-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.16,1,.3,1); }
.solution-card:hover img, .case-card:hover img { transform: scale(1.025); }
.solution-card__body, .case-card__body { padding: clamp(22px, 3vw, 32px); }
.solution-card__body p, .case-card__body p { color: var(--muted); }
.solution-card--2 .solution-card__body, .solution-card--3 .solution-card__body, .case-card--2 .case-card__body, .case-card--3 .case-card__body { padding: 24px; }
.solution-card--2 h3, .solution-card--3 h3, .case-card--2 h3, .case-card--3 h3 { font-size: 20px; }
.solution-card--2 p, .solution-card--3 p, .case-card--2 p, .case-card--3 p { font-size: 14px; line-height: 1.65; }

.tech-story { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); gap: 32px; align-items: stretch; }
.tech-story__visual { overflow: hidden; border-radius: var(--radius-card); box-shadow: var(--shadow); }
.tech-story__visual img { width: 100%; height: 100%; object-fit: cover; }
.tech-platform { display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr); overflow: hidden; border-radius: 28px; background: var(--bg); box-shadow: 0 24px 70px rgba(21, 68, 101, .12); }
.tech-platform__visual { min-height: 500px; overflow: hidden; }
.tech-platform__visual img { width: 100%; height: 100%; object-fit: cover; }
.tech-platform__brief { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 5vw, 58px); border-left: 1px solid var(--line); }
.tech-platform__index { margin-bottom: 52px; color: var(--accent-deep); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.tech-platform__brief h3 { font-size: clamp(26px, 3vw, 34px); }
.tech-platform__brief > p { color: var(--muted); }
.tech-principles { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 30px; padding: 0; list-style: none; }
.tech-principles li { padding: 7px 11px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-deep); font-size: 12px; font-weight: 680; }
.tech-layer-rail { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin-top: 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tech-layer-item { min-width: 0; padding: 24px 19px 26px; }
.tech-layer-item + .tech-layer-item { border-left: 1px solid var(--line); }
.tech-layer-item > span { display: block; margin-bottom: 38px; color: var(--accent-deep); font-size: 11px; font-weight: 800; }
.tech-layer-item h3 { font-size: 18px; }
.tech-layer-item p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.tech-layer-item small { color: var(--subtle); font-size: 11px; line-height: 1.5; }
.tech-carousel { margin-top: 44px; }
.tech-carousel__viewport { overflow-x: auto; border: 1px solid rgba(16, 37, 52, .1); border-radius: 30px; background: #f8fbfd; box-shadow: 0 28px 74px rgba(21, 68, 101, .12); scroll-snap-type: x mandatory; scrollbar-width: none; }
.tech-carousel__viewport::-webkit-scrollbar { display: none; }
.tech-carousel__track { display: flex; }
.tech-carousel__slide { display: grid; grid-template-columns: minmax(0, 1.56fr) minmax(310px, .72fr); width: 100%; min-width: 100%; background: rgba(255, 255, 255, .96); scroll-snap-align: start; scroll-snap-stop: always; }
.tech-carousel__visual { position: relative; display: block; min-width: 0; overflow: hidden; background: #eef6fb; }
.tech-carousel__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 900ms cubic-bezier(.16, 1, .3, 1); }
.tech-carousel__slide.is-active .tech-carousel__visual img { transform: scale(1.012); }
.tech-carousel__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 4.4vw, 58px); border-left: 1px solid var(--line); }
.tech-carousel__counter { margin-bottom: clamp(46px, 6vw, 86px); color: var(--accent-deep); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.tech-carousel__copy h3 { max-width: 330px; margin-bottom: 16px; font-size: clamp(27px, 3vw, 36px); line-height: 1.18; }
.tech-carousel__copy > p { max-width: 390px; margin-bottom: 28px; color: var(--muted); font-size: 16px; line-height: 1.78; }
.tech-carousel__copy .text-link { align-self: flex-start; }
.tech-carousel__controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 24px; }
.tech-carousel__controls > button { display: grid; width: 45px; height: 45px; place-items: center; padding: 0; border: 1px solid rgba(16, 37, 52, .14); border-radius: 50%; background: rgba(255, 255, 255, .86); color: var(--text); font: inherit; cursor: pointer; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.tech-carousel__controls > button:hover { transform: translateY(-2px); border-color: rgba(0, 121, 212, .4); background: #fff; }
.tech-carousel__dots { display: flex; align-items: center; gap: 8px; }
.tech-carousel__dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: #adc0cc; cursor: pointer; transition: width 260ms ease, background 260ms ease; }
.tech-carousel__dots button[aria-current="true"] { width: 34px; background: var(--accent); }
.custom-applications { margin-top: 78px; padding-top: 68px; border-top: 1px solid rgba(16, 37, 52, .14); }
.custom-applications__heading { display: grid; grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr); gap: 20px 70px; align-items: end; }
.custom-applications__heading .section-kicker { grid-column: 1 / -1; margin: 0; }
.custom-applications__heading h3 { max-width: 620px; margin: 0; font-size: clamp(31px, 4vw, 43px); line-height: 1.16; }
.custom-applications__heading > p:last-child { max-width: 580px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.custom-applications__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 42px; border-top: 1px solid rgba(16, 37, 52, .16); border-bottom: 1px solid rgba(16, 37, 52, .16); }
.custom-applications__list article { min-width: 0; padding: 30px 28px 34px; }
.custom-applications__list article + article { border-left: 1px solid rgba(16, 37, 52, .13); }
.custom-applications__list span,
.technology-applications-page__grid span { display: block; margin-bottom: 48px; color: var(--accent-deep); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.custom-applications__list h4,
.technology-applications-page__grid h3 { margin-bottom: 12px; font-size: 22px; }
.custom-applications__list p,
.technology-applications-page__grid p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.72; }
.technology-applications-page__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); box-shadow: 0 20px 54px rgba(21, 68, 101, .08); }
.technology-applications-page__grid article { min-width: 0; padding: clamp(28px, 4vw, 44px); }
.technology-applications-page__grid article + article { border-left: 1px solid var(--line); }
.proof-stack { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--line); }
.proof-stack article, .proof-stack > a { padding: 18px 22px; background: var(--bg); }
.proof-stack strong { display: block; margin-bottom: 3px; font-size: 17px; }
.proof-stack p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.metric-row { display: flex; gap: 18px; margin-top: 18px; }
.metric-row span { display: grid; color: var(--muted); font-size: 11px; line-height: 1.35; }
.metric-row strong { color: var(--text); font-size: 22px; }

.home-contact { padding: 56px 0 80px; }
.home-contact__inner { position: relative; display: grid; min-height: 390px; place-content: center; overflow: hidden; padding: clamp(48px, 7vw, 78px); border: 1px solid rgba(0, 121, 212, .12); border-radius: 28px; background-color: #e8f4fb; background-image: linear-gradient(rgba(241, 249, 253, .74), rgba(222, 241, 251, .68)), image-set(url("/assets/generated/contact-cta-small.webp") 1x, url("/assets/generated/contact-cta-large.webp") 2x); background-position: center; background-size: cover; color: var(--text); text-align: center; box-shadow: 0 24px 70px rgba(21, 68, 101, .13); }
.home-contact__inner::before { position: absolute; inset: 0; background: radial-gradient(circle at 50% 46%, rgba(255, 255, 255, .74), rgba(216, 238, 251, .14)); content: ""; pointer-events: none; }
.home-contact__inner > * { position: relative; z-index: 1; }
.home-contact__inner h2 { color: var(--text); }
.home-contact__inner p { max-width: 620px; margin: 0 auto 28px; color: var(--muted); font-size: 17px; }
.home-contact__inner .button-primary { min-width: 156px; justify-self: center; box-shadow: 0 14px 34px rgba(0, 95, 168, .2); }
.inline-cta__inner { position: relative; display: grid; min-height: 360px; place-content: center; overflow: hidden; padding: clamp(48px, 7vw, 78px); border: 1px solid rgba(0, 121, 212, .12); border-radius: 28px; background-color: #e8f4fb; background-image: linear-gradient(rgba(241, 249, 253, .74), rgba(222, 241, 251, .68)), image-set(url("/assets/generated/contact-cta-small.webp") 1x, url("/assets/generated/contact-cta-large.webp") 2x); background-position: center; background-size: cover; color: var(--text); text-align: center; box-shadow: 0 24px 70px rgba(21, 68, 101, .13); }
.inline-cta__inner::before { position: absolute; inset: 0; background: radial-gradient(circle at 50% 46%, rgba(255, 255, 255, .74), rgba(216, 238, 251, .14)); content: ""; pointer-events: none; }
.inline-cta__inner > * { position: relative; z-index: 1; }
.inline-cta__inner h2 { color: var(--text); }
.inline-cta__inner p { max-width: 620px; margin: 0 auto 26px; color: var(--muted); font-size: 17px; }
.inline-cta__inner .button-primary { min-width: 156px; justify-self: center; box-shadow: 0 14px 34px rgba(0, 95, 168, .2); }
.inline-cta { padding: 26px 0 80px; }

.page-hero { max-width: 900px; padding: clamp(40px, 4.4vw, 56px) 0 clamp(36px, 4vw, 48px); text-align: center; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero > p:not(.page-label) { max-width: 760px; margin: 0 auto; color: var(--muted); font-size: 18px; }
.page-hero time { display: block; margin-top: 18px; color: var(--subtle); font-size: 14px; }
.page-label { margin-bottom: 14px; color: var(--accent-deep); font-size: 13px; font-weight: 760; letter-spacing: 0.08em; }
.breadcrumbs { display: flex; gap: 9px; align-items: center; padding-top: 24px; color: var(--subtle); font-size: 13px; overflow: hidden; white-space: nowrap; }
.breadcrumbs a:hover { color: var(--accent-deep); }
.breadcrumbs span:last-child { overflow: hidden; text-overflow: ellipsis; }

.solution-list { display: grid; gap: 28px; }
.solution-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr); gap: 38px; align-items: center; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); }
.solution-row:nth-child(even) picture { order: 2; }
.solution-row picture { overflow: hidden; border-radius: 14px; }
.solution-row img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.solution-row p { color: var(--muted); }
.plain-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 20px; margin: 22px 0; padding: 0; list-style: none; }
.plain-list li { position: relative; padding-left: 16px; color: var(--muted); font-size: 14px; }
.plain-list li::before { content: ""; position: absolute; left: 0; top: .78em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.detail-hero { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: 48px; align-items: center; padding: 50px 0 62px; }
.detail-hero h1 { max-width: 650px; }
.detail-hero > div > p:not(.page-label) { margin-bottom: 28px; color: var(--muted); font-size: 18px; }
.detail-hero picture { overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); }
.detail-hero img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.capability-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.capability-grid article { grid-column: span 4; min-height: 164px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); }
.capability-grid article:nth-child(1), .capability-grid article:nth-child(2) { grid-column: span 6; }
.capability-grid span, .strength-grid span, .layer-grid > article > span { color: var(--accent-deep); font-size: 13px; font-weight: 800; }
.capability-grid h3 { margin-top: 34px; }
.audience-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr); gap: 56px; align-items: start; }
.audience-layout p { color: var(--muted); }
.audience-layout ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.audience-layout li { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-control); background: var(--bg); font-weight: 650; }
.faq-list { max-width: 860px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 22px 46px 22px 2px; cursor: pointer; font-size: 18px; font-weight: 680; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 4px; color: var(--accent-deep); content: "+"; font-size: 24px; font-weight: 420; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 720px; padding-bottom: 20px; color: var(--muted); }

.wide-visual { display: block; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); }
.wide-visual img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.layer-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.layer-grid > article { grid-column: span 4; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); }
.layer-grid > article:nth-child(1), .layer-grid > article:nth-child(2) { grid-column: span 6; }
.layer-grid h3 { margin-top: 24px; }
.layer-grid p { color: var(--muted); }
.layer-grid ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.layer-grid li { padding: 5px 9px; border-radius: 8px; background: var(--accent-soft); color: var(--accent-deep); font-size: 12px; font-weight: 650; }
.delivery-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.delivery-list article { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 24px; border-radius: var(--radius-card); background: var(--bg); }
.delivery-list article:last-child { grid-column: 1 / -1; }
.delivery-list > article > span { color: var(--accent-deep); font-weight: 800; }
.delivery-list p { margin-bottom: 10px; color: var(--muted); }
.delivery-list small { color: var(--subtle); }
.deployment-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
.deployment-grid article { min-height: 190px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); }
.deployment-grid p { color: var(--muted); }

.case-library { padding-top: 16px; }
.case-index-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.case-index-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease; }
.case-index-card:hover { border-color: rgba(0, 121, 212, .28); box-shadow: 0 20px 44px rgba(21, 68, 101, .09); transform: translateY(-3px); }
.case-index-card__image { display: block; overflow: hidden; aspect-ratio: 16 / 9; background: #e6eef3; }
.case-index-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.16,1,.3,1); }
.case-index-card:hover img { transform: scale(1.025); }
.case-index-card > div { display: flex; min-height: 0; flex: 1; flex-direction: column; padding: 22px; }
.case-index-card__meta { display: flex; flex-wrap: wrap; gap: 6px 14px; margin: 0 0 10px; color: var(--muted); font-size: 12px; font-weight: 650; }
.case-index-card__meta span + span { position: relative; }
.case-index-card__meta span + span::before { position: absolute; top: .72em; left: -8px; width: 3px; height: 3px; border-radius: 50%; background: var(--subtle); content: ""; }
.case-index-card h3 { margin: 0 0 12px; font-size: 22px; line-height: 1.4; }
.case-index-card__summary { display: -webkit-box; overflow: hidden; margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.68; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.case-index-card .text-link { margin-top: auto; font-size: 13px; }
.case-detail-hero { max-width: 900px; padding: 72px 0 42px; text-align: center; }
.case-detail-hero p { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: 18px; }
.case-detail-visual { margin: 0; overflow: hidden; border-radius: 26px; background: var(--surface); box-shadow: var(--shadow); }
.case-detail-visual img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.case-facts { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.case-facts > * { grid-column: span 6; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); }
.case-facts p { color: var(--muted); }
.named-list ul { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; list-style: none; }
.named-list li { padding: 7px 10px; border-radius: 8px; background: var(--accent-soft); color: var(--accent-deep); font-size: 13px; font-weight: 650; }
.verified-metrics { grid-column: 1 / -1; }
.verified-metrics > div { display: flex; gap: 32px; margin: 22px 0; }
.verified-metrics span { display: grid; color: var(--muted); }
.verified-metrics strong { color: var(--text); font-size: 34px; }

.home-insight-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 22px; }
.home-insight-card { grid-column: span 5; overflow: hidden; border-top: 1px solid var(--line); }
.home-insight-card:first-child { grid-column: span 7; grid-row: span 2; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--bg); }
.home-insight-card:not(:first-child) { display: grid; grid-template-columns: minmax(150px, 38%) 1fr; gap: 22px; padding-block: 20px; }
.home-insight-card__image { display: block; overflow: hidden; }
.home-insight-card:first-child .home-insight-card__image { aspect-ratio: 16 / 9; }
.home-insight-card:not(:first-child) .home-insight-card__image { border-radius: 14px; }
.home-insight-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.16,1,.3,1); }
.home-insight-card:hover img { transform: scale(1.025); }
.home-insight-card:first-child > div { padding: 28px; }
.home-insight-card:not(:first-child) > div { padding: 4px 0; }
.home-insight-card > div > span, .home-insight-card time { color: var(--subtle); font-size: 12px; }
.home-insight-card time { float: right; }
.home-insight-card h3 { margin-top: 13px; }
.home-insight-card:not(:first-child) h3 { font-size: 20px; }
.home-insight-card p { color: var(--muted); }
.home-insight-card:not(:first-child) p { display: -webkit-box; overflow: hidden; font-size: 14px; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.home-faq .faq-list { max-width: 920px; }

.insights-hero { max-width: 900px; }
.insights-editorial { display: grid; gap: clamp(72px, 9vw, 116px); }
.insights-lead { display: grid; grid-template-columns: minmax(0, 1.32fr) minmax(320px, .68fr); gap: clamp(34px, 5vw, 66px); align-items: center; }
.insights-lead__image { display: block; overflow: hidden; aspect-ratio: 4 / 3; border-radius: 34px 34px 8px 34px; background: var(--surface-strong); box-shadow: var(--shadow); }
.insights-lead__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.16, 1, .3, 1); }
.insights-lead:hover .insights-lead__image img { transform: scale(1.025); }
.insights-lead__copy { padding-block: 30px; }
.insights-meta { display: flex; gap: 10px 18px; align-items: center; justify-content: space-between; color: var(--subtle); font-size: 12px; }
.insights-lead__label { margin: 54px 0 10px; color: var(--accent-deep); font-size: 11px; font-weight: 780; letter-spacing: .12em; }
.insights-lead h2 { max-width: 520px; font-size: clamp(31px, 3.2vw, 42px); text-align: left; }
.insights-lead__copy > p:not(.insights-lead__label) { margin-bottom: 26px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.insights-library { display: grid; grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr); gap: clamp(48px, 8vw, 112px); align-items: start; }
.insights-library__heading { position: sticky; top: calc(var(--header-height) + 34px); }
.insights-library__heading h2 { text-align: left; }
.insights-library__heading > p:last-child { max-width: 330px; color: var(--muted); }
.insights-list { border-top: 2px solid var(--text); }
.insights-row { display: grid; grid-template-columns: 168px minmax(0, 1fr) 44px; gap: 24px; align-items: center; padding: 22px 10px 22px 0; border-bottom: 1px solid var(--line); transition: background 180ms ease; }
.insights-row:hover { background: color-mix(in srgb, var(--accent-soft), transparent 34%); }
.insights-row__image { display: block; overflow: hidden; aspect-ratio: 4 / 3; border-radius: 14px; background: var(--surface-strong); }
.insights-row__image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.16, 1, .3, 1); }
.insights-row:hover .insights-row__image img { transform: scale(1.025); }
.insights-row__copy { min-width: 0; }
.insights-row h3 { display: -webkit-box; overflow: hidden; margin: 10px 0 8px; font-size: clamp(21px, 2vw, 27px); line-height: 1.34; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.insights-row p { display: -webkit-box; overflow: hidden; max-width: 650px; margin: 0; color: var(--muted); -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.insights-row__arrow { display: grid; width: 44px; height: 44px; place-items: center; align-self: center; border: 1px solid var(--line); border-radius: 50%; color: var(--accent-deep); font-size: 20px; transition: color 180ms ease, background 180ms ease, transform 180ms ease; }
.insights-row:hover .insights-row__arrow { background: var(--accent); color: #fff; transform: translate(2px, -2px); }

.article-shell { max-width: 960px; }
.article-header { max-width: 860px; margin: 0 auto; padding: clamp(40px, 4.4vw, 56px) 0 clamp(36px, 4vw, 48px); text-align: center; }
.article-header > p:not(.page-label) { color: var(--muted); font-size: 18px; }
.article-meta { display: flex; justify-content: center; gap: 12px 24px; flex-wrap: wrap; color: var(--subtle); font-size: 13px; }
.article-cover { width: min(880px, calc(100vw - clamp(64px, calc(30vw - 120px), 184px))); margin: 0 auto; overflow: hidden; aspect-ratio: 16 / 9; border: 1px solid rgba(16, 37, 52, .1); border-radius: 22px; background: var(--surface-strong); box-shadow: 0 18px 52px rgba(21, 68, 101, .1); }
.article-cover img { display: block; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
.article-answer { max-width: 760px; margin: 42px auto; padding: 26px 30px; border-left: 4px solid var(--accent); background: var(--surface); }
.article-answer strong { display: block; margin-bottom: 6px; color: var(--accent-deep); }
.article-answer p { margin: 0; color: var(--muted); }
.article-body { max-width: 760px; margin: 0 auto 80px; }
.article-body section { margin-top: 48px; }
.article-body h2 { font-size: 28px; text-align: left; }
.article-body p { color: var(--muted); font-size: 17px; line-height: 1.85; }
.article-checklist, .article-faq, .article-resources { max-width: 860px; margin-inline: auto; }
.article-checklist, .article-faq { margin-top: clamp(72px, 9vw, 108px); }
.article-checklist > h2, .article-faq > h2, .article-resources h2 { text-align: left; }
.article-checklist > h2, .article-faq > h2 { margin-bottom: 28px; font-size: clamp(28px, 3vw, 36px); }
.article-checklist ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 34px; margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--text); }
.article-checklist li { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 12px; padding: 24px 0 26px; border-bottom: 1px solid var(--line); }
.article-checklist li > span { color: var(--accent-deep); font-size: 13px; font-weight: 800; }
.article-checklist h3 { margin: 0 0 8px; font-size: 19px; }
.article-checklist p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.article-faq > div { border-top: 2px solid var(--text); }
.article-faq details { border-bottom: 1px solid var(--line); }
.article-faq summary { position: relative; padding: 24px 52px 24px 0; cursor: pointer; font-size: 18px; font-weight: 720; list-style: none; }
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq summary::after { position: absolute; top: 21px; right: 8px; content: "+"; color: var(--accent-deep); font-size: 24px; font-weight: 400; }
.article-faq details[open] summary::after { content: "−"; }
.article-faq details p { max-width: 720px; margin: -2px 52px 24px 0; color: var(--muted); font-size: 16px; line-height: 1.78; }
.article-resources { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(240px, .75fr); gap: 42px; margin-top: clamp(72px, 9vw, 108px); margin-bottom: 92px; padding: clamp(28px, 4vw, 42px); border-radius: var(--radius-card); background: var(--surface); }
.article-resources h2 { margin-bottom: 18px; font-size: 21px; }
.article-resources ol, .article-resources ul { margin: 0; padding: 0; list-style: none; }
.article-resources li + li { margin-top: 16px; }
.article-resources a { color: var(--text); font-weight: 700; text-decoration-color: color-mix(in srgb, var(--accent), transparent 48%); text-underline-offset: 4px; }
.article-resources a:hover { color: var(--accent-deep); }
.article-resources li > span { display: block; margin-top: 5px; color: var(--subtle); font-size: 12px; line-height: 1.55; }
.article-resources ul a { display: flex; gap: 12px; align-items: baseline; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--line); }

.about-hero,
.about-editorial-hero { max-width: 940px; }
.about-editorial-hero { padding-bottom: clamp(36px, 4vw, 48px); }
.about-editorial-hero > p:not(.page-label) { max-width: 700px; }

.about-company { display: grid; grid-template-columns: minmax(300px, .76fr) minmax(440px, 1.24fr); gap: clamp(48px, 7vw, 92px); align-items: center; padding-top: 18px; }
.about-company__intro { min-width: 0; }
.about-company__intro > .section-kicker { margin-bottom: 12px; }
.about-company__intro > h2 { margin: 0; text-align: left; }
.about-company__intro > div { margin-top: 28px; padding-top: 22px; border-top: 2px solid var(--text); }
.about-company__intro > div p { max-width: 720px; margin-bottom: 16px; color: var(--muted); font-size: 16px; line-height: 1.82; }
.about-company__intro > div p:first-child { color: var(--text); font-size: 18px; line-height: 1.78; }
.about-company__intro > div p:last-child { margin-bottom: 0; }
.about-office { min-width: 0; margin: 0; overflow: hidden; border: 1px solid rgba(16, 37, 52, .1); border-radius: 28px 28px 8px 28px; background: var(--surface-strong); box-shadow: 0 24px 64px rgba(21, 68, 101, .12); }
.about-office__image { display: block; aspect-ratio: 16 / 9; }
.about-office__image img { width: 100%; height: 100%; object-fit: cover; }

.about-purpose > .shell { display: grid; grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr); gap: clamp(48px, 8vw, 108px); align-items: start; }
.about-purpose__heading { position: sticky; top: calc(var(--header-height) + 32px); }
.about-purpose__heading h2 { margin-bottom: 0; text-align: left; }
.about-purpose__list { border-top: 2px solid var(--text); }
.about-purpose__item { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 22px; padding: 28px 0 30px; border-bottom: 1px solid var(--line); }
.about-purpose__item > span { padding-top: 4px; color: var(--accent-deep); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.about-purpose__item h3 { margin-bottom: 12px; color: var(--subtle); font-size: 14px; letter-spacing: .01em; }
.about-purpose__item strong { display: block; max-width: 690px; margin-bottom: 12px; font-size: clamp(21px, 2.25vw, 28px); font-weight: 690; letter-spacing: -.025em; line-height: 1.42; }
.about-purpose__item p { max-width: 710px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.78; }

.about-team { padding-top: 72px; }
.about-team__heading { display: grid; grid-template-columns: minmax(220px, .62fr) minmax(0, 1.38fr); gap: clamp(48px, 8vw, 108px); align-items: end; }
.about-team__heading h2 { margin-bottom: 0; text-align: left; }
.about-team__heading > p { max-width: 650px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.78; }
.about-team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 38px); align-items: start; margin-top: 42px; }
.about-person { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 0 20px; min-width: 0; padding: 23px 2px 0 0; border-top: 2px solid rgba(16, 37, 52, .88); }
.about-person__portrait { grid-column: 1; grid-row: 1; display: block; width: 112px; overflow: hidden; aspect-ratio: 1; border-radius: 24px 24px 7px 24px; background: var(--surface-strong); }
.about-person__portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-person__header { grid-column: 2; align-self: center; min-width: 0; }
.about-person__header h3 { margin-bottom: 5px; font-size: clamp(24px, 2.1vw, 29px); letter-spacing: -.025em; }
.about-person__header p { margin: 0; color: var(--accent-deep); font-size: 13px; font-weight: 740; letter-spacing: .02em; }
.about-person__education { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 5px 12px; align-items: baseline; margin: 20px 0 0; color: var(--text); font-size: 13px; font-weight: 620; line-height: 1.55; }
.about-person__education span { flex: none; color: var(--subtle); font-size: 10px; font-weight: 760; letter-spacing: .09em; }
.about-person__profile { grid-column: 1 / -1; max-width: 390px; margin: 9px 0 0; color: var(--muted); font-size: 14px; line-height: 1.72; }

.about-locations { margin-top: clamp(78px, 9vw, 116px); }
.about-locations__heading { display: grid; grid-template-columns: minmax(270px, .7fr) minmax(0, 1.3fr); gap: clamp(40px, 7vw, 88px); align-items: end; margin-bottom: 34px; }
.about-locations__heading .section-kicker { margin-bottom: 5px; }
.about-locations__heading h3 { max-width: 720px; margin: 0; font-size: clamp(30px, 3.2vw, 40px); letter-spacing: -.04em; line-height: 1.18; }
.about-locations__heading > p { max-width: 650px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.78; }
.about-team-map { position: relative; overflow: hidden; aspect-ratio: 16 / 9; border: 1px solid rgba(16, 37, 52, .1); border-radius: 32px 32px 10px 32px; background: #e9f2f7; box-shadow: 0 26px 74px rgba(28, 72, 101, .12); isolation: isolate; }
.about-team-map::after { position: absolute; z-index: 1; inset: 0; background: linear-gradient(105deg, rgba(246, 250, 252, .14), transparent 44%, rgba(210, 229, 240, .05)); content: ""; pointer-events: none; }
.about-team-map__base { position: absolute; z-index: 0; inset: 0; display: block; }
.about-team-map__base img { width: 100%; height: 100%; object-fit: contain; }
.about-team-map__network { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.about-team-map__network path { fill: none; stroke: rgba(0, 111, 194, .56); stroke-width: 1.4; stroke-dasharray: 2.5 5.5; vector-effect: non-scaling-stroke; }
.about-team-map__markers { position: absolute; z-index: 3; inset: 0; }
.about-map-location { position: absolute; left: calc(var(--map-x) * 100%); top: calc(var(--map-y) * 100%); width: 1px; height: 1px; }
.about-map-location__pin { position: absolute; left: 0; top: 0; width: 15px; height: 15px; border: 3px solid rgba(255, 255, 255, .96); border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 1px rgba(0, 95, 168, .4), 0 8px 22px rgba(0, 95, 168, .38); transform: translate(-50%, -50%); }
.about-map-location__pin::before { position: absolute; inset: -10px; border: 1px solid rgba(0, 120, 190, .4); border-radius: 50%; content: ""; animation: about-map-pulse 3.2s ease-out infinite; }
.about-map-location__card { position: absolute; width: 224px; padding: 16px 17px 17px; border: 1px solid rgba(16, 37, 52, .12); border-radius: 18px 18px 6px 18px; background: rgba(249, 252, 254, .93); box-shadow: 0 16px 38px rgba(31, 74, 103, .16); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.about-map-location--below .about-map-location__card { top: 21px; left: 0; transform: translateX(-50%); }
.about-map-location--left .about-map-location__card { top: 0; right: 21px; transform: translateY(-50%); }
.about-map-location--right .about-map-location__card { top: 0; left: 21px; transform: translateY(-50%); }
.about-map-location__meta { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 8px; color: var(--accent-deep); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.about-map-location__card h4 { margin: 0 0 3px; font-size: 17px; letter-spacing: -.018em; line-height: 1.35; }
.about-map-location__card > p { margin: 0; color: var(--muted); font-size: 11px; font-weight: 670; line-height: 1.5; }
.about-map-location__card ul { display: flex; flex-wrap: wrap; gap: 5px; margin: 11px 0 0; padding: 0; list-style: none; }
.about-map-location__card li { padding: 4px 7px; border-radius: 999px; background: rgba(0, 95, 168, .07); color: var(--muted); font-size: 9px; font-weight: 650; line-height: 1.2; }

@keyframes about-map-pulse {
  0%, 25% { opacity: .75; transform: scale(.72); }
  70%, 100% { opacity: 0; transform: scale(1.38); }
}
.contact-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(480px, 1.28fr); gap: 44px; align-items: start; }
.contact-context > ul { display: grid; gap: 12px; margin: 26px 0 38px; padding: 0; list-style: none; }
.contact-context > ul li { padding-left: 18px; position: relative; color: var(--muted); }
.contact-context > ul li::before { content: ""; position: absolute; left: 0; top: .78em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.form-panel { padding: clamp(26px, 4vw, 42px); border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); box-shadow: var(--shadow); }
.form-panel > p { color: var(--muted); }
.lead-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 30px; }
.form-field { display: grid; gap: 7px; }
.form-field--wide, .lead-form > .button, .form-status { grid-column: 1 / -1; }
.form-field label { font-weight: 680; }
.form-field label span { color: var(--accent-deep); }
.form-field input, .form-field textarea { width: 100%; border: 1px solid var(--line); border-radius: var(--radius-control); background: var(--bg); color: var(--text); padding: 13px 14px; }
.form-field input { min-height: 48px; }
.form-field textarea { resize: vertical; min-height: 150px; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--accent); outline: 3px solid color-mix(in srgb, var(--accent), transparent 75%); }
.field-help, .field-error { min-height: 18px; margin: 0; font-size: 12px; line-height: 1.5; }
.field-help { color: var(--subtle); }
.field-error { color: #b53131; }
.lead-form > .button { justify-self: start; border: 0; cursor: pointer; }
.lead-form > .button[disabled] { cursor: wait; opacity: .65; transform: none; }
.form-status { min-height: 24px; margin: 0; font-size: 14px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.legal-copy { max-width: 820px; padding-bottom: 90px; }
.legal-copy section { margin-top: 44px; }
.legal-copy h2 { font-size: 25px; text-align: left; }
.legal-copy p { color: var(--muted); font-size: 16px; line-height: 1.85; }
.not-found { min-height: calc(100dvh - var(--header-height)); display: grid; place-content: center; justify-items: center; padding: 60px 0; text-align: center; }
.not-found > span { color: var(--accent); font-size: clamp(74px, 16vw, 170px); font-weight: 760; letter-spacing: -0.08em; line-height: .9; }
.not-found p { color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); padding: 58px 0 24px; background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: minmax(250px, .9fr) minmax(540px, 1.1fr); gap: 50px; }
.footer-brand p { max-width: 320px; margin-top: 22px; color: var(--muted); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-links div { display: grid; align-content: start; gap: 8px; }
.footer-links h2 { margin-bottom: 9px; font-size: 14px; text-align: left; }
.footer-links a { color: var(--muted); font-size: 14px; }
.footer-links a:hover { color: var(--accent-deep); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--subtle); font-size: 12px; }

.reveal { opacity: 1; transform: none; }
.js .reveal:not(.is-visible) { transform: translateY(14px); }
.js .reveal { transition: transform 520ms cubic-bezier(.16,1,.3,1); }

@media (max-width: 1040px) {
  :root { --shell: min(100% - 36px, 920px); }
  .solution-card--1, .case-card--1 { grid-column: 1 / -1; }
  .solution-card--2, .solution-card--3, .case-card--2, .case-card--3 { grid-column: span 6; display: block; }
  .solution-card--2 picture, .solution-card--3 picture, .case-card--2 .case-card__image, .case-card--3 .case-card__image { height: auto; aspect-ratio: 16 / 10; }
  .tech-story { grid-template-columns: 1fr; }
  .tech-story__visual { aspect-ratio: 16 / 9; }
  .tech-platform { grid-template-columns: 1fr; }
  .tech-platform__visual { min-height: 0; aspect-ratio: 16 / 9; }
  .tech-platform__brief { border-top: 1px solid var(--line); border-left: 0; }
  .tech-platform__index { margin-bottom: 26px; }
  .tech-layer-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tech-layer-item + .tech-layer-item { border-left: 0; }
  .tech-layer-item:nth-child(even) { border-left: 1px solid var(--line); }
  .tech-layer-item:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .tech-layer-item:last-child { grid-column: 1 / -1; }
  .detail-hero { grid-template-columns: 1fr; text-align: center; }
  .detail-hero h1, .detail-hero > div > p { margin-inline: auto; }
  .audience-layout { grid-template-columns: 1fr; }
  .insights-library { grid-template-columns: 1fr; gap: 34px; }
  .insights-library__heading { position: static; }
  .insights-library__heading > p:last-child { max-width: 620px; }
  .insights-row { grid-template-columns: 200px minmax(0, 1fr) 44px; }
  .about-company,
  .about-purpose > .shell,
  .about-team__heading { gap: 48px; }
  .about-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-header__inner { grid-template-columns: max-content minmax(0, 1fr) max-content; gap: clamp(10px, 1.8vw, 16px); }
  .site-nav { width: 100%; min-width: 0; }
  .site-nav ul { justify-content: center; gap: clamp(12px, 2vw, 18px); }
  .site-nav a { font-size: 14px; }
  .header-contact { min-height: 42px; padding-inline: 15px; font-size: 13px; }
  .menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-3.5px) rotate(-45deg); }
  .home-hero { padding-top: 14px; }
  .home-hero__stage { width: calc(100vw - 20px); min-height: 600px; }
  .home-hero__copy { min-height: 600px; width: calc(100% - 64px); }
  .section { padding-block: 64px; }
  .tech-carousel__slide { grid-template-columns: 1fr; }
  .tech-carousel__visual { aspect-ratio: 8 / 5; }
  .tech-carousel__copy { border-top: 1px solid var(--line); border-left: 0; }
  .tech-carousel__counter { margin-bottom: 28px; }
  .custom-applications__heading { grid-template-columns: 1fr; gap: 18px; }
  .custom-applications__heading .section-kicker { grid-column: auto; }
  .custom-applications__list,
  .technology-applications-page__grid { grid-template-columns: 1fr; }
  .custom-applications__list article + article,
  .technology-applications-page__grid article + article { border-top: 1px solid rgba(16, 37, 52, .13); border-left: 0; }
  .custom-applications__list span,
  .technology-applications-page__grid span { margin-bottom: 24px; }
  .solution-card--2, .solution-card--3, .case-card--2, .case-card--3 { grid-column: 1 / -1; }
  .solution-row, .solution-row:nth-child(even) { grid-template-columns: 1fr; }
  .solution-row:nth-child(even) picture { order: 0; }
  .capability-grid article, .capability-grid article:nth-child(1), .capability-grid article:nth-child(2) { grid-column: span 6; }
  .layer-grid > article, .layer-grid > article:nth-child(1), .layer-grid > article:nth-child(2) { grid-column: span 6; }
  .deployment-grid { grid-template-columns: 1fr; }
  .case-index-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .insights-lead { grid-template-columns: 1fr; gap: 28px; }
  .insights-lead__image { aspect-ratio: 16 / 10; }
  .insights-lead__copy { max-width: 720px; padding: 0; }
  .insights-lead__label { margin-top: 28px; }
  .home-insight-card, .home-insight-card:first-child { grid-column: 1 / -1; }
  .about-company { grid-template-columns: minmax(0, 1fr); gap: 30px; align-items: start; }
  .about-company__intro > div { margin-top: 24px; }
  .about-office { border-radius: 24px 24px 7px 24px; }
  .about-purpose > .shell { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .about-purpose__heading { position: static; }
  .about-team__heading { grid-template-columns: minmax(0, 1fr); gap: 16px; align-items: start; }
  .about-team__heading > p { max-width: 680px; }
  .about-locations__heading { grid-template-columns: minmax(0, 1fr); gap: 10px; margin-bottom: 28px; }
  .about-locations__heading h3 { max-width: 620px; }
  .about-locations__heading > p { max-width: 680px; }
  .about-team-map { border-radius: 26px 26px 8px 26px; }
  .about-map-location__card { width: 184px; padding: 13px 14px 14px; }
  .about-map-location--below .about-map-location__card { top: 17px; }
  .about-map-location--left .about-map-location__card { right: 17px; }
  .about-map-location--right .about-map-location__card { left: 17px; }
  .about-map-location__card h4 { font-size: 15px; }
  .about-map-location__card ul { display: none; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .site-header__inner { grid-template-columns: 1fr auto; gap: 16px; }
  .site-header__actions { grid-column: 2; }
  .header-contact { display: none; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    width: auto;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    justify-self: stretch;
    border-bottom: 1px solid transparent;
    background: var(--bg);
    transition: max-height 240ms ease, border-color 240ms ease, visibility 0s linear 240ms;
  }
  .site-nav.is-open {
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: visible;
    pointer-events: auto;
    border-color: var(--line);
    transition-delay: 0s;
  }
  .site-nav ul { display: grid; width: var(--shell); margin-inline: auto; padding: 18px 0 28px; border: 0; border-radius: 0; background: transparent; box-shadow: none; gap: 4px; }
  .site-nav a { width: 100%; min-height: 48px; justify-content: flex-start; padding-inline: 16px; font-size: 16px; }
  .site-nav a::after { right: auto; bottom: 5px; left: 16px; width: 24px; }
  .site-nav__mobile-action { display: block; }
  .site-nav .nav-cta { width: fit-content; margin-top: 8px; padding-inline: 22px; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100vw - 28px); --header-height: 66px; }
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  .site-header__inner { min-height: var(--header-height); }
  .brand img { width: 30px; height: 34px; }
  .home-hero { padding: 10px 0 24px; }
  .home-hero__stage { min-height: 690px; border-radius: 0 0 28px 28px; }
  .home-hero__stage::after { background: linear-gradient(180deg, #edf7fd 0%, rgba(237, 247, 253, .98) 45%, rgba(237, 247, 253, .72) 54%, transparent 74%); }
  .home-hero__copy { display: block; min-height: 0; width: calc(100% - 40px); padding-top: 44px; }
  .home-hero__eyebrow { margin-bottom: 18px !important; font-size: 10px !important; }
  .home-hero__copy h1 { margin-bottom: 18px; }
  .home-hero__copy > p:not(.home-hero__eyebrow) { margin-bottom: 22px; font-size: 15px; line-height: 1.72; }
  .home-hero__visual { inset: auto 0 0; height: 340px; }
  .home-hero__visual img { object-position: center 42%; }
  .section { padding-block: 56px; }
  .section-heading { margin-bottom: 30px; }
  .section-heading p { font-size: 16px; }
  .tech-carousel { margin-top: 30px; }
  .tech-carousel__viewport { border-radius: 22px; }
  .tech-carousel__visual { aspect-ratio: 8 / 5; }
  .tech-carousel__copy { padding: 27px 23px 31px; }
  .tech-carousel__copy h3 { font-size: 27px; }
  .tech-carousel__copy > p { margin-bottom: 22px; font-size: 15px; }
  .tech-carousel__controls { gap: 13px; margin-top: 18px; }
  .tech-carousel__controls > button { width: 42px; height: 42px; }
  .custom-applications { margin-top: 58px; padding-top: 52px; }
  .custom-applications__heading h3 { font-size: 31px; }
  .custom-applications__heading > p:last-child { font-size: 16px; }
  .custom-applications__list { margin-top: 30px; }
  .custom-applications__list article { padding: 25px 20px 28px; }
  .technology-applications-page__grid { border-radius: 20px; }
  .button-row { display: grid; }
  .button-row .button { width: 100%; }
  .solution-bento, .case-bento { gap: 16px; }
  .solution-card--1, .solution-card--2, .solution-card--3, .case-card--1, .case-card--2, .case-card--3 { grid-column: 1 / -1; display: block; }
  .solution-card picture, .solution-card--1 picture, .case-card__image, .case-card--1 .case-card__image { height: auto; aspect-ratio: 16 / 10; }
  .tech-story { gap: 18px; }
  .home-insight-grid { gap: 18px; }
  .home-insight-card:not(:first-child) { display: block; padding: 0; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--bg); }
  .home-insight-card:not(:first-child) .home-insight-card__image { aspect-ratio: 16 / 9; border-radius: 0; }
  .home-insight-card:not(:first-child) > div { padding: 24px; }
  .insights-editorial { gap: 64px; }
  .insights-lead__image { border-radius: 24px 24px 7px 24px; }
  .insights-row { grid-template-columns: 180px minmax(0, 1fr) 42px; gap: 18px; padding: 20px 0; }
  .insights-row:hover { background: transparent; }
  .insights-row p { font-size: 14px; }
  .insights-row__arrow { width: 38px; height: 38px; }
  .home-contact__inner { min-height: 430px; }
  .home-contact__inner,
  .inline-cta__inner { padding-inline: 24px; background-image: linear-gradient(rgba(241, 249, 253, .75), rgba(222, 241, 251, .7)), url("/assets/generated/contact-cta-mobile.webp"); }
  .proof-stack article, .proof-stack > a { padding: 17px; }
  .tech-layer-rail { grid-template-columns: 1fr; }
  .tech-layer-item, .tech-layer-item:nth-child(even), .tech-layer-item:nth-child(n + 3) { grid-column: auto; border-top: 1px solid var(--line); border-left: 0; }
  .tech-layer-item:first-child { border-top: 0; }
  .tech-layer-item > span { margin-bottom: 20px; }
  .page-hero { padding: 54px 0 42px; }
  .page-hero > p:not(.page-label), .detail-hero > div > p:not(.page-label), .case-detail-hero p, .article-header > p:not(.page-label) { font-size: 16px; }
  .detail-hero { gap: 28px; padding: 38px 0 48px; }
  .capability-grid article, .capability-grid article:nth-child(1), .capability-grid article:nth-child(2), .layer-grid > article, .layer-grid > article:nth-child(1), .layer-grid > article:nth-child(2) { grid-column: 1 / -1; }
  .audience-layout ul { grid-template-columns: 1fr; }
  .delivery-list { grid-template-columns: 1fr; }
  .delivery-list article:last-child { grid-column: auto; }
  .case-facts > * { grid-column: 1 / -1; padding: 24px; }
  .verified-metrics > div { gap: 18px; flex-wrap: wrap; }
  .article-header { padding-top: 48px; }
  .article-meta { display: grid; gap: 4px; }
  .article-cover { aspect-ratio: 16 / 9; border-radius: 20px; }
  .article-cover img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
  .article-answer { margin-block: 34px; padding: 22px 20px; }
  .article-body h2 { font-size: 25px; }
  .article-body p { font-size: 16px; }
  .article-checklist,
  .article-faq { margin-top: 64px; }
  .article-checklist > h2,
  .article-faq > h2 { margin-bottom: 22px; font-size: 28px; }
  .article-checklist ol { grid-template-columns: 1fr; }
  .article-checklist li { grid-template-columns: 34px minmax(0, 1fr); gap: 10px; padding-block: 21px 23px; }
  .article-checklist h3 { font-size: 18px; }
  .article-faq summary { padding: 21px 42px 21px 0; font-size: 17px; }
  .article-faq summary::after { top: 18px; right: 3px; }
  .article-faq details p { margin: -1px 28px 22px 0; font-size: 15px; }
  .article-resources { grid-template-columns: 1fr; gap: 34px; margin-top: 64px; margin-bottom: 66px; padding: 24px 20px; }
  .article-resources h2 { font-size: 20px; }
  .about-editorial-hero { padding-bottom: 34px; }
  .about-company { padding-top: 10px; }
  .about-company__intro > div { margin-top: 24px; padding-top: 18px; }
  .about-company__intro > div p,
  .about-company__intro > div p:first-child { font-size: 16px; line-height: 1.76; }
  .about-purpose__item { grid-template-columns: 40px minmax(0, 1fr); gap: 10px; padding: 23px 0 25px; }
  .about-purpose__item strong { font-size: 20px; line-height: 1.48; }
  .about-purpose__item p { font-size: 14px; }
  .about-team-grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .about-person { grid-template-columns: 100px minmax(0, 1fr); gap: 0 17px; padding-top: 20px; }
  .about-person__portrait { width: 100px; border-radius: 21px 21px 6px 21px; }
  .about-person__header h3 { font-size: 24px; }
  .about-person__education { margin-top: 18px; }
  .about-person__profile { max-width: none; font-size: 13px; }
  .about-locations { margin-top: 62px; }
  .about-locations__heading h3 { font-size: 30px; }
  .about-team-map { border-radius: 22px 22px 7px 22px; box-shadow: 0 18px 44px rgba(28, 72, 101, .1); }
  .about-team-map__network path { stroke-width: 1; }
  .about-map-location__pin { width: 11px; height: 11px; border-width: 2px; }
  .about-map-location__pin::before { inset: -7px; }
  .about-map-location__card { width: 100px; padding: 7px 8px 8px; border-radius: 11px 11px 4px 11px; box-shadow: 0 8px 20px rgba(31, 74, 103, .14); }
  .about-map-location--below .about-map-location__card { top: 9px; }
  .about-map-location--left .about-map-location__card { right: 9px; transform: translateY(-22%); }
  .about-map-location--right .about-map-location__card { left: 9px; transform: translateY(-10%); }
  .about-map-location__meta { display: none; }
  .about-map-location__card h4 { margin-bottom: 2px; font-size: 11px; line-height: 1.25; }
  .about-map-location__card > p { font-size: 8px; line-height: 1.35; }
  .lead-form { grid-template-columns: 1fr; }
  .form-field, .form-field--wide, .lead-form > .button, .form-status { grid-column: 1; }
  .lead-form > .button { width: 100%; }
  .footer-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-links > div { min-width: 0; }
  .footer-links a { overflow-wrap: anywhere; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .js .reveal:not(.is-visible) { opacity: 1; transform: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; }
}

@media print {
  .site-header, .site-footer, .inline-cta, .home-contact, .button { display: none !important; }
  body { background: #f7fbfe; color: #102534; }
  .article-body { max-width: none; }
}

/* Editorial solution, case and technology detail pages */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.solution-editorial-hero,
.case-editorial-hero,
.technology-editorial-hero {
  max-width: 980px;
  padding: clamp(40px, 4.4vw, 56px) 0 clamp(36px, 4vw, 48px);
  text-align: center;
}

.solution-editorial-hero h1,
.case-editorial-hero h1,
.technology-editorial-hero h1 {
  max-width: 920px;
  margin-inline: auto;
  font-size: clamp(40px, 5.4vw, 68px);
  letter-spacing: -.058em;
  line-height: 1.06;
}

.solution-editorial-hero__lead,
.case-editorial-hero > p:not(.page-label),
.technology-editorial-hero > p:not(.page-label) {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.82;
}

.solution-editorial-hero__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.solution-editorial-hero__actions .text-link span {
  transform: translateY(1px);
}

.solution-editorial-media,
.case-editorial-media,
.technology-editorial-media {
  position: relative;
  width: min(1400px, calc(100vw - 48px));
  overflow: hidden;
  border: 1px solid rgba(16, 37, 52, .11);
  border-radius: 32px;
  background: #e5eef4;
  box-shadow: 0 34px 90px rgba(21, 68, 101, .16);
  isolation: isolate;
}

.solution-editorial-media::after,
.case-editorial-media::after,
.technology-editorial-media::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .34);
  content: "";
  pointer-events: none;
}

.solution-editorial-media picture,
.case-editorial-media picture,
.technology-editorial-media picture {
  display: block;
  aspect-ratio: 16 / 9;
}

.solution-editorial-media img,
.case-editorial-media img,
.technology-editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-anchor-nav {
  position: sticky;
  top: calc(var(--header-height) + 12px);
  z-index: 16;
  display: flex;
  width: fit-content;
  max-width: calc(100vw - 32px);
  justify-content: center;
  gap: 3px;
  margin-top: 26px;
  padding: 5px;
  overflow-x: auto;
  border: 1px solid rgba(16, 37, 52, .11);
  border-radius: 999px;
  background: rgba(244, 248, 251, .88);
  box-shadow: 0 14px 38px rgba(21, 68, 101, .11);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  scrollbar-width: none;
}

.detail-anchor-nav::-webkit-scrollbar { display: none; }

.detail-anchor-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease;
}

.detail-anchor-nav a:hover,
.detail-anchor-nav a:focus-visible {
  background: #fff;
  color: var(--accent-deep);
}

#overview,
#capabilities,
#workflow,
#architecture,
#faq {
  scroll-margin-top: calc(var(--header-height) + 88px);
}

.solution-overview {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(40px, 7vw, 94px);
  align-items: start;
  padding-top: clamp(86px, 9vw, 124px);
}

.solution-overview__intro {
  grid-column: 1 / span 7;
}

.solution-overview__intro h2 {
  max-width: 720px;
  font-size: clamp(36px, 4.2vw, 54px);
  letter-spacing: -.05em;
}

.solution-overview__intro > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.solution-facts {
  grid-column: 9 / -1;
  margin: 4px 0 0;
  border-top: 2px solid var(--text);
}

.solution-facts > div {
  display: grid;
  grid-template-columns: minmax(84px, .34fr) 1fr;
  gap: 20px;
  padding: 20px 0 22px;
  border-bottom: 1px solid var(--line);
}

.solution-facts dt,
.solution-facts--fallback > p {
  color: var(--subtle);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
}

.solution-facts dd {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.7;
}

.solution-facts--fallback {
  padding-top: 20px;
}

.solution-facts--fallback ul {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.solution-facts--fallback li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.solution-editorial-split,
.case-editorial-split,
.technology-editorial-split {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: start;
}

.solution-editorial-split__sticky,
.case-editorial-split__sticky,
.technology-editorial-split__sticky {
  position: sticky;
  top: calc(var(--header-height) + 94px);
}

.solution-editorial-split__sticky h2,
.case-editorial-split__sticky h2,
.technology-editorial-split__sticky h2 {
  font-size: clamp(34px, 3.9vw, 48px);
}

.solution-editorial-split__sticky > p:last-child,
.case-editorial-split__sticky > p:last-child,
.technology-editorial-split__sticky > p:last-child {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.solution-module-list,
.case-module-list,
.technology-layer-list {
  border-top: 2px solid var(--text);
}

.solution-module,
.case-module,
.technology-layer {
  display: grid;
  grid-template-columns: clamp(72px, 9vw, 116px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  padding: clamp(34px, 5vw, 58px) 0;
  border-bottom: 1px solid var(--line);
}

.solution-module__number,
.case-module > span,
.technology-layer > span {
  color: rgba(0, 95, 168, .29);
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 330;
  letter-spacing: -.07em;
  line-height: .88;
}

.solution-module h3,
.case-module h3,
.technology-layer h3 {
  font-size: clamp(23px, 2.5vw, 31px);
  letter-spacing: -.035em;
}

.solution-module__description,
.case-module p,
.technology-layer p {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.solution-module__features,
.case-module ul,
.technology-layer ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.solution-module__features li,
.case-module li,
.technology-layer li {
  position: relative;
  padding: 13px 0 13px 17px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.solution-module__features li::before,
.case-module li::before,
.technology-layer li::before {
  position: absolute;
  top: 1.35em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.solution-module__io {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 26px 0 0;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(16, 37, 52, .1);
}

.solution-module__io > div {
  min-width: 0;
  padding: 17px 18px;
  background: rgba(255, 255, 255, .66);
}

.solution-module__io dt {
  margin-bottom: 5px;
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.solution-module__io dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.solution-workflow,
.case-workflow,
.technology-runtime {
  overflow: hidden;
}

.editorial-flow {
  --flow-columns: 5;
  display: grid;
  grid-template-columns: repeat(var(--flow-columns), minmax(0, 1fr));
  margin: 54px 0 0;
  padding: 0;
  border-top: 1px solid rgba(16, 37, 52, .24);
  list-style: none;
}

.editorial-flow li {
  position: relative;
  min-width: 0;
  padding: 34px 24px 0 0;
}

.editorial-flow li::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 3px solid var(--bg);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
  content: "";
}

.section--tint .editorial-flow li::before {
  border-color: var(--surface);
}

.editorial-flow li > span {
  display: block;
  margin-bottom: 32px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
}

.editorial-flow h3 {
  max-width: 170px;
  font-size: 18px;
}

.editorial-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.editorial-flow--case,
.editorial-flow--technology {
  --flow-columns: 5;
}

.solution-architecture {
  background:
    radial-gradient(circle at 84% 12%, rgba(91, 211, 251, .16), transparent 30%),
    linear-gradient(180deg, #edf5f9, #f4f8fb 70%);
}

.solution-architecture__heading {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 44px;
}

.solution-architecture__heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -52px;
}

.solution-architecture__heading h2 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 52px);
}

.solution-architecture__heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.architecture-band {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: clamp(46px, 7vw, 90px);
  padding: clamp(36px, 5.5vw, 66px);
  overflow: hidden;
  border: 1px solid rgba(0, 95, 168, .14);
  border-radius: 30px;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, .92), rgba(222, 240, 250, .9)),
    #e4f1f8;
  box-shadow: 0 24px 70px rgba(21, 68, 101, .11);
}

.architecture-band__lead h3 {
  font-size: clamp(27px, 3.2vw, 38px);
}

.architecture-band__lead p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.architecture-band__items {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--text);
  list-style: none;
}

.architecture-band__items li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(16, 37, 52, .14);
}

.architecture-band__items li > span {
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
}

.architecture-band__items h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.architecture-band__items p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.solution-governance-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px 44px;
  margin-top: 60px;
}

.solution-governance-block {
  grid-column: span 6;
  padding-top: 26px;
  border-top: 2px solid var(--text);
}

.solution-governance-block--wide {
  grid-column: 3 / -1;
  margin-top: 16px;
}

.solution-governance-block h3 {
  margin-bottom: 24px;
  font-size: 27px;
}

.solution-governance-block ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-governance-block li {
  display: grid;
  grid-template-columns: minmax(130px, .38fr) 1fr;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.solution-governance-block li strong {
  font-size: 14px;
}

.solution-governance-block li span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.solution-foundation {
  display: grid;
  grid-template-columns: minmax(150px, .45fr) minmax(240px, .8fr) minmax(0, 1.25fr);
  gap: 34px;
  align-items: start;
  margin-top: 60px;
  padding: 34px 38px;
  border: 1px solid rgba(0, 95, 168, .13);
  border-radius: 22px;
  background: rgba(255, 255, 255, .64);
}

.solution-foundation > div h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.solution-foundation > div p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.solution-foundation > ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-foundation > ul li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.solution-foundation > ul span {
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 750;
}

.solution-foundation > ul small {
  grid-column: 1 / -1;
  color: var(--subtle);
  font-size: 11px;
}

.faq-list--editorial {
  max-width: 920px;
}

.faq-list--editorial summary {
  padding-block: 26px;
}

.case-editorial-hero {
  max-width: 1050px;
}

.case-editorial-hero h1 {
  max-width: 1000px;
}

figure.case-editorial-media { margin-block: 0; }

.case-editorial-media__caption {
  position: relative;
  z-index: 1;
  padding: 13px 18px 14px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.case-overview {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px 56px;
  align-items: start;
}

.case-overview__statement {
  grid-column: 1 / span 5;
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.case-overview__statement h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.case-overview__status {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 6px 10px;
  border: 1px solid rgba(0, 95, 168, .16);
  border-radius: 999px;
  background: rgba(216, 238, 251, .58);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 720;
}

.case-overview__statement > p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.case-overview__context {
  grid-column: 7 / -1;
  border-top: 2px solid var(--text);
}

.case-overview__context article {
  padding: 26px 0 30px;
  border-bottom: 1px solid var(--line);
}

.case-overview__context h3 {
  font-size: 21px;
}

.case-overview__context p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.case-metrics {
  padding: 28px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .38), transparent 30%, rgba(91, 211, 251, .08)),
    #dceef8;
}

.case-metrics > .shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-metric {
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: 28px 34px;
  text-align: center;
}

.case-metric + .case-metric {
  border-left: 1px solid rgba(16, 37, 52, .14);
}

.case-metric strong {
  color: var(--accent-deep);
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 430;
  letter-spacing: -.065em;
  line-height: 1;
}

.case-metric span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.case-results__heading {
  max-width: 860px;
  padding-bottom: 42px;
}

.case-results__heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.case-public-note__inner {
  max-width: 920px;
  padding: 30px 34px;
  border-left: 3px solid var(--accent);
  background: linear-gradient(100deg, rgba(232, 244, 251, .72), rgba(255, 255, 255, .15));
}

.case-public-note__inner h2 { font-size: clamp(30px, 3.2vw, 40px); }
.case-public-note__inner > p:last-of-type { margin-bottom: 0; color: var(--muted); line-height: 1.78; }
.case-public-note__inner ul { margin: 18px 0 0; padding-left: 20px; color: var(--muted); }

.case-outcomes {
  background:
    radial-gradient(circle at 90% 20%, rgba(91, 211, 251, .18), transparent 26%),
    #e8f1f6;
}

.case-outcomes__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr);
  gap: clamp(52px, 6.5vw, 88px);
  align-items: start;
}

.case-deliverables {
  grid-column: 1;
  min-width: 0;
}

.case-deliverables h2,
.case-value h2 {
  font-size: clamp(34px, 3.8vw, 46px);
}

.case-deliverables > ol {
  margin: 34px 0 0;
  padding: 0;
  border-top: 2px solid var(--text);
  list-style: none;
}

.case-deliverables > ol li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.case-deliverables > ol li > span {
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
}

.case-deliverables h3 {
  margin-bottom: 5px;
  font-size: 20px;
}

.case-deliverables p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.case-value {
  grid-column: 2;
  min-width: 0;
  position: sticky;
  top: calc(var(--header-height) + 32px);
  padding: 30px 0 34px 32px;
  border-left: 3px solid var(--accent);
}

.case-value:only-child {
  grid-column: 1 / -1;
  width: min(100%, 760px);
  justify-self: end;
}

.case-deliverables:only-child {
  grid-column: 1 / -1;
}

.case-value > p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.82;
}

.case-value ul {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.case-value li {
  position: relative;
  padding: 12px 0 12px 17px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
}

.case-value li::before {
  position: absolute;
  top: 1.25em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.case-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.case-gallery figure {
  grid-column: span 7;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface-strong);
  box-shadow: 0 20px 54px rgba(21, 68, 101, .11);
}

.case-gallery figure:nth-child(2n) {
  grid-column: span 5;
  margin-top: 74px;
}

.case-gallery figure:nth-child(3n) {
  grid-column: 3 / span 8;
  margin-top: -18px;
}

.case-gallery figure:only-child {
  grid-column: 2 / span 10;
  margin-top: 0;
}

.case-gallery picture {
  display: block;
  aspect-ratio: 3 / 2;
}

.case-gallery figure:nth-child(2n) picture {
  aspect-ratio: 4 / 5;
}

.case-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.technology-editorial-hero {
  max-width: 1040px;
}

.technology-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.technology-principles > div {
  min-width: 0;
  padding: 24px 26px;
}

.technology-principles > div + div {
  border-left: 1px solid var(--line);
}

.technology-principles span {
  display: block;
  margin-bottom: 30px;
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.technology-principles p {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.technology-principles small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.technology-quality {
  background:
    radial-gradient(circle at 15% 80%, rgba(91, 211, 251, .15), transparent 30%),
    #e8f1f6;
}

.technology-quality__layout {
  display: grid;
  grid-template-columns: minmax(270px, .78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.technology-quality__layout > header {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.technology-quality__layout > header h2 {
  font-size: clamp(35px, 4vw, 50px);
}

.technology-quality__layout > header > p:last-child {
  color: var(--muted);
  line-height: 1.84;
}

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

.technology-quality__steps li {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 22px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.technology-quality__steps li > span {
  color: rgba(0, 95, 168, .38);
  font-size: 27px;
  font-weight: 430;
  letter-spacing: -.04em;
}

.technology-quality__steps h3 {
  margin-bottom: 5px;
  font-size: 21px;
}

.technology-quality__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.technology-integrations {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 52px;
}

.technology-integrations__heading {
  grid-column: 1 / span 5;
}

.technology-integrations__heading h2 {
  font-size: clamp(35px, 4vw, 50px);
}

.technology-integrations__heading > p:last-child {
  color: var(--muted);
  line-height: 1.84;
}

.technology-integrations__list {
  grid-column: 7 / -1;
  border-top: 2px solid var(--text);
}

.technology-integrations__list article {
  display: grid;
  grid-template-columns: 48px minmax(130px, .62fr) 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.technology-integrations__list article > span {
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 800;
}

.technology-integrations__list h3 {
  font-size: 18px;
}

.technology-integrations__list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.technology-integrations__list li {
  padding: 5px 9px;
  border-radius: 7px;
  background: rgba(216, 238, 251, .7);
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 650;
}

.technology-delivery__list {
  max-width: 980px;
  margin: 50px auto 0;
  padding: 0;
  border-top: 2px solid var(--text);
  list-style: none;
}

.technology-delivery__list li {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 26px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.technology-delivery__list li > span {
  color: rgba(0, 95, 168, .38);
  font-size: 29px;
  font-weight: 420;
  letter-spacing: -.05em;
}

.technology-delivery__list h3 {
  margin-bottom: 4px;
  font-size: 21px;
}

.technology-delivery__list p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.technology-delivery__list small {
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 680;
}

.technology-deployment {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(46px, 7vw, 92px);
  align-items: start;
}

.technology-deployment__heading {
  grid-column: 1 / span 5;
}

.technology-deployment__heading h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.technology-deployment__heading > p:last-child {
  color: var(--muted);
  line-height: 1.82;
}

.technology-deployment__modes {
  grid-column: 7 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.technology-deployment__modes article {
  min-height: 220px;
  padding: 26px;
  background: rgba(237, 243, 247, .94);
}

.technology-deployment__modes article:first-child {
  grid-column: 1 / -1;
  min-height: 190px;
  background: linear-gradient(125deg, #f6fbfe, #dfedf6);
}

.technology-deployment__modes span {
  display: block;
  margin-bottom: 46px;
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 800;
}

.technology-deployment__modes h3 {
  font-size: 21px;
}

.technology-deployment__modes p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.solution-capabilities,
.case-modules,
.technology-layers,
.technology-delivery {
  position: relative;
  overflow: clip;
}

.solution-module__body {
  min-width: 0;
}

.case-overview__facts {
  grid-column: 7 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 2px solid var(--text);
}

.case-overview__facts > div {
  min-width: 0;
  padding: 18px 20px 20px 0;
  border-bottom: 1px solid var(--line);
}

.case-overview__facts > div:nth-child(even) {
  padding-right: 0;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.case-overview__facts dt {
  margin-bottom: 5px;
  color: var(--subtle);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .08em;
}

.case-overview__facts dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.62;
}

@media (max-width: 960px) {
  .solution-editorial-media,
  .case-editorial-media,
  .technology-editorial-media {
    width: min(100% - 28px, 920px);
    border-radius: 24px;
  }

  .solution-overview {
    gap: 44px;
  }

  .solution-overview__intro {
    grid-column: 1 / span 7;
  }

  .solution-facts {
    grid-column: 8 / -1;
  }

  .solution-editorial-split,
  .case-editorial-split,
  .technology-editorial-split {
    grid-template-columns: minmax(220px, .62fr) minmax(0, 1.38fr);
    gap: 48px;
  }

  .solution-editorial-split__sticky,
  .case-editorial-split__sticky,
  .technology-editorial-split__sticky {
    top: calc(var(--header-height) + 78px);
  }

  .solution-module,
  .case-module,
  .technology-layer {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 22px;
  }

  .editorial-flow {
    --flow-columns: 3;
    gap: 36px 0;
  }

  .editorial-flow li:nth-child(n + 4) {
    border-top: 1px solid rgba(16, 37, 52, .24);
  }

  .solution-architecture__heading,
  .architecture-band {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .solution-architecture__heading .section-kicker {
    margin-bottom: -18px;
  }

  .solution-governance-block--wide {
    grid-column: 1 / -1;
  }

  .solution-foundation {
    grid-template-columns: .65fr 1.35fr;
  }

  .solution-foundation > .section-kicker {
    grid-column: 1 / -1;
    margin-bottom: -12px;
  }

  .solution-foundation > ul {
    grid-column: 2;
  }

  .case-overview {
    gap: 36px;
  }

  .case-overview__statement {
    grid-column: 1 / span 5;
  }

  .case-overview__context,
  .case-overview__facts {
    grid-column: 6 / -1;
  }

  .case-outcomes__layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
    gap: clamp(36px, 5vw, 52px);
  }

  .case-deliverables {
    grid-column: 1;
  }

  .case-value {
    grid-column: 2;
  }

  .technology-principles > div {
    padding-inline: 18px;
  }

  .technology-quality__layout {
    gap: 48px;
  }

  .technology-integrations {
    gap: 38px;
  }

  .technology-integrations__heading,
  .technology-deployment__heading {
    grid-column: 1 / span 5;
  }

  .technology-integrations__list,
  .technology-deployment__modes {
    grid-column: 6 / -1;
  }

  .technology-integrations__list article {
    grid-template-columns: 34px 1fr;
  }

  .technology-integrations__list article ul {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .case-outcomes__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .case-deliverables,
  .case-value,
  .case-value:only-child,
  .case-deliverables:only-child {
    grid-column: 1;
    width: 100%;
  }

  .case-value {
    position: static;
    margin-top: 44px;
    padding: 28px 0 0;
    border-top: 3px solid var(--accent);
    border-left: 0;
  }
}

@media (max-width: 600px) {
  .solution-editorial-hero,
  .case-editorial-hero,
  .technology-editorial-hero {
    padding: 52px 0 36px;
  }

  .solution-editorial-hero h1,
  .case-editorial-hero h1,
  .technology-editorial-hero h1 {
    font-size: 39px;
    line-height: 1.1;
  }

  .solution-editorial-hero__lead,
  .case-editorial-hero > p:not(.page-label),
  .technology-editorial-hero > p:not(.page-label) {
    font-size: 16px;
    line-height: 1.75;
  }

  .solution-editorial-hero__actions {
    display: grid;
    gap: 14px;
    margin-top: 26px;
  }

  .solution-editorial-hero__actions .button {
    width: 100%;
  }

  .solution-editorial-hero__actions .text-link {
    justify-content: center;
  }

  .solution-editorial-media,
  .case-editorial-media,
  .technology-editorial-media {
    width: calc(100vw - 20px);
    border-radius: 19px;
    box-shadow: 0 22px 54px rgba(21, 68, 101, .14);
  }

  .detail-anchor-nav {
    top: calc(var(--header-height) + 8px);
    width: calc(100vw - 20px);
    max-width: none;
    justify-content: flex-start;
    margin-top: 16px;
    padding: 4px;
  }

  .detail-anchor-nav a {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .solution-overview {
    display: block;
    padding-top: 72px;
  }

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

  .solution-overview__intro > p:last-child {
    font-size: 16px;
    line-height: 1.8;
  }

  .solution-facts {
    margin-top: 38px;
  }

  .solution-facts > div {
    grid-template-columns: 82px 1fr;
    gap: 14px;
  }

  .solution-editorial-split,
  .case-editorial-split,
  .technology-editorial-split,
  .technology-quality__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .solution-editorial-split__sticky,
  .case-editorial-split__sticky,
  .technology-editorial-split__sticky,
  .technology-quality__layout > header,
  .case-overview__statement,
  .case-value {
    position: static;
  }

  .solution-editorial-split__sticky h2,
  .case-editorial-split__sticky h2,
  .technology-editorial-split__sticky h2 {
    font-size: 35px;
  }

  .solution-module,
  .case-module,
  .technology-layer {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 16px;
    padding: 32px 0;
  }

  .solution-module__number,
  .case-module > span,
  .technology-layer > span {
    font-size: 35px;
  }

  .solution-module h3,
  .case-module h3,
  .technology-layer h3 {
    font-size: 23px;
  }

  .solution-module__features,
  .case-module ul,
  .technology-layer ul,
  .solution-module__io {
    grid-template-columns: 1fr;
  }

  .editorial-flow,
  .editorial-flow--case,
  .editorial-flow--technology {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 38px;
    padding-left: 28px;
    border-top: 0;
    border-left: 1px solid rgba(16, 37, 52, .24);
  }

  .editorial-flow li,
  .editorial-flow li:nth-child(n + 4) {
    padding: 0 0 34px 22px;
    border-top: 0;
  }

  .editorial-flow li::before {
    top: 6px;
    left: -34px;
  }

  .editorial-flow li > span {
    margin-bottom: 14px;
  }

  .editorial-flow h3 {
    max-width: none;
  }

  .solution-architecture__heading {
    gap: 26px;
  }

  .solution-architecture__heading .section-kicker {
    margin-bottom: -12px;
  }

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

  .architecture-band {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .architecture-band__lead h3 {
    font-size: 27px;
  }

  .solution-governance-grid {
    display: block;
    margin-top: 42px;
  }

  .solution-governance-block,
  .solution-governance-block--wide {
    margin-top: 34px;
  }

  .solution-governance-block li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .solution-foundation {
    display: block;
    margin-top: 42px;
    padding: 27px 22px;
  }

  .solution-foundation > div {
    margin: 16px 0 24px;
  }

  .solution-foundation > ul li {
    grid-template-columns: 1fr;
  }

  .case-overview {
    display: block;
  }

  .case-overview__context {
    margin-top: 34px;
  }

  .case-overview__facts {
    margin-top: 32px;
  }

  .case-overview__context article {
    display: block;
  }

  .case-metrics {
    padding: 14px 0;
  }

  .case-metrics > .shell {
    grid-template-columns: 1fr;
  }

  .case-metric {
    padding: 24px 16px;
  }

  .case-metric + .case-metric {
    border-top: 1px solid rgba(16, 37, 52, .14);
    border-left: 0;
  }

  .case-metric strong {
    font-size: 54px;
  }

  .case-outcomes__layout {
    display: block;
  }

  .case-deliverables > ol {
    margin-top: 26px;
  }

  .case-deliverables > ol li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .case-value {
    margin-top: 44px;
    padding: 26px 0 0;
    border-top: 3px solid var(--accent);
    border-left: 0;
  }

  .case-gallery__grid {
    display: block;
  }

  .case-gallery figure,
  .case-gallery figure:nth-child(2n),
  .case-gallery figure:nth-child(3n),
  .case-gallery figure:only-child {
    margin: 18px 0 0;
    border-radius: 18px;
  }

  .case-gallery picture,
  .case-gallery figure:nth-child(2n) picture {
    aspect-ratio: 16 / 10;
  }

  .technology-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
  }

  .technology-principles > div {
    padding: 20px 16px;
  }

  .technology-principles > div:nth-child(odd) {
    border-left: 0;
  }

  .technology-principles > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .technology-principles span {
    margin-bottom: 21px;
  }

  .technology-principles p {
    font-size: 16px;
  }

  .technology-quality__layout > header h2,
  .technology-integrations__heading h2,
  .technology-deployment__heading h2 {
    font-size: 35px;
  }

  .technology-quality__steps li {
    grid-template-columns: 45px 1fr;
    gap: 14px;
  }

  .technology-integrations,
  .technology-deployment {
    display: block;
  }

  .technology-integrations__list,
  .technology-deployment__modes {
    margin-top: 36px;
  }

  .technology-integrations__list article {
    grid-template-columns: 35px 1fr;
  }

  .technology-delivery__list {
    margin-top: 36px;
  }

  .technology-delivery__list li {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .technology-deployment__modes {
    grid-template-columns: 1fr;
    border-radius: 19px;
  }

  .technology-deployment__modes article,
  .technology-deployment__modes article:first-child {
    grid-column: auto;
    min-height: 0;
  }

  .technology-deployment__modes span {
    margin-bottom: 30px;
  }
}

/* Keep the title scale fluid: compact on laptops, measured on large displays. */
.solution-editorial-hero h1,
.case-editorial-hero h1,
.technology-editorial-hero h1 {
  font-size: var(--font-heading-1);
  letter-spacing: -.04em;
  line-height: 1.14;
}

.solution-overview__intro h2,
.solution-editorial-split__sticky h2,
.case-editorial-split__sticky h2,
.technology-editorial-split__sticky h2,
.solution-architecture__heading h2,
.case-overview__statement h2,
.case-deliverables h2,
.case-value h2,
.technology-quality__layout > header h2,
.technology-integrations__heading h2,
.technology-deployment__heading h2,
.case-public-note__inner h2,
.article-checklist > h2,
.article-faq > h2,
.about-locations__heading h3 {
  font-size: var(--font-heading-2);
}

.tech-carousel__copy h3,
.insights-lead h2 {
  font-size: var(--font-heading-feature);
}

.solution-module h3,
.case-module h3,
.technology-layer h3,
.architecture-band__lead h3 {
  font-size: var(--font-heading-3);
}

/* Progressive disclosure is inert on larger screens and without JavaScript. */
.mobile-disclosure__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
}

@media (min-width: 601px) {
  .mobile-disclosure__trigger {
    pointer-events: none;
  }
}

/* Mobile density system: scan-friendly rhythm while preserving full static content. */
@media (max-width: 600px) {
  :root {
    --shell: calc(100vw - 32px);
    --header-height: 64px;
    --radius-card: 16px;
  }

  body {
    min-width: 0;
    font-size: 15px;
    line-height: 1.62;
  }

  h1,
  .solution-editorial-hero h1,
  .case-editorial-hero h1,
  .technology-editorial-hero h1 {
    margin-bottom: 16px;
    font-size: 34px;
    letter-spacing: -.042em;
    line-height: 1.16;
  }

  h2,
  .solution-overview__intro h2,
  .solution-editorial-split__sticky h2,
  .case-editorial-split__sticky h2,
  .technology-editorial-split__sticky h2,
  .solution-architecture__heading h2,
  .case-overview__statement h2,
  .case-deliverables h2,
  .case-value h2,
  .technology-quality__layout > header h2,
  .technology-integrations__heading h2,
  .technology-deployment__heading h2 {
    margin-bottom: 12px;
    font-size: 27px;
    letter-spacing: -.032em;
    line-height: 1.24;
  }

  h3,
  .solution-module h3,
  .case-module h3,
  .technology-layer h3,
  .architecture-band__lead h3 {
    font-size: 19px;
    line-height: 1.35;
  }

  .section-kicker {
    display: none;
  }

  .section {
    padding-block: 40px;
  }

  .section-first {
    padding-top: 32px;
  }

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

  .section-heading p {
    font-size: 15px;
    line-height: 1.65;
  }

  .section-action {
    margin-top: 22px;
  }

  .button {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .site-header__inner {
    min-height: var(--header-height);
  }

  .site-nav a {
    min-height: 44px;
  }

  .brand img {
    width: 28px;
    height: 32px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    margin-top: 4px;
    font-size: 10px;
  }

  .breadcrumbs {
    padding-top: 16px;
    font-size: 12px;
  }

  .page-hero,
  .solution-editorial-hero,
  .case-editorial-hero,
  .technology-editorial-hero,
  .article-header {
    padding-top: 36px;
    padding-bottom: 28px;
  }

  .page-label {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .page-hero > p:not(.page-label),
  .solution-editorial-hero__lead,
  .case-editorial-hero > p:not(.page-label),
  .technology-editorial-hero > p:not(.page-label),
  .article-header > p:not(.page-label) {
    font-size: 15px;
    line-height: 1.68;
  }

  .solution-editorial-media,
  .case-editorial-media,
  .technology-editorial-media {
    width: var(--shell);
    border-radius: 16px;
    box-shadow: 0 16px 42px rgba(21, 68, 101, .12);
  }

  /* Home hero */
  .home-hero {
    padding: 8px 0 20px;
  }

  .home-hero__stage {
    width: calc(100vw - 16px);
    min-height: 600px;
    border-radius: 0 0 22px 22px;
  }

  .home-hero__stage::after {
    background: linear-gradient(180deg, rgba(237, 247, 253, .99) 0%, rgba(237, 247, 253, .96) 52%, rgba(237, 247, 253, .8) 74%, rgba(237, 247, 253, .28) 100%);
  }

  .home-hero__copy {
    width: calc(100% - 32px);
    padding-top: 28px;
  }

  .home-hero__eyebrow {
    gap: 8px;
    margin-bottom: 14px !important;
    font-size: 9px !important;
    letter-spacing: .1em;
  }

  .home-hero__eyebrow::before {
    width: 22px;
  }

  .home-hero__copy h1 {
    margin-bottom: 14px;
  }

  .home-hero__copy > p:not(.home-hero__eyebrow) {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.6;
  }

  .home-hero__copy .button-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-hero__copy .button {
    min-width: 0;
    padding-inline: 10px;
    font-size: 13px;
  }

  .home-hero__visual {
    inset: 0;
    height: 100%;
  }

  .home-hero__visual img {
    object-position: center bottom;
  }

  /* Home technology carousel */
  .tech-carousel {
    margin-top: 22px;
  }

  .tech-carousel__viewport {
    border-radius: 16px;
    box-shadow: 0 16px 42px rgba(21, 68, 101, .1);
  }

  .tech-carousel__visual {
    aspect-ratio: 16 / 9;
  }

  .tech-carousel__copy {
    padding: 18px 18px 20px;
  }

  .tech-carousel__counter {
    margin-bottom: 10px;
  }

  .tech-carousel__copy h3 {
    margin-bottom: 8px;
    font-size: 21px;
  }

  .tech-carousel__copy > p {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .tech-carousel__copy .text-link {
    font-size: 13px;
  }

  .tech-carousel__controls {
    display: grid;
    grid-template-columns: repeat(2, 44px);
    gap: 0 12px;
    margin-top: 14px;
  }

  .tech-carousel__controls > button {
    width: 44px;
    height: 44px;
  }

  .tech-carousel__controls > button:first-child {
    grid-column: 1;
    grid-row: 2;
  }

  .tech-carousel__controls > button:last-of-type {
    grid-column: 2;
    grid-row: 2;
  }

  .tech-carousel__dots {
    grid-column: 1 / -1;
    grid-row: 1;
    gap: 0;
    justify-self: center;
  }

  .tech-carousel__dots button {
    position: relative;
    width: 44px;
    height: 44px;
    background: transparent;
  }

  .tech-carousel__dots button::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #adc0cc;
    content: "";
    transform: translate(-50%, -50%);
    transition: width 260ms ease, background 260ms ease;
  }

  .tech-carousel__dots button[aria-current="true"] {
    width: 44px;
    background: transparent;
  }

  .tech-carousel__dots button[aria-current="true"]::before {
    width: 24px;
    background: var(--accent);
  }

  /* Featured home content: one lead card followed by compact media rows. */
  .case-bento,
  .home-insight-grid {
    gap: 14px;
  }

  .case-card,
  .home-insight-card:first-child,
  .home-insight-card:not(:first-child) {
    border-radius: 16px;
  }

  .case-card--1 .case-card__image,
  .home-insight-card:first-child .home-insight-card__image {
    aspect-ratio: 16 / 9;
  }

  .case-card--1 .case-card__body,
  .home-insight-card:first-child > div {
    padding: 18px;
  }

  .case-card--1 .case-card__body > p,
  .home-insight-card:first-child p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.62;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .case-card--2,
  .case-card--3,
  .home-insight-card:not(:first-child) {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 148px;
  }

  .case-card--2 .case-card__image,
  .case-card--3 .case-card__image,
  .case-card--2 .case-card__image picture,
  .case-card--3 .case-card__image picture,
  .home-insight-card:not(:first-child) .home-insight-card__image {
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .case-card--2 .case-card__body,
  .case-card--3 .case-card__body,
  .home-insight-card:not(:first-child) > div {
    min-width: 0;
    padding: 14px;
  }

  .case-card--2 h3,
  .case-card--3 h3,
  .home-insight-card:not(:first-child) h3 {
    margin: 5px 0 7px;
    font-size: 17px;
    line-height: 1.38;
  }

  .case-card--2 p,
  .case-card--3 p,
  .home-insight-card:not(:first-child) p {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .case-card--2 .metric-row,
  .case-card--3 .metric-row,
  .home-insight-card:not(:first-child) .text-link {
    display: none;
  }

  .home-insight-card > div > span,
  .home-insight-card time {
    font-size: 10px;
  }

  .home-insight-card time {
    float: none;
    margin-left: 8px;
  }

  .metric-row {
    gap: 12px;
    margin-top: 12px;
  }

  .metric-row strong {
    font-size: 19px;
  }

  /* Case and insight indexes */
  .case-index-grid {
    gap: 14px;
  }

  .case-index-card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    min-height: 0;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
  }

  .case-index-card__image {
    width: 128px;
    height: 96px;
    aspect-ratio: auto;
    border-radius: 12px;
  }

  .case-index-card > div {
    min-width: 0;
    min-height: 0;
    padding: 0;
  }

  .case-index-card h3 {
    margin-bottom: 6px;
    font-size: 19px;
    line-height: 1.36;
  }

  .case-index-card__summary {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.52;
    -webkit-line-clamp: 2;
  }

  .case-index-card__meta {
    display: flex;
    overflow: hidden;
    margin-bottom: 7px;
    font-size: 11px;
    line-height: 1.45;
    white-space: nowrap;
  }

  .case-index-card .text-link {
    font-size: 12px;
  }

  .insights-editorial {
    gap: 44px;
  }

  .insights-lead {
    gap: 18px;
  }

  .insights-lead__image {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    box-shadow: 0 16px 42px rgba(21, 68, 101, .1);
  }

  .insights-lead__label {
    margin: 8px 0 7px;
  }

  .insights-lead h2 {
    margin-bottom: 8px;
    font-size: 23px;
  }

  .insights-lead__copy > p:not(.insights-lead__label) {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.62;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .insights-library {
    gap: 18px;
  }

  .insights-library__heading > p:last-child {
    margin-bottom: 0;
    font-size: 14px;
  }

  .insights-row {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 0;
  }

  .insights-row__image {
    border-radius: 10px;
  }

  .insights-row h3 {
    margin: 6px 0 0;
    font-size: 17px;
    line-height: 1.38;
    -webkit-line-clamp: 3;
  }

  .insights-row p {
    display: none;
  }

  .insights-row__arrow {
    display: none;
  }

  /* Accessible mobile disclosure for dense capability groups. */
  .case-editorial-split,
  .technology-editorial-split {
    gap: 22px;
  }

  .case-module-list,
  .technology-layer-list {
    border-top-width: 1px;
  }

  .case-module,
  .technology-layer {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
    padding: 0;
  }

  .case-module > span,
  .technology-layer > span {
    padding-top: 21px;
    color: var(--accent-deep);
    font-size: 15px;
    font-weight: 720;
    letter-spacing: .02em;
    line-height: 1;
  }

  .case-module h3,
  .technology-layer h3 {
    margin: 0;
  }

  .js .mobile-disclosure__trigger {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 8px;
    min-height: 64px;
    align-items: center;
    cursor: pointer;
    pointer-events: auto;
  }

  .js .mobile-disclosure__trigger::after {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--accent-deep);
    content: "+";
    font-size: 23px;
    font-weight: 420;
  }

  .js .mobile-disclosure__trigger[aria-expanded="true"]::after {
    content: "−";
  }

  [data-mobile-disclosure-panel] {
    padding: 0 0 20px;
  }

  [data-mobile-disclosure-panel][hidden] {
    display: none;
  }

  .case-module p,
  .technology-layer p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.65;
  }

  .case-module ul,
  .technology-layer ul {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .case-module li,
  .technology-layer li {
    padding-block: 10px;
    font-size: 13px;
  }

  /* Compact numbered flows and technical groups. */
  .technology-principles {
    margin-top: 18px;
  }

  .technology-principles > div {
    padding: 14px 12px;
  }

  .technology-principles span {
    margin-bottom: 7px;
  }

  .technology-principles p {
    margin-bottom: 3px;
    font-size: 15px;
  }

  .technology-principles small {
    font-size: 11px;
    line-height: 1.5;
  }

  .technology-applications-page__grid {
    border-radius: 16px;
  }

  .technology-applications-page__grid article {
    padding: 18px 16px;
  }

  .technology-applications-page__grid span {
    margin-bottom: 7px;
  }

  .technology-applications-page__grid h3 {
    margin-bottom: 5px;
    font-size: 18px;
  }

  .technology-applications-page__grid p {
    font-size: 13px;
    line-height: 1.58;
  }

  .editorial-flow,
  .editorial-flow--case,
  .editorial-flow--technology {
    margin-top: 24px;
    padding-left: 22px;
  }

  .editorial-flow li,
  .editorial-flow li:nth-child(n + 4) {
    padding: 0 0 22px 16px;
  }

  .editorial-flow li::before {
    left: -28px;
  }

  .editorial-flow li > span {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .editorial-flow h3 {
    margin-bottom: 4px;
    font-size: 18px;
  }

  .editorial-flow p {
    font-size: 13px;
    line-height: 1.58;
  }

  .technology-quality__layout {
    gap: 20px;
  }

  .technology-quality__layout > header > p:last-child,
  .technology-integrations__heading > p:last-child,
  .technology-deployment__heading > p:last-child {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.65;
  }

  .technology-quality__steps li,
  .technology-delivery__list li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    padding: 18px 0;
  }

  .technology-quality__steps li > span,
  .technology-delivery__list li > span {
    padding-top: 2px;
    color: var(--accent-deep);
    font-size: 18px;
  }

  .technology-quality__steps h3,
  .technology-delivery__list h3 {
    font-size: 18px;
  }

  .technology-quality__steps p,
  .technology-delivery__list p {
    font-size: 13px;
    line-height: 1.58;
  }

  .technology-integrations__list,
  .technology-deployment__modes,
  .technology-delivery__list {
    margin-top: 22px;
  }

  .technology-integrations__list article {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 8px;
    padding: 17px 0;
  }

  .technology-integrations__list h3 {
    margin-bottom: 9px;
    font-size: 18px;
  }

  .technology-integrations__list article ul {
    grid-column: 2;
  }

  .technology-deployment__modes {
    border-radius: 16px;
  }

  .technology-deployment__modes article,
  .technology-deployment__modes article:first-child {
    min-height: 0;
    padding: 18px;
  }

  .technology-deployment__modes span {
    margin-bottom: 8px;
  }

  .technology-deployment__modes h3 {
    margin-bottom: 5px;
    font-size: 18px;
  }

  .technology-deployment__modes p {
    font-size: 13px;
    line-height: 1.58;
  }

  /* Case detail */
  .case-overview {
    gap: 0;
  }

  .case-overview__statement > p:last-child {
    font-size: 15px;
    line-height: 1.68;
  }

  .case-overview__facts {
    margin-top: 22px;
  }

  .case-overview__facts > div,
  .case-overview__facts > div:nth-child(even) {
    padding: 14px 10px 14px 0;
  }

  .case-overview__facts > div:nth-child(even) {
    padding-right: 0;
    padding-left: 10px;
  }

  .case-overview__context {
    margin-top: 22px;
  }

  .case-overview__context article {
    display: block;
    padding: 18px 0;
  }

  .case-overview__context h3 {
    margin-bottom: 4px;
    font-size: 18px;
  }

  .case-overview__context p {
    font-size: 13px;
    line-height: 1.62;
  }

  .case-metrics {
    padding: 12px 0;
  }

  .case-metrics > .shell {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-metric {
    padding: 14px 5px;
  }

  .case-metric + .case-metric {
    border-top: 0;
    border-left: 1px solid rgba(16, 37, 52, .14);
  }

  .case-metric strong {
    font-size: clamp(28px, 9vw, 34px);
  }

  .case-metric span {
    margin-top: 7px;
    font-size: 10px;
    line-height: 1.35;
  }

  .case-deliverables > ol {
    margin-top: 20px;
  }

  .case-deliverables > ol li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    padding: 17px 0;
  }

  .case-deliverables h3 {
    font-size: 18px;
  }

  .case-deliverables p {
    font-size: 13px;
    line-height: 1.58;
  }

  .case-value {
    margin-top: 28px;
    padding-top: 20px;
  }

  .case-value > p:not(.section-kicker) {
    font-size: 14px;
    line-height: 1.65;
  }

  .case-value ul {
    margin-top: 14px;
  }

  .case-value li {
    padding-block: 10px;
    font-size: 13px;
  }

  .case-gallery figure,
  .case-gallery figure:nth-child(2n),
  .case-gallery figure:nth-child(3n),
  .case-gallery figure:only-child {
    margin-top: 14px;
    border-radius: 16px;
  }

  /* About */
  .about-editorial-hero {
    padding-bottom: 24px;
  }

  .about-company {
    gap: 22px;
    padding-top: 8px;
  }

  .about-company__intro > div {
    margin-top: 18px;
    padding-top: 14px;
  }

  .about-company__intro > div p,
  .about-company__intro > div p:first-child {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.68;
  }

  .about-office {
    border-radius: 16px;
  }

  .about-purpose > .shell {
    gap: 18px;
  }

  .about-purpose__item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    padding: 18px 0;
  }

  .about-purpose__item h3 {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .about-purpose__item strong {
    margin-bottom: 7px;
    font-size: 18px;
    line-height: 1.42;
  }

  .about-purpose__item p {
    font-size: 13px;
    line-height: 1.58;
  }

  .about-team {
    padding-top: 40px;
  }

  .about-team__heading {
    gap: 10px;
  }

  .about-team-grid {
    gap: 24px;
    margin-top: 22px;
  }

  .about-person {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0 14px;
    padding-top: 16px;
  }

  .about-person__portrait {
    width: 88px;
    border-radius: 18px 18px 5px 18px;
  }

  .about-person__header h3 {
    font-size: 21px;
  }

  .about-person__education {
    margin-top: 13px;
    font-size: 12px;
  }

  .about-person__profile {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.58;
  }

  .about-locations {
    margin-top: 42px;
  }

  .about-locations__heading {
    gap: 7px;
    margin-bottom: 18px;
  }

  .about-locations__heading h3 {
    font-size: 25px;
  }

  .about-locations__heading > p {
    font-size: 13px;
    line-height: 1.58;
  }

  .about-team-map {
    aspect-ratio: 2 / 1;
    border-radius: 16px;
  }

  /* Contact and long-form reading */
  .contact-layout {
    gap: 28px;
  }

  .contact-context > ul {
    gap: 8px;
    margin: 18px 0 24px;
  }

  .contact-context > ul li {
    font-size: 14px;
    line-height: 1.58;
  }

  .form-panel {
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 16px 42px rgba(21, 68, 101, .1);
  }

  .form-panel > p {
    margin-bottom: 0;
    font-size: 14px;
  }

  .lead-form {
    gap: 14px;
    margin-top: 20px;
  }

  .form-field {
    gap: 5px;
  }

  .form-field label {
    font-size: 14px;
  }

  .form-field input,
  .form-field textarea {
    padding: 10px 12px;
  }

  .form-field input {
    min-height: 44px;
  }

  .form-field textarea {
    min-height: 120px;
  }

  .field-help,
  .field-error {
    min-height: 16px;
    font-size: 11px;
  }

  .article-meta {
    gap: 3px;
    font-size: 12px;
  }

  .article-cover {
    border-radius: 16px;
    box-shadow: 0 16px 42px rgba(21, 68, 101, .1);
  }

  .article-answer {
    margin-block: 28px;
    padding: 18px 16px;
  }

  .article-body {
    margin-bottom: 56px;
  }

  .article-body section {
    margin-top: 36px;
  }

  .article-body h2 {
    font-size: 24px;
  }

  .article-body p {
    font-size: 16px;
    line-height: 1.78;
  }

  .article-checklist,
  .article-faq {
    margin-top: 48px;
  }

  .article-checklist > h2,
  .article-faq > h2 {
    margin-bottom: 18px;
    font-size: 25px;
  }

  .article-checklist li {
    padding-block: 17px 19px;
  }

  .article-faq summary,
  .faq-list summary {
    min-height: 44px;
    padding: 17px 42px 17px 0;
    font-size: 16px;
    line-height: 1.5;
  }

  .article-faq summary::after {
    top: 14px;
  }

  .article-faq details p {
    margin: 0 28px 18px 0;
    font-size: 15px;
    line-height: 1.7;
  }

  .faq-list p {
    margin-bottom: 0;
    padding-bottom: 17px;
    font-size: 14px;
    line-height: 1.65;
  }

  .article-resources {
    gap: 26px;
    margin-top: 48px;
    margin-bottom: 48px;
    padding: 20px 16px;
    border-radius: 16px;
  }

  /* Keep numeric labels for real sequences and metrics, not as a repeated motif. */
  .technology-principles > div > span,
  .technology-applications-page__grid > article > span,
  .technology-layer > span,
  .case-module > span,
  .technology-quality__steps li > span,
  .technology-integrations__list article > span,
  .technology-deployment__modes > article > span,
  .case-deliverables > ol li > span,
  .about-purpose__item > span,
  .article-checklist li > span {
    display: none;
  }

  .technology-layer,
  .case-module,
  .technology-quality__steps li,
  .technology-integrations__list article,
  .case-overview__context article,
  .case-deliverables > ol li,
  .about-purpose__item,
  .article-checklist li {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .technology-integrations__list article ul {
    grid-column: 1;
  }

  /* Shared consultation areas and footer */
  .home-contact,
  .inline-cta {
    padding: 24px 0 44px;
  }

  .home-contact__inner,
  .inline-cta__inner {
    min-height: 280px;
    padding: 32px 20px;
    border-radius: 16px;
    box-shadow: 0 16px 44px rgba(21, 68, 101, .11);
  }

  .home-contact__inner h2,
  .inline-cta__inner h2 {
    font-size: 27px;
  }

  .home-contact__inner p,
  .inline-cta__inner p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.62;
  }

  .home-contact__inner .button-primary,
  .inline-cta__inner .button-primary {
    min-width: 140px;
  }

  .site-footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-brand p {
    margin: 12px 0 0;
    font-size: 13px;
    line-height: 1.58;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-links div {
    gap: 6px;
  }

  .footer-links h2 {
    margin-bottom: 5px;
    font-size: 13px;
  }

  .footer-links a {
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-bottom {
    gap: 5px;
    margin-top: 28px;
    padding-top: 16px;
  }

  .legal-copy {
    padding-bottom: 52px;
  }

  .legal-copy section {
    margin-top: 32px;
  }
}

@media (max-width: 600px) {
  .case-library { padding-top: 8px; }
  .case-index-grid { grid-template-columns: 1fr; }
}

/* Keep detail-page imagery editorial in scale instead of treating it as a full-bleed banner. */
.solution-editorial-media,
.case-editorial-media,
.technology-editorial-media {
  width: min(1040px, calc(100vw - clamp(64px, calc(30vw - 120px), 184px)));
  border-radius: 22px;
  box-shadow: 0 18px 52px rgba(21, 68, 101, .1);
}

.case-editorial-media__caption {
  padding: 9px 14px 10px;
  font-size: 11px;
}

@media (max-width: 1100px) {
  .solution-editorial-media,
  .case-editorial-media,
  .technology-editorial-media {
    border-radius: 18px;
  }

  .article-cover {
    border-radius: 18px;
  }
}

@media (max-width: 600px) {
  .solution-editorial-media,
  .case-editorial-media,
  .technology-editorial-media {
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(21, 68, 101, .09);
  }

  .article-cover {
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(21, 68, 101, .09);
  }

  .case-editorial-media__caption {
    display: -webkit-box;
    overflow: hidden;
    padding: 8px 10px 9px;
    font-size: 10px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
