:root {
  --bg-black: #000;
  --bg-panel: #07111d;
  --bg-line: rgba(255, 255, 255, 0.1);
  --accent: #5bbdff;
  --accent-soft: rgba(91, 189, 255, 0.16);
  --text-primary: #fff;
  --text-secondary: rgba(255, 255, 255, 0.68);
  --text-muted: rgba(255, 255, 255, 0.45);
  --font-cn: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --font-en: "Space Grotesk", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-cn);
  color: var(--text-primary);
  background: var(--bg-black);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  padding: 0 clamp(20px, 4.85vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translate3d(0, 0, 0);
  transition: transform .36s cubic-bezier(.22, 1, .36, 1), background .28s ease, border-color .28s ease;
  will-change: transform;
}

.nav.nav-hidden {
  transform: translate3d(0, calc(-100% - 10px), 0);
}

.nav.nav-compact {
  background: #000;
  border-bottom-color: rgba(255, 255, 255, .05);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 133px;
  height: 32px;
  color: #fff;
  text-decoration: none;
}

.nav-logo-img {
  width: 133px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: min(46vw, 464px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 12px 8px;
  color: #808080;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  border-radius: 0;
  transition: color .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: #fff;
  background: transparent;
}

.nav-cta {
  padding: 12px 8px !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #808080 !important;
  font-weight: 500 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.nav-cta.active {
  color: #fff !important;
  background: transparent !important;
  box-shadow: none !important;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
  margin: 5px 0;
  transition: all .3s;
  border-radius: 1px;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(500px, 58vh, 680px);
  padding: clamp(134px, 12vw, 190px) clamp(24px, 6vw, 80px) clamp(138px, 12vw, 210px);
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 64% 20%, rgba(91, 189, 255, 0.22), transparent 32%),
    linear-gradient(180deg, #02060b 0%, #08213a 66%, #000 100%);
  transition:
    min-height .86s cubic-bezier(.16, 1, .3, 1),
    padding .86s cubic-bezier(.16, 1, .3, 1);
}

body:not([data-page="about"]) .page-hero {
  min-height: clamp(600px, 70vh, 800px);
  padding-top: clamp(150px, 13vw, 210px);
  padding-bottom: clamp(170px, 14vw, 250px);
}

body[data-page="about"].about-intro-expanded .page-hero {
  min-height: clamp(240px, 32vh, 360px);
  padding-top: clamp(92px, 8vw, 128px);
  padding-bottom: clamp(44px, 5vw, 76px);
}

.page-hero-media {
  position: absolute;
  inset: 0 0 -96px;
  z-index: 0;
  width: 100%;
  height: calc(100% + 96px);
  display: block;
  object-fit: cover;
  object-position: var(--hero-media-position, center center);
  opacity: .96;
  filter: saturate(1.04) contrast(1.04);
  pointer-events: none;
}

body:not([data-page="about"]) .page-hero-media {
  left: var(--page-hero-media-left, -40%);
  right: auto;
  width: calc(100% - var(--page-hero-media-left, -40%));
  transform: none;
}

@media (min-width: 1440px) {
  body[data-page="services"] {
    --page-hero-media-left: -10%;
  }
}

@media (min-width: 861px) and (max-width: 1439px) {
  body[data-page="contact"] {
    --page-hero-media-left: -56%;
  }

  body[data-page="contact"] .page-hero-media {
    object-position: 76% center;
  }
}

@media (max-width: 860px) {
  body[data-page="methodology"] {
    --page-hero-media-left: -45%;
  }

  body[data-page="contact"] {
    --page-hero-media-left: -58%;
  }

  body[data-page="contact"] .page-hero-media {
    object-position: 76% center;
  }
}

.page-hero-image {
  background-position: var(--hero-media-position, center center);
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.page-hero::before {
  background:
    radial-gradient(circle at 62% 22%, rgba(91, 189, 255, .2), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .2) 48%, rgba(0, 0, 0, .2) 100%);
}

.page-hero::after {
  inset: auto 0 0;
  height: clamp(170px, 24vw, 280px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(1, 5, 10, .74) 52%, #000 100%);
}

.page-hero > * {
  position: relative;
  z-index: 2;
}

.page-hero > .page-hero-media {
  position: absolute;
  z-index: 0;
}

@keyframes pageHeroLiquid {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1.08);
  }
  45% {
    transform: translate3d(2%, 2%, 0) scale(1.12);
  }
  100% {
    transform: translate3d(-1%, 3%, 0) scale(1.1);
  }
}

@keyframes pageHeroParticles {
  to {
    background-position: 38px 76px, -50px 72px, 0 0;
  }
}

@keyframes pageHeroTextIn {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.page-hero .page-kicker,
.page-hero .page-title,
.page-hero .page-desc {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: pageHeroTextIn 820ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: opacity, transform;
}

.page-hero .page-kicker {
  animation-delay: 120ms;
}

.page-hero .page-title {
  animation-delay: 240ms;
}

.page-hero .page-desc {
  animation-delay: 360ms;
}

.page-kicker,
.section-eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: var(--font-en);
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-title {
  max-width: 980px;
  margin: 0;
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 1.18;
  letter-spacing: 0;
}

.page-desc {
  max-width: 620px;
  margin: 32px 0 0;
  color: var(--text-secondary);
  font-size: clamp(16px, 1.45vw, 20px);
}

.page-main {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding: clamp(96px, 10vw, 160px) 0;
}

body:not([data-page="about"]) .page-main {
  margin-top: clamp(-48px, -3vw, -24px);
  padding-top: clamp(44px, 5vw, 82px);
}

.page-main:has(#caseDetail) {
  width: min(calc(100% - clamp(48px, 6vw, 96px)), 1480px);
}

#caseDetailHero {
  --case-page-gutter: max(calc(clamp(48px, 6vw, 96px) / 2), calc((100vw - 1480px) / 2));
  padding-left: var(--case-page-gutter);
  padding-right: var(--case-page-gutter);
}

.page-section {
  margin: 0 0 clamp(110px, 12vw, 180px);
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity .72s ease,
    transform .8s cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--hero-reveal-delay, 0ms) + var(--section-reveal-delay, 0ms));
  will-change: transform, opacity;
}

.page-section:last-child {
  margin-bottom: 0;
}

.page-section.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(42px, 5vw, 72px);
}

.section-heading.compact {
  margin-bottom: 20px;
}

.case-list-section .section-heading.compact {
  margin-bottom: clamp(48px, 5vw, 76px);
}

.case-list-section .section-heading h2 {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
}

.section-heading h2,
.page-cta h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.15;
  letter-spacing: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: start;
}

.split-section .section-heading {
  margin-bottom: 0;
}

.split-copy {
  padding-top: 44px;
  color: var(--text-secondary);
  font-size: clamp(16px, 1.3vw, 19px);
}

.split-copy p {
  margin: 0 0 18px;
}

.split-section--with-logos {
  grid-template-columns: minmax(420px, 1.05fr) minmax(460px, 1fr);
  row-gap: clamp(12px, 1.8vw, 22px);
  column-gap: clamp(38px, 5vw, 76px);
}

.split-section--with-logos .section-heading {
  grid-column: 1;
  grid-row: 1;
}

.split-section--with-logos .split-copy {
  grid-column: 1 / -1;
  grid-row: 3;
  width: min(50%, 780px);
  max-width: none;
  justify-self: end;
  padding-top: 0;
}

.split-logo-marquee {
  --logo-gap: clamp(8px, 1.6vw, 24px);
  --logo-scroll-duration: 46s;
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100vw;
  max-width: 100vw;
  min-height: clamp(112px, 11vw, 148px);
  display: flex;
  align-items: center;
  margin: clamp(22px, 3vw, 38px) calc(50% - 50vw) 0;
  overflow: hidden;
  padding: clamp(18px, 2.2vw, 28px) 0;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.client-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: clientLogoScroll var(--logo-scroll-duration) linear infinite;
  will-change: transform;
}

.client-logo-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: var(--logo-gap);
  padding-right: var(--logo-gap);
}

.split-logo-marquee:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo-item {
  --logo-item-height: clamp(88px, 7.4vw, 114px);
  flex: 0 0 clamp(154px, 13vw, 212px);
  height: var(--logo-item-height);
  display: grid;
  place-items: center;
}

.client-logo-item img {
  display: block;
  width: 100%;
  height: var(--logo-item-height);
  max-height: var(--logo-item-height);
  object-fit: contain;
  opacity: .82;
  filter: saturate(.96) brightness(1.05);
  transition: opacity .22s ease, filter .22s ease, transform .22s ease;
}

.client-logo-item:hover img {
  opacity: 1;
  filter: saturate(1.08) brightness(1.12);
  transform: scale(1.03);
}

@keyframes clientLogoScroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (min-width: 1440px) {
  .split-logo-marquee {
    margin-top: clamp(68px, 6.6vw, 104px);
  }
}

.module-grid {
  display: grid;
  gap: clamp(22px, 2.4vw, 34px);
}

.module-grid.columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.module-grid.columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.module-grid.columns-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.module-card,
.matrix-row,
.step-item,
.case-list-card,
.contact-form {
  --page-card-cut: 22px;
  border: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  clip-path: polygon(0 0, calc(100% - var(--page-card-cut)) 0, 100% var(--page-card-cut), 100% calc(100% - var(--page-card-cut)), calc(100% - var(--page-card-cut)) 100%, 0 100%);
  box-shadow:
    inset 0 0 30px rgba(91, 189, 255, .08);
}

.module-card {
  min-height: 280px;
  padding: clamp(28px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .36s cubic-bezier(.22, 1, .36, 1), border-color .28s ease, background .28s ease;
}

.module-card::after,
.step-item::after,
.matrix-row::after,
.case-list-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(91, 189, 255, .18), transparent 54%);
  transition: opacity .32s ease;
}

.module-card:hover,
.step-item:hover,
.matrix-row:hover,
.case-list-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(91, 189, 255, .1), rgba(255, 255, 255, .025));
  box-shadow:
    inset 0 0 34px rgba(91, 189, 255, .18),
    0 20px 54px rgba(0, 0, 0, .18);
}

.module-card:hover::after,
.step-item:hover::after,
.matrix-row:hover::after,
.case-list-card:hover::after {
  opacity: 1;
}

.module-card h3,
.step-item h3,
.case-list-body h3 {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.25;
  letter-spacing: 0;
}

.module-card p,
.step-item p,
.matrix-row p {
  margin: 16px 0 0;
  color: var(--text-secondary);
}

.module-card span {
  display: block;
  margin-top: 22px;
  color: var(--accent);
  font-size: 13px;
}

.service-system-grid {
  align-items: stretch;
}

.module-card--service-system {
  justify-content: flex-start;
}

.service-system-card-icon {
  width: clamp(72px, 6.8vw, 108px);
  height: clamp(72px, 6.8vw, 108px);
  margin: 0 0 clamp(22px, 2.4vw, 34px);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.service-system-card-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: .9;
  filter: saturate(1.04) brightness(1.06);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1), filter .28s ease;
}

.module-card--service-system:hover .service-system-card-icon img {
  transform: translate3d(0, -2px, 0) scale(1.035);
  filter: saturate(1.1) brightness(1.12);
}

.module-card--service-system span {
  margin-top: auto;
  padding-top: 22px;
}

.about-wide-visual-section {
  --about-intro-visual-width: 100%;
  --about-intro-reveal-inset: calc(50% - 72px) calc(50% - 72px) calc(50% - 72px) calc(50% - 72px);
  --about-intro-reveal-scale: .78;
  --about-intro-reveal-shift: 54px;
  --about-intro-reveal-opacity: 0;
  --about-intro-reveal-filter: brightness(.72) saturate(.86);
  margin-top: clamp(-22px, -1.8vw, -8px);
}

body[data-page="about"] .page-main {
  padding-top: 0;
}

body[data-page="about"] .about-wide-visual-section {
  min-height: 100vh;
  margin-top: 0;
  display: grid;
  align-content: center;
  padding-top: 64px;
  box-sizing: border-box;
}

body[data-page="about"] .about-intro-row {
  align-self: start;
}

.about-wide-visual {
  width: var(--about-intro-visual-width);
  max-width: min(100%, calc((100vh - 128px) * 16 / 9));
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  background: rgba(255, 255, 255, .045);
  opacity: var(--about-intro-reveal-opacity);
  clip-path: inset(var(--about-intro-reveal-inset));
  transform: translateY(var(--about-intro-reveal-shift)) scale(var(--about-intro-reveal-scale));
  filter: var(--about-intro-reveal-filter);
  will-change: clip-path, opacity, transform, filter;
}

.page-section.is-visible .about-wide-visual {
  opacity: var(--about-intro-reveal-opacity);
  clip-path: inset(var(--about-intro-reveal-inset));
  transform: translateY(var(--about-intro-reveal-shift)) scale(var(--about-intro-reveal-scale));
  filter: var(--about-intro-reveal-filter);
}

.about-wide-visual.is-empty {
  min-height: clamp(180px, 24vw, 300px);
  background:
    linear-gradient(135deg, rgba(91, 189, 255, .12), rgba(255, 255, 255, .025)),
    #02060b;
}

.about-intro-row {
  width: var(--about-intro-visual-width);
  max-width: min(100%, calc((100vh - 128px) * 16 / 9));
  margin: clamp(28px, 3.4vw, 48px) auto 0;
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(360px, 1.25fr);
  gap: clamp(32px, 6vw, 120px);
  align-items: start;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity .38s cubic-bezier(.16, 1, .3, 1),
    transform .46s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}

.about-wide-visual-section.is-intro-copy-visible .about-intro-row {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.about-intro-row h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 800;
}

.about-intro-desc {
  width: 100%;
  max-width: 660px;
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.8;
}

.about-wide-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  image-rendering: auto;
  backface-visibility: hidden;
}

