/* ─────────────────────────────────────────────────────────────────
 * AJAIA Pages — Shared stylesheet for locally-built pages.
 * Mirrors the Framer site's visual language exactly.
 * ───────────────────────────────────────────────────────────────── */

/* ── Fonts ── */
@font-face {
  font-family: "Montserrat";
  src: url("/static/local/partner-pages/fonts/Montserrat.woff2") format("woff2-variations"),
       url("/static/local/partner-pages/fonts/Montserrat.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/static/local/partner-pages/fonts/Poppins.woff2") format("woff2-variations"),
       url("/static/local/partner-pages/fonts/Poppins.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Fragment Mono";
  src: url("/static/local/partner-pages/fonts/Fragment_Mono.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/static/mirror/framerusercontent.com/5vvr9Vy74if2I6bQbJvbw7SY1pQ-197dd743787c.woff2");
  font-weight: 100 900;
  font-display: swap;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Design Tokens ── */
:root {
  /* Brand */
  --navy:        #001D6B;
  --navy-mid:    #0B2E8E;
  --navy-dark:   #000E3A;
  --ink:         #272D3B;
  --ink-muted:   #6B7280;
  --blue-mid:    #3756AB;
  --sky-500:     #6EA4E6;
  --sky-400:     #97C2F8;
  --sky-300:     #B6D4FA;
  --sky-200:     #D2E3FC;
  --sky-100:     #E1EEFF;
  --sky-50:      #F1F7FF;
  --lime:        #E4FE7B;
  --white:       #FFFFFF;
  --line-dark:   rgba(255,255,255,0.10);
  --line-dark-2: rgba(255,255,255,0.15);
  --glass:       rgba(0,0,0,0.60);

  /* Type */
  --font-display: "Montserrat", sans-serif;
  --font-body:    "Poppins", sans-serif;
  --font-mono:    "Fragment Mono", monospace;
  --font-nav:     "Poppins", sans-serif;

  /* Layout */
  --nav-h: 72px;
  --max-w: 1280px;
  --gutter: 64px;
}

/* ── Body ── */
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ── Container ── */
.aj-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 810px) {
  .aj-container { padding-left: 48px; padding-right: 48px; }
}
@media (min-width: 1200px) {
  .aj-container { padding-left: var(--gutter); padding-right: var(--gutter); }
}

/* ── Navigation ── */
.aj-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 0;
}
.aj-nav.is-menu-open {
  height: 602px;
  max-height: 100dvh;
  overflow: hidden;
  background: rgba(0,0,0,0.60);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.aj-nav.is-menu-open .aj-nav__inner {
  height: var(--nav-h);
  position: relative;
  z-index: 1;
}
.aj-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 810px) {
  .aj-nav__inner { padding: 0 50px; }
}
@media (max-width: 1199px) {
  :root {
    --nav-h: 70px;
  }
  .aj-nav__inner {
    padding: 0 20px;
  }
  .aj-nav__hamburger {
    width: 44px;
    height: 44px;
  }
}
.aj-nav__logo {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 0 0 auto;
}
.aj-nav__logo img {
  width: 114px;
  height: 50px;
  max-width: none;
  object-fit: contain;
}
.aj-nav__links {
  display: none;
  align-items: center;
  align-self: stretch;
  gap: 0;
}
@media (min-width: 1200px) {
  .aj-nav__links { display: flex; }
}
.aj-nav__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 19px;
  font-family: var(--font-nav);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--white);
  border-right: 1px solid var(--line-dark-2);
  opacity: 0.92;
  transition: background-color 0.2s, color 0.2s, opacity 0.2s;
}
.aj-nav__links a:first-child {
  border-left: 1px solid var(--line-dark-2);
}
.aj-nav__links a:hover,
.aj-nav__links a[aria-current] {
  background: rgba(255,255,255,0.10);
  color: var(--sky-400);
  opacity: 1;
}
.aj-nav__cta {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 224px;
  height: 48px;
  flex: 0 0 224px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--navy);
  background: var(--sky-400);
  border: 0;
  border-radius: 0;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .aj-nav__cta { display: flex; }
}
.aj-nav__cta-text {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex: 1 1 auto;
  padding: 0;
}
.aj-nav__cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 100%;
  flex: 0 0 46px;
  padding: 0;
  border-left: 1px solid rgba(0,29,107,0.20);
}
.aj-nav__cta-arrow svg { width: 16px; height: 16px; }

/* Hamburger */
.aj-nav__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: var(--white);
}
@media (min-width: 1200px) {
  .aj-nav__hamburger { display: none; }
}
.aj-nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: currentColor;
  position: relative;
  transition: background 0.3s;
}
.aj-nav__hamburger span::before,
.aj-nav__hamburger span::after {
  content: ""; position: absolute; left: 0;
  width: 24px; height: 2px; background: currentColor;
  transition: transform 0.3s;
}
.aj-nav__hamburger span::before { top: -7px; }
.aj-nav__hamburger span::after  { top:  7px; }
.aj-nav__hamburger.is-open span { background: transparent; }
.aj-nav__hamburger.is-open span::before { transform: translateY(7px) rotate(45deg); }
.aj-nav__hamburger.is-open span::after  { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.aj-mobile-menu {
  display: none;
  position: absolute;
  top: 149px;
  left: 20px;
  right: 20px;
  z-index: 1;
  max-height: none;
  padding: 0 0 40px;
  overflow: visible;
}
.aj-mobile-menu.is-open {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.aj-mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--white);
  padding: 0 16px;
  border-bottom: 0;
  background: transparent;
}
.aj-mobile-menu a:first-child {
  background: rgba(255,255,255,0.10);
}
.aj-mobile-menu a:nth-child(1) { order: 1; }
.aj-mobile-menu a:nth-child(2) { order: 2; }
.aj-mobile-menu a:nth-child(3) { order: 4; }
.aj-mobile-menu a:nth-child(4) { order: 3; }
.aj-mobile-menu a:nth-child(5) { order: 5; }
.aj-mobile-menu a:nth-child(6) {
  order: 6;
  width: 82px;
  align-self: center;
  justify-content: center;
  margin-top: 0;
  border-right: 1px solid rgba(255,255,255,0.16);
  text-align: center;
}
.aj-mobile-menu a:last-child {
  order: 7;
  align-self: flex-start;
  width: 224px;
  min-height: 48px;
  justify-content: space-between;
  margin: 89px 0 0 20px;
  padding: 0 0 0 18px;
  color: var(--navy);
  background: var(--sky-400);
  border-bottom: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}
.aj-mobile-menu a:last-child::after {
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border-left: 1px solid rgba(0,29,107,0.20);
  font-size: 24px;
  line-height: 1;
}

/* ── Eyebrow Row (line-through wrapper) ── */
.aj-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}
.aj-eyebrow-row::before,
.aj-eyebrow-row::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.10);
}
.aj-eyebrow-row--on-light::before,
.aj-eyebrow-row--on-light::after {
  background: rgba(0,0,0,0.08);
}

/* ── Eyebrow Pill ── */
.aj-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  color: var(--sky-400);
  padding: 2px 10px 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: none;
  border-radius: 0;
}
.aj-eyebrow::before {
  content: "";
  display: block;
  width: 7px; height: 7px;
  background: var(--sky-400);
  border-radius: 0;
  flex-shrink: 0;
}
.aj-eyebrow--on-light {
  color: var(--ink);
  background: rgba(0,0,0,0.03);
}
.aj-eyebrow--on-light::before { background: var(--navy); }

/* ── Headings ── */
.aj-h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -2.3px;
  color: var(--white);
  text-align: center;
}
@media (min-width: 810px) {
  .aj-h1 { font-size: 52px; letter-spacing: -2.8px; }
}
@media (min-width: 1200px) {
  .aj-h1 { font-size: 62px; letter-spacing: -3.3px; }
}

.aj-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -1.2px;
}
@media (min-width: 810px) {
  .aj-h2 { font-size: 36px; }
}

.aj-h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.88px;
}
@media (min-width: 810px) {
  .aj-h3 { font-size: 26px; letter-spacing: -1px; }
}

/* ── Subtitle / Lead text (hero) ── */
.aj-lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 810px) {
  .aj-lead { font-size: 18px; }
}

/* ── Cards (light blue, matching Framer product cards) ── */
.aj-card {
  display: flex;
  flex-direction: column;
  background: var(--sky-100);
  padding: 36px 40px;
  border-radius: 16px;
  color: var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.aj-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
@media (min-width: 810px) {
  .aj-card { padding: 44px 50px; }
}
.aj-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.88px;
  color: var(--ink);
  margin-bottom: 12px;
}
@media (min-width: 810px) {
  .aj-card__title { font-size: 26px; letter-spacing: -1px; }
}
.aj-card__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
@media (min-width: 810px) {
  .aj-card__body { font-size: 18px; line-height: 1.4; }
}
.aj-card__divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.10);
  margin-top: auto;
  margin-bottom: 20px;
}
.aj-card__metric {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -1.5px;
  color: var(--blue-mid);
}
@media (min-width: 810px) {
  .aj-card__metric { font-size: 41px; }
}
.aj-card__metric-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-muted);
  margin-top: 4px;
}
.aj-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  transition: gap 0.2s;
}
.aj-card__link:hover { gap: 10px; }
.aj-card__link svg { width: 18px; height: 18px; }

/* ── Tag pills ── */
.aj-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 400;
}
.aj-tag--on-card {
  background: rgba(0,29,107,0.08);
  color: var(--navy);
  border: 1px solid rgba(0,29,107,0.15);
}
.aj-tag--on-dark {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid var(--line-dark-2);
}

/* ── Sections ── */
.aj-section {
  padding: 80px 0;
}
@media (min-width: 810px) {
  .aj-section { padding: 100px 0; }
}
.aj-section--hero {
  padding-top: calc(var(--nav-h) + 80px);
  text-align: center;
}
@media (min-width: 810px) {
  .aj-section--hero { padding-top: calc(var(--nav-h) + 100px); }
}

/* ── CTA Band (sky-400 background, matching Framer site) ── */
.aj-cta {
  background: var(--sky-400);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  color: var(--ink);
}
@media (min-width: 810px) {
  .aj-cta { padding: 80px 60px; }
}
.aj-cta__headline {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  max-width: 560px;
  margin: 0 auto 32px;
}
@media (min-width: 810px) {
  .aj-cta__headline { font-size: 20px; }
}

/* ── Buttons ── */
.aj-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-nav);
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
  overflow: hidden;
  transition: opacity 0.2s;
}
.aj-btn:hover { opacity: 0.85; }
.aj-btn--connect {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
}
.aj-btn--connect .aj-btn__text { padding: 14px 24px; }
.aj-btn--connect .aj-btn__arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 16px;
  border-left: 1px solid rgba(0,0,0,0.08);
}
.aj-btn--connect .aj-btn__arrow svg { width: 18px; height: 18px; }

.aj-btn--lime {
  background: var(--lime);
  color: var(--navy);
  padding: 14px 28px;
}
.aj-btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line-dark-2);
  padding: 14px 28px;
}
.aj-cta .aj-btn--outline {
  color: var(--navy);
  border-color: var(--navy);
  background: rgba(255,255,255,0.25);
}

/* ── Footer ── */
.aj-footer {
  padding-top: 60px;
  padding-bottom: 60px;
}
.aj-footer__contact {
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 48px;
  margin-bottom: 48px;
}
.aj-footer__row {
  margin-bottom: 32px;
}
.aj-footer__row:last-child { margin-bottom: 0; }
.aj-footer__row .aj-eyebrow { margin-bottom: 8px; }
.aj-footer__row-line {
  border: none;
  border-top: 1px solid var(--line-dark);
  margin: 0 0 16px;
}
.aj-footer__value {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
}
.aj-footer__value a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.aj-footer__value a:hover { color: var(--white); }

.aj-footer__nav { margin-bottom: 48px; }
.aj-footer__nav-title { margin-bottom: 16px; }
.aj-footer__nav-list a {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-dark);
  transition: color 0.2s;
}
.aj-footer__nav-list a:hover { color: var(--white); }

.aj-footer__legal {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
}
.aj-footer__legal a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.aj-footer__legal a:hover { color: var(--white); }

.aj-footer__logo {
  text-align: center;
  padding: 40px 0;
}
.aj-footer__logo img {
  max-width: 320px;
  margin: 0 auto;
  opacity: 0.12;
}

/* ── Filter pills ── */
.aj-filter-wrap {
  max-width: 880px;
  margin: 40px auto;
}
.aj-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 6px 0;
}
.aj-filter-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  width: 72px;
  flex-shrink: 0;
  text-align: right;
  margin-right: 4px;
}
.aj-filter-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--line-dark-2);
  color: rgba(255,255,255,0.7);
  background: transparent;
  transition: all 0.2s;
}
.aj-filter-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.aj-filter-btn.is-active {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
}

