:root {
  --color-blue: #1a237e;
  --color-blue-dark: #0f1e4a;
  --color-orange: #f57e38;
  --color-orange-deep: #f15e06;
  --color-purple: #4127b4;
  --color-slate: #4a5565;
  --color-muted: #62748e;
  --shadow-soft: 0 24px 70px rgba(15, 30, 74, 0.13);
  --shadow-card: 0 18px 40px rgba(15, 30, 74, 0.14);
  --ease-bounce: cubic-bezier(0.18, 1.55, 0.32, 1);
  --ease-spring: cubic-bezier(0.16, 1.38, 0.34, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 88px;
  --section-gap: clamp(36px, 3.5vw, 48px);
  --page-shell: min(1120px, calc(100vw - 48px));
  --container: var(--page-shell);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--color-blue-dark);
  background: #fff;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--color-blue);
  color: #fff;
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-inline: max(24px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.75);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand__logo {
  width: 160px;
  height: auto;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(235, 235, 235, 0.55);
  border-radius: 8px;
  list-style: none;
}

.main-nav li {
  display: inline-flex;
}

.main-nav a {
  padding: 8px 12px;
  color: var(--color-slate);
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--color-blue);
  background: #fff;
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 53px;
  padding: 9px 9px 9px 18px;
  border: 1.5px solid transparent;
  border-radius: 13px;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 28px rgba(15, 30, 74, 0.08);
  transition: transform 520ms var(--ease-bounce), box-shadow 220ms ease, background 180ms ease;
}

.button::after {
  content: "→";
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 7px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
}

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

.button--primary {
  color: var(--color-blue-dark);
  background: #fff;
  border-color: var(--color-blue-dark);
}

.button--primary::after {
  color: #fff;
  background: var(--color-blue-dark);
}

.button--light::after {
  color: #fff;
  background: var(--color-blue-dark);
}

.button--dark {
  color: #fff;
  background: var(--color-blue-dark);
}

.button--dark::after {
  background: rgba(255, 255, 255, 0.14);
}

.button--light {
  color: var(--color-blue-dark);
  background: #fff;
}

.header-cta {
  min-height: 48px;
  padding: 10px 12px 10px 20px;
  color: #fff;
  background: var(--color-orange-deep);
  border-color: var(--color-orange-deep);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(241, 94, 6, 0.18);
}

.header-cta::after {
  width: 28px;
  height: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-size: 18px;
}

.button--orange-outline {
  color: var(--color-orange-deep);
  background: #fff;
  border-color: var(--color-orange-deep);
}

.button--orange-outline::after {
  color: #fff;
  background: var(--color-orange-deep);
}

.section {
  padding-block: var(--section-gap);
}

.section-heading {
  text-align: center;
  margin-bottom: clamp(20px, 2.1vw, 28px);
}

.section-heading h2 {
  margin: 0;
  color: var(--color-blue);
  font-size: clamp(31px, 4.3vw, 42px);
  line-height: 1.12;
}

.section-heading p {
  max-width: 890px;
  margin: 9px auto 0;
  color: var(--color-slate);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: start;
  overflow: clip;
  padding-block: var(--section-gap);
}

.hero .container {
  width: var(--container);
}

.hero__inner {
  display: grid;
  justify-items: center;
  gap: clamp(19px, 2.2vw, 32px);
  text-align: center;
}

.hero__copy {
  display: grid;
  justify-items: center;
}

.pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 32px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--color-orange-deep);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.hero h1 {
  max-width: 1130px;
  margin: 0 auto;
  color: var(--color-blue-dark);
  font-size: clamp(46px, 5.25vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(2) {
  color: var(--color-orange-deep);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: var(--section-gap);
}

.hero__actions .button {
  min-height: 53px;
  padding: 9px 9px 9px 18px;
  border-radius: 13px;
  font-size: 17px;
  gap: 14px;
}

.hero__actions .button::after {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  font-size: 21px;
}

.hero-cards {
  position: relative;
  width: min(100%, 1052px);
  margin-inline: auto;
  min-height: clamp(300px, 30vw, 390px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-block: 0 17px;
  isolation: isolate;
  touch-action: pan-y;
  perspective: 1200px;
  transform: translateX(clamp(-30px, -1.4vw, -12px));
}

.hero-card {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: none;
  transform:
    translate3d(calc(var(--card-x, 0%) + var(--card-shift, 0px)), calc(var(--card-y, 0%) + var(--card-lift, 0%)), 0) rotate(var(--card-r, 0deg)) scale(var(--card-scale, 1));
  transform-origin: center;
  transition: box-shadow 340ms ease, filter 340ms ease;
  animation: heroCardIn 900ms ease both;
  will-change: transform;
}

.hero-cards.is-hovering .hero-card {
  transition-duration: 340ms;
}

.hero-card.is-active {
  z-index: 10;
  box-shadow: 0 28px 70px rgba(15, 30, 74, 0.18);
}

.hero-card:nth-child(2) {
  animation-delay: 120ms;
}

.hero-card:nth-child(3) {
  animation-delay: 220ms;
}

.hero-card:nth-child(4) {
  animation-delay: 320ms;
}

.hero-card--image {
  width: clamp(220px, 22vw, 344px);
  aspect-ratio: 344 / 379;
  border: 0;
  margin-inline: clamp(-52px, -3.4vw, -32px);
  z-index: 1;
}

.hero-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--image:nth-child(2) img {
  object-position: 62% center;
}

.hero-card--image:nth-child(4) img {
  object-position: center;
}

.hero-card--stat {
  z-index: 3;
  width: clamp(220px, 21vw, 315px);
  min-height: clamp(248px, 23.6vw, 354px);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 12px;
  padding: clamp(26px, 2.4vw, 32px);
  color: #fff;
  background: var(--color-orange);
  text-align: left;
}

.hero-card--blue {
  background: var(--color-purple);
}

.hero-card__number {
  font-size: clamp(42px, 3.8vw, 60px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.hero-card--blue .hero-card__number {
  font-size: clamp(38px, 3.25vw, 48px);
}

.hero-card__label {
  max-width: 260px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.02em;
}

.hero-card__footer {
  align-self: end;
  max-width: 244px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.02em;
}

.hero__statement {
  max-width: 892px;
  margin: clamp(26px, 3vw, 44px) auto 0;
  color: #0f276e;
  font-size: clamp(22px, 2.35vw, 30px);
  font-weight: 600;
  line-height: 1.56;
  text-align: center;
}

.intro {
  padding-top: var(--section-gap);
  background: #fff;
}

.intro__grid {
  width: min(1165px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: minmax(420px, 604px) minmax(0, 511px);
  align-items: center;
  gap: clamp(48px, 5.4vw, 71px);
}

.portrait-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 6px solid #fff;
  border-radius: 36px;
  aspect-ratio: 604 / 628;
  box-shadow: 0 28px 80px rgba(15, 39, 110, 0.14);
  background: #fff;
  transition: box-shadow 520ms ease, transform 720ms var(--ease-bounce);
  will-change: transform;
}

.portrait-card img {
  position: absolute;
  top: -49.34%;
  left: -22.98%;
  width: 159.75%;
  height: 215.07%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 760ms var(--ease-bounce);
  will-change: transform;
}

.portrait-card:hover,
.portrait-card:focus-within {
  box-shadow: 0 28px 72px rgba(15, 30, 74, 0.2);
  transform: translateY(-8px) rotate(-1.2deg) scale(1.018);
}

.portrait-card:hover img,
.portrait-card:focus-within img {
  transform: rotate(1.1deg) scale(1.075);
}

.intro__copy h2 {
  margin: 24px 0 0;
  color: #101828;
  font-size: clamp(40px, 3.7vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.intro__copy>p:not(.pill) {
  max-width: 511px;
  margin: 26px 0 0;
  color: #6b7186;
  font-size: 18px;
  line-height: 1.625;
  letter-spacing: -0.02em;
}

.pill--lavender {
  min-height: 32px;
  padding-inline: 16px;
  color: #1f299c;
  background: #e9eaf6;
  border-radius: 999px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}

.bio-badges {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: clamp(14px, 1.6vw, 24px);
  padding: 0;
  margin: 34px 0 42px;
  list-style: none;
}

.bio-badges li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bio-badge__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: #f97316;
  background: #fff7ed;
  border-radius: 16px;
}

.bio-badge__icon svg {
  width: 24px;
  height: 24px;
}

.bio-badges strong,
.bio-badges small {
  display: block;
}

.bio-badges strong {
  color: #172554;
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
}

.bio-badges small {
  margin-top: 4px;
  color: #98a2b3;
  font-size: 12px;
  line-height: 1.2;
}

.intro__copy .button {
  min-height: 56px;
  padding: 8px 10px 8px 22px;
  border-radius: 16px;
  font-size: 18px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services {
  padding-bottom: var(--section-gap);
}

.services .section-heading {
  margin-bottom: clamp(8px, 1vw, 14px);
}

.services .section-heading h2 {
  font-size: clamp(40px, 4.7vw, 48px);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: 0.37px;
}

.services .section-heading p {
  max-width: 1153px;
  margin-top: clamp(16px, 1.6vw, 22px);
  color: var(--color-slate);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.46;
  letter-spacing: -0.44px;
}

.services-scroll {
  position: relative;
  min-height: 330vh;
}

.services-sticky {
  --services-stage-width: 1006px;
  --services-stage-height: 687px;
  --services-card-top: 51px;
  --services-card-radius: 48px;
  --services-depth: 24px;
  --services-gap: 55px;
  --services-rail-width: 144px;
  --services-rail-height: 636px;
  --service-left: 70px;
  --service-title-top: 49px;
  --service-title-width: 541px;
  --service-title-size: clamp(34px, 4vw, 48px);
  --service-title-alt-width: 519px;
  --service-title-alt-size: clamp(32px, 3.6vw, 40px);
  --service-index-right: 54px;
  --service-index-top: 59px;
  --service-index-size: 96px;
  --service-lede-top: 169px;
  --service-copy-top: 243px;
  --service-list-top: 365px;
  --service-image-width: 308px;
  --service-image-height: 361px;
  --service-image-right: 61px;
  --service-bottom: 48px;
  --service-body-width: 508px;
  width: min(calc(var(--services-stage-width) + var(--services-gap) + var(--services-rail-width)),
      calc(100vw - 48px));
  position: sticky;
  top: calc(var(--header-height) + 16px);
  min-height: var(--services-stage-height);
  display: grid;
  grid-template-columns: minmax(0, var(--services-stage-width)) var(--services-rail-width);
  gap: var(--services-gap);
  align-items: start;
}

.services-stack {
  position: relative;
  width: var(--services-stage-width);
  height: var(--services-stage-height);
  min-height: var(--services-stage-height);
  perspective: 1600px;
}

.service-card {
  position: absolute;
  inset: var(--services-card-top) 0 0;
  display: block;
  padding: 0;
  color: #fff;
  background: var(--service-color);
  border-radius: var(--services-card-radius);
  overflow: hidden;
  box-shadow: 0 var(--services-depth) 0 var(--service-depth), var(--shadow-soft);
  opacity: 0;
  transform: translate3d(1.8%, 46px, 0) rotate(0.45deg) scale(0.965);
  transform-origin: 50% 88%;
  pointer-events: none;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transition: transform 620ms var(--ease-spring), opacity 260ms ease, box-shadow 320ms ease;
}

.service-card.is-active {
  z-index: 6;
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  pointer-events: auto;
}

.service-card.is-active:hover,
.service-card.is-active:focus-within {
  transform: translate3d(0, -8px, 0) rotate(0.7deg) scale(1.012);
  box-shadow: 0 calc(var(--services-depth) + 6px) 0 var(--service-depth), 0 34px 84px rgba(15, 30, 74, 0.22);
}

.service-card.is-before {
  z-index: 3;
  opacity: var(--service-opacity, 0.96);
  transform: translate3d(var(--service-x, -0.55%), var(--service-y, 14px), 0) rotate(var(--service-r, -0.35deg)) scale(var(--service-scale, 0.986));
}

.service-card.is-after {
  z-index: 2;
  opacity: var(--service-opacity, 0.96);
  transform: translate3d(var(--service-x, 0.55%), var(--service-y, 26px), 0) rotate(var(--service-r, 0.35deg)) scale(var(--service-scale, 0.972));
}

.service-card__content,
.service-card__image {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease 80ms, transform 520ms var(--ease-spring) 40ms;
}

.service-card__content {
  display: contents;
}

.service-card:not(.is-active) .service-card__content,
.service-card:not(.is-active) .service-card__image {
  opacity: 0;
  transform: translateY(10px);
  transition-duration: 120ms;
  transition-delay: 0ms;
}

.service-card__index {
  position: absolute;
  right: var(--service-index-right);
  top: var(--service-index-top);
  z-index: 4;
  font-size: var(--service-index-size);
  font-weight: 800;
  line-height: 0.34;
  letter-spacing: 0.07px;
  pointer-events: none;
}

.service-card h3 {
  position: absolute;
  left: var(--service-left);
  top: var(--service-title-top);
  max-width: var(--service-title-width);
  margin: 0;
  font-size: var(--service-title-size);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.37px;
}

.service-card:not(:first-child) h3 {
  font-size: var(--service-title-alt-size);
  line-height: 1;
  max-width: var(--service-title-alt-width);
}

.service-card p {
  position: absolute;
  left: var(--service-left);
  max-width: var(--service-body-width);
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: -0.44px;
}

.service-card__content>p:not(.service-card__lede) {
  top: var(--service-copy-top);
  margin: 0;
}

.service-card__lede {
  top: var(--service-lede-top);
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.service-card ul {
  position: absolute;
  left: var(--service-left);
  top: var(--service-list-top);
  display: grid;
  gap: 17px;
  padding-left: 30px;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.service-card .button {
  position: absolute;
  left: var(--service-left);
  bottom: var(--service-bottom);
  width: fit-content;
  min-width: 301px;
  min-height: 56px;
  padding: 9px 9px 9px 18px;
  border-radius: 16px;
  font-size: 18px;
  letter-spacing: -0.44px;
}

.service-card .button::after {
  width: 36px;
  height: 38px;
  border-radius: 6px;
  font-size: 21px;
}

.service-card__image {
  position: absolute;
  right: var(--service-image-right);
  bottom: var(--service-bottom);
  width: var(--service-image-width);
  height: var(--service-image-height);
  object-fit: cover;
  border: 6px solid #fff3f3;
  border-radius: 21px;
  transition: transform 760ms var(--ease-bounce), box-shadow 420ms ease;
  will-change: transform;
}

.service-card.is-active:hover .service-card__image,
.service-card.is-active:focus-within .service-card__image {
  transform: rotate(-1deg) scale(1.045);
  box-shadow: 0 20px 44px rgba(15, 30, 74, 0.2);
}

.framework-rail {
  position: relative;
  align-self: end;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: var(--services-rail-width);
  height: var(--services-rail-height);
  isolation: isolate;
}

.framework-rail__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  height: 40px;
  width: 2px;
  transform: translateX(-50%);
  background: #e2e8f0;
  border-radius: 999px;
  pointer-events: none;
}

.framework-rail__step {
  position: relative;
  display: grid;
  gap: 8px;
  place-items: center;
  width: var(--services-rail-width);
  min-height: 170px;
  padding: 0;
  border: 0;
  color: rgba(15, 30, 74, 0.5);
  background: transparent;
  text-align: center;
  font: inherit;
  cursor: pointer;
  transition: color 360ms ease, transform 620ms var(--ease-spring);
}

.framework-rail__step:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--rail-color, var(--color-blue)) 34%, transparent);
  outline-offset: 8px;
  border-radius: 18px;
}

.framework-rail__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  color: #fff;
  background: color-mix(in srgb, var(--rail-color, currentColor) 48%, transparent);
  box-shadow: var(--shadow-card);
  transform: scale(0.9);
  transition: background 360ms ease, box-shadow 420ms ease, transform 640ms var(--ease-spring);
}

.framework-rail__icon::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: inherit;
  background: color-mix(in srgb, var(--rail-color, currentColor) 24%, transparent);
  opacity: 0;
  transform: scale(0.6);
  z-index: -1;
}

.framework-rail__icon svg {
  width: 28px;
  height: 28px;
}

.framework-rail__step strong,
.framework-rail__step small {
  display: block;
}

.framework-rail__step strong {
  color: currentColor;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.33;
  letter-spacing: 0.07px;
}

.framework-rail__step small {
  max-width: 132px;
  color: rgba(15, 30, 74, 0.6);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.31px;
}

.framework-rail__step.is-active {
  color: var(--rail-color, var(--color-blue));
  transform: translateY(-4px);
}

.framework-rail__step.is-active .framework-rail__icon {
  background: var(--rail-color, var(--color-blue));
  box-shadow: 0 20px 34px color-mix(in srgb, var(--rail-color, var(--color-blue)) 28%, transparent);
  transform: scale(1);
}

.framework-rail__step.is-igniting .framework-rail__icon {
  animation: railIconIgnite 720ms var(--ease-bounce) both;
}

.framework-rail__step.is-igniting .framework-rail__icon::after {
  animation: railIgniteRing 720ms ease-out both;
}

@media (min-width: 1051px) and (max-height: 940px) {
  .services-sticky {
    --services-stage-width: 910px;
    --services-stage-height: 610px;
    --services-card-top: 40px;
    --services-card-radius: 40px;
    --services-depth: 18px;
    --services-gap: 42px;
    --services-rail-width: 126px;
    --services-rail-height: 570px;
    --service-left: 56px;
    --service-title-top: 42px;
    --service-title-width: 500px;
    --service-title-size: clamp(34px, 3.35vw, 42px);
    --service-title-alt-width: 470px;
    --service-title-alt-size: clamp(32px, 3vw, 36px);
    --service-index-right: 48px;
    --service-index-top: 52px;
    --service-index-size: 78px;
    --service-lede-top: 142px;
    --service-copy-top: 205px;
    --service-list-top: 307px;
    --service-image-width: 276px;
    --service-image-height: 323px;
    --service-image-right: 48px;
    --service-bottom: 38px;
    --service-body-width: 470px;
    top: calc(var(--header-height) + 6px);
  }

  .service-card__lede {
    font-size: 18px;
    line-height: 1.35;
  }

  .service-card p {
    font-size: 16px;
    line-height: 1.55;
  }

  .service-card ul {
    gap: 13px;
    font-size: 18px;
  }

  .service-card .button {
    min-width: 276px;
    min-height: 52px;
    font-size: 16px;
  }

  .service-card__image {
    border-width: 5px;
  }

  .framework-rail__step {
    min-height: 152px;
    gap: 7px;
  }

  .framework-rail__step:not(:last-child)::after {
    top: calc(100% + 5px);
    height: 32px;
  }

  .framework-rail__icon {
    width: 76px;
    height: 76px;
  }

  .framework-rail__icon svg {
    width: 26px;
    height: 26px;
  }

  .framework-rail__step strong {
    font-size: 20px;
  }

  .framework-rail__step small {
    max-width: 116px;
    font-size: 12px;
  }
}

.case-studies {
  padding-top: var(--section-gap);
}

.case-studies .section-action {
  margin-top: 30px;
}

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

.case-study-card {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 40px;
  background: var(--overlay);
  box-shadow: var(--shadow-card);
  isolation: isolate;
  transition: transform 640ms var(--ease-spring), box-shadow 420ms ease;
}

.case-study-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-smooth);
}

.case-study-card:hover,
.case-study-card:focus-within {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 34px 80px rgba(15, 30, 74, 0.22);
}

.case-study-card:hover img,
.case-study-card:focus-within img {
  transform: scale(1.06);
}

.case-study-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.12) 0%, rgba(0, 0, 0, 0.78) 94%);
  transition: background 520ms ease;
}