.about-capability-section {
  position: relative;
  overflow: visible;
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.about-capability-section .section-heading {
  margin-bottom: clamp(34px, 4vw, 54px);
}

.about-capability-scroller {
  --about-capability-edge: max(24px, calc((100vw - 1240px) / 2));
  --about-capability-progress-duration: 4200ms;
  --about-capability-row-x: 0px;
  --about-capability-drag-x: 0px;
  width: 100vw;
  overflow: visible;
  scrollbar-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overscroll-behavior-x: contain;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.about-capability-scroller.is-dragging {
  cursor: grabbing;
}

.about-capability-scroller::-webkit-scrollbar {
  display: none;
}

.about-capability-track {
  display: flex;
  gap: clamp(22px, 2.6vw, 38px);
  width: max-content;
  padding: 0 calc(var(--about-capability-edge) + min(48vw, 560px)) 8px var(--about-capability-edge);
  transform: translate3d(calc(var(--about-capability-row-x) + var(--about-capability-drag-x)), 0, 0);
  transition: transform .72s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.about-capability-scroller.is-dragging .about-capability-track {
  transition: none;
}

.about-capability-scroller.is-preparing .about-capability-track {
  transition: none;
}

.about-capability-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: min(420px, calc(100% - 48px));
  height: 12px;
  margin: 24px 0 0;
}

.about-capability-dot {
  position: relative;
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  appearance: none;
  background: rgba(255, 255, 255, .26);
  overflow: hidden;
  cursor: pointer;
  transition: width .24s ease, background .2s ease;
}

.about-capability-dot span {
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--accent);
}

.about-capability-dot.is-active {
  width: 46px;
  background: rgba(255, 255, 255, .18);
}

.about-capability-dot.is-active span {
  animation: aboutCapabilityProgress var(--about-capability-progress-duration, 4200ms) linear forwards;
}

@keyframes aboutCapabilityProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.about-capability-card {
  flex: 0 0 clamp(390px, 37vw, 520px);
  min-height: clamp(410px, 36vw, 500px);
  padding: 0;
  justify-content: flex-start;
  scroll-snap-align: start;
}

.about-capability-card:hover {
  transform: translateY(-6px);
}

.about-capability-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(91, 189, 255, .14), rgba(255, 255, 255, .025)),
    #02060b;
}

.about-capability-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: .94;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), opacity .26s ease;
}

.about-capability-card:hover .about-capability-image img {
  transform: scale(1.04);
  opacity: 1;
}

.about-capability-body {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 2.7vw, 38px);
}

.about-capability-body p {
  margin-top: clamp(34px, 4vw, 64px);
}

.team-tree-section {
  position: relative;
}

.team-tree-section .section-heading {
  margin-bottom: clamp(34px, 4vw, 58px);
}

.team-tree {
  --team-tree-line: rgba(91, 189, 255, .34);
  --team-tree-line-soft: rgba(91, 189, 255, .14);
  --team-node-cut: 24px;
  position: relative;
  display: grid;
  gap: 0;
}

.team-tree-root {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  min-height: 172px;
  margin: 0 auto;
  padding: clamp(28px, 3vw, 42px);
  display: grid;
  align-content: center;
  gap: 12px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 189, 255, .22), transparent 62%),
    linear-gradient(180deg, rgba(91, 189, 255, .1), rgba(255, 255, 255, .025));
  clip-path: polygon(0 0, calc(100% - var(--team-node-cut)) 0, 100% var(--team-node-cut), 100% calc(100% - var(--team-node-cut)), calc(100% - var(--team-node-cut)) 100%, 0 100%);
  box-shadow:
    inset 0 0 34px rgba(91, 189, 255, .14),
    0 22px 68px rgba(0, 0, 0, .22);
}

.team-tree-root::before,
.team-tree-node::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(91, 189, 255, .22), transparent 22%, transparent 78%, rgba(91, 189, 255, .1)),
    linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 42%);
  opacity: .7;
}

.team-tree-root::before {
  opacity: .56;
}

.team-tree-root span {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.team-tree-root strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

.team-tree-root p {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
}

.team-tree-branches {
  position: relative;
  width: min(100%, 1040px);
  height: clamp(76px, 7vw, 112px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(var(--team-count, 4), minmax(0, 1fr));
}

.team-tree-branches::before,
.team-tree-branches::after,
.team-tree-branches span::before {
  content: '';
  position: absolute;
  pointer-events: none;
  background: linear-gradient(90deg, var(--team-tree-line-soft), var(--team-tree-line), var(--team-tree-line-soft));
  box-shadow: 0 0 18px rgba(91, 189, 255, .16);
}

.team-tree-branches::before {
  left: 50%;
  top: 0;
  width: 2px;
  height: 50%;
  transform: translateX(-50%);
}

.team-tree-branches::after {
  left: calc(100% / var(--team-count, 4) / 2);
  right: calc(100% / var(--team-count, 4) / 2);
  top: 50%;
  height: 2px;
}

.team-tree-branches span {
  position: relative;
}

.team-tree-branches span::before {
  left: 50%;
  top: 50%;
  width: 2px;
  height: 50%;
  transform: translateX(-50%);
}

.team-tree-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}

.team-tree-node {
  position: relative;
  min-height: 520px;
  padding: clamp(24px, 2.2vw, 32px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02));
  clip-path: polygon(0 0, calc(100% - var(--team-node-cut)) 0, 100% var(--team-node-cut), 100% calc(100% - var(--team-node-cut)), calc(100% - var(--team-node-cut)) 100%, 0 100%);
  box-shadow: inset 0 0 30px rgba(91, 189, 255, .08);
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity .58s ease,
    transform .72s cubic-bezier(.18, .86, .24, 1),
    background .28s ease,
    box-shadow .28s ease;
  transition-delay: var(--team-node-delay, 0ms);
}

.page-section.is-visible .team-tree-node {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.team-tree-node:nth-child(1) {
  --team-node-delay: 80ms;
}

.team-tree-node:nth-child(2) {
  --team-node-delay: 180ms;
}

.team-tree-node:nth-child(3) {
  --team-node-delay: 280ms;
}

.team-tree-node:nth-child(4) {
  --team-node-delay: 380ms;
}

.page-section.is-visible .team-tree-node:hover {
  transition-delay: 0ms;
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(91, 189, 255, .1), rgba(255, 255, 255, .025));
  box-shadow:
    inset 0 0 34px rgba(91, 189, 255, .18),
    0 20px 54px rgba(0, 0, 0, .18);
}

.team-tree-node-head,
.team-tree-node p,
.team-tree-services,
.team-tree-node ul {
  position: relative;
  z-index: 1;
}

.team-tree-node-head {
  display: grid;
  align-content: start;
  gap: 16px;
}

.team-tree-node-head span {
  width: auto;
  height: auto;
  display: inline;
  color: var(--accent);
  font-family: var(--font-en);
  font-size: 13px;
  line-height: 1;
  background: transparent;
  box-shadow: none;
}

.team-tree-node h3 {
  margin: 0;
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.18;
  letter-spacing: 0;
}

.team-tree-node p {
  margin: 20px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.72;
}

.team-tree-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: clamp(22px, 2.4vw, 30px);
}

.team-tree-service {
  display: grid;
  gap: 6px;
  padding: 12px 0 12px 14px;
  border-left: 1px solid rgba(91, 189, 255, .36);
  background: linear-gradient(90deg, rgba(91, 189, 255, .065), transparent 78%);
}

.team-tree-service b {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.team-tree-service span {
  width: 100%;
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.55;
}

.team-tree-node ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: clamp(26px, 3vw, 42px) 0 0;
  list-style: none;
}

.team-tree-node li {
  min-height: 30px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  line-height: 1.35;
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .07);
}

@media (max-width: 1080px) {
  .team-tree {
    gap: clamp(24px, 4vw, 40px);
  }

  .team-tree-branches {
    display: none;
  }

  .team-tree-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-tree-node {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .team-tree-node p,
  .team-tree-services,
  .team-tree-node ul {
    grid-column: 1;
  }

  .team-tree-services {
    grid-template-columns: 1fr;
  }
}

.service-matrix {
  display: grid;
  gap: 12px;
}

.matrix-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(240px, 0.9fr) minmax(320px, 1.4fr);
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  overflow: hidden;
  transition: transform .36s cubic-bezier(.22, 1, .36, 1), border-color .28s ease, background .28s ease;
}

.matrix-row.has-image {
  grid-template-columns: minmax(150px, .7fr) minmax(190px, .75fr) minmax(260px, 1fr) minmax(210px, .86fr);
  min-height: 128px;
  padding: 26px 0 26px 32px;
}

.matrix-row strong,
.matrix-row b,
.matrix-row p {
  position: relative;
  z-index: 1;
}

.matrix-row strong {
  color: #fff;
  font-size: 17px;
}

.matrix-row b {
  color: var(--accent);
  font-weight: 700;
}

.matrix-row p {
  margin: 0;
}

.matrix-row-image {
  align-self: stretch;
  justify-self: stretch;
  position: relative;
  z-index: 0;
  min-height: 112px;
  margin: -26px 0 -26px;
  overflow: hidden;
}

.matrix-row-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  opacity: .9;
  filter: saturate(1.02) contrast(1.04);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
}

.matrix-row.has-image:hover .matrix-row-image img {
  transform: scale(1.04);
  opacity: 1;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.step-item {
  min-height: 220px;
  padding: 34px;
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
}

.step-item > span {
  color: var(--accent);
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
}

.workflow-timeline-section {
  position: relative;
  isolation: isolate;
}

.workflow-timeline-section .section-heading {
  margin-bottom: clamp(50px, 6vw, 86px);
}

.workflow-timeline {
  --workflow-gap: clamp(84px, 10vw, 156px);
  --workflow-progress: 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--workflow-gap) minmax(0, 1fr);
  column-gap: 0;
  row-gap: clamp(10px, 1.6vw, 22px);
  padding: clamp(14px, 2vw, 26px) 0 clamp(28px, 4vw, 54px);
}

.workflow-timeline::before,
.workflow-timeline::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 0;
  width: 2px;
  transform: translateX(-50%);
  pointer-events: none;
}

.workflow-timeline::before {
  bottom: 0;
  background: linear-gradient(180deg, rgba(193, 235, 255, .16), rgba(96, 189, 243, .34) 18%, rgba(96, 189, 243, .34) 82%, rgba(193, 235, 255, .16));
  box-shadow: 0 0 16px rgba(96, 189, 243, .14);
}

.workflow-timeline::after {
  height: calc(var(--workflow-progress) * 100%);
  background: linear-gradient(180deg, rgba(210, 244, 255, .95), rgba(96, 189, 243, .96) 54%, rgba(20, 128, 206, .82));
  box-shadow:
    0 0 14px rgba(96, 189, 243, .56),
    0 0 34px rgba(36, 153, 229, .26);
  transition: height 160ms linear;
}

.workflow-step {
  --workflow-card-cut: clamp(20px, 2.3vw, 34px);
  min-height: clamp(178px, 16.2vw, 236px);
  z-index: 1;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  clip-path: polygon(0 0, calc(100% - var(--workflow-card-cut)) 0, 100% var(--workflow-card-cut), 100% calc(100% - var(--workflow-card-cut)), calc(100% - var(--workflow-card-cut)) 100%, 0 100%);
  background:
    radial-gradient(circle at 72% 82%, rgba(0, 119, 190, .32), transparent 38%),
    radial-gradient(circle at 50% 46%, rgba(0, 0, 0, .43), transparent 45%),
    linear-gradient(138deg, rgba(4, 86, 137, .82), rgba(0, 18, 34, .96) 54%, rgba(0, 76, 124, .76));
  box-shadow: none;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity .68s ease,
    transform .74s cubic-bezier(.16, 1, .3, 1),
    box-shadow .42s ease;
  transition-delay: calc(var(--workflow-step-index) * 30ms);
}

.workflow-step::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background:
    radial-gradient(circle at 88% 88%, rgba(184, 235, 255, .34), rgba(126, 211, 245, .26) 16%, rgba(0, 117, 190, .12) 35%, transparent 48%),
    radial-gradient(circle at 52% 48%, rgba(255, 255, 255, .11), transparent 34%),
    radial-gradient(circle at 91% 89%, rgba(170, 229, 255, .28), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(123, 211, 255, .14), transparent 46%),
    linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 34%);
  pointer-events: none;
  transition: opacity .68s cubic-bezier(.22, 1, .36, 1);
}

.workflow-step::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 3;
  clip-path: inherit;
  border: 1px solid rgba(120, 218, 255, .14);
  background: transparent;
  opacity: 1;
  pointer-events: none;
}

.workflow-step--left {
  grid-column: 1;
}

.workflow-step--right {
  grid-column: 3;
}

.workflow-step.is-timeline-visible {
  opacity: .72;
  transform: translate3d(0, 0, 0);
}

.workflow-step.is-active {
  opacity: 1;
  box-shadow:
    inset 0 0 28px rgba(91, 189, 255, .12),
    0 18px 60px rgba(23, 125, 190, .16);
}

.workflow-step.is-active::before,
.workflow-step:hover::before {
  opacity: .82;
}

.workflow-step:hover {
  background:
    radial-gradient(circle at 72% 82%, rgba(0, 119, 190, .32), transparent 38%),
    radial-gradient(circle at 50% 46%, rgba(0, 0, 0, .43), transparent 45%),
    linear-gradient(138deg, rgba(4, 86, 137, .82), rgba(0, 18, 34, .96) 54%, rgba(0, 76, 124, .76));
  transform: translate3d(0, -6px, 0);
}

.workflow-step-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) clamp(88px, 8.4vw, 112px);
  grid-template-areas:
    "copy icon";
  column-gap: clamp(44px, 5vw, 72px);
  align-items: center;
  justify-items: stretch;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: clamp(22px, 2.5vw, 34px) clamp(32px, 3.4vw, 50px);
  text-align: left;
}

