:root {
  --navy: #123d60;
  --white: #ffffff;
  --red: #ff2c1f;
  --navy-line: rgb(18 61 96 / 24%);
  --navy-soft: rgb(18 61 96 / 8%);
  --header-height: 104px;
  --page-margin: clamp(28px, 6.667vw, 96px);
  --section-space: clamp(96px, 9vw, 144px);
  --display: "Bodoni 72", Didot, "Iowan Old Style", Baskerville, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --motion-fast: 180ms;
  --motion-ui: 220ms;
  --motion-normal: 240ms;
  --motion-spatial: 400ms;
  --type-h1: clamp(4.25rem, 5.25vw, 4.75rem);
  --type-h2: clamp(3rem, 3.9vw, 3.5rem);
  --type-h3: clamp(1.625rem, 2.2vw, 2rem);
  --type-lead: clamp(1.25rem, 1.5vw, 1.375rem);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-fcw: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

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

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

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

h1,
h2 {
  color: inherit;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: var(--type-h1);
  line-height: 1.01;
}

h2 {
  margin-bottom: 28px;
  font-size: var(--type-h2);
  line-height: 1.08;
}

h3 {
  margin-bottom: 16px;
  font-size: var(--type-h3);
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.18;
}

p {
  margin-bottom: 22px;
}

.page-shell {
  width: calc(100% - (2 * var(--page-margin)));
  max-width: 1536px;
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.lead {
  font-size: var(--type-lead);
  line-height: 1.52;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--navy);
  color: var(--white);
  transition: transform var(--motion-fast) var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  transition:
    background-color var(--motion-fast) var(--ease-out),
    color var(--motion-fast) var(--ease-out),
    transform 140ms var(--ease-out);
}

.button--primary {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.button--secondary {
  border-color: var(--navy);
  background: var(--white);
  color: var(--navy);
}

.button--outline-light {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--navy);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.5;
}

.text-link--light {
  border-color: var(--white);
  color: var(--white);
}

/* Header and navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid var(--navy-line);
  background: var(--white);
}

.site-header__bar {
  display: grid;
  height: 100%;
  align-items: center;
  grid-template-columns: 136px minmax(0, 1fr) auto;
  gap: 32px;
}

.brand {
  display: inline-flex;
  width: 112px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  font-size: 0.875rem;
  font-weight: 550;
  line-height: 1.5;
}

.desktop-nav > a,
.trust-trigger-group > a {
  position: relative;
  padding-block: 10px;
  white-space: nowrap;
}

.desktop-nav > a::after,
.trust-trigger-group > a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform var(--motion-fast) var(--ease-out);
}

.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.trust-trigger-group {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.mega-trigger {
  display: grid;
  width: 28px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.mega-trigger:focus-visible {
  outline-offset: -3px;
}

.mega-trigger svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.5;
  transition: transform var(--motion-ui) var(--ease-out);
}

.mega-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.header-cta {
  min-width: 166px;
}

.menu-trigger,
.mobile-nav {
  display: none;
}

.noscript-nav {
  position: absolute;
  top: 100%;
  right: var(--page-margin);
  left: var(--page-margin);
  display: flex;
  max-height: calc(100svh - var(--header-height));
  padding: 18px 0;
  overflow-y: auto;
  border-bottom: 1px solid var(--navy);
  background: var(--white);
  flex-wrap: wrap;
  gap: 8px 24px;
}

.noscript-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
}

.mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--navy);
  background: var(--white);
  box-shadow: 0 22px 46px rgb(18 61 96 / 12%);
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  pointer-events: none;
  transition:
    clip-path 300ms var(--ease-fcw),
    opacity var(--motion-fast) var(--ease-out);
}

.mega-menu.is-open {
  clip-path: inset(0);
  opacity: 1;
  pointer-events: auto;
}

.mega-menu__inner {
  display: grid;
  padding-block: 44px;
  grid-template-columns: minmax(210px, 1.8fr) minmax(280px, 2.2fr) minmax(380px, 3.5fr);
  gap: clamp(36px, 4.5vw, 76px);
}

.mega-menu__title {
  display: block;
  margin-bottom: 16px;
  font-family: var(--sans);
  font-size: var(--type-h3);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.18;
}

.mega-menu__intro p,
.mega-menu__preview figcaption {
  font-size: 1rem;
  line-height: 1.55;
}

.mega-menu__links {
  position: relative;
  display: grid;
  align-content: start;
}

.mega-menu__marker {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 9px;
  height: 9px;
  background: var(--red);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 200ms var(--ease-in-out),
    opacity var(--motion-fast) var(--ease-out);
}

.mega-menu.is-open .mega-menu__marker {
  opacity: 1;
}

.mega-menu__overview-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.mega-menu__overview-marker {
  flex: 0 0 auto;
  opacity: 0;
  transform: scaleX(-1);
}

.mega-menu__overview-link:has(a[aria-current="page"]) .mega-menu__overview-marker {
  opacity: 1;
}

.mega-menu__links:not(:has(a[aria-current="page"])) .mega-menu__marker {
  opacity: 0;
}

.mega-menu__links a {
  display: grid;
  min-height: 48px;
  padding: 13px 0;
  border-bottom: 1px solid var(--navy-line);
  grid-template-columns: 34px 1fr;
  gap: 8px;
  font-size: 1rem;
}

.mega-menu__links span {
  color: var(--navy);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
}

.mega-menu__preview {
  margin-bottom: 0;
}

.mega-menu__preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mega-menu__preview figcaption {
  width: min(100%, 520px);
  margin-top: 16px;
}

/* Hero */

.hero-story {
  height: 220svh;
  min-height: 1500px;
  background: var(--white);
}

.hero-story__sticky {
  position: sticky;
  top: var(--header-height);
  overflow: hidden;
  height: calc(100svh - var(--header-height));
  min-height: 620px;
  background: var(--white);
}

.hero-story__copy {
  position: absolute;
  top: clamp(54px, 8vh, 92px);
  right: var(--page-margin);
  left: var(--page-margin);
  z-index: 2;
  text-align: center;
  transform-origin: center top;
  will-change: opacity, transform;
}

.hero-story__copy h1 {
  width: min(100%, 1000px);
  margin-inline: auto;
}

.hero-story__copy > p {
  width: min(100%, 780px);
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
}

.hero-story__light-text {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  opacity: 0;
  pointer-events: none;
}

.hero-story__title {
  width: min(100%, 1000px);
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
  font-family: var(--display);
  font-size: var(--type-h1);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.01;
}

.hero-story__light-text .lead {
  width: min(100%, 780px);
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
}

.hero-aperture {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-aperture__mask {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  clip-path: inset(46% 8% 5%);
  will-change: clip-path, opacity;
}

.hero-aperture__mask::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(18 61 96 / 62%) 0%, rgb(18 61 96 / 30%) 24%, rgb(18 61 96 / 0%) 58%);
  content: "";
  pointer-events: none;
}