.case-study-card:hover::after,
.case-study-card:focus-within::after {
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.14) 0%, var(--overlay) 92%);
}

.case-study-card__body {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 36px;
  color: #fff;
  text-align: center;
}

.case-study-card span {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 150px;
  padding: 8px 18px;
  border-radius: 999px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  background: color-mix(in srgb, var(--accent) 86%, transparent);
}

.case-study-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
  transform: translateY(0);
  transition: transform 620ms var(--ease-spring);
}

.case-study-card p {
  margin: 0;
  color: #dbeafe;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.case-study-card .metric,
.case-study-card .metric+p,
.case-study-card a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.94);
  transition:
    max-height 520ms var(--ease-smooth),
    margin 520ms var(--ease-smooth),
    opacity 320ms ease,
    transform 680ms var(--ease-bounce);
}

.case-study-card .metric {
  color: #fff;
  font-size: 62px;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: none;
}

.case-study-card:hover h3,
.case-study-card:focus-within h3 {
  transform: translateY(0);
}

.case-study-card:hover .metric,
.case-study-card:focus-within .metric {
  max-height: 78px;
  margin-top: 30px;
  margin-bottom: 10px;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.case-study-card:hover .metric+p,
.case-study-card:focus-within .metric+p {
  max-height: 22px;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 60ms;
}

.case-study-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 46px;
  padding: 7px 7px 7px 16px;
  border-radius: 12px;
  color: var(--accent);
  background: #fff;
  font-weight: 800;
}

.case-study-card:hover a,
.case-study-card:focus-within a {
  max-height: 52px;
  margin-top: 28px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 110ms;
}

.case-study-card a::after {
  content: "→";
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  color: #fff;
  background: var(--accent);
  font-size: 18px;
  font-weight: 500;
}

.cta-band {
  padding-block: var(--section-gap);
}

.cta-band__inner {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(44px, 7vw, 78px);
  border-radius: 40px;
  color: #fff;
  text-align: center;
  background: linear-gradient(140deg, #1c398e 0%, #162456 38%, #3c0366 62%, #f15e06 120%);
  background-position: 0% 50%;
  background-size: 190% 190%;
  box-shadow: var(--shadow-soft);
  transition: background-position 900ms var(--ease-smooth), transform 520ms var(--ease-smooth);
}

.cta-band__inner:hover,
.cta-band__inner:focus-within {
  background-position: 100% 50%;
  transform: translateY(-3px);
}

.cta-band__inner>* {
  position: relative;
  z-index: 1;
}

.pill--glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.cta-band h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(30px, 4.8vw, 48px);
  line-height: 1.12;
}

.cta-band p:not(.pill) {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.testimonials {
  background: rgba(137, 104, 224, 0.08);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 18px;
  align-items: center;
}

.testimonial-track {
  display: flex;
  gap: 40px;
  overflow: hidden;
  border-radius: 24px;
  scroll-behavior: smooth;
}

.testimonial-card {
  flex: 0 0 calc((100% - 40px) / 2);
  min-height: clamp(430px, 39.8vw, 557px);
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 24px;
  color: #fff;
  background: var(--quote-bg);
  box-shadow: var(--shadow-card);
}

.testimonial-pagination {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.testimonial-pagination button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 30, 74, 0.28);
  cursor: pointer;
  transition: width 340ms var(--ease-spring), background 180ms ease, transform 340ms var(--ease-spring);
}

.testimonial-pagination button.is-active {
  width: 28px;
  background: var(--color-blue);
}

.testimonial-pagination button:hover,
.testimonial-pagination button:focus-visible {
  transform: scale(1.18);
}

.quote-mark {
  font-size: 58px;
  font-weight: 800;
  line-height: 0.7;
  color: var(--color-orange);
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.95;
}

.testimonial-card footer {
  display: flex;
  gap: 16px;
  align-items: center;
}

.avatar {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  flex: 0 0 60px;
}

.avatar svg {
  width: 60px;
  height: 60px;
}

.testimonial-card strong,
.testimonial-card footer span {
  display: block;
}

.testimonial-card footer div span {
  margin-top: 4px;
  color: #bedbff;
  font-size: 14px;
}

.slider-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--color-blue-dark);
  cursor: pointer;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  max-width: 1080px;
}

.team .section-action {
  margin-top: 42px;
}

.team-card {
  padding: 28px;
  border: 1px solid #f1f5f9;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: box-shadow 520ms ease, transform 720ms var(--ease-bounce);
  will-change: transform;
}

.team-card:hover,
.team-card:focus-within {
  box-shadow: 0 28px 72px rgba(15, 30, 74, 0.2);
  transform: translateY(-8px) rotate(1.2deg) scale(1.018);
}

.team-card:nth-child(even):hover,
.team-card:nth-child(even):focus-within {
  transform: translateY(-8px) rotate(-1.2deg) scale(1.018);
}

.team-card figure {
  margin: 0 0 24px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--team-tint);
  transition: transform 720ms var(--ease-bounce);
  will-change: transform;
}

.team-card:hover figure,
.team-card:focus-within figure {
  transform: rotate(-1.2deg) scale(1.018);
}