/* ── Grid ── */
.aj-grid {
  display: grid;
  gap: 24px;
}
.aj-grid--2 { grid-template-columns: 1fr; }
@media (min-width: 810px) {
  .aj-grid--2 { grid-template-columns: 1fr 1fr; }
}
.aj-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 810px) {
  .aj-grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1200px) {
  .aj-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* ── Utility ── */
.aj-text-center { text-align: center; }
.aj-mt-16 { margin-top: 16px; }
.aj-mt-24 { margin-top: 24px; }
.aj-mt-32 { margin-top: 32px; }
.aj-mt-48 { margin-top: 48px; }
.aj-mb-16 { margin-bottom: 16px; }
.aj-mb-24 { margin-bottom: 24px; }
.aj-mb-32 { margin-bottom: 32px; }
.aj-mb-48 { margin-bottom: 48px; }

/* ── Case Study Detail — Article Layout ── */

body.cs-detail-page {
  --font-display: "Poppins", sans-serif;
  background: var(--navy);
}
body.cs-detail-page .aj-h1,
body.cs-detail-page .aj-h2,
body.cs-detail-page .aj-h3,
body.cs-detail-page .cs-article__heading,
body.cs-detail-page .cs-metrics__value,
body.cs-detail-page .cs-process__title,
body.cs-detail-page .cs-capability__title {
  font-family: var(--font-display);
  letter-spacing: 0;
}

/* Tighter section spacing on detail pages */
body.cs-detail-page .aj-section { padding: 40px 0; }
@media (min-width: 810px) {
  body.cs-detail-page .aj-section { padding: 48px 0; }
}
body.cs-detail-page .aj-section--hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 32px;
  background:
    radial-gradient(circle at 50% 34%, rgba(151,194,248,0.13), transparent 36%),
    linear-gradient(180deg, #071447 0%, var(--navy) 74%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  isolation: isolate;
}
@media (min-width: 810px) {
  body.cs-detail-page .aj-section--hero {
    padding-top: calc(var(--nav-h) + 80px);
    padding-bottom: 40px;
  }
}

/* Metrics strip */
.cs-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.cs-metrics__item {
  flex: 1 1 140px;
  max-width: 50%;
  padding: 28px 20px;
  text-align: center;
}
@media (min-width: 810px) {
  .cs-metrics__item { max-width: none; padding: 36px 28px; }
}
.cs-metrics__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, var(--sky-400), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 810px) {
  .cs-metrics__value { font-size: 52px; }
}
.cs-metrics__label {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* Article body */
.cs-article { max-width: 800px; margin: 0 auto; }
.cs-article__section { margin-bottom: 40px; }
.cs-article__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.88px;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 810px) {
  .cs-article__heading { font-size: 24px; }
}
.cs-article p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
@media (min-width: 810px) {
  .cs-article p { font-size: 17px; }
}
.cs-article p:last-child { margin-bottom: 0; }

/* Results list */
.cs-results { list-style: none; padding: 0; margin: 0; }
.cs-results li {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid var(--line-dark);
  position: relative;
}
.cs-results li::before {
  content: "";
  position: absolute;
  left: 0; top: 19px;
  width: 8px; height: 8px;
  background: var(--sky-400);
}
.cs-results li:last-child { border-bottom: none; }

/* Compact combined tags area */
.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}
@media (max-width: 809px) {
  .cs-tags { flex-direction: column; gap: 24px; }
}
.cs-tags__group { flex: 1; min-width: 200px; }
.cs-tags__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.cs-tags__list { display: flex; flex-wrap: wrap; gap: 8px; }

/* Case study cards (shared across case-studies index + product pages) */
.cs-card { display: flex; flex-direction: column; }
.cs-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.cs-card__timeline {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.cs-card .aj-card__body { flex: 1; }

/* Integration cards */
.integration-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 160px;
}
.integration-logo {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.integration-logo svg { width: 100%; height: 100%; }
.integration-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.integration-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

/* ─────────────────────────────────────────────────────────────────
 * Case Study Detail — Rich Template Additions
 * (recreates the old ai-insights rich layout; additive, no regressions)
 * ───────────────────────────────────────────────────────────────── */

/* Standalone full-width section heading (matches article heading) */
.cs-section-head { max-width: 800px; margin: 0 auto 24px; }
.cs-section-head .cs-article__heading { margin-bottom: 0; }

/* Sub-heading inside a prose section (e.g. "Key Challenges") */
.cs-subheading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin: 24px 0 16px;
}

/* Metadata strip (Client / Industry / Duration / Services / Tech) */
.cs-meta { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--line-dark); }
.cs-meta__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 810px) {
  .cs-meta__row { grid-template-columns: 200px 1fr; gap: 24px; align-items: baseline; }
}
.cs-meta__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.cs-meta__value {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}

/* Key Challenges — card grid inside the reading column */
.cs-challenges { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 810px) {
  .cs-challenges { grid-template-columns: 1fr 1fr; }
}
.cs-challenge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 24px;
}
.cs-challenge__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}
.cs-challenge p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

/* The Process — numbered steps */
.cs-process { max-width: 800px; margin: 0 auto; }
.cs-process__step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}
.cs-process__step:last-child { border-bottom: none; }
.cs-process__num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  background: var(--sky-400);
  border-radius: 8px;
}
.cs-process__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 6px;
}
.cs-process p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

/* Key Capabilities — 6-card grid */
.cs-capabilities { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 810px) {
  .cs-capabilities { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1200px) {
  .cs-capabilities { grid-template-columns: 1fr 1fr 1fr; }
}
.cs-capability {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
}
.cs-capability__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}
.cs-capability__body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
}

/* Key Results — stat-first KPI cards */
/* Case study detail footer, shared with the case-studies index footer system */
body.cs-detail-page .foot {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--navy);
  color: var(--sky-50);
  border-top: 1px solid rgba(255,255,255,0.07);
  line-height: 1.6;
}
body.cs-detail-page .foot__bigmark {
  position: absolute;
  right: -2%;
  bottom: -34px;
  z-index: 0;
  opacity: 0.05;
  pointer-events: none;
}
body.cs-detail-page .foot__bigmark img {
  width: auto;
  height: 220px;
}
body.cs-detail-page .ftrx {
  position: relative;
  z-index: 1;
  width: min(1320px, 100% - 80px);
  margin: 0 auto;
  padding: clamp(66px, 8vw, 96px) 0 34px;
}
body.cs-detail-page .ftrx__cols {
  display: grid;
  grid-template-columns: 1.24fr 0.7fr 0.98fr 1.1fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}
body.cs-detail-page .ftrx__brand-logo {
  width: 172px;
  height: auto;
  margin-bottom: 26px;
}
body.cs-detail-page .ftrx__brand-desc {
  max-width: 420px;
  margin: 0;
  color: rgba(241,247,255,0.78);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}
body.cs-detail-page .ftrx__brand-meta {
  margin-top: 28px;
  color: rgba(241,247,255,0.62);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.65;
  letter-spacing: 0;
}
body.cs-detail-page .ftrx__brand-meta a {
  color: inherit;
  transition: color 160ms ease-out;
}
body.cs-detail-page .ftr-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--sky-400);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
body.cs-detail-page .ftr-chip__sq {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--sky-400);
}
body.cs-detail-page .ftrx__col ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
body.cs-detail-page .ftrx__col a {
  color: rgba(241,247,255,0.78);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  text-decoration: none;
  transition: color 160ms ease-out;
}
body.cs-detail-page .ftrx__col a:hover,
body.cs-detail-page .ftrx__brand-meta a:hover,
body.cs-detail-page .ftrx__legal a:hover {
  color: var(--white);
}
body.cs-detail-page .ftrx__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(52px, 7vw, 86px);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
body.cs-detail-page .ftrx__legal {
  display: flex;
  align-items: center;
  gap: 18px 28px;
  flex-wrap: wrap;
}
body.cs-detail-page .ftrx__legal a,
body.cs-detail-page .ftrx__copy {
  color: rgba(241,247,255,0.58);
  font-size: 12.5px;
  line-height: 20px;
  text-decoration: none;
}
body.cs-detail-page .ftrx__legal a {
  font-family: var(--font-body);
  letter-spacing: 0;
  transition: color 160ms ease-out;
}
body.cs-detail-page .ftrx__copy {
  font-family: var(--font-mono);
  letter-spacing: 0;
}
body.cs-detail-page .aj-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 28px;
  justify-items: center;
  background: linear-gradient(180deg, rgba(7,20,71,0.98), var(--navy));
  border: 1px solid rgba(151,194,248,0.18);
  border-radius: 0;
  color: var(--white);
}
body.cs-detail-page .aj-cta::before,
body.cs-detail-page .aj-cta::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--sky-400);
  pointer-events: none;
}
body.cs-detail-page .aj-cta::before {
  top: 24px;
  right: 24px;
}
body.cs-detail-page .aj-cta::after {
  top: 42px;
  right: 42px;
  opacity: 0.55;
}
body.cs-detail-page .aj-cta .aj-h2 {
  color: var(--white) !important;
  max-width: 620px;
  text-wrap: balance;
}
body.cs-detail-page .aj-cta__headline {
  color: var(--sky-100);
  margin: 0 auto 32px;
  max-width: 620px;
}
body.cs-detail-page .aj-cta .aj-btn--connect {
  background: var(--sky-400);
  color: var(--navy);
  border-color: rgba(255,255,255,0.16);
}
body.cs-detail-page .aj-cta .aj-btn--outline {
  color: var(--white);
  border-color: var(--line-dark-2);
  background: transparent;
}
@media (max-width: 1023px) {
  body.cs-detail-page .ftrx {
    width: min(100% - 48px, 720px);
  }
  body.cs-detail-page .ftrx__cols {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  body.cs-detail-page .ftrx {
    width: calc(100% - 40px);
    padding: 56px 0 28px;
  }
  body.cs-detail-page .ftrx__cols {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  body.cs-detail-page .ftrx__brand-logo {
    width: 142px;
  }
  body.cs-detail-page .ftrx__brand-desc {
    font-size: 15px;
  }
  body.cs-detail-page .ftrx__brand-meta {
    font-size: 12px;
  }
  body.cs-detail-page .ftrx__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  body.cs-detail-page .ftrx__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.cs-kpi-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) {
  .cs-kpi-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .cs-kpi-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.cs-kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 24px;
}
.cs-kpi__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -1.5px;
  line-height: 1;
  background: linear-gradient(135deg, var(--sky-400), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cs-kpi__label {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
}

/* Related case studies rail */
.cs-related { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) {
  .cs-related { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .cs-related { grid-template-columns: 1fr 1fr 1fr; }
}
.cs-related__card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.cs-related__card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
  border-color: var(--line-dark-2);
}
.cs-related__badge {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sky-400);
  background: rgba(151,194,248,0.12);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.cs-related__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: var(--white);
  flex: 1;
}
.cs-related__metric {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--sky-400);
  margin-top: 16px;
}

/* Case study detail system pass */
body.cs-detail-page {
  --font-display: "Poppins", sans-serif;
  --paper: var(--white);
  --paper-soft: #f7fbff;
  --detail-dark: #071447;
  --detail-dark-panel: rgba(151,194,248,0.075);
  --detail-dark-panel-hover: rgba(151,194,248,0.12);
  --detail-dark-line: rgba(151,194,248,0.22);
  --detail-dark-text: rgba(241,247,255,0.78);
  --ink-ink: #1b1c1c;
  --ink-subtle: #657085;
  --line-light: rgba(0,29,107,0.11);
  --line-light-strong: rgba(0,29,107,0.18);
  background: var(--navy);
  color: var(--ink-ink);
}

body.cs-detail-page main {
  background: var(--paper);
}

body.cs-detail-page .aj-section {
  background: var(--paper);
  color: var(--ink-ink);
  padding: clamp(56px, 7vw, 92px) 0;
}

body.cs-detail-page main > section[style] {
  background: var(--paper);
  color: var(--ink-ink);
  padding: 0 0 clamp(48px, 6vw, 78px) !important;
}

body.cs-detail-page .aj-section--hero {
  min-height: clamp(560px, 82svh, 780px);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 54px) 0 110px;
  background: #071447;
  color: var(--white);
  text-align: center;
  border-bottom: 1px solid rgba(151,194,248,0.16);
}

body.cs-detail-page .aj-section--hero::before,
body.cs-detail-page .aj-section--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body.cs-detail-page .aj-section--hero::before {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(7,20,71,0.88) 0%, rgba(7,20,71,0.58) 46%, rgba(7,20,71,0.92) 100%),
    radial-gradient(circle at 50% 38%, rgba(151,194,248,0.17), transparent 36%),
    linear-gradient(180deg, #071447 0%, var(--navy) 100%);
}