.hero-aperture__mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transform-origin: center;
  will-change: transform;
}

/* Advisory ledger and role distinction */

.section--ledger {
  padding-top: clamp(88px, 8vw, 116px);
  padding-bottom: 0;
  border-top: 1px solid var(--navy-line);
}

.ledger-layout {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border: 1px solid var(--navy);
  column-gap: 0;
  row-gap: 0;
}

.section-heading {
  padding: clamp(44px, 5vw, 68px);
  border-bottom: 1px solid var(--navy);
  grid-column: 1 / -1;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading h2 {
  width: min(100%, 980px);
}

.ledger-copy {
  display: grid;
  min-height: 520px;
  align-content: center;
  padding: clamp(44px, 5vw, 76px);
  background: var(--navy);
  color: var(--white);
  grid-column: 1 / span 7;
}

.ledger-copy h2 {
  width: min(100%, 720px);
  margin-bottom: clamp(42px, 5vw, 64px);
}

.ledger-copy p {
  width: min(100%, 720px);
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  line-height: 1.72;
}

.ledger-copy .lead {
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  line-height: 1.72;
}

.ledger-copy p:last-child,
.ground-plane__copy p:last-child,
.process-heading p:last-child,
.reason-item p:last-child,
.careers-layout p:last-child,
.consultation-copy p:last-child {
  margin-bottom: 0;
}

.resolving-rule {
  position: relative;
  height: 12px;
  margin-top: 44px;
}

.resolving-rule span {
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  height: 1px;
  transform-origin: left;
  background: var(--navy);
}

.resolving-rule i {
  position: absolute;
  top: -2.5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--red);
}

[data-rule-section][data-motion-ready]:not(.is-visible) .resolving-rule span {
  transform: scaleX(0.08);
}

[data-rule-section][data-motion-ready] .resolving-rule span {
  transition: transform var(--motion-spatial) var(--ease-fcw);
}

.responsibility-fields {
  display: grid;
  min-height: 520px;
  border: 0;
  border-left: 1px solid var(--navy);
  grid-column: 8 / -1;
  grid-template-rows: 1fr 56px 1fr;
}