.workflow-step-content.has-visual {
  grid-template-columns: minmax(0, .92fr) minmax(170px, 1.08fr);
  column-gap: clamp(24px, 3.2vw, 46px);
}

.workflow-step--right .workflow-step-content {
  grid-template-columns: clamp(88px, 8.4vw, 112px) minmax(0, 1.18fr);
  grid-template-areas:
    "icon copy";
  text-align: left;
}

.workflow-step--right .workflow-step-content.has-visual {
  grid-template-columns: minmax(170px, 1.08fr) minmax(0, .92fr);
}

.workflow-step-copy {
  grid-area: copy;
  display: grid;
  gap: 18px;
  align-content: center;
  justify-items: start;
}

.workflow-step--right .workflow-step-copy {
  justify-items: start;
}

.workflow-step-content h3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
  color: #8b9aa5;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  transition: color .3s cubic-bezier(.4, 0, .2, 1);
}

.workflow-step--right .workflow-step-content h3 {
  justify-content: flex-start;
}

.workflow-step-content h3 span {
  color: #7f919e;
  font-family: var(--font-en);
  transition: color .3s cubic-bezier(.4, 0, .2, 1);
}

.workflow-step-icon {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: clamp(76px, 7.4vw, 100px);
  height: clamp(76px, 7.4vw, 100px);
  margin: 0;
  justify-self: center;
}

.workflow-step-icon img {
  display: block;
  width: clamp(72px, 7vw, 94px);
  height: clamp(72px, 7vw, 94px);
  object-fit: contain;
  user-select: none;
}

.workflow-step-visual {
  grid-area: icon;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: rgba(0, 6, 14, .42);
  box-shadow:
    inset 0 0 0 1px rgba(151, 225, 255, .14),
    0 18px 44px rgba(0, 0, 0, .2);
}

.workflow-step-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
  transition:
    transform .44s cubic-bezier(.22, 1, .36, 1),
    filter .28s ease;
}

.workflow-step:hover .workflow-step-visual img,
.workflow-step.is-active .workflow-step-visual img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.08) brightness(1.06);
}

.workflow-step-content p {
  width: min(100%, 390px);
  min-height: 0;
  margin: 0;
  color: #74818a;
  font-size: clamp(12.5px, 1.15vw, 14px);
  line-height: 1.48;
  justify-self: start;
  transition: color .3s cubic-bezier(.4, 0, .2, 1);
}

.workflow-step--right .workflow-step-content p {
  justify-self: start;
}

.workflow-step.is-active .workflow-step-content h3,
.workflow-step.is-active .workflow-step-content h3 span,
.workflow-step:hover .workflow-step-content h3,
.workflow-step:hover .workflow-step-content h3 span {
  color: #fff;
}

.workflow-step.is-active .workflow-step-content p,
.workflow-step:hover .workflow-step-content p {
  color: #eefaff;
}

.workflow-step-marker {
  content: "";
  position: relative;
  grid-column: 2;
  align-self: center;
  justify-self: center;
  z-index: 3;
  width: 22px;
  height: 22px;
  border: 3px solid #60bdf3;
  border-radius: 50%;
  background: #031321;
  box-shadow:
    0 0 0 1px rgba(96, 189, 243, .42),
    0 0 12px rgba(96, 189, 243, .42);
  opacity: .64;
  transform: scale(.78);
  transition: transform .48s cubic-bezier(.16, 1, .3, 1), opacity .32s ease, box-shadow .32s ease;
}

.workflow-step-marker::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, .78);
  transform: translate(-50%, -50%);
}

.workflow-step.is-active + .workflow-step-marker,
.workflow-step:hover + .workflow-step-marker {
  opacity: 1;
  transform: scale(1);
  box-shadow:
    0 0 0 1px rgba(96, 189, 243, .54),
    0 0 18px rgba(96, 189, 243, .68);
}

.workflow-step-marker::before {
  content: "";
  position: absolute;
  top: 50%;
  width: calc((var(--workflow-gap) / 2) - 24px);
  height: 1px;
  background: linear-gradient(90deg, rgba(96, 189, 243, 0), rgba(96, 189, 243, .68));
  opacity: .42;
  transform: translateY(-50%);
  transition: opacity .32s ease;
}

.workflow-step-marker--left::before {
  right: calc(50% + 14px);
}

.workflow-step-marker--right::before {
  left: calc(50% + 14px);
  transform: translateY(-50%) rotate(180deg);
}

.workflow-step.is-active + .workflow-step-marker::before,
.workflow-step:hover + .workflow-step-marker::before {
  opacity: .9;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.case-list-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.7;
}

.case-list-card {
  min-height: 420px;
  display: grid;
  grid-template-rows: minmax(180px, 1fr) auto;
  overflow: hidden;
  position: relative;
  transition:
    opacity .62s ease,
    transform .7s cubic-bezier(.22, 1, .36, 1),
    border-color .28s ease;
}

.case-list-card.has-card-reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

.case-list-card.has-card-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.case-list-card.has-card-reveal.is-visible:hover {
  transform: translateY(-8px);
}

.case-list-card[hidden] {
  display: none;
}

.case-list-media {
  min-height: 260px;
  background-size: cover;
  background-position: center;
  transition: transform .65s cubic-bezier(.22, 1, .36, 1), filter .4s ease;
}

.case-list-card:hover .case-list-media {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.case-list-body {
  padding: clamp(30px, 3vw, 40px) 24px clamp(34px, 3.4vw, 44px);
}

.case-list-body p {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.contact-panel .section-heading {
  margin-bottom: 0;
  max-width: 780px;
}

@media (min-width: 1081px) {
  body[data-page="contact"] .page-main .section-heading h2 {
    font-size: clamp(24px, 2.35vw, 36px);
    line-height: 1.18;
  }
}

.contact-form {
  position: relative;
  width: 100%;
  padding: clamp(30px, 4vw, 48px);
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  justify-self: stretch;
  background:
    linear-gradient(105deg, rgba(3, 18, 40, .96) 0%, rgba(10, 43, 82, .86) 62%, rgba(35, 104, 154, .52) 100%);
  box-shadow:
    inset 0 0 46px rgba(91, 189, 255, .2),
    0 28px 80px rgba(0,0,0,.24);
  transform-origin: center center;
  transition:
    transform .34s cubic-bezier(.2, .8, .2, 1),
    filter .34s ease,
    opacity .34s ease,
    box-shadow .34s ease;
}

.contact-form-clear {
  position: absolute;
  top: clamp(16px, 2vw, 24px);
  right: clamp(18px, 2.4vw, 30px);
  z-index: 3;
  border: 0;
  padding: 6px 0;
  background: transparent;
  color: rgba(221, 244, 255, .62);
  font: inherit;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .04em;
  cursor: pointer;
  transition:
    color .2s ease,
    opacity .2s ease,
    transform .2s ease;
}

.contact-form-clear:hover,
.contact-form-clear:focus-visible {
  color: rgba(255, 255, 255, .92);
  outline: none;
  transform: translateY(-1px);
}

.contact-form-clear:active {
  opacity: .68;
  transform: translateY(0);
}

.contact-submit-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .08em;
  color: #fff;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .08em;
  text-align: center;
  text-shadow:
    0 0 22px rgba(91, 189, 255, .7),
    0 10px 36px rgba(0, 0, 0, .72);
  opacity: 0;
  transform: scale(1.18);
  transition:
    opacity .24s ease,
    transform .34s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}

.contact-submit-overlay small {
  display: block;
  margin-top: 12px;
  color: rgba(221, 244, 255, .82);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 400;
  letter-spacing: 0;
}

.contact-submit-overlay span {
  display: inline-block;
  animation: contactSubmitCharBlink 1.08s ease-in-out infinite;
  animation-delay: calc(var(--char-index, 0) * .18s);
}

.contact-submit-overlay.is-status-entering {
  animation: contactSubmitStatusEnter .46s cubic-bezier(.22, 1, .36, 1) both;
}

.contact-submit-overlay.is-status-leaving {
  animation: contactSubmitStatusExit .34s ease both;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(0, 0, 0, .58);
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}

.contact-form.is-submit-active {
  transform: scale(.8);
  box-shadow:
    inset 0 0 34px rgba(91, 189, 255, .08),
    0 18px 58px rgba(0,0,0,.32);
  pointer-events: none;
}

.contact-form.is-submit-active::before {
  opacity: 1;
}

.contact-form.is-submit-active .contact-submit-overlay,
.contact-form.is-submit-failure .contact-submit-overlay,
.contact-form.is-submit-notice .contact-submit-overlay {
  opacity: 1;
  transform: scale(1.25);
}

.contact-form.is-submit-success {
  box-shadow:
    inset 0 0 42px rgba(46, 218, 178, .12),
    0 18px 58px rgba(0,0,0,.3);
}

.contact-form.is-submit-failure {
  box-shadow:
    inset 0 0 42px rgba(255, 116, 116, .1),
    0 18px 58px rgba(0,0,0,.26);
}

.contact-form.is-submit-notice {
  box-shadow:
    inset 0 0 42px rgba(91, 189, 255, .1),
    0 18px 58px rgba(0,0,0,.26);
}

.contact-form label,
.contact-project-box,
.contact-required-note,
.contact-submit-button,
.contact-form-clear {
  transition:
    opacity .17s ease-out,
    transform .17s cubic-bezier(.16, 1, .3, 1),
    filter .17s ease-out;
}

.contact-form.is-clearing label,
.contact-form.is-clearing .contact-project-box,
.contact-form.is-clearing .contact-required-note,
.contact-form.is-clearing .contact-submit-button {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(-6px);
}

.contact-form.is-clearing .contact-form-clear {
  opacity: .35;
  pointer-events: none;
}

.contact-form.is-clear-restoring label,
.contact-form.is-clear-restoring .contact-project-box,
.contact-form.is-clear-restoring .contact-required-note,
.contact-form.is-clear-restoring .contact-submit-button {
  animation: contactClearContentIn .46s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes contactSubmitCharBlink {
  0%, 100% {
    opacity: .42;
    transform: translateY(0);
    filter: brightness(.9);
  }

  38%, 62% {
    opacity: 1;
    transform: translateY(-1px);
    filter: brightness(1.28);
  }
}

@keyframes contactSubmitStatusEnter {
  from {
    opacity: 0;
    transform: scale(1.08) translateY(8px);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: scale(1.25) translateY(0);
    filter: blur(0);
  }
}

@keyframes contactSubmitStatusExit {
  from {
    opacity: 1;
    transform: scale(1.25) translateY(0);
    filter: blur(0);
  }

  to {
    opacity: 0;
    transform: scale(1.16) translateY(-6px);
    filter: blur(5px);
  }
}

@keyframes contactClearContentIn {
  from {
    opacity: 0;
    transform: translateY(7px);
    filter: blur(5px);
  }

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto auto auto auto;
  grid-template-areas:
    "projectType projectType company company"
    "budget timeline name role"
    "projectStack projectStack phone email"
    "projectStack projectStack submit submit";
  gap: clamp(14px, 1.6vw, 22px) clamp(22px, 3vw, 44px);
  align-items: start;
}

.contact-message-label {
  grid-column: auto;
}

.contact-wide-label,
.contact-upload-label {
  grid-column: auto;
}

.contact-company { grid-area: company; }
.contact-name { grid-area: name; }
.contact-role { grid-area: role; }
.contact-phone { grid-area: phone; }
.contact-email { grid-area: email; }
.contact-project-type { grid-area: projectType; }
.contact-project-stack { grid-area: projectStack; }
.contact-budget { grid-area: budget; }
.contact-timeline { grid-area: timeline; }
.contact-submit-button { grid-area: submit; }

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

.contact-label-text {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  width: max-content;
  max-width: 100%;
}

.required-mark {
  color: #ff6f8f;
  font-weight: 800;
  line-height: 1;
}

.contact-required-note {
  margin: -15px 0 0;
  color: rgba(185, 228, 255, .48);
  font-size: 12px;
  line-height: 1.45;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  --field-cut: 12px;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: rgba(0, 5, 12, .68);
  color: #fff;
  padding: 12px 14px;
  outline: none;
  clip-path: none;
  box-shadow: inset 0 0 18px rgba(91, 189, 255, .1);
  transition:
    background .2s ease,
    box-shadow .22s ease,
    filter .2s ease;
}

.contact-form select option {
  color: #111;
}

.contact-form .cta-select {
  position: relative;
  min-width: 0;
  text-align: left;
}

.contact-form .cta-select.open,
.contact-form .cta-select.is-closing {
  z-index: 60;
}

.contact-form .cta-select-button {
  --cta-cut: 12px;
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-radius: 0;
  padding: 0 16px;
  color: #fff;
  background: rgba(0, 5, 12, .68);
  clip-path: none;
  box-shadow: inset 0 0 18px rgba(91, 189, 255, .1);
  cursor: pointer;
  outline: none;
  transition:
    background .2s ease,
    box-shadow .22s ease,
    filter .2s ease;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover,
.contact-form .cta-select-button:hover,
.contact-project-box:hover,
.contact-form .contact-upload-control:hover,
.diagnosis-upload-box:hover {
  background: rgba(0, 10, 22, .78);
  box-shadow:
    inset 0 0 22px rgba(91, 189, 255, .18),
    0 0 0 1px rgba(126, 214, 255, .22),
    0 0 20px rgba(91, 189, 255, .08);
  filter: brightness(1.04);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.contact-form .cta-select.open .cta-select-button,
.contact-form .cta-select-button:focus-visible {
  background: rgba(0, 12, 26, .84);
  box-shadow:
    inset 0 0 24px rgba(91, 189, 255, .22),
    0 0 0 1px rgba(151, 225, 255, .42),
    0 0 24px rgba(91, 189, 255, .16);
}

.contact-form .cta-select-button::after {
  content: '';
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #b9e4ff;
  transition: transform .24s ease;
}

.contact-form .cta-select.open .cta-select-button::after {
  transform: rotate(180deg);
}

.contact-form .cta-select-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 80;
  display: none;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  color: rgba(232, 247, 255, .9);
  background: linear-gradient(180deg, rgba(4, 31, 56, .98), rgba(1, 14, 28, .98));
  border: 0;
  box-shadow:
    0 24px 46px rgba(0, 0, 0, .68),
    0 8px 22px rgba(0, 0, 0, .42),
    0 4px 16px rgba(91, 189, 255, .18),
    inset 0 0 18px rgba(91, 189, 255, .08);
  opacity: 0;
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
  transform: translateY(-6px);
  transform-origin: top center;
}

.contact-form .cta-select.open .cta-select-menu,
.contact-form .cta-select.is-closing .cta-select-menu {
  display: grid;
  gap: 0;
}

.contact-form .cta-select.open .cta-select-menu {
  animation: ctaMenuOpen .3s cubic-bezier(.22, 1, .36, 1) forwards;
}

.contact-form .cta-select.is-closing .cta-select-menu {
  animation: ctaMenuClose .22s cubic-bezier(.55, 0, .3, 1) forwards;
}

.contact-form .cta-select-menu li {
  position: relative;
}

.contact-form .cta-select-menu li + li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 1px;
  background: rgba(159, 222, 255, .24);
}

.contact-form .cta-select-menu button {
  width: 100%;
  border: 0;
  padding: 9px 14px;
  color: rgba(232, 247, 255, .9);
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: clamp(12px, .86vw, 14px);
  line-height: 1.35;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}

.contact-form .cta-select-menu button:hover,
.contact-form .cta-select-menu button.is-selected {
  color: #7fd3ff;
  background: rgba(91, 189, 255, .1);
}

@keyframes ctaMenuOpen {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes ctaMenuClose {
  from {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(-6px);
  }
}

.contact-form textarea {
  min-height: clamp(190px, 18vw, 260px);
  resize: vertical;
}

.contact-project-box {
  --field-cut: 12px;
  min-height: 0;
  height: clamp(220px, 18vw, 240px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 14px;
  padding: 16px;
  background: rgba(0, 5, 12, .68);
  clip-path: none;
  box-shadow: inset 0 0 18px rgba(91, 189, 255, .1);
  transition:
    background .2s ease,
    box-shadow .22s ease,
    filter .2s ease;
}

.contact-project-stack {
  display: grid;
  gap: clamp(8px, 1vw, 12px);
}

.contact-project-box .contact-message-label {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.contact-project-box textarea {
  height: 100%;
  min-height: 0;
  padding: 0 16px 0 0;
  background: transparent;
  clip-path: none;
  box-shadow: none;
  resize: none;
  overflow: auto;
  scrollbar-gutter: stable;
  scrollbar-width: auto;
  scrollbar-color: rgba(91, 189, 255, .58) rgba(255, 255, 255, .06);
}

.contact-project-box textarea::-webkit-scrollbar {
  width: 10px;
}

.contact-project-box textarea::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .06);
}

.contact-project-box textarea::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(129, 218, 255, .72), rgba(60, 184, 255, .36));
  border-radius: 0;
}

.contact-project-box textarea::-webkit-scrollbar-thumb:hover {
  background: rgba(129, 218, 255, .82);
}

.contact-project-box textarea::-webkit-resizer {
  display: none;
}

.contact-form .contact-upload-control {
  width: min(100%, 300px);
  height: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  white-space: nowrap;
  padding: 10px 16px;
  background: rgba(255, 255, 255, .08);
  clip-path: none;
  box-shadow: inset 0 0 22px rgba(91, 189, 255, .1);
  cursor: pointer;
  transition:
    background .2s ease,
    box-shadow .22s ease,
    filter .2s ease;
}

.contact-upload-plus {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-1px);
}