.team-card:nth-child(even):hover figure,
.team-card:nth-child(even):focus-within figure {
  transform: rotate(1.2deg) scale(1.018);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  object-position: center top;
  transition: transform 760ms var(--ease-bounce);
  will-change: transform;
}

.team-card:hover img,
.team-card:focus-within img {
  transform: rotate(-1.1deg) scale(1.075);
}

.team-card:nth-child(even):hover img,
.team-card:nth-child(even):focus-within img {
  transform: rotate(1.1deg) scale(1.075);
}

.team-card h3 {
  margin: 0;
  color: var(--color-blue);
  font-size: 24px;
  line-height: 1.2;
}

.team-card__role {
  margin: 6px 0 14px;
  color: #ff9800;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.team-card p:not(.team-card__role) {
  color: var(--color-muted);
  line-height: 1.6;
}

.stats {
  padding-block: var(--section-gap);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  color: var(--color-blue);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
}

.stats div:first-child strong {
  color: var(--color-orange-deep);
}

.stats span {
  max-width: 160px;
  margin: 14px auto 0;
  color: var(--color-slate);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-footer {
  padding: 56px 0 26px;
  color: rgba(255, 255, 255, 0.8);
  background: #1f299c;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 80px;
}

.brand--footer {
  width: fit-content;
  padding: 8px 10px;
  border-radius: 10px;
  background: #fff;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 20px;
}

.site-footer p {
  max-width: 330px;
  line-height: 1.6;
}

.site-footer nav,
.site-footer div:last-child,
.site-footer ul {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.site-footer div.footer-social {
  display: flex;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 520ms var(--ease-bounce), background 220ms ease, box-shadow 220ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 26px rgba(15, 30, 74, 0.16);
  transform: translateY(-3px) scale(1.05);
}

.footer-social svg {
  width: 22px;
  height: 22px;
}

.footer__legal {
  width: var(--container);
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.about-hero {
  --hero-cursor-x: 50%;
  --hero-cursor-y: 50%;
  position: relative;
  overflow: hidden;
  padding-block: clamp(86px, 9vw, 118px);
  color: #fff;
  background:
    radial-gradient(circle at var(--hero-cursor-x) var(--hero-cursor-y), rgba(255, 127, 71, 0.3) 0%, rgba(255, 127, 71, 0.15) 18%, rgba(99, 102, 241, 0.08) 34%, transparent 56%),
    linear-gradient(135deg, #11204b 0%, #121b52 46%, #1f299c 100%);
  isolation: isolate;
}

.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  filter: blur(96px);
  opacity: 0.24;
}

.about-hero::before {
  left: var(--hero-cursor-x);
  top: var(--hero-cursor-y);
  background: #6366f1;
  transform: translate(-50%, -50%);
  transition: left 360ms ease-out, top 360ms ease-out;
}

.about-hero::after {
  right: 12%;
  bottom: -18%;
  background: #ff7f47;
}

.about-hero__inner {
  max-width: 980px;
  text-align: center;
}

.about-hero__pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  color: #fff;
  background: rgba(255, 127, 71, 0.2);
  border: 1px solid rgba(255, 127, 71, 0.4);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1px;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 28px 0 0;
  font-size: clamp(42px, 5.4vw, 60px);
  line-height: 1.12;
}

.about-hero h1 span {
  color: #ff7f47;
}

.about-hero p:not(.pill) {
  max-width: 900px;
  margin: 22px auto 0;
  color: #dbeafe;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.62;
  letter-spacing: -0.02em;
}

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

.about-info-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  min-height: 276px;
  padding: 32px 28px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(140deg, #f9fafb 0%, #fff 100%);
  box-shadow: 0 14px 32px rgba(15, 30, 74, 0.06);
  transition: transform 560ms var(--ease-spring), box-shadow 260ms ease, border-color 260ms ease;
}

.about-info-card:hover,
.about-info-card:focus-within {
  transform: translateY(-6px) scale(1.015);
  border-color: color-mix(in srgb, var(--card-accent) 38%, #e5e7eb);
  box-shadow: 0 24px 54px rgba(15, 30, 74, 0.14);
}

.about-info-card.is-featured {
  border-color: rgba(99, 102, 241, 0.4);
}

.about-info-card__icon,
.value-card span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  color: var(--card-accent, var(--color-orange-deep));
  background: color-mix(in srgb, var(--card-accent, var(--color-orange-deep)) 10%, #fff);
}

.about-info-card__icon svg,
.value-card svg {
  width: 32px;
  height: 32px;
}

.about-info-card h3,
.value-card h3,
.founder-profile h3,
.team-profile-card h3 {
  margin: 0;
  color: var(--color-blue-dark);
}

.about-info-card h3,
.value-card h3 {
  font-size: 20px;
  line-height: 1.25;
}

.about-info-card p,
.value-card p {
  margin: 0;
  color: var(--color-slate);
  font-size: 16px;
  line-height: 1.62;
}

.about-values {
  position: relative;
  overflow: hidden;
  padding-block: clamp(74px, 8vw, 96px);
  background: #1f299c;
  isolation: isolate;
}

.about-values::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% 50%;
  z-index: -1;
  height: 420px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.5);
  filter: blur(90px);
}

.section-heading--light h2,
.section-heading--light p {
  color: #fff;
}

.section-heading--light p {
  opacity: 0.82;
}

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

.value-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  min-height: 210px;
  padding: 30px 24px;
  border-radius: 12px;
  text-align: center;
  background: #fff;
  box-shadow: 0 20px 45px rgba(5, 8, 32, 0.13);
}

.value-card span {
  color: #1f299c;
  background: #eef2ff;
}

.about-team {
  position: relative;
  isolation: isolate;
}

.about-team .section-heading {
  margin-bottom: 44px;
}

.about-team .section-heading h2 {
  color: #0f1e4a;
  font-size: clamp(40px, 4.4vw, 48px);
  line-height: 1;
  letter-spacing: 0.01em;
}

.about-team .section-heading p {
  margin-top: 16px;
  color: #4a5565;
  font-size: 18px;
  line-height: 28px;
}

.founder-profile,
.team-profile-card {
  position: relative;
  overflow: visible;
  background: #fff;
  border: 1px solid #f3f4f6;
  box-shadow: var(--shadow-card);
  transform-origin: center;
  transition:
    transform 760ms var(--ease-bounce),
    box-shadow 320ms ease,
    border-color 320ms ease;
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(340px, 451px) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
  max-width: 1217px;
  min-height: 498px;
  padding: 28px 56px 28px 28px;
  border-radius: 24px;
  box-shadow:
    32px 34px 0 -8px rgba(31, 41, 156, 0.12),
    var(--shadow-card);
}

.founder-profile figure,
.team-profile-card figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}

.founder-profile figure {
  aspect-ratio: 451 / 432;
  border: 4px solid #fff;
  background: #000;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.founder-profile img,
.team-profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 760ms var(--ease-bounce);
}

.founder-profile:hover img,
.team-profile-card:hover img {
  transform: scale(1.045) rotate(-0.8deg);
}

.founder-profile:hover,
.founder-profile:focus-within {
  transform: translateY(-8px) rotate(0.35deg) scale(1.008);
  border-color: rgba(31, 41, 156, 0.14);
  box-shadow:
    38px 40px 0 -8px rgba(31, 41, 156, 0.14),
    0 28px 56px rgba(15, 30, 74, 0.15);
}

.founder-profile__content {
  display: grid;
  gap: 10px;
  max-width: 582px;
}

.founder-profile .button {
  width: 274px;
  min-height: 56px;
  margin-top: 4px;
  padding-left: 28px;
  border-radius: 16px;
  font-size: 18px;
}

.founder-profile h3 {
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.011em;
}

.profile-role {
  margin: 0;
  color: #ff7f47;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.founder-profile__content>p:not(.profile-role),
.team-profile-card__bio p {
  margin: 0;
  color: var(--color-slate);
  font-size: 18px;
  line-height: 32px;
}

.founder-profile__content>p:not(.profile-role) {
  max-width: 563px;
  font-size: 16px;
  line-height: 26px;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 28px 0 18px;
  list-style: none;
}

.profile-facts li {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
}

.profile-fact-icon {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #f15e06;
  background: rgba(255, 127, 71, 0.1);
  border-radius: 10px;
}

.profile-facts li:nth-child(2) .profile-fact-icon {
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
}

.profile-facts li:nth-child(3) .profile-fact-icon {
  color: #1f299c;
  background: rgba(28, 57, 142, 0.2);
}

.profile-fact-icon svg {
  width: 20px;
  height: 20px;
}

.profile-facts li>span:not(.profile-fact-icon) {
  color: var(--color-blue-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
}

.profile-facts small {
  color: var(--color-slate);
  font-size: 12px;
  line-height: 16px;
}

.team-profile-list {
  display: grid;
  gap: 60px;
  margin-top: 88px;
}

.team-profile-card {
  display: grid;
  grid-template-columns: 324px minmax(0, 1fr);
  grid-template-areas:
    "image body"
    "bio bio";
  gap: 68px 56px;
  align-items: start;
  max-width: 1212px;
  padding: 72px 46px 56px;
  border-radius: 24px;
}

.team-profile-card--mariam {
  box-shadow:
    28px 30px 0 -8px rgba(244, 212, 184, 0.58),
    0 20px 25px rgba(0, 0, 0, 0.1),
    0 8px 10px rgba(0, 0, 0, 0.08);
}

.team-profile-card--asmaa {
  box-shadow:
    28px 30px 0 -8px rgba(99, 102, 241, 0.16),
    0 20px 25px rgba(0, 0, 0, 0.1),
    0 8px 10px rgba(0, 0, 0, 0.08);
}

.team-profile-card figure {
  grid-area: image;
  width: 324px;
  aspect-ratio: 1;
  background: #eff6ff;
}

.team-profile-card--mariam img {
  object-position: 50% 8%;
}

.team-profile-card:hover,
.team-profile-card:focus-within {
  transform: translateY(-8px) rotate(0.45deg) scale(1.008);
  border-color: rgba(31, 41, 156, 0.12);
}

.team-profile-card--mariam:hover,
.team-profile-card--mariam:focus-within {
  box-shadow:
    34px 36px 0 -8px rgba(244, 212, 184, 0.62),
    0 28px 56px rgba(15, 30, 74, 0.14);
}

.team-profile-card--asmaa:hover,
.team-profile-card--asmaa:focus-within {
  transform: translateY(-8px) rotate(-0.45deg) scale(1.008);
  box-shadow:
    34px 36px 0 -8px rgba(99, 102, 241, 0.18),
    0 28px 56px rgba(15, 30, 74, 0.14);
}

.team-profile-card__body {
  grid-area: body;
  display: grid;
  gap: 10px;
  align-self: start;
  color: #1f299c;
}

.team-profile-card h3 {
  color: #1f299c;
  font-size: 36px;
  line-height: 32px;
  letter-spacing: 0.002em;
}

.team-profile-card .profile-role {
  color: #f15e06;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.014em;
  text-transform: uppercase;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-tags span {
  padding: 4px 12px;
  color: #6366f1;
  background: #eff0fe;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
}

.profile-tags span:nth-child(2) {
  color: #f15e06;
  background: #fff2ed;
}

.team-profile-card--asmaa .profile-tags span:first-child {
  color: #1f299c;
  background: rgba(43, 127, 255, 0.1);
}

.profile-expertise {
  margin-top: 48px;
  color: #1f299c;
  font-size: 14px;
  line-height: 22.75px;
}

.profile-expertise p {
  margin: 0 0 6px;
  font-weight: 800;
}

.profile-expertise ul {
  margin: 0;
  padding-left: 22px;
}

.profile-expertise li+li {
  margin-top: 3px;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: 26px;
  color: #1f299c;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.profile-link::before {
  content: "in";
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 1.7px solid currentColor;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.team-profile-card__bio {
  grid-area: bio;
  display: grid;
  gap: 28px;
}

.contact-hero {
  --hero-cursor-x: 50%;
  --hero-cursor-y: 50%;
  position: relative;
  overflow: hidden;
  padding-block: clamp(70px, 8vw, 110px);
  color: #fff;
  background:
    radial-gradient(circle at var(--hero-cursor-x) var(--hero-cursor-y), rgba(255, 127, 71, 0.36) 0%, rgba(255, 127, 71, 0.18) 18%, rgba(99, 102, 241, 0.1) 34%, transparent 58%),
    linear-gradient(135deg, #11204b 0%, #121b52 46%, #1f299c 100%);
  isolation: isolate;
}

.contact-hero::before,
.contact-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(96px);
  pointer-events: none;
}

.contact-hero::before {
  left: var(--hero-cursor-x);
  top: var(--hero-cursor-y);
  width: 440px;
  height: 440px;
  background: #6366f1;
  opacity: 0.3;
  transform: translate(-50%, -50%);
  transition: left 360ms ease-out, top 360ms ease-out;
}

.contact-hero::after {
  right: 10%;
  bottom: -20%;
  width: 360px;
  height: 360px;
  background: #ff7f47;
  opacity: 0.18;
}

.contact-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(44px, 6vw, 76px);
  align-items: center;
}

.contact-hero__copy {
  display: grid;
  gap: 24px;
}

.contact-eyebrow {
  width: fit-content;
  margin: 0;
  padding: 8px 16px;
  border: 1px solid rgba(255, 127, 71, 0.4);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 127, 71, 0.2);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 60px);
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-hero h1 span {
  color: #ff7f47;
}

.contact-hero__copy>p:not(.contact-eyebrow) {
  max-width: 580px;
  margin: 0;
  color: #dbeafe;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.62;
  letter-spacing: -0.02em;
}

.contact-hero__stats {
  display: flex;
  gap: 54px;
  margin: 8px 0 0;
  padding: 26px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-hero__stats div {
  margin: 0;
}

.contact-hero__stats dt {
  color: #ff7f47;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.contact-hero__stats dd {
  margin: 8px 0 0;
  color: #bedbff;
  font-size: 14px;
}

.contact-hero__visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 398px;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(5, 8, 32, 0.32);
  transform: rotate(0.4deg);
}

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

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 780px;
}

.contact-method-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 32px 28px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  text-align: center;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 30, 74, 0.08);
  transform-origin: center;
  transition: transform 760ms var(--ease-bounce), box-shadow 320ms ease, border-color 320ms ease;
}