.responsibility-fields article {
  display: flex;
  min-height: 0;
  justify-content: flex-end;
  padding: clamp(30px, 3.5vw, 50px);
  flex-direction: column;
}

.responsibility-fields__number {
  display: block;
  margin-bottom: auto;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.responsibility-fields article p {
  width: min(100%, 520px);
  margin-bottom: 0;
}

.responsibility-fields__connector {
  position: relative;
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
}

.responsibility-fields__connector span {
  width: 1px;
  height: 100%;
  transform-origin: top;
  background: var(--navy);
}

.responsibility-fields__connector i {
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background: var(--red);
}

[data-responsibility-fields][data-motion-ready]:not(.is-visible) .responsibility-fields__connector span {
  transform: scaleY(0);
}

[data-responsibility-fields][data-motion-ready] .responsibility-fields__connector span {
  transition: transform var(--motion-spatial) var(--ease-fcw);
}

[data-responsibility-fields][data-motion-ready] .responsibility-fields__connector i {
  transition: transform var(--motion-spatial) var(--ease-fcw);
}

/* Ground Plane */

.beyond-will {
  overflow: hidden;
  padding-top: clamp(108px, 10vw, 156px);
}

.ground-plane {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(28px, 2.2vw, 32px);
  will-change: transform;
}

.ground-plane__copy {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: subgrid;
  padding-bottom: clamp(58px, 6vw, 84px);
}

.ground-plane__copy h2 {
  margin-bottom: clamp(42px, 4vw, 58px);
  grid-column: 1 / -1;
}

.ground-plane__copy p {
  margin-bottom: 0;
}

.ground-plane__copy p:nth-of-type(1) {
  grid-column: 1 / span 5;
}

.ground-plane__copy p:nth-of-type(2) {
  grid-column: 7 / span 5;
}

.ground-plane__seam {
  position: relative;
  height: clamp(48px, 5vw, 68px);
  grid-column: 1 / -1;
}

.ground-plane__seam span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 18%;
  height: 1px;
  background: var(--navy);
}

.ground-plane__seam i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  background: var(--red);
}

.ground-plane__image {
  overflow: hidden;
  height: clamp(520px, 48vw, 680px);
  margin: 0 calc(var(--page-margin) * -1) 0 0;
  clip-path: inset(0);
  grid-column: 3 / -1;
}

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

/* Trust solution chapters */

.solutions {
  overflow: clip;
  background: var(--navy);
}

.solution-intro {
  padding-top: clamp(108px, 10vw, 156px);
  padding-bottom: clamp(88px, 9vw, 132px);
  color: var(--white);
}

.solution-intro h2,
.solution-intro p {
  width: min(100%, 900px);
}

.solution-intro p {
  margin-bottom: 34px;
}

.solution-intro .button {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.solution-sequence {
  position: relative;
}

.solution-sequence__stage {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.solution-scene {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background: var(--white);
}

.solution-scene > img {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 680px;
  object-fit: cover;
  transform: scale(1.04);
  transform-origin: center;
  will-change: opacity, transform;
}

.solution-scene::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 56%;
  height: 58%;
  background: var(--navy);
  content: "";
}

.solution-scene::before {
  position: absolute;
  top: var(--scene-seam, 0%);
  right: 0;
  left: 0;
  z-index: 3;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0 12%, rgb(255 255 255 / 52%) 12% 100%);
  content: "";
  opacity: var(--scene-seam-opacity, 0);
  pointer-events: none;
}

.solution-scene__copy {
  position: absolute;
  right: auto;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  width: 56%;
  height: 58%;
  min-height: 360px;
  justify-content: center;
  padding: clamp(48px, 6vh, 72px) clamp(38px, 4vw, 64px) clamp(48px, 6vh, 72px) var(--page-margin);
  margin: 0;
  color: var(--white);
  flex-direction: column;
  will-change: opacity, transform;
}