.contact-upload-control input {
  display: none;
}

.contact-upload-note {
  color: rgba(185, 228, 255, .68);
  font-size: 12px;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-submit-button {
  align-self: end;
  min-width: 148px;
  gap: 14px;
}

.contact-form .contact-submit-button {
  justify-self: end;
}

.contact-submit-button::after {
  content: none;
}

.contact-submit-button:hover::after {
  transform: none;
}

.contact-submit-button:active {
  transform: translateY(1px) scale(.98);
}

.form-result {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.form-result:empty {
  display: block;
}

.contact-panel--diagnosis {
  grid-template-columns: minmax(0, 1080px);
  justify-content: center;
}

.contact-form--diagnosis {
  width: min(100%, 1080px);
  padding: clamp(36px, 5vw, 64px);
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 189, 255, .08), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .78));
  box-shadow:
    inset 0 0 0 1px rgba(91, 189, 255, .08),
    inset 0 0 60px rgba(91, 189, 255, .08),
    0 30px 90px rgba(0, 0, 0, .3);
}

.contact-form-header {
  margin-bottom: clamp(34px, 4.5vw, 54px);
  text-align: center;
}

.contact-form-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: .08em;
}

.contact-form-header p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.4;
}

.contact-form--diagnosis .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 48px;
}

.diagnosis-field {
  display: grid;
  grid-template-columns: minmax(116px, 146px) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.diagnosis-field--wide,
.diagnosis-field--textarea,
.diagnosis-upload-row {
  grid-column: 1 / -1;
}

.diagnosis-field--textarea {
  align-items: start;
}

.diagnosis-field-label {
  color: #fff;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  white-space: nowrap;
}

.contact-form--diagnosis input,
.contact-form--diagnosis textarea,
.contact-form--diagnosis select,
.contact-form--diagnosis .cta-select-button {
  --field-cut: 14px;
  min-height: 64px;
  border: 2px solid rgba(151, 225, 255, .95);
  background: rgba(0, 0, 0, .58);
  color: #fff;
  padding: 14px 18px;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.2;
  clip-path: polygon(0 0, calc(100% - var(--field-cut)) 0, 100% var(--field-cut), 100% calc(100% - var(--field-cut)), calc(100% - var(--field-cut)) 100%, 0 100%);
  box-shadow:
    inset 0 0 24px rgba(91, 189, 255, .08),
    0 0 16px rgba(91, 189, 255, .1);
}

.contact-form--diagnosis input::placeholder,
.contact-form--diagnosis textarea::placeholder {
  color: rgba(255, 255, 255, .42);
}

.diagnosis-select {
  position: relative;
  display: block;
  min-width: 0;
}

.diagnosis-select select {
  appearance: none;
  padding-right: 58px;
}

.diagnosis-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  z-index: 2;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 16px solid #c6edff;
  transform: translateY(-40%);
  pointer-events: none;
}

.contact-form--diagnosis .cta-select-button {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
}

.contact-form--diagnosis .cta-select-button::after {
  display: none;
}

.contact-form--diagnosis textarea {
  min-height: clamp(190px, 18vw, 260px);
}

.contact-form--diagnosis .contact-required-note {
  grid-column: 1 / -1;
  margin: -10px 0 -4px min(164px, 16vw);
  color: rgba(255, 255, 255, .48);
  font-size: clamp(12px, 1.1vw, 15px);
  line-height: 1.75;
}

.diagnosis-upload-row {
  display: grid;
  grid-template-columns: minmax(116px, 146px) minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  margin-top: 8px;
}

.diagnosis-upload-box {
  width: clamp(150px, 17vw, 210px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid rgba(151, 225, 255, .95);
  background: rgba(0, 0, 0, .2);
  color: #fff;
  cursor: pointer;
  box-shadow: inset 0 0 24px rgba(91, 189, 255, .08);
  transition:
    background .2s ease,
    box-shadow .22s ease,
    filter .2s ease;
}

.diagnosis-upload-box span {
  font-size: clamp(48px, 6vw, 70px);
  line-height: 1;
  font-weight: 300;
}

.diagnosis-upload-box input {
  display: none;
}

.contact-form--diagnosis .page-button {
  justify-self: end;
  margin-top: 12px;
  min-width: 180px;
}

.contact-process-section {
  overflow: visible;
}

.contact-process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--contact-process-count, 3), minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
  margin-top: clamp(42px, 5vw, 72px);
  padding-bottom: 58px;
}

.contact-process-timeline::before {
  content: "";
  position: absolute;
  bottom: 13px;
  left: calc(50% / var(--contact-process-count, 3));
  right: calc(50% / var(--contact-process-count, 3));
  height: 2px;
  background: linear-gradient(90deg, rgba(91, 189, 255, .08), rgba(91, 189, 255, .9), rgba(91, 189, 255, .08));
  box-shadow: 0 0 24px rgba(91, 189, 255, .42);
}

.contact-process-timeline::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: calc(50% / var(--contact-process-count, 3));
  right: calc(50% / var(--contact-process-count, 3));
  height: 24px;
  background: linear-gradient(90deg, transparent, rgba(91, 189, 255, .22), transparent);
  filter: blur(12px);
  pointer-events: none;
}

.contact-process-step {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.contact-process-marker {
  position: absolute;
  bottom: -58px;
  left: 50%;
  z-index: 1;
  width: 28px;
  height: 28px;
  border: 3px solid rgba(185, 228, 255, .95);
  border-radius: 50%;
  background: #05142a;
  transform: translateX(-50%);
  box-shadow:
    0 0 0 7px rgba(91, 189, 255, .14),
    0 0 28px rgba(91, 189, 255, .72);
}

.contact-process-copy {
  width: min(100%, 320px);
  min-height: 0;
  padding: 0;
  background: transparent;
  clip-path: none;
  box-shadow: none;
}

.contact-process-copy > span {
  display: block;
  color: var(--accent);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}

.contact-process-copy h3 {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
}

.contact-process-copy p {
  margin: 18px auto 0;
  max-width: 280px;
  color: var(--text-secondary);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
}

body .page-hero h1,
body .page-main h1,
body .page-main h2,
body .page-main h3 {
  font-weight: 400;
}

body .page-main .module-card p,
body .page-main .step-item p,
body .page-main .matrix-row p,
body .page-main .case-list-body p,
body .page-main .case-info-card p,
body .page-main .case-strategy-step p,
body .page-main .case-asset-card p,
body .page-main .contact-process-copy p {
  font-weight: 300;
}

.page-button {
  --button-cut: 12px;
  justify-self: start;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  padding: 13px 26px;
  background: linear-gradient(135deg, #1f8ed6 0%, #45baff 100%);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 400;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - var(--button-cut)) 0, 100% var(--button-cut), 100% calc(100% - var(--button-cut)), calc(100% - var(--button-cut)) 100%, 0 100%);
  box-shadow: inset 0 0 18px rgba(255,255,255,.34), 0 0 18px rgba(60,184,255,.28);
  transform: translateY(0) scale(1);
  transition:
    transform .18s cubic-bezier(.2, .8, .2, 1),
    filter .2s ease,
    box-shadow .22s ease,
    background .22s ease;
}

.button-label,
.button-arrow {
  position: relative;
  z-index: 1;
}

.button-arrow {
  width: 18px;
  height: 12px;
  display: inline-block;
  flex: 0 0 auto;
  color: currentColor;
  opacity: .9;
  transform: translateX(0);
  transition:
    transform .22s cubic-bezier(.2, .8, .2, 1),
    opacity .2s ease,
    filter .2s ease;
}

.button-arrow::before,
.button-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background: currentColor;
}

.button-arrow::before {
  width: 18px;
  height: 2px;
  transform: translateY(-50%);
}

.button-arrow::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
  transform: translateY(-50%) rotate(45deg);
}