.contact-method-card:hover,
.contact-method-card:focus-within {
  transform: translateY(-8px) rotate(0.45deg) scale(1.012);
  border-color: rgba(99, 102, 241, 0.28);
  box-shadow: 0 28px 56px rgba(15, 30, 74, 0.14);
}

.contact-method-card:nth-child(even):hover,
.contact-method-card:nth-child(even):focus-within {
  transform: translateY(-8px) rotate(-0.45deg) scale(1.012);
}

.contact-method-card--featured {
  background: linear-gradient(150deg, rgba(99, 102, 241, 0.12), rgba(255, 247, 237, 0.82));
}

.contact-method-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  background: #6366f1;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-method-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #f15e06;
  background: #fff7ed;
}

.contact-method-card--featured .contact-method-card__icon {
  color: #6366f1;
  background: #eef2ff;
}

.contact-method-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-method-card h3 {
  margin: 0;
  color: #0f1e4a;
  font-size: 20px;
  line-height: 1.2;
}

.contact-method-card p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
}

.contact-method-card a {
  color: #f15e06;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-method-card--featured a {
  color: #1f299c;
}

.contact-form-section {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.contact-form form {
  display: grid;
  gap: 22px;
  max-width: 980px;
  transform-origin: center;
  transition: transform 760ms var(--ease-bounce), box-shadow 320ms ease;
}

.contact-form:hover,
.contact-form:focus-within {
  transform: translateY(-8px) rotate(0.25deg) scale(1.004);
  box-shadow: 0 28px 56px rgba(15, 30, 74, 0.1);
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field span,
.contact-consent {
  color: #364153;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-field span.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 12px;
  font-weight: 500;
  margin: 4px 0px 0 6px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  color: #0f1e4a;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 30, 74, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-field input,
.contact-field select {
  min-height: 52px;
  padding: 0 16px;
}

.contact-field textarea {
  resize: vertical;
  min-height: 134px;
  padding: 14px 16px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.contact-consent {
  display: grid;
  /* grid-template-columns: 18px minmax(0, 1fr); */
  gap: 12px;
  align-items: start;
  font-size: 13px;
  font-weight: 500;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #1f299c;
}

.contact-form__submit {
  justify-self: center;
}

.contact-form__note {
  margin: -8px 0 0;
  color: #64748b;
  font-size: 13px;
  text-align: center;
}

.contact-locations__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.contact-map-card {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  overflow: hidden;
  margin: 0;
  border-radius: 20px;
  box-shadow: 0 24px 54px rgba(15, 30, 74, 0.16);
  transform-origin: center;
  transition: transform 760ms var(--ease-bounce), box-shadow 320ms ease;
}

.contact-map-card img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  transition: transform 760ms var(--ease-bounce);
}

.contact-map-card:hover,
.contact-map-card:focus-within {
  transform: translateY(-8px) rotate(0.35deg) scale(1.006);
  box-shadow: 0 34px 70px rgba(15, 30, 74, 0.17);
}

.contact-map-card:hover img,
.contact-map-card:focus-within img {
  transform: scale(1.045) rotate(-0.8deg);
}

.contact-info-stack {
  display: grid;
  gap: 18px;
}

.contact-info-stack h2 {
  margin: 0 0 4px;
  color: #0f1e4a;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

.contact-info-card,
.contact-social {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 30, 74, 0.08);
  transform-origin: center;
  transition: transform 760ms var(--ease-bounce), box-shadow 320ms ease, border-color 320ms ease;
}

.contact-info-card:hover,
.contact-info-card:focus-within,
.contact-social:hover,
.contact-social:focus-within {
  transform: translateY(-8px) rotate(0.35deg) scale(1.008);
  border-color: rgba(31, 41, 156, 0.14);
  box-shadow: 0 28px 56px rgba(15, 30, 74, 0.14);
}

.contact-info-card:nth-of-type(even):hover,
.contact-info-card:nth-of-type(even):focus-within {
  transform: translateY(-8px) rotate(-0.35deg) scale(1.008);
}

.contact-info-card--soft {
  background: #fff7ed;
  border-color: #fed7aa;
}

.contact-info-card--dark {
  color: #fff;
  background: #11204b;
  border-color: #11204b;
}

.contact-info-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #f15e06;
  background: #fff7ed;
}

.contact-info-card--dark .contact-info-card__icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.contact-info-card__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-card h3,
.contact-social h3 {
  margin: 0;
  color: #0f1e4a;
  font-size: 18px;
  line-height: 1.25;
}

.contact-info-card--dark h3 {
  color: #fff;
}

.contact-info-card p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}

.contact-info-card--dark p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-info-card a {
  color: #f15e06;
  font-size: 14px;
  font-weight: 700;
}

.contact-social div,
.contact-social__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #fff;
  background: #1f299c;
  box-shadow: 0 10px 22px rgba(15, 30, 74, 0.12);
  transition: transform 520ms var(--ease-bounce), background 180ms ease, box-shadow 220ms ease;
}

.contact-social a:hover,
.contact-social a:focus-visible {
  transform: translateY(-3px) scale(1.08);
  background: #f57e38;
  box-shadow: 0 16px 30px rgba(15, 30, 74, 0.16);
}

.contact-social a svg {
  width: 20px;
  height: 20px;
}

.contact-resources {
  background: #fff;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 980px;
}

.resource-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--resource-border);
  border-radius: 16px;
  background: var(--resource-bg);
  transform-origin: center;
  transition: transform 760ms var(--ease-bounce), box-shadow 320ms ease, border-color 320ms ease;
}

.resource-card:hover,
.resource-card:focus-within {
  transform: translateY(-8px) rotate(0.45deg) scale(1.012);
  box-shadow: 0 28px 56px rgba(15, 30, 74, 0.14);
}

.resource-card:nth-child(even):hover,
.resource-card:nth-child(even):focus-within {
  transform: translateY(-8px) rotate(-0.45deg) scale(1.012);
}

.resource-card--orange {
  --resource-bg: linear-gradient(150deg, #fff7ed, rgba(255, 237, 212, 0.55));
  --resource-border: #fed7aa;
  --resource-accent: #f15e06;
}

.resource-card--purple {
  --resource-bg: linear-gradient(150deg, #faf5ff, rgba(243, 232, 255, 0.55));
  --resource-border: #e9d5ff;
  --resource-accent: #6366f1;
}

.resource-card>span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  color: var(--resource-accent);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 30, 74, 0.08);
}

.resource-card svg {
  width: 24px;
  height: 24px;
}

.resource-card h3 {
  margin: 0;
  color: #0f1e4a;
  font-size: 22px;
  line-height: 1.25;
}

.resource-card p {
  margin: 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.6;
}

.resource-card footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--resource-border);
}

.resource-card small {
  color: #64748b;
  font-size: 13px;
}

.resource-card a {
  color: var(--resource-accent);
  font-weight: 800;
}

.contact-faq {
  background: #fff;
}

.contact-faq .section-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 30, 74, 0.05);
}

.faq-list summary {
  position: relative;
  padding: 20px 52px 20px 22px;
  color: #0f1e4a;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: #f15e06;
  font-size: 20px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: #4a5565;
  font-size: 15px;
  line-height: 1.7;
}

.lce-hero {
  padding-block: clamp(76px, 8vw, 112px);
  color: #fff;
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 127, 71, 0.26), transparent 34%),
    linear-gradient(135deg, #14235a 0%, #111f4c 55%, #0f1e4a 100%);
}

.lce-hero__inner {
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
}

.lce-hero h1 {
  max-width: 880px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lce-overview {
  background: #fff;
}

.lce-program-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 4.8vw, 58px);
  border: 1px solid rgba(15, 30, 74, 0.1);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 30, 74, 0.12);
  transition: transform 720ms var(--ease-bounce), box-shadow 280ms ease;
}

.lce-program-card:hover,
.lce-program-card:focus-within,
.lce-interest-card:hover,
.lce-interest-card:focus-within {
  transform: translateY(-7px) scale(1.004);
  box-shadow: 0 34px 82px rgba(15, 30, 74, 0.16);
}

.lce-program-card__media {
  display: grid;
  place-items: center;
  min-height: 318px;
  margin: 0;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 68% 18%, rgba(245, 126, 56, 0.28), transparent 34%),
    linear-gradient(145deg, #10194a 0%, #13235d 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lce-program-card__media img {
  width: min(210px, 74%);
  height: auto;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.18));
}

.lce-program-card__copy {
  display: grid;
  gap: 24px;
  align-content: center;
}