.solution-scene__copy > span {
  margin-bottom: 22px;
  font-size: 0.82rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.solution-scene__copy h3 {
  width: min(100%, 680px);
  margin-bottom: 20px;
}

.solution-scene__copy p {
  width: min(100%, 680px);
  margin-bottom: 24px;
  font-size: 1.125rem;
  line-height: 1.6;
}

.solution-scene__copy .text-link {
  width: fit-content;
  gap: 9px;
}

.solution-scene__copy .text-link::after {
  width: 11px;
  height: 14px;
  flex: 0 0 auto;
  background: transparent url("assets/cursor.svg") center / contain no-repeat;
  content: "";
  transition: transform 180ms var(--ease-out);
}

.solution-sequence__status {
  display: none;
}

.solution-sequence__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

[data-solution-chapters][data-enhanced] .solution-sequence {
  height: 560svh;
  min-height: 4200px;
}

[data-solution-chapters][data-enhanced] .solution-sequence__stage {
  position: sticky;
  top: var(--header-height);
  height: calc(100svh - var(--header-height));
  min-height: 620px;
}

[data-solution-chapters][data-enhanced] .solution-scene {
  position: absolute;
  inset: 0;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
  will-change: clip-path, opacity;
}

[data-solution-chapters][data-enhanced] .solution-scene > img {
  height: 100%;
}

[data-solution-chapters][data-enhanced] .solution-sequence__status {
  position: absolute;
  top: clamp(40px, 6vh, 64px);
  right: auto;
  left: var(--page-margin);
  z-index: 6;
  display: flex;
  width: auto;
  justify-content: flex-start;
  margin: 0;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  gap: 10px;
  pointer-events: none;
}

[data-solution-chapters][data-enhanced] .solution-sequence__status span + span::before {
  margin-right: 10px;
  content: "/";
  font-weight: 400;
}

[data-solution-chapters][data-enhanced] .solution-scene__copy > span {
  display: none;
}

/* Process */

.planning-process {
  overflow: clip;
  border-block: 1px solid var(--navy-line);
}

.process-heading {
  align-self: center;
}

.process-heading h2 {
  margin-bottom: 28px;
}

.process-heading > p {
  width: min(100%, 390px);
  margin-bottom: 0;
}

.process-heading .process-index {
  width: 100%;
  margin-top: 48px;
}

.process-story {
  position: relative;
}

.process-stage {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(290px, 4fr) minmax(0, 8fr);
  gap: clamp(48px, 7vw, 112px);
}

.process-index {
  position: relative;
  display: grid;
  align-content: center;
  padding-left: 30px;
}

.process-index::before {
  position: absolute;
  top: 52px;
  bottom: 52px;
  left: 5px;
  width: 1px;
  content: "";
  background: var(--navy);
}

.process-index button {
  position: relative;
  display: grid;
  min-height: 104px;
  align-items: center;
  padding: 20px 16px 20px 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 1rem;
  grid-template-columns: 42px 1fr;
  line-height: 1.5;
  text-align: left;
  transition: opacity var(--motion-fast) var(--ease-out);
}

.process-index button::before {
  position: absolute;
  top: 50%;
  left: -30px;
  width: 11px;
  height: 11px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  background: var(--white);
  content: "";
  transform: translateY(-50%);
}

.process-index button[aria-selected="false"] {
  opacity: 0.64;
}

.process-index button span {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.process-index__marker {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 11px;
  height: 11px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 220ms var(--ease-in-out),
    opacity var(--motion-fast) var(--ease-out);
}

[data-process-story][data-enhanced] .process-index__marker {
  opacity: 1;
}

.process-visual {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  margin: 0;
  background: var(--navy);
}

.process-visual > img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}

.process-panels {
  display: grid;
  background: var(--navy);
  color: var(--white);
}

.process-panels article {
  padding: clamp(30px, 4vw, 56px);
}

.process-panels h3 {
  margin-bottom: 14px;
}

.process-panels p {
  width: min(100%, 700px);
  margin-bottom: 0;
}

[data-process-story][data-enhanced] .process-story {
  min-height: 340svh;
}

[data-process-story][data-enhanced] .process-stage {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  min-height: calc(100svh - var(--header-height) - 68px);
}

[data-process-story][data-enhanced] .process-panels {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgb(255 255 255 / 52%);
  background: var(--navy);
}

[data-process-story][data-enhanced] .process-panels article {
  padding-top: 38px;
}

[data-process-story][data-enhanced] .process-panels article[hidden] {
  display: none;
}

/* Reasons */

.reasons-layout {
  display: block;
}

.reasons-heading {
  margin-bottom: clamp(56px, 6vw, 84px);
}

.reasons-heading h2 {
  width: min(100%, 980px);
}

.inline-fcw-wordmark {
  display: inline-block;
  width: clamp(112px, 13vw, 164px);
  height: auto;
  margin-left: 0.08em;
  vertical-align: -0.16em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(48px, 6vw, 88px);
  row-gap: clamp(52px, 6vw, 82px);
}

.reason-item {
  display: grid;
  min-height: 230px;
  align-content: start;
  padding-top: 32px;
  border-top: 1px solid var(--navy);
  grid-template-columns: 88px minmax(0, 1fr);
  column-gap: clamp(24px, 3vw, 42px);
}

.reason-icon-placeholder {
  width: 64px;
  height: 64px;
  margin: 0;
  border: 1px solid var(--navy);
  border-radius: 50%;
  grid-column: 1;
  grid-row: 1 / span 2;
  transform-origin: center;
}

.reason-item h3 {
  margin-bottom: 14px;
  grid-column: 2;
}

.reason-item p {
  grid-column: 2;
}

[data-reason-grid][data-motion-ready] .reason-icon-placeholder {
  opacity: 0.24;
  transform: translateY(8px) scale(0.96);
}

[data-reason-grid][data-motion-ready].is-visible .reason-icon-placeholder {
  opacity: 1;
  transform: none;
  transition:
    opacity var(--motion-spatial) var(--ease-fcw),
    transform var(--motion-spatial) var(--ease-fcw);
}

[data-reason-grid][data-motion-ready].is-visible .reason-item:nth-child(2) .reason-icon-placeholder {
  transition-delay: 45ms;
}

[data-reason-grid][data-motion-ready].is-visible .reason-item:nth-child(3) .reason-icon-placeholder {
  transition-delay: 90ms;
}

[data-reason-grid][data-motion-ready].is-visible .reason-item:nth-child(4) .reason-icon-placeholder {
  transition-delay: 135ms;
}

/* Legacy editorial shelf */

.legacy {
  overflow: hidden;
}

.legacy-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

.legacy-image {
  overflow: hidden;
  height: 680px;
  margin: 0;
}

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

.legacy-shelf {
  position: relative;
  z-index: 1;
  margin-left: clamp(-110px, -7vw, -72px);
  padding: clamp(48px, 5.5vw, 82px);
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  background: var(--white);
}

.legacy-locator {
  position: absolute;
  top: -8.5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--red);
  pointer-events: none;
}