.page-button:hover,
.page-button:focus-visible {
  background: linear-gradient(135deg, #35aef8 0%, #72d2ff 100%);
  filter: brightness(1.1);
  box-shadow:
    inset 0 0 22px rgba(255,255,255,.48),
    0 12px 30px rgba(60,184,255,.38);
  transform: translateY(-2px) scale(1.035);
}

.page-button:hover .button-arrow,
.page-button:focus-visible .button-arrow,
.lead-submit-button:not(:disabled):hover .button-arrow,
.lead-submit-button:not(:disabled):focus-visible .button-arrow {
  opacity: 1;
  filter: brightness(1.18);
  transform: translateX(5px);
}

.page-button:active {
  filter: brightness(.82);
  box-shadow:
    inset 0 0 16px rgba(255,255,255,.28),
    0 4px 14px rgba(60,184,255,.22);
  transform: translateY(1px) scale(.97);
}

.lead-submit-button {
  position: relative;
  gap: 9px;
  overflow: hidden;
  user-select: none;
  transition:
    transform .16s cubic-bezier(.2, .8, .2, 1),
    filter .2s ease,
    box-shadow .24s ease,
    background .24s ease;
}

.lead-submit-button:not(:disabled):hover {
  filter: brightness(1.12);
  transform: translateY(-2px) scale(1.035);
}

.lead-submit-button:not(:disabled):active {
  filter: brightness(.82);
  transform: translateY(2px) scale(.97);
}

.lead-submit-button.is-sending,
.lead-submit-button.is-success {
  cursor: default;
  pointer-events: none;
}

.lead-submit-button.is-success {
  background: linear-gradient(135deg, #1f8ed6 0%, #45baff 100%);
  box-shadow: inset 0 0 18px rgba(255,255,255,.34), 0 0 18px rgba(60,184,255,.28);
}

.lead-submit-label {
  position: relative;
  z-index: 1;
}

.lead-submit-icon {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 18px;
}

.lead-submit-icon-arrow,
.lead-submit-spinner,
.lead-submit-check {
  grid-area: 1 / 1;
  opacity: 0;
  transform: scale(.72) rotate(-12deg);
  transition:
    opacity .22s ease,
    transform .28s cubic-bezier(.22, 1, .36, 1),
    filter .22s ease;
  pointer-events: none;
}

.lead-submit-button[data-submit-state="idle"] .lead-submit-icon-arrow,
.lead-submit-button:not([data-submit-state]) .lead-submit-icon-arrow {
  opacity: .9;
  transform: scale(1) rotate(0);
}

.lead-submit-button[data-submit-state="sending"] .lead-submit-spinner {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.lead-submit-button[data-submit-state="success"] .lead-submit-check {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.lead-submit-spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.lead-submit-spinner::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, .42);
  border-top-color: #fff;
  border-radius: 50%;
  animation: leadSubmitSpin .72s linear infinite;
}

.lead-submit-check,
.lead-submit-check svg {
  width: 18px;
  height: 18px;
  display: block;
}

.lead-submit-check path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
}

.lead-submit-button[data-submit-state="success"] .lead-submit-check path {
  animation: leadSubmitCheck .46s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes leadSubmitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes leadSubmitCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.page-cta {
  --page-card-cut: 26px;
  --cta-progress: 1;
  position: relative;
  isolation: isolate;
  padding: clamp(46px, 6vw, 82px);
  opacity: 0;
  transform: translate3d(0, 54px, 0) scale(.94);
  transform-origin: 50% 100%;
  overflow: hidden;
  background: #02070d;
  border: 0;
  clip-path: polygon(0 0, calc(100% - var(--page-card-cut)) 0, 100% var(--page-card-cut), 100% calc(100% - var(--page-card-cut)), calc(100% - var(--page-card-cut)) 100%, 0 100%);
  box-shadow: none;
  transition:
    opacity .58s ease,
    transform .86s cubic-bezier(.16, 1, .3, 1),
    filter .24s ease,
    box-shadow .26s ease,
    background .26s ease;
  transition-delay: calc(var(--hero-reveal-delay, 0ms) + var(--section-reveal-delay, 0ms));
  will-change: transform, opacity;
}

.page-cta-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 1;
  filter: none;
}

.page-cta::before {
  display: none;
}

.page-cta.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.page-cta > h2,
.page-cta > p,
.page-cta > .page-button {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity .5s ease,
    transform .68s cubic-bezier(.16, 1, .3, 1);
}

.page-cta.is-visible > h2,
.page-cta.is-visible > p,
.page-cta.is-visible > .page-button,
.case-detail > .page-cta.is-expanded > h2,
.case-detail > .page-cta.is-expanded > p,
.case-detail > .page-cta.is-expanded > .page-button {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.page-cta.is-visible > h2 {
  transition-delay: calc(var(--hero-reveal-delay, 0ms) + var(--section-reveal-delay, 0ms) + 120ms);
}

.page-cta.is-visible > p {
  transition-delay: calc(var(--hero-reveal-delay, 0ms) + var(--section-reveal-delay, 0ms) + 190ms);
}

.page-cta.is-visible > .page-button {
  transition-delay: calc(var(--hero-reveal-delay, 0ms) + var(--section-reveal-delay, 0ms) + 260ms);
}

.page-cta:hover,
.page-cta:focus-within {
  filter: none;
  box-shadow: none;
}

.page-cta .page-button {
  margin-top: clamp(22px, 2.6vw, 38px);
}

.page-cta .page-button:hover,
.page-cta .page-button:focus-visible {
  transform: translateY(-3px) scale(1.015);
}

.page-cta .page-button:active {
  transform: translateY(2px) scale(.985);
}

.case-detail > .page-cta {
  margin-top: clamp(48px, 7vw, 110px);
  opacity: calc(.58 + var(--cta-progress) * .42);
  transform: translate3d(0, calc((1 - var(--cta-progress)) * 42px), 0) scale(calc(.86 + var(--cta-progress) * .14));
  transform-origin: 50% 100%;
  transition:
    filter .24s ease,
    box-shadow .26s ease,
    background .26s ease;
  will-change: transform, opacity;
}

.case-detail > .page-cta.is-expanded {
  box-shadow: none;
}

.page-cta p {
  max-width: 680px;
  margin: 18px 0 28px;
  color: var(--text-secondary);
}

.case-detail {
  display: grid;
  gap: 38px;
}

.case-cover {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.case-detail-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  padding-top: 34px;
  border-top: 1px solid var(--bg-line);
}

.case-detail-section h2 {
  margin: 0;
  color: var(--accent);
  font-size: 18px;
}

.case-detail-section p {
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(16px, 1.25vw, 19px);
}

.case-back {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 14px;
}

.case-detail > .case-back {
  display: none;
}

.case-back--hero {
  position: absolute;
  left: var(--case-page-gutter, clamp(24px, 5vw, 72px));
  top: clamp(84px, 8vw, 112px);
  z-index: 2;
  margin: 0;
}

.case-back--hero a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.case-back--hero a:hover {
  color: #fff;
  transform: translateX(-3px);
}

#caseDetailHero .page-kicker {
  margin-bottom: 22px;
  font-size: clamp(18px, 1.45vw, 22px);
  letter-spacing: 0.08em;
  text-transform: none;
}

#caseDetailHero .page-title {
  max-width: 900px;
  font-size: clamp(34px, 4.8vw, 68px);
}

#caseDetailHero .case-hero-date {
  margin-top: 20px;
  color: var(--accent);
  font-family: var(--font-en);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 700;
}

.case-module {
  position: relative;
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(54px, 7vw, 96px) 0;
  border-top: 1px solid var(--bg-line);
}

.case-detail > .case-module,
.case-detail > .case-detail-section {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity .74s ease,
    transform .86s cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--case-hero-reveal-delay, 0ms) + var(--case-module-delay, 0ms));
  will-change: transform, opacity;
}

.case-detail > .case-module.has-stagger-items {
  transform: none;
  transition:
    opacity .22s ease;
  transition-delay: 0ms;
}

.case-detail > .case-module.is-visible,
.case-detail > .case-detail-section.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .page-hero .page-kicker,
  .page-hero .page-title,
  .page-hero .page-desc {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .case-list-card.has-card-reveal,
  .case-list-card.has-card-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-section,
  .case-detail > .case-module,
  .case-detail > .case-detail-section {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-cta > h2,
  .page-cta > p,
  .page-cta > .page-button {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .case-module .case-info-card,
  .case-module .case-asset-card,
  .case-module .case-business-metrics article,
  .case-module .case-business-images img {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about-wide-visual,
  .about-wide-visual img {
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
  }

  .about-capability-dot.is-active span {
    width: 100%;
    animation: none;
  }

  .split-logo-marquee {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .client-logo-track {
    width: 100%;
    flex-wrap: wrap;
    animation: none;
    transform: none;
  }

  .client-logo-group {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
  }

  .client-logo-group[aria-hidden="true"] {
    display: none;
  }
}

.case-module:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.case-strategy-module + .case-assets-module {
  margin-top: -18px;
  padding-top: clamp(28px, 4vw, 48px);
  border-top: 0;
}

.case-back + .case-module {
  border-top: 0;
  padding-top: 0;
}

.case-module-heading {
  max-width: 820px;
}

.case-module-heading h2,
.case-intro-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
}

.case-module-heading > p:not(.section-eyebrow) {
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: clamp(16px, 1.35vw, 20px);
}

.case-intro-module {
  grid-template-columns: minmax(300px, .78fr) minmax(420px, 1.16fr);
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
}

.case-intro-copy {
  min-height: 420px;
  display: grid;
  align-content: space-between;
  gap: 38px;
}

.case-intro-date,
.case-scene-meta {
  margin: 26px 0 0;
  color: var(--accent);
  font-family: var(--font-en);
  font-weight: 700;
}

.case-intro-body,
.case-rich-copy,
.case-scene-copy {
  color: var(--text-secondary);
  font-size: clamp(16px, 1.24vw, 19px);
}

.case-intro-body p,
.case-rich-copy p,
.case-scene-copy p {
  margin: 0 0 18px;
}

.case-intro-media,
.case-scene-slide img {
  width: 100%;
  display: block;
  aspect-ratio: 752 / 452;
  object-fit: cover;
  background: #02060b;
}

.case-challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-info-card {
  --page-card-cut: 20px;
  min-height: 210px;
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  clip-path: polygon(0 0, calc(100% - var(--page-card-cut)) 0, 100% var(--page-card-cut), 100% calc(100% - var(--page-card-cut)), calc(100% - var(--page-card-cut)) 100%, 0 100%);
  box-shadow: inset 0 0 34px rgba(91, 189, 255, .1);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1), background .28s ease;
}

.case-module .case-info-card,
.case-module .case-asset-card,
.case-module .case-business-metrics article,
.case-module .case-business-images img {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity .72s ease,
    transform .86s cubic-bezier(.22, 1, .36, 1),
    background .28s ease,
    filter 220ms ease,
    box-shadow 220ms ease;
  transition-delay: var(--card-reveal-delay, 120ms);
  will-change: transform, opacity;
}

.case-module.is-visible .case-info-card,
.case-module.is-visible .case-asset-card,
.case-module.is-visible .case-business-metrics article,
.case-module.is-visible .case-business-images img {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.case-module.is-visible .case-info-card:nth-child(2),
.case-module.is-visible .case-asset-card:nth-child(2),
.case-module.is-visible .case-business-metrics article:nth-child(2),
.case-module.is-visible .case-business-images img:nth-child(2) {
  --card-reveal-delay: 220ms;
}

.case-module.is-visible .case-info-card:nth-child(3),
.case-module.is-visible .case-asset-card:nth-child(3),
.case-module.is-visible .case-business-metrics article:nth-child(3),
.case-module.is-visible .case-business-images img:nth-child(3) {
  --card-reveal-delay: 320ms;
}

.case-module.is-visible .case-info-card:nth-child(4),
.case-module.is-visible .case-asset-card:nth-child(4),
.case-module.is-visible .case-business-metrics article:nth-child(4),
.case-module.is-visible .case-business-images img:nth-child(4) {
  --card-reveal-delay: 420ms;
}

.case-module.is-visible .case-info-card:nth-child(5),
.case-module.is-visible .case-asset-card:nth-child(5) {
  --card-reveal-delay: 520ms;
}

.case-module.is-visible .case-info-card:nth-child(6),
.case-module.is-visible .case-asset-card:nth-child(6) {
  --card-reveal-delay: 620ms;
}

.case-info-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(91, 189, 255, .12), rgba(255, 255, 255, .025));
}

.case-module.is-visible .case-info-card:hover {
  transform: translateY(-6px);
}

.case-info-card__head {
  display: block;
  padding-right: 62px;
}

.case-info-card__icon {
  position: absolute;
  top: clamp(22px, 2.4vw, 30px);
  right: clamp(22px, 2.4vw, 30px);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: rgba(134, 213, 255, .76);
  opacity: .9;
  transition: color 220ms ease, transform 220ms ease;
}

.case-info-card__icon svg {
  width: 42px;
  height: 42px;
  display: block;
}

.case-info-card__icon path,
.case-info-card__icon circle,
.case-info-card__icon rect,
.case-info-card__icon line,
.case-info-card__icon polyline,
.case-info-card__icon polygon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-info-card:hover .case-info-card__icon {
  color: #fff;
  opacity: 1;
  transform: translateY(-2px) scale(1.03);
}

.case-info-card h3,
.case-scene-copy h3,
.case-strategy-step h3 {
  margin: 0;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1.22;
  letter-spacing: 0;
}

.case-info-card p,
.case-strategy-step p {
  margin: 18px 0 0;
  color: var(--text-secondary);
}

.case-module-heading--center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.case-strategy-module {
  width: 100%;
  justify-self: stretch;
  overflow: hidden;
  padding-bottom: clamp(10px, 1.8vw, 24px);
}

.case-strategy-module .case-module-heading--center {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.case-strategy-panel {
  width: min(100%, 1480px);
  margin: 0 auto;
}

.case-strategy-timeline {
  position: relative;
  height: 382px;
  margin-top: clamp(42px, 5vw, 76px);
}

.case-strategy-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 244px;
  width: min(1480px, 100%);
  height: 220px;
  transform: translateX(-50%);
  transform-origin: 50% 100%;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(96, 189, 243, .98) 0%, rgba(30, 140, 209, .96) 28%, rgba(0, 90, 157, .8) 52%, rgba(0, 90, 157, .45) 62%, rgba(0, 45, 79, .22) 70%, rgba(0, 0, 0, 0) 80%);
  opacity: .72;
  animation: caseStrategyGlowBreath 4.8s ease-in-out infinite;
}

.case-strategy-timeline::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 244px;
  width: min(1480px, 100%);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, rgba(193, 235, 255, .36) 16%, rgba(255, 255, 255, .68) 50%, rgba(193, 235, 255, .26) 82%, transparent 100%);
  box-shadow: 0 0 12px rgba(193, 235, 255, .28);
}

@keyframes caseStrategyGlowBreath {
  0%,
  100% {
    opacity: .62;
    transform: translateX(-50%) scale(.96, .92);
  }

  50% {
    opacity: .84;
    transform: translateX(-50%) scale(1.04, 1.02);
  }
}

.case-strategy-steps {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 227px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(var(--strategy-count, 6), minmax(0, 1fr));
  align-items: end;
}

.case-strategy-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 82px;
  text-align: center;
  cursor: default;
}

.case-strategy-step__copy {
  display: grid;
  gap: 8px;
  justify-items: center;
  width: min(164px, calc(100% - 10px));
  transition: transform 560ms cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.case-strategy-step:hover .case-strategy-step__copy,
.case-strategy-step.is-active .case-strategy-step__copy {
  transform: translateY(-20px);
}

.case-strategy-step__number {
  color: #fff;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
}

.case-strategy-step .case-strategy-step__label {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.case-strategy-step__marker {
  position: relative;
  width: 28px;
  height: 28px;
  border: 3px solid #60bdf3;
  border-radius: 50%;
  background: #031321;
  box-shadow:
    0 0 0 1px rgba(96, 189, 243, .42),
    0 0 12px rgba(96, 189, 243, .48);
  transition: transform 560ms cubic-bezier(.16, 1, .3, 1), box-shadow 560ms ease;
  will-change: transform, box-shadow;
}

.case-strategy-step__marker::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, .82);
  transform: translate(-50%, -50%);
}