body.cs-detail-page .aj-section--hero::after {
  z-index: -1;
  top: auto;
  height: 52%;
  opacity: 0.42;
  background-image:
    radial-gradient(circle, rgba(151,194,248,0.34) 1px, transparent 1.8px),
    linear-gradient(180deg, transparent, rgba(0,29,107,0.78));
  background-size: 28px 28px, 100% 100%;
  mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 100%);
}

body.cs-detail-page .aj-section--hero .aj-container {
  position: relative;
  z-index: 1;
  max-width: 1040px;
}

body.cs-detail-page .aj-section--hero .aj-eyebrow-row {
  width: min(100%, 930px);
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: var(--sky-300);
}

body.cs-detail-page .aj-section--hero .aj-eyebrow-row::before,
body.cs-detail-page .aj-section--hero .aj-eyebrow-row::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: rgba(151,194,248,0.18);
}

body.cs-detail-page .aj-section--hero .aj-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  gap: 9px;
  padding: 4px 10px;
  color: var(--sky-300);
  background: rgba(151,194,248,0.10);
  border: 0;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

body.cs-detail-page .aj-section--hero .aj-eyebrow:first-of-type::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--sky-400);
}

body.cs-detail-page .aj-section--hero .aj-h1 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

body.cs-detail-page .aj-section--hero .aj-lead {
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(241,247,255,0.86);
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.42;
  text-wrap: balance;
}

body.cs-detail-page .cs-metrics {
  width: min(1110px, 100%);
  max-width: 1110px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin: 0 auto;
  transform: translateY(-42px);
  background: var(--paper);
  border: 1px solid var(--line-light);
  box-shadow: 0 1px 2px rgba(0,29,107,0.06), 0 30px 78px -48px rgba(0,29,107,0.46);
}

body.cs-detail-page .cs-metrics__item {
  position: relative;
  max-width: none;
  padding: clamp(22px, 4vw, 34px) clamp(18px, 3vw, 30px);
  text-align: left;
  border-left: 1px solid var(--line-light);
}

body.cs-detail-page .cs-metrics__item:first-child {
  border-left: 0;
}

body.cs-detail-page .cs-metrics:has(.cs-metrics__item:nth-child(1):last-child) {
  grid-template-columns: 1fr;
}