.legacy-shelf p {
  margin-bottom: 32px;
}

/* Careers */

.careers {
  position: relative;
  overflow: hidden;
  min-height: min(760px, calc(100svh - var(--header-height)));
  background: var(--navy);
  color: var(--white);
}

.careers__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transform-origin: center;
  will-change: transform;
}

.careers::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(18 61 96 / 93%) 0%, rgb(18 61 96 / 78%) 40%, rgb(18 61 96 / 9%) 76%, rgb(18 61 96 / 0%) 100%);
  content: "";
}

.careers-layout {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  align-items: end;
  padding-top: clamp(120px, 14vh, 180px);
  padding-bottom: clamp(68px, 8vh, 100px);
}

.careers-panel {
  width: min(100%, 720px);
}

.careers-panel p {
  width: min(100%, 680px);
}

.careers-rule {
  position: relative;
  width: min(100%, 680px);
  height: 1px;
  margin: 42px 0 30px;
  background: rgb(255 255 255 / 55%);
}

.careers-rule i {
  position: absolute;
  top: -7.5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--red);
  transform: translateX(0);
  will-change: transform;
}

.button--careers {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

/* FAQ */

.faq-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 2.2vw, 32px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 48px);
  align-self: start;
  grid-column: 1 / span 4;
}

.faq-heading p {
  width: min(100%, 420px);
}

.faq-list {
  border-top: 1px solid var(--navy);
  grid-column: 6 / -1;
}

.faq-list details {
  border-bottom: 1px solid var(--navy);
}

.faq-list summary {
  display: grid;
  min-height: 94px;
  align-items: center;
  padding-block: 24px;
  cursor: pointer;
  grid-template-columns: 1fr 30px;
  gap: 24px;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.5;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.5;
  transition: transform var(--motion-ui) var(--ease-out);
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details[open] summary {
  color: var(--navy);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer__inner {
  padding: 0 64px 30px 0;
}

.faq-answer p {
  margin-bottom: 0;
}

/* Consultation */

.consultation {
  padding-block: clamp(80px, 8vw, 120px);
  background: var(--white);
}

.consultation-layout {
  display: grid;
  overflow: hidden;
  min-height: 620px;
  padding: 0;
  background: var(--navy);
  color: var(--white);
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}

.consultation-copy {
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: clamp(54px, 6vw, 92px);
  flex-direction: column;
}

.consultation-copy h2 {
  width: min(100%, 620px);
}

.consultation-copy p {
  width: min(100%, 560px);
}

.consultation-action {
  margin-top: 52px;
}

.consultation-rule {
  position: relative;
  height: 12px;
  margin: 0;
}

.consultation-rule span {
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgb(255 255 255 / 58%);
}

.consultation-rule i {
  position: absolute;
  top: -2.5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--red);
}

.brand-cursor.brand-cursor {
  width: 13px;
  height: 16px;
  background: transparent url("assets/cursor.svg") center / contain no-repeat;
}

.button--consultation {
  width: min(100%, 330px);
  margin-top: 28px;
  border-color: var(--white);
  background: transparent;
  color: var(--white);
  transition:
    background-color 260ms var(--ease-out),
    color 260ms var(--ease-out);
}

.consultation[data-motion-ready].is-visible .button--consultation {
  background: var(--white);
  color: var(--navy);
}

.consultation-image {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  margin: 0;
  clip-path: inset(0);
  will-change: clip-path;
}

.consultation-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(18 61 96 / 34%) 0%, rgb(18 61 96 / 0%) 40%);
  content: "";
  pointer-events: none;
}