.lce-program-card h2,
.lce-interest-card h2 {
  margin: 0;
  color: #0f1e4a;
  font-size: clamp(36px, 4.8vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lce-program-card p,
.lce-interest-card .section-heading p {
  margin: 0;
  color: #4a5565;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.72;
}

.lce-feature-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lce-feature-list li {
  position: relative;
  min-height: 34px;
  padding-left: 46px;
  color: #0f1e4a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.lce-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #fff7ed;
  box-shadow: inset 0 0 0 8px #fff7ed, inset 0 0 0 10px #f57e38;
}

.lce-program-card .button {
  justify-self: start;
}

.lce-interest {
  padding-top: 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.lce-interest-card {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
  padding: clamp(34px, 5vw, 60px);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(15, 30, 74, 0.11);
  transition: transform 720ms var(--ease-bounce), box-shadow 280ms ease;
}

.lce-interest-card .section-heading {
  gap: 16px;
  max-width: 820px;
  text-align: left;
}

.lce-interest-card .section-heading h2,
.lce-interest-card .section-heading p {
  text-align: left;
}

.lce-form form {
  display: grid;
  gap: 22px;
}

.lce-form__consent {
  max-width: 820px;
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

.lce-form__submit {
  justify-self: start;
}

.case-page-hero {
  --hero-cursor-x: 50%;
  --hero-cursor-y: 50%;
  position: relative;
  overflow: hidden;
  padding-block: clamp(82px, 8.4vw, 118px);
  color: #fff;
  background:
    radial-gradient(circle at var(--hero-cursor-x) var(--hero-cursor-y), rgba(255, 127, 71, 0.34) 0%, rgba(255, 127, 71, 0.16) 18%, rgba(99, 102, 241, 0.08) 34%, transparent 56%),
    #11204b;
  text-align: center;
  isolation: isolate;
}

.case-page-hero::before {
  content: "";
  position: absolute;
  left: var(--hero-cursor-x);
  top: var(--hero-cursor-y);
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: #6366f1;
  filter: blur(96px);
  opacity: 0.22;
  transform: translate(-50%, -50%);
  transition: left 360ms ease-out, top 360ms ease-out;
}

.case-page-hero__inner {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.case-page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 5.8vw, 63px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.case-page-hero__inner>p:not(.contact-eyebrow) {
  max-width: 770px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.case-page-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 68px);
  width: min(100%, 1120px);
  margin: 34px 0 0;
}

.case-page-stats div {
  margin: 0;
}

.case-page-stats dt {
  color: #ff7f47;
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1;
}

.case-page-stats dd {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.case-report-section {
  background: #fff;
}

.case-report-list {
  display: grid;
  gap: 46px;
}

.case-study-report {
  --case-accent: #ff7f47;
  --case-panel: #0f1e4a;
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  min-height: 680px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform-origin: center;
  transition: transform 760ms var(--ease-bounce), box-shadow 320ms ease, border-color 320ms ease;
}

.case-study-report:hover,
.case-study-report:focus-within {
  transform: translateY(-8px) rotate(0.35deg) scale(1.008);
  border-color: rgba(31, 41, 156, 0.14);
  box-shadow: 0 34px 72px rgba(15, 30, 74, 0.16);
}

.case-study-report--purple:hover,
.case-study-report--purple:focus-within {
  transform: translateY(-8px) rotate(-0.35deg) scale(1.008);
}

.case-study-report--purple {
  --case-accent: #231d3a;
  --case-panel: #7a66c2;
}

.case-study-report__summary {
  display: grid;
  align-content: start;
  gap: 24px;
  min-height: 100%;
  padding: clamp(34px, 4.4vw, 60px);
  color: #fff;
  background: var(--case-panel);
}

.case-study-report__tag {
  width: fit-content;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  background: #ff7f47;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.case-study-report--purple .case-study-report__tag {
  background: #231d3a;
}

.case-study-report h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.3vw, 36px);
  line-height: 1.2;
}

.case-study-report__summary>p {
  max-width: 450px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

.case-study-report__objective {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.case-study-report__objective h3,
.case-study-report__detail h3 {
  position: relative;
  margin: 0;
  color: var(--case-accent);
  font-size: clamp(21px, 2.4vw, 25px);
  line-height: 1.32;
}

.case-study-report__objective h3::before,
.case-study-report__detail h3::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  vertical-align: 0.12em;
  border-radius: 999px;
  background: currentColor;
}

.case-study-report__objective p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.72;
}

.case-study-report__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-self: end;
  margin: auto 0 0;
}

.case-study-report__metrics dt {
  color: var(--case-accent);
  font-size: clamp(40px, 5vw, 55px);
  font-weight: 800;
  line-height: 1;
}

.case-study-report--purple .case-study-report__metrics dt {
  color: #231d3a;
}

.case-study-report__metrics dd {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.case-study-report__detail {
  display: grid;
  align-content: center;
  gap: 44px;
  padding: clamp(34px, 4.6vw, 64px);
}

.case-study-report__detail section {
  display: grid;
  gap: 16px;
}

.case-study-report__detail section+section {
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.case-study-report__detail p,
.case-study-report__detail li {
  margin: 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.72;
  letter-spacing: -0.01em;
}

.case-study-report__detail ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-study-report__detail li {
  position: relative;
  padding-left: 32px;
}

.case-study-report__detail li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15em;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid #ff7f47;
  border-radius: 999px;
  color: #ff7f47;
  font-size: 11px;
  line-height: 1;
}

.case-study-report--purple .case-study-report__detail li::before {
  border-color: #7a66c2;
  color: #7a66c2;
}

.case-study-report__detail .button {
  justify-self: start;
  min-height: 52px;
  font-size: 15px;
}

@media (max-width: 1050px) {

  .contact-hero__grid,
  .contact-locations__grid,
  .lce-program-card {
    grid-template-columns: 1fr;
  }

  .contact-hero__visual {
    min-height: 320px;
  }

  .contact-hero__visual img {
    min-height: 320px;
  }

  .contact-map-card {
    position: relative;
    top: auto;
  }

  .contact-map-card img {
    min-height: 360px;
  }

  .lce-program-card__media {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  .contact-hero {
    padding-block: 52px;
  }

  .contact-hero__grid {
    gap: 28px;
  }

  .contact-eyebrow {
    font-size: 12px;
  }

  .contact-hero h1 {
    font-size: clamp(40px, 13vw, 52px);
  }

  .contact-hero__stats {
    gap: 28px;
  }

  .contact-hero__visual,
  .contact-hero__visual img {
    min-height: 260px;
  }

  .contact-card-grid,
  .contact-form__row,
  .contact-locations__grid,
  .resource-grid,
  .lce-program-card {
    grid-template-columns: 1fr;
  }

  .contact-method-card,
  .resource-card {
    padding: 24px;
  }

  .contact-form__submit {
    width: 100%;
  }

  .contact-map-card img {
    min-height: 300px;
  }

  .contact-social div,
  .contact-social__links {
    display: flex;
    justify-content: flex-start;
  }

  .contact-social a {
    text-align: initial;
  }

  .faq-list summary {
    padding: 18px 48px 18px 18px;
  }

  .faq-list p {
    padding-inline: 18px;
  }

  .lce-hero {
    padding-block: 58px;
  }

  .lce-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .lce-program-card,
  .lce-interest-card {
    padding: 24px;
    border-radius: 20px;
  }

  .lce-program-card__media {
    min-height: 220px;
    padding: 30px;
  }

  .lce-program-card__media img {
    width: min(170px, 70%);
  }

  .lce-program-card h2,
  .lce-interest-card h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .lce-program-card p,
  .lce-interest-card .section-heading p {
    font-size: 15px;
    line-height: 1.65;
  }

  .lce-feature-list li {
    font-size: 16px;
  }

  .lce-program-card .button,
  .lce-form__submit {
    width: 100%;
  }

  .case-page-stats,
  .case-study-report {
    grid-template-columns: 1fr;
  }

  .case-page-stats {
    gap: 22px;
  }

  .case-study-report {
    min-height: 0;
  }

  .case-study-report__summary,
  .case-study-report__detail {
    padding: 28px;
  }

  .case-study-report__detail {
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .case-page-hero {
    padding-block: 56px;
  }

  .case-page-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

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

  .case-report-list {
    gap: 28px;
  }

  .case-study-report {
    border-radius: 20px;
  }

  .case-study-report__summary {
    gap: 18px;
  }

  .case-study-report__metrics {
    gap: 16px;
  }

  .case-study-report__detail p,
  .case-study-report__detail li,
  .case-study-report__objective p {
    font-size: 15px;
    line-height: 1.65;
  }

  .case-study-report__detail .button {
    width: 100%;
  }
}

.services-page-hero {
  --hero-cursor-x: 50%;
  --hero-cursor-y: 50%;
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 8vw, 108px);
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at var(--hero-cursor-x) var(--hero-cursor-y), rgba(255, 127, 71, 0.36) 0%, rgba(255, 127, 71, 0.18) 18%, rgba(99, 102, 241, 0.1) 34%, transparent 58%),
    linear-gradient(135deg, #11204b 0%, #121b52 46%, #1f299c 100%);
  isolation: isolate;
}

.services-page-hero::before,
.services-page-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(96px);
  pointer-events: none;
}

.services-page-hero::before {
  left: var(--hero-cursor-x);
  top: var(--hero-cursor-y);
  width: 420px;
  height: 420px;
  background: #6366f1;
  opacity: 0.3;
  transform: translate(-50%, -50%);
  transition: left 360ms ease-out, top 360ms ease-out;
}

.services-page-hero::after {
  right: 10%;
  bottom: -20%;
  width: 360px;
  height: 360px;
  background: #ff7f47;
  opacity: 0.18;
}

.services-page-hero .container {
  position: relative;
  z-index: 1;
}

.services-page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.services-page-hero h1 span {
  color: #ff7f47;
}

.services-page-hero p {
  max-width: 900px;
  margin: 24px auto 0;
  color: #dbeafe;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.services-method .section-heading h2 {
  color: #1f299c;
  font-size: clamp(36px, 4.5vw, 48px);
}

.services-method .section-heading p {
  max-width: 780px;
  color: #1a237e;
  font-size: 18px;
}

.services-method .section-heading strong {
  color: #ff7f47;
}

.method-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  max-width: 960px;
  margin-top: 46px;
}

.method-steps::before {
  content: "";
  position: absolute;
  top: 62px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: rgba(15, 30, 74, 0.1);
}

.method-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
  transform-origin: center;
  transition: transform 760ms var(--ease-bounce);
}

.method-step:hover,
.method-step:focus-within {
  transform: translateY(-8px) rotate(0.45deg) scale(1.012);
}

.method-step:nth-child(even):hover,
.method-step:nth-child(even):focus-within {
  transform: translateY(-8px) rotate(-0.45deg) scale(1.012);
}

.method-step__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  color: #fff;
  background: #1f299c;
  border-radius: 999px;
  box-shadow: 0 20px 36px rgba(15, 30, 74, 0.16);
  transition: transform 760ms var(--ease-bounce), box-shadow 320ms ease;
}

.method-step:hover .method-step__icon,
.method-step:focus-within .method-step__icon {
  transform: scale(1.045) rotate(-0.8deg);
  box-shadow: 0 28px 52px rgba(15, 30, 74, 0.18);
}

.method-step__icon svg {
  width: 42px;
  height: 42px;
}

.method-step--orange .method-step__icon {
  background: #f57e38;
}

.method-step--purple .method-step__icon {
  background: #836fda;
}

.method-step h3 {
  margin: 0;
  color: #1f299c;
  font-size: 30px;
  line-height: 1;
}

.method-step p {
  max-width: 250px;
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.45;
}

.service-panels {
  display: grid;
  gap: clamp(38px, 5vw, 66px);
  width: var(--container);
  margin: 0 auto;
  padding-block: 20px var(--section-gap);
}

.service-detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
  isolation: isolate;
  overflow: visible;
  min-height: 760px;
  border-radius: 42px;
  background: transparent;
  transform-origin: center;
  transition: transform 760ms var(--ease-bounce);
}

.service-detail::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: 0;
  border-radius: 42px;
  background: color-mix(in srgb, var(--service-color) 16%, transparent);
  transform: rotate(-1.7deg);
  transition: transform 760ms var(--ease-bounce), inset 320ms ease, background 320ms ease;
}

.service-detail::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid #f3f4f6;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 22px 46px rgba(15, 30, 74, 0.13);
  pointer-events: none;
  transition: box-shadow 320ms ease, border-color 320ms ease;
}

.service-detail:hover,
.service-detail:focus-within {
  transform: translateY(-8px) rotate(0.35deg) scale(1.008);
}

.service-detail:hover::after,
.service-detail:focus-within::after {
  border-color: rgba(31, 41, 156, 0.14);
  box-shadow: 0 28px 56px rgba(15, 30, 74, 0.15);
}

.service-detail--reverse:hover,
.service-detail--reverse:focus-within {
  transform: translateY(-8px) rotate(-0.35deg) scale(1.008);
}

.service-detail:hover::before,
.service-detail:focus-within::before {
  inset: 24px -24px -24px 24px;
  background: color-mix(in srgb, var(--service-color) 20%, transparent);
  transform: rotate(-2.1deg);
}

.service-detail--reverse {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
}

.service-detail--reverse .service-detail__color {
  grid-column: 2;
}

.service-detail--reverse .service-detail__body {
  grid-column: 1;
  grid-row: 1;
}

.service-detail--orange {
  --service-color: #f57e38;
}

.service-detail--purple {
  --service-color: #836fda;
}

.service-detail--navy {
  --service-color: #11005c;
}

.service-detail__color {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 100%;
  padding: clamp(32px, 4vw, 54px);
  color: #fff;
  background: var(--service-color);
  border-radius: 42px;
}

.service-detail__color span {
  display: block;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  line-height: 0.95;
}

.service-detail__color h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.service-detail__color p {
  max-width: 500px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.service-detail__color img {
  width: min(100%, 460px);
  aspect-ratio: 4 / 3;
  margin-top: auto;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: 0 24px 42px rgba(15, 30, 74, 0.22);
  transition: transform 760ms var(--ease-bounce), box-shadow 320ms ease;
}

.service-detail:hover .service-detail__color img,
.service-detail:focus-within .service-detail__color img {
  transform: scale(1.045) rotate(-0.8deg);
  box-shadow: 0 30px 54px rgba(15, 30, 74, 0.25);
}

.service-detail--reverse:hover .service-detail__color img,
.service-detail--reverse:focus-within .service-detail__color img {
  transform: scale(1.045) rotate(0.8deg);
}

.service-detail__body {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(32px, 4vw, 58px);
}

.service-detail__body h3 {
  margin: 0;
  color: #0f1e4a;
  font-size: 24px;
  line-height: 1.25;
}

.service-detail__body h3::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: -3px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--service-color) 22%, transparent);
  box-shadow: inset 0 0 0 6px var(--service-color);
}