body.cs-detail-page .cs-metrics:has(.cs-metrics__item:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.cs-detail-page .cs-metrics__value,
body.cs-detail-page .cs-kpi__value {
  color: var(--navy);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

body.cs-detail-page .cs-metrics__label,
body.cs-detail-page .cs-kpi__label {
  max-width: 230px;
  margin-top: 10px;
  color: var(--ink-subtle);
  font-size: 13px;
  line-height: 1.42;
}

body.cs-detail-page .cs-metrics__value.is-counting {
  will-change: contents;
}

body.cs-detail-page .cs-meta {
  max-width: 1110px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 1px 2px rgba(0,29,107,0.04), 0 22px 54px -42px rgba(0,29,107,0.24);
}

body.cs-detail-page .cs-meta[data-meta-count="6"],
body.cs-detail-page .cs-meta[data-meta-count="7"] {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

body.cs-detail-page .cs-meta[data-meta-count="6"] .cs-meta__row {
  grid-column: span 4;
}

body.cs-detail-page .cs-meta[data-meta-count="6"] .cs-meta__row:nth-child(-n+3),
body.cs-detail-page .cs-meta[data-meta-count="7"] .cs-meta__row:nth-child(-n+4) {
  border-bottom: 1px solid var(--line-light);
}

body.cs-detail-page .cs-meta[data-meta-count="6"] .cs-meta__row:nth-child(3n),
body.cs-detail-page .cs-meta[data-meta-count="7"] .cs-meta__row:nth-child(4) {
  border-right: 0;
}

body.cs-detail-page .cs-meta[data-meta-count="7"] .cs-meta__row {
  grid-column: span 3;
}

body.cs-detail-page .cs-meta[data-meta-count="7"] .cs-meta__row:nth-child(n+5) {
  grid-column: span 4;
}

body.cs-detail-page .cs-meta__row {
  display: block;
  min-width: 0;
  padding: 22px 20px;
  border-bottom: 0;
  border-right: 1px solid var(--line-light);
}

body.cs-detail-page .cs-meta__row::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,29,107,0.16);
  background-color: var(--sky-50);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  box-shadow: inset 0 0 0 3px rgba(151,194,248,0.14);
}

body.cs-detail-page .cs-meta__row[data-meta-icon="client"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001D6B' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M3.5 19c.5-3.7 2.3-5.5 5.5-5.5s5 1.8 5.5 5.5'/%3E%3Ccircle cx='17' cy='9' r='2.25'/%3E%3Cpath d='M15.5 14.5c2.7-.35 4.5 1.2 5 4'/%3E%3C/svg%3E");
}

body.cs-detail-page .cs-meta__row[data-meta-icon="industry"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001D6B' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20V6l8-3 8 3v14'/%3E%3Cpath d='M2 20h20M8 8h1M8 12h1M8 16h1M15 8h1M15 12h1M15 16h1'/%3E%3C/svg%3E");
}

body.cs-detail-page .cs-meta__row[data-meta-icon="engagement"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001D6B' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='1'/%3E%3Cpath d='M8 7V5.5A1.5 1.5 0 0 1 9.5 4h5A1.5 1.5 0 0 1 16 5.5V7M3 12h18M10 12v2h4v-2'/%3E%3C/svg%3E");
}

body.cs-detail-page .cs-meta__row[data-meta-icon="services"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001D6B' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='5' cy='12' r='2'/%3E%3Ccircle cx='19' cy='6' r='2'/%3E%3Ccircle cx='19' cy='18' r='2'/%3E%3Cpath d='M7 12h4c3 0 3-6 6-6M11 12c3 0 3 6 6 6'/%3E%3C/svg%3E");
}

body.cs-detail-page .cs-meta__row[data-meta-icon="technology"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001D6B' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 20 6v5c0 5-3.1 8.3-8 10-4.9-1.7-8-5-8-10V6l8-3Z'/%3E%3Cpath d='m8.5 12 2.25 2.25L15.75 9'/%3E%3C/svg%3E");
}

body.cs-detail-page .cs-meta__row[data-meta-icon="duration"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001D6B' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='13' r='8'/%3E%3Cpath d='M9 3h6M12 5v2M12 13l3-2M12 13V9'/%3E%3C/svg%3E");
}

body.cs-detail-page .cs-meta__row[data-meta-icon="region"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001D6B' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 10c0 5-7 11-7 11S5 15 5 10a7 7 0 1 1 14 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.25'/%3E%3C/svg%3E");
}

body.cs-detail-page .cs-meta__row[data-meta-icon="scale"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001D6B' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20v-5h4v5M10 20V9h4v11M16 20V4h4v16M2 20h20'/%3E%3C/svg%3E");
}

body.cs-detail-page .cs-meta__row[data-meta-icon="detail"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001D6B' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h9l3 3v15H6Z'/%3E%3Cpath d='M15 3v4h4M9 12h6M9 16h6'/%3E%3C/svg%3E");
}

body.cs-detail-page .cs-meta__row:last-child {
  border-right: 0;
}

body.cs-detail-page .cs-meta__label,
body.cs-detail-page .cs-tags__label {
  color: var(--ink-subtle);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body.cs-detail-page .cs-meta__value {
  margin-top: 12px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

body.cs-detail-page .cs-article {
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
}

body.cs-detail-page .cs-article__section {
  margin-bottom: 0;
}

body.cs-detail-page .cs-article__heading,
body.cs-detail-page .cs-section-head .cs-article__heading {
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

body.cs-detail-page .cs-article p,
body.cs-detail-page .cs-process p {
  color: var(--ink-subtle);
  font-size: 16px;
  line-height: 1.72;
}

body.cs-detail-page .cs-section-head {
  max-width: 1110px;
  margin: 0 auto 22px;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
}

body.cs-detail-page .cs-challenges,
body.cs-detail-page .cs-capabilities,
body.cs-detail-page .cs-process,
body.cs-detail-page .cs-kpi-grid,
body.cs-detail-page .cs-related {
  max-width: 1110px;
  margin: 0 auto;
  gap: 16px;
}

body.cs-detail-page .cs-challenges {
  margin-top: 24px;
}

body.cs-detail-page .cs-challenge,
body.cs-detail-page .cs-capability,
body.cs-detail-page .cs-process__step,
body.cs-detail-page .cs-kpi,
body.cs-detail-page .cs-related__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 0;
  box-shadow: none;
  transition:
    background 180ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 180ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 180ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

body.cs-detail-page .cs-challenge::before,
body.cs-detail-page .cs-capability::before,
body.cs-detail-page .cs-process__step::before,
body.cs-detail-page .cs-kpi::before,
body.cs-detail-page .cs-related__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(151,194,248,0.20), rgba(151,194,248,0.04) 46%, transparent 78%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

body.cs-detail-page .cs-challenge::after,
body.cs-detail-page .cs-capability::after,
body.cs-detail-page .cs-process__step::after,
body.cs-detail-page .cs-kpi::after,
body.cs-detail-page .cs-related__card::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 16px;
  height: 16px;
  border-top: 1px solid var(--sky-400);
  border-right: 1px solid var(--sky-400);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition:
    opacity 180ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {
  body.cs-detail-page .cs-challenge:hover,
  body.cs-detail-page .cs-capability:hover,
  body.cs-detail-page .cs-process__step:hover,
  body.cs-detail-page .cs-kpi:hover,
  body.cs-detail-page .cs-related__card:hover {
    background: var(--paper-soft);
    border-color: rgba(0,29,107,0.25);
    box-shadow: 0 1px 2px rgba(0,29,107,0.06), 0 22px 52px -34px rgba(0,29,107,0.38);
    transform: translateY(-2px);
  }

  body.cs-detail-page .cs-challenge:hover::before,
  body.cs-detail-page .cs-challenge:hover::after,
  body.cs-detail-page .cs-capability:hover::before,
  body.cs-detail-page .cs-capability:hover::after,
  body.cs-detail-page .cs-process__step:hover::before,
  body.cs-detail-page .cs-process__step:hover::after,
  body.cs-detail-page .cs-kpi:hover::before,
  body.cs-detail-page .cs-kpi:hover::after,
  body.cs-detail-page .cs-related__card:hover::before,
  body.cs-detail-page .cs-related__card:hover::after {
    opacity: 1;
  }

  body.cs-detail-page .cs-challenge:hover::after,
  body.cs-detail-page .cs-capability:hover::after,
  body.cs-detail-page .cs-process__step:hover::after,
  body.cs-detail-page .cs-kpi:hover::after,
  body.cs-detail-page .cs-related__card:hover::after {
    transform: translate(0, 0);
  }
}

body.cs-detail-page .cs-challenge__title,
body.cs-detail-page .cs-capability__title,
body.cs-detail-page .cs-process__title,
body.cs-detail-page .cs-related__title {
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

body.cs-detail-page .cs-challenge p,
body.cs-detail-page .cs-capability__body,
body.cs-detail-page .cs-related__metric {
  color: var(--ink-subtle);
}

body.cs-detail-page .cs-process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.cs-detail-page .cs-process__step {
  min-height: 188px;
  padding: 24px;
  border-bottom: 1px solid var(--line-light);
}

body.cs-detail-page .cs-process__num {
  width: 38px;
  height: 38px;
  border-radius: 0;
  color: var(--navy);
  background: var(--sky-400);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}

body.cs-detail-page .cs-capabilities {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.cs-detail-page .cs-results {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--paper);
}

body.cs-detail-page .cs-results li {
  color: var(--navy);
  position: relative;
  z-index: 1;
  padding: 18px 24px 18px 54px;
  border-bottom: 1px solid var(--line-light);
  font-size: 16px;
  font-weight: 500;
}

body.cs-detail-page .cs-results li::before {
  left: 24px;
  top: 25px;
  width: 8px;
  height: 8px;
  background: var(--sky-400);
}

body.cs-detail-page .cs-tags {
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line-light);
  background: var(--paper-soft);
}

body.cs-detail-page .cs-tags__group {
  min-width: min(260px, 100%);
}

body.cs-detail-page .cs-tags__list {
  margin-top: 12px;
}

body.cs-detail-page .aj-tag--on-dark,
body.cs-detail-page .cs-related__badge {
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 0;
  border: 1px solid rgba(0,29,107,0.10);
  background: var(--sky-50);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

body.cs-detail-page main > section[style]:has(.cs-process) {
  background: var(--detail-dark);
  color: var(--white);
  padding: clamp(28px, 3.2vw, 40px) 0 clamp(64px, 7vw, 96px) !important;
}

body.cs-detail-page main > section[style]:has(.cs-results),
body.cs-detail-page main > section[style]:has(.cs-kpi-grid) {
  background: var(--detail-dark);
  color: var(--white);
  padding: clamp(64px, 7vw, 96px) 0 !important;
}

body.cs-detail-page main > section[style]:has(.cs-process) + section[style],
body.cs-detail-page main > section[style]:has(.cs-tags) {
  padding-top: clamp(52px, 6vw, 76px) !important;
}

body.cs-detail-page main > section[style]:has(.cs-process) .cs-section-head,
body.cs-detail-page main > section[style]:has(.cs-results) .cs-section-head,
body.cs-detail-page main > section[style]:has(.cs-kpi-grid) .cs-section-head {
  border-top-color: var(--detail-dark-line);
}

body.cs-detail-page main > section[style]:has(.cs-process) .cs-section-head {
  padding-top: 0;
  border-top: 0;
}

body.cs-detail-page main > section[style]:has(.cs-process) .cs-article__heading,
body.cs-detail-page main > section[style]:has(.cs-process) .cs-section-head .cs-article__heading,
body.cs-detail-page main > section[style]:has(.cs-results) .cs-article__heading,
body.cs-detail-page main > section[style]:has(.cs-results) .cs-section-head .cs-article__heading,
body.cs-detail-page main > section[style]:has(.cs-kpi-grid) .cs-article__heading,
body.cs-detail-page main > section[style]:has(.cs-kpi-grid) .cs-section-head .cs-article__heading {
  color: var(--white);
  border-bottom-color: var(--detail-dark-line);
}

body.cs-detail-page main > section[style]:has(.cs-process) .cs-process__step {
  background: var(--detail-dark-panel);
  border-color: var(--detail-dark-line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

body.cs-detail-page main > section[style]:has(.cs-results) .cs-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.cs-detail-page main > section[style]:has(.cs-results) .cs-results li {
  min-height: 132px;
  display: flex;
  align-items: flex-start;
  padding: 26px 26px 26px 58px;
  border: 1px solid var(--detail-dark-line);
  background: var(--detail-dark-panel);
  font-size: 16px;
  line-height: 1.54;
}

body.cs-detail-page main > section[style]:has(.cs-results) .cs-results li::before {
  left: 28px;
  top: 34px;
}

body.cs-detail-page main > section[style]:has(.cs-results) .cs-article {
  max-width: 1110px;
}

body.cs-detail-page main > section[style]:has(.cs-tags) .cs-article {
  max-width: 1110px;
}

body.cs-detail-page main > section[style]:has(.cs-tags) .cs-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  background: var(--paper);
  border-color: var(--line-light);
  box-shadow: 0 1px 2px rgba(0,29,107,0.04), 0 26px 64px -48px rgba(0,29,107,0.28);
}

body.cs-detail-page main > section[style]:has(.cs-tags) .cs-tags__group {
  min-width: 0;
  padding: 26px 28px 28px;
  border-right: 1px solid var(--line-light);
}

body.cs-detail-page main > section[style]:has(.cs-tags) .cs-tags__group:last-child {
  border-right: 0;
}

body.cs-detail-page main > section[style]:has(.cs-tags) .aj-tag--on-dark {
  background: rgba(151,194,248,0.14);
  border-color: rgba(0,29,107,0.13);
}

body.cs-detail-page main > section[style]:has(.cs-tags) .aj-tag--on-dark[href]:hover {
  background: var(--sky-400);
}

body.cs-detail-page main > section[style]:has(.cs-process) .cs-process__step {
  border-bottom: 0;
}

body.cs-detail-page main > section[style]:has(.cs-process) .cs-process__title {
  color: var(--white);
}

body.cs-detail-page main > section[style]:has(.cs-process) .cs-process p,
body.cs-detail-page main > section[style]:has(.cs-results) .cs-results li {
  color: var(--detail-dark-text);
}

body.cs-detail-page main > section[style]:has(.cs-results) .cs-results li {
  border-bottom-color: var(--detail-dark-line);
}

body.cs-detail-page main > section[style]:has(.cs-results) .cs-results li:last-child {
  border-bottom: 0;
}

body.cs-detail-page main > section[style]:has(.cs-results) .cs-results li::before {
  box-shadow: 0 0 0 5px rgba(151,194,248,0.09);
}

body.cs-detail-page main > section[style]:has(.cs-process) .cs-process__step::before {
  display: none;
}

body.cs-detail-page main > section[style]:has(.cs-process) .cs-process__step::after {
  border-color: rgba(151,194,248,0.78);
}

body.cs-detail-page main > section[style]:has(.cs-kpi-grid) .cs-kpi {
  background: var(--detail-dark-panel);
  border-color: var(--detail-dark-line);
}

body.cs-detail-page main > section[style]:has(.cs-kpi-grid) .cs-kpi__value {
  color: var(--white);
  -webkit-text-fill-color: currentColor;
}

body.cs-detail-page main > section[style]:has(.cs-kpi-grid) .cs-kpi__label {
  color: var(--detail-dark-text);
}

@media (hover: hover) and (pointer: fine) {
  body.cs-detail-page main > section[style]:has(.cs-process) .cs-process__step:hover,
  body.cs-detail-page main > section[style]:has(.cs-kpi-grid) .cs-kpi:hover {
    background: var(--detail-dark-panel-hover);
    border-color: rgba(151,194,248,0.38);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 20px 54px -44px rgba(151,194,248,0.48);
  }

  body.cs-detail-page main > section[style]:has(.cs-process) .cs-process__step:hover::before {
    opacity: 0;
  }
}

body.cs-detail-page main > section:has(.aj-cta) {
  background: var(--detail-dark);
  padding: clamp(44px, 5vw, 64px) 0 !important;
  border-top: 1px solid rgba(151,194,248,0.14);
}

body.cs-detail-page .aj-cta {
  max-width: 1110px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 236px);
  grid-template-areas:
    "eyebrow actions"
    "title actions"
    "copy actions";
  align-items: center;
  justify-items: start;
  gap: 10px clamp(28px, 4vw, 56px);
  padding: clamp(30px, 4vw, 46px) clamp(28px, 5vw, 64px);
  background: rgba(151,194,248,0.055);
  border-color: rgba(151,194,248,0.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 24px 70px -58px rgba(151,194,248,0.42);
  text-align: left;
}

body.cs-detail-page .aj-cta .aj-eyebrow-row {
  grid-area: eyebrow;
  width: min(100%, 560px);
  margin: 0 0 4px !important;
  justify-content: flex-start;
  color: var(--sky-300);
}

body.cs-detail-page .aj-cta .aj-eyebrow-row::before,
body.cs-detail-page .aj-cta .aj-eyebrow-row::after {
  background: rgba(151,194,248,0.18);
}

body.cs-detail-page .aj-cta .aj-eyebrow-row::before {
  display: none;
}

body.cs-detail-page .aj-cta .aj-eyebrow--on-light {
  color: var(--sky-300);
  background: rgba(151,194,248,0.10);
}

body.cs-detail-page .aj-cta .aj-eyebrow--on-light::before {
  background: var(--sky-400);
}

body.cs-detail-page .aj-cta .aj-h2 {
  grid-area: title;
  margin: 0 !important;
  max-width: 760px;
  font-size: clamp(31px, 3.6vw, 44px);
  line-height: 1.04;
  text-align: left;
}

body.cs-detail-page .aj-cta__headline {
  grid-area: copy;
  max-width: 640px;
  margin: 8px 0 0;
  text-align: left;
}

body.cs-detail-page .aj-cta > div:last-child {
  grid-area: actions;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: flex-end !important;
  gap: 12px !important;
  width: min(100%, 236px);
  min-width: 0;
}

body.cs-detail-page .aj-cta .aj-btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1023px) {
  body.cs-detail-page .cs-meta[data-meta-count] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.cs-detail-page .cs-meta[data-meta-count] .cs-meta__row,
  body.cs-detail-page .cs-meta[data-meta-count] .cs-meta__row:nth-child(n) {
    grid-column: span 1;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  body.cs-detail-page .cs-meta[data-meta-count] .cs-meta__row:nth-child(2n) {
    border-right: 0;
  }

  body.cs-detail-page .cs-meta[data-meta-count="5"] .cs-meta__row:last-child,
  body.cs-detail-page .cs-meta[data-meta-count="7"] .cs-meta__row:last-child {
    grid-column: span 2;
    border-right: 0;
  }

  body.cs-detail-page .cs-meta[data-meta-count] .cs-meta__row:last-child {
    border-bottom: 0;
  }

  body.cs-detail-page .cs-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.cs-detail-page .cs-meta__row {
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  body.cs-detail-page .cs-meta__row:nth-child(2n) {
    border-right: 0;
  }

  body.cs-detail-page .cs-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 809px) {
  body.cs-detail-page main > section[style] {
    padding-bottom: 44px !important;
  }

  body.cs-detail-page .aj-section--hero {
    min-height: 560px;
    padding: calc(var(--nav-h) + 42px) 0 88px;
  }

  body.cs-detail-page .aj-section--hero .aj-eyebrow-row {
    margin-bottom: 22px;
  }

  body.cs-detail-page .aj-section--hero .aj-eyebrow {
    font-size: 10px;
    letter-spacing: 1.4px;
    padding: 4px 8px;
  }

  body.cs-detail-page .aj-section--hero .aj-h1 {
    font-size: clamp(32px, 10vw, 46px);
    line-height: 1.08;
  }

  body.cs-detail-page .aj-section--hero .aj-lead {
    font-size: 16px;
    line-height: 1.55;
  }

  body.cs-detail-page .cs-metrics,
  body.cs-detail-page .cs-metrics:has(.cs-metrics__item:nth-child(2):last-child) {
    grid-template-columns: 1fr;
    transform: translateY(-22px);
  }

  body.cs-detail-page .cs-metrics__item {
    display: grid;
    grid-template-columns: minmax(92px, auto) 1fr;
    align-items: center;
    gap: 14px;
    padding: 17px 18px;
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  body.cs-detail-page .cs-metrics__item:first-child {
    border-top: 0;
  }

  body.cs-detail-page .cs-metrics__value {
    font-size: clamp(30px, 8vw, 38px);
  }

  body.cs-detail-page .cs-metrics__label {
    max-width: none;
    margin-top: 0;
    font-size: 12.5px;
  }

  body.cs-detail-page .cs-meta,
  body.cs-detail-page .cs-process,
  body.cs-detail-page .cs-capabilities,
  body.cs-detail-page .cs-kpi-grid,
  body.cs-detail-page .cs-related {
    grid-template-columns: 1fr;
  }

  body.cs-detail-page .cs-meta__row,
  body.cs-detail-page .cs-meta__row:nth-child(2n) {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  body.cs-detail-page .cs-meta__row::before {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  body.cs-detail-page .cs-meta__label,
  body.cs-detail-page .cs-meta__value {
    grid-column: 2;
  }

  body.cs-detail-page .cs-meta__value {
    margin-top: 8px;
  }

  body.cs-detail-page .cs-meta__row:last-child {
    border-bottom: 0;
  }

  body.cs-detail-page .cs-process__step {
    min-height: 0;
  }

  body.cs-detail-page main > section[style]:has(.cs-results),
  body.cs-detail-page main > section[style]:has(.cs-kpi-grid),
  body.cs-detail-page main > section:has(.aj-cta) {
    padding: 52px 0 !important;
  }

  body.cs-detail-page main > section[style]:has(.cs-process) {
    padding: 32px 0 48px !important;
  }

  body.cs-detail-page main > section[style]:has(.cs-process) + section[style],
  body.cs-detail-page main > section[style]:has(.cs-tags) {
    padding-top: 44px !important;
  }

  body.cs-detail-page main > section[style]:has(.cs-results) .cs-results {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.cs-detail-page .cs-results li {
    padding-right: 18px;
  }

  body.cs-detail-page main > section[style]:has(.cs-results) .cs-results li {
    min-height: 0;
    padding: 22px 20px 22px 52px;
  }

  body.cs-detail-page main > section[style]:has(.cs-results) .cs-results li::before {
    left: 24px;
    top: 29px;
  }

  body.cs-detail-page main > section[style]:has(.cs-tags) .cs-tags {
    grid-template-columns: 1fr;
  }

  body.cs-detail-page main > section[style]:has(.cs-tags) .cs-tags__group {
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  body.cs-detail-page main > section[style]:has(.cs-tags) .cs-tags__group:last-child {
    border-bottom: 0;
  }

  body.cs-detail-page .aj-cta {
    gap: 20px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "copy"
      "actions";
    justify-items: stretch;
    padding: 38px 20px;
  }

  body.cs-detail-page .aj-cta::before {
    top: 16px;
    right: 16px;
  }

  body.cs-detail-page .aj-cta::after {
    top: 32px;
    right: 32px;
  }

  body.cs-detail-page .aj-cta .aj-h2,
  body.cs-detail-page .aj-cta__headline {
    max-width: 100%;
  }

  body.cs-detail-page .aj-cta .aj-h2,
  body.cs-detail-page .aj-cta__headline {
    text-align: left;
  }

  body.cs-detail-page .aj-cta .aj-eyebrow-row {
    width: 100%;
  }

  body.cs-detail-page .aj-cta > div:last-child {
    width: 100%;
    flex-direction: column;
    gap: 12px !important;
  }

  body.cs-detail-page .aj-cta .aj-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Source-driven case-study visuals */
body.cs-detail-page .cs-process--roadmap {
  --roadmap-edge: 12.5%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: start;
  padding: 0;
}

body.cs-detail-page .cs-process--roadmap::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 23px;
  right: var(--roadmap-edge);
  left: var(--roadmap-edge);
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(151,194,248,0.24),
    rgba(151,194,248,0.72) 12%,
    rgba(151,194,248,0.72) 88%,
    rgba(151,194,248,0.24)
  );
}

body.cs-detail-page .cs-process--roadmap.cs-process--count-5 {
  --roadmap-edge: 10%;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.cs-detail-page .cs-process--roadmap.cs-process--count-6 {
  --roadmap-edge: 8.333%;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

body.cs-detail-page .cs-process--roadmap .cs-process__step {
  display: contents;
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

body.cs-detail-page main > section[style]:has(.cs-process) .cs-process--roadmap .cs-process__step::before {
  display: none;
}

body.cs-detail-page main > section[style]:has(.cs-process) .cs-process--roadmap .cs-process__step::after {
  display: none;
}

body.cs-detail-page .cs-process--roadmap .cs-process__trigger {
  position: relative;
  z-index: 2;
  grid-row: 1;
  display: flex;
  align-self: stretch;
  width: 100%;
  min-width: 0;
  min-height: 158px;
  padding: 0 14px 40px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  color: var(--detail-dark-text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--detail-dark-line);
  cursor: pointer;
  transition:
    color 180ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 180ms cubic-bezier(0.23, 1, 0.32, 1),
    background 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

body.cs-detail-page .cs-process--roadmap .cs-process__step:nth-child(1) .cs-process__trigger {
  grid-column: 1;
}

body.cs-detail-page .cs-process--roadmap .cs-process__step:nth-child(2) .cs-process__trigger {
  grid-column: 2;
}

body.cs-detail-page .cs-process--roadmap .cs-process__step:nth-child(3) .cs-process__trigger {
  grid-column: 3;
}

body.cs-detail-page .cs-process--roadmap .cs-process__step:nth-child(4) .cs-process__trigger {
  grid-column: 4;
}

body.cs-detail-page .cs-process--roadmap .cs-process__step:nth-child(5) .cs-process__trigger {
  grid-column: 5;
}

body.cs-detail-page .cs-process--roadmap .cs-process__step:nth-child(6) .cs-process__trigger {
  grid-column: 6;
}

body.cs-detail-page .cs-process--roadmap .cs-process__marker {
  position: relative;
  z-index: 2;
  display: flex;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--sky-200);
  background: var(--detail-dark);
  border: 1px solid rgba(151,194,248,0.54);
  box-shadow: 0 0 0 8px var(--detail-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition:
    color 180ms cubic-bezier(0.23, 1, 0.32, 1),
    background 180ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 180ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 180ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

body.cs-detail-page .cs-process--roadmap .cs-process__trigger-label {
  display: flex;
  min-height: 0;
  max-width: 190px;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.35vw, 17px);
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
  text-wrap: balance;
}

body.cs-detail-page .cs-process--roadmap.cs-process--count-6 .cs-process__trigger {
  padding-right: 8px;
  padding-left: 8px;
}

body.cs-detail-page .cs-process--roadmap.cs-process--count-6 .cs-process__trigger-label {
  font-size: clamp(13px, 1.15vw, 15px);
}

body.cs-detail-page .cs-process--roadmap .cs-process__action {
  position: absolute;
  right: 50%;
  bottom: 10px;
  display: inline-flex;
  min-height: 28px;
  padding: 6px 9px;
  align-items: center;
  gap: 7px;
  color: rgba(221,235,255,0.72);
  border: 1px solid rgba(151,194,248,0.24);
  background: rgba(151,194,248,0.055);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  transform: translateX(50%);
  transition:
    color 180ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 180ms cubic-bezier(0.23, 1, 0.32, 1),
    background 180ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

body.cs-detail-page .cs-process--roadmap .cs-process__toggle {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

body.cs-detail-page .cs-process--roadmap .cs-process__toggle::before,
body.cs-detail-page .cs-process--roadmap .cs-process__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

body.cs-detail-page .cs-process--roadmap .cs-process__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

body.cs-detail-page .cs-process--roadmap .cs-process__trigger[aria-expanded="true"] {
  color: var(--white);
  border-bottom-color: var(--sky-400);
  background: rgba(151,194,248,0.045);
}

body.cs-detail-page .cs-process--roadmap .cs-process__trigger[aria-expanded="true"] .cs-process__marker {
  color: var(--navy);
  background: var(--sky-400);
  border-color: rgba(255,255,255,0.58);
  box-shadow: 0 0 0 8px var(--detail-dark), 0 14px 32px -14px rgba(151,194,248,0.88);
}

body.cs-detail-page .cs-process--roadmap .cs-process__trigger[aria-expanded="true"] .cs-process__action {
  color: var(--navy);
  border-color: var(--sky-400);
  background: var(--sky-400);
}

body.cs-detail-page .cs-process--roadmap .cs-process__trigger[aria-expanded="true"] .cs-process__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

body.cs-detail-page .cs-process--roadmap .cs-process__trigger:focus-visible {
  outline: 2px solid var(--sky-400);
  outline-offset: -2px;
}

body.cs-detail-page .cs-process--roadmap .cs-process__panel {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 22px;
  border: 1px solid var(--detail-dark-line);
  background: var(--detail-dark-panel);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  animation: cs-roadmap-panel-in 220ms cubic-bezier(0.23, 1, 0.32, 1) both;
}

body.cs-detail-page .cs-process--roadmap .cs-process__panel[hidden] {
  display: none;
}

body.cs-detail-page .cs-process--roadmap .cs-process__content {
  max-width: 880px;
  min-height: 0;
  padding: 30px 32px 32px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.cs-detail-page .cs-process--roadmap .cs-process__content::after {
  display: none;
}

body.cs-detail-page .cs-process--roadmap .cs-process__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
}

body.cs-detail-page .cs-process--roadmap .cs-process__source-index {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.cs-detail-page .cs-process--roadmap .cs-process__phase {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  text-wrap: balance;
}

body.cs-detail-page .cs-process--roadmap .cs-process__description {
  display: block;
  max-width: 72ch;
  color: var(--detail-dark-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
}

body.cs-detail-page .cs-process--roadmap .cs-process__content > p {
  max-width: 72ch;
  margin-top: 12px;
  color: var(--detail-dark-text);
  font-size: 16px;
  line-height: 1.68;
}

body.cs-detail-page main > section[style]:has(.cs-process--roadmap) .cs-article p {
  color: var(--detail-dark-text);
}

@keyframes cs-roadmap-panel-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.cs-detail-page .cs-results-section .cs-article__section {
  margin-bottom: 0;
}

body.cs-detail-page .cs-metrics--results {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 30px auto 0;
  transform: none;
  background: var(--sky-50);
  border-color: rgba(0,29,107,0.14);
  box-shadow: none;
}

body.cs-detail-page .cs-metrics--results .cs-metrics__item {
  display: block;
  min-width: 0;
  padding: 0;
  text-align: center;
  border-left-color: rgba(0,29,107,0.14);
}

body.cs-detail-page .cs-metrics--results .cs-metrics__value {
  display: flex;
  min-height: 72px;
  padding: 16px 18px 14px;
  align-items: center;
  justify-content: center;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1;
}

body.cs-detail-page .cs-metrics--results .cs-metrics__label {
  display: flex;
  min-height: 62px;
  max-width: none;
  margin: 0;
  padding: 11px 18px 12px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(0,29,107,0.12);
  font-size: 12.5px;
  line-height: 1.4;
  text-align: center;
}

body.cs-detail-page .cs-capabilities--pipeline {
  position: relative;
  counter-reset: solution-pipeline;
}

body.cs-detail-page .cs-capabilities--pipeline.cs-capabilities--count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.cs-detail-page .cs-capabilities--pipeline.cs-capabilities--count-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.cs-detail-page .cs-capabilities--pipeline .cs-capability {
  min-height: 232px;
  padding: 72px 24px 26px;
  overflow: visible;
  counter-increment: solution-pipeline;
}

body.cs-detail-page .cs-capabilities--pipeline .cs-capability::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 31px -17px auto auto;
  display: block;
  width: 17px;
  height: 1px;
  background: rgba(0,29,107,0.34);
  opacity: 1;
  pointer-events: none;
}

body.cs-detail-page .cs-capabilities--pipeline .cs-capability:last-child::before {
  display: none;
}

body.cs-detail-page .cs-capabilities--pipeline .cs-capability::after {
  content: counter(solution-pipeline, decimal-leading-zero);
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 22px;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--sky-100);
  border: 1px solid rgba(0,29,107,0.18);
  opacity: 1;
  transform: none;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

body.cs-detail-page .cs-capabilities--pipeline .cs-capability__body {
  position: relative;
  z-index: 1;
  color: var(--ink-subtle);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}

body.cs-detail-page .cs-capabilities--pipeline .cs-capability__title {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.24;
  text-wrap: balance;
}

body.cs-detail-page .cs-capabilities--pipeline .cs-capability__description {
  display: block;
}

@media (min-width: 1100px) {
  body.cs-detail-page .cs-capabilities--pipeline.cs-capabilities--count-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 810px) and (max-width: 1099px) {
  body.cs-detail-page .cs-capabilities--pipeline.cs-capabilities--count-4 .cs-capability::before {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  body.cs-detail-page .cs-process--roadmap .cs-process__trigger:hover {
    color: var(--white);
    background: rgba(151,194,248,0.035);
  }

  body.cs-detail-page .cs-process--roadmap .cs-process__trigger:hover .cs-process__marker {
    color: var(--white);
    border-color: rgba(151,194,248,0.84);
    transform: translateY(-2px);
  }

  body.cs-detail-page .cs-process--roadmap .cs-process__trigger:hover .cs-process__action {
    color: var(--white);
    border-color: rgba(151,194,248,0.68);
    background: rgba(151,194,248,0.12);
    transform: translate(50%, -1px);
  }
}

@media (max-width: 809px) {
  body.cs-detail-page .cs-meta[data-meta-count] {
    grid-template-columns: 1fr;
  }

  body.cs-detail-page .cs-meta[data-meta-count] .cs-meta__row,
  body.cs-detail-page .cs-meta[data-meta-count] .cs-meta__row:nth-child(n),
  body.cs-detail-page .cs-meta[data-meta-count="5"] .cs-meta__row:last-child,
  body.cs-detail-page .cs-meta[data-meta-count="7"] .cs-meta__row:last-child {
    grid-column: span 1;
    border-right: 0;
  }

  body.cs-detail-page .cs-process--roadmap {
    display: block;
    gap: 0;
  }

  body.cs-detail-page .cs-process--roadmap::before {
    display: none;
  }

  body.cs-detail-page .cs-process--roadmap .cs-process__step {
    display: block;
  }

  body.cs-detail-page .cs-process--roadmap .cs-process__trigger {
    grid-row: auto;
    display: grid;
    width: 100%;
    min-height: 0;
    padding: 18px 14px 16px;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    justify-content: stretch;
    gap: 5px 13px;
    text-align: left;
  }

  body.cs-detail-page .cs-process--roadmap .cs-process__marker {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
    margin-top: 1px;
    box-shadow: none;
  }

  body.cs-detail-page .cs-process--roadmap .cs-process__trigger-label {
    display: block;
    grid-column: 2;
    grid-row: 1;
    max-width: none;
    min-height: 0;
    color: inherit;
    font-size: 16px;
    line-height: 1.3;
    text-align: left;
    text-wrap: pretty;
  }

  body.cs-detail-page .cs-process--roadmap .cs-process__action-label {
    display: inline;
  }

  body.cs-detail-page .cs-process--roadmap .cs-process__action {
    position: static;
    grid-column: 2;
    grid-row: 2;
    width: fit-content;
    min-height: 26px;
    padding: 5px 8px;
    gap: 6px;
    justify-self: start;
    transform: none;
  }

  body.cs-detail-page .cs-process--roadmap .cs-process__trigger:hover .cs-process__action {
    transform: none;
  }

  body.cs-detail-page .cs-process--roadmap .cs-process__panel {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
    border-top: 0;
  }

  body.cs-detail-page .cs-process--roadmap .cs-process__content {
    padding: 22px 18px 24px;
  }

  body.cs-detail-page .cs-process--roadmap .cs-process__phase {
    font-size: 19px;
  }

  body.cs-detail-page .cs-process--roadmap .cs-process__description,
  body.cs-detail-page .cs-process--roadmap .cs-process__content > p {
    font-size: 15px;
    line-height: 1.64;
  }

  body.cs-detail-page .cs-metrics--results {
    grid-template-columns: 1fr;
    margin-top: 24px;
    transform: none;
  }

  body.cs-detail-page .cs-metrics--results .cs-metrics__item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    border-top: 1px solid rgba(0,29,107,0.14);
    border-left: 0;
  }

  body.cs-detail-page .cs-metrics--results .cs-metrics__item:first-child {
    border-top: 0;
  }

  body.cs-detail-page .cs-metrics--results .cs-metrics__value {
    width: 100%;
    min-width: 0 !important;
    min-height: 76px;
    padding: 14px 12px;
    font-size: 32px;
  }

  body.cs-detail-page .cs-metrics--results .cs-metrics__label {
    min-height: 76px;
    padding: 13px 16px;
    justify-content: flex-start;
    border-top: 0;
    border-left: 1px solid rgba(0,29,107,0.12);
    text-align: left;
  }

  body.cs-detail-page .cs-capabilities--pipeline.cs-capabilities--count-3,
  body.cs-detail-page .cs-capabilities--pipeline.cs-capabilities--count-4 {
    grid-template-columns: 1fr;
  }

  body.cs-detail-page .cs-capabilities--pipeline .cs-capability {
    min-height: 0;
    padding: 66px 20px 22px;
  }

  body.cs-detail-page .cs-capabilities--pipeline .cs-capability::before {
    inset: auto auto -17px 38px;
    display: block;
    width: 1px;
    height: 17px;
  }

  body.cs-detail-page .cs-capabilities--pipeline .cs-capability:last-child::before {
    display: none;
  }

  body.cs-detail-page .cs-capabilities--pipeline .cs-capability::after {
    top: 15px;
    left: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.cs-detail-page .cs-challenge,
  body.cs-detail-page .cs-capability,
  body.cs-detail-page .cs-process__step,
  body.cs-detail-page .cs-kpi,
  body.cs-detail-page .cs-related__card,
  body.cs-detail-page .cs-challenge::before,
  body.cs-detail-page .cs-challenge::after,
  body.cs-detail-page .cs-capability::before,
  body.cs-detail-page .cs-capability::after,
  body.cs-detail-page .cs-process__step::before,
  body.cs-detail-page .cs-process__step::after,
  body.cs-detail-page .cs-kpi::before,
  body.cs-detail-page .cs-kpi::after,
  body.cs-detail-page .cs-related__card::before,
  body.cs-detail-page .cs-related__card::after,
  body.cs-detail-page .cs-process--roadmap .cs-process__content,
  body.cs-detail-page .cs-process--roadmap .cs-process__trigger,
  body.cs-detail-page .cs-process--roadmap .cs-process__marker,
  body.cs-detail-page .cs-process--roadmap .cs-process__action,
  body.cs-detail-page .cs-process--roadmap .cs-process__toggle::before,
  body.cs-detail-page .cs-process--roadmap .cs-process__toggle::after {
    transition: none;
  }

  body.cs-detail-page .cs-process--roadmap .cs-process__panel {
    animation: none;
  }
}

/* Shared evidence-first case-study template.
   Context comes from case-study-detail.js; visual decoration never stands in for meaning. */
body.cs-detail-page.cs-template-page {
  --cs-template-navy: #071447;
  --cs-template-navy-strong: #001d6b;
  --cs-template-sky: #97c2f8;
  --cs-template-mist: #eef5ff;
  --cs-template-paper: #f8fbff;
  --cs-template-ink: #111d41;
  --cs-template-muted: #5d6887;
  color: var(--cs-template-ink);
  background: var(--cs-template-paper);
}

body.cs-detail-page.cs-template-page .aj-section--hero .aj-eyebrow-row::before,
body.cs-detail-page.cs-template-page .aj-section--hero .aj-eyebrow-row::after,
body.cs-detail-page.cs-template-page .aj-eyebrow::before,
body.cs-detail-page.cs-template-page .aj-cta::before,
body.cs-detail-page.cs-template-page .aj-cta::after {
  display: none;
}

body.cs-detail-page.cs-template-page .aj-section--hero .aj-eyebrow-row {
  justify-content: center;
  gap: 0;
}

body.cs-detail-page.cs-template-page .aj-section--hero .aj-h1,
body.cs-detail-page.cs-template-page .cs-article__heading,
body.cs-detail-page.cs-template-page .cs-process__trigger-label,
body.cs-detail-page.cs-template-page .cs-capability__title,
body.cs-detail-page.cs-template-page .cs-metrics__label {
  text-wrap: balance;
}

body.cs-detail-page.cs-template-page .aj-section--hero .aj-lead,
body.cs-detail-page.cs-template-page .cs-article p,
body.cs-detail-page.cs-template-page .cs-process__content > p,
body.cs-detail-page.cs-template-page .cs-capability__description {
  text-wrap: pretty;
  orphans: 3;
  widows: 3;
}

body.cs-detail-page.cs-template-page .cs-template-meta-section {
  padding: clamp(32px, 5vw, 58px) 0 !important;
  background: #ffffff;
}

body.cs-detail-page.cs-template-page .cs-meta[data-meta-count] {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
}

body.cs-detail-page.cs-template-page .cs-meta[data-meta-count] .cs-meta__row,
body.cs-detail-page.cs-template-page .cs-meta[data-meta-count] .cs-meta__row:nth-child(n) {
  grid-column: auto;
  min-width: 0;
  min-height: 164px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 0;
  background: var(--cs-template-mist);
}

@media (min-width: 1100px) {
  body.cs-detail-page.cs-template-page .cs-meta[data-meta-count="5"] {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  body.cs-detail-page.cs-template-page .cs-meta[data-meta-count="6"] {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  body.cs-detail-page.cs-template-page .cs-meta[data-meta-count="7"] {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

body.cs-detail-page.cs-template-page .cs-meta__row::before {
  position: static;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 0;
  background-color: #ffffff;
  background-size: 21px 21px;
  box-shadow: 0 8px 24px -18px rgba(0, 29, 107, 0.62);
}

body.cs-detail-page.cs-template-page .cs-meta__label {
  margin-top: auto;
  color: var(--cs-template-muted);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.11em;
}

body.cs-detail-page.cs-template-page .cs-meta__value {
  color: var(--cs-template-navy-strong);
  font-size: 14px;
  font-weight: 570;
  line-height: 1.5;
}

body.cs-detail-page.cs-template-page .cs-template-section,
body.cs-detail-page.cs-template-page .cs-template-capability-section {
  padding: clamp(70px, 8vw, 116px) 0 !important;
  background: #ffffff;
}

body.cs-detail-page.cs-template-page .cs-template-background-section,
body.cs-detail-page.cs-template-page .cs-template-solution-section {
  background: #ffffff;
}

body.cs-detail-page.cs-template-page .cs-template-opportunity-section {
  background: var(--cs-template-mist);
}

body.cs-detail-page.cs-template-page .cs-template-section .cs-article,
body.cs-detail-page.cs-template-page .cs-template-solution-section .cs-article {
  max-width: 1180px;
}

body.cs-detail-page.cs-template-page .cs-template-background-section .cs-article__section,
body.cs-detail-page.cs-template-page .cs-template-opportunity-section .cs-article__section,
body.cs-detail-page.cs-template-page .cs-template-solution-section .cs-article__section {
  display: grid;
  grid-template-columns: minmax(230px, 0.48fr) minmax(0, 1fr);
  column-gap: clamp(48px, 8vw, 118px);
  row-gap: 18px;
  align-items: start;
}

body.cs-detail-page.cs-template-page .cs-template-background-section .cs-article__heading,
body.cs-detail-page.cs-template-page .cs-template-opportunity-section .cs-article__heading,
body.cs-detail-page.cs-template-page .cs-template-solution-section .cs-article__heading {
  grid-column: 1;
  grid-row: 1 / span 20;
  align-self: start;
  position: static;
}

body.cs-detail-page.cs-template-page .cs-template-background-section .cs-article p,
body.cs-detail-page.cs-template-page .cs-template-opportunity-section .cs-article p,
body.cs-detail-page.cs-template-page .cs-template-solution-section .cs-article p {
  grid-column: 2;
  max-width: 65ch;
  margin: 0;
  color: var(--cs-template-ink);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.78;
}

body.cs-detail-page.cs-template-page .cs-template-heading-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0 14px 0 0;
  vertical-align: middle;
  color: var(--cs-template-navy-strong);
  background: var(--cs-template-mist);
}

body.cs-detail-page.cs-template-page .cs-template-opportunity-section .cs-template-heading-icon {
  background: #ffffff;
}

body.cs-detail-page.cs-template-page .cs-template-heading-icon svg,
body.cs-detail-page.cs-template-page .cs-process__context-icon svg,
body.cs-detail-page.cs-template-page .cs-capability__context-icon svg {
  width: 22px;
  height: 22px;
}

body.cs-detail-page.cs-template-page .cs-template-section .cs-article__heading,
body.cs-detail-page.cs-template-page .cs-template-section .cs-section-head .cs-article__heading {
  color: var(--cs-template-navy-strong);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(32px, 4.1vw, 54px);
  font-weight: 610;
  line-height: 1.05;
  letter-spacing: -0.045em;
  padding-bottom: 0;
  border: 0;
}

body.cs-detail-page.cs-template-page .cs-template-section .cs-article__heading::before,
body.cs-detail-page.cs-template-page .cs-template-section .cs-article__heading::after {
  display: none !important;
  content: none !important;
}

body.cs-detail-page.cs-template-page .cs-template-approach-section {
  position: relative;
  overflow: hidden;
  background: var(--cs-template-navy);
}

body.cs-detail-page.cs-template-page .cs-template-approach-section .cs-section-head,
body.cs-detail-page.cs-template-page .cs-template-approach-section > .aj-container > .cs-article {
  max-width: 1180px;
}

body.cs-detail-page.cs-template-page .cs-template-approach-section .cs-section-head {
  padding-top: 0;
  border: 0;
}

body.cs-detail-page.cs-template-page .cs-template-approach-section .cs-article__heading,
body.cs-detail-page.cs-template-page .cs-template-approach-section .cs-section-head .cs-article__heading {
  color: #ffffff;
}

body.cs-detail-page.cs-template-page .cs-template-approach-section .cs-template-heading-icon {
  color: var(--cs-template-navy-strong);
  background: var(--cs-template-sky);
}

body.cs-detail-page.cs-template-page .cs-template-approach-section > .aj-container > .cs-article p {
  max-width: 65ch;
  margin: 0 0 clamp(34px, 5vw, 54px);
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.75;
}

body.cs-detail-page.cs-template-page .cs-process--roadmap,
body.cs-detail-page.cs-template-page .cs-process--roadmap.cs-process--count-5,
body.cs-detail-page.cs-template-page .cs-process--roadmap.cs-process--count-6 {
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
  padding: 0;
}

body.cs-detail-page.cs-template-page .cs-process--roadmap::before,
body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__step::before,
body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__step::after,
body.cs-detail-page.cs-template-page main > section[style]:has(.cs-process) .cs-process--roadmap .cs-process__step::before,
body.cs-detail-page.cs-template-page main > section[style]:has(.cs-process) .cs-process--roadmap .cs-process__step::after {
  display: none;
}

body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__step {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(151, 194, 248, 0.095);
  box-shadow: none;
  transform: none;
}

body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__trigger,
body.cs-detail-page.cs-template-page .cs-process--roadmap.cs-process--count-6 .cs-process__trigger {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 94px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  padding: 16px clamp(18px, 3vw, 34px) 16px 16px;
  color: #ffffff;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__trigger[aria-expanded="true"] {
  color: var(--cs-template-navy-strong);
  background: var(--cs-template-sky);
}

body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__marker {
  position: static;
  width: 74px;
  min-width: 74px;
  height: 62px;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 0;
  padding: 7px 5px;
  color: var(--cs-template-sky);
  border: 0;
  background: rgba(151, 194, 248, 0.1);
  box-shadow: none;
  transform: none;
}

body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__trigger[aria-expanded="true"] .cs-process__marker {
  color: var(--cs-template-navy-strong);
  background: rgba(255, 255, 255, 0.6);
}

body.cs-detail-page.cs-template-page .cs-process__context-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.cs-detail-page.cs-template-page .cs-process__context-index {
  font-family: "Fragment Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
}

body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__trigger-label,
body.cs-detail-page.cs-template-page .cs-process--roadmap.cs-process--count-6 .cs-process__trigger-label {
  max-width: 36ch;
  min-width: 0;
  color: inherit;
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 580;
  line-height: 1.35;
  text-align: left;
}

body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__action {
  position: static;
  align-self: center;
  color: var(--cs-template-sky);
  border: 0;
  background: transparent;
  transform: none;
}

body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__trigger[aria-expanded="true"] .cs-process__action {
  color: var(--cs-template-navy-strong);
  background: transparent;
}

body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__panel {
  position: static;
  grid-column: auto;
  grid-row: auto;
  width: 100%;
  margin-top: 0;
  padding: 0 clamp(24px, 5vw, 108px) clamp(28px, 4vw, 46px) clamp(108px, 11vw, 142px);
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__content {
  max-width: 74ch;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__content::after {
  display: none;
}

body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__title {
  color: #ffffff;
}

body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__content > p {
  color: rgba(255, 255, 255, 0.78);
}

@media (min-width: 1025px) {
  body.cs-detail-page.cs-template-page .cs-process--roadmap,
  body.cs-detail-page.cs-template-page .cs-process--roadmap.cs-process--count-5,
  body.cs-detail-page.cs-template-page .cs-process--roadmap.cs-process--count-6 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: start;
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap.cs-process--count-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap.cs-process--count-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__step {
    display: contents;
    overflow: visible;
    background: transparent;
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__trigger,
  body.cs-detail-page.cs-template-page .cs-process--roadmap.cs-process--count-6 .cs-process__trigger {
    grid-row: 1;
    min-height: 174px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 28px 14px 48px;
    text-align: center;
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__marker {
    width: auto;
    min-width: 0;
    height: auto;
    display: inline-flex;
    grid-template-columns: none;
    flex-direction: row;
    align-items: center;
    gap: 9px;
    padding: 0;
    background: transparent;
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__trigger[aria-expanded="true"] .cs-process__marker {
    background: transparent;
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__trigger-label,
  body.cs-detail-page.cs-template-page .cs-process--roadmap.cs-process--count-6 .cs-process__trigger-label {
    max-width: 19ch;
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    font-size: clamp(13px, 1.25vw, 17px);
    line-height: 1.28;
    text-align: center;
    text-wrap: balance;
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__action {
    position: absolute;
    right: 50%;
    bottom: 14px;
    transform: translateX(50%);
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__panel {
    position: relative;
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 14px;
    padding: 0;
    background: #10245a;
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__content {
    max-width: 920px;
    padding: clamp(30px, 4vw, 44px);
  }
}

body.cs-detail-page.cs-template-page .cs-template-capability-section {
  padding-top: 0 !important;
}

body.cs-detail-page.cs-template-page .cs-capabilities--pipeline,
body.cs-detail-page.cs-template-page .cs-capabilities--pipeline.cs-capabilities--count-3,
body.cs-detail-page.cs-template-page .cs-capabilities--pipeline.cs-capabilities--count-4 {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  padding: 0;
}

body.cs-detail-page.cs-template-page .cs-capabilities--pipeline .cs-capability {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 38px;
  padding: 32px;
  color: var(--cs-template-ink);
  border: 0;
  border-radius: 0;
  background: var(--cs-template-mist);
  box-shadow: none;
  transform: none;
}

body.cs-detail-page.cs-template-page .cs-capabilities--pipeline .cs-capability::before,
body.cs-detail-page.cs-template-page .cs-capabilities--pipeline .cs-capability::after {
  display: none;
}

body.cs-detail-page.cs-template-page .cs-capability__context-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  color: var(--cs-template-navy-strong);
  background: #ffffff;
}

body.cs-detail-page.cs-template-page .cs-capabilities--pipeline .cs-capability__body {
  margin-top: auto;
  padding: 0;
}

body.cs-detail-page.cs-template-page .cs-capabilities--pipeline .cs-capability__title {
  color: var(--cs-template-navy-strong);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.35;
}

body.cs-detail-page.cs-template-page .cs-capabilities--pipeline .cs-capability__description {
  display: block;
  margin-top: 16px;
  color: var(--cs-template-muted);
  font-size: 14px;
  line-height: 1.65;
}

body.cs-detail-page.cs-template-page .cs-template-results-section,
body.cs-detail-page.cs-template-page .cs-results-section.cs-template-results-section {
  padding: clamp(78px, 9vw, 128px) 0 !important;
  background: var(--cs-template-paper);
}

body.cs-detail-page.cs-template-page .cs-template-results-section > .aj-container {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

body.cs-detail-page.cs-template-page .cs-template-results-section .cs-article {
  max-width: 65ch;
  margin: 0;
}

body.cs-detail-page.cs-template-page .cs-template-results-section .cs-article__heading {
  margin-bottom: 28px;
}

body.cs-detail-page.cs-template-page .cs-template-results-section .cs-metrics--results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
}

body.cs-detail-page.cs-template-page .cs-template-results-section .cs-metrics__item,
body.cs-detail-page.cs-template-page .cs-template-results-section .cs-metrics__item:first-child {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px;
  color: #ffffff;
  border: 0;
  background: var(--cs-template-navy-strong);
}

body.cs-detail-page.cs-template-page .cs-template-results-section .cs-metrics__value {
  width: auto;
  min-width: 0 !important;
  min-height: 0;
  display: block;
  padding: 0;
  color: #ffffff;
  background: transparent;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.94;
  text-align: left;
}

body.cs-detail-page.cs-template-page .cs-template-results-section .cs-metrics__label {
  min-height: 0;
  max-width: 34ch;
  display: block;
  margin-top: 22px;
  padding: 0;
  color: rgba(255, 255, 255, 0.74);
  border: 0;
  font-size: 13px;
  line-height: 1.55;
  text-align: left;
}

body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__trigger:focus-visible,
body.cs-detail-page.cs-template-page .cs-capabilities--pipeline .cs-capability:focus-within {
  outline: 3px solid var(--cs-template-sky);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__trigger:hover {
    background: rgba(151, 194, 248, 0.16);
    transform: none;
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__trigger[aria-expanded="true"]:hover {
    background: #a9cdf9;
  }

  body.cs-detail-page.cs-template-page .cs-capabilities--pipeline .cs-capability:hover {
    color: var(--cs-template-ink);
    background: #e4f0ff;
    box-shadow: none;
    transform: none;
  }
}

@media (max-width: 899px) {
  body.cs-detail-page.cs-template-page .cs-template-background-section .cs-article__section,
  body.cs-detail-page.cs-template-page .cs-template-opportunity-section .cs-article__section,
  body.cs-detail-page.cs-template-page .cs-template-solution-section .cs-article__section,
  body.cs-detail-page.cs-template-page .cs-template-results-section > .aj-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.cs-detail-page.cs-template-page .cs-template-background-section .cs-article__heading,
  body.cs-detail-page.cs-template-page .cs-template-opportunity-section .cs-article__heading,
  body.cs-detail-page.cs-template-page .cs-template-solution-section .cs-article__heading,
  body.cs-detail-page.cs-template-page .cs-template-background-section .cs-article p,
  body.cs-detail-page.cs-template-page .cs-template-opportunity-section .cs-article p,
  body.cs-detail-page.cs-template-page .cs-template-solution-section .cs-article p {
    grid-column: 1;
    grid-row: auto;
  }

  body.cs-detail-page.cs-template-page .cs-template-background-section .cs-article__heading,
  body.cs-detail-page.cs-template-page .cs-template-opportunity-section .cs-article__heading,
  body.cs-detail-page.cs-template-page .cs-template-solution-section .cs-article__heading {
    position: static;
  }

  body.cs-detail-page.cs-template-page .cs-template-results-section .cs-metrics--results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  body.cs-detail-page.cs-template-page .cs-template-meta-section {
    padding: 24px 0 !important;
  }

  body.cs-detail-page.cs-template-page .cs-meta[data-meta-count] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.cs-detail-page.cs-template-page .cs-meta[data-meta-count] .cs-meta__row,
  body.cs-detail-page.cs-template-page .cs-meta[data-meta-count] .cs-meta__row:nth-child(n) {
    min-height: 148px;
    padding: 18px;
  }

  body.cs-detail-page.cs-template-page .cs-meta[data-meta-count] .cs-meta__row:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  body.cs-detail-page.cs-template-page .cs-template-section,
  body.cs-detail-page.cs-template-page .cs-template-capability-section,
  body.cs-detail-page.cs-template-page .cs-template-results-section,
  body.cs-detail-page.cs-template-page .cs-results-section.cs-template-results-section {
    padding: 60px 0 !important;
  }

  body.cs-detail-page.cs-template-page .cs-template-capability-section {
    padding-top: 0 !important;
  }

  body.cs-detail-page.cs-template-page .cs-template-heading-icon {
    display: flex;
    width: 38px;
    height: 38px;
    margin: 0 0 16px;
  }

  body.cs-detail-page.cs-template-page .cs-template-section .cs-article__heading,
  body.cs-detail-page.cs-template-page .cs-template-section .cs-section-head .cs-article__heading {
    font-size: clamp(29px, 8.5vw, 38px);
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__trigger,
  body.cs-detail-page.cs-template-page .cs-process--roadmap.cs-process--count-6 .cs-process__trigger {
    min-height: 84px;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 14px;
    padding: 14px;
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__marker {
    width: 56px;
    min-width: 56px;
    height: 56px;
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__trigger-label,
  body.cs-detail-page.cs-template-page .cs-process--roadmap.cs-process--count-6 .cs-process__trigger-label {
    font-size: 15px;
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__action-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__panel {
    padding: 0 20px 28px 84px;
  }

  body.cs-detail-page.cs-template-page .cs-capabilities--pipeline,
  body.cs-detail-page.cs-template-page .cs-capabilities--pipeline.cs-capabilities--count-3,
  body.cs-detail-page.cs-template-page .cs-capabilities--pipeline.cs-capabilities--count-4,
  body.cs-detail-page.cs-template-page .cs-template-results-section .cs-metrics--results {
    grid-template-columns: 1fr;
  }

  body.cs-detail-page.cs-template-page .cs-capabilities--pipeline .cs-capability {
    min-height: 230px;
    padding: 26px;
  }

  body.cs-detail-page.cs-template-page .cs-template-results-section .cs-metrics__item,
  body.cs-detail-page.cs-template-page .cs-template-results-section .cs-metrics__item:first-child {
    min-height: 168px;
    padding: 24px;
  }
}

@media (max-width: 399px) {
  body.cs-detail-page.cs-template-page .cs-meta[data-meta-count] {
    grid-template-columns: 1fr;
  }

  body.cs-detail-page.cs-template-page .cs-meta[data-meta-count] .cs-meta__row:last-child:nth-child(odd) {
    grid-column: auto;
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__trigger,
  body.cs-detail-page.cs-template-page .cs-process--roadmap.cs-process--count-6 .cs-process__trigger {
    grid-template-columns: 52px minmax(0, 1fr) 28px;
    gap: 10px;
    padding: 12px;
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__marker {
    width: 52px;
    min-width: 52px;
  }

  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__panel {
    padding-left: 74px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.cs-detail-page.cs-template-page .cs-process--roadmap .cs-process__trigger,
  body.cs-detail-page.cs-template-page .cs-capabilities--pipeline .cs-capability {
    transition: none;
  }
}

/* Case-study main template: promoted from the approved CRM detail treatment. */
body.cs-detail-page.cs-template-page.cs-case-main-template {
  --case-template-dark: #071447;
  --case-template-panel: #10245a;
  --case-template-mid: #164487;
  --case-template-sky: #97c2f8;
  --case-template-pale: #eef5ff;
  --case-template-heading: clamp(2.625rem, 4.5vw, 3.5rem);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-template-heading-icon {
  display: none;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-background-section,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity-section,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-intro,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section {
  --case-section-heading-size: var(--case-template-heading);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-background-section .cs-article__heading,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity-section .cs-article__heading,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-article__heading,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-intro .cs-article__heading,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-article__heading {
  max-width: none;
  margin: 0;
  padding: 0;
  color: var(--navy);
  border: 0;
  font-size: var(--case-section-heading-size);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-background-section .cs-article__heading,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-intro .cs-article__heading {
  grid-row: 1;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-background-section .cs-article__heading::before,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-background-section .cs-article__heading::after,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity-section .cs-article__heading::before,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity-section .cs-article__heading::after,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-article__heading::before,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-article__heading::after,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-intro .cs-article__heading::before,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-intro .cs-article__heading::after,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-article__heading::before,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-article__heading::after {
  content: none;
  display: none;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-background-section {
  padding: clamp(72px, 8vw, 104px) 0 !important;
  background: #fff;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-background-section .cs-article {
  max-width: none;
  margin: 0;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-background-section .cs-article__section {
  display: block;
  margin: 0;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-background-section .cs-article__heading {
  margin-bottom: clamp(26px, 3vw, 34px);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-background-section .cs-article p {
  max-width: none;
  margin: 0;
  color: var(--ink-subtle);
  font-size: 17px;
  line-height: 1.72;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-background-section .cs-article p + p {
  margin-top: 20px;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity-section {
  padding: clamp(72px, 8vw, 104px) 0 !important;
  background: var(--case-template-pale);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity-section .cs-article {
  max-width: none;
  margin: 0;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity-section .cs-article__section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 48px);
  margin: 0;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity-section .cs-article__heading,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__narrative {
  grid-column: 1;
  grid-row: auto;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__narrative {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: clamp(14px, 1.6vw, 20px);
  margin: 0;
  color: var(--navy);
  font-size: 1.0625rem;
  line-height: 1.62;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__beat {
  display: block;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__beat--opening {
  grid-column: 1 / -1;
  max-width: 28ch;
  padding: 0 0 clamp(6px, 1vw, 12px);
  font-size: clamp(1.875rem, 2.35vw, 2.07rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__beat--detail,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__beat--pressure,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__beat--cost {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: clamp(18px, 1.8vw, 24px);
  align-items: start;
  padding: clamp(26px, 3.5vw, 42px);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.62;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  color: currentColor;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__icon svg {
  width: 100%;
  height: 100%;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__beat--detail {
  background: #fff;
  box-shadow: 0 28px 68px -52px rgba(0, 29, 107, 0.58);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__beat--pressure {
  background: var(--case-template-sky);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__beat--cost {
  grid-column: 1 / -1;
  color: #fff;
  background: var(--navy);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__beat--row-fill {
  grid-column: 1 / -1;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__narrative--supports-1 .cs-case-opportunity__beat--detail {
  grid-column: 1 / -1;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section {
  padding: clamp(76px, 8vw, 104px) 0 !important;
  background: var(--case-template-dark);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-section-head {
  max-width: none;
  margin: 0 0 clamp(26px, 3vw, 34px);
  padding: 0;
  border: 0;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-article__heading {
  color: #fff;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-article {
  max-width: none;
  margin: 0;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-article__section {
  margin: 0;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-article p {
  max-width: 62ch;
  margin: 0;
  color: rgba(241, 247, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
  text-wrap: balance;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach__intro-layout {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(190px, 18vw, 220px);
  padding: clamp(30px, 3vw, 40px) 0;
  overflow: hidden;
  isolation: isolate;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach__intro-layout .cs-article {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach__intro-layout--heading-only {
  min-height: clamp(150px, 14vw, 190px);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach__intro-layout > .cs-section-head {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  margin: 0;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach__network {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  color: var(--case-template-sky);
  pointer-events: none;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach__network canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.82;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, #000 38%, #000 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, #000 38%, #000 100%);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process--roadmap {
  margin-top: clamp(38px, 5vw, 56px);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process--roadmap::before,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__step::before,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__step::after {
  content: none;
  display: none;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__trigger {
  min-height: 174px;
  padding: 28px 18px 48px;
  gap: 16px;
  border: 0;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__marker {
  width: auto;
  min-width: 0;
  height: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--sky-200);
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__context-icon {
  width: 22px;
  height: 22px;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__context-index {
  font-size: 11px;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__trigger-label {
  max-width: 19ch;
  min-height: 0;
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 600;
  line-height: 1.28;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__action {
  bottom: 14px;
  padding: 6px 0;
  color: rgba(221, 235, 255, 0.76);
  background: transparent;
  border: 0;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__trigger[aria-expanded="true"] {
  color: var(--navy);
  background: var(--case-template-sky);
  border: 0;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__trigger[aria-expanded="true"] .cs-process__marker,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__trigger[aria-expanded="true"] .cs-process__action {
  color: var(--navy);
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__panel {
  margin-top: 14px;
  padding: 0;
  background: var(--case-template-panel);
  border: 0;
  box-shadow: none;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__content {
  max-width: 920px;
  padding: clamp(30px, 4vw, 44px);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-intro {
  padding: clamp(76px, 8vw, 104px) 0 clamp(40px, 5vw, 60px) !important;
  background: #fff;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-intro .cs-article {
  max-width: none;
  margin: 0;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-intro .cs-article__section {
  display: grid;
  grid-template-columns: minmax(340px, 0.5fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  margin: 0;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-intro .cs-article p {
  max-width: 34ch;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 2.35vw, 2.07rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow {
  padding: 0 0 clamp(80px, 9vw, 112px) !important;
  background: #fff;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capabilities--pipeline {
  gap: 0;
  overflow: hidden;
  background: var(--case-template-dark);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability {
  min-height: 290px;
  padding: 92px clamp(24px, 2.7vw, 38px) 36px;
  overflow: hidden;
  color: #fff;
  border: 0;
  box-shadow: none;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability:nth-child(4n + 1) { background: #071447; }
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability:nth-child(4n + 2) { background: #164487; }
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability:nth-child(4n + 3) { color: var(--navy); background: #97c2f8; }
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability:nth-child(4n) { background: #0e2b68; }

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability::before {
  display: none;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability::after {
  top: 30px;
  right: clamp(24px, 2.7vw, 38px);
  left: auto;
  width: auto;
  height: auto;
  color: #b9d7ff;
  background: transparent;
  border: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability__context-icon {
  top: 26px;
  right: auto;
  left: clamp(24px, 2.7vw, 38px);
  width: 26px;
  height: 26px;
  padding: 0;
  color: #b9d7ff;
  background: transparent;
  border: 0;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability:nth-child(4n + 3)::after,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability:nth-child(4n + 3) .cs-capability__context-icon {
  color: var(--navy);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability__body {
  color: rgba(241, 247, 255, 0.82);
  font-size: 1rem;
  line-height: 1.62;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability__description {
  color: rgba(241, 247, 255, 0.82);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability:nth-child(4n + 3) .cs-capability__body,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability:nth-child(4n + 3) .cs-capability__title,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability:nth-child(4n + 3) .cs-capability__description {
  color: var(--navy);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability__title {
  margin-bottom: 16px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.28;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0 !important;
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section > .aj-container {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: clamp(44px, 6vw, 78px);
  align-items: stretch;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-article {
  max-width: none;
  margin: 0;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-article__section {
  margin: 0;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-article__heading {
  margin: 0 0 clamp(28px, 3vw, 36px);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-article p {
  max-width: 68ch;
  margin-bottom: 22px;
  color: var(--ink-subtle);
  font-size: 16px;
  line-height: 1.72;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-article p:first-of-type {
  max-width: 64ch;
  margin-bottom: 30px;
  color: var(--navy);
  font-size: clamp(18px, 1.6vw, 21px);
  font-weight: 500;
  line-height: 1.58;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-subheading {
  margin: 30px 0 12px;
  color: var(--navy);
  font-size: 1.125rem;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-results li {
  padding: 0 0 0 20px;
  color: var(--ink-subtle);
  border: 0;
  font-size: 15px;
  line-height: 1.6;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-results li::before {
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-metrics--results {
  width: 100%;
  max-width: none;
  grid-template-columns: 1fr !important;
  grid-template-rows: repeat(var(--case-metric-count, 3), minmax(176px, 1fr));
  margin: 0;
  overflow: hidden;
  border: 0;
  background: radial-gradient(circle at 100% 0%, rgba(151, 194, 248, 0.18), transparent 42%), var(--navy);
  box-shadow: 0 32px 70px -48px rgba(0, 29, 107, 0.72);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-metrics__item,
body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-metrics__item:first-child {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  padding: 24px 32px;
  text-align: left;
  border: 0;
  background: transparent;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-metrics__item + .cs-metrics__item {
  border-top: 1px solid rgba(241, 247, 255, 0.16);
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-metrics__value {
  flex-shrink: 0;
  min-height: 0;
  padding: 0;
  align-items: flex-start;
  justify-content: flex-start;
  color: #fff;
  font-size: clamp(54px, 5.6vw, 80px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-metrics__label {
  flex-shrink: 0;
  min-height: 0;
  max-width: 30ch;
  margin: 12px 0 0;
  padding: 0;
  align-items: flex-start;
  justify-content: flex-start;
  color: rgba(241, 247, 255, 0.82);
  border: 0;
  font-size: 15px;
  line-height: 1.52;
  text-align: left;
}

@media (max-width: 1040px) {
  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach__intro-layout {
    min-height: 210px;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process--roadmap {
    display: block;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__step {
    display: block;
    margin-top: 8px;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__step:first-child {
    margin-top: 0;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__trigger {
    display: grid;
    width: 100%;
    min-height: 0;
    padding: 20px 22px;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    grid-template-rows: auto;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__marker {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    justify-self: start;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__trigger-label {
    grid-column: 2;
    grid-row: 1;
    max-width: none;
    font-size: 17px;
    text-align: left;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__action {
    position: static;
    grid-column: 3;
    grid-row: 1;
    width: fit-content;
    min-height: 32px;
    justify-self: end;
    transform: none;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__panel {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section > .aj-container {
    grid-template-columns: 1fr;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-metrics--results {
    grid-template-columns: repeat(var(--case-metric-count, 3), minmax(0, 1fr)) !important;
    grid-template-rows: 1fr;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-metrics__item + .cs-metrics__item {
    border-top: 0;
  }
}

@media (max-width: 809px) {
  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-background-section,
  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity-section,
  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section,
  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-intro,
  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section {
    --case-section-heading-size: 2.375rem;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-background-section {
    padding: 56px 0 64px !important;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-background-section .cs-article__section,
  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-intro .cs-article__section {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-background-section .cs-article p {
    margin-top: 0;
    font-size: 16px;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity-section {
    padding: 56px 0 64px !important;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__narrative {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__beat--opening,
  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__beat--detail,
  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__beat--pressure,
  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__beat--cost {
    grid-column: 1;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__beat--opening {
    max-width: none;
    padding-bottom: 8px;
    font-size: clamp(1.375rem, 6vw, 1.5rem);
    line-height: 1.22;
    letter-spacing: -0.025em;
    text-wrap: pretty;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__beat--detail,
  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__beat--pressure,
  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__beat--cost {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 16px;
    padding: 24px;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-opportunity__icon {
    width: 32px;
    height: 32px;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section {
    padding: 58px 0 64px !important;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-article p {
    font-size: 16px;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach__intro-layout {
    min-height: 280px;
    padding: 28px 0 36px;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process--roadmap {
    margin-top: 32px;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__content {
    padding: 24px;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-intro {
    padding: 56px 0 32px !important;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-intro .cs-article p {
    max-width: 22ch;
    font-size: 1.75rem;
    line-height: 1.2;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow {
    padding: 0 0 64px !important;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capabilities--pipeline {
    grid-template-columns: 1fr;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability {
    min-height: 0;
    padding: 72px 24px 30px;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability::after {
    top: 26px;
    right: 24px;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-solution-workflow .cs-capability__context-icon {
    top: 23px;
    left: 24px;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section {
    padding: 58px 0 64px !important;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section > .aj-container {
    gap: 36px;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-article p,
  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-article p:first-of-type {
    max-width: none;
    font-size: 16px;
    line-height: 1.68;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-article p:first-of-type {
    color: var(--navy);
    font-size: 17px;
    line-height: 1.62;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-results {
    grid-template-columns: 1fr;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-metrics--results {
    grid-template-columns: 1fr !important;
    grid-template-rows: none;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-metrics__item,
  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-metrics__item:first-child {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(130px, 42%) minmax(0, 1fr);
    padding: 0;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-metrics__item + .cs-metrics__item {
    border-top: 1px solid rgba(241, 247, 255, 0.16);
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-metrics__value {
    min-height: 112px;
    padding: 24px 12px;
    align-items: center;
    font-size: clamp(38px, 11vw, 48px);
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-results-section .cs-metrics__label {
    min-height: 112px;
    max-width: none;
    margin: 0;
    padding: 22px 14px;
    align-items: center;
    border: 0;
    font-size: 13.5px;
  }
}

@media (max-width: 560px) {
  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__trigger {
    padding: 18px;
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    gap: 7px 12px;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__marker {
    grid-column: 1;
    grid-row: 1 / span 2;
    padding-top: 3px;
    flex-direction: column;
    gap: 6px;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__trigger-label {
    grid-column: 2;
    grid-row: 1;
    font-size: 16px;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__action {
    grid-column: 2;
    grid-row: 2;
    min-height: 28px;
    padding: 4px 0;
    justify-self: start;
  }

  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach-section .cs-process__content {
    padding: 22px 18px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.cs-detail-page.cs-template-page.cs-case-main-template .cs-case-approach__network canvas {
    opacity: 0.68;
  }
}