.consultation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  transform-origin: center;
  will-change: transform;
}

/* Footer */

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

.footer-grid {
  display: grid;
  padding-bottom: 72px;
  grid-template-columns: 2.2fr repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 80px);
}

.footer-brand > a {
  display: inline-flex;
  margin-bottom: 28px;
}

.footer-brand img {
  width: 118px;
  height: auto;
}

.footer-brand__logo {
  filter: none;
}

.footer-brand p {
  width: min(100%, 390px);
  margin-bottom: 0;
}

.footer-grid > div:not(.footer-brand) > .footer-label {
  margin-bottom: 24px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) > a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-grid > div:not(.footer-brand) > p:not(.footer-label) {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-socials {
  display: grid;
  gap: 10px;
}

.social-channel {
  display: inline-flex;
  width: fit-content;
  min-width: 0;
  align-items: center;
  gap: 9px;
  line-height: 1.25;
}

.social-channel__icon {
  display: inline-grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: var(--white);
  place-items: center;
}

.social-channel__icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.social-channel__label {
  min-width: 0;
}

.footer-responsibility,
.footer-legal {
  border-top: 1px solid rgb(255 255 255 / 38%);
}

.footer-responsibility {
  padding-block: 32px;
}

.footer-responsibility p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-block: 24px 34px;
}

.footer-legal p {
  margin-bottom: 0;
  font-size: 0.76rem;
}

/* Deliberate hover states for precise pointers */

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }

  .button--primary:hover {
    background: var(--white);
    color: var(--navy);
  }

  .button--secondary:hover,
  .button--consultation:hover,
  .button--careers:hover {
    background: var(--navy);
    color: var(--white);
  }

  .solution-intro .button:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--navy);
  }

  .consultation .button--consultation:hover,
  .careers .button--careers:hover {
    border-color: var(--white);
    background: transparent;
    color: var(--white);
  }

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

  .desktop-nav > a:hover::after,
  .trust-trigger-group > a:hover::after {
    transform: scaleX(1);
  }

  .mega-menu__links a:hover {
    border-color: var(--navy);
  }

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

  .solution-scene__copy .text-link:hover::after {
    transform: translateX(3px);
  }

  .footer-grid > div:not(.footer-brand) > a:hover {
    text-decoration: underline;
    text-decoration-color: var(--red);
    text-underline-offset: 4px;
  }
}

.solution-scene__copy .text-link:focus-visible::after {
  transform: translateX(3px);
}

/* Tablet navigation and layout */