.service-detail__body p {
  margin: 0;
  color: #4a5565;
  font-size: 18px;
  line-height: 1.65;
}

.service-detail__body ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  color: #4a5565;
  list-style: none;
}

.service-detail__body li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.55;
}

.service-detail__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--service-color);
}

.service-detail__body blockquote {
  margin: 8px 0 0;
  padding: 20px 0 20px 22px;
  color: #6366f1;
  border-left: 3px solid color-mix(in srgb, var(--service-color) 55%, #fff);
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
}

.service-detail__body .button {
  justify-self: start;
  margin-top: 6px;
  font-size: 16px;
}

.capability-list {
  display: grid;
  gap: 16px;
}

.capability-list section {
  padding: 18px 20px;
  border: 1px solid rgba(15, 30, 74, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 30, 74, 0.06);
}

.capability-list h4 {
  margin: 0;
  color: #1f299c;
  font-size: 18px;
  line-height: 1.35;
}

.capability-list p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.55;
}

.owner-hero {
  padding-block: clamp(70px, 8vw, 108px) clamp(56px, 6vw, 84px);
  background: linear-gradient(180deg, #fff 0%, #fff 62%, #f8fafc 100%);
}

.owner-hero__title {
  text-align: center;
}

.owner-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  margin: 0;
  color: #fff;
  background: #f15e06;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.owner-pill--light {
  color: #f15e06;
  background: #fff3ed;
}

.owner-hero h1 {
  margin: 18px 0 0;
  color: #0f276e;
  font-size: clamp(44px, 5.8vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.owner-hero__title>p:last-child {
  margin: 18px 0 0;
  color: #4a5565;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.45;
}

.owner-hero__grid {
  display: grid;
  grid-template-columns: minmax(330px, 520px) minmax(0, 1fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: stretch;
  margin-top: 48px;
}

.owner-portrait-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 100%;
  border: 4px solid #fff;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  background: #f8fafc;
}

.owner-portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-bio-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  min-height: 100%;
  color: #64748b;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.72;
  letter-spacing: -0.02em;
}

.owner-bio-copy p {
  margin: 0;
}

.owner-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 58px;
}

.owner-logos div {
  display: grid;
  place-items: center;
  min-height: 124px;
  padding: 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15, 30, 74, 0.08);
}

.owner-logos div:nth-child(2) {
  background: #ead477;
}

.owner-logos img {
  max-width: 176px;
  max-height: 104px;
  object-fit: contain;
}

.owner-media .section-heading {
  margin-bottom: 40px;
}

.owner-media .section-heading h2,
.owner-course .section-heading h2 {
  color: #0f1e4a;
  font-size: clamp(40px, 4.5vw, 48px);
  line-height: 1.08;
}

.owner-media .section-heading p,
.owner-course .section-heading p {
  max-width: 720px;
  font-size: 20px;
  line-height: 1.45;
}

.owner-presence-grid {
  display: block;
}

.owner-carousel {
  display: grid;
  gap: 18px;
}

.owner-carousel__viewport {
  display: grid;
  overflow: hidden;
  border-radius: 24px;
  background: #0f1e4a;
  box-shadow: 0 22px 54px rgba(15, 30, 74, 0.16);
}

.owner-carousel--video .owner-carousel__viewport {
  aspect-ratio: 16 / 9;
}

.owner-carousel--events {
  max-width: var(--container);
}

.owner-carousel--events .owner-carousel__viewport {
  overflow-x: auto;
  display: flex;
  gap: 32px;
  max-width: none;
  margin-inline: auto;
  padding: 0 0 10px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.owner-carousel--events .owner-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.owner-carousel--events .owner-carousel__slide {
  flex: 0 0 calc((100% - 64px) / 3);
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: none;
  scroll-snap-align: start;
}

.owner-carousel--events .owner-carousel__slide.is-active {
  display: block;
  animation: ownerEventSlideIn 520ms var(--ease-smooth) both;
}

.owner-carousel__slide {
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px) scale(0.985);
  transition: opacity 420ms ease, transform 620ms var(--ease-smooth);
}

.owner-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.owner-carousel__slide iframe,
.owner-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.owner-carousel__slide img {
  object-fit: cover;
}

.owner-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.owner-carousel__controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--color-blue-dark);
  cursor: pointer;
  transition: transform 380ms var(--ease-bounce), background 220ms ease;
}

.owner-carousel__controls button:hover,
.owner-carousel__controls button:focus-visible {
  background: #1f299c;
  transform: translateY(-2px);
}

.owner-carousel__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.owner-carousel__dots button {
  width: 10px;
  height: 10px;
  min-height: 0;
  padding: 0;
  border-radius: 999px;
  background: #c7d2fe;
}

.owner-carousel__dots button.is-active {
  width: 28px;
  background: #1f299c;
}

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

.owner-event-card {
  text-align: center;
}

.owner-carousel--events .owner-event-card {
  align-content: start;
}

.owner-event-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 18px;
  background: transparent;
}

.owner-event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 760ms var(--ease-bounce);
}

.owner-event-card:hover img,
.owner-event-card:focus-within img {
  transform: scale(1.045) rotate(-0.5deg);
}

.owner-event-card figure span {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 12px;
  color: #fff;
  background: #f15e06;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.owner-event-card h2 {
  margin: 18px 0 0;
  color: #0f1e4a;
  font-size: 20px;
  line-height: 28px;
}

.owner-event-card p {
  margin: 8px 0 0;
  color: #4a5565;
  font-size: 14px;
  line-height: 20px;
}

.owner-course__grid {
  display: grid;
  grid-template-columns: minmax(280px, 456px) minmax(0, 502px);
  gap: 46px;
  align-items: center;
  justify-content: center;
}

.owner-course figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(15, 30, 74, 0.12);
}

.owner-course img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-course h3 {
  margin: 22px 0 0;
  color: #0f1e4a;
  font-size: clamp(28px, 3.3vw, 36px);
  line-height: 1.12;
}

.owner-course p:not(.owner-pill) {
  margin: 18px 0 0;
  color: #4a5565;
  font-size: 18px;
  line-height: 1.65;
}

.owner-course ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  color: #4a5565;
  list-style: none;
}

.owner-course li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.5;
}

.owner-course li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff2ed;
}

.owner-course li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: calc(0.2em + 4px);
  width: 5px;
  height: 8px;
  border-right: 2px solid #f15e06;
  border-bottom: 2px solid #f15e06;
  transform: rotate(45deg);
}

[data-animate] {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, var(--reveal-y, 34px), 0) scale(var(--reveal-scale, 0.985));
  transition:
    opacity 720ms ease,
    filter 720ms ease,
    transform 860ms var(--ease-smooth);
  transition-delay: var(--reveal-delay, 0ms);
}