.case-strategy-step:hover .case-strategy-step__marker,
.case-strategy-step.is-active .case-strategy-step__marker {
  transform: scale(1.28);
  box-shadow:
    0 0 0 1px rgba(96, 189, 243, .5),
    0 0 18px rgba(96, 189, 243, .62);
}

.case-strategy-details {
  position: absolute;
  left: var(--strategy-detail-left, 50%);
  right: auto;
  top: 220px;
  width: min(var(--strategy-detail-width, 240px), calc(100% - 32px));
  height: 160px;
  opacity: 0;
  transform: translateX(-50%) translateY(-24px) scale(.72);
  transition:
    left 360ms cubic-bezier(.16, 1, .3, 1),
    opacity 220ms ease,
    transform 360ms cubic-bezier(.16, 1, .3, 1);
  transform-origin: 50% -34px;
}

.case-strategy-timeline.is-compact .case-strategy-step {
  gap: 8px;
}

.case-strategy-timeline.is-compact .case-strategy-step__copy {
  width: min(132px, calc(100% - 8px));
  gap: 6px;
}

.case-strategy-timeline.is-compact .case-strategy-step:hover .case-strategy-step__copy,
.case-strategy-timeline.is-compact .case-strategy-step.is-active .case-strategy-step__copy {
  transform: translateY(-14px);
}

.case-strategy-timeline.is-compact .case-strategy-step__number {
  font-size: 12px;
}

.case-strategy-timeline.is-compact .case-strategy-step .case-strategy-step__label {
  font-size: clamp(14px, 1.45vw, 18px);
  line-height: 1.2;
}

.case-strategy-timeline.is-compact .case-strategy-step__marker {
  width: 24px;
  height: 24px;
  border-width: 2px;
}

.case-strategy-timeline.is-compact .case-strategy-step__marker::before {
  width: 7px;
  height: 7px;
}

.case-strategy-timeline.is-compact .case-strategy-details {
  --strategy-detail-width: 220px;
}

.case-strategy-timeline:has(.case-strategy-detail--wide.is-visible) .case-strategy-details {
  --strategy-detail-width: min(420px, 78vw);
}

.case-strategy-timeline.is-compact:has(.case-strategy-detail--wide.is-visible) .case-strategy-details {
  --strategy-detail-width: min(380px, 78vw);
}

.case-strategy-timeline.is-detail-visible .case-strategy-details {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.case-strategy-detail {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  text-align: center;
  color: rgba(247, 251, 255, .78);
  background: linear-gradient(90deg, rgba(4, 16, 30, .92), rgba(10, 42, 72, .68) 64%, rgba(21, 95, 140, .36));
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
  box-shadow:
    inset 0 0 30px rgba(91, 189, 255, .12),
    0 18px 60px rgba(0, 0, 0, .2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.case-strategy-detail.is-visible {
  opacity: 1;
}

.case-strategy-detail ul {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: 8px 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
  justify-items: start;
  align-items: center;
}

.case-strategy-detail--wide ul {
  gap: 8px 18px;
}

.case-strategy-detail--wide:not(.case-strategy-detail--columns) ul {
  grid-template-columns: 1fr;
}

.case-strategy-detail li {
  position: relative;
  padding-left: 10px;
  color: rgba(247, 251, 255, .72);
  font-size: 13px;
  line-height: 1.38;
  text-align: left;
}

.case-strategy-detail li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.case-asset-rows {
  display: grid;
  gap: 28px;
}

.case-strategy-detail li::before,
.case-strategy-mobile-detail li::before {
  content: "\2022";
}

.case-strategy-mobile-detail {
  display: none;
}

.case-strategy-mobile-heading {
  display: none;
}

.case-asset-row {
  display: grid;
  gap: 28px;
  overflow: visible;
}

.case-asset-row--top {
  grid-template-columns: 1.7fr 1fr 1.7fr;
}

.case-asset-row--bottom {
  grid-template-columns: 1.5fr 1.7fr 1.5fr;
}

.case-asset-row--plain {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-asset-row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-asset-row--single {
  grid-template-columns: minmax(0, min(520px, 100%));
  justify-content: center;
}

.case-asset-card {
  position: relative;
  width: 100%;
  align-self: start;
  min-height: 220px;
  max-height: 320px;
  height: clamp(220px, 20vw, 320px);
  overflow: hidden;
  background: #c9c9c9;
  cursor: pointer;
  transform: translateZ(0);
  transition: transform 140ms cubic-bezier(.2, .8, .2, 1), box-shadow 140ms ease, filter 140ms ease;
  will-change: transform, box-shadow;
}

.case-asset-card:hover {
  z-index: 2;
  transform: scale(1.035);
  filter: brightness(1.08);
  box-shadow:
    0 0 22px rgba(96, 189, 243, .34),
    0 0 42px rgba(244, 87, 53, .22);
}

.case-module.is-visible .case-asset-card:hover {
  transform: scale(1.035);
}

.case-module.is-visible .case-asset-card {
  transition-delay: 0ms;
}

.case-asset-card__image {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
}

.case-asset-card--zoom .case-asset-card__image {
  transform: scale(1.1);
  transform-origin: center center;
}

.case-asset-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, .54) 100%);
}

.case-asset-card__title {
  position: absolute;
  left: 24px;
  right: 82px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
}

.case-asset-card__arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0;
  line-height: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.case-asset-card__arrow svg {
  width: 24px;
  height: 24px;
  display: block;
}

.case-asset-card__arrow polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-asset-card:hover .case-asset-card__arrow {
  transform: translateX(4px);
  background: linear-gradient(180deg, rgba(129,218,255,.66), rgba(47,151,216,.52));
  border-color: rgba(255, 255, 255, .72);
  box-shadow: 0 0 18px rgba(55,184,255,.24), inset 0 1px 0 rgba(255,255,255,.28);
  filter: brightness(1.08);
}

.case-asset-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2vw, 28px);
  background: rgba(0, 0, 0, .78);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overscroll-behavior: contain;
  transform: none !important;
  transition: opacity 240ms ease;
}

body.case-modal-open {
  overflow: hidden;
}

.case-asset-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.case-asset-modal-frame {
  width: min(1480px, calc(100vw - clamp(24px, 4vw, 56px)));
  height: min(980px, calc(100dvh - clamp(24px, 4vw, 56px)));
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(16px, 1.8vw, 26px);
  padding: clamp(14px, 1.8vw, 24px);
  background: #050b13;
  box-shadow: 0 24px 90px rgba(0, 0, 0, .44), inset 0 0 44px rgba(91, 189, 255, .14);
  opacity: 0;
  transform: scale(.98);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(.16, 1, .3, 1);
}

.case-asset-modal.is-open .case-asset-modal-frame {
  opacity: 1;
  transform: scale(1);
}

.case-asset-modal-frame h3 {
  margin: 0;
  padding-right: 48px;
  font-size: clamp(22px, 2.2vw, 34px);
}

.case-asset-modal-frame p {
  max-width: 980px;
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.55;
}

.case-asset-modal-preview {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.case-asset-modal-frame img {
  width: 100%;
  max-width: 100%;
  display: block;
  max-height: none;
  object-fit: contain;
  background: #000;
}

.case-asset-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  cursor: pointer;
}

.case-scenes-module {
  overflow: hidden;
}

.case-scene-carousel {
  position: relative;
  min-height: 520px;
  padding-bottom: 76px;
}

.case-scene-slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(300px, .74fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .42s ease;
}

.case-scene-carousel {
  display: grid;
}

.case-scene-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.case-scene-copy h3 {
  color: #fff;
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.18;
  margin-bottom: 22px;
}

.case-scene-meta {
  margin-top: 0;
  margin-bottom: 22px;
}

.case-scene-slide img {
  justify-self: end;
  max-width: 760px;
}

.case-scene-dots {
  position: absolute;
  left: 0;
  bottom: 22px;
  display: flex;
  gap: 10px;
}

.case-scene-dots button {
  position: relative;
  width: 12px;
  height: 12px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, .28);
  cursor: pointer;
  overflow: hidden;
  transition: width 240ms ease, background 200ms ease;
}

.case-scene-dots button.is-active {
  width: 46px;
  background: rgba(255, 255, 255, .18);
}

.case-scene-dots button span {
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--accent);
}

.case-scene-dots button.is-active span {
  animation: caseSceneProgress 5.2s linear forwards;
}

@keyframes caseSceneProgress {
  to {
    width: 100%;
  }
}

.case-scene-arrows {
  position: absolute;
  left: var(--scene-arrows-center-x, 50%);
  right: auto;
  top: var(--scene-arrows-top, calc(50% - 38px));
  bottom: auto;
  z-index: 4;
  width: var(--scene-arrows-width, min(760px, 58%));
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.case-scene-arrow {
  width: 46px;
  height: 46px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(129,218,255,.66), rgba(47,151,216,.52));
  box-shadow: 0 0 18px rgba(55,184,255,.24), inset 0 1px 0 rgba(255,255,255,.28);
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  display: grid;
  place-items: center;
  pointer-events: auto;
  transition: transform 180ms ease, filter 180ms ease;
}

.case-scene-arrow svg {
  width: 24px;
  height: 24px;
  display: block;
}

.case-scene-arrow polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-scene-arrow:hover {
  filter: brightness(1.08);
}

.case-business-layout {
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(440px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.case-business-metrics {
  display: grid;
  gap: 12px;
}

.case-business-metrics article {
  padding: 22px;
  background: linear-gradient(135deg, rgba(91, 189, 255, .16), rgba(255, 255, 255, .035));
}

.case-business-metrics span {
  display: block;
  color: var(--text-secondary);
}

.case-business-metrics strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1;
}

.case-business-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
  align-items: stretch;
}

.case-business-images img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  background: #02060b;
}

.case-business-images--count-1 {
  grid-template-columns: minmax(0, 1fr);
}

.case-business-images--count-1 img {
  aspect-ratio: 16 / 9;
}

.case-business-images--count-3 img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 8;
}

.case-business-images--count-5 img:first-child,
.case-business-images--count-6 img:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.case-business-images img.is-portrait:not(:first-child) {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.footer {
  padding: 36px clamp(24px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1080px) {
  .module-grid.columns-4,
  .module-grid.columns-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-logo-marquee {
    --logo-scroll-duration: 38s;
  }

  .split-section,
  .contact-panel,
  .case-intro-module,
  .case-scene-slide,
  .case-business-layout {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: none;
    grid-template-rows: none;
  }

  .contact-company,
  .contact-name,
  .contact-role,
  .contact-phone,
  .contact-email,
  .contact-project-type,
  .contact-project-stack,
  .contact-budget,
  .contact-timeline,
  .contact-submit-button,
  .contact-required-note {
    grid-area: auto;
  }

  .contact-wide-label,
  .contact-project-stack,
  .contact-required-note {
    grid-column: 1 / -1;
  }

  .split-copy {
    padding-top: 0;
  }

  .split-section--with-logos .section-heading,
  .split-section--with-logos .split-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .split-section--with-logos .split-copy {
    width: 100%;
    max-width: 720px;
    justify-self: stretch;
  }

  .client-logo-item {
    flex-basis: clamp(146px, 18vw, 198px);
  }

  .about-wide-visual-section {
    --about-intro-visual-width: 100%;
  }

  .about-wide-visual {
    aspect-ratio: 16 / 9;
  }

  .about-capability-card {
    flex-basis: clamp(360px, 46vw, 460px);
  }

  .case-strategy-steps {
    left: 2%;
    right: 2%;
  }

  .case-asset-rows {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .matrix-row.has-image {
    grid-template-columns: minmax(140px, .72fr) minmax(160px, .74fr) minmax(220px, 1fr) minmax(180px, .78fr);
    gap: 18px;
  }

  .case-asset-row {
    display: contents;
  }

  .case-asset-card,
  .case-asset-row--top .case-asset-card:nth-child(2) {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .case-asset-card__image {
    height: 100%;
    min-height: 0;
  }

  .case-intro-copy {
    min-height: auto;
  }
}

@media (min-width: 861px) and (max-width: 1080px) {
  .case-scene-carousel {
    min-height: 460px;
  }

  .case-scene-slide {
    grid-template-columns: minmax(240px, .72fr) minmax(0, 1.18fr);
    gap: clamp(28px, 4.5vw, 52px);
    align-items: center;
  }

  .case-scene-slide img {
    justify-self: center;
    width: 100%;
    max-width: none;
  }

  .case-asset-modal-frame h3 {
    font-size: clamp(22px, 2.8vw, 30px);
  }

  .case-asset-modal-frame p {
    max-width: 760px;
    font-size: 13px;
    line-height: 1.45;
  }
}

@media (max-width: 860px) {
  .nav {
    padding: 0 24px;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: auto;
    max-height: 0;
    margin: 0;
    padding: 0 24px;
    overflow: hidden;
    background: rgba(0, 0, 0, .96);
    border-bottom: 1px solid transparent;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translate3d(0, -12px, 0);
    transition:
      max-height .24s cubic-bezier(.55, 0, .3, 1),
      padding .24s cubic-bezier(.55, 0, .3, 1),
      opacity .14s ease,
      transform .24s cubic-bezier(.55, 0, .3, 1),
      border-color .14s ease,
      visibility 0s linear .24s;
  }

  .nav-links li {
    opacity: 0;
    transform: translate3d(0, -6px, 0);
    transition:
      opacity .12s ease,
      transform .18s cubic-bezier(.55, 0, .3, 1);
  }

  .nav-mobile-toggle {
    display: block;
  }

  .nav-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nav-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(.4);
  }

  .nav-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .nav-links.open {
    max-height: 360px;
    padding: 18px 24px 24px;
    border-bottom-color: rgba(255, 255, 255, 0.08);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    transition:
      max-height .42s cubic-bezier(.22, 1, .36, 1),
      padding .42s cubic-bezier(.22, 1, .36, 1),
      opacity .24s ease,
      transform .42s cubic-bezier(.22, 1, .36, 1),
      border-color .24s ease,
      visibility 0s;
  }

  .nav-links.open li {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .nav-links.open li:nth-child(1) { transition-delay: .04s; }
  .nav-links.open li:nth-child(2) { transition-delay: .07s; }
  .nav-links.open li:nth-child(3) { transition-delay: .1s; }
  .nav-links.open li:nth-child(4) { transition-delay: .13s; }
  .nav-links.open li:nth-child(5) { transition-delay: .16s; }
  .nav-links.open li:nth-child(6) { transition-delay: .19s; }

  .nav-links:not(.open) li {
    transition-delay: 0s;
  }

  .page-hero {
    min-height: clamp(410px, 56vh, 500px);
    padding-top: 96px;
    padding-bottom: 116px;
    padding-left: 16px;
    padding-right: 16px;
  }

  body:not([data-page="about"]) .page-hero {
    min-height: clamp(500px, 68vh, 620px);
    padding-top: 112px;
    padding-bottom: 136px;
  }

  .page-hero-media {
    inset: 0 0 -56px;
    height: calc(100% + 56px);
  }

  .page-hero::after {
    height: 170px;
  }

  .page-hero .page-kicker {
    margin-bottom: 12px;
  }

  .page-hero .page-desc {
    margin-top: 22px;
  }

  .page-main {
    width: min(100% - 32px, 1240px);
  }

  .case-list-section .section-heading.compact {
    margin-top: clamp(24px, 7vw, 42px);
    margin-bottom: clamp(30px, 6vw, 44px);
  }

  .split-logo-marquee {
    --logo-gap: 4px;
    --logo-scroll-duration: 30s;
    min-height: 108px;
    padding: 18px 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  }

  .client-logo-track {
    width: max-content;
    flex-wrap: nowrap;
    animation: clientLogoScroll var(--logo-scroll-duration) linear infinite;
    transform: translate3d(0, 0, 0);
  }

  .client-logo-group {
    width: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-right: var(--logo-gap);
  }

  .client-logo-group[aria-hidden="true"] {
    display: flex;
  }

  .client-logo-item {
    --logo-item-height: 76px;
    flex-basis: clamp(148px, 38vw, 178px);
  }

  body[data-page="about"] .about-wide-visual-section {
    min-height: auto;
    margin-bottom: clamp(52px, 12vw, 84px);
    padding: 64px 0 clamp(24px, 6vw, 40px);
    align-content: start;
  }

  .about-wide-visual {
    width: 100vw;
    max-width: none;
    height: min(calc(100vh - 64px), calc(100vw * 9 / 12.8));
    aspect-ratio: 16 / 9;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .about-wide-visual img {
    object-fit: cover;
    object-position: center center;
  }

  .about-intro-row {
    width: min(100%, 1080px);
    max-width: none;
    margin: clamp(24px, 7vw, 36px) auto 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-intro-desc {
    max-width: none;
  }

  .about-capability-track {
    gap: 16px;
  }

  .about-capability-scroller {
    --about-capability-edge: 16px;
  }

  .about-capability-dots {
    width: min(340px, calc(100% - 32px));
    margin-top: 20px;
  }

  .about-capability-card {
    flex-basis: min(84vw, 380px);
    min-height: 380px;
  }

  .about-capability-body {
    padding: 22px;
  }

  .about-capability-body p {
    margin-top: 26px;
  }

  .team-tree {
    gap: 20px;
  }

  .team-tree-root {
    width: 100%;
    min-height: 0;
    text-align: left;
  }

  .team-tree-root p {
    margin-left: 0;
    margin-right: 0;
  }

  .team-tree-branches {
    display: none;
  }

  .team-tree-grid {
    position: relative;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 0;
  }

  .team-tree-grid::before {
    content: none;
  }

  .team-tree-node {
    min-height: 0;
    padding: clamp(22px, 5.6vw, 30px);
  }

  .team-tree-node::after {
    content: none;
  }

  .team-tree-node ul {
    margin-top: 0;
    padding-top: 24px;
  }

  .module-grid.columns-3,
  .module-grid.columns-4,
  .module-grid.columns-5,
  .case-asset-rows,
  .step-list,
  .case-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-process-timeline {
    grid-template-columns: repeat(var(--contact-process-count, 3), minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 50px;
  }

  .contact-process-timeline::before {
    top: auto;
    bottom: 12px;
    left: calc(50% / var(--contact-process-count, 3));
    right: calc(50% / var(--contact-process-count, 3));
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, rgba(91, 189, 255, .08), rgba(91, 189, 255, .9), rgba(91, 189, 255, .08));
  }

  .contact-process-timeline::after {
    display: block;
    top: auto;
    bottom: 1px;
    left: calc(50% / var(--contact-process-count, 3));
    right: calc(50% / var(--contact-process-count, 3));
  }

  .contact-process-marker {
    top: auto;
    bottom: -50px;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translateX(-50%);
  }

  .contact-process-copy {
    min-height: 0;
    width: min(100%, 230px);
  }

  .contact-process-copy p {
    max-width: 210px;
  }

  .contact-form--diagnosis {
    padding: clamp(28px, 7vw, 38px) clamp(18px, 5vw, 28px);
  }

  .contact-form-header {
    margin-bottom: 30px;
  }

  .contact-form-header h2 {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: .04em;
  }

  .contact-form-header p {
    margin-top: 12px;
    font-size: clamp(16px, 4.2vw, 20px);
  }

  .contact-form--diagnosis .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .diagnosis-field,
  .diagnosis-upload-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .diagnosis-field-label {
    font-size: clamp(18px, 5vw, 24px);
    white-space: normal;
  }

  .contact-form--diagnosis input,
  .contact-form--diagnosis textarea,
  .contact-form--diagnosis select,
  .contact-form--diagnosis .cta-select-button {
    min-height: 54px;
    font-size: clamp(16px, 4.4vw, 20px);
    padding: 12px 14px;
  }

  .contact-form--diagnosis .contact-required-note {
    margin: -4px 0 0;
  }

  .diagnosis-upload-box {
    width: clamp(136px, 38vw, 176px);
  }

  .service-system-card-icon {
    width: clamp(92px, 24vw, 118px);
    height: clamp(92px, 24vw, 118px);
    margin-bottom: 22px;
  }

  body[data-page="about"] .module-grid.columns-5 .module-card {
    min-height: auto;
    padding: clamp(24px, 5.2vw, 30px) clamp(26px, 6vw, 32px);
    justify-content: flex-start;
  }

  body[data-page="about"] .module-grid.columns-5 .module-card h3 {
    font-size: clamp(24px, 6vw, 30px);
    line-height: 1.18;
  }

  body[data-page="about"] .module-grid.columns-5 .module-card p {
    margin-top: clamp(24px, 6vw, 34px);
  }

  .case-challenge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .case-challenge-grid .case-info-card {
    min-height: 190px;
    padding: 18px;
  }

  .case-challenge-grid .case-info-card__head {
    padding-right: 48px;
  }

  .case-challenge-grid .case-info-card__icon,
  .case-challenge-grid .case-info-card__icon svg {
    width: 34px;
    height: 34px;
  }

  .case-challenge-grid .case-info-card__icon {
    top: 18px;
    right: 18px;
  }

  .case-challenge-grid .case-info-card h3 {
    font-size: clamp(16px, 4.4vw, 20px);
  }

  .case-challenge-grid .case-info-card p {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.5;
  }

  .matrix-row,
  .case-detail-section {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .matrix-row strong {
    padding-bottom: 24px;
  }

  .matrix-row.has-image {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .matrix-row-image {
    min-height: 168px;
    margin: 8px -22px -22px;
  }

  .step-item {
    grid-template-columns: 46px 1fr;
    padding: 22px;
  }

  .workflow-timeline-section .section-heading {
    margin-bottom: 34px;
  }

  .workflow-timeline {
    --workflow-gap: 36px;
    grid-template-columns: var(--workflow-gap) minmax(0, 1fr);
    row-gap: 18px;
    padding: 4px 0 12px;
  }

  .workflow-timeline::before,
  .workflow-timeline::after {
    left: 18px;
    transform: none;
  }

  .workflow-step,
  .workflow-step--left,
  .workflow-step--right {
    grid-column: 2 !important;
    grid-template-columns: 1fr;
    min-height: clamp(164px, 31vw, 210px);
    padding: 0;
  }

  .workflow-step-content {
    grid-template-columns: minmax(0, 1fr) clamp(52px, 13vw, 70px);
    grid-template-areas:
      "copy icon";
    column-gap: clamp(14px, 4vw, 28px);
    row-gap: 0;
    align-items: center;
    justify-items: stretch;
    padding: clamp(20px, 5vw, 28px) clamp(18px, 4.8vw, 28px);
    text-align: left;
  }

  .workflow-step-content.has-visual {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "copy";
  }

  .workflow-step--right .workflow-step-content {
    grid-template-columns: minmax(0, 1fr) clamp(52px, 13vw, 70px);
    grid-template-areas:
      "copy icon";
    text-align: left;
  }

  .workflow-step--right .workflow-step-content.has-visual {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "copy";
  }

  .workflow-step-copy,
  .workflow-step--right .workflow-step-copy {
    gap: clamp(10px, 2.8vw, 14px);
    justify-items: start;
  }

  .workflow-step-content h3 {
    justify-content: flex-start;
    font-size: clamp(20px, 5.8vw, 24px);
  }

  .workflow-step--right .workflow-step-content h3 {
    justify-content: flex-start;
  }

  .workflow-step-icon {
    width: clamp(52px, 13vw, 70px);
    height: clamp(52px, 13vw, 70px);
    margin: 0;
    justify-self: end;
  }

  .workflow-step-icon img {
    width: clamp(48px, 12.2vw, 66px);
    height: clamp(48px, 12.2vw, 66px);
  }

  .workflow-step-visual {
    aspect-ratio: 16 / 9;
  }

  .workflow-step-content p {
    width: min(100%, 340px);
    justify-self: start;
    font-size: 12.5px;
    line-height: 1.52;
  }

  .workflow-step--right .workflow-step-content p {
    justify-self: start;
  }

  .workflow-step-marker {
    grid-column: 1 !important;
    width: 20px;
    height: 20px;
    border-width: 2px;
  }

  .workflow-step-marker::before,
  .workflow-step-marker--left::before,
  .workflow-step-marker--right::before {
    left: calc(50% + 11px);
    right: auto;
    width: 16px;
    transform: translateY(-50%) rotate(180deg);
  }

  .case-module-heading--center {
    text-align: left;
  }

  .case-strategy-timeline {
    height: auto;
    margin-top: 26px;
    padding: 0;
  }

  .case-strategy-timeline::before {
    display: block;
    left: 18px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    height: auto;
    transform: none;
    background: linear-gradient(180deg, rgba(193, 235, 255, .22), rgba(96, 189, 243, .8) 18%, rgba(96, 189, 243, .8) 82%, rgba(193, 235, 255, .22));
    box-shadow: 0 0 12px rgba(96, 189, 243, .22);
    opacity: 1;
    animation: none;
  }

  .case-strategy-timeline::after {
    display: none;
  }

  .case-strategy-steps {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .case-strategy-step {
    min-height: 0;
    grid-template-columns: 38px minmax(0, 1fr);
    justify-items: start;
    align-items: start;
    gap: 6px 14px;
    padding: 0;
    text-align: left;
    background: none;
    box-shadow: none;
  }

  .case-strategy-step__copy {
    display: none;
  }

  .case-strategy-step:hover .case-strategy-step__copy,
  .case-strategy-step.is-active .case-strategy-step__copy {
    transform: none;
  }

  .case-strategy-step__marker {
    grid-column: 1;
    grid-row: 1 / span 2;
    justify-self: center;
    width: 22px;
    height: 22px;
    margin-top: 5px;
    border-width: 2px;
  }

  .case-strategy-step__marker::before {
    width: 7px;
    height: 7px;
  }

  .case-strategy-details {
    display: none;
  }

  .case-strategy-step .case-strategy-step__label {
    font-size: 18px;
    line-height: 1.24;
  }

  .case-strategy-mobile-detail {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: grid;
    grid-template-columns: clamp(104px, 22vw, 124px) minmax(0, 1fr);
    column-gap: clamp(14px, 3vw, 28px);
    width: 100%;
    min-height: 132px;
    align-items: center;
    padding: 14px 18px;
    color: rgba(247, 251, 255, .78);
    background: linear-gradient(90deg, rgba(4, 16, 30, .94), rgba(10, 42, 72, .72) 64%, rgba(21, 95, 140, .38));
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
    box-shadow:
      inset 0 0 30px rgba(91, 189, 255, .12),
      0 14px 42px rgba(0, 0, 0, .16);
  }

  .case-strategy-mobile-heading {
    display: grid;
    gap: 6px;
    justify-items: center;
    text-align: center;
    color: #fff;
  }

  .case-strategy-mobile-number {
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
  }

  .case-strategy-mobile-heading h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 500;
  }

  .case-strategy-mobile-detail ul {
    display: grid;
    width: min(100%, 268px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px clamp(16px, 3vw, 28px);
    margin: 0;
    padding: 0;
    list-style: none;
    justify-self: center;
    justify-items: start;
  }

  .case-strategy-mobile-detail.case-strategy-detail--wide ul {
    width: min(100%, 268px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-right: 0;
    justify-self: center;
  }

  .case-strategy-mobile-detail.case-strategy-detail--wide:not(.case-strategy-detail--columns) ul {
    grid-template-columns: 1fr;
  }

  .case-strategy-mobile-detail li {
    position: relative;
    padding-left: 10px;
    color: rgba(247, 251, 255, .76);
    font-size: 13px;
    line-height: 1.38;
    text-align: left;
  }

  .case-strategy-mobile-detail li::before {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 700;
  }

  .case-asset-card,
  .case-asset-row--top .case-asset-card:nth-child(2) {
    height: 250px;
    min-height: 250px;
    aspect-ratio: auto;
  }

  .case-asset-card__image {
    height: 100%;
    min-height: 0;
  }

  .case-scene-carousel {
    min-height: 0;
    padding-bottom: 54px;
  }

  .case-scene-slide {
    gap: 24px;
  }

  .case-business-images {
    grid-template-columns: 1fr;
  }

  .case-business-images--count-3 img:first-child,
  .case-business-images--count-5 img:first-child,
  .case-business-images--count-6 img:first-child {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .case-asset-modal-frame p {
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .case-detail > .case-module,
  .case-detail > .case-detail-section,
  .case-module .case-info-card,
  .case-module .case-asset-card,
  .case-module .case-business-metrics article,
  .case-module .case-business-images img {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-hero {
    min-height: 380px;
    padding-top: 90px;
    padding-bottom: 64px;
  }

  body:not([data-page="about"]) .page-hero {
    min-height: 460px;
    padding-top: 98px;
    padding-bottom: 92px;
  }

  #caseDetailHero {
    min-height: 382px;
    padding-top: 144px;
    padding-bottom: 20px;
    align-content: start;
  }

  #caseDetailHero .case-back--hero {
    top: 82px;
  }

  .page-main {
    padding-top: clamp(74px, 18vw, 104px);
  }

  body:not([data-page="about"]) .page-main {
    margin-top: -26px;
    padding-top: clamp(34px, 10vw, 54px);
  }

  .module-card {
    min-height: 190px;
  }

  body[data-page="about"] .module-grid.columns-5 .module-card {
    min-height: auto;
  }

  body[data-page="about"] .module-grid.columns-5 .module-card p {
    margin-top: 20px;
  }

  .workflow-timeline {
    --workflow-gap: 30px;
  }

  .workflow-timeline::before,
  .workflow-timeline::after {
    left: 15px;
  }

  .workflow-step,
  .workflow-step--left,
  .workflow-step--right {
    min-height: 164px;
    padding: 0;
  }

  .workflow-step-marker {
    width: 18px;
    height: 18px;
  }

  .case-challenge-grid {
    gap: 10px;
  }

  .case-challenge-grid .case-info-card {
    min-height: 168px;
    padding: 14px;
  }

  .case-challenge-grid .case-info-card__head {
    padding-right: 40px;
  }

  .case-challenge-grid .case-info-card__icon,
  .case-challenge-grid .case-info-card__icon svg {
    width: 30px;
    height: 30px;
  }

  .case-challenge-grid .case-info-card__icon {
    top: 14px;
    right: 14px;
  }

  .case-challenge-grid .case-info-card p {
    font-size: 12px;
  }

  .case-strategy-step {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 6px 12px;
  }

  .case-strategy-timeline::before {
    left: 15px;
  }

  .case-strategy-mobile-detail {
    grid-template-columns: 62px minmax(0, 1fr);
    column-gap: 12px;
    min-height: 124px;
    padding: 13px 14px;
  }

  .case-strategy-mobile-detail ul {
    width: min(100%, 236px);
    gap: 5px 20px;
  }

  .case-strategy-mobile-heading h3 {
    font-size: 16px;
  }

  .case-asset-card,
  .case-asset-row--top .case-asset-card:nth-child(2) {
    height: 250px;
    min-height: 250px;
  }
}

@media (max-width: 380px) {
  .case-strategy-mobile-detail ul {
    column-gap: 12px;
  }
}

.service-statement-section .section-heading {
  max-width: 1120px;
  margin-bottom: 0;
}

.service-statement-section {
  margin-bottom: clamp(42px, 5vw, 76px);
}

.service-statement-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.16;
  white-space: pre-line;
}

.service-pain-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(74px, 8vw, 118px) 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(2, 6, 11, 0) 0%, rgba(5, 13, 22, .86) 18%, rgba(8, 20, 34, .82) 54%, rgba(2, 6, 11, 0) 100%);
}

.service-pain-section--no-title {
  padding-top: clamp(24px, 3.8vw, 54px);
}

.service-pain-section .section-heading {
  width: min(100% - 48px, 1240px);
  max-width: 1240px;
  margin: 0 auto clamp(44px, 5vw, 72px);
}

.service-pain-section .section-heading h2 {
  font-size: clamp(30px, 3.4vw, 52px);
}

.service-pain-marquee {
  display: grid;
  gap: clamp(22px, 2.8vw, 34px);
}

.service-pain-after {
  width: min(50%, 680px);
  margin: clamp(42px, 5vw, 72px) max(24px, calc((100vw - 1240px) / 2)) 0 auto;
  color: var(--text-secondary);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0;
}

.service-pain-row {
  --pain-gap: clamp(26px, 3vw, 44px);
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.service-pain-track {
  display: flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
  animation: servicePainScroll var(--pain-duration, 64s) linear infinite;
  animation-delay: var(--pain-delay, 0s);
  will-change: transform;
}

.service-pain-row.is-reverse .service-pain-track {
  animation-name: servicePainScrollReverse;
}

.service-pain-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: var(--pain-gap);
  padding-right: var(--pain-gap);
}

.service-pain-chip {
  --pain-chip-bg: linear-gradient(180deg, rgba(255, 255, 255, .038), rgba(255, 255, 255, .012));
  --pain-chip-glow: rgba(91, 189, 255, .045);
  min-height: clamp(50px, 5.1vw, 64px);
  display: grid;
  place-items: center;
  padding: 0 clamp(30px, 4.4vw, 58px);
  color: rgba(211, 232, 244, .68);
  font-size: clamp(17px, 1.65vw, 24px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  border-radius: 999px;
  border: 1px solid rgba(185, 225, 255, .1);
  background: var(--pain-chip-bg);
  box-shadow:
    inset 0 0 22px var(--pain-chip-glow),
    inset 0 1px 0 rgba(255, 255, 255, .026),
    0 14px 34px rgba(0, 0, 0, .22);
  opacity: .74;
  filter: brightness(.8) saturate(.82);
  transition:
    color .62s ease,
    opacity .62s ease,
    filter .68s ease,
    box-shadow .72s ease;
}

.service-pain-chip:hover,
.service-pain-chip.is-sparked {
  z-index: 3;
  color: #fff;
  opacity: 1;
  filter: brightness(1.15) saturate(1.08);
  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, .12),
    inset 0 0 34px rgba(91, 189, 255, .2),
    0 22px 58px rgba(0, 0, 0, .36);
  border-color: rgba(205, 235, 255, .22);
}

.service-pain-chip.is-sparked {
  transition-duration: .78s;
}

.service-pain-chip--0 {
  --pain-chip-bg: linear-gradient(180deg, rgba(255, 255, 255, .044), rgba(255, 255, 255, .014));
  --pain-chip-glow: rgba(91, 189, 255, .055);
}

.service-pain-chip--1 {
  --pain-chip-bg: linear-gradient(135deg, rgba(8, 31, 76, .82), rgba(3, 12, 34, .9));
  --pain-chip-glow: rgba(50, 120, 230, .08);
}

.service-pain-chip--2 {
  --pain-chip-bg: linear-gradient(100deg, rgba(5, 54, 142, .68) 0%, rgba(70, 99, 166, .46) 38%, rgba(15, 34, 82, .84) 66%, rgba(8, 70, 166, .58) 100%);
  --pain-chip-glow: rgba(126, 172, 255, .1);
}

.service-pain-chip--3 {
  --pain-chip-bg: linear-gradient(180deg, rgba(54, 49, 145, .7), rgba(20, 16, 70, .9));
  --pain-chip-glow: rgba(114, 104, 255, .09);
}

.service-pain-chip--4 {
  --pain-chip-bg: linear-gradient(135deg, rgba(18, 91, 133, .7), rgba(3, 27, 52, .9));
  --pain-chip-glow: rgba(44, 188, 240, .08);
}

.service-pain-chip--5 {
  --pain-chip-bg: linear-gradient(180deg, rgba(5, 24, 70, .86), rgba(2, 7, 24, .94));
  --pain-chip-glow: rgba(58, 117, 219, .06);
}

.service-pain-chip--6 {
  --pain-chip-bg: linear-gradient(180deg, rgba(255, 255, 255, .024), rgba(255, 255, 255, .008));
  --pain-chip-glow: rgba(91, 189, 255, .035);
}

.service-pain-chip--7 {
  --pain-chip-bg: linear-gradient(100deg, rgba(8, 52, 130, .66) 0%, rgba(12, 34, 82, .88) 48%, rgba(30, 73, 160, .58) 100%);
  --pain-chip-glow: rgba(78, 145, 255, .09);
}

.service-pain-chip--8 {
  --pain-chip-bg: linear-gradient(180deg, rgba(34, 43, 122, .7), rgba(10, 13, 54, .92));
  --pain-chip-glow: rgba(112, 123, 255, .075);
}

.service-pain-chip--9 {
  --pain-chip-bg: linear-gradient(180deg, rgba(12, 64, 94, .7), rgba(2, 15, 31, .92));
  --pain-chip-glow: rgba(43, 174, 227, .065);
}

.service-pain-chip--10 {
  --pain-chip-bg: linear-gradient(100deg, rgba(5, 15, 40, .9) 0%, rgba(12, 36, 86, .84) 52%, rgba(4, 13, 38, .94) 100%);
  --pain-chip-glow: rgba(64, 126, 232, .055);
}

.service-pain-chip--11 {
  --pain-chip-bg: linear-gradient(180deg, rgba(28, 22, 96, .72), rgba(8, 6, 36, .94));
  --pain-chip-glow: rgba(104, 91, 244, .06);
}

@keyframes servicePainScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes servicePainScrollReverse {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.service-logo-wall-section {
  margin-bottom: 0;
}

.service-logo-wall-head {
  max-width: 760px;
  margin-bottom: clamp(30px, 3.6vw, 52px);
}

.service-logo-wall-head p {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(24px, 2.45vw, 36px);
  line-height: 1.24;
  letter-spacing: 0;
  font-weight: 400;
}

.service-logo-wall-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: clamp(18px, 2vw, 32px);
  row-gap: clamp(4px, .8vw, 12px);
}

.service-logo-marquee {
  display: none;
}

.service-logo-wall-item {
  min-height: clamp(86px, 7vw, 112px);
  display: grid;
  place-items: center;
  padding: clamp(10px, 1.5vw, 20px);
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity .58s ease,
    transform .72s cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--logo-index, 0) * 55ms);
  will-change: opacity, transform;
}

.service-logo-wall-grid.is-logo-visible .service-logo-wall-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.service-logo-wall-item img {
  width: 112%;
  height: clamp(66px, 6.2vw, 96px);
  display: block;
  object-fit: contain;
  opacity: .9;
  filter: saturate(.98) brightness(1.08);
}

.service-logo-marquee-row {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.service-logo-marquee-track {
  display: flex;
  width: max-content;
  animation: serviceLogoMarquee var(--logo-marquee-duration, 36s) linear infinite;
  animation-delay: var(--logo-marquee-delay, 0s);
  will-change: transform;
}

.service-logo-marquee-row.is-reverse .service-logo-marquee-track {
  animation-name: serviceLogoMarqueeReverse;
}

.service-logo-marquee-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(28px, 8vw, 54px);
  padding-right: clamp(28px, 8vw, 54px);
}

.service-logo-marquee-item {
  flex: 0 0 clamp(128px, 31vw, 168px);
  height: clamp(68px, 16vw, 88px);
  display: grid;
  place-items: center;
}

.service-logo-marquee-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: .9;
  filter: saturate(.98) brightness(1.08);
}

@keyframes serviceLogoMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes serviceLogoMarqueeReverse {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 900px) {
  .service-pain-section {
    padding: clamp(58px, 13vw, 84px) 0;
  }

  .service-pain-row {
    --pain-gap: 18px;
  }

  .service-pain-chip {
    min-height: 48px;
    padding: 0 26px;
    font-size: clamp(15px, 4.3vw, 20px);
  }

  .service-pain-after {
    width: min(calc(100% - 48px), 640px);
    margin-left: 24px;
    margin-right: auto;
    text-align: left;
  }

  .service-statement-section {
    margin-bottom: clamp(18px, 4vw, 32px);
  }

  .service-pain-section--no-title {
    padding-top: clamp(8px, 2.6vw, 18px);
  }

  .service-logo-wall-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .service-pain-marquee {
    gap: 16px;
  }

  .service-pain-row {
    --pain-gap: 14px;
  }

  .service-pain-chip {
    min-height: 42px;
    padding: 0 20px;
    font-size: 15px;
  }

  .service-pain-after {
    margin-top: 34px;
    font-size: 14px;
    line-height: 1.8;
  }

  .service-logo-wall-grid {
    display: none;
  }

  .service-logo-marquee {
    display: grid;
    gap: 10px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    padding: 6px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-logo-track {
    width: 100%;
    flex-wrap: wrap;
    animation: none !important;
    transform: none !important;
  }

  .client-logo-group {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
  }

  .client-logo-group[aria-hidden="true"] {
    display: none;
  }

  .service-pain-track {
    animation: none !important;
    transform: none !important;
    flex-wrap: wrap;
  }

  .service-pain-group {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding-right: 0;
  }

  .service-pain-group[aria-hidden="true"] {
    display: none;
  }

  .service-logo-wall-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-logo-marquee-track {
    animation: none !important;
    transform: none !important;
    flex-wrap: wrap;
  }

  .service-logo-marquee-group {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
  }

  .service-logo-marquee-group[aria-hidden="true"] {
    display: none;
  }
}

body .page-hero h1,
body .page-main h1,
body .page-main h2,
body .page-main h3 {
  font-weight: 400;
}

body .page-main .module-card p,
body .page-main .step-item p,
body .page-main .matrix-row p,
body .page-main .case-list-body p,
body .page-main .case-info-card p,
body .page-main .case-strategy-step p,
body .page-main .case-asset-card p,
body .page-main .contact-process-copy p {
  font-weight: 300;
}