@media (max-width: 1120px) {
  :root {
    --header-height: 88px;
  }

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

  .brand {
    width: 98px;
  }

  .desktop-nav,
  .header-cta,
  .mega-menu {
    display: none;
  }

  .menu-trigger {
    display: inline-flex;
    min-width: 84px;
    height: 46px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 650;
  }

  .menu-trigger__lines,
  .menu-trigger__lines::before,
  .menu-trigger__lines::after {
    width: 24px;
    height: 1px;
    background: var(--navy);
  }

  .menu-trigger__lines {
    position: relative;
  }

  .menu-trigger__lines::before,
  .menu-trigger__lines::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    transition: transform var(--motion-ui) var(--ease-out);
  }

  .menu-trigger__lines::before {
    transform: translateY(-7px);
  }

  .menu-trigger__lines::after {
    transform: translateY(7px);
  }

  .menu-trigger[aria-expanded="true"] .menu-trigger__lines {
    background: transparent;
  }

  .menu-trigger[aria-expanded="true"] .menu-trigger__lines::before {
    transform: translateY(0) rotate(45deg);
  }

  .menu-trigger[aria-expanded="true"] .menu-trigger__lines::after {
    transform: translateY(0) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    overflow-y: auto;
    padding: 32px var(--page-margin) 48px;
    transform: translateY(-16px);
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transition:
      transform var(--motion-ui) var(--ease-out),
      opacity var(--motion-fast) var(--ease-out);
  }

  .mobile-nav.is-open {
    display: block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav > a,
  .mobile-nav summary {
    display: block;
    padding: 19px 0;
    border-bottom: 1px solid var(--navy-line);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 14px;
    gap: 18px;
  }

  .mobile-nav summary::after {
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--navy);
    border-bottom: 1px solid var(--navy);
    content: "";
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform var(--motion-ui) var(--ease-out);
  }

  .mobile-nav details[open] summary::after {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  .mobile-nav__nested {
    padding: 8px 0 12px 24px;
  }

  .mobile-nav__nested a {
    display: block;
    padding: 11px 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .mobile-nav > .button {
    display: inline-flex;
    margin-top: 26px;
    border-bottom: 1px solid var(--navy);
  }

}

@media (max-width: 960px) {
  .ledger-layout,
  .reasons-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .ledger-copy,
  .responsibility-fields,
  .reasons-heading,
  .reason-grid,
  .faq-heading,
  .faq-list {
    grid-column: 1;
  }

  .ledger-layout {
    row-gap: 0;
  }

  .responsibility-fields {
    border-top: 1px solid var(--navy);
    border-left: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto 64px auto;
  }

  .ground-plane {
    min-height: auto;
    align-items: stretch;
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .ground-plane__copy {
    display: block;
    padding-bottom: 48px;
    grid-column: 1;
  }

  .ground-plane__copy h2 {
    margin-bottom: 32px;
  }

  .ground-plane__copy p + p {
    margin-top: 24px;
  }

  .ground-plane__seam {
    height: 64px;
    grid-column: 1;
  }

  .ground-plane__seam span {
    top: 50%;
    left: 0;
    height: 1px;
  }

  .ground-plane__seam i {
    top: 50%;
    bottom: auto;
    left: 0;
    transform: translateY(-50%);
  }

  .ground-plane__image {
    height: clamp(360px, 58vw, 560px);
    margin-right: 0;
    grid-column: 1;
  }

  .solution-scene {
    min-height: 0;
  }

  [data-solution-chapters][data-enhanced] .solution-sequence {
    height: auto;
    min-height: 0;
  }

  .solution-sequence__stage,
  [data-solution-chapters][data-enhanced] .solution-sequence__stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }

  [data-solution-chapters][data-enhanced] .solution-scene {
    position: relative;
    inset: auto;
    min-height: 0;
    clip-path: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .solution-scene > img {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    transform: none;
  }

  .solution-scene::after {
    display: none;
  }

  .solution-scene::before {
    display: none;
  }

  .solution-scene__copy {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 320px;
    padding-top: clamp(42px, 7vw, 72px);
    padding-right: var(--page-margin);
    padding-bottom: clamp(48px, 7vw, 78px);
    padding-left: var(--page-margin);
    margin: 0;
    background: var(--navy);
    transform: none;
  }

  .solution-sequence__status,
  .solution-sequence__progress {
    display: none;
  }

  .consultation-layout {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .consultation-copy {
    padding: clamp(56px, 8vw, 82px) clamp(28px, 7vw, 68px);
  }

  .consultation-image {
    min-height: clamp(360px, 64vw, 540px);
    clip-path: inset(0) !important;
  }

  .consultation-image img {
    transform: none !important;
  }

  .process-heading {
    display: block;
  }

  .process-stage {
    grid-template-columns: 1fr;
  }

  .process-index {
    width: min(100%, 620px);
  }

  [data-process-story][data-enhanced] .process-story {
    min-height: auto;
  }

  [data-process-story][data-enhanced] .process-stage {
    position: static;
    min-height: 0;
  }

  .reason-grid {
    margin-top: 0;
  }

  .legacy-layout {
    grid-template-columns: 1fr;
  }

  .legacy-image {
    height: clamp(430px, 72vw, 620px);
  }

  .legacy-shelf {
    width: calc(100% - 48px);
    margin: -80px 0 0 48px;
  }

  .faq-heading {
    position: static;
  }

  .faq-list {
    margin-top: 28px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  :root {
    --page-margin: 22px;
    --section-space: 88px;
    --type-h1: clamp(2.8rem, 12vw, 3.5rem);
    --type-h2: clamp(2.45rem, 10.5vw, 3rem);
    --type-h3: 1.65rem;
  }

  body {
    font-size: 16px;
  }

  .hero-story {
    height: auto;
    min-height: 0;
  }

  .hero-story__sticky {
    position: static;
    display: flex;
    overflow: visible;
    height: auto;
    min-height: auto;
    padding-block: 64px 88px;
    gap: 46px;
    flex-direction: column;
  }

  .hero-story__copy {
    position: static;
    text-align: left;
    transform: none !important;
  }

  .hero-story__light-text {
    display: none;
  }

  .hero-story__copy h1,
  .hero-story__copy > p {
    width: 100%;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-aperture__mask {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-aperture__mask::after {
    display: none;
  }

  .hero-aperture {
    position: static;
  }

  .responsibility-fields {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ledger-copy {
    min-height: 0;
    padding: 46px 28px;
  }

  .section-heading {
    padding: 38px 28px;
  }

  .responsibility-fields article {
    min-height: auto;
    padding-bottom: 48px;
  }

  .responsibility-fields__number {
    margin-bottom: 38px;
  }

  .responsibility-fields__connector {
    min-height: 80px;
  }

  .responsibility-fields__connector span {
    width: 1px;
    height: 100%;
    margin-inline: auto;
  }

  .responsibility-fields__connector i {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .solution-intro {
    padding-top: 88px;
    padding-bottom: 78px;
  }

  .solution-scene__copy {
    min-height: 0;
    padding-top: 42px;
    padding-bottom: 50px;
  }

  .process-heading {
    display: block;
  }

  .process-index {
    padding-left: 26px;
  }

  .process-index button {
    min-height: 82px;
    grid-template-columns: 36px 1fr;
  }

  .process-index button::before {
    left: -26px;
  }

  .process-visual {
    min-height: 0;
  }

  .process-visual > img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  [data-process-story][data-enhanced] .process-panels article {
    padding-top: 76px;
  }

  .reason-grid {
    grid-template-columns: 1fr;
    row-gap: 52px;
  }

  .reason-item {
    min-height: 0;
    grid-template-columns: 62px minmax(0, 1fr);
    column-gap: 18px;
  }

  .reason-icon-placeholder {
    width: 46px;
    height: 46px;
    margin: 0;
  }

  .legacy-image {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .legacy-shelf {
    width: calc(100% - 22px);
    margin: -28px 0 0 22px;
    padding: 38px 28px;
  }

  .careers {
    display: grid;
    min-height: 0;
  }

  .careers::after {
    display: none;
  }

  .careers__image {
    position: relative;
    height: auto;
    aspect-ratio: 4 / 3;
    transform: none !important;
  }

  .careers-layout {
    min-height: 0;
    padding-top: 54px;
    padding-bottom: 64px;
    background: var(--navy);
  }

  .careers-panel .button {
    width: 100%;
  }

  .consultation {
    padding-block: 0;
  }

  .consultation-layout {
    min-height: 0;
    padding: 0;
  }

  .consultation-copy {
    padding: 68px 22px;
  }

  .consultation-image {
    min-height: 340px;
  }

  .faq-answer__inner {
    padding-right: 0;
  }

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

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

  .footer-legal {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-story {
    height: auto;
    min-height: 0;
  }

  .hero-story__sticky,
  .solution-sequence__stage,
  .faq-heading {
    position: static;
  }

  .hero-story__sticky {
    display: flex;
    overflow: visible;
    height: auto;
    min-height: 0;
    padding-block: 72px 96px;
    gap: 48px;
    flex-direction: column;
  }

  .hero-story__copy,
  .hero-aperture {
    position: static;
  }

  .hero-story__copy {
    transform: none !important;
  }

  .hero-story__light-text {
    display: none;
  }

  .hero-aperture__mask {
    height: min(540px, 56vw);
  }

  .hero-aperture__mask,
  .ground-plane__image {
    clip-path: inset(0) !important;
  }

  .hero-aperture__mask img {
    transform: none !important;
  }

  .solution-scene > img,
  .solution-scene__copy,
  .careers__image {
    transform: none !important;
  }

  [data-rule-section] .resolving-rule span,
  [data-responsibility-fields] .responsibility-fields__connector span {
    transform: none !important;
  }

  .consultation-rule i {
    right: 0 !important;
    left: auto !important;
    transform: none !important;
  }

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

  [data-reason-grid][data-motion-ready] .reason-icon-placeholder {
    opacity: 1;
    transform: none !important;
  }
}