.case-study-card[data-animate] {
  transform: translateY(56px) scale(0.985);
  transition: opacity 720ms ease, filter 720ms ease, transform 760ms var(--ease-smooth), box-shadow 420ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.case-study-card[data-animate].is-visible:hover,
.case-study-card[data-animate].is-visible:focus-within {
  transform: translateY(-8px) scale(1.025);
}

.cta-band__inner[data-animate].is-visible:hover,
.cta-band__inner[data-animate].is-visible:focus-within {
  transform: translateY(-3px);
}

.team-card[data-animate].is-visible:hover,
.team-card[data-animate].is-visible:focus-within {
  transform: translateY(-8px) rotate(1.2deg) scale(1.018);
}

.team-card:nth-child(even)[data-animate].is-visible:hover,
.team-card:nth-child(even)[data-animate].is-visible:focus-within {
  transform: translateY(-8px) rotate(-1.2deg) scale(1.018);
}

.founder-profile[data-animate].is-visible:hover,
.founder-profile[data-animate].is-visible:focus-within {
  transform: translateY(-8px) rotate(0.35deg) scale(1.008);
}

.team-profile-card[data-animate].is-visible:hover,
.team-profile-card[data-animate].is-visible:focus-within {
  transform: translateY(-8px) rotate(0.45deg) scale(1.008);
}

.team-profile-card--asmaa[data-animate].is-visible:hover,
.team-profile-card--asmaa[data-animate].is-visible:focus-within {
  transform: translateY(-8px) rotate(-0.45deg) scale(1.008);
}

.method-step[data-animate].is-visible:hover,
.method-step[data-animate].is-visible:focus-within,
.contact-method-card[data-animate].is-visible:hover,
.contact-method-card[data-animate].is-visible:focus-within,
.resource-card[data-animate].is-visible:hover,
.resource-card[data-animate].is-visible:focus-within {
  transform: translateY(-8px) rotate(0.45deg) scale(1.012);
}

.method-step:nth-child(even)[data-animate].is-visible:hover,
.method-step:nth-child(even)[data-animate].is-visible:focus-within,
.contact-method-card:nth-child(even)[data-animate].is-visible:hover,
.contact-method-card:nth-child(even)[data-animate].is-visible:focus-within,
.resource-card:nth-child(even)[data-animate].is-visible:hover,
.resource-card:nth-child(even)[data-animate].is-visible:focus-within {
  transform: translateY(-8px) rotate(-0.45deg) scale(1.012);
}

.service-detail[data-animate].is-visible:hover,
.service-detail[data-animate].is-visible:focus-within,
.case-study-report[data-animate].is-visible:hover,
.case-study-report[data-animate].is-visible:focus-within,
.contact-info-card[data-animate].is-visible:hover,
.contact-info-card[data-animate].is-visible:focus-within,
.contact-social[data-animate].is-visible:hover,
.contact-social[data-animate].is-visible:focus-within {
  transform: translateY(-8px) rotate(0.35deg) scale(1.008);
}

.service-detail--reverse[data-animate].is-visible:hover,
.service-detail--reverse[data-animate].is-visible:focus-within,
.case-study-report--purple[data-animate].is-visible:hover,
.case-study-report--purple[data-animate].is-visible:focus-within,
.contact-info-card:nth-of-type(even)[data-animate].is-visible:hover,
.contact-info-card:nth-of-type(even)[data-animate].is-visible:focus-within {
  transform: translateY(-8px) rotate(-0.35deg) scale(1.008);
}

.contact-form[data-animate].is-visible:hover,
.contact-form[data-animate].is-visible:focus-within {
  transform: translateY(-8px) rotate(0.25deg) scale(1.004);
}

.contact-map-card[data-animate].is-visible:hover,
.contact-map-card[data-animate].is-visible:focus-within {
  transform: translateY(-8px) rotate(0.35deg) scale(1.006);
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(calc(var(--card-x, 0%) + var(--card-shift, 0px)), calc(var(--card-y, 0%) + 54px), 0) rotate(var(--card-r, 0deg)) scale(0.92);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes railIconIgnite {
  0% {
    transform: scale(0.9);
    filter: saturate(0.72);
  }

  36% {
    transform: scale(1.16);
    filter: saturate(1.35);
  }

  68% {
    transform: scale(0.96);
  }

  100% {
    transform: scale(1);
    filter: saturate(1);
  }
}

@keyframes railIgniteRing {
  0% {
    opacity: 0.55;
    transform: scale(0.55);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@media (max-width: 1050px) {
  :root {
    --header-height: 76px;
    --section-gap: clamp(38px, 6vw, 64px);
    --page-shell: min(100vw - 40px, 860px);
    --container: var(--page-shell);
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    height: var(--header-height);
    padding-inline: max(20px, calc((100vw - 860px) / 2));
  }

  .brand__logo {
    width: 144px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    border-radius: 12px;
    background: var(--color-blue);
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform 180ms ease;
  }

  .site-header.is-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-header.is-open .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: max(20px, calc((100vw - 860px) / 2));
    left: auto;
    display: grid;
    width: min(260px, calc(100vw - 40px));
    gap: 4px;
    padding: 12px;
    background: var(--color-blue);
    border-radius: 16px;
    box-shadow: 0 22px 48px rgba(15, 30, 74, 0.2);
  }

  .site-header.is-open .main-nav a {
    padding: 12px 14px;
    color: #fff;
    font-size: 15px;
    border-radius: 10px;
  }

  .site-header.is-open .main-nav a:hover,
  .site-header.is-open .main-nav a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
  }

  .section {
    padding-block: var(--section-gap);
  }

  main>section {
    scroll-margin-top: calc(var(--header-height) + 18px);
  }

  .section-heading {
    max-width: 720px;
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: clamp(34px, 7vw, 48px);
    line-height: 1.08;
  }

  .section-heading p {
    margin-top: 12px;
    font-size: clamp(16px, 2.5vw, 19px);
    line-height: 1.55;
  }

  .button {
    min-height: 50px;
    padding: 8px 8px 8px 18px;
    border-radius: 14px;
    font-size: 16px;
  }

  .button::after {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 20px;
  }

  .hero {
    min-height: 0;
    overflow: visible;
    padding-block: clamp(64px, 8vw, 84px) var(--section-gap);
  }

  .hero__inner {
    gap: clamp(22px, 4vw, 36px);
  }

  .hero h1 {
    max-width: 820px;
    font-size: clamp(40px, 8vw, 64px);
    line-height: 1.01;
  }

  .hero__actions {
    gap: 12px;
    margin-top: clamp(24px, 4vw, 34px);
  }

  .hero-cards {
    width: min(100%, 760px);
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
    transform: none;
  }

  .hero-card,
  .hero-cards.is-hovering .hero-card,
  .hero-card.is-active {
    width: 100%;
    margin: 0;
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    transform: none;
    animation: none;
    transition: transform 420ms var(--ease-bounce), box-shadow 240ms ease;
  }

  .hero-card:active,
  .hero-card:focus-within,
  .hero-card.is-tapped {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 24px 52px rgba(15, 30, 74, 0.18);
  }

  .hero-card.is-tapped {
    animation: mobileHeroCardBounce 720ms var(--ease-bounce) both;
  }

  .hero-cards.has-mobile-tap .hero-card:not(.is-tapped) {
    animation: mobileHeroNeighborBounce 720ms var(--ease-bounce) both;
  }

  .hero-card--stat {
    min-height: 0;
    aspect-ratio: 1.08;
    padding: clamp(20px, 4vw, 30px);
  }

  .hero-card--image {
    aspect-ratio: 1.08;
  }

  .hero-card__number {
    font-size: clamp(42px, 8vw, 58px);
  }

  .hero-card--blue .hero-card__number {
    font-size: clamp(38px, 7vw, 48px);
  }

  .hero-card__label,
  .hero-card__footer {
    font-size: clamp(14px, 2.4vw, 16px);
    line-height: 1.25;
  }

  .hero__statement {
    max-width: 760px;
    margin-top: 4px;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.5;
  }

  .intro__grid {
    width: var(--container);
    max-width: 760px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: left;
  }

  .intro__copy {
    display: contents;
  }

  .pill--lavender {
    order: 1;
  }

  .intro__copy h2 {
    order: 2;
    margin-top: 0;
    font-size: clamp(38px, 8vw, 52px);
  }

  .portrait-card {
    order: 3;
    width: min(100%, 520px);
    margin-inline: auto;
    border-radius: 28px;
  }

  .intro__copy>p:not(.pill) {
    order: 4;
    max-width: none;
    margin-top: 0;
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.65;
  }

  .bio-badges {
    order: 5;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 8px 0 12px;
  }

  .bio-badges li {
    align-items: flex-start;
  }

  .intro__copy .button {
    order: 6;
    justify-self: start;
    width: fit-content;
    max-width: 100%;
  }

  .services .section-heading {
    margin-bottom: 16px;
  }

  .services .section-heading h2 {
    font-size: clamp(34px, 7vw, 46px);
    line-height: 1.08;
  }

  .services .section-heading p {
    margin-top: 14px;
    font-size: clamp(16px, 2.6vw, 18px);
    line-height: 1.55;
  }

  .services-scroll {
    min-height: auto;
  }

  .services-sticky {
    position: static;
    display: flex;
    width: var(--container);
    min-height: 0;
    flex-direction: column;
    gap: 18px;
  }

  .framework-rail {
    order: 1;
    display: grid;
    width: 100%;
    height: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .framework-rail__step {
    width: 100%;
    min-height: 0;
    gap: 6px;
    padding: 10px 8px;
    border: 1px solid rgba(15, 30, 74, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 30, 74, 0.08);
  }

  .framework-rail__step:not(:last-child)::after {
    display: none;
  }

  .framework-rail__icon {
    width: 56px;
    height: 56px;
    transform: none;
  }

  .framework-rail__icon svg {
    width: 22px;
    height: 22px;
  }

  .framework-rail__step strong {
    font-size: 16px;
    line-height: 1.1;
  }

  .framework-rail__step small {
    max-width: 150px;
    font-size: 11px;
    line-height: 1.2;
  }

  .services-stack {
    order: 2;
    display: flex;
    width: 100%;
    height: auto;
    min-height: 0;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0 0 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    perspective: none;
  }

  .services-stack::-webkit-scrollbar {
    display: none;
  }

  .service-card,
  .service-card.is-active,
  .service-card.is-before,
  .service-card.is-after {
    position: relative;
    inset: auto;
    display: grid;
    flex: 0 0 min(82vw, 540px);
    min-height: 0;
    padding: clamp(18px, 3vw, 22px);
    border-radius: 28px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    scroll-snap-align: center;
    box-shadow: 0 14px 0 var(--service-depth), var(--shadow-card);
  }

  .service-card__content {
    display: grid;
    gap: 11px;
  }

  .service-card:not(.is-active) .service-card__content,
  .service-card:not(.is-active) .service-card__image,
  .service-card .service-card__content,
  .service-card .service-card__image {
    opacity: 1;
    transform: none;
  }

  .service-card__index {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: clamp(34px, 6vw, 48px);
    line-height: 0.9;
  }

  .service-card h3,
  .service-card:not(:first-child) h3,
  .service-card p,
  .service-card ul,
  .service-card .button,
  .service-card__image {
    position: static;
    max-width: none;
  }

  .service-card h3,
  .service-card:not(:first-child) h3 {
    max-width: calc(100% - 64px);
    font-size: clamp(24px, 4.6vw, 32px);
    line-height: 1.08;
  }

  .service-card__lede {
    font-size: clamp(15px, 2.4vw, 17px);
    line-height: 1.35;
  }

  .service-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .service-card ul {
    gap: 8px;
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.25;
  }

  .service-card .button {
    width: fit-content;
    min-width: 0;
    max-width: 100%;
    margin-top: 2px;
    font-size: 14px;
  }

  .service-card__image {
    order: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 1.65;
    margin-top: 14px;
    border-width: 4px;
    border-radius: 18px;
  }

  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .case-study-card {
    min-height: 440px;
    border-radius: 28px;
  }

  .case-study-card__body {
    padding: 26px;
  }

  .case-study-card .metric,
  .case-study-card .metric+p,
  .case-study-card a {
    max-height: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .case-study-card h3 {
    margin-top: auto;
    transform: none;
  }

  .cta-band__inner {
    gap: 16px;
    padding: clamp(34px, 7vw, 56px) 22px;
    border-radius: 30px;
  }

  .cta-band h2 {
    font-size: clamp(30px, 7vw, 42px);
  }

  .testimonial-shell {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 14px;
  }

  .testimonial-track {
    grid-column: 1 / -1;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .testimonial-track::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 min(78vw, 520px);
    min-height: 360px;
    padding: 28px;
    scroll-snap-align: center;
  }

  .testimonial-card blockquote {
    font-size: 17px;
    line-height: 1.6;
  }

  .slider-button {
    display: grid;
  }

  .testimonial-pagination {
    grid-column: 2;
    align-self: center;
    margin-top: 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .team-card {
    padding: 22px;
    border-radius: 26px;
  }

  .team-card figure {
    border-radius: 20px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
    --section-gap: 34px;
    --page-shell: min(100vw - 40px, 560px);
    --container: var(--page-shell);
  }

  .site-header {
    padding-inline: 20px;
  }

  .site-header.is-open .main-nav {
    right: 20px;
    width: min(238px, calc(100vw - 40px));
  }

  .brand__logo {
    width: 132px;
  }

  .hero {
    padding-top: 66px;
    padding-bottom: 18px;
  }

  .hero__inner {
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(36px, 11.2vw, 48px);
  }

  .hero__actions {
    width: min(100%, 360px);
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .hero-cards {
    width: min(100%, 430px);
    gap: 10px;
  }

  .hero-card {
    border-radius: 15px;
  }

  .hero-card--stat {
    padding: 16px;
  }

  .hero-card__number,
  .hero-card--blue .hero-card__number {
    font-size: clamp(31px, 10vw, 42px);
  }

  .hero-card__label,
  .hero-card__footer {
    font-size: 11px;
    line-height: 1.22;
  }

  .hero__statement {
    font-size: 17px;
  }

  .intro.section {
    padding-top: 18px;
  }

  .intro__grid {
    text-align: center;
    justify-items: center;
  }

  .intro__grid,
  .case-grid,
  .team-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .intro__copy h2 {
    margin-top: -11px;
    font-size: clamp(24px, 6.8vw, 27px);
    line-height: 1.05;
  }

  .pill--lavender,
  .intro__copy h2,
  .intro__copy>p:not(.pill),
  .bio-badges {
    justify-self: center;
  }

  .pill--lavender {
    min-height: 26px;
    padding-inline: 13px;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.42px;
  }

  .intro__copy>p:not(.pill) {
    text-align: center;
  }

  .portrait-card {
    width: min(100%, 390px);
    border-radius: 24px;
  }

  .bio-badges {
    grid-template-columns: 1fr;
  }

  .bio-badges li {
    gap: 12px;
  }

  .intro__copy .button {
    width: 100%;
  }

  .section-heading h2 {
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.08;
  }

  .section-heading p {
    font-size: 16px;
    line-height: 1.48;
  }

  .section-action {
    width: var(--container);
    margin-inline: auto;
  }

  .services .section-heading h2 {
    font-size: clamp(30px, 8.5vw, 38px);
  }

  .services .section-heading {
    margin-bottom: 12px;
  }

  .services .section-heading p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.48;
  }

  .services-sticky {
    position: relative;
    top: auto;
    gap: 14px;
    min-height: auto;
  }

  .services-scroll {
    min-height: 0;
  }

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

  .framework-rail__step {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 6px;
    padding: 9px 5px;
    border-radius: 16px;
    transition: transform 420ms var(--ease-spring), box-shadow 320ms ease, border-color 320ms ease;
  }

  .framework-rail__step.is-active {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--rail-color) 24%, transparent);
    box-shadow: 0 14px 30px rgba(15, 30, 74, 0.12);
  }

  .framework-rail__icon {
    grid-row: auto;
    width: 48px;
    height: 48px;
    transition: transform 520ms var(--ease-bounce);
  }

  .framework-rail__icon svg {
    width: 18px;
    height: 18px;
  }

  .framework-rail__step.is-active .framework-rail__icon {
    transform: scale(1.08);
  }

  .framework-rail__step strong {
    font-size: 14px;
    line-height: 1.05;
  }

  .framework-rail__step small {
    display: none;
  }

  .services-stack {
    position: relative;
    display: flex;
    gap: 14px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 18px;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    perspective: none;
  }

  .services-stack::-webkit-scrollbar {
    display: none;
  }

  .service-card,
  .service-card.is-active,
  .service-card.is-before,
  .service-card.is-after {
    position: relative;
    inset: auto;
    display: grid;
    flex: 0 0 100%;
    grid-template-columns: minmax(0, 1fr) minmax(118px, 42%);
    grid-template-areas:
      "title title"
      "lede lede"
      "copy copy"
      "list list"
      "cta image";
    gap: 10px 14px;
    width: 100%;
    min-height: 0;
    padding: 20px;
    border-radius: 24px;
    opacity: 0.58;
    pointer-events: auto;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    box-shadow: 0 10px 0 var(--service-depth), var(--shadow-card);
    transform: scale(0.94);
    will-change: transform, opacity;
    transition:
      opacity 360ms ease,
      transform 620ms var(--ease-spring),
      box-shadow 360ms ease,
      filter 360ms ease;
  }

  .service-card.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    filter: none;
  }

  .service-card.is-active:hover,
  .service-card.is-active:focus-within {
    transform: scale(1);
    box-shadow: 0 10px 0 var(--service-depth), var(--shadow-card);
  }

  .service-card.is-before {
    opacity: 0.62;
    transform: scale(0.94) rotate(-0.35deg);
    filter: saturate(0.86);
  }

  .service-card.is-after {
    opacity: 0.62;
    transform: scale(0.94) rotate(0.35deg);
    filter: saturate(0.86);
  }

  .service-card.is-after+.service-card.is-after {
    transform: scale(0.94) rotate(0.35deg);
  }

  .services-stack.is-swipe-forward .service-card.is-before {
    transform: translateX(-8px) rotate(-0.8deg) scale(0.93);
  }

  .services-stack.is-swipe-backward .service-card.is-after {
    transform: translateX(8px) rotate(0.8deg) scale(0.93);
  }

  .service-card__content {
    display: contents;
  }

  .service-card:not(.is-active) h3,
  .service-card:not(.is-active) p,
  .service-card:not(.is-active) ul,
  .service-card:not(.is-active) .button,
  .service-card:not(.is-active) .service-card__image {
    visibility: visible;
  }

  .service-card__index {
    top: 16px;
    right: 18px;
    font-size: clamp(30px, 9vw, 38px);
  }

  .service-card h3,
  .service-card:not(:first-child) h3 {
    grid-area: title;
    max-width: calc(100% - 56px);
    font-size: clamp(22px, 6.4vw, 27px);
    line-height: 1.04;
  }

  .service-card__lede {
    grid-area: lede;
    font-size: 13.5px;
    line-height: 1.28;
  }

  .service-card p:not(.service-card__lede) {
    grid-area: copy;
    font-size: 13px;
    line-height: 1.42;
  }

  .service-card ul {
    grid-area: list;
    gap: 5px;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.18;
  }

  .service-card .button {
    grid-area: cta;
    align-self: end;
    width: auto;
    min-height: 46px;
    padding: 7px 7px 7px 13px;
    font-size: 12.5px;
    border-radius: 13px;
  }

  .service-card .button::after {
    width: 32px;
    height: 32px;
  }

  .service-card__image {
    grid-area: image;
    align-self: end;
    aspect-ratio: 1.05;
    max-height: 138px;
    margin-top: 0;
    border-width: 3px;
    border-radius: 15px;
  }

  .service-card.is-active:hover .service-card__image,
  .service-card.is-active:focus-within .service-card__image {
    transform: none;
    box-shadow: none;
  }

  .case-study-card {
    min-height: 390px;
    border-radius: 28px;
    cursor: pointer;
  }

  .case-study-card__body {
    justify-content: space-between;
    padding: 24px;
  }

  .case-study-card h3 {
    width: 100%;
    margin-top: auto;
    font-size: clamp(25px, 7.5vw, 32px);
    line-height: 1.08;
  }

  .case-study-card .metric,
  .case-study-card .metric+p,
  .case-study-card a {
    display: none;
  }

  .case-study-card.is-touch-active {
    transform: translateY(-6px) scale(1.018);
    box-shadow: 0 28px 68px rgba(15, 30, 74, 0.22);
  }

  .case-study-card.is-touch-active img {
    transform: scale(1.06);
  }

  .case-study-card.is-touch-active::after {
    background: linear-gradient(180deg, rgba(4, 4, 4, 0.14) 0%, var(--overlay) 92%);
  }

  .case-study-card.is-touch-active .case-study-card__body {
    justify-content: flex-end;
  }

  .case-study-card.is-touch-active .metric,
  .case-study-card.is-touch-active .metric+p,
  .case-study-card.is-touch-active a {
    display: flex;
    max-height: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .case-study-card.is-touch-active .metric {
    display: block;
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: clamp(52px, 18vw, 72px);
  }

  .case-study-card.is-touch-active .metric+p {
    display: block;
  }

  .case-study-card.is-touch-active a {
    margin-top: 18px;
  }

  .case-studies .section-action,
  .team .section-action {
    margin-top: 28px;
  }

  .cta-band__inner {
    border-radius: 26px;
  }

  .cta-band p:not(.pill) {
    font-size: 16px;
    line-height: 1.5;
  }

  .testimonial-shell {
    grid-template-columns: 1fr 48px 48px 1fr;
    gap: 12px;
  }

  .testimonial-track {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .slider-button {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .slider-button[data-testimonial-prev] {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
  }

  .slider-button[data-testimonial-next] {
    grid-column: 3;
    grid-row: 2;
    justify-self: center;
  }

  .testimonial-pagination {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: center;
  }

  .testimonial-card {
    flex-basis: 100%;
    min-height: 0;
    padding: 24px 22px;
  }

  .testimonial-card blockquote {
    font-size: 15.5px;
    line-height: 1.58;
  }

  .team-card {
    padding: 18px;
  }

  .team-card img {
    aspect-ratio: 1.12;
  }

  .stats {
    padding-block: 38px;
  }

  .stats__grid {
    gap: 28px 16px;
  }

  .stats strong {
    font-size: clamp(32px, 10vw, 40px);
  }

  .stats span {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .site-footer {
    padding-top: 42px;
    text-align: left;
  }
}

@media (max-width: 1050px) {

  .about-card-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .method-steps {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .method-steps::before {
    top: 64px;
    bottom: 64px;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    transform: translateX(-1px);
  }

  .service-detail,
  .service-detail--reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-detail--reverse .service-detail__color,
  .service-detail--reverse .service-detail__body {
    grid-column: auto;
    grid-row: auto;
  }

  .service-detail__color {
    min-height: 620px;
  }

  .founder-profile,
  .team-profile-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .team-profile-card {
    grid-template-areas:
      "image"
      "body"
      "bio";
  }

  .founder-profile {
    padding: 28px;
  }

  .founder-profile figure,
  .team-profile-card figure {
    max-width: 420px;
  }

  .team-profile-card figure {
    width: min(100%, 420px);
  }

  .owner-hero__grid,
  .owner-presence-grid,
  .owner-course__grid {
    grid-template-columns: 1fr;
  }

  .owner-portrait-card {
    aspect-ratio: 509 / 623;
    width: min(100%, 520px);
    justify-self: center;
  }

  .owner-bio-copy {
    max-width: 720px;
    justify-self: center;
  }

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

  .owner-course__grid {
    max-width: 720px;
    margin-inline: auto;
  }

  .owner-carousel--events .owner-carousel__slide {
    flex-basis: calc((100% - 32px) / 2);
  }
}

@media (max-width: 720px) {
  .services-page-hero {
    padding-block: 54px;
  }

  .services-page-hero h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .services-page-hero p {
    font-size: 15px;
    line-height: 1.65;
  }

  .services-method .section-heading p {
    font-size: 15px;
    line-height: 1.6;
  }

  .method-steps {
    gap: 28px;
    margin-top: 34px;
  }

  .method-steps::before {
    display: none;
  }

  .method-step__icon {
    width: 96px;
    height: 96px;
  }

  .method-step h3 {
    font-size: 26px;
  }

  .service-panels {
    gap: 32px;
    width: min(100% - 32px, 1120px);
    padding-block: 8px 32px;
  }

  .service-detail {
    border-radius: 28px;
  }

  .service-detail::before {
    inset: 10px -8px -10px 8px;
    border-radius: 28px;
  }

  .service-detail::after {
    border-radius: 28px;
  }

  .service-detail__color {
    min-height: 0;
    padding: 28px 22px;
    border-radius: 28px;
  }

  .service-detail__color span {
    font-size: 44px;
  }

  .service-detail__color h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .service-detail__color p {
    font-size: 15px;
  }

  .service-detail__color img {
    width: 100%;
    margin-top: 22px;
    border-width: 5px;
    border-radius: 14px;
  }

  .service-detail__body {
    gap: 18px;
    padding: 26px 22px 30px;
  }

  .service-detail__body h3 {
    font-size: 20px;
  }

  .service-detail__body p,
  .service-detail__body li,
  .service-detail__body blockquote {
    font-size: 15px;
  }

  .service-detail__body .button {
    justify-self: stretch;
    font-size: 15px;
  }

  .capability-list section {
    padding: 16px;
  }

  .about-hero {
    padding-block: 58px;
  }

  .about-hero__pill {
    min-height: 32px;
    padding-inline: 14px;
    font-size: 11px;
    line-height: 1.2;
  }

  .about-hero h1 {
    margin-top: 22px;
    font-size: clamp(34px, 10vw, 44px);
  }

  .about-hero p:not(.pill) {
    font-size: 15px;
    line-height: 1.55;
  }

  .about-info-card,
  .value-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .about-values {
    padding-block: 54px;
  }

  .founder-profile {
    padding: 18px;
    border-radius: 22px;
    min-height: 0;
  }

  .founder-profile figure {
    max-width: none;
  }

  .founder-profile h3 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .profile-role {
    font-size: 16px;
  }

  .profile-facts {
    grid-template-columns: 1fr;
  }

  .team-profile-list {
    gap: 24px;
    margin-top: 32px;
  }

  .team-profile-card {
    gap: 22px;
    padding: 18px;
    border-radius: 22px;
  }

  .team-profile-card figure {
    max-width: none;
  }

  .team-profile-card__body {
    gap: 14px;
  }

  .about-team .section-heading {
    margin-bottom: 28px;
  }

  .about-team .section-heading h2 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.08;
  }

  .about-team .section-heading p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.5;
  }

  .founder-profile .button {
    width: 100%;
    max-width: 274px;
    font-size: 16px;
  }

  .profile-facts {
    margin-block: 16px;
  }

  .team-profile-card h3 {
    font-size: 30px;
    line-height: 1.08;
  }

  .profile-expertise {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.65;
  }

  .team-profile-card__bio {
    gap: 18px;
  }

  .team-profile-card__bio p {
    font-size: 15px;
    line-height: 1.65;
  }

  .owner-hero {
    padding-block: 52px 44px;
  }

  .owner-pill {
    min-height: 34px;
    padding: 7px 14px;
    font-size: 13px;
    line-height: 18px;
  }

  .owner-hero h1 {
    margin-top: 14px;
    font-size: clamp(38px, 13vw, 50px);
    letter-spacing: -0.03em;
  }

  .owner-hero__title>p:last-child {
    margin-top: 12px;
    font-size: 16px;
  }

  .owner-hero__grid {
    gap: 28px;
    margin-top: 32px;
  }

  .owner-portrait-card {
    border-width: 3px;
    border-radius: 22px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  }

  .owner-bio-copy {
    gap: 16px;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0;
  }

  .owner-logos,
  .owner-event-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .owner-logos {
    margin-top: 34px;
  }

  .owner-logos div {
    min-height: 104px;
    padding: 16px;
  }

  .owner-media .section-heading {
    margin-bottom: 28px;
  }

  .owner-media .section-heading h2,
  .owner-course .section-heading h2 {
    font-size: clamp(32px, 10vw, 40px);
  }

  .owner-media .section-heading p,
  .owner-course .section-heading p {
    font-size: 16px;
    line-height: 1.55;
  }

  .owner-presence-grid {
    gap: 24px;
  }

  .owner-carousel__viewport {
    border-radius: 18px;
  }

  .owner-carousel__controls button {
    width: 40px;
    height: 40px;
  }

  .owner-carousel--events .owner-carousel__viewport {
    gap: 18px;
  }

  .owner-carousel--events .owner-carousel__slide {
    flex-basis: 100%;
  }

  .owner-event-card figure {
    border-radius: 16px;
  }

  .owner-course__grid {
    gap: 24px;
  }

  .owner-course figure {
    border-radius: 18px;
  }

  .owner-course h3 {
    margin-top: 16px;
    font-size: clamp(26px, 8.5vw, 32px);
  }

  .owner-course p:not(.owner-pill) {
    font-size: 15px;
    line-height: 1.65;
  }

  .owner-course li {
    font-size: 15px;
  }

  .owner-course .button {
    width: 100%;
    max-width: 290px;
  }
}

@media (prefers-reduced-motion: reduce) {

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

  .hero-card {
    transform: translate3d(calc(var(--card-x, 0%) + var(--card-shift, 0px)), var(--card-y, 0%), 0) rotate(var(--card-r, 0deg));
  }
}

@keyframes mobileHeroCardBounce {
  0% {
    transform: translateY(0) scale(1);
  }

  44% {
    transform: translateY(-7px) scale(1.045);
  }

  68% {
    transform: translateY(2px) scale(0.992);
  }

  86% {
    transform: translateY(-2px) scale(1.012);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes mobileHeroNeighborBounce {
  0% {
    transform: translateY(0) scale(1);
  }

  48% {
    transform: translateY(3px) scale(0.985);
  }

  74% {
    transform: translateY(-2px) scale(1.008);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes ownerEventSlideIn {
  0% {
    opacity: 0;
    transform: translateX(26px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}