@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/ibm-plex-sans-light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/ibm-plex-sans-light-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/ibm-plex-sans-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/ibm-plex-sans-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/ibm-plex-sans-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/ibm-plex-sans-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy-950: #030c33;
  --navy-900: #07123e;
  --navy-850: #0b1748;
  --navy-800: #101d52;
  --ink: #07123e;
  --paper: #f7f5f1;
  --white: #ffffff;
  --orange: #ff6a2a;
  --orange-dark: #e95013;
  --violet: #7756ff;
  --blue: #7f9cff;
  --muted: #adb5d0;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(7, 18, 62, 0.14);
  --page-padding: clamp(1.25rem, 4vw, 4.5rem);
  --content-width: 1440px;
  --radius: 1rem;
}

body.site-theme-earth {
  --navy-950: #2c211a;
  --navy-900: #38291f;
  --navy-850: #463226;
  --navy-800: #543d2e;
  --ink: #2c211a;
  --paper: #fbf6ef;
  --orange: #d47a42;
  --orange-dark: #b85f2c;
  --violet: #a57458;
  --blue: #e0a37d;
}

body.site-theme-sun {
  --navy-950: #3a2500;
  --navy-900: #472e00;
  --navy-850: #573900;
  --navy-800: #674500;
  --ink: #3a2500;
  --paper: #fff9e8;
  --orange: #ffb300;
  --orange-dark: #e29000;
  --violet: #d78300;
  --blue: #ffd166;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--white);
  font-family: "IBM Plex Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.site-font-serif,
body.site-font-serif button,
body.site-font-serif input,
body.site-font-serif textarea {
  font-family: Georgia, "Times New Roman", serif;
}

body.site-font-mono,
body.site-font-mono button,
body.site-font-mono input,
body.site-font-mono textarea {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.configurable-page {
  display: flex;
  flex-direction: column;
}

.configurable-page > * {
  order: var(--page-section-order, 0);
}

.blogpost-section--meta {
  padding-bottom: 0;
}

.blogpost-section--excerpt,
.blogpost-section--content {
  padding-top: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  align-items: center;
  background: rgba(3, 12, 51, 0.97);
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(170px, 0.8fr) auto minmax(150px, 0.8fr);
  min-height: 6.5rem;
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  display: inline-flex;
  width: 11rem;
}

.brand img,
.site-footer img {
  height: auto;
  width: 100%;
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: clamp(0.85rem, 1.8vw, 2rem);
  justify-content: center;
}

.primary-nav__item {
  padding-block: 1rem;
  position: relative;
}

.primary-nav :is(a,button[data-menu]) {
  align-items: center;
  color: #eef1ff;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 600;
  gap: 0.3rem;
  position: relative;
}

.primary-nav :is(a,button[data-menu])::after {
  background: var(--orange);
  bottom: -0.55rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.primary-nav :is(a,button[data-menu]):hover::after,
.primary-nav :is(a,button[data-menu]):focus-visible::after {
  transform: scaleX(1);
}

.primary-nav__submenu {
  background: var(--white);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.24);
  display: grid;
  left: -1.2rem;
  min-width: 17rem;
  opacity: 0;
  padding: 0.7rem;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 0.3rem);
  transform: translateY(0.5rem);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.primary-nav__submenu a {
  color: var(--ink);
  padding: 0.7rem 0.8rem;
  white-space: nowrap;
}

.primary-nav__submenu a::after {
  bottom: 0.35rem;
  left: 0.8rem;
  width: calc(100% - 1.6rem);
}

.primary-nav__item:hover .primary-nav__submenu,
.primary-nav__item:focus-within .primary-nav__submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.header-cta {
  justify-self: end;
  min-width: 9.5rem;
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line-dark);
  color: var(--white);
  display: none;
  gap: 0.5rem;
  padding: 0.65rem 0.8rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-weight: 700;
  gap: 1.25rem;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.8rem 1.5rem;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button--orange:hover {
  background: var(--orange-dark);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.button--outline:hover {
  background: var(--white);
  color: var(--ink);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.79fr) minmax(32rem, 1.21fr);
  min-height: 35rem;
  overflow: hidden;
  padding-left: var(--page-padding);
}

.hero__copy {
  align-self: center;
  max-width: 43rem;
  padding: 3.5rem 1rem 3.5rem 0;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.eyebrow--violet {
  color: var(--violet);
}

.eyebrow--orange {
  color: var(--orange);
}

.hero h1,
.inner-hero h1 {
  font-size: clamp(3.5rem, 5.1vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
  margin: 0;
  max-width: 12ch;
}

.hero__intro {
  color: #d9def0;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.5;
  margin: 2rem 0 2.2rem;
  max-width: 42rem;
}

.hero__period {
  color: var(--orange);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__visual {
  align-self: stretch;
  min-height: 35rem;
  overflow: hidden;
  position: relative;
}

.hero__visual img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.proof-band {
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(11rem, 0.4fr) minmax(30rem, 1.7fr);
  min-height: 10rem;
  padding: 1.9rem var(--page-padding);
}

.proof-band__statement,
.proof-band__locations {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.proof-band__statement {
  border-right: 1px solid var(--line-dark);
  padding-right: 1.5rem;
}

.proof-band__statement i {
  color: var(--violet);
  font-size: 2.2rem;
}

.proof-band__statement p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

.proof-band__locations {
  border-right: 1px solid var(--line-dark);
  padding-right: 1.5rem;
}

.proof-band__locations strong {
  color: var(--orange);
  font-size: 3rem;
  line-height: 1;
}

.proof-band__locations span {
  color: #cbd1e6;
  font-size: 0.82rem;
  line-height: 1.4;
}

.client-logos {
  align-items: center;
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 3rem);
  grid-template-columns: repeat(4, minmax(5rem, 1fr));
}

.client-logos img {
  filter: grayscale(1) brightness(0) invert(1);
  height: 2.4rem;
  object-fit: contain;
  opacity: 0.76;
  width: 100%;
}

.section-shell {
  margin: 0 auto;
  max-width: var(--content-width);
  padding: clamp(5rem, 10vw, 9rem) var(--page-padding);
}

.section-shell--light {
  background: var(--paper);
  color: var(--ink);
  max-width: none;
}

.block-canvas {
  background: var(--paper);
  color: var(--ink);
  max-width: none;
}

.block-canvas .umb-block-grid {
  margin: 0 auto;
  max-width: var(--content-width);
}

.block-canvas .umb-block-grid__layout-container,
.block-canvas .umb-block-grid {
  --umb-block-grid--grid-columns: 12;
}

.block-headline {
  margin: 0 auto;
  max-width: var(--content-width);
  padding: 0 var(--page-padding) 2rem;
}

.block-headline h2,
.section-heading h2,
.about h2,
.contact h2,
.page-cta h2,
.inner-feature h2 {
  font-size: clamp(2.7rem, 5vw, 5.3rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
  margin: 0;
}

.block-richtext {
  margin: 0 auto;
  max-width: var(--content-width);
  padding: 0 var(--page-padding) clamp(4rem, 9vw, 8rem);
}

.abstract-grid-layout {
  margin: 0 auto;
  max-width: var(--content-width);
  padding: 0 var(--page-padding) clamp(4rem, 8vw, 7rem);
}

.abstract-grid-layout .umb-block-grid__area-container {
  align-items: start;
  column-gap: clamp(1.5rem, 3vw, 3rem);
  row-gap: clamp(2rem, 4vw, 4rem);
}

.abstract-grid-layout .umb-block-grid__area {
  min-width: 0;
}

.abstract-grid-layout .block-headline,
.abstract-grid-layout .block-richtext {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.abstract-grid-layout .block-headline {
  padding-bottom: 1.5rem;
}

.abstract-grid-layout .block-headline h2 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.abstract-grid-layout .block-richtext {
  padding-bottom: 0;
}

.abstract-grid-layout img {
  border-radius: 0.25rem;
  min-height: 15rem;
}

.block-intro {
  color: #4e5777;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  margin: 0 0 3rem;
  max-width: 48rem;
}

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

.service-links a {
  align-items: start;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  font-size: clamp(1.1rem, 1.55vw, 1.45rem);
  font-weight: 700;
  gap: 0.4rem;
  min-height: 7.5rem;
  padding: 1.6rem 2rem 1.6rem 0;
  position: relative;
  transition: color 180ms ease, padding-left 180ms ease;
}

.service-links a:nth-child(odd) {
  border-right: 1px solid var(--line-light);
}

.service-links a:nth-child(even) {
  padding-left: 2rem;
}

.service-links a:hover {
  color: var(--orange-dark);
}

.service-links a span {
  color: #69718d;
  font-size: 0.84rem;
  font-weight: 500;
}

.editorial-split {
  align-items: end;
  border-bottom: 1px solid var(--line-light);
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.5fr 0.8fr;
  padding: 2.2rem 0;
}

.editorial-split p {
  font-size: clamp(1.4rem, 2.4vw, 2.5rem);
  letter-spacing: -0.035em;
  line-height: 1.25;
  margin: 0;
}

.text-link {
  align-items: center;
  color: inherit;
  display: inline-flex;
  font-weight: 700;
  gap: 0.7rem;
  width: fit-content;
}

.text-link i {
  color: var(--orange);
  transition: transform 180ms ease;
}

.text-link:hover i {
  transform: translateX(0.3rem);
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.section-heading--split {
  align-items: end;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.4fr 0.65fr;
}

.section-heading--split > p {
  color: #5a637e;
  font-size: 1.08rem;
  margin: 0;
}

.client-story {
  padding-top: 4rem;
}

.client-story__card {
  align-items: stretch;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(21rem, 0.65fr) minmax(0, 1.35fr);
  overflow: hidden;
}

.client-story__card > img {
  height: 100%;
  min-height: 33rem;
  object-fit: cover;
}

.client-story__copy {
  align-self: center;
  padding: clamp(2.5rem, 5vw, 5rem);
}

.client-story__copy h3 {
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0 0 1.5rem;
}

.client-story__copy > p:not(.eyebrow) {
  color: #59617b;
  margin-bottom: 2rem;
}

.sector-grid {
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sector-grid a {
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  font-size: clamp(1.35rem, 2.4vw, 2.3rem);
  font-weight: 700;
  gap: 1rem;
  grid-template-columns: 3rem 1fr auto;
  min-height: 7.5rem;
  padding: 1rem 0;
}

.sector-grid a:nth-child(odd) {
  border-right: 1px solid var(--line-light);
  padding-right: 2rem;
}

.sector-grid a:nth-child(even) {
  padding-left: 2rem;
}

.sector-grid a:hover {
  color: var(--orange-dark);
}

.sector-grid span {
  color: var(--orange-dark);
  font-size: 0.75rem;
}

.sector-grid i {
  color: var(--violet);
  font-size: 1.4rem;
}

.about {
  display: grid;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: 1.1fr 0.9fr;
}

.about__copy > p {
  color: #cdd3e7;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  margin: 0 0 2.5rem;
}

.about__points {
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
}

.about__points span {
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  gap: 0.8rem;
  padding: 1rem 0;
}

.about__points i {
  color: var(--orange);
}

.insight-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-grid a {
  background: var(--white);
  border: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  min-height: 20rem;
  padding: 2rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.insight-grid a:hover {
  background: var(--navy-900);
  color: var(--white);
}

.insight-grid span {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-grid h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin: 2rem 0;
}

.insight-grid i {
  color: var(--violet);
  font-size: 1.5rem;
  margin-top: auto;
}

.contact {
  display: grid;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: 0.8fr 1.2fr;
}

.contact__intro > p:not(.eyebrow) {
  color: #cdd3e7;
  font-size: 1.1rem;
  max-width: 34rem;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  color: #cdd3e7;
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  background: var(--navy-850);
  border: 1px solid var(--line-dark);
  border-radius: 0;
  color: var(--white);
  padding: 1rem;
  resize: vertical;
  text-transform: none;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-form__wide {
  grid-column: 1 / -1;
}

.contact-form .button {
  justify-self: start;
}

.form-status {
  color: #cdd3e7;
  margin: 0;
  min-height: 1.5rem;
}

.inner-hero {
  margin: 0 auto;
  max-width: var(--content-width);
  padding: clamp(6rem, 11vw, 10rem) var(--page-padding) clamp(4rem, 8vw, 7rem);
}

.inner-hero--with-media {
  display: grid;
  grid-template-columns: minmax(24rem, 0.8fr) minmax(34rem, 1.2fr);
  min-height: 35rem;
  overflow: hidden;
  padding: 0 0 0 var(--page-padding);
}

.inner-hero__copy {
  align-self: center;
  max-width: 43rem;
  padding: 4.5rem 2.5rem 4.5rem 0;
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  max-width: 14ch;
}

.inner-hero__summary {
  color: #cdd3e7;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.5;
  margin: 2rem 0 0;
  max-width: 44rem;
}

.inner-hero__visual {
  align-self: stretch;
  min-height: 35rem;
  overflow: hidden;
  position: relative;
}

.inner-hero__visual::before {
  background: linear-gradient(145deg, var(--violet) 10%, var(--orange) 78%, var(--violet) 100%);
  border-radius: 50% 0 0 50%;
  content: "";
  inset: 0;
  position: absolute;
}

.inner-hero__visual img {
  border-radius: 50% 0 0 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0 0 0 1.25rem;
  position: relative;
  width: 100%;
}

.landing-hero {
  display: grid;
  min-height: clamp(31rem, 58vw, 43rem);
  padding: clamp(6rem, 12vw, 10rem) var(--page-padding);
  place-items: center;
  text-align: center;
}

.landing-hero__copy {
  max-width: 70rem;
}

.landing-hero h1 {
  font-size: clamp(4rem, 8vw, 7.5rem);
  letter-spacing: -0.07em;
  line-height: 0.94;
  margin: 0;
}

.landing-hero__copy > p:last-child {
  color: #d5daeb;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.55;
  margin: 2rem auto 0;
  max-width: 48rem;
}

.landing-feature-media {
  background: var(--paper);
  padding-top: 0;
}

.landing-feature-media img {
  height: clamp(24rem, 52vw, 42rem);
  object-fit: cover;
  width: 100%;
}

.landing-feature-copy {
  max-width: none;
}

.landing-feature-copy > * {
  max-width: 56rem;
}

.child-page-grid--landing .child-page-card:first-child {
  background: var(--navy-850);
  color: var(--white);
}

.child-page-grid--landing .child-page-card:first-child p {
  color: #d5daeb;
}

.inner-feature {
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  grid-template-columns: 1.2fr 0.8fr;
  max-width: none;
}

.inner-feature img {
  height: 34rem;
  object-fit: cover;
  width: 100%;
}

.inner-feature > div {
  max-width: 35rem;
  padding-right: var(--page-padding);
}

.inner-feature--copy-only {
  display: block;
  padding-block: clamp(5rem, 9vw, 8rem);
}

.inner-feature--copy-only > div {
  max-width: 54rem;
  padding-right: 0;
}

.block-canvas--inner {
  padding-top: 6rem;
}

.outcome-grid {
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outcome-grid > div {
  border-bottom: 1px solid var(--line-light);
  border-right: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 13rem;
  padding: 1.5rem;
}

.outcome-grid > div:last-child {
  border-right: 0;
}

.outcome-grid strong {
  color: var(--orange-dark);
  font-size: 0.8rem;
}

.outcome-grid span {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: auto;
}

.child-page-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 0;
}

.child-page-card {
  background: var(--white);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 15rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: background-color 180ms ease, color 180ms ease;
}

.child-page-card span {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.child-page-card p {
  color: #4f5878;
  grid-column: 1 / -1;
  margin: 1.5rem 0 0;
}

.child-page-card i {
  color: var(--orange-dark);
  font-size: 1.5rem;
}

.child-page-card:hover,
.child-page-card:focus-visible {
  background: var(--navy-850);
  color: var(--white);
}

.child-page-card:hover p,
.child-page-card:focus-visible p {
  color: #d5daeb;
}

.page-cta {
  align-items: end;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}

.site-footer {
  align-items: start;
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 0.6fr 0.7fr;
  padding: 4rem var(--page-padding);
}

.site-footer img {
  max-width: 12rem;
}

.site-footer p {
  color: #aeb7d1;
  margin: 1rem 0 0;
  max-width: 28rem;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.site-footer nav a:hover {
  color: var(--orange);
}

.footer-meta {
  justify-self: end;
  text-align: right;
}

@media (max-width: 1100px) {
  .site-header {
    gap: 1rem;
    grid-template-columns: auto 1fr auto;
  }

  .primary-nav {
    gap: 1.3rem;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(27rem, 1.1fr);
  }

  .inner-hero--with-media {
    grid-template-columns: minmax(22rem, 0.9fr) minmax(28rem, 1.1fr);
  }

  .proof-band {
    grid-template-columns: 1fr 0.55fr;
  }

  .client-logos {
    border-top: 1px solid var(--line-dark);
    grid-column: 1 / -1;
    padding-top: 1.5rem;
  }

  .proof-band__locations {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .abstract-grid-layout .umb-block-grid__area-container {
    display: block;
  }

  .abstract-grid-layout .umb-block-grid__area + .umb-block-grid__area {
    margin-top: 2.5rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 5.4rem;
  }

  .brand {
    width: 10rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    align-items: stretch;
    background: var(--navy-900);
    border-top: 1px solid var(--line-dark);
    display: none;
    flex-direction: column;
    grid-column: 1 / -1;
    margin: 0 calc(var(--page-padding) * -1) -1rem;
    padding: 1rem var(--page-padding) 2rem;
  }

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

  .primary-nav :is(a,button[data-menu]) {
    border-bottom: 1px solid var(--line-dark);
    padding: 0.8rem 0;
  }

  .primary-nav__item {
    padding: 0;
    width: 100%;
  }

  .primary-nav__item > a {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .primary-nav__submenu {
    background: transparent;
    box-shadow: none;
    display: grid;
    left: auto;
    min-width: 0;
    opacity: 1;
    padding: 0 0 0 1rem;
    pointer-events: auto;
    position: static;
    transform: none;
    visibility: visible;
  }

  .primary-nav__submenu a {
    color: #bfc6de;
    font-size: 0.86rem;
    padding: 0.65rem 0;
    white-space: normal;
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .inner-hero--with-media {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .inner-hero__copy {
    max-width: none;
    padding: 5rem var(--page-padding) 3.5rem;
  }

  .inner-hero__visual {
    min-height: 28rem;
  }

  .inner-hero__visual::before,
  .inner-hero__visual img {
    border-radius: 48% 0 0 0;
  }

  .hero__copy {
    max-width: none;
    padding: 5rem var(--page-padding) 3rem;
  }

  .hero h1 {
    max-width: 9ch;
  }

  .hero__visual {
    min-height: 28rem;
  }

  .proof-band,
  .section-heading--split,
  .about,
  .contact,
  .inner-feature {
    grid-template-columns: 1fr;
  }

  .proof-band__statement,
  .proof-band__locations {
    border-bottom: 1px solid var(--line-dark);
    border-right: 0;
    padding-bottom: 1.25rem;
    padding-right: 0;
  }

  .client-logos {
    grid-template-columns: repeat(2, minmax(5rem, 1fr));
  }

  .service-links,
  .sector-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .service-links a:nth-child(odd),
  .sector-grid a:nth-child(odd) {
    border-right: 0;
    padding-right: 0;
  }

  .service-links a:nth-child(even),
  .sector-grid a:nth-child(even) {
    padding-left: 0;
  }

  .editorial-split,
  .client-story__card {
    grid-template-columns: 1fr;
  }

  .client-story__card > img {
    min-height: 25rem;
  }

  .inner-feature {
    padding-left: 0;
    padding-right: 0;
  }

  .inner-feature > div {
    padding: 0 var(--page-padding) 4rem;
  }

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

  .child-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outcome-grid > div {
    border-right: 0;
    min-height: 8rem;
  }

  .page-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .hero h1,
  .inner-hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.2rem);
  }

  .hero__visual {
    min-height: 23rem;
  }

  .inner-hero__visual {
    min-height: 23rem;
  }

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

  .proof-band {
    padding-block: 1.5rem;
  }

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

  .contact-form > * {
    grid-column: 1;
  }

  .child-page-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    grid-column: 1;
  }
}

/* Three CMS-selectable reference landing-page systems */
body:has(.showcase) {
  background: #050505;
}

body:has(.showcase) .site-header {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

body:has(.showcase) .site-header .primary-nav :is(a,button[data-menu]),
body:has(.showcase) .site-header .nav-toggle {
  color: #fff;
}

body:has(.showcase) .site-header .primary-nav__submenu {
  background: #fff;
  color: #07123e;
}

body:has(.showcase) .site-header .primary-nav__submenu a {
  color: #07123e;
}

body:has(.showcase--accenture) .site-header .primary-nav__submenu {
  background: #111;
  border: 1px solid #343434;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.55);
}

body:has(.showcase--accenture) .site-header .primary-nav__submenu a {
  color: #fff;
}

body:has(.showcase) .site-header .primary-nav__item:nth-child(n + 6) {
  display: none;
}

body:has(.showcase--accenture) .site-header .header-cta {
  background: var(--showcase-purple, #a100ff);
}

body:has(.showcase--enablis) .site-header .header-cta {
  background: rgba(5, 5, 8, 0.62);
  border-radius: 0.45rem;
}

body:has(.showcase--dock) .site-header .primary-nav,
body:has(.showcase--dock) .site-header .header-cta {
  display: none;
}

body:has(.showcase--dock) .site-header .nav-toggle {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  height: 3.25rem;
  justify-content: center;
  padding: 0;
  width: 3.25rem;
}

body:has(.showcase--dock) .site-header .nav-toggle span {
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

body:has(.showcase--enablis) .site-header {
  border-bottom-color: transparent;
}

.showcase {
  --showcase-black: #050505;
  --showcase-ink: #111;
  --showcase-paper: #f2f0eb;
  --showcase-purple: #a100ff;
  --showcase-coral: #ec5664;
  background: var(--showcase-paper);
  color: var(--showcase-ink);
  overflow: clip;
}

.showcase * {
  box-sizing: border-box;
}

.showcase-hero {
  min-height: 52rem;
  position: relative;
}

.showcase-kicker {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 1.4rem;
  text-transform: uppercase;
}

.showcase-kicker--dark {
  color: #3b332c;
}

.showcase-summary {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  max-width: 42rem;
}

.showcase-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
}

.showcase-actions--centered {
  justify-content: center;
}

.showcase-button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 700;
  gap: 0.7rem;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.5rem;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  will-change: transform;
}

.showcase-button:hover {
  border-color: currentColor;
}

.showcase--motion-ready .showcase-hero,
.showcase--motion-ready .showcase-hero__image,
.showcase--motion-ready .showcase-feature img {
  will-change: background-position, clip-path, opacity, transform;
}

.showcase--motion-ready .showcase-card-grid a,
.showcase--motion-ready .showcase-editorial-grid a,
.showcase--motion-ready .showcase-steps a,
.showcase--motion-ready .showcase-case-list a {
  transition: background-color 420ms ease, border-color 420ms ease, color 420ms ease, transform 520ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.showcase--motion-ready .showcase-card-grid a:hover,
.showcase--motion-ready .showcase-editorial-grid a:hover,
.showcase--motion-ready .showcase-steps a:hover,
.showcase--motion-ready .showcase-case-list a:hover {
  transform: translateY(-0.45rem);
}

.showcase-button--light {
  background: #fff;
  color: #111;
}

.showcase-button--outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.showcase-button--coral {
  background: var(--showcase-coral);
  border-radius: 0.55rem;
  color: #fff;
}

.showcase-button--ghost {
  border-color: rgba(255, 255, 255, 0.34);
  border-radius: 0.55rem;
  color: #fff;
}

.showcase-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.showcase-metrics > div {
  display: grid;
  gap: 0.5rem;
  min-height: 10rem;
  padding: 2rem clamp(1rem, 3vw, 3rem);
}

.showcase-metrics strong {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.showcase-metrics span {
  align-self: end;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.showcase-metric-card {
  display: grid;
  grid-template-rows: minmax(12rem, 1fr) auto;
  min-height: 25rem;
  overflow: hidden;
  position: relative;
}

.showcase-metric-card figure {
  margin: 0;
  min-height: 12rem;
  overflow: hidden;
  position: relative;
}

.showcase-metric-card img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  transition: filter 500ms ease, transform 800ms cubic-bezier(0.2, 0.75, 0.25, 1);
  width: 100%;
}

.showcase-metric-card > div {
  display: grid;
  gap: 0.75rem;
  min-height: 10rem;
  padding: 1.5rem clamp(1rem, 2.2vw, 2rem);
}

.showcase-metric-card strong {
  font-size: clamp(2rem, 3.4vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.showcase-metric-card span {
  align-self: end;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.showcase-metric-card:hover img {
  transform: scale(1);
}

.showcase-feature {
  display: grid;
  gap: clamp(2rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  padding: clamp(5rem, 10vw, 10rem) var(--page-padding);
}

.showcase-feature h2 {
  font-size: clamp(3rem, 7vw, 7.2rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
  margin: 0;
}

.showcase-feature > p,
.showcase-feature__copy > p:last-child {
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  line-height: 1.55;
  margin: 0;
}

.showcase-blocks {
  padding: clamp(5rem, 10vw, 10rem) var(--page-padding);
}

.showcase-blocks .umb-block-grid,
.showcase-blocks .umb-block-grid__layout-container {
  --umb-block-grid--grid-columns: 12;
  display: grid;
  gap: clamp(2.25rem, 4vw, 4rem);
}

.showcase-blocks .block-headline {
  max-width: 70rem;
}

.showcase-blocks .block-headline h2 {
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
  margin: 0;
}

.showcase-blocks .block-richtext {
  font-size: 1rem;
  line-height: 1.6;
}

.showcase-card-grid,
.showcase-editorial-grid,
.showcase-steps {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.showcase-card-grid a,
.showcase-editorial-grid a,
.showcase-steps a {
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 20rem;
  padding: 2rem;
  text-decoration: none;
}

.showcase-card-grid small,
.showcase-editorial-grid small,
.showcase-steps small {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.showcase-card-grid strong,
.showcase-editorial-grid strong,
.showcase-steps strong {
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-top: auto;
}

.showcase-card-grid span,
.showcase-editorial-grid span {
  font-size: 0.86rem;
  margin-top: 1rem;
}

.showcase-case-list {
  border-top: 1px solid currentColor;
}

.showcase-case-list a {
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: inherit;
  display: grid;
  gap: 2rem;
  grid-template-columns: 10rem minmax(0, 1fr) auto;
  min-height: 9rem;
  text-decoration: none;
}

.showcase-case-list strong {
  font-size: clamp(1.5rem, 3vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.showcase-case-list i {
  font-size: 2rem;
  font-style: normal;
}

.showcase-quote {
  border: 0;
  font-size: clamp(2.5rem, 5.5vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 0 0 2rem;
  max-width: 18ch;
  padding: 0;
}

.showcase-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.showcase-capabilities span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  padding: 1.4rem 0;
}

.showcase-capabilities span:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  padding-right: 2rem;
}

.showcase-capabilities span:nth-child(even) {
  padding-left: 2rem;
}

.showcase-cta {
  align-items: end;
  background: #ff6138;
  color: #050505;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  padding: clamp(5rem, 9vw, 9rem) var(--page-padding);
}

.showcase-cta h2 {
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
  margin: 0;
  max-width: 12ch;
}

/* Creative Dock-inspired: cinematic image, pale editorial canvas, orange proof. */
.dock-hero {
  align-items: end;
  background-color: #211b16;
  color: #fff;
  display: flex;
  isolation: isolate;
  min-height: min(62rem, 100svh);
  overflow: hidden;
  padding: 11rem var(--page-padding) 5rem;
}

.dock-hero__media,
.dock-hero__media::after,
.dock-hero__grid,
.dock-hero__wipe {
  inset: 0;
  position: absolute;
}

.dock-hero__media {
  background: #211b16;
  overflow: hidden;
  z-index: -3;
}

.dock-hero__media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  width: 100%;
}

.dock-hero__media::after {
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.14), rgba(8, 8, 8, 0.82));
  content: "";
}

.dock-hero__grid {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 25% 100%, 100% 25%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 72%);
  pointer-events: none;
  z-index: -1;
}

.dock-hero__wipe {
  background: #ffbc00;
  clip-path: inset(100% 0 0);
  pointer-events: none;
  z-index: 3;
}

.dock-hero__content {
  max-width: 66rem;
  position: relative;
  z-index: 1;
}

.showcase--motion-ready .dock-hero__media,
.showcase--motion-ready .dock-hero__media img,
.showcase--motion-ready .dock-hero__content,
.showcase--motion-ready .dock-hero__wipe {
  will-change: clip-path, filter, opacity, transform;
}

.showcase--native-motion .dock-hero__pin-shell,
.showcase--native-motion .enablis-hero__pin-shell {
  height: 220vh;
  position: relative;
}

.showcase--native-motion .dock-hero__pin-shell .dock-hero,
.showcase--native-motion .enablis-hero__pin-shell .enablis-hero {
  height: 100vh;
  position: sticky;
  top: 0;
}

.dock-hero h1 {
  font-size: clamp(4.25rem, 8.6vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.92;
  margin: 0;
  max-width: 10ch;
}

.dock-hero .showcase-summary {
  margin: 2rem 0 0;
}

.showcase-metrics--dock {
  background: #ffbc00;
  color: #17120c;
}

.showcase-metrics--dock > div:not(:last-child) {
  border-right: 1px solid rgba(23, 18, 12, 0.24);
}

.showcase-metric-card--dock {
  background: #ffbc00;
  border-right: 1px solid rgba(23, 18, 12, 0.24);
}

.showcase-metric-card--dock:last-child {
  border-right: 0;
}

.showcase-metric-card--dock img {
  filter: grayscale(1) contrast(1.22) brightness(0.82);
}

.showcase-metric-card--dock:hover img {
  filter: grayscale(0.12) contrast(1.08) brightness(0.94);
}

.showcase-feature--dock {
  background: #f2f0eb;
}

.showcase-blocks--dock {
  background: #1b1b1b;
  color: #f2f0eb;
}

.showcase-blocks--dock .eyebrow--violet {
  color: #ffbc00;
}

.showcase-blocks--dock .showcase-card-grid {
  background: rgba(255, 255, 255, 0.22);
}

.showcase-blocks--dock .showcase-card-grid a {
  background: #1b1b1b;
}

.showcase-blocks--dock .showcase-card-grid a:hover {
  background: #ffbc00;
  color: #17120c;
}

/* Accenture-inspired: black editorial field, oversized white type, purple signal. */
.showcase--accenture {
  background: #050505;
  color: #fff;
}

.accenture-hero {
  background: #050505;
  color: #fff;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(20rem, 0.75fr);
  isolation: isolate;
  min-height: max(46rem, 100svh);
  overflow: hidden;
  padding: 8.5rem var(--page-padding) 5rem;
}

.showcase--native-motion .accenture-hero__pin-shell {
  background: #050505;
  height: 250svh;
  position: relative;
}

.showcase--native-motion .accenture-hero__pin-shell .accenture-hero,
.showcase--native-motion .accenture-journey__stage {
  position: sticky;
  top: 0;
}

.accenture-hero::after {
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.16) 0%, rgba(5, 5, 5, 0.04) 52%, rgba(5, 5, 5, 0.72) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.accenture-hero__title,
.accenture-hero__story {
  position: relative;
  z-index: 2;
}

.accenture-hero h1 {
  font-size: clamp(4.5rem, 7.35vw, 7.65rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.82;
  margin: 1rem 0 0;
  max-width: 9.5ch;
  text-transform: uppercase;
}

.accenture-hero__story {
  align-self: center;
  max-width: 27rem;
}

.accenture-rule {
  background: var(--showcase-purple);
  display: block;
  height: 0.35rem;
  margin-bottom: 2rem;
  width: 4rem;
}

.accenture-hero__story h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  margin: 0 0 1rem;
}

.accenture-hero__story p {
  color: #c9c9c9;
  font-size: 1rem;
  line-height: 1.55;
}

.accenture-hero__image {
  filter: grayscale(1) contrast(1.25) brightness(0.38);
  height: 48%;
  left: 0;
  object-fit: cover;
  opacity: 0.82;
  pointer-events: none;
  position: absolute;
  top: 52%;
  transform-origin: center;
  width: 74%;
  z-index: 0;
}

.showcase-text-link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.showcase-text-link span {
  background: var(--showcase-purple);
  display: inline-grid;
  height: 1.4rem;
  margin-left: 0.4rem;
  place-items: center;
  width: 1.4rem;
}

.showcase-text-link--muted {
  color: #b9b9b9;
  font-weight: 500;
}

.accenture-journey {
  background: #f1f1ef;
  color: #050505;
  overflow: hidden;
}

.showcase--native-motion.showcase--accenture,
.showcase--native-motion .accenture-journey {
  overflow: visible;
}

.accenture-journey__stage {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 100svh;
  padding: 7rem 0 2rem;
}

.accenture-journey__meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--page-padding) 2rem;
}

.accenture-journey__meta .showcase-kicker,
.accenture-journey__counter {
  margin: 0;
}

.accenture-journey__counter {
  display: flex;
  font-size: 0.8rem;
  font-weight: 700;
  gap: 0.35rem;
  letter-spacing: 0.12em;
}

.accenture-journey__counter span:first-child {
  color: #6800a3;
}

.accenture-journey__viewport {
  overflow: hidden;
}

.accenture-journey__rail {
  display: flex;
  height: 100%;
  width: max-content;
  will-change: transform;
}

.accenture-journey__panel {
  --accenture-panel-bg: #fff;
  --accenture-panel-fg: #050505;
  background: var(--accenture-panel-bg);
  border-right: 1px solid #d7d7d2;
  color: var(--accenture-panel-fg);
  display: grid;
  flex: 0 0 min(78vw, 66rem);
  grid-template-rows: auto 1fr;
  min-height: 58vh;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 4.5rem);
  position: relative;
  width: min(78vw, 66rem);
}

.accenture-journey__panel:nth-child(3n) {
  --accenture-panel-bg: #170126;
  --accenture-panel-fg: #fff;
}

.accenture-journey__panel:nth-child(4n) {
  --accenture-panel-bg: var(--showcase-purple);
  --accenture-panel-fg: #fff;
}

.accenture-journey__panel::after {
  background: linear-gradient(90deg, var(--accenture-panel-bg) 0%, var(--accenture-panel-bg) 37%, transparent 76%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.accenture-journey__media {
  inset: 0 0 0 40%;
  margin: 0;
  overflow: hidden;
  position: absolute;
}

.accenture-journey__media img {
  filter: grayscale(1) contrast(1.14);
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: filter 500ms ease, transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1);
  width: 100%;
}

.accenture-journey__panel:hover .accenture-journey__media img {
  filter: grayscale(0.15) contrast(1.06);
  transform: scale(1.01);
}

.accenture-journey__number {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  position: relative;
  z-index: 2;
}

.accenture-journey__content {
  align-self: end;
  max-width: 48%;
  position: relative;
  z-index: 2;
}

.accenture-journey__panel h2 {
  font-size: clamp(3.6rem, 8vw, 8rem);
  letter-spacing: -0.075em;
  line-height: 0.88;
  margin: 0;
  max-width: 8ch;
}

.accenture-journey__panel p {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 2rem 0 0;
  text-transform: uppercase;
}

.accenture-journey__progress {
  background: #cfcfca;
  height: 2px;
  margin: 2rem var(--page-padding) 0;
  overflow: hidden;
}

.accenture-journey__progress span {
  background: var(--showcase-purple);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
}

.showcase-blocks--accenture {
  background: #f1f1ef;
  color: #050505;
}

.showcase-blocks--accenture .eyebrow--violet {
  color: #6800a3;
}

.showcase-editorial-grid {
  background: #050505;
}

.showcase-editorial-grid a {
  background: #f1f1ef;
  border-top: 0.5rem solid #050505;
}

.showcase-editorial-grid a:nth-child(3) {
  background: #160126;
  color: #fff;
}

.showcase-editorial-grid a:hover {
  border-top-color: var(--showcase-purple);
}

.showcase-feature--accenture {
  background: var(--showcase-purple);
  color: #fff;
}

.showcase-feature--accenture h2 {
  max-width: 10ch;
}

.showcase--accenture .showcase-cta {
  background: #050505;
  border-top: 1px solid #343434;
  color: #fff;
}

/* Enablis-inspired: deep technical field, chromatic glow and metric rhythm. */
.showcase--enablis {
  background: #08090e;
  color: #fff;
}

.enablis-hero {
  align-items: center;
  background:
    radial-gradient(circle at 23% 52%, rgba(71, 74, 217, 0.55), transparent 36%),
    radial-gradient(circle at 79% 42%, rgba(221, 49, 68, 0.64), transparent 42%),
    #0a0711;
  display: flex;
  isolation: isolate;
  justify-content: center;
  min-height: min(46rem, 88svh);
  overflow: hidden;
  padding: 9rem var(--page-padding) 3rem;
  perspective: 1200px;
  text-align: center;
}

.enablis-hero__scene {
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform-style: preserve-3d;
  z-index: -1;
}

.enablis-hero__orbit {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.enablis-hero__orbit--one {
  height: min(72vw, 62rem);
  width: min(72vw, 62rem);
}

.enablis-hero__orbit--two {
  border-color: rgba(239, 115, 154, 0.2);
  height: min(54vw, 46rem);
  transform: translate(-50%, -50%) rotate(27deg) scaleY(0.72);
  width: min(54vw, 46rem);
}

.enablis-hero__orbit--three {
  border-color: rgba(101, 186, 250, 0.22);
  height: min(34vw, 30rem);
  transform: translate(-50%, -50%) rotate(-21deg) scaleY(0.68);
  width: min(34vw, 30rem);
}

.enablis-hero__node {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 2.5rem 0.7rem rgba(111, 188, 255, 0.55);
  height: 0.45rem;
  position: absolute;
  width: 0.45rem;
}

.enablis-hero__node--one {
  left: 19%;
  top: 38%;
}

.enablis-hero__node--two {
  bottom: 25%;
  right: 17%;
}

.enablis-hero__scan {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  filter: blur(0.5px);
  height: 1px;
  left: -20%;
  opacity: 0.55;
  position: absolute;
  top: 24%;
  transform: rotate(-8deg);
  width: 140%;
}

.enablis-hero__glow {
  background: rgba(255, 255, 255, 0.05);
  filter: blur(8rem);
  height: 30rem;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30rem;
}

.enablis-hero__content {
  max-width: 76rem;
  position: relative;
  transform-style: preserve-3d;
}

.showcase--motion-ready .enablis-hero__scene,
.showcase--motion-ready .enablis-hero__orbit,
.showcase--motion-ready .enablis-hero__scan,
.showcase--motion-ready .enablis-hero__glow,
.showcase--motion-ready .enablis-hero__content {
  will-change: filter, opacity, transform;
}

.enablis-hero h1 {
  background: linear-gradient(95deg, #fff 5%, #fff 37%, #d87bbb 55%, #65bafa 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(5rem, 11vw, 11rem);
  font-weight: 700;
  letter-spacing: -0.085em;
  line-height: 0.82;
  margin: 0 auto;
  max-width: 9ch;
}

.enablis-hero .showcase-summary {
  color: rgba(255, 255, 255, 0.78);
  margin: 2.25rem auto 0;
}

.showcase-metrics--enablis {
  background: rgba(7, 7, 11, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.showcase-metrics--enablis > div:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.showcase-metric-card--enablis {
  background: #090a10;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.showcase-metric-card--enablis:last-child {
  border-right: 0;
}

.showcase-metric-card--enablis figure::after {
  background: linear-gradient(180deg, transparent 35%, #090a10 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.showcase-metric-card--enablis img {
  filter: grayscale(0.55) saturate(1.35) contrast(1.12) brightness(0.72);
}

.showcase-metric-card--enablis:hover img {
  filter: grayscale(0) saturate(1.15) contrast(1.05) brightness(0.92);
}

.showcase-metrics--enablis strong {
  background: linear-gradient(90deg, #ef739a, #6fbcff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.showcase-metrics--enablis span {
  color: rgba(255, 255, 255, 0.68);
}

.showcase-feature--enablis {
  align-items: stretch;
  background: #0d0e14;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
}

.showcase-feature--enablis h2 {
  background: linear-gradient(105deg, #fff 20%, #e8769d 68%, #64baff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 10ch;
}

.showcase-feature--enablis img {
  border-radius: 0.75rem;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
  width: 100%;
}

.showcase-blocks--enablis {
  background: #08090e;
}

.showcase-blocks--enablis .eyebrow--violet {
  color: #ef738f;
}

.showcase-steps {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.showcase-steps a:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.showcase-steps a:hover {
  background: rgba(239, 115, 143, 0.12);
}

.showcase-steps b {
  color: #ef738f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
  margin-bottom: 3rem;
}

.showcase--enablis .showcase-cta {
  background:
    radial-gradient(circle at 20% 50%, rgba(65, 74, 216, 0.72), transparent 45%),
    radial-gradient(circle at 82% 45%, rgba(222, 49, 70, 0.7), transparent 50%),
    #0b0811;
  color: #fff;
}

@media (max-width: 960px) {
  .showcase--native-motion.showcase--accenture,
  .showcase--native-motion .accenture-journey {
    overflow-x: hidden;
  }

  body:has(.showcase) .site-header .primary-nav:not(.is-open),
  body:has(.showcase) .site-header .header-cta {
    display: none;
  }

  body:has(.showcase) .site-header .primary-nav.is-open {
    display: flex;
  }

  body:has(.showcase) .site-header .nav-toggle {
    display: flex;
  }

  .accenture-hero,
  .showcase-feature,
  .showcase-feature--enablis {
    grid-template-columns: 1fr;
  }

  .accenture-hero__story {
    max-width: 34rem;
  }

  .accenture-hero__image {
    height: 54%;
    left: 18%;
    top: 46%;
    width: 82%;
  }

  .accenture-journey__stage {
    display: block;
    min-height: auto;
    padding: 5rem 0 0;
  }

  .showcase--native-motion .accenture-hero__pin-shell {
    height: auto;
  }

  .showcase--native-motion .accenture-hero__pin-shell .accenture-hero,
  .showcase--native-motion .accenture-journey__stage {
    position: relative;
    top: auto;
  }

  .showcase--native-motion .dock-hero__pin-shell,
  .showcase--native-motion .enablis-hero__pin-shell {
    height: auto;
  }

  .showcase--native-motion .dock-hero__pin-shell .dock-hero,
  .showcase--native-motion .enablis-hero__pin-shell .enablis-hero {
    height: auto;
    position: relative;
    top: auto;
  }

  .accenture-journey__meta {
    padding-bottom: 2rem;
  }

  .accenture-journey__viewport {
    overflow: visible;
  }

  .accenture-journey__rail {
    display: grid;
    height: auto;
    width: auto;
  }

  .accenture-journey__panel {
    border-bottom: 1px solid #d7d7d2;
    border-right: 0;
    min-height: 26rem;
    width: 100%;
  }

  .accenture-journey__panel::after {
    background: linear-gradient(0deg, var(--accenture-panel-bg) 0%, var(--accenture-panel-bg) 38%, transparent 76%);
  }

  .accenture-journey__media {
    inset: 0 0 42%;
  }

  .accenture-journey__content {
    max-width: 100%;
  }

  .accenture-journey__progress {
    display: none;
  }

  .showcase-metrics,
  .showcase-card-grid,
  .showcase-editorial-grid,
  .showcase-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-steps a:nth-child(2) {
    border-right: 0;
  }

  .showcase-steps a:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 620px) {
  .showcase-hero {
    min-height: 44rem;
  }

  .showcase-metric-card {
    min-height: 22rem;
  }

  .showcase-blocks .umb-block-grid__layout-container {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .showcase-blocks .umb-block-grid__layout-item {
    grid-column: 1 / -1 !important;
    min-width: 0;
    width: 100%;
  }

  .dock-hero,
  .accenture-hero,
  .enablis-hero {
    padding-top: 8.5rem;
  }

  .dock-hero {
    min-height: 48rem;
  }

  .dock-hero__grid {
    background-size: 50% 100%, 100% 25%;
  }

  .enablis-hero__orbit--one {
    height: 130vw;
    width: 130vw;
  }

  .enablis-hero__orbit--two {
    height: 96vw;
    width: 96vw;
  }

  .enablis-hero__orbit--three {
    height: 62vw;
    width: 62vw;
  }

  .dock-hero h1,
  .enablis-hero h1 {
    font-size: clamp(3.8rem, 18vw, 5.5rem);
  }

  .accenture-hero h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
    margin-top: 2rem;
    max-width: 100%;
  }

  .accenture-hero__image {
    height: 40%;
    left: 12%;
    top: 60%;
    width: 88%;
  }

  .accenture-journey__panel h2 {
    font-size: clamp(3.2rem, 16vw, 5.4rem);
  }

  .showcase-actions,
  .showcase-actions .showcase-button {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .showcase-metrics,
  .showcase-card-grid,
  .showcase-editorial-grid,
  .showcase-steps,
  .showcase-capabilities {
    grid-template-columns: 1fr;
  }

  .showcase-metrics > div {
    min-height: 7rem;
  }

  .showcase-metrics > div:not(:last-child),
  .showcase-steps a,
  .showcase-capabilities span:nth-child(odd) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;
  }

  .showcase-feature,
  .showcase-blocks,
  .showcase-cta {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .showcase-case-list a {
    gap: 0.8rem;
    grid-template-columns: 1fr auto;
    padding: 1.5rem 0;
  }

  .showcase-case-list a span {
    grid-column: 1 / -1;
  }

  .showcase-capabilities span:nth-child(odd),
  .showcase-capabilities span:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
  }

  .showcase-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase *,
  .showcase *::before,
  .showcase *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Approved 2026 homepage design supplied in Abstract Home Standalone 3.html. */
.has-home-v2 {
  --prototype-navy: #000d3b;
  --prototype-navy-deep: #000922;
  --prototype-navy-light: #0a1b52;
  --prototype-orange: #ef6c00;
  --prototype-orange-dark: #c45800;
  --prototype-slate: #263238;
  --prototype-paper: #f9f9f9;
  --prototype-line: #dadada;
  background: var(--prototype-navy);
}

.has-home-v2 .site-header {
  background: rgba(0, 13, 59, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  grid-template-columns: minmax(190px, 0.75fr) auto minmax(170px, 0.75fr);
  min-height: 7.5rem;
  padding: 1.5rem clamp(1.5rem, 5vw, 5rem);
  transition: background-color 220ms ease, box-shadow 220ms ease, min-height 220ms ease, padding 220ms ease;
}

.has-home-v2 .site-header.is-condensed {
  background: rgba(0, 9, 34, 0.98);
  box-shadow: 0 0.8rem 2rem rgba(0, 5, 20, 0.35);
  min-height: 5rem;
  padding-block: 0.6rem;
}

.has-home-v2 .brand {
  width: min(13rem, 100%);
}

.has-home-v2 .primary-nav {
  gap: clamp(1.2rem, 2.8vw, 3rem);
}

.has-home-v2 .primary-nav :is(a,button[data-menu]) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 400;
}

.has-home-v2 .primary-nav :is(a,button[data-menu])::after {
  background: var(--prototype-orange);
}

.has-home-v2 .primary-nav__submenu {
  background: var(--prototype-navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
  padding: 1rem;
}

.has-home-v2 .primary-nav__submenu a {
  color: rgba(255, 255, 255, 0.76);
}

.has-home-v2 .primary-nav__submenu a:hover {
  color: #fff;
}

.has-home-v2 .header-cta {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 500;
  gap: 1.4rem;
  justify-self: end;
  padding: 0.8rem 1.15rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.has-home-v2 .header-cta:hover {
  background: #fff;
  color: var(--prototype-navy);
}

.home-v2 {
  background: #fff;
  color: var(--prototype-navy);
  isolation: isolate;
  overflow: clip;
  position: relative;
}

.home-v2.is-motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms cubic-bezier(.2, 0, .2, 1), transform 520ms cubic-bezier(.2, 0, .2, 1);
}

.home-v2.is-motion-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

.home-v2 [data-slide] {
  opacity: 0;
  transition: opacity 760ms cubic-bezier(.2, 0, .2, 1), transform 900ms cubic-bezier(.2, 0, .2, 1);
}

.home-v2 [data-slide="left"] {
  transform: translateX(-46%);
}

.home-v2 [data-slide="right"] {
  transform: translateX(46%);
}

.home-v2 [data-slide].is-revealed {
  opacity: 1;
  transform: none;
}

.cursor-glow {
  background: radial-gradient(circle, rgba(21, 101, 192, 0.14), rgba(21, 101, 192, 0) 68%);
  border-radius: 50%;
  height: 34rem;
  left: -17rem;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: -17rem;
  transition: opacity 180ms ease;
  width: 34rem;
  z-index: 4;
}

.prototype-kicker {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: normal;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

.prototype-kicker--orange {
  color: var(--prototype-orange);
}

.prototype-link {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.84);
  display: inline-flex;
  font-size: 0.9rem;
  gap: 2rem;
  padding: 0.4rem 0;
}

.prototype-link span,
.home-v2 [data-arrow-glyph] {
  display: inline-block;
  transition: transform 180ms ease;
}

.prototype-link--bright {
  border-bottom-color: var(--prototype-orange);
  color: #fff;
}

.prototype-link--dark {
  border-bottom-color: var(--prototype-orange);
  color: var(--prototype-navy);
}

.prototype-button {
  align-items: center;
  background: var(--prototype-orange);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 500;
  justify-content: space-between;
  min-height: 3.5rem;
  padding: 0.9rem 1.25rem;
}

.home-v2-hero {
  align-items: end;
  background: var(--prototype-navy);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(18rem, 0.6fr);
  min-height: min(52rem, calc(100svh - 7.5rem));
  overflow: hidden;
  padding: clamp(4rem, 9vw, 8rem) clamp(1.5rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
  position: relative;
}

.home-v2-hero::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 5%;
  position: absolute;
  width: 90%;
}

.home-v2-hero__mesh {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.home-v2-hero__orb {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.home-v2-hero__orb--one {
  height: 30rem;
  right: -8rem;
  top: 8%;
  width: 30rem;
}

.home-v2-hero__orb--two {
  bottom: -13rem;
  height: 40rem;
  left: 34%;
  width: 40rem;
}

.home-v2-hero__title,
.home-v2-hero__intro {
  position: relative;
  z-index: 2;
}

.home-v2-hero h1 {
  font-size: clamp(4.7rem, 10vw, 9.6rem);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.83;
  margin: 0;
  max-width: 8.5ch;
}

.home-v2-hero h1 span {
  color: var(--prototype-orange);
  display: inline-block;
  font-size: 0;
  height: 0.38em;
  margin-left: 0.06em;
  width: 0.38em;
}

.home-v2-hero__intro {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 0.8rem;
  padding-left: clamp(1.5rem, 3vw, 3rem);
}

.home-v2-hero__intro > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  font-weight: 300;
  line-height: 1.55;
  margin: 0 0 2.25rem;
  max-width: 31rem;
}

.home-v2-proof {
  background: var(--prototype-navy-deep);
  color: #fff;
}

.home-v2-proof__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: auto;
  max-width: 1440px;
  padding: 4rem clamp(1.5rem, 5vw, 5rem);
}

.home-v2-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 0.5rem;
  padding: 0 2rem;
}

.home-v2-stat:first-child {
  border-left: 0;
  padding-left: 0;
}

.home-v2-stat strong {
  color: var(--prototype-orange);
  font-size: clamp(2.6rem, 4.8vw, 4.7rem);
  font-weight: 300;
  line-height: 1;
}

.home-v2-stat span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.home-v2-proof__logos {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(4, minmax(5rem, 1fr));
  margin: auto;
  max-width: 1440px;
  padding: 2.5rem clamp(1.5rem, 5vw, 5rem);
}

.home-v2-proof__logos img {
  filter: grayscale(1) brightness(0) invert(1);
  height: 2.5rem;
  object-fit: contain;
  opacity: 0.62;
  width: 100%;
}

.home-v2-marquee {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  padding: 1.15rem 0;
}

.home-v2-marquee > div {
  align-items: center;
  display: flex;
  gap: 4rem;
  width: max-content;
}

.home-v2-marquee span {
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  display: inline-flex;
  font-size: 0.74rem;
  gap: 1rem;
  text-transform: uppercase;
}

.home-v2-marquee i {
  background: var(--prototype-orange);
  display: inline-block;
  height: 0.42rem;
  width: 0.42rem;
}

.home-v2-section,
.home-v2-locations {
  background: #fff;
  color: var(--prototype-navy);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
}

.home-v2-section__heading {
  margin: 0 auto clamp(3rem, 7vw, 6rem);
  max-width: 1340px;
}

.home-v2-section__heading--split {
  align-items: end;
  display: grid;
  gap: clamp(2rem, 7vw, 8rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.55fr);
}

.home-v2-section__heading h2,
.home-v2-locations h2 {
  font-size: clamp(3rem, 6.5vw, 6.7rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.92;
  margin: 0;
  max-width: 10ch;
}

.home-v2-section__heading > p,
.home-v2-section__heading > div:last-child > p,
.home-v2-locations .home-v2-section__heading > p {
  color: #5d6470;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.home-v2-service-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: auto;
  max-width: 1340px;
}

.home-v2-service-card {
  aspect-ratio: 1 / 1.05;
  background: var(--prototype-navy);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.home-v2-service-card img,
.home-v2-service-card__shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.home-v2-service-card img {
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2, 0, .2, 1), filter 300ms ease;
}

.home-v2-service-card__shade {
  background: linear-gradient(180deg, rgba(0, 13, 59, 0.02) 20%, rgba(0, 9, 34, 0.94) 100%);
}

.home-v2-service-card__number {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  left: 1.5rem;
  position: absolute;
  top: 1.4rem;
}

.home-v2-service-card__content {
  bottom: 0;
  display: grid;
  gap: 0.8rem;
  left: 0;
  padding: 1.8rem;
  position: absolute;
  right: 0;
}

.home-v2-service-card__content strong {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}

.home-v2-service-card__content > span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.9rem;
  line-height: 1.45;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 300ms ease, opacity 220ms ease;
}

.home-v2-service-card__content i {
  color: var(--prototype-orange);
  font-style: normal;
  justify-self: end;
}

.home-v2-service-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.home-v2-ai {
  align-items: end;
  background: var(--prototype-navy);
  color: #fff;
  display: grid;
  gap: clamp(3rem, 9vw, 10rem);
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.6fr);
  min-height: 48rem;
  overflow: hidden;
  padding: clamp(5rem, 11vw, 10rem) clamp(1.5rem, 5vw, 5rem);
}

.home-v2-ai h2 {
  font-size: clamp(4.2rem, 9vw, 9rem);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.8;
  margin: 0;
}

.home-v2-ai h2 span {
  display: block;
}

.home-v2-ai h2 span:last-child {
  color: var(--prototype-orange);
  margin-left: 0.7em;
}

.home-v2-ai__copy > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.65;
  margin: 0 0 2rem;
}

.home-v2-story {
  background: var(--prototype-paper);
}

.home-v2-story .home-v2-section__heading h2 span {
  display: block;
}

.home-v2-story__card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  margin: auto;
  max-width: 1340px;
}

.home-v2-story__copy {
  align-items: start;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.home-v2-story__copy h3 {
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0 0 1.5rem;
}

.home-v2-story__copy > p:not(.prototype-kicker) {
  color: #5d6470;
  font-weight: 300;
  margin: 0 0 2rem;
}

.home-v2-story__card > img {
  height: 100%;
  min-height: 37rem;
  object-fit: cover;
  width: 100%;
}

.home-v2-flexible {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.home-v2-sectors {
  border-top: 1px solid var(--prototype-line);
}

.home-v2-sector-grid {
  border-top: 1px solid var(--prototype-line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: auto;
  max-width: 1340px;
}

.home-v2-sector-grid a {
  align-items: center;
  border-bottom: 1px solid var(--prototype-line);
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 2.5rem 1fr auto;
  min-height: 8rem;
  padding: 1.5rem 2rem 1.5rem 0;
}

.home-v2-sector-grid a:nth-child(even) {
  border-left: 1px solid var(--prototype-line);
  padding-left: 2rem;
}

.home-v2-sector-grid span {
  color: var(--prototype-orange);
  font-size: 0.75rem;
}

.home-v2-sector-grid strong {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 400;
}

.home-v2-sector-grid i {
  font-style: normal;
}

.home-v2-about {
  background: var(--prototype-slate);
  color: #fff;
  display: grid;
  gap: clamp(3rem, 10vw, 12rem);
  grid-template-columns: 1fr 0.72fr;
  padding: clamp(5rem, 11vw, 10rem) clamp(1.5rem, 5vw, 5rem);
}

.home-v2-about h2 {
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.9;
  margin: 0;
  max-width: 8ch;
}

.home-v2-about__copy > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  margin: 0 0 3rem;
}

.home-v2-about__copy > div {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
}

.home-v2-about__copy span {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  gap: 1rem;
  padding: 1.15rem 0;
}

.home-v2-about__copy i {
  background: var(--prototype-orange);
  height: 0.45rem;
  width: 0.45rem;
}

.home-v2-locations {
  background: var(--prototype-paper);
}

.home-v2-map {
  background: var(--prototype-navy);
  color: #fff;
  margin: auto;
  max-width: 1340px;
  min-height: 34rem;
  overflow: hidden;
  position: relative;
}

.home-v2-map svg {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.home-v2-map__locations {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  inset: auto 0 0;
  position: absolute;
}

.home-v2-location {
  background: rgba(0, 9, 34, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 1.5rem;
}

.home-v2-location + .home-v2-location {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.home-v2-location i {
  background: var(--prototype-orange);
  border-radius: 50%;
  grid-row: 1 / 3;
  height: 0.65rem;
  margin: 0.35rem 1rem 0 0;
  width: 0.65rem;
}

.home-v2-location strong {
  font-weight: 400;
}

.home-v2-location span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.home-v2-community__logos {
  align-items: stretch;
  border: 1px solid var(--prototype-line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: auto;
  max-width: 1340px;
}

.home-v2-community__logos > div {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 21rem;
  padding: 3rem;
}

.home-v2-community__logos > div + div {
  border-left: 1px solid var(--prototype-line);
}

.home-v2-community__logos img {
  max-height: 10rem;
  max-width: 16rem;
  object-fit: contain;
}

.home-v2-insights {
  background: var(--prototype-paper);
}

.home-v2-insight-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: auto;
  max-width: 1340px;
}

.home-v2-insight-grid > a {
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 35rem;
  padding: 1.5rem;
}

.home-v2-insight-grid__image {
  display: block;
  height: 16rem;
  margin: -1.5rem -1.5rem 2rem;
  overflow: hidden;
}

.home-v2-insight-grid__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.home-v2-insight-grid strong {
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  font-weight: 300;
  line-height: 1.2;
}

.home-v2-insight-grid i {
  color: var(--prototype-orange);
  font-style: normal;
  margin-top: auto;
}

.home-v2-insight-grid a:hover img {
  transform: scale(1.04);
}

.home-v2-careers {
  background: var(--prototype-orange);
  color: #fff;
  display: grid;
  gap: clamp(3rem, 10vw, 12rem);
  grid-template-columns: 1.15fr 0.55fr;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 5rem);
}

.home-v2-careers h2 {
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.9;
  margin: 0;
  max-width: 9ch;
}

.home-v2-careers > div:last-child > p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.65;
  margin: 0 0 2rem;
}

.home-v2-careers .prototype-link {
  border-bottom-color: #fff;
}

.home-v2-contact {
  background: #fff;
  color: var(--prototype-navy);
  display: grid;
  gap: clamp(3rem, 10vw, 10rem);
  grid-template-columns: 0.8fr 1.2fr;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
}

.home-v2-contact__intro h2 {
  font-size: clamp(3.4rem, 6vw, 6.3rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.9;
  margin: 0 0 2rem;
}

.home-v2-contact__intro > p:last-child {
  color: #5d6470;
  font-weight: 300;
  max-width: 33rem;
}

.home-v2-contact__form {
  display: grid;
  gap: 2rem 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.home-v2-contact__form label {
  display: grid;
  gap: 0.6rem;
}

.home-v2-contact__form label span {
  color: #5d6470;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.home-v2-contact__form input,
.home-v2-contact__form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #aeb4bc;
  border-radius: 0;
  color: var(--prototype-navy);
  padding: 0.75rem 0;
  resize: vertical;
}

.home-v2-contact__wide {
  grid-column: 1 / -1;
}

.home-v2-contact__form .prototype-button {
  justify-self: start;
  min-width: 16rem;
}

.has-home-v2 .site-footer {
  background: var(--prototype-navy-deep);
  border-top: 0;
  color: #fff;
  display: grid;
  gap: clamp(3rem, 7vw, 8rem);
  grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 1.4fr);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem) 2rem;
}

.has-home-v2 .site-footer__brand img {
  margin-bottom: 2rem;
  max-width: 14rem;
}

.has-home-v2 .site-footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin: 0 0 2rem;
}

.has-home-v2 .site-footer__navigation {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(4, 1fr);
}

.has-home-v2 .site-footer__navigation nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.has-home-v2 .site-footer__navigation a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.has-home-v2 .site-footer__navigation .site-footer__heading {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.has-home-v2 .site-footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 2rem;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 1.5rem;
}

.has-home-v2 .site-footer__bottom p {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.73rem;
  margin: 0;
}

.has-home-v2 .site-footer__bottom nav {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.has-home-v2 .site-footer__bottom a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.73rem;
}

@media (max-width: 1050px) {
  .has-home-v2 .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .home-v2-hero {
    grid-template-columns: 1fr 0.55fr;
  }

  .home-v2-service-grid,
  .home-v2-insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .has-home-v2 .site-footer__navigation {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .has-home-v2 .site-header {
    grid-template-columns: 1fr auto;
    min-height: 5.4rem;
    padding-inline: var(--page-padding);
  }

  .has-home-v2 .header-cta {
    display: none;
  }

  .has-home-v2 .brand {
    width: 10rem;
  }

  .has-home-v2 .primary-nav {
    background: var(--prototype-navy-deep);
  }

  .home-v2-hero,
  .home-v2-ai,
  .home-v2-about,
  .home-v2-careers,
  .home-v2-contact {
    grid-template-columns: 1fr;
  }

  .home-v2-hero {
    align-content: end;
    gap: 3rem;
    min-height: calc(100svh - 5.4rem);
  }

  .home-v2-hero__intro {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 0;
    padding-top: 2rem;
  }

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

  .home-v2-stat:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .home-v2-stat:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .home-v2-section__heading--split,
  .home-v2-story__card {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .home-v2-section__heading--split {
    gap: 2rem;
  }

  .home-v2-story__card > img {
    min-height: 28rem;
  }

  .home-v2-sector-grid {
    grid-template-columns: 1fr;
  }

  .home-v2-sector-grid a:nth-child(even) {
    border-left: 0;
    padding-left: 0;
  }

  .home-v2-community__logos {
    grid-template-columns: 1fr;
  }

  .home-v2-community__logos > div + div {
    border-left: 0;
    border-top: 1px solid var(--prototype-line);
  }

  .has-home-v2 .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .home-v2-hero h1 {
    font-size: clamp(4rem, 22vw, 6.4rem);
  }

  .home-v2-proof__logos {
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .home-v2-service-grid,
  .home-v2-insight-grid {
    grid-template-columns: 1fr;
  }

  .home-v2-service-card {
    aspect-ratio: 1 / 1.02;
  }

  .home-v2-map {
    min-height: 36rem;
  }

  .home-v2-map__locations {
    grid-template-columns: 1fr;
  }

  .home-v2-location + .home-v2-location {
    border-left: 0;
  }

  .home-v2-contact__form {
    grid-template-columns: 1fr;
  }

  .home-v2-contact__form > * {
    grid-column: 1;
  }

  .has-home-v2 .site-footer__navigation {
    grid-template-columns: 1fr 1fr;
  }

  .has-home-v2 .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
