@font-face {
  font-family: "CODARA Display";
  src: url("../fonts/BricolageGrotesque-VariableFont_opsz.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "CODARA Text";
  src: url("../fonts/AlbertSans-VariableFont_wght.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --codara-code: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --codara-text: "CODARA Text", Inter, Arial, sans-serif;
  --codara-display: "CODARA Display", "Arial Black", sans-serif;
}

/* Shared type system for every route. */
body,
body input,
body textarea,
body select {
  font-family: var(--codara-text) !important;
}

body :is(h1, h2, h3, h4, h5, h6, button, summary, label),
body :is(.btn, .button, [class*="-button"], [class*="__button"]),
body nav a,
body code,
body pre,
body kbd {
  font-family: var(--codara-code) !important;
  font-variant-ligatures: contextual;
  letter-spacing: 0 !important;
}

body.cdx2-body :is(.cdx2-hero-title, .cdx2-display, .cdx2-closing-title),
body.cdx2-body :is(.cdx2-challenge, .cdx2-service, .cdx2-case, .cdx2-process-list, .cdx2-standard-grid) h3 {
  font-family: var(--codara-code) !important;
  letter-spacing: -.045em !important;
}

body :is(.nav-brand-ultra, .site-footer-brand, .cdx2-logo, .cdx2-footer-wordmark) {
  font-family: var(--codara-display) !important;
}

html.codara-booting,
html.codara-booting body {
  overflow: hidden !important;
}

.codara-code-loader {
  position: fixed;
  z-index: 2147483000;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  color: #f4f1eb;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #090d0f;
  background-size: 42px 42px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-1.5%);
  transition: opacity .18s ease, visibility 0s .18s, transform .32s cubic-bezier(.32,.72,0,1);
}

html.codara-booting .codara-code-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}

.codara-code-loader__top,
.codara-code-loader__foot {
  width: min(100%, 1120px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--codara-code) !important;
  font-size: clamp(.62rem, 1vw, .76rem);
  font-weight: 700;
  letter-spacing: .11em;
}

.codara-code-loader__top strong {
  color: #fff;
  font-family: var(--codara-display) !important;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: -.04em;
}

.codara-code-loader__top span {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #ff7b4b;
}

.codara-code-loader__top span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5b20;
  box-shadow: 0 0 16px #ff5b20;
}

.codara-code-loader__window {
  width: min(100%, 920px);
  margin-inline: auto;
  overflow: hidden;
  background: #101517;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: clamp(14px, 2vw, 22px);
  box-shadow: 0 34px 100px rgba(0,0,0,.45);
}

.codara-code-loader__bar {
  min-height: 46px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: 1rem;
  color: rgba(255,255,255,.48);
  background: #171d20;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-family: var(--codara-code) !important;
  font-size: .66rem;
}

.codara-code-loader__bar > span:nth-child(2) { color: rgba(255,255,255,.76); }
.codara-code-loader__bar > span:last-child { justify-self: end; color: #ff7b4b; }

.codara-code-loader__dots {
  display: flex;
  gap: 6px;
}

.codara-code-loader__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5b20;
}

.codara-code-loader__dots i:nth-child(2) { background: #ffb195; }
.codara-code-loader__dots i:nth-child(3) { background: #f4f1eb; }

.codara-code-loader__workspace {
  min-height: clamp(285px, 38vh, 410px);
  display: grid;
  grid-template-columns: 170px 1fr;
}

.codara-code-loader aside {
  padding: 1.3rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  color: rgba(255,255,255,.44);
  background: #0d1214;
  border-right: 1px solid rgba(255,255,255,.08);
  font-family: var(--codara-code) !important;
  font-size: .67rem;
}

.codara-code-loader aside b {
  margin-bottom: .35rem;
  color: rgba(255,255,255,.72);
  font-size: .6rem;
  letter-spacing: .12em;
}

.codara-code-loader aside .is-active {
  margin-inline: -.55rem;
  padding: .35rem .55rem;
  color: #fff;
  background: rgba(255,91,32,.13);
  border-left: 2px solid #ff5b20;
}

.codara-code-loader__editor {
  padding: clamp(1.25rem, 3vw, 2.4rem);
  overflow: hidden;
}

.codara-code-loader__editor > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  min-height: 1.72em;
  opacity: 0;
  transform: translateY(5px);
  animation: codaraCodeLine .18s ease forwards;
}

.codara-code-loader__editor > div:nth-child(2) { animation-delay: .1s; }
.codara-code-loader__editor > div:nth-child(3) { animation-delay: .18s; }
.codara-code-loader__editor > div:nth-child(4) { animation-delay: .27s; }
.codara-code-loader__editor > div:nth-child(5) { animation-delay: .36s; }
.codara-code-loader__editor > div:nth-child(6) { animation-delay: .45s; }
.codara-code-loader__editor > div:nth-child(7) { animation-delay: .54s; }
.codara-code-loader__editor > div:nth-child(8) { animation-delay: .63s; }

@keyframes codaraCodeLine { to { opacity: 1; transform: none; } }

.codara-code-loader__editor em,
.codara-code-loader__editor code {
  font-family: var(--codara-code) !important;
  font-size: clamp(.68rem, 1.25vw, .88rem);
  font-style: normal;
  line-height: 1.72;
  white-space: nowrap;
}

.codara-code-loader__editor em { color: rgba(255,255,255,.22); }
.codara-code-loader__editor code { color: #d8dee2; }
.codara-code-loader__editor code i { color: #ff7b4b; font-style: normal; }
.codara-code-loader__editor code s { color: #ffb195; text-decoration: none; }
.codara-code-loader__editor code b { color: #fff; font-weight: 700; }

.codara-code-loader__terminal {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1rem;
  color: rgba(255,255,255,.62);
  background: #0b0f11;
  border-top: 1px solid rgba(255,255,255,.09);
  font-family: var(--codara-code) !important;
  font-size: .68rem;
}

.codara-code-loader__terminal span:last-child { color: #ff7b4b; }

.codara-code-loader__progress {
  height: 3px;
  background: rgba(255,255,255,.08);
}

.codara-code-loader__progress i {
  width: 0;
  height: 100%;
  display: block;
  background: #ff5b20;
  box-shadow: 0 0 18px rgba(255,91,32,.75);
  transition: width .28s cubic-bezier(.32,.72,0,1);
}

.codara-code-loader__foot {
  justify-content: center;
  gap: clamp(1rem, 6vw, 4rem);
  color: rgba(255,255,255,.3);
}

@media (max-width: 640px) {
  .codara-code-loader { padding: .85rem; }
  .codara-code-loader__workspace { grid-template-columns: 1fr; min-height: 330px; }
  .codara-code-loader aside { display: none; }
  .codara-code-loader__bar { grid-template-columns: auto 1fr; gap: .8rem; }
  .codara-code-loader__bar > span:nth-child(2) { text-align: right; }
  .codara-code-loader__bar > span:last-child { display: none; }
  .codara-code-loader__editor { padding: 1.4rem .85rem; }
  .codara-code-loader__editor > div { grid-template-columns: 24px 1fr; }
  .codara-code-loader__editor em,
  .codara-code-loader__editor code { font-size: clamp(.58rem, 2.6vw, .72rem); }
  .codara-code-loader__foot { justify-content: space-between; gap: .5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .codara-code-loader { display: none !important; }
}

/* Homepage palette synchronized with the inner-page lavender system. */
body.cdx2-body {
  --cdx2-ink: #190733;
  --cdx2-ink-soft: #271043;
  --cdx2-paper: #f6f1fc;
  --cdx2-paper-2: #eee7f7;
  --cdx2-orange: #832eff;
  --cdx2-orange-soft: #d9c1ff;
  --cdx2-muted: #7d6b9c;
  --cdx2-line: rgba(54, 22, 93, .15);
  --cdx2-line-dark: rgba(255, 255, 255, .15);
  color: #190733 !important;
  background: #f6f1fc !important;
}

html:not(.codara-theme-dark) body.cdx2-body main#main-content,
html.codara-theme-dark body.cdx2-body main#main-content,
body.cdx2-body .cdx2-main {
  background: #f6f1fc !important;
}

body.cdx2-body .cdx2-header {
  background: rgba(255, 255, 255, .88) !important;
  border-color: rgba(54, 22, 93, .12) !important;
  box-shadow: 0 16px 44px rgba(54, 22, 93, .1) !important;
}

body.cdx2-body .cdx2-logo {
  color: #190733 !important;
}

body.cdx2-body .cdx2-contact-link {
  color: #190733 !important;
  background: #eadcff !important;
}

body.cdx2-body .cdx2-menu-button,
body.cdx2-body .cdx2-button-ink {
  color: #fff !important;
  background: #190733 !important;
}

body.cdx2-body .cdx2-menu-mark,
body.cdx2-body .cdx2-button-ink .cdx2-icon-circle {
  color: #fff !important;
  background: #4e1b78 !important;
}

body.cdx2-body .cdx2-hero {
  color: #190733 !important;
  background:
    radial-gradient(circle at 82% 24%, rgba(131, 46, 255, .15), transparent 29rem),
    radial-gradient(circle at 8% 82%, rgba(218, 193, 255, .5), transparent 28rem),
    #f6f1fc !important;
  border-bottom: 1px solid rgba(54, 22, 93, .1);
}

body.cdx2-body .cdx2-hero :is(.cdx2-hero-title, .cdx2-hero-copy, .cdx2-metric) {
  color: #190733 !important;
}

body.cdx2-body .cdx2-hero-title span,
body.cdx2-body .cdx2-hero .cdx2-eyebrow,
body.cdx2-body .cdx2-kicker,
body.cdx2-body :is(.cdx2-challenge > span, .cdx2-service-number, .cdx2-standard-grid article > span) {
  color: #832eff !important;
}

body.cdx2-body .cdx2-hero-copy > p,
body.cdx2-body .cdx2-metric span {
  color: #7d6b9c !important;
}

body.cdx2-body .cdx2-hero-media,
body.cdx2-body .cdx2-hero-copy,
body.cdx2-body .cdx2-metric {
  background-color: rgba(255, 255, 255, .68) !important;
  border-color: rgba(54, 22, 93, .13) !important;
}

body.cdx2-body .cdx2-button-orange {
  color: #fff !important;
  background: #832eff !important;
}

body.cdx2-body .cdx2-button-light,
body.cdx2-body .cdx2-button-paper {
  color: #190733 !important;
  background: #fff !important;
  border-color: rgba(54, 22, 93, .14) !important;
}

body.cdx2-body :is(.cdx2-challenges, .cdx2-work, .cdx2-standards, .cdx2-closing) {
  background: #f6f1fc !important;
}

body.cdx2-body :is(.cdx2-services, .cdx2-faq) {
  background: #eee7f7 !important;
}

body.cdx2-body :is(.cdx2-challenges, .cdx2-services, .cdx2-work, .cdx2-standards, .cdx2-faq, .cdx2-closing) :is(h1, h2, h3, h4, summary) {
  color: #190733 !important;
}

body.cdx2-body :is(.cdx2-challenges, .cdx2-services, .cdx2-work, .cdx2-standards, .cdx2-faq, .cdx2-closing) p {
  color: #7d6b9c !important;
}

body.cdx2-body .cdx2-service {
  background: #eee7f7 !important;
  border-color: rgba(54, 22, 93, .15) !important;
}

body.cdx2-body .cdx2-service-featured,
body.cdx2-body .cdx2-process {
  color: #fff !important;
  background: #190733 !important;
}

body.cdx2-body .cdx2-service-featured :is(h3, ul),
body.cdx2-body .cdx2-process :is(h2, h3, a) {
  color: #fff !important;
}

body.cdx2-body .cdx2-service-featured p,
body.cdx2-body .cdx2-process p {
  color: rgba(255, 255, 255, .68) !important;
}

body.cdx2-body .cdx2-process :is(.cdx2-kicker, .cdx2-process-list li > span) {
  color: #b98aff !important;
}

body.cdx2-body .cdx2-case-arrow,
body.cdx2-body .cdx2-faq summary i {
  color: #fff !important;
  background: #832eff !important;
}

body.cdx2-body .cdx2-faq details,
body.cdx2-body .cdx2-standard-grid article {
  background: rgba(255, 255, 255, .62) !important;
  border-color: rgba(54, 22, 93, .13) !important;
}

body.cdx2-body .cdx2-closing::before {
  border-color: rgba(131, 46, 255, .22) !important;
}

body.cdx2-body .cdx2-closing-art {
  background: #fff !important;
  border-color: rgba(54, 22, 93, .13) !important;
  box-shadow: 0 30px 74px rgba(54, 22, 93, .13) !important;
}

body.cdx2-body .cdx2-closing-art::after {
  background: rgba(131, 46, 255, .12) !important;
}

body.cdx2-body .cdx2-cat-status {
  color: #fff !important;
  background: #190733 !important;
}

body.cdx2-body .cdx2-code-note {
  color: #fff !important;
  background: #190733 !important;
}

body.cdx2-body .cdx2-footer {
  color: #190733 !important;
  background: #eee7f7 !important;
  border-color: rgba(54, 22, 93, .13) !important;
}

body.cdx2-body .cdx2-footer-nav a,
body.cdx2-body .cdx2-footer-meta,
body.cdx2-body .cdx2-footer-legal {
  color: #654d82 !important;
}

body.cdx2-body .cdx2-footer-rule {
  background: rgba(54, 22, 93, .14) !important;
}

body.cdx2-body .cdx2-footer-wordmark {
  background: linear-gradient(180deg, #6f42c6 0%, rgba(131, 46, 255, .08) 92%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-service:hover {
    color: #fff !important;
    background: #190733 !important;
  }

  body.cdx2-body .cdx2-service:hover :is(h3, ul) { color: #fff !important; }
  body.cdx2-body .cdx2-service:hover p { color: rgba(255, 255, 255, .68) !important; }
}

/* Homepage depth pass: hero system, outcomes, challenges and portfolio. */
body.cdx2-body .cdx2-hero-grid {
  gap: clamp(.9rem, 1.4vw, 1.35rem) !important;
}

body.cdx2-body .cdx2-hero-media {
  isolation: isolate;
  min-height: clamp(500px, 43vw, 650px) !important;
  border: 1px solid rgba(54, 22, 93, .14);
  border-radius: clamp(22px, 2.5vw, 34px) !important;
  box-shadow: 0 26px 80px rgba(54, 22, 93, .14);
  transform: translateZ(0);
}

body.cdx2-body .cdx2-hero-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(25, 7, 51, .2));
  pointer-events: none;
}

body.cdx2-body .cdx2-hero-media::after {
  content: "LIVE / CASE 01";
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  padding: .55rem .75rem;
  color: #fff;
  background: rgba(25, 7, 51, .82);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-family: var(--codara-code);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .08em;
}

body.cdx2-body .cdx2-hero-video::after {
  content: "PLAYING / STUDIO 01";
}

body.cdx2-body .cdx2-hero-video video {
  width: min(100%, 680px);
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: clamp(14px, 1.5vw, 20px);
  box-shadow: 0 28px 70px rgba(25, 7, 51, .3), 0 0 0 8px rgba(255, 255, 255, .055);
  transform: scale(1.002);
  transition: transform 1s cubic-bezier(.16, 1, .3, 1), filter .6s ease;
}

body.cdx2-body .cdx2-hero-video {
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 2.7vw, 2.5rem);
  background:
    radial-gradient(circle at 50% 40%, rgba(131, 46, 255, .3), transparent 46%),
    linear-gradient(145deg, #24103e, #130820 72%) !important;
}

body.cdx2-body .cdx2-hero-video::before {
  background:
    linear-gradient(180deg, transparent 62%, rgba(10, 3, 22, .55)),
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}

@media (min-width: 1100px) {
  body.cdx2-body .cdx2-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr) !important;
  }

  body.cdx2-body .cdx2-hero-media,
  body.cdx2-body .cdx2-hero-copy {
    min-height: clamp(520px, 38vw, 590px) !important;
  }

  body.cdx2-body .cdx2-hero-video video {
    width: min(92%, 640px);
  }
}

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-hero-video:hover video {
    transform: scale(1.025);
  }
}

/* Compact motion workspace: keeps the source crisp while making the media intentional. */
body.cdx2-body .cdx2-hero-video::after {
  display: none;
}

body.cdx2-body .cdx2-video-window {
  position: relative;
  z-index: 2;
  width: min(92%, 610px);
  overflow: hidden;
  color: rgba(255, 255, 255, .72);
  background: #0d0716;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: clamp(16px, 1.8vw, 24px);
  box-shadow: 0 30px 80px rgba(5, 1, 12, .42), 0 0 0 9px rgba(255, 255, 255, .045);
  transition: transform .7s cubic-bezier(.16, 1, .3, 1), box-shadow .7s ease;
}

body.cdx2-body .cdx2-video-bar,
body.cdx2-body .cdx2-video-meta {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: .75rem;
  padding-inline: 1rem;
  font-family: var(--codara-code);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

body.cdx2-body .cdx2-video-bar {
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .045);
}

body.cdx2-body .cdx2-video-bar strong {
  color: rgba(255, 255, 255, .86);
  font-family: var(--codara-code) !important;
  font-size: inherit;
}

body.cdx2-body .cdx2-video-dots {
  display: flex;
  gap: 5px;
}

body.cdx2-body .cdx2-video-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #832eff;
}

body.cdx2-body .cdx2-video-dots i:nth-child(2) { background: #b98aff; }
body.cdx2-body .cdx2-video-dots i:nth-child(3) { background: #ece1ff; }

body.cdx2-body .cdx2-video-live {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #d9c1ff;
}

body.cdx2-body .cdx2-video-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9d5cff;
  box-shadow: 0 0 12px #9d5cff;
  animation: cdx2VideoPulse 1.8s ease-in-out infinite;
}

@keyframes cdx2VideoPulse {
  50% { opacity: .45; transform: scale(.78); }
}

body.cdx2-body .cdx2-video-stage {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #17101f;
}

body.cdx2-body .cdx2-video-stage video {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}

body.cdx2-body .cdx2-video-meta {
  min-height: 38px;
  grid-template-columns: auto 1fr auto;
  color: rgba(255, 255, 255, .42);
  border-top: 1px solid rgba(255, 255, 255, .09);
}

body.cdx2-body .cdx2-video-meta > i {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, .1);
}

body.cdx2-body .cdx2-video-meta > i b {
  width: 44%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, #832eff, #d9c1ff);
  animation: cdx2VideoRail 4s ease-in-out infinite alternate;
}

@keyframes cdx2VideoRail {
  to { width: 82%; }
}

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-hero-video:hover .cdx2-video-window {
    transform: translateY(-5px);
    box-shadow: 0 38px 95px rgba(5, 1, 12, .5), 0 0 0 9px rgba(185, 138, 255, .07);
  }

  body.cdx2-body .cdx2-hero-video:hover .cdx2-video-stage video {
    transform: scale(1.018);
  }
}

@media (max-width: 767px) {
  body.cdx2-body .cdx2-hero-video {
    min-height: auto !important;
    aspect-ratio: auto !important;
    padding: .85rem;
  }

  body.cdx2-body .cdx2-video-window { width: 100%; }
  body.cdx2-body .cdx2-video-meta { grid-template-columns: auto 1fr; }
  body.cdx2-body .cdx2-video-meta span:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  body.cdx2-body .cdx2-video-live i,
  body.cdx2-body .cdx2-video-meta > i b { animation: none; }
}

body.cdx2-body .cdx2-hero-media img {
  transition: transform 1s cubic-bezier(.16, 1, .3, 1), filter .6s ease !important;
}

body.cdx2-body .cdx2-media-caption {
  z-index: 3;
  left: 1.15rem;
  bottom: 1.15rem;
  padding: .78rem 1rem;
  color: #190733 !important;
  background: rgba(255, 255, 255, .92) !important;
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: 0 10px 30px rgba(25, 7, 51, .13);
  backdrop-filter: blur(14px);
}

body.cdx2-body .cdx2-hero-copy {
  position: relative;
  isolation: isolate;
  min-height: clamp(500px, 43vw, 650px) !important;
  padding: clamp(2rem, 4vw, 4rem) !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(131, 46, 255, .15), transparent 40%),
    rgba(255, 255, 255, .72) !important;
  border: 1px solid rgba(54, 22, 93, .13) !important;
  border-radius: clamp(22px, 2.5vw, 34px);
  box-shadow: 0 26px 80px rgba(54, 22, 93, .09);
}

body.cdx2-body .cdx2-hero-copy::before {
  content: "CODARA.SYSTEM / 01";
  display: block;
  color: #832eff;
  font-family: var(--codara-code);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
}

body.cdx2-body .cdx2-hero-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -65px;
  border: 1px solid rgba(131, 46, 255, .26);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(131, 46, 255, .04), 0 0 0 68px rgba(131, 46, 255, .025);
}

body.cdx2-body .cdx2-hero-copy > p {
  max-width: 610px;
  margin-top: clamp(2rem, 7vw, 5.5rem) !important;
  color: #4f386d !important;
  font-size: clamp(1.7rem, 2.65vw, 2.8rem) !important;
  line-height: 1.12 !important;
}

body.cdx2-body .cdx2-capabilities {
  display: flex !important;
  flex-wrap: wrap;
  gap: .55rem;
  border: 0 !important;
}

body.cdx2-body .cdx2-capabilities span {
  width: auto;
  padding: .62rem .8rem !important;
  color: #654d82 !important;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(54, 22, 93, .13) !important;
  border-radius: 999px;
  line-height: 1;
}

body.cdx2-body .cdx2-metrics {
  margin-top: clamp(1rem, 2vw, 1.5rem) !important;
  gap: clamp(.65rem, 1.1vw, 1rem);
  border: 0 !important;
}

body.cdx2-body .cdx2-metric {
  position: relative;
  isolation: isolate;
  min-height: 220px !important;
  padding: clamp(1.35rem, 2.4vw, 2rem) !important;
  overflow: hidden;
  color: #190733 !important;
  background: rgba(255, 255, 255, .72) !important;
  border: 1px solid rgba(54, 22, 93, .13) !important;
  border-radius: 20px;
  box-shadow: 0 16px 42px rgba(54, 22, 93, .06);
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), box-shadow .45s ease, background-color .45s ease;
}

body.cdx2-body .cdx2-metric::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 130px;
  aspect-ratio: 1;
  top: -72px;
  right: -62px;
  border: 1px solid rgba(131, 46, 255, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(131, 46, 255, .035), 0 0 0 44px rgba(131, 46, 255, .02);
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

body.cdx2-body .cdx2-metric::after {
  content: "0" counter(cdxMetric);
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  color: #832eff;
  font-family: var(--codara-code);
  font-size: .62rem;
  font-weight: 700;
}

body.cdx2-body .cdx2-metrics { counter-reset: cdxMetric; }
body.cdx2-body .cdx2-metric { counter-increment: cdxMetric; }

body.cdx2-body .cdx2-metric strong {
  color: #190733 !important;
  font-family: var(--codara-code) !important;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem) !important;
}

body.cdx2-body .cdx2-metric span {
  color: #7d6b9c !important;
  font-size: .95rem;
}

body.cdx2-body .cdx2-challenge-list {
  display: grid;
  gap: .8rem;
  border: 0 !important;
}

body.cdx2-body .cdx2-challenge {
  position: relative;
  isolation: isolate;
  grid-template-columns: 72px minmax(250px, .78fr) minmax(300px, 1fr) 42px !important;
  align-items: center !important;
  padding: clamp(1.5rem, 3.2vw, 2.6rem) !important;
  overflow: hidden;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(54, 22, 93, .12) !important;
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(54, 22, 93, .045);
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), background-color .4s ease, box-shadow .45s ease;
}

body.cdx2-body .cdx2-challenge::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(100deg, rgba(131, 46, 255, .09), transparent 46%);
  opacity: 0;
  transition: opacity .4s ease;
}

body.cdx2-body .cdx2-challenge::after {
  content: "↗";
  width: 38px;
  height: 38px;
  grid-column: 4;
  display: grid;
  place-items: center;
  color: #190733;
  background: #eee7f7;
  border: 1px solid rgba(54, 22, 93, .13);
  border-radius: 50%;
  font-family: var(--codara-code);
  transition: color .35s ease, background-color .35s ease, transform .45s cubic-bezier(.16, 1, .3, 1);
}

body.cdx2-body .cdx2-challenge > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #eadcff;
  border: 1px solid rgba(131, 46, 255, .16);
  border-radius: 50%;
}

body.cdx2-body .cdx2-challenge h3 {
  max-width: 620px;
  font-size: clamp(1.6rem, 3vw, 3rem) !important;
  line-height: 1.02 !important;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}

body.cdx2-body .cdx2-challenge p {
  max-width: 600px;
  font-size: 1.03rem !important;
}

body.cdx2-body .cdx2-work {
  background:
    radial-gradient(circle at 4% 12%, rgba(131, 46, 255, .1), transparent 25rem),
    #f6f1fc !important;
}

body.cdx2-body .cdx2-work-grid {
  counter-reset: cdxCase;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  gap: clamp(1rem, 1.8vw, 1.6rem) !important;
}

body.cdx2-body .cdx2-case {
  --case-x: 50%;
  --case-y: 50%;
  position: relative;
  isolation: isolate;
  grid-column: span 6;
  padding: clamp(.65rem, 1vw, .85rem);
  overflow: hidden;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(54, 22, 93, .12);
  border-radius: clamp(20px, 2vw, 28px);
  box-shadow: 0 18px 48px rgba(54, 22, 93, .07);
  counter-increment: cdxCase;
  transition: transform .55s cubic-bezier(.16, 1, .3, 1), box-shadow .55s ease, border-color .45s ease;
}

body.cdx2-body .cdx2-case::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(380px circle at var(--case-x) var(--case-y), rgba(131, 46, 255, .14), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

body.cdx2-body .cdx2-case:nth-child(1) { grid-column: span 8; }
body.cdx2-body .cdx2-case:nth-child(2) { grid-column: span 4; }
body.cdx2-body .cdx2-case:nth-child(5) { grid-column: span 5; }
body.cdx2-body .cdx2-case:nth-child(6) { grid-column: span 7; }

body.cdx2-body .cdx2-case-media,
body.cdx2-body .cdx2-case-wide .cdx2-case-media {
  position: relative;
  aspect-ratio: 16 / 11 !important;
  border-radius: clamp(15px, 1.6vw, 21px) !important;
  background: #e4dced !important;
}

body.cdx2-body .cdx2-case:nth-child(2) .cdx2-case-media,
body.cdx2-body .cdx2-case:nth-child(5) .cdx2-case-media {
  aspect-ratio: 4 / 4.2 !important;
}

body.cdx2-body .cdx2-case-media::after {
  content: "0" counter(cdxCase);
  position: absolute;
  z-index: 2;
  top: .85rem;
  left: .85rem;
  padding: .5rem .62rem;
  color: #fff;
  background: rgba(25, 7, 51, .78);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-family: var(--codara-code);
  font-size: .62rem;
  font-weight: 700;
}

body.cdx2-body .cdx2-case-media img {
  transform: scale(1.035);
  transition: transform .85s cubic-bezier(.16, 1, .3, 1), filter .55s ease !important;
}

body.cdx2-body .cdx2-case-info {
  padding: clamp(1rem, 1.7vw, 1.4rem) .45rem .4rem !important;
}

body.cdx2-body .cdx2-case h3 {
  font-size: clamp(1.55rem, 2.7vw, 3rem) !important;
}

body.cdx2-body .cdx2-case-arrow {
  color: #fff !important;
  background: #190733 !important;
  box-shadow: 0 10px 26px rgba(25, 7, 51, .16);
}

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-hero-media:hover img {
    transform: scale(1.045) rotate(.25deg) !important;
    filter: saturate(1.04);
  }

  body.cdx2-body .cdx2-metric:hover {
    transform: translateY(-7px);
    background: #fff !important;
    box-shadow: 0 25px 64px rgba(54, 22, 93, .13);
  }

  body.cdx2-body .cdx2-metric:hover::before { transform: scale(1.16); }

  body.cdx2-body .cdx2-challenge:hover {
    transform: translateX(8px);
    background: #fff;
    box-shadow: 0 22px 58px rgba(54, 22, 93, .1);
  }

  body.cdx2-body .cdx2-challenge:hover::before { opacity: 1; }
  body.cdx2-body .cdx2-challenge:hover h3 { transform: translateX(6px); }
  body.cdx2-body .cdx2-challenge:hover::after {
    color: #fff;
    background: #832eff;
    transform: rotate(12deg);
  }

  body.cdx2-body .cdx2-case:hover {
    transform: translateY(-9px);
    border-color: rgba(131, 46, 255, .3);
    box-shadow: 0 30px 78px rgba(54, 22, 93, .15);
  }

  body.cdx2-body .cdx2-case:hover::before { opacity: 1; }
  body.cdx2-body .cdx2-case:hover .cdx2-case-media img {
    transform: scale(1.075) !important;
    filter: saturate(1.06) contrast(1.02);
  }

  body.cdx2-body .cdx2-case:hover .cdx2-case-arrow {
    background: #832eff !important;
    transform: rotate(12deg) scale(1.05);
  }
}

/* Surface cleanup v23: remove legacy grid seams and decorative corner rings. */
body.cdx2-body :is(
  .cdx2-metrics,
  .cdx2-challenge-list,
  .cdx2-service-grid,
  .cdx2-process-list,
  .cdx2-standard-grid,
  .cdx2-faq-list
) {
  border: 0 !important;
}

body.cdx2-body :is(.cdx2-metric::before, .cdx2-service::after, .cdx2-hero-copy::after) {
  display: none !important;
}

body.cdx2-body .cdx2-process::before {
  display: none !important;
  background: none !important;
}

body.cdx2-body .cdx2-hero-video::before {
  background: linear-gradient(180deg, transparent 62%, rgba(10, 3, 22, .55)) !important;
  background-size: auto !important;
}

body.cdx2-body .cdx2-process-intro {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  align-items: stretch;
}

body.cdx2-body .cdx2-process-aside {
  grid-column: 2;
  grid-row: 1 / 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.35rem;
  padding: clamp(1.4rem, 2.5vw, 2.25rem);
  background: rgba(9, 2, 21, .24);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: clamp(18px, 2vw, 26px);
}

body.cdx2-body .cdx2-process-aside > p {
  max-width: 37ch;
  margin: 0 !important;
  color: rgba(255, 255, 255, .76) !important;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.55;
}

body.cdx2-body .cdx2-process-aside > ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
  list-style: none;
}

body.cdx2-body .cdx2-process-aside > ul li {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .65rem .8rem;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .045);
  border-radius: 12px;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .035em;
}

body.cdx2-body .cdx2-process-aside > ul li > span {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  color: var(--cdx2-mint);
  background: rgba(185, 239, 209, .09);
  border-radius: 50%;
  font-family: var(--codara-code);
  font-size: .6rem;
}

body.cdx2-body .cdx2-process-aside .cdx2-text-link {
  grid-column: auto;
  grid-row: auto;
  align-self: flex-start;
  margin: 0 !important;
}

body.cdx2-body .cdx2-process-aside .cdx2-process-status {
  width: 100%;
  grid-column: auto;
  grid-row: auto;
  align-self: auto;
  margin: 0 !important;
}

@media (max-width: 1023px) {
  body.cdx2-body .cdx2-process-aside {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 767px) {
  body.cdx2-body .cdx2-process-aside {
    gap: 1rem;
    padding: 1rem;
    border-radius: 16px;
  }
}

/* FAQ final cascade v37. */
body.cdx2-body .cdx2-faq-layout {
  grid-template-columns: minmax(330px, .76fr) minmax(540px, 1.24fr) !important;
  gap: clamp(3rem, 7vw, 7rem) !important;
}

body.cdx2-body .cdx2-faq-intro {
  top: 7rem;
  padding-top: .5rem;
}

body.cdx2-body .cdx2-faq-intro .cdx2-kicker { color: #832eff !important; }

body.cdx2-body .cdx2-faq-intro .cdx2-display {
  max-width: 8.6ch !important;
  margin-top: clamp(1.5rem, 3vw, 2.5rem) !important;
  font-size: clamp(3.6rem, 5.1vw, 6rem) !important;
  line-height: .9 !important;
  letter-spacing: -.055em !important;
}

body.cdx2-body .cdx2-faq-intro .cdx2-display > span { display: block; }
body.cdx2-body .cdx2-faq-intro .cdx2-display > span:last-child { color: #60407e; }

body.cdx2-body .cdx2-faq-intro > .cdx2-text-link {
  width: max-content;
  min-height: 48px;
  margin-top: 1.8rem !important;
  padding: .6rem .65rem .6rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  color: #190733 !important;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(54, 22, 93, .12);
  border-radius: 8px;
  text-decoration: none;
}

body.cdx2-body .cdx2-faq-intro > .cdx2-text-link span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #190733;
  border-radius: 6px;
}

body.cdx2-body .cdx2-faq-note {
  max-width: 420px;
  margin-top: 1rem;
  padding: 1.1rem 4.25rem 1.1rem 1.15rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #190733, #301052);
}

body.cdx2-body .cdx2-faq-note i {
  width: 42px;
  height: 42px;
  color: #190733;
  background: var(--cdx2-mint);
  border-radius: 7px;
}

body.cdx2-body .cdx2-faq-list { gap: .7rem; }

body.cdx2-body .cdx2-faq details,
body.cdx2-body .cdx2-faq details[open],
body.cdx2-body .cdx2-faq details[open]:hover {
  overflow: hidden;
  color: #190733 !important;
  border: 1px solid rgba(54, 22, 93, .1) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, .78) !important;
  box-shadow: 0 16px 40px rgba(54, 22, 93, .065) !important;
  transform: none !important;
}

body.cdx2-body .cdx2-faq summary,
body.cdx2-body .cdx2-faq details[open] summary {
  min-height: 102px !important;
  grid-template-columns: 44px minmax(0, 1fr) 46px !important;
  gap: 1.1rem !important;
  padding: 1rem 1.15rem !important;
  color: #190733 !important;
  font-size: clamp(1.02rem, 1.55vw, 1.25rem) !important;
  font-weight: 560;
  text-wrap: balance;
}

body.cdx2-body .cdx2-faq summary::before {
  width: 40px;
  height: 40px;
  color: #6f42c6 !important;
  background: #f1e9fc;
  border: 1px solid rgba(111, 66, 198, .15);
  border-radius: 7px;
}

body.cdx2-body .cdx2-faq summary i,
body.cdx2-body .cdx2-faq details[open] summary i {
  width: 44px !important;
  height: 44px !important;
  color: #fff !important;
  background: #190733 !important;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(25, 7, 51, .16);
}

body.cdx2-body .cdx2-faq details[open] {
  border-color: rgba(83, 177, 130, .3) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(226, 248, 237, .76)) !important;
  box-shadow: 0 22px 52px rgba(54, 22, 93, .09), inset 4px 0 #8cd9b3 !important;
}

body.cdx2-body .cdx2-faq details[open] summary::before {
  color: #195f42 !important;
  background: #dff6e9;
  border-color: rgba(83, 177, 130, .24);
}

body.cdx2-body .cdx2-faq details[open] summary i {
  color: #190733 !important;
  background: var(--cdx2-mint) !important;
}

body.cdx2-body .cdx2-faq details > p,
body.cdx2-body .cdx2-faq details[open] > p {
  max-width: none;
  margin: 0 1.15rem 0 4.85rem !important;
  padding: 1rem 0 1.35rem !important;
  color: #5f5272 !important;
  border-top: 1px solid rgba(54, 22, 93, .09);
  line-height: 1.65;
}

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-faq details:not([open]):hover {
    transform: translateY(-3px) !important;
    border-color: rgba(111, 66, 198, .2) !important;
    background: #fff !important;
    box-shadow: 0 22px 52px rgba(54, 22, 93, .1) !important;
  }
}

@media (max-width: 1023px) {
  body.cdx2-body .cdx2-faq-layout {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  body.cdx2-body .cdx2-faq-intro {
    position: static;
  }
}

@media (max-width: 767px) {
  body.cdx2-body .cdx2-faq-intro .cdx2-display {
    max-width: 9ch !important;
    font-size: clamp(2.8rem, 13vw, 4rem) !important;
  }

  body.cdx2-body .cdx2-faq summary,
  body.cdx2-body .cdx2-faq details[open] summary {
    min-height: 88px !important;
    grid-template-columns: 36px minmax(0, 1fr) 40px !important;
    gap: .7rem !important;
    padding: .8rem !important;
  }

  body.cdx2-body .cdx2-faq summary::before { width: 34px; height: 34px; }

  body.cdx2-body .cdx2-faq summary i,
  body.cdx2-body .cdx2-faq details[open] summary i {
    width: 40px !important;
    height: 40px !important;
  }

  body.cdx2-body .cdx2-faq details > p,
  body.cdx2-body .cdx2-faq details[open] > p {
    margin: 0 .8rem 0 3.9rem !important;
  }
}

/* FAQ editorial system v36. */
body.cdx2-body .cdx2-faq {
  background:
    linear-gradient(rgba(111, 66, 198, .035) 1px, transparent 1px),
    radial-gradient(circle at 90% 8%, rgba(131, 46, 255, .12), transparent 28rem),
    #eee7f7 !important;
  background-size: 100% 72px, auto, auto;
}

body.cdx2-body .cdx2-faq-layout {
  grid-template-columns: minmax(330px, .76fr) minmax(540px, 1.24fr) !important;
  gap: clamp(3rem, 7vw, 7rem) !important;
}

body.cdx2-body .cdx2-faq-intro {
  padding: .5rem 0 0;
}

body.cdx2-body .cdx2-faq-intro .cdx2-kicker {
  color: #832eff !important;
}

body.cdx2-body .cdx2-faq-intro .cdx2-display {
  max-width: 8.6ch !important;
  margin-top: clamp(1.5rem, 3vw, 2.5rem) !important;
  font-size: clamp(3.6rem, 5.1vw, 6rem) !important;
  line-height: .9 !important;
  letter-spacing: -.055em !important;
}

body.cdx2-body .cdx2-faq-intro .cdx2-display > span {
  display: block;
}

body.cdx2-body .cdx2-faq-intro .cdx2-display > span:last-child {
  color: #60407e;
}

body.cdx2-body .cdx2-faq-intro > .cdx2-text-link {
  width: max-content;
  min-height: 48px;
  margin-top: 1.8rem !important;
  padding: .6rem .65rem .6rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  color: #190733 !important;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(54, 22, 93, .12);
  border-radius: 8px;
  text-decoration: none;
}

body.cdx2-body .cdx2-faq-intro > .cdx2-text-link span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #190733;
  border-radius: 6px;
}

body.cdx2-body .cdx2-faq-note {
  max-width: 420px;
  margin-top: 1rem;
  padding: 1.1rem 4.25rem 1.1rem 1.15rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #190733, #301052);
  box-shadow: 0 18px 42px rgba(54, 22, 93, .16);
}

body.cdx2-body .cdx2-faq-note i {
  width: 42px;
  height: 42px;
  color: #190733;
  background: var(--cdx2-mint);
  border-radius: 7px;
}

body.cdx2-body .cdx2-faq-list {
  gap: .7rem;
}

body.cdx2-body .cdx2-faq details,
body.cdx2-body .cdx2-faq details[open],
body.cdx2-body .cdx2-faq details[open]:hover {
  overflow: hidden;
  border: 1px solid rgba(54, 22, 93, .1) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, .76) !important;
  box-shadow: 0 16px 40px rgba(54, 22, 93, .065) !important;
  transform: none !important;
}

body.cdx2-body .cdx2-faq summary {
  min-height: 102px !important;
  grid-template-columns: 44px minmax(0, 1fr) 46px !important;
  gap: 1.1rem !important;
  padding: 1rem 1.15rem !important;
  color: #190733 !important;
  font-size: clamp(1.02rem, 1.55vw, 1.25rem) !important;
  font-weight: 560;
  text-wrap: balance;
}

body.cdx2-body .cdx2-faq summary::before {
  width: 40px;
  height: 40px;
  color: #6f42c6 !important;
  background: #f1e9fc;
  border: 1px solid rgba(111, 66, 198, .15);
  border-radius: 7px;
}

body.cdx2-body .cdx2-faq summary i,
body.cdx2-body .cdx2-faq details[open] summary i {
  width: 44px !important;
  height: 44px !important;
  color: #fff !important;
  background: #190733 !important;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(25, 7, 51, .16);
}

body.cdx2-body .cdx2-faq details[open] {
  border-color: rgba(83, 177, 130, .3) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(226, 248, 237, .72)) !important;
  box-shadow: 0 22px 52px rgba(54, 22, 93, .09), inset 4px 0 #8cd9b3 !important;
}

body.cdx2-body .cdx2-faq details[open] summary::before {
  color: #195f42 !important;
  background: #dff6e9;
  border-color: rgba(83, 177, 130, .24);
}

body.cdx2-body .cdx2-faq details[open] summary i {
  color: #190733 !important;
  background: var(--cdx2-mint) !important;
}

body.cdx2-body .cdx2-faq details > p,
body.cdx2-body .cdx2-faq details[open] > p {
  max-width: none;
  margin: 0 1.15rem 0 4.85rem !important;
  padding: 0 0 1.35rem !important;
  color: #5f5272 !important;
  border-top: 1px solid rgba(54, 22, 93, .09);
  padding-top: 1rem !important;
  line-height: 1.65;
}

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-faq details:not([open]):hover {
    transform: translateY(-3px) !important;
    border-color: rgba(111, 66, 198, .2) !important;
    background: #fff !important;
    box-shadow: 0 22px 52px rgba(54, 22, 93, .1) !important;
  }

  body.cdx2-body .cdx2-faq-intro > .cdx2-text-link:hover,
  body.cdx2-body .cdx2-faq-note:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 1023px) {
  body.cdx2-body .cdx2-faq-layout {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  body.cdx2-body .cdx2-faq-intro .cdx2-display {
    max-width: 10ch !important;
  }
}

@media (max-width: 767px) {
  body.cdx2-body .cdx2-faq-intro .cdx2-display {
    max-width: 9ch !important;
    font-size: clamp(2.8rem, 13vw, 4rem) !important;
  }

  body.cdx2-body .cdx2-faq-note {
    max-width: none;
  }

  body.cdx2-body .cdx2-faq summary {
    min-height: 88px !important;
    grid-template-columns: 36px minmax(0, 1fr) 40px !important;
    gap: .7rem !important;
    padding: .8rem !important;
  }

  body.cdx2-body .cdx2-faq summary::before {
    width: 34px;
    height: 34px;
  }

  body.cdx2-body .cdx2-faq summary i,
  body.cdx2-body .cdx2-faq details[open] summary i {
    width: 40px !important;
    height: 40px !important;
  }

  body.cdx2-body .cdx2-faq details > p,
  body.cdx2-body .cdx2-faq details[open] > p {
    margin: 0 .8rem 0 3.9rem !important;
  }
}

/* Portfolio, process and FAQ refinement. */
body.cdx2-body .cdx2-work-grid {
  align-items: stretch;
}

body.cdx2-body .cdx2-case:nth-child(n) {
  grid-column: span 6;
}

body.cdx2-body .cdx2-case:nth-child(1),
body.cdx2-body .cdx2-case:nth-child(6) {
  grid-column: 1 / -1;
}

body.cdx2-body .cdx2-case:nth-child(n) .cdx2-case-media {
  aspect-ratio: 16 / 10 !important;
}

body.cdx2-body .cdx2-case:nth-child(1) .cdx2-case-media,
body.cdx2-body .cdx2-case:nth-child(6) .cdx2-case-media {
  aspect-ratio: 16 / 7 !important;
}

body.cdx2-body .cdx2-case:nth-child(1) .cdx2-case-info,
body.cdx2-body .cdx2-case:nth-child(6) .cdx2-case-info {
  align-items: center;
}

body.cdx2-body .cdx2-case:nth-child(1) h3,
body.cdx2-body .cdx2-case:nth-child(6) h3 {
  font-size: clamp(2rem, 3.8vw, 4.25rem) !important;
}

body.cdx2-body .cdx2-case {
  background: linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .58));
  box-shadow: 0 20px 55px rgba(54, 22, 93, .085), inset 0 1px rgba(255, 255, 255, .85);
}

body.cdx2-body .cdx2-process {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 12%, rgba(131, 46, 255, .23), transparent 26rem),
    radial-gradient(circle at 88% 82%, rgba(111, 66, 198, .16), transparent 30rem),
    #190733 !important;
}

body.cdx2-body .cdx2-process::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

body.cdx2-body .cdx2-process-layout {
  grid-template-columns: minmax(420px, .9fr) minmax(520px, 1.1fr) !important;
  gap: clamp(3rem, 6vw, 6rem) !important;
}

body.cdx2-body .cdx2-process-intro {
  top: 7.5rem;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: clamp(22px, 2.5vw, 32px);
  box-shadow: 0 26px 65px rgba(0, 0, 0, .16);
  backdrop-filter: blur(14px);
}

body.cdx2-body .cdx2-process .cdx2-display {
  font-size: clamp(2.75rem, 3.35vw, 3.75rem) !important;
  line-height: 1.02 !important;
  text-wrap: balance;
}

@media (min-width: 1024px) {
  body.cdx2-body .cdx2-process .cdx2-display > span {
    display: block;
    white-space: nowrap;
  }
}

/* Unified pill action system v50. Keep last in the cascade. */
body.cdx2-body :is(.cdx2-button, .cdx2-contact-link, .cdx2-menu-button) {
  border-radius: 999px !important;
}

body.cdx2-body .cdx2-hero-brief .cdx2-button {
  border-radius: 999px !important;
}

body.cdx2-body .cdx2-text-link {
  width: max-content;
  min-height: 54px;
  padding: .4rem .45rem .4rem 1.15rem !important;
  display: inline-flex;
  align-items: center;
  gap: 1.1rem !important;
  color: #190733 !important;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(54, 22, 93, .12) !important;
  border-radius: 999px !important;
  box-shadow: 0 12px 30px rgba(54, 22, 93, .08);
  text-decoration: none !important;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), background-color .35s ease, color .35s ease, box-shadow .35s ease !important;
}

body.cdx2-body .cdx2-text-link > span {
  width: 40px !important;
  height: 40px !important;
  flex: 0 0 40px;
  display: grid !important;
  place-items: center;
  color: #fff !important;
  background: #190733 !important;
  border: 0 !important;
  border-radius: 50% !important;
  line-height: 1;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), background-color .35s ease !important;
}

body.cdx2-body .cdx2-process .cdx2-text-link {
  color: #fff !important;
  background: rgba(255, 255, 255, .08) !important;
  border-color: rgba(255, 255, 255, .14) !important;
  box-shadow: none;
}

body.cdx2-body .cdx2-process .cdx2-text-link > span {
  color: #190733 !important;
  background: var(--cdx2-mint) !important;
}

body.cdx2-body .cdx2-faq-note {
  min-height: 76px;
  padding: .75rem 4.9rem .75rem 1.35rem !important;
  border-radius: 999px !important;
}

body.cdx2-body .cdx2-faq-note i,
body.cdx2-body .cdx2-faq summary i,
body.cdx2-body .cdx2-faq details[open] summary i {
  border-radius: 50% !important;
}

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-text-link:hover {
    color: #fff !important;
    background: #190733 !important;
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(54, 22, 93, .16);
  }

  body.cdx2-body .cdx2-text-link:hover > span {
    color: #190733 !important;
    background: var(--cdx2-mint) !important;
    transform: rotate(45deg);
  }

  body.cdx2-body .cdx2-process .cdx2-text-link:hover {
    color: #190733 !important;
    background: var(--cdx2-mint) !important;
  }
}

@media (max-width: 767px) {
  body.cdx2-body .cdx2-text-link {
    min-height: 50px;
    padding-left: 1rem !important;
  }

  body.cdx2-body .cdx2-text-link > span {
    width: 36px !important;
    height: 36px !important;
    flex-basis: 36px;
  }

  body.cdx2-body .cdx2-faq-note {
    min-height: 70px;
  }
}

body.cdx2-body .cdx2-process-status {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .8rem;
  align-items: center;
  color: rgba(255, 255, 255, .48);
  font-family: var(--codara-code);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.cdx2-body .cdx2-process-status i {
  height: 3px;
  grid-column: 1 / -1;
  grid-row: 2;
  overflow: hidden;
  background: rgba(255, 255, 255, .1);
  border-radius: 999px;
}

body.cdx2-body .cdx2-process-status i b {
  width: 20%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, #832eff, #d9c1ff);
  border-radius: inherit;
  box-shadow: 0 0 20px rgba(131, 46, 255, .7);
  transition: width .65s cubic-bezier(.16, 1, .3, 1);
}

body.cdx2-body .cdx2-process-status strong {
  color: #d9c1ff;
  font-family: var(--codara-code);
}

body.cdx2-body .cdx2-process-list {
  display: grid;
  gap: 1rem;
  border: 0 !important;
}

body.cdx2-body .cdx2-process-list li {
  position: relative;
  grid-template-columns: 58px 1fr !important;
  gap: 1.2rem !important;
  padding: clamp(1.6rem, 3vw, 2.35rem) !important;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: 22px;
  opacity: .58;
  transform: translateX(0);
  transition: opacity .45s ease, transform .55s cubic-bezier(.16, 1, .3, 1), background-color .45s ease, border-color .45s ease;
}

body.cdx2-body .cdx2-process-list li::after {
  content: "";
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  transition: background-color .35s ease, box-shadow .35s ease;
}

body.cdx2-body .cdx2-process-list li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #d9c1ff !important;
  background: rgba(131, 46, 255, .12);
  border: 1px solid rgba(185, 138, 255, .22);
  border-radius: 50%;
}

body.cdx2-body .cdx2-process-list h3 {
  margin-bottom: .65rem !important;
  font-size: clamp(1.75rem, 2.8vw, 3rem) !important;
}

body.cdx2-body .cdx2-process-list li.is-active {
  opacity: 1;
  transform: translateX(-10px);
  background: linear-gradient(120deg, rgba(131, 46, 255, .17), rgba(255, 255, 255, .065));
  border-color: rgba(185, 138, 255, .28) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .14);
}

body.cdx2-body .cdx2-process-list li.is-active::after {
  background: #b98aff;
  box-shadow: 0 0 16px rgba(185, 138, 255, .9);
}

body.cdx2-body .cdx2-faq {
  position: relative;
  background:
    radial-gradient(circle at 88% 10%, rgba(131, 46, 255, .1), transparent 24rem),
    #eee7f7 !important;
}

body.cdx2-body .cdx2-faq-layout {
  grid-template-columns: minmax(300px, .65fr) minmax(520px, 1fr) !important;
  gap: clamp(3rem, 8vw, 8rem) !important;
  align-items: start;
}

body.cdx2-body .cdx2-faq-intro {
  position: sticky;
  top: 8rem;
}

body.cdx2-body .cdx2-faq-note {
  position: relative;
  max-width: 380px;
  margin-top: clamp(3rem, 7vw, 5rem);
  padding: 1.25rem 4rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  color: rgba(255, 255, 255, .62);
  background: #190733;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(54, 22, 93, .16);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s ease;
}

body.cdx2-body .cdx2-faq-note strong {
  color: #fff;
  font-family: var(--codara-code);
  font-size: 1rem;
}

body.cdx2-body .cdx2-faq-note i {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #190733;
  background: #d9c1ff;
  border-radius: 50%;
  font-style: normal;
  transform: translateY(-50%);
}

body.cdx2-body .cdx2-faq-list {
  display: grid;
  gap: .8rem;
  counter-reset: cdxFaq;
}

body.cdx2-body .cdx2-faq details {
  overflow: hidden;
  background: rgba(255, 255, 255, .66) !important;
  border: 1px solid rgba(54, 22, 93, .12) !important;
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(54, 22, 93, .045);
  counter-increment: cdxFaq;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), background-color .35s ease, border-color .35s ease, box-shadow .45s ease;
}

body.cdx2-body .cdx2-faq summary {
  min-height: 112px !important;
  padding: 1.2rem 1.2rem 1.2rem 1.35rem !important;
  display: grid !important;
  grid-template-columns: 46px 1fr 48px !important;
  gap: 1rem !important;
  align-items: center;
  border: 0 !important;
  font-size: clamp(1rem, 1.8vw, 1.35rem) !important;
  line-height: 1.35 !important;
}

body.cdx2-body .cdx2-faq summary::before {
  content: "0" counter(cdxFaq);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #6f42c6;
  background: #eee7f7;
  border: 1px solid rgba(131, 46, 255, .15);
  border-radius: 50%;
  font-family: var(--codara-code);
  font-size: .66rem;
  font-weight: 700;
}

body.cdx2-body .cdx2-faq summary i {
  width: 46px !important;
  height: 46px !important;
  color: #fff !important;
  background: #832eff !important;
  box-shadow: 0 10px 24px rgba(131, 46, 255, .2);
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), background-color .35s ease;
}

body.cdx2-body .cdx2-faq summary i::before,
body.cdx2-body .cdx2-faq summary i::after {
  width: 14px !important;
  height: 2px !important;
  background: #fff !important;
}

body.cdx2-body .cdx2-faq summary i::before {
  transform: translate(-50%, -50%) !important;
}

body.cdx2-body .cdx2-faq summary i::after {
  transform: translate(-50%, -50%) rotate(90deg) !important;
}

body.cdx2-body .cdx2-faq details > p {
  max-width: 720px;
  margin: 0 !important;
  padding: 0 5rem 1.6rem 6.4rem !important;
  color: #6e5a88 !important;
  font-size: 1rem;
}

body.cdx2-body .cdx2-faq details[open] {
  transform: translateX(-8px);
  background: #fff !important;
  border-color: rgba(131, 46, 255, .28) !important;
  box-shadow: 0 24px 60px rgba(54, 22, 93, .12);
}

body.cdx2-body .cdx2-faq details[open] summary i {
  background: #190733 !important;
  transform: none !important;
}

body.cdx2-body .cdx2-faq details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg) !important;
}

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-process-list li:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, .075);
    border-color: rgba(185, 138, 255, .2) !important;
  }

  body.cdx2-body .cdx2-faq-note:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 60px rgba(54, 22, 93, .22);
  }

  body.cdx2-body .cdx2-faq details:hover {
    transform: translateX(-5px);
    background: rgba(255, 255, 255, .9) !important;
    border-color: rgba(131, 46, 255, .22) !important;
  }
}

@media (max-width: 1023px) {
  body.cdx2-body .cdx2-case:nth-child(n) { grid-column: span 6; }
  body.cdx2-body .cdx2-case:nth-child(1),
  body.cdx2-body .cdx2-case:nth-child(6) { grid-column: 1 / -1; }

  body.cdx2-body .cdx2-process-layout,
  body.cdx2-body .cdx2-faq-layout {
    grid-template-columns: 1fr !important;
  }

  body.cdx2-body .cdx2-process-intro,
  body.cdx2-body .cdx2-faq-intro {
    position: static;
  }
}

@media (max-width: 767px) {
  body.cdx2-body .cdx2-case:nth-child(n) { grid-column: auto !important; }
  body.cdx2-body .cdx2-case:nth-child(n) .cdx2-case-media { aspect-ratio: 4 / 3 !important; }

  body.cdx2-body .cdx2-process-intro {
    padding: 1.35rem;
    border-radius: 20px;
  }

  body.cdx2-body .cdx2-process-status { margin-top: 2.5rem; }

  body.cdx2-body .cdx2-process-list li,
  body.cdx2-body .cdx2-process-list li.is-active {
    grid-template-columns: 44px 1fr !important;
    gap: .9rem !important;
    padding: 1.25rem !important;
    border-radius: 18px;
    transform: none;
    opacity: 1;
  }

  body.cdx2-body .cdx2-process-list li > span {
    width: 40px;
    height: 40px;
  }

  body.cdx2-body .cdx2-faq-note { max-width: none; }

  body.cdx2-body .cdx2-faq summary {
    min-height: 92px !important;
    grid-template-columns: 38px 1fr 42px !important;
    gap: .75rem !important;
    padding: 1rem !important;
    font-size: 1rem !important;
  }

  body.cdx2-body .cdx2-faq summary::before {
    width: 36px;
    height: 36px;
  }

  body.cdx2-body .cdx2-faq summary i {
    width: 40px !important;
    height: 40px !important;
  }

  body.cdx2-body .cdx2-faq details,
  body.cdx2-body .cdx2-faq details[open] { transform: none; }

  body.cdx2-body .cdx2-faq details > p {
    padding: 0 1rem 1.3rem 3.95rem !important;
    font-size: .94rem;
  }
}

@media (max-width: 1023px) {
  body.cdx2-body .cdx2-hero-grid {
    grid-template-columns: 1fr !important;
  }

  body.cdx2-body .cdx2-hero-media,
  body.cdx2-body .cdx2-hero-copy {
    min-height: 480px !important;
  }

  body.cdx2-body .cdx2-challenge {
    grid-template-columns: 58px minmax(220px, .8fr) 1fr 42px !important;
  }

  body.cdx2-body .cdx2-case:nth-child(n) { grid-column: span 6; }
  body.cdx2-body .cdx2-case:nth-child(1) { grid-column: 1 / -1; }
  body.cdx2-body .cdx2-case:nth-child(2) .cdx2-case-media,
  body.cdx2-body .cdx2-case:nth-child(5) .cdx2-case-media { aspect-ratio: 4 / 3 !important; }
}

@media (max-width: 767px) {
  body.cdx2-body .cdx2-hero-media {
    min-height: auto !important;
    aspect-ratio: 4 / 3;
    border-radius: 20px !important;
  }

  body.cdx2-body .cdx2-hero-copy {
    min-height: 390px !important;
    padding: 1.5rem !important;
    border-radius: 20px;
  }

  body.cdx2-body .cdx2-hero-copy > p {
    margin-top: 2.5rem !important;
    font-size: clamp(1.55rem, 7vw, 2rem) !important;
  }

  body.cdx2-body .cdx2-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.cdx2-body .cdx2-metric {
    min-height: 180px !important;
    border-radius: 17px;
  }

  body.cdx2-body .cdx2-metric strong { font-size: clamp(2.2rem, 12vw, 3.4rem) !important; }
  body.cdx2-body .cdx2-metric span { font-size: .84rem; }

  body.cdx2-body .cdx2-challenge {
    grid-template-columns: 44px 1fr !important;
    gap: .9rem !important;
    padding: 1.25rem !important;
    border-radius: 18px;
  }

  body.cdx2-body .cdx2-challenge > span {
    width: 40px;
    height: 40px;
  }

  body.cdx2-body .cdx2-challenge h3 { font-size: clamp(1.45rem, 7vw, 2rem) !important; }
  body.cdx2-body .cdx2-challenge p { grid-column: 2 !important; font-size: .95rem !important; }
  body.cdx2-body .cdx2-challenge::after { display: none; }

  body.cdx2-body .cdx2-work-grid { grid-template-columns: 1fr !important; }
  body.cdx2-body .cdx2-case:nth-child(n) { grid-column: auto !important; }
  body.cdx2-body .cdx2-case-media,
  body.cdx2-body .cdx2-case-wide .cdx2-case-media,
  body.cdx2-body .cdx2-case:nth-child(2) .cdx2-case-media,
  body.cdx2-body .cdx2-case:nth-child(5) .cdx2-case-media { aspect-ratio: 4 / 3 !important; }
}

@media (max-width: 374px) {
  body.cdx2-body .cdx2-metrics { grid-template-columns: 1fr !important; }
}

@media (prefers-reduced-motion: reduce) {
  body.cdx2-body .cdx2-case,
  body.cdx2-body .cdx2-case-media img,
  body.cdx2-body .cdx2-challenge,
  body.cdx2-body .cdx2-metric {
    transition: none !important;
  }
}

/* Homepage lower system v11: editorial studio composition. */
body.cdx2-body {
  --cdx2-coral: #ff7448;
  --cdx2-mint: #b9efd1;
  --cdx2-night: #150627;
  --cdx2-curve: cubic-bezier(.16, 1, .3, 1);
}

body.cdx2-body .cdx2-section {
  padding-block: clamp(5.5rem, 9vw, 9rem) !important;
}

body.cdx2-body .cdx2-section-head {
  margin-bottom: clamp(3rem, 6vw, 5.5rem) !important;
}

body.cdx2-body .cdx2-section-head .cdx2-display {
  max-width: 16ch;
  text-wrap: balance;
}

body.cdx2-body .cdx2-section .cdx2-kicker {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .66rem !important;
  letter-spacing: .11em !important;
}

body.cdx2-body .cdx2-section .cdx2-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
}

/* Outcome rail */
body.cdx2-body .cdx2-metrics {
  margin-top: clamp(1rem, 2vw, 1.5rem) !important;
  padding: .7rem;
  gap: .7rem !important;
  background: rgba(255, 255, 255, .4);
  border: 1px solid rgba(54, 22, 93, .1);
  border-radius: clamp(22px, 2.5vw, 32px);
  box-shadow: 0 24px 70px rgba(54, 22, 93, .08);
}

body.cdx2-body .cdx2-metric {
  position: relative;
  isolation: isolate;
  min-height: clamp(190px, 17vw, 250px) !important;
  padding: clamp(1.35rem, 2.2vw, 2rem) !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: clamp(17px, 1.7vw, 23px) !important;
  box-shadow: inset 0 0 0 1px rgba(54, 22, 93, .09);
  transition: transform .55s var(--cdx2-curve), box-shadow .55s ease !important;
}

body.cdx2-body .cdx2-metric::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 150px;
  aspect-ratio: 1;
  top: -82px;
  right: -72px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .13;
  box-shadow: 0 0 0 24px currentColor, 0 0 0 48px currentColor;
}

body.cdx2-body .cdx2-metric:nth-child(1) {
  color: #fff !important;
  background: var(--cdx2-night) !important;
  box-shadow: none;
}

body.cdx2-body .cdx2-metric:nth-child(2) { background: #e9dcff !important; }
body.cdx2-body .cdx2-metric:nth-child(3) { background: var(--cdx2-mint) !important; }
body.cdx2-body .cdx2-metric:nth-child(4) { background: #ffe0d5 !important; }

body.cdx2-body .cdx2-metric strong {
  font-size: clamp(3rem, 4.8vw, 5rem) !important;
  line-height: .85 !important;
}

body.cdx2-body .cdx2-metric:nth-child(1) :is(strong, span) { color: #fff !important; }
body.cdx2-body .cdx2-metric span { max-width: 21ch; line-height: 1.45; }

/* Problems as editorial decision rows */
body.cdx2-body .cdx2-challenges {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 116, 72, .1), transparent 24rem),
    #faf7fc !important;
}

body.cdx2-body .cdx2-challenge-list {
  padding: .7rem;
  display: grid;
  gap: .7rem !important;
  background: #ece5f5;
  border-radius: clamp(24px, 3vw, 38px);
}

body.cdx2-body .cdx2-challenge {
  position: relative;
  min-height: 180px;
  grid-template-columns: 64px minmax(270px, .85fr) minmax(300px, 1fr) 48px !important;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3.5rem) !important;
  padding: clamp(1.5rem, 3.2vw, 3rem) !important;
  overflow: hidden;
  background: rgba(255, 255, 255, .82) !important;
  border: 0 !important;
  border-radius: clamp(18px, 2vw, 28px) !important;
  box-shadow: inset 0 0 0 1px rgba(54, 22, 93, .08);
  transition: color .55s var(--cdx2-curve), background-color .55s var(--cdx2-curve), transform .55s var(--cdx2-curve) !important;
}

body.cdx2-body .cdx2-challenge > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #5e299e !important;
  background: #eee1ff;
  border: 0 !important;
  border-radius: 50%;
}

body.cdx2-body .cdx2-challenge h3 {
  max-width: 16ch;
  margin: 0 !important;
  font-size: clamp(1.65rem, 2.35vw, 2.8rem) !important;
  line-height: 1.04 !important;
  text-wrap: balance;
}

body.cdx2-body .cdx2-challenge p {
  max-width: 52ch;
  margin: 0 !important;
  font-size: clamp(.98rem, 1.15vw, 1.12rem) !important;
  line-height: 1.65;
  text-wrap: pretty;
}

body.cdx2-body .cdx2-challenge::after {
  content: "↗" !important;
  width: 44px !important;
  height: 44px !important;
  display: grid !important;
  place-items: center;
  color: #190733;
  background: #f0e6ff;
  border: 0 !important;
  border-radius: 50%;
  transform: none !important;
}

/* Capability bento */
body.cdx2-body .cdx2-services {
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(54, 22, 93, .055) 50%, transparent 50.05%),
    #eee8f5 !important;
}

body.cdx2-body .cdx2-service-grid {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  gap: .85rem !important;
}

body.cdx2-body .cdx2-service {
  position: relative;
  isolation: isolate;
  min-height: clamp(370px, 31vw, 470px) !important;
  grid-column: span 6;
  padding: clamp(1.6rem, 3vw, 2.8rem) !important;
  overflow: hidden;
  background: rgba(255, 255, 255, .78) !important;
  border: 0 !important;
  border-radius: clamp(20px, 2.2vw, 30px) !important;
  box-shadow: inset 0 0 0 1px rgba(54, 22, 93, .1), 0 18px 55px rgba(54, 22, 93, .06);
  transition: transform .65s var(--cdx2-curve), box-shadow .65s ease, background-color .65s ease !important;
}

body.cdx2-body .cdx2-service:nth-child(1) { grid-column: span 7; }
body.cdx2-body .cdx2-service:nth-child(2) { grid-column: span 5; background: var(--cdx2-mint) !important; }
body.cdx2-body .cdx2-service:nth-child(5) { background: #ffe1d7 !important; }

body.cdx2-body .cdx2-service::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 210px;
  aspect-ratio: 1;
  right: -92px;
  bottom: -104px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .1;
  box-shadow: 0 0 0 34px currentColor, 0 0 0 68px currentColor;
}

body.cdx2-body .cdx2-service-featured {
  background:
    radial-gradient(circle at 86% 20%, rgba(131, 46, 255, .32), transparent 22rem),
    var(--cdx2-night) !important;
  box-shadow: 0 26px 70px rgba(25, 7, 51, .18);
}

body.cdx2-body .cdx2-service-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(131, 46, 255, .1);
  border-radius: 50%;
}

body.cdx2-body .cdx2-service-featured .cdx2-service-number {
  color: #fff !important;
  background: rgba(255, 255, 255, .11);
}

body.cdx2-body .cdx2-service h3 {
  max-width: 14ch;
  font-size: clamp(2rem, 3.3vw, 3.75rem) !important;
  line-height: .96 !important;
  text-wrap: balance;
}

body.cdx2-body .cdx2-service p { max-width: 48ch; text-wrap: pretty; }

body.cdx2-body .cdx2-service ul {
  gap: .45rem .55rem !important;
  border: 0 !important;
}

body.cdx2-body .cdx2-service li {
  padding: .55rem .72rem;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(54, 22, 93, .1);
  border-radius: 999px;
}

body.cdx2-body .cdx2-service-featured li {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .13);
}

/* Portfolio as a cinematic contact sheet */
body.cdx2-body .cdx2-work {
  background:
    radial-gradient(circle at 10% 4%, rgba(185, 239, 209, .3), transparent 25rem),
    #f8f5fb !important;
}

body.cdx2-body .cdx2-work-grid {
  gap: clamp(1rem, 2vw, 1.6rem) !important;
}

body.cdx2-body .cdx2-case {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--cdx2-night) !important;
  border: 0 !important;
  border-radius: clamp(20px, 2.4vw, 32px) !important;
  box-shadow: 0 24px 70px rgba(25, 7, 51, .14);
  transition: transform .7s var(--cdx2-curve), box-shadow .7s ease !important;
}

body.cdx2-body .cdx2-case-media {
  margin: 0 !important;
  overflow: hidden;
  border-radius: inherit !important;
}

body.cdx2-body .cdx2-case:nth-child(1) .cdx2-case-media,
body.cdx2-body .cdx2-case:nth-child(6) .cdx2-case-media {
  aspect-ratio: 16 / 8 !important;
}

body.cdx2-body .cdx2-case:nth-child(n+2):nth-child(-n+5) .cdx2-case-media {
  aspect-ratio: 16 / 11 !important;
}

body.cdx2-body .cdx2-case-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 35% 0 0;
  padding: 0;
  background: linear-gradient(transparent, rgba(16, 4, 30, .84));
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  pointer-events: none;
}

body.cdx2-body .cdx2-case-media img {
  filter: saturate(.93) contrast(1.02);
  transition: transform 1.05s var(--cdx2-curve), filter .65s ease !important;
}

body.cdx2-body .cdx2-case-info {
  position: absolute;
  z-index: 3;
  left: clamp(.8rem, 1.5vw, 1.3rem);
  right: clamp(.8rem, 1.5vw, 1.3rem);
  bottom: clamp(.8rem, 1.5vw, 1.3rem);
  min-height: 112px;
  padding: clamp(1rem, 2vw, 1.5rem) !important;
  color: #fff !important;
  background: linear-gradient(110deg, rgba(21, 6, 39, .94), rgba(41, 13, 69, .88));
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: clamp(15px, 1.5vw, 21px);
  box-shadow: 0 18px 45px rgba(7, 1, 14, .24);
}

body.cdx2-body .cdx2-case-info h3 {
  color: #fff !important;
  font-size: clamp(1.6rem, 2.7vw, 3.2rem) !important;
  line-height: .98 !important;
  text-wrap: balance;
}

body.cdx2-body .cdx2-case-info > div > span { color: #d7bfef !important; }

body.cdx2-body .cdx2-case-arrow {
  width: 48px !important;
  height: 48px !important;
  color: #190733 !important;
  background: var(--cdx2-mint) !important;
  border: 0 !important;
  transition: transform .55s var(--cdx2-curve), background-color .4s ease;
}

/* Process refinement */
body.cdx2-body .cdx2-process-list li:nth-child(2n) {
  background: rgba(255, 255, 255, .065);
}

body.cdx2-body .cdx2-process-list li.is-active {
  border-color: rgba(185, 239, 209, .34) !important;
  box-shadow: 0 24px 62px rgba(0, 0, 0, .2), inset 3px 0 var(--cdx2-mint);
}

body.cdx2-body .cdx2-process-list li.is-active::after {
  background: var(--cdx2-mint);
  box-shadow: 0 0 18px rgba(185, 239, 209, .82);
}

/* Principles in an asymmetric standards matrix */
body.cdx2-body .cdx2-standards {
  background:
    radial-gradient(circle at 92% 12%, rgba(185, 239, 209, .58), transparent 26rem),
    #eef6f2 !important;
}

body.cdx2-body .cdx2-standards > .cdx2-shell > .cdx2-display {
  max-width: 13ch;
  margin-bottom: clamp(3rem, 6vw, 5.5rem) !important;
  text-wrap: balance;
}

body.cdx2-body .cdx2-standard-grid {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  gap: .85rem !important;
}

body.cdx2-body .cdx2-standard-grid article {
  position: relative;
  min-height: clamp(260px, 24vw, 340px) !important;
  grid-column: span 6;
  padding: clamp(1.5rem, 3vw, 2.6rem) !important;
  overflow: hidden;
  background: rgba(255, 255, 255, .82) !important;
  border: 0 !important;
  border-radius: clamp(19px, 2vw, 28px) !important;
  box-shadow: inset 0 0 0 1px rgba(36, 77, 58, .1), 0 20px 55px rgba(36, 77, 58, .06);
  transition: transform .6s var(--cdx2-curve), box-shadow .6s ease !important;
}

body.cdx2-body .cdx2-standard-grid article:nth-child(1),
body.cdx2-body .cdx2-standard-grid article:nth-child(4) { grid-column: span 7; }
body.cdx2-body .cdx2-standard-grid article:nth-child(2),
body.cdx2-body .cdx2-standard-grid article:nth-child(3) { grid-column: span 5; }

body.cdx2-body .cdx2-standard-grid article:nth-child(3) {
  color: #fff !important;
  background: var(--cdx2-night) !important;
  box-shadow: 0 26px 65px rgba(25, 7, 51, .16);
}

body.cdx2-body .cdx2-standard-grid article:nth-child(3) :is(h3, p, span) { color: #fff !important; }

body.cdx2-body .cdx2-standard-grid article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #e4f5eb;
  border-radius: 50%;
}

body.cdx2-body .cdx2-standard-grid article:nth-child(3) > span { background: rgba(255, 255, 255, .12); }

body.cdx2-body .cdx2-standard-grid h3 {
  max-width: 17ch;
  font-size: clamp(1.7rem, 2.6vw, 3rem) !important;
  line-height: 1.02 !important;
  text-wrap: balance;
}

body.cdx2-body .cdx2-standard-grid p { max-width: 42ch; text-wrap: pretty; }

/* FAQ interaction surface */
body.cdx2-body .cdx2-faq-layout {
  grid-template-columns: minmax(320px, .7fr) minmax(520px, 1.3fr) !important;
  gap: clamp(3rem, 8vw, 8rem) !important;
}

body.cdx2-body .cdx2-faq-intro {
  top: 7rem;
  align-self: start;
}

body.cdx2-body .cdx2-faq details {
  background: rgba(255, 255, 255, .76) !important;
  border: 0 !important;
  border-radius: clamp(17px, 1.8vw, 24px) !important;
  box-shadow: inset 0 0 0 1px rgba(54, 22, 93, .1), 0 16px 42px rgba(54, 22, 93, .055);
  transition: transform .55s var(--cdx2-curve), background-color .5s ease, box-shadow .5s ease !important;
}

body.cdx2-body .cdx2-faq details[open] {
  color: #fff !important;
  background: var(--cdx2-night) !important;
  box-shadow: 0 26px 70px rgba(25, 7, 51, .18);
}

body.cdx2-body .cdx2-faq details[open] summary { color: #fff !important; }
body.cdx2-body .cdx2-faq details[open] summary::before { color: var(--cdx2-mint) !important; }
body.cdx2-body .cdx2-faq details[open] p { color: rgba(255, 255, 255, .7) !important; }
body.cdx2-body .cdx2-faq details[open] summary i { background: var(--cdx2-coral) !important; }

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-metric:hover,
  body.cdx2-body .cdx2-service:hover,
  body.cdx2-body .cdx2-standard-grid article:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 28px 70px rgba(54, 22, 93, .12);
  }

  body.cdx2-body .cdx2-challenge:hover {
    color: #fff !important;
    background: var(--cdx2-night) !important;
    transform: translateX(8px) !important;
  }

  body.cdx2-body .cdx2-challenge:hover :is(h3, p) { color: #fff !important; }
  body.cdx2-body .cdx2-challenge:hover > span { color: #fff !important; background: rgba(255, 255, 255, .11); }
  body.cdx2-body .cdx2-challenge:hover::after { color: #190733; background: var(--cdx2-mint); }

  body.cdx2-body .cdx2-case:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 36px 90px rgba(25, 7, 51, .22);
  }

  body.cdx2-body .cdx2-case:hover .cdx2-case-media img {
    transform: scale(1.035) !important;
    filter: saturate(1.04) contrast(1.03);
  }

  body.cdx2-body .cdx2-case:hover .cdx2-case-arrow { transform: rotate(45deg); }
}

@media (max-width: 1023px) {
  body.cdx2-body .cdx2-service:nth-child(n),
  body.cdx2-body .cdx2-standard-grid article:nth-child(n) { grid-column: span 6; }

  body.cdx2-body .cdx2-challenge {
    grid-template-columns: 54px minmax(220px, .8fr) 1fr !important;
  }

  body.cdx2-body .cdx2-challenge::after { display: none !important; }

  body.cdx2-body .cdx2-faq-layout {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
}

@media (max-width: 767px) {
  body.cdx2-body .cdx2-section { padding-block: clamp(4.5rem, 18vw, 6rem) !important; }
  body.cdx2-body .cdx2-section-head { margin-bottom: 2.5rem !important; }

  body.cdx2-body .cdx2-metrics { padding: .45rem; gap: .45rem !important; border-radius: 20px; }
  body.cdx2-body .cdx2-metric { min-height: 168px !important; padding: 1.15rem !important; }
  body.cdx2-body .cdx2-metric::before { transform: scale(.72); transform-origin: top right; }

  body.cdx2-body .cdx2-challenge-list { padding: .45rem; gap: .45rem !important; border-radius: 20px; }
  body.cdx2-body .cdx2-challenge {
    min-height: 0;
    grid-template-columns: 42px 1fr !important;
    padding: 1.25rem !important;
  }
  body.cdx2-body .cdx2-challenge > span { width: 40px; height: 40px; }
  body.cdx2-body .cdx2-challenge p { grid-column: 2 !important; }

  body.cdx2-body .cdx2-service-grid,
  body.cdx2-body .cdx2-standard-grid { grid-template-columns: 1fr !important; }
  body.cdx2-body .cdx2-service:nth-child(n),
  body.cdx2-body .cdx2-standard-grid article:nth-child(n) { grid-column: auto; }
  body.cdx2-body .cdx2-service { min-height: 355px !important; }

  body.cdx2-body .cdx2-case:nth-child(n) .cdx2-case-media { aspect-ratio: 4 / 3 !important; }
  body.cdx2-body .cdx2-case-info { min-height: 92px; }
  body.cdx2-body .cdx2-case-info h3 { font-size: clamp(1.45rem, 7vw, 2rem) !important; }
  body.cdx2-body .cdx2-case-arrow { width: 42px !important; height: 42px !important; }

  body.cdx2-body .cdx2-standard-grid article { min-height: 250px !important; }
  body.cdx2-body .cdx2-faq details[open] { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  body.cdx2-body :is(.cdx2-metric, .cdx2-challenge, .cdx2-service, .cdx2-case, .cdx2-standard-grid article, .cdx2-faq details) {
    transition: none !important;
  }
}

/* Interaction QA v14: stable contrast, sticky process geometry and section motion. */
html.cdx2-js,
html.cdx2-js body.cdx2-body {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

body.cdx2-body .cdx2-process {
  overflow: visible !important;
}

body.cdx2-body .cdx2-process-intro {
  align-self: start;
}

@media (min-width: 1121px) {
  body.cdx2-body .cdx2-process-layout {
    padding-bottom: 2rem;
  }

  body.cdx2-body .cdx2-process-list {
    margin-bottom: 5rem !important;
  }

  body.cdx2-body .cdx2-process-intro {
    position: sticky !important;
    top: 7.25rem !important;
  }
}

@media (max-width: 1120px) {
  body.cdx2-body .cdx2-process-layout {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 2.25rem !important;
  }

  body.cdx2-body .cdx2-process-intro {
    position: static !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-service:not(.cdx2-service-featured):hover {
    color: var(--cdx2-night) !important;
    background: rgba(255, 255, 255, .9) !important;
  }

  body.cdx2-body .cdx2-service:nth-child(2):not(.cdx2-service-featured):hover {
    background: var(--cdx2-mint) !important;
  }

  body.cdx2-body .cdx2-service:nth-child(5):not(.cdx2-service-featured):hover {
    background: #ffe1d7 !important;
  }

  body.cdx2-body .cdx2-service:not(.cdx2-service-featured):hover :is(h3, ul, li) {
    color: var(--cdx2-night) !important;
  }

  body.cdx2-body .cdx2-service:not(.cdx2-service-featured):hover p {
    color: #66557f !important;
  }

  body.cdx2-body .cdx2-service:not(.cdx2-service-featured):hover li {
    background: rgba(255, 255, 255, .68);
    border-color: rgba(54, 22, 93, .12);
  }

  body.cdx2-body .cdx2-faq details[open]:hover {
    color: #fff !important;
    background: var(--cdx2-night) !important;
    border-color: rgba(185, 239, 209, .26) !important;
  }
}

.cdx2-js body.cdx2-body .cdx2-section[data-cdx2-section] > .cdx2-shell {
  opacity: .3;
  transform: translateY(42px) scale(.995);
  transition:
    opacity .8s var(--cdx2-curve),
    transform 1s var(--cdx2-curve);
  will-change: opacity, transform;
}

.cdx2-js body.cdx2-body .cdx2-section[data-cdx2-section].is-section-visible > .cdx2-shell {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.cdx2-js body.cdx2-body .cdx2-process[data-cdx2-section] > .cdx2-shell {
  transform: none !important;
  transition-property: opacity !important;
}

body.cdx2-body .cdx2-section[data-cdx2-section] {
  position: relative;
}

body.cdx2-body .cdx2-section[data-cdx2-section]::after {
  display: none !important;
}

@media (min-width: 1121px) {
  body.cdx2-body .cdx2-main {
    overflow: visible !important;
  }
}

body.cdx2-body .cdx2-section[data-cdx2-section].is-section-visible::after {
  display: none !important;
}

body.cdx2-body :is(a, button, summary):focus-visible {
  outline: 3px solid var(--cdx2-mint) !important;
  outline-offset: 4px;
}

@media (max-width: 767px) {
  body.cdx2-body .cdx2-section .cdx2-display {
    width: 100%;
    max-width: 100% !important;
    font-size: clamp(2.35rem, 11.5vw, 3.55rem) !important;
    line-height: 1 !important;
    text-wrap: balance;
  }

  body.cdx2-body .cdx2-section[data-cdx2-section]::after {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cdx2-js body.cdx2-body .cdx2-section[data-cdx2-section] > .cdx2-shell {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body.cdx2-body .cdx2-section[data-cdx2-section]::after {
    display: none !important;
  }
}

/* Process v21: static editorial sequence; no sticky or scroll-selected states. */
body.cdx2-body .cdx2-services {
  background: #eee8f5 !important;
}

body.cdx2-body .cdx2-process {
  overflow: hidden !important;
  border-radius: clamp(28px, 4vw, 58px) !important;
}

body.cdx2-body .cdx2-process-layout {
  display: block !important;
  padding-bottom: 0 !important;
}

body.cdx2-body .cdx2-process-intro {
  position: static !important;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr);
  grid-template-rows: auto auto 1fr;
  column-gap: clamp(3rem, 8vw, 8rem);
  row-gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(2rem, 4.5vw, 4.75rem) !important;
  background:
    radial-gradient(circle at 86% 16%, rgba(185, 239, 209, .12), transparent 18rem),
    rgba(255, 255, 255, .055) !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: clamp(24px, 3vw, 38px) !important;
  box-shadow: 0 30px 90px rgba(6, 0, 16, .2) !important;
  backdrop-filter: none !important;
}

body.cdx2-body .cdx2-process-intro .cdx2-kicker {
  grid-column: 1;
  grid-row: 1;
}

body.cdx2-body .cdx2-process .cdx2-display {
  max-width: 10ch !important;
  grid-column: 1;
  grid-row: 2 / 4;
  margin: 0 !important;
  font-size: clamp(3.2rem, 5.5vw, 6rem) !important;
  line-height: .92 !important;
}

body.cdx2-body .cdx2-process .cdx2-display > span {
  display: inline !important;
  white-space: normal !important;
}

body.cdx2-body .cdx2-process .cdx2-text-link {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  margin: 0 !important;
  color: var(--cdx2-mint) !important;
}

body.cdx2-body .cdx2-process-status {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  margin: clamp(2rem, 5vw, 5rem) 0 0 !important;
  padding: 1.2rem 1.35rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
}

body.cdx2-body .cdx2-process-status i b {
  width: 100% !important;
  background: linear-gradient(90deg, var(--cdx2-mint), #d9c1ff) !important;
}

body.cdx2-body .cdx2-process-status strong {
  color: #fff !important;
}

body.cdx2-body .cdx2-process-list {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: .9rem !important;
  margin: 0 !important;
}

body.cdx2-body .cdx2-process-list li,
body.cdx2-body .cdx2-process-list li.is-active {
  min-height: 250px;
  grid-column: span 4;
  grid-template-columns: 52px minmax(0, 1fr) !important;
  align-content: space-between;
  gap: 1.2rem !important;
  padding: clamp(1.5rem, 2.6vw, 2.5rem) !important;
  opacity: 1 !important;
  transform: none !important;
  background: rgba(255, 255, 255, .055) !important;
  border: 1px solid rgba(255, 255, 255, .11) !important;
  border-radius: clamp(20px, 2vw, 28px) !important;
  box-shadow: none !important;
}

body.cdx2-body .cdx2-process-list li:nth-child(1) {
  min-height: 285px;
  grid-column: span 7;
  background: linear-gradient(135deg, rgba(131, 46, 255, .2), rgba(255, 255, 255, .055)) !important;
}

body.cdx2-body .cdx2-process-list li:nth-child(2) {
  min-height: 285px;
  grid-column: span 5;
  background: rgba(185, 239, 209, .11) !important;
}

body.cdx2-body .cdx2-process-list li:nth-child(4) {
  background: rgba(217, 193, 255, .1) !important;
}

body.cdx2-body .cdx2-process-list li:nth-child(5) {
  background: rgba(255, 116, 72, .09) !important;
}

body.cdx2-body .cdx2-process-list li::after {
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, .28) !important;
  box-shadow: none !important;
}

body.cdx2-body .cdx2-process-list li > span {
  color: #fff !important;
  background: rgba(255, 255, 255, .08) !important;
  border-color: rgba(255, 255, 255, .14) !important;
}

body.cdx2-body .cdx2-process-list h3 {
  font-size: clamp(2rem, 3vw, 3.4rem) !important;
}

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-process-list li:hover,
  body.cdx2-body .cdx2-process-list li.is-active:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(185, 239, 209, .38) !important;
    box-shadow: 0 24px 60px rgba(4, 0, 12, .22) !important;
  }
}

@media (max-width: 1023px) {
  body.cdx2-body .cdx2-process-intro {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  body.cdx2-body .cdx2-process-intro :is(.cdx2-kicker, .cdx2-display, .cdx2-text-link, .cdx2-process-status) {
    grid-column: 1;
    grid-row: auto;
  }

  body.cdx2-body .cdx2-process .cdx2-display {
    max-width: 12ch !important;
  }

  body.cdx2-body .cdx2-process-status {
    margin-top: 1.5rem !important;
  }

  body.cdx2-body .cdx2-process-list li:nth-child(n) {
    min-height: 230px;
    grid-column: span 6;
  }

  body.cdx2-body .cdx2-process-list li:nth-child(5) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  body.cdx2-body .cdx2-process {
    border-radius: 26px !important;
  }

  body.cdx2-body .cdx2-process-intro {
    margin-bottom: .75rem;
    padding: 1.35rem !important;
  }

  body.cdx2-body .cdx2-process .cdx2-display {
    max-width: 11ch !important;
    font-size: clamp(2.5rem, 11.2vw, 3.55rem) !important;
  }

  body.cdx2-body .cdx2-process-list {
    grid-template-columns: 1fr;
    gap: .65rem !important;
  }

  body.cdx2-body .cdx2-process-list li:nth-child(n) {
    min-height: 0;
    grid-column: auto;
    padding: 1.25rem !important;
  }
}

/* Keep the cleanup layer last in the cascade. */
body.cdx2-body :is(
  .cdx2-metrics,
  .cdx2-challenge-list,
  .cdx2-service-grid,
  .cdx2-process-list,
  .cdx2-standard-grid,
  .cdx2-faq-list
) {
  border: 0 !important;
}

body.cdx2-body .cdx2-metric::before,
body.cdx2-body .cdx2-service::after,
body.cdx2-body .cdx2-hero-copy::after,
body.cdx2-body .cdx2-process::before {
  display: none !important;
}

body.cdx2-body .cdx2-process-intro {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  align-items: stretch;
}

@media (max-width: 1023px) {
  body.cdx2-body .cdx2-process-intro {
    grid-template-columns: 1fr;
  }
}

/* Interaction polish v25: scrollbar, portfolio captions and FAQ states. */
html {
  scrollbar-width: thin;
  scrollbar-color: #8f63d8 #f0eaf6;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  background: #f0eaf6;
}

html::-webkit-scrollbar-thumb {
  min-height: 56px;
  background: linear-gradient(180deg, #a87be8, #7441bd);
  background-clip: padding-box;
  border: 3px solid #f0eaf6;
  border-radius: 999px;
}

html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #9160da, #5e2da4);
  background-clip: padding-box;
}

html::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

body.cdx2-body .cdx2-case {
  --case-accent: 131, 46, 255;
  padding: .65rem !important;
  background: linear-gradient(155deg, rgba(255, 255, 255, .98), rgba(248, 244, 253, .94)) !important;
  border: 0 !important;
  box-shadow: 0 22px 65px rgba(54, 22, 93, .1), inset 0 1px rgba(255, 255, 255, .9) !important;
}

body.cdx2-body .cdx2-case:nth-child(3n + 2) { --case-accent: 38, 166, 132; }
body.cdx2-body .cdx2-case:nth-child(3n) { --case-accent: 231, 121, 66; }

body.cdx2-body .cdx2-case::before {
  z-index: 0;
  background: radial-gradient(460px circle at var(--case-x) var(--case-y), rgba(var(--case-accent), .13), transparent 64%);
  opacity: .42;
}

body.cdx2-body .cdx2-case-media {
  overflow: hidden;
  border-radius: clamp(16px, 2vw, 25px) !important;
}

body.cdx2-body .cdx2-case-media::after {
  display: grid !important;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0 !important;
  color: rgb(var(--case-accent)) !important;
  background: rgba(255, 255, 255, .9) !important;
  border: 1px solid rgba(var(--case-accent), .2) !important;
  box-shadow: 0 10px 26px rgba(54, 22, 93, .12);
  backdrop-filter: blur(10px);
}

body.cdx2-body .cdx2-case-media img {
  transform: scale(1.01) !important;
}

body.cdx2-body .cdx2-case-info {
  z-index: 1;
  position: static !important;
  min-height: 128px;
  margin: 0 !important;
  padding: clamp(1.15rem, 2vw, 1.65rem) clamp(.75rem, 1.3vw, 1.1rem) !important;
  color: var(--cdx2-night) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.cdx2-body .cdx2-case-info h3 {
  color: var(--cdx2-night) !important;
  font-size: clamp(1.65rem, 2.65vw, 3rem) !important;
}

body.cdx2-body .cdx2-case-info > div > span {
  color: rgb(var(--case-accent)) !important;
}

body.cdx2-body .cdx2-case-arrow {
  color: #fff !important;
  background: rgb(var(--case-accent)) !important;
  box-shadow: 0 10px 25px rgba(var(--case-accent), .22);
}

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-case:hover {
    transform: translateY(-7px) !important;
    box-shadow: 0 32px 82px rgba(54, 22, 93, .15), inset 0 1px rgba(255, 255, 255, .95) !important;
  }

  body.cdx2-body .cdx2-case:hover::before {
    opacity: .88;
  }

  body.cdx2-body .cdx2-case:hover .cdx2-case-media img {
    transform: scale(1.045) !important;
  }

  body.cdx2-body .cdx2-case:hover .cdx2-case-arrow {
    background: var(--cdx2-night) !important;
    transform: rotate(45deg) scale(1.04);
  }
}

body.cdx2-body .cdx2-faq details[open],
body.cdx2-body .cdx2-faq details[open]:hover {
  color: var(--cdx2-night) !important;
  background: linear-gradient(135deg, #faf7ff, #eee5fa) !important;
  border-color: rgba(111, 66, 198, .18) !important;
  box-shadow: 0 24px 58px rgba(54, 22, 93, .1), inset 4px 0 #9b70dc !important;
}

body.cdx2-body .cdx2-faq details[open] summary {
  color: var(--cdx2-night) !important;
}

body.cdx2-body .cdx2-faq details[open] summary::before {
  color: #6f42c6 !important;
}

body.cdx2-body .cdx2-faq details[open] p {
  color: #695a7b !important;
}

body.cdx2-body .cdx2-faq details[open] summary i {
  color: #fff !important;
  background: #6f42c6 !important;
}

@media (max-width: 767px) {
  body.cdx2-body .cdx2-case {
    padding: .45rem !important;
  }

  body.cdx2-body .cdx2-case-info {
    min-height: 106px;
  }
}

/* Stable motion v27: one compositing layer per reveal, no section-level jump. */
.cdx2-js body.cdx2-body .cdx2-section[data-cdx2-section] > .cdx2-shell,
.cdx2-js body.cdx2-body .cdx2-section[data-cdx2-section].is-section-visible > .cdx2-shell {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  will-change: auto !important;
}

.cdx2-js body.cdx2-body .cdx2-reveal {
  opacity: 0 !important;
  transform: translateY(14px) !important;
  transition: opacity .46s ease, transform .56s cubic-bezier(.22, .72, .18, 1) !important;
  will-change: opacity, transform;
}

.cdx2-js body.cdx2-body .cdx2-reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
  will-change: auto;
}

body.inner-page :is(
  .ip-section,
  .work-section,
  .reviews-section,
  .process-section,
  .blog-section,
  .faq-section,
  .contact-section
) {
  content-visibility: visible !important;
  contain-intrinsic-size: auto !important;
}

@media (prefers-reduced-motion: reduce) {
  .cdx2-js body.cdx2-body .cdx2-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Light code loader v27. */
.codara-code-loader {
  color: #24113f;
  background:
    linear-gradient(rgba(111, 66, 198, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 66, 198, .055) 1px, transparent 1px),
    #f6f1fc;
  background-size: 42px 42px;
}

.codara-code-loader__top strong { color: #190733; }
.codara-code-loader__top span { color: #6f42c6; }
.codara-code-loader__top span::before {
  background: #63d39b;
  box-shadow: 0 0 0 5px rgba(99, 211, 155, .16);
}

.codara-code-loader__window {
  background: rgba(255, 255, 255, .94);
  border-color: rgba(80, 45, 126, .14);
  box-shadow: 0 32px 90px rgba(54, 22, 93, .16), 0 0 0 8px rgba(255, 255, 255, .38);
}

.codara-code-loader__bar {
  color: #8b7b9e;
  background: #eee7f6;
  border-bottom-color: rgba(80, 45, 126, .1);
}

.codara-code-loader__bar > span:nth-child(2) { color: #5e4b76; }
.codara-code-loader__bar > span:last-child { color: #6f42c6; }
.codara-code-loader__dots i { background: #ff8a67; }
.codara-code-loader__dots i:nth-child(2) { background: #f6c96d; }
.codara-code-loader__dots i:nth-child(3) { background: #63d39b; }

.codara-code-loader aside {
  color: #877697;
  background: #f3edf9;
  border-right-color: rgba(80, 45, 126, .1);
}

.codara-code-loader aside b { color: #513d69; }
.codara-code-loader aside .is-active {
  color: #4f258f;
  background: rgba(111, 66, 198, .1);
  border-left-color: #7e4bd0;
}

.codara-code-loader__editor {
  background: linear-gradient(135deg, #fff, #fcfaff);
}

.codara-code-loader__editor em { color: #b6aac2; }
.codara-code-loader__editor code { color: #39264f; }
.codara-code-loader__editor code i { color: #7544c2; }
.codara-code-loader__editor code s { color: #168d67; }
.codara-code-loader__editor code b { color: #e56843; }

.codara-code-loader__terminal {
  color: #695a7b;
  background: #f2ebf8;
  border-top-color: rgba(80, 45, 126, .1);
}

.codara-code-loader__terminal span:last-child { color: #6f42c6; }
.codara-code-loader__progress { background: #e3d8ef; }
.codara-code-loader__progress i {
  background: linear-gradient(90deg, #7441bd, #a87be8 62%, #63d39b);
  box-shadow: 0 0 18px rgba(116, 65, 189, .28);
}

.codara-code-loader__foot { color: #9a89ac; }

/* Hero composition v28. */
body.cdx2-body .cdx2-hero {
  position: relative;
  min-height: auto;
  padding: clamp(8.2rem, 10vw, 10.5rem) 0 clamp(4.5rem, 7vw, 7rem) !important;
  overflow: hidden;
  background:
    linear-gradient(rgba(111, 66, 198, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 66, 198, .045) 1px, transparent 1px),
    radial-gradient(circle at 84% 22%, rgba(131, 46, 255, .16), transparent 25rem),
    radial-gradient(circle at 12% 88%, rgba(185, 239, 209, .24), transparent 25rem),
    #f6f1fc !important;
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
}

body.cdx2-body .cdx2-hero::before { display: none; }

body.cdx2-body .cdx2-hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

body.cdx2-body .cdx2-hero-heading {
  min-width: 0;
}

body.cdx2-body .cdx2-hero .cdx2-eyebrow {
  margin: 0 0 clamp(1.6rem, 2.5vw, 2.5rem);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .7rem;
  font-weight: 760;
  letter-spacing: .1em !important;
}

body.cdx2-body .cdx2-hero .cdx2-eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 2px;
  background: #832eff;
}

body.cdx2-body .cdx2-hero-title {
  max-width: none !important;
  color: #190733 !important;
  font-size: clamp(3.8rem, 5vw, 6.5rem) !important;
  font-weight: 470 !important;
  line-height: .96 !important;
  letter-spacing: -.06em !important;
  text-wrap: initial;
}

body.cdx2-body .cdx2-hero-title > span {
  display: block;
  color: inherit !important;
  white-space: nowrap;
}

body.cdx2-body .cdx2-hero-title > span + span {
  margin-top: .04em;
}

body.cdx2-body .cdx2-hero-title em {
  color: #832eff;
  font-style: normal;
}

body.cdx2-body .cdx2-hero-brief {
  margin-top: clamp(2.4rem, 4vw, 4rem);
  padding: clamp(1.2rem, 2vw, 1.65rem);
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(500px, 1.2fr);
  grid-template-rows: auto auto auto;
  column-gap: clamp(2rem, 4vw, 4.5rem);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(79, 39, 128, .14);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .9) 0 40%, rgba(241, 231, 255, .78) 100%);
  box-shadow: 0 28px 80px rgba(57, 25, 96, .12);
  backdrop-filter: blur(16px);
}

body.cdx2-body .cdx2-hero-brief::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #832eff, #b9efd1);
}

body.cdx2-body .cdx2-hero-brief::after {
  content: "";
  position: absolute;
  top: -90px;
  right: 12%;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(131, 46, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(131, 46, 255, .035), 0 0 0 70px rgba(131, 46, 255, .025);
  pointer-events: none;
}

body.cdx2-body .cdx2-hero-status {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  width: max-content;
  padding: .55rem .75rem;
  color: #51356f;
  border: 1px solid rgba(66, 189, 130, .18);
  border-radius: 999px;
  background: rgba(185, 239, 209, .3);
  font-family: var(--codara-code);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

body.cdx2-body .cdx2-hero-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #42bd82;
  box-shadow: 0 0 0 5px rgba(66, 189, 130, .13);
}

body.cdx2-body .cdx2-hero-brief > p {
  grid-column: 1;
  grid-row: 2;
  max-width: 520px;
  margin: .9rem 0 0;
  color: #351b54;
  font-size: clamp(1.1rem, 1.45vw, 1.38rem);
  line-height: 1.45;
}

body.cdx2-body .cdx2-hero-brief .cdx2-hero-actions {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

body.cdx2-body .cdx2-hero-brief .cdx2-button {
  width: 100%;
  min-height: 104px;
  padding: .65rem .65rem .65rem clamp(1.25rem, 2vw, 1.8rem);
  justify-content: space-between;
  border: 1px solid rgba(54, 22, 93, .12);
  border-radius: 8px;
  font-size: .78rem;
  letter-spacing: .06em;
  box-shadow: 0 16px 38px rgba(54, 22, 93, .12);
}

body.cdx2-body .cdx2-hero-brief .cdx2-button .cdx2-icon-circle {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
}

body.cdx2-body .cdx2-hero-brief .cdx2-button-orange {
  border-color: transparent;
  background: linear-gradient(135deg, #5e12d8 0%, #832eff 58%, #9b4dff 100%) !important;
  box-shadow: 0 18px 38px rgba(112, 32, 237, .24);
}

body.cdx2-body .cdx2-hero-brief .cdx2-button-light {
  background: rgba(255, 255, 255, .86) !important;
  box-shadow: inset 0 0 0 1px rgba(54, 22, 93, .04), 0 16px 38px rgba(54, 22, 93, .09);
}

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-hero-brief .cdx2-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(54, 22, 93, .16);
  }

  body.cdx2-body .cdx2-hero-brief .cdx2-button-light:hover {
    color: #fff !important;
    background: #190733 !important;
  }

  body.cdx2-body .cdx2-hero-brief .cdx2-button-light:hover .cdx2-icon-circle {
    color: #190733 !important;
    background: #fff !important;
  }
}

body.cdx2-body .cdx2-hero-proof {
  grid-column: 1;
  grid-row: 3;
  margin-top: 1.25rem;
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  border-top: 0;
}

body.cdx2-body .cdx2-hero-proof span {
  padding: .75rem .85rem;
  display: grid;
  gap: .25rem;
  color: #7d6b9c;
  border: 1px solid rgba(54, 22, 93, .1);
  border-radius: 6px;
  background: rgba(255, 255, 255, .55);
  font-size: .75rem;
  line-height: 1.35;
}

body.cdx2-body .cdx2-hero-proof b {
  color: #190733;
  font-family: var(--codara-code);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

body.cdx2-body .cdx2-hero-grid {
  margin-top: clamp(1.35rem, 2vw, 2rem) !important;
}

body.cdx2-body .cdx2-hero-divider {
  margin-top: clamp(3.75rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) 42px;
  gap: clamp(.85rem, 1.8vw, 1.5rem);
  align-items: center;
  color: #745d91;
  font-family: var(--codara-code);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
}

body.cdx2-body .cdx2-hero-divider > i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(111, 66, 198, .4), rgba(111, 66, 198, .08));
}

body.cdx2-body .cdx2-hero-divider > i b {
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #832eff;
  box-shadow: 0 0 0 5px rgba(131, 46, 255, .1);
  animation: cdx2HeroRail 5.5s ease-in-out infinite;
}

body.cdx2-body .cdx2-hero-divider > strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #190733;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(54, 22, 93, .16);
  font-family: var(--codara-code);
  font-size: 1rem;
}

@keyframes cdx2HeroRail {
  0%, 12% { left: 0; opacity: 0; }
  22% { opacity: 1; }
  78% { opacity: 1; }
  88%, 100% { left: calc(100% - 5px); opacity: 0; }
}

@media (max-width: 1180px) {
  body.cdx2-body .cdx2-hero-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  body.cdx2-body .cdx2-hero-title {
    font-size: clamp(3.8rem, 5vw, 6.5rem) !important;
  }

  body.cdx2-body .cdx2-hero-brief .cdx2-hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1000px) {
  body.cdx2-body .cdx2-hero-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  body.cdx2-body .cdx2-hero-title {
    font-size: clamp(3.3rem, 6vw, 4.5rem) !important;
  }

  body.cdx2-body .cdx2-hero-brief {
    max-width: none;
    grid-template-columns: minmax(0, 1fr);
    padding: 1.25rem;
  }

  body.cdx2-body .cdx2-hero-status,
  body.cdx2-body .cdx2-hero-brief > p,
  body.cdx2-body .cdx2-hero-brief .cdx2-hero-actions {
    grid-column: 1;
  }

  body.cdx2-body .cdx2-hero-brief .cdx2-hero-actions {
    grid-row: 3;
    margin-top: 1.25rem;
  }

  body.cdx2-body .cdx2-hero-proof {
    grid-column: 1;
    grid-row: 4;
  }
}

@media (max-width: 640px) {
  html,
  body.cdx2-body,
  body.cdx2-body .cdx2-main,
  body.cdx2-body .cdx2-hero {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: clip !important;
  }

  body.cdx2-body .cdx2-header {
    inset: .5rem .5rem auto !important;
    left: .5rem !important;
    right: .5rem !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box;
    overflow: hidden;
  }

  body.cdx2-body .cdx2-header-actions {
    min-width: 0 !important;
    max-width: 104px;
    margin-left: auto;
  }

  body.cdx2-body .cdx2-menu-button {
    width: 104px;
    min-width: 104px;
    padding-left: .8rem;
  }

  body.cdx2-body .cdx2-hero {
    padding: 7rem 0 3.5rem !important;
    background-size: 44px 44px, 44px 44px, auto, auto, auto;
  }

  body.cdx2-body .cdx2-shell,
  body.cdx2-body .cdx2-hero-inner,
  body.cdx2-body .cdx2-hero-intro,
  body.cdx2-body .cdx2-hero-heading,
  body.cdx2-body .cdx2-hero-brief {
    width: calc(100% - 2rem) !important;
    max-width: calc(100% - 2rem) !important;
    min-width: 0 !important;
    margin-inline: auto !important;
    box-sizing: border-box;
  }

  body.cdx2-body .cdx2-hero-intro,
  body.cdx2-body .cdx2-hero-heading,
  body.cdx2-body .cdx2-hero-brief {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.cdx2-body .cdx2-hero .cdx2-eyebrow {
    margin-bottom: 1.25rem;
    font-size: .58rem;
  }

  body.cdx2-body .cdx2-hero-title {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(2.6rem, 11vw, 3.25rem) !important;
    line-height: 1 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  body.cdx2-body .cdx2-hero-title > span {
    display: block !important;
    width: 100% !important;
    white-space: normal !important;
  }

  body.cdx2-body .cdx2-hero-brief > p {
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  body.cdx2-body .cdx2-hero-brief .cdx2-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.cdx2-body .cdx2-hero-brief .cdx2-button {
    width: 100%;
    min-height: 76px;
  }

  body.cdx2-body .cdx2-hero-brief .cdx2-button .cdx2-icon-circle {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  body.cdx2-body .cdx2-hero-grid {
    margin-top: 1rem !important;
  }

  body.cdx2-body .cdx2-hero-divider {
    margin-top: 3rem;
    grid-template-columns: auto 1fr 38px;
    gap: .75rem;
    font-size: .54rem;
  }

  body.cdx2-body .cdx2-hero-divider > strong {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.cdx2-body .cdx2-hero-divider > i b {
    left: 50%;
    animation: none;
  }
}

/* Process delivery console v35. */
body.cdx2-body .cdx2-process-aside {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  gap: 1.15rem;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .025)),
    #18072f;
  border: 1px solid rgba(210, 180, 255, .17);
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(4, 0, 12, .24), inset 0 1px rgba(255, 255, 255, .08);
}

body.cdx2-body .cdx2-process-aside::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -8rem;
  right: -7rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(185, 239, 209, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(185, 239, 209, .025), 0 0 0 84px rgba(131, 46, 255, .025);
}

body.cdx2-body .cdx2-process-aside::after {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  width: 4.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--cdx2-mint), #a66aff);
  box-shadow: 0 0 18px rgba(185, 239, 209, .35);
}

body.cdx2-body .cdx2-process-aside > p {
  max-width: 34ch;
  padding-bottom: 1.1rem;
  color: rgba(255, 255, 255, .9) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.55;
}

body.cdx2-body .cdx2-process-aside > ul {
  position: relative;
  gap: .65rem;
}

body.cdx2-body .cdx2-process-aside > ul li {
  min-height: 58px;
  padding: .68rem .8rem;
  color: rgba(255, 255, 255, .9);
  background: linear-gradient(90deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .035));
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 8px;
  font-size: .79rem;
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}

body.cdx2-body .cdx2-process-aside > ul li::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: auto;
  flex: 0 0 6px;
  border-radius: 50%;
  background: rgba(185, 239, 209, .4);
  box-shadow: 0 0 0 5px rgba(185, 239, 209, .045);
}

body.cdx2-body .cdx2-process-aside > ul li > span {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
  color: #190733;
  background: linear-gradient(145deg, #d8f7e7, #9ce2c0);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 7px;
  box-shadow: 0 8px 20px rgba(3, 18, 11, .16);
  font-weight: 750;
}

body.cdx2-body .cdx2-process-aside .cdx2-text-link {
  width: 100%;
  min-height: 54px;
  padding: .7rem .75rem .7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #190733 !important;
  background: var(--cdx2-mint);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(4, 18, 12, .15);
}

body.cdx2-body .cdx2-process-aside .cdx2-text-link > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #190733;
  border-radius: 6px;
}

body.cdx2-body .cdx2-process-aside .cdx2-process-status {
  padding: 1rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 8px;
  box-shadow: inset 0 1px rgba(255, 255, 255, .04);
}

body.cdx2-body .cdx2-process-aside .cdx2-process-status i {
  height: 3px;
  background: rgba(255, 255, 255, .12);
}

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-process-aside > ul li:hover {
    transform: translateX(5px);
    border-color: rgba(185, 239, 209, .26);
    background: rgba(255, 255, 255, .09);
  }

  body.cdx2-body .cdx2-process-aside .cdx2-text-link:hover {
    color: #fff !important;
    background: #832eff;
    border-color: #9f59ff;
  }
}

@media (max-width: 767px) {
  body.cdx2-body .cdx2-process-aside {
    padding: 1.2rem;
    border-radius: 16px;
  }

  body.cdx2-body .cdx2-process-aside::after {
    left: 1.2rem;
  }
}

/* FAQ definitive cascade v38. */
body.cdx2-body .cdx2-faq-layout {
  grid-template-columns: minmax(330px, .76fr) minmax(540px, 1.24fr) !important;
  gap: clamp(3rem, 7vw, 7rem) !important;
}

body.cdx2-body .cdx2-faq-intro { top: 7rem; padding-top: .5rem; }
body.cdx2-body .cdx2-faq-intro .cdx2-kicker { color: #832eff !important; }

body.cdx2-body .cdx2-faq-intro .cdx2-display {
  max-width: 8.6ch !important;
  margin-top: clamp(1.5rem, 3vw, 2.5rem) !important;
  font-size: clamp(3.6rem, 5.1vw, 6rem) !important;
  line-height: .9 !important;
  letter-spacing: -.055em !important;
}

body.cdx2-body .cdx2-faq-intro .cdx2-display > span { display: block; }
body.cdx2-body .cdx2-faq-intro .cdx2-display > span:last-child { color: #60407e; }

body.cdx2-body .cdx2-faq-intro > .cdx2-text-link {
  width: max-content;
  min-height: 48px;
  margin-top: 1.8rem !important;
  padding: .6rem .65rem .6rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  color: #190733 !important;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(54, 22, 93, .12);
  border-radius: 8px;
  text-decoration: none;
}

body.cdx2-body .cdx2-faq-intro > .cdx2-text-link span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #190733;
  border-radius: 6px;
}

body.cdx2-body .cdx2-faq-note {
  max-width: 420px;
  margin-top: 1rem;
  padding: 1.1rem 4.25rem 1.1rem 1.15rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #190733, #301052);
}

body.cdx2-body .cdx2-faq-note i {
  width: 42px;
  height: 42px;
  color: #190733;
  background: var(--cdx2-mint);
  border-radius: 7px;
}

body.cdx2-body .cdx2-faq-list { gap: .7rem; }

body.cdx2-body .cdx2-faq details,
body.cdx2-body .cdx2-faq details[open],
body.cdx2-body .cdx2-faq details[open]:hover {
  overflow: hidden;
  color: #190733 !important;
  border: 1px solid rgba(54, 22, 93, .1) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, .78) !important;
  box-shadow: 0 16px 40px rgba(54, 22, 93, .065) !important;
  transform: none !important;
}

body.cdx2-body .cdx2-faq summary,
body.cdx2-body .cdx2-faq details[open] summary {
  min-height: 102px !important;
  grid-template-columns: 44px minmax(0, 1fr) 46px !important;
  gap: 1.1rem !important;
  padding: 1rem 1.15rem !important;
  color: #190733 !important;
  font-size: clamp(1.02rem, 1.55vw, 1.25rem) !important;
  font-weight: 560;
  text-wrap: balance;
}

body.cdx2-body .cdx2-faq summary::before {
  width: 40px;
  height: 40px;
  color: #6f42c6 !important;
  background: #f1e9fc;
  border: 1px solid rgba(111, 66, 198, .15);
  border-radius: 7px;
}

body.cdx2-body .cdx2-faq summary i,
body.cdx2-body .cdx2-faq details[open] summary i {
  width: 44px !important;
  height: 44px !important;
  color: #fff !important;
  background: #190733 !important;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(25, 7, 51, .16);
}

body.cdx2-body .cdx2-faq details[open] {
  border-color: rgba(83, 177, 130, .3) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(226, 248, 237, .76)) !important;
  box-shadow: 0 22px 52px rgba(54, 22, 93, .09), inset 4px 0 #8cd9b3 !important;
}

body.cdx2-body .cdx2-faq details[open] summary::before {
  color: #195f42 !important;
  background: #dff6e9;
  border-color: rgba(83, 177, 130, .24);
}

body.cdx2-body .cdx2-faq details[open] summary i {
  color: #190733 !important;
  background: var(--cdx2-mint) !important;
}

body.cdx2-body .cdx2-faq details > p,
body.cdx2-body .cdx2-faq details[open] > p {
  max-width: none;
  margin: 0 1.15rem 0 4.85rem !important;
  padding: 1rem 0 1.35rem !important;
  color: #5f5272 !important;
  border-top: 1px solid rgba(54, 22, 93, .09);
  line-height: 1.65;
}

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-faq details:not([open]):hover {
    transform: translateY(-3px) !important;
    border-color: rgba(111, 66, 198, .2) !important;
    background: #fff !important;
    box-shadow: 0 22px 52px rgba(54, 22, 93, .1) !important;
  }
}

@media (max-width: 1023px) {
  body.cdx2-body .cdx2-faq-layout { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  body.cdx2-body .cdx2-faq-intro { position: static; }
}

@media (max-width: 767px) {
  body.cdx2-body .cdx2-faq-intro .cdx2-display {
    max-width: 9ch !important;
    font-size: clamp(2.8rem, 13vw, 4rem) !important;
  }

  body.cdx2-body .cdx2-faq summary,
  body.cdx2-body .cdx2-faq details[open] summary {
    min-height: 88px !important;
    grid-template-columns: 36px minmax(0, 1fr) 40px !important;
    gap: .7rem !important;
    padding: .8rem !important;
  }

  body.cdx2-body .cdx2-faq summary::before { width: 34px; height: 34px; }
  body.cdx2-body .cdx2-faq summary i,
  body.cdx2-body .cdx2-faq details[open] summary i { width: 40px !important; height: 40px !important; }

  body.cdx2-body .cdx2-faq details > p,
  body.cdx2-body .cdx2-faq details[open] > p { margin: 0 .8rem 0 3.9rem !important; }
}

/* Portfolio editorial grid v39. */
body.cdx2-body .cdx2-work {
  background:
    radial-gradient(circle at 8% 8%, rgba(185, 239, 209, .24), transparent 28rem),
    radial-gradient(circle at 92% 74%, rgba(131, 46, 255, .08), transparent 30rem),
    #f8f5fb !important;
}

body.cdx2-body .cdx2-work-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  gap: clamp(1rem, 2vw, 1.7rem) !important;
  align-items: start;
}

body.cdx2-body .cdx2-case:nth-child(n) { grid-column: span 6 !important; }
body.cdx2-body .cdx2-case:nth-child(1),
body.cdx2-body .cdx2-case:nth-child(4),
body.cdx2-body .cdx2-case:nth-child(5) { grid-column: span 7 !important; }
body.cdx2-body .cdx2-case:nth-child(2),
body.cdx2-body .cdx2-case:nth-child(3),
body.cdx2-body .cdx2-case:nth-child(6) { grid-column: span 5 !important; }

body.cdx2-body .cdx2-case {
  --case-accent: 131, 46, 255;
  position: relative;
  padding: .55rem !important;
  overflow: hidden;
  color: #190733 !important;
  background: rgba(255, 255, 255, .92) !important;
  border: 1px solid rgba(54, 22, 93, .09) !important;
  border-radius: 8px !important;
  box-shadow: 0 22px 60px rgba(54, 22, 93, .09) !important;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1), box-shadow .5s ease !important;
}

body.cdx2-body .cdx2-case::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto -5rem -6rem auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(var(--case-accent), .08) !important;
  filter: blur(30px);
  opacity: .5;
  pointer-events: none;
}

body.cdx2-body .cdx2-case-media,
body.cdx2-body .cdx2-case-wide .cdx2-case-media,
body.cdx2-body .cdx2-case:nth-child(n) .cdx2-case-media {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 !important;
  overflow: hidden;
  aspect-ratio: 16 / 10 !important;
  background: #eee8f5 !important;
  border: 0 !important;
  border-radius: 6px !important;
}

body.cdx2-body .cdx2-case-media::after {
  content: none !important;
  display: none !important;
}

body.cdx2-body .cdx2-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.97) contrast(1.01);
  transform: scale(1.001) !important;
  transition: transform .75s cubic-bezier(.16, 1, .3, 1), filter .45s ease !important;
}

body.cdx2-body .cdx2-case-info {
  position: relative !important;
  z-index: 2;
  inset: auto !important;
  min-height: 118px;
  margin: 0 !important;
  padding: clamp(1rem, 1.6vw, 1.35rem) clamp(.75rem, 1.2vw, 1rem) !important;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  color: #190733 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.cdx2-body .cdx2-case-info > div { min-width: 0; }

body.cdx2-body .cdx2-case-info > div > span {
  display: inline-flex;
  margin-bottom: .65rem;
  padding: .35rem .55rem;
  color: rgb(var(--case-accent)) !important;
  background: rgba(var(--case-accent), .075);
  border: 1px solid rgba(var(--case-accent), .12);
  border-radius: 999px;
  font-size: .61rem;
  letter-spacing: .075em;
}

body.cdx2-body .cdx2-case-info h3 {
  max-width: 100%;
  color: #190733 !important;
  font-size: clamp(1.6rem, 2.35vw, 2.75rem) !important;
  line-height: 1 !important;
  letter-spacing: -.035em !important;
  text-wrap: balance;
}

body.cdx2-body .cdx2-case-arrow {
  width: 50px !important;
  height: 50px !important;
  flex: 0 0 50px;
  color: #fff !important;
  background: #190733 !important;
  border: 0 !important;
  border-radius: 50% !important;
  box-shadow: 0 12px 28px rgba(25, 7, 51, .16);
}

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-case:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(var(--case-accent), .18) !important;
    box-shadow: 0 32px 76px rgba(54, 22, 93, .14) !important;
  }

  body.cdx2-body .cdx2-case:hover::before { opacity: .9; }

  body.cdx2-body .cdx2-case:hover .cdx2-case-media img {
    transform: scale(1.035) !important;
    filter: saturate(1.03) contrast(1.02);
  }

  body.cdx2-body .cdx2-case:hover .cdx2-case-arrow {
    background: rgb(var(--case-accent)) !important;
    transform: rotate(45deg) scale(1.04);
  }
}

@media (max-width: 1023px) {
  body.cdx2-body .cdx2-case:nth-child(n) { grid-column: span 6 !important; }
}

@media (max-width: 767px) {
  body.cdx2-body .cdx2-work-grid { grid-template-columns: 1fr !important; gap: .9rem !important; }
  body.cdx2-body .cdx2-case:nth-child(n) { grid-column: auto !important; padding: .4rem !important; }
  body.cdx2-body .cdx2-case:nth-child(n) .cdx2-case-media { aspect-ratio: 4 / 3 !important; }
  body.cdx2-body .cdx2-case-info { min-height: 105px; padding: 1rem .7rem !important; }
  body.cdx2-body .cdx2-case-arrow { width: 44px !important; height: 44px !important; flex-basis: 44px; }
}

/* Navigation dialog v40. */
html { scrollbar-gutter: stable; }

body.cdx2-body .cdx2-header {
  z-index: 70 !important;
}

body.cdx2-body .cdx2-menu {
  z-index: 60;
  padding: clamp(6.5rem, 9vw, 8rem) clamp(1rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2.5rem);
  place-items: center;
  background: rgba(239, 234, 246, .96);
  backdrop-filter: blur(18px) saturate(.9);
}

body.cdx2-body .cdx2-menu:focus { outline: none; }

body.cdx2-body .cdx2-menu-inner {
  width: min(100%, 1180px);
  max-height: min(760px, calc(100dvh - 9rem));
  min-height: min(620px, calc(100dvh - 9rem));
  padding: clamp(1.25rem, 2.5vw, 2.2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  grid-template-rows: auto minmax(0, 1fr);
  gap: 1.25rem clamp(2rem, 5vw, 5rem);
  align-items: stretch;
  overflow: hidden;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(54, 22, 93, .1);
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(54, 22, 93, .16), inset 0 1px rgba(255, 255, 255, .9);
  opacity: 0;
  transform: translateY(18px) scale(.985);
  transition: opacity .34s ease, transform .5s cubic-bezier(.16, 1, .3, 1);
}

body.cdx2-body .cdx2-menu.is-open .cdx2-menu-inner {
  opacity: 1;
  transform: none;
}

body.cdx2-body .cdx2-menu-label {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: #71578f;
  font-family: var(--codara-code);
  font-size: .68rem;
  letter-spacing: .12em;
}

body.cdx2-body .cdx2-menu-label::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, #832eff, #b9efd1);
}

body.cdx2-body .cdx2-menu-nav {
  grid-column: 1;
  grid-row: 2;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  column-gap: clamp(1rem, 2.5vw, 2.5rem);
  overflow-y: auto;
  overscroll-behavior: contain;
}

body.cdx2-body .cdx2-menu-nav a {
  position: relative;
  min-width: 0;
  min-height: clamp(70px, 9vh, 88px);
  padding: .8rem .5rem;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 28px;
  gap: .75rem;
  align-items: center;
  color: #190733;
  border-top: 1px solid rgba(54, 22, 93, .12);
  font-family: var(--codara-code);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  font-weight: 480;
  line-height: 1;
  letter-spacing: -.045em;
  transition: color .25s ease, background-color .25s ease, padding-left .35s cubic-bezier(.16, 1, .3, 1);
}

body.cdx2-body .cdx2-menu-nav a::after {
  content: "\2197";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #76579a;
  font-size: .9rem;
  opacity: .55;
}

body.cdx2-body .cdx2-menu-nav a > span {
  width: auto;
  color: #80699d;
  font-family: var(--codara-code);
  font-size: .6rem;
  letter-spacing: .08em;
}

body.cdx2-body .cdx2-menu-nav a[aria-current="page"] {
  color: #54208f;
  background: linear-gradient(90deg, rgba(217, 193, 255, .34), rgba(217, 193, 255, .08));
  box-shadow: inset 3px 0 #832eff;
}

body.cdx2-body .cdx2-menu-nav a:focus,
body.cdx2-body .cdx2-menu-nav a:focus-visible {
  outline: none !important;
}

body.cdx2-body .cdx2-menu-nav a:focus-visible {
  color: #190733;
  background: rgba(185, 239, 209, .3);
  box-shadow: inset 3px 0 #59bd88;
}

body.cdx2-body .cdx2-menu-meta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 0;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  color: rgba(255, 255, 255, .66);
  background:
    radial-gradient(circle at 86% 12%, rgba(185, 239, 209, .16), transparent 12rem),
    #190733;
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(25, 7, 51, .16);
}

body.cdx2-body .cdx2-menu-meta::before {
  content: "CODARA";
  position: absolute;
  z-index: -1;
  top: 1.5rem;
  left: 1.5rem;
  color: rgba(255, 255, 255, .11);
  font-family: var(--codara-code);
  font-size: clamp(2.2rem, 3.4vw, 3.5rem);
  font-weight: 650;
  letter-spacing: -.06em;
}

body.cdx2-body .cdx2-menu-meta::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 5.5rem;
  right: -5rem;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(185, 239, 209, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(185, 239, 209, .025), 0 0 0 70px rgba(131, 46, 255, .035);
}

body.cdx2-body .cdx2-menu-meta span {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-family: var(--codara-code);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.cdx2-body .cdx2-menu-meta a {
  width: 100%;
  min-height: 54px;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #190733;
  background: var(--cdx2-mint);
  border: 0;
  border-radius: 7px;
  text-decoration: none;
}

body.cdx2-body .cdx2-menu-meta a::after {
  content: "\2197";
  font-size: 1rem;
}

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-menu-nav a:hover {
    padding-left: .85rem;
    color: #832eff;
    background: rgba(217, 193, 255, .18);
    transform: none;
  }

  body.cdx2-body .cdx2-menu-nav a:hover::after { opacity: 1; }

  body.cdx2-body .cdx2-menu-meta a:hover {
    color: #fff;
    background: #832eff;
  }
}

@media (max-width: 767px) {
  html { scrollbar-gutter: auto; }

  body.cdx2-body .cdx2-menu {
    padding: 5rem .5rem .5rem;
    place-items: stretch;
    background: rgba(239, 234, 246, .985);
  }

  body.cdx2-body .cdx2-menu-inner {
    width: 100%;
    max-height: calc(100dvh - 5.5rem);
    min-height: 0;
    padding: .9rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: .75rem;
    overflow-y: auto;
    border-radius: 8px;
  }

  body.cdx2-body .cdx2-menu-label,
  body.cdx2-body .cdx2-menu-nav,
  body.cdx2-body .cdx2-menu-meta {
    grid-column: 1;
    grid-row: auto;
  }

  body.cdx2-body .cdx2-menu-nav {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  body.cdx2-body .cdx2-menu-nav a {
    min-height: 56px;
    grid-template-columns: 28px minmax(0, 1fr) 24px;
    padding: .65rem .4rem;
    font-size: clamp(1.45rem, 7.8vw, 2.05rem);
  }

  body.cdx2-body .cdx2-menu-nav a::after {
    width: 24px;
    height: 24px;
  }

  body.cdx2-body .cdx2-menu-meta {
    min-height: 0;
    padding: 0;
    display: block;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  body.cdx2-body .cdx2-menu-meta::before,
  body.cdx2-body .cdx2-menu-meta::after {
    display: none;
  }

  body.cdx2-body .cdx2-menu-meta a {
    min-height: 56px;
    padding: .8rem 1.15rem;
    color: #190733;
    background: #d9c1ff;
    border: 1px solid rgba(131, 46, 255, .2);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(25, 7, 51, .1);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.cdx2-body .cdx2-menu-inner,
  body.cdx2-body .cdx2-menu-nav a {
    transition: none !important;
  }
}

/* Unified primary header controls v42. */
body.cdx2-body .cdx2-header-actions {
  gap: .75rem;
}

body.cdx2-body .cdx2-contact-link,
body.cdx2-body .cdx2-menu-button {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  font-family: var(--codara-code);
  font-size: .82rem;
  font-weight: 560;
  letter-spacing: .04em;
}

body.cdx2-body .cdx2-contact-link {
  min-width: 302px;
  justify-content: space-between;
  padding: .3rem .3rem .3rem 1.65rem;
  color: #190733 !important;
  background: #e3d2fb !important;
}

body.cdx2-body .cdx2-contact-link .cdx2-icon-circle,
body.cdx2-body .cdx2-menu-button .cdx2-menu-mark {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
}

body.cdx2-body .cdx2-contact-link .cdx2-icon-circle {
  color: #190733;
  background: rgba(255, 255, 255, .62);
  box-shadow: inset 0 0 0 1px rgba(54, 22, 93, .05);
}

body.cdx2-body .cdx2-contact-link .cdx2-icon-circle svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.65;
}

body.cdx2-body .cdx2-menu-button {
  min-width: 166px;
  justify-content: space-between;
  padding: .3rem .3rem .3rem 1.7rem;
  color: #fff !important;
  background: #190733 !important;
}

body.cdx2-body .cdx2-menu-button .cdx2-menu-mark {
  color: #fff !important;
  background: #38105f !important;
}

body.cdx2-body .cdx2-menu-mark-dots i {
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: left .35s var(--cdx2-ease), width .35s var(--cdx2-ease), height .35s var(--cdx2-ease), opacity .2s ease, transform .35s var(--cdx2-ease);
}

body.cdx2-body .cdx2-menu-mark-dots i:first-child { left: 16px; top: 50%; }
body.cdx2-body .cdx2-menu-mark-dots i:nth-child(2) { left: 24px; top: 50%; }
body.cdx2-body .cdx2-menu-mark-dots i:last-child { left: 32px; top: 50%; }

body.cdx2-body .cdx2-menu-button[aria-expanded="true"] .cdx2-menu-mark-dots i:first-child,
body.cdx2-body .cdx2-menu-button[aria-expanded="true"] .cdx2-menu-mark-dots i:last-child {
  top: 50%;
  left: 24px;
  width: 18px;
  height: 1.5px;
  border-radius: 1px;
}

body.cdx2-body .cdx2-menu-button[aria-expanded="true"] .cdx2-menu-mark-dots i:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

body.cdx2-body .cdx2-menu-button[aria-expanded="true"] .cdx2-menu-mark-dots i:nth-child(2) {
  opacity: 0;
}

body.cdx2-body .cdx2-menu-button[aria-expanded="true"] .cdx2-menu-mark-dots i:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-contact-link:hover,
  body.cdx2-body .cdx2-menu-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(54, 22, 93, .14);
  }

  body.cdx2-body .cdx2-menu-button[aria-expanded="false"]:hover .cdx2-menu-mark-dots {
    transform: rotate(90deg);
  }
}

@media (max-width: 767px) {
  body.cdx2-body .cdx2-contact-link {
    display: none;
  }

  body.cdx2-body .cdx2-menu-button {
    min-width: 108px;
    min-height: 48px;
    padding: .25rem .25rem .25rem 1rem;
    font-size: .72rem;
  }

  body.cdx2-body .cdx2-menu-button .cdx2-menu-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  body.cdx2-body .cdx2-menu-mark-dots i:first-child { left: 13px; }
  body.cdx2-body .cdx2-menu-mark-dots i:nth-child(2) { left: 20px; }
  body.cdx2-body .cdx2-menu-mark-dots i:last-child { left: 27px; }

  body.cdx2-body .cdx2-menu-button[aria-expanded="true"] .cdx2-menu-mark-dots i:first-child,
  body.cdx2-body .cdx2-menu-button[aria-expanded="true"] .cdx2-menu-mark-dots i:last-child {
    left: 20px;
  }
}

/* Unified section eyebrows v43. */
body.cdx2-body :is(.cdx2-kicker, .cdx2-eyebrow),
body.inner-page :is(.bl-hero-label, .ct-hero-label, .pr-hero-label, .pr-flagship__kicker) {
  width: fit-content;
  min-height: 18px;
  margin-top: 0;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  color: #f15a32 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  font-family: var(--codara-code), monospace !important;
  font-size: .67rem !important;
  font-weight: 720 !important;
  line-height: 1.2 !important;
  letter-spacing: .13em !important;
  text-transform: uppercase;
}

body.cdx2-body :is(.cdx2-kicker, .cdx2-eyebrow)::before,
body.inner-page :is(.bl-hero-label, .ct-hero-label, .pr-hero-label, .pr-flagship__kicker)::before {
  content: "";
  width: 30px !important;
  height: 5px !important;
  flex: 0 0 30px;
  background:
    linear-gradient(currentColor, currentColor) left center / 21px 1.5px no-repeat,
    radial-gradient(circle, currentColor 0 2px, transparent 2.4px) right center / 5px 5px no-repeat !important;
}

body.inner-page :is(.bl-hero-label, .ct-hero-label, .pr-hero-label, .pr-flagship__kicker) > span:first-child {
  display: none;
}

body.cdx2-body .cdx2-section .cdx2-kicker,
body.cdx2-body .cdx2-closing .cdx2-kicker,
body.cdx2-body .cdx2-faq-intro .cdx2-kicker,
body.inner-page :is(.bl-hero-label, .ct-hero-label, .pr-hero-label, .pr-flagship__kicker) {
  margin-bottom: clamp(1.35rem, 2vw, 1.8rem);
}

body.cdx2-body .cdx2-hero .cdx2-eyebrow {
  margin-bottom: clamp(1.6rem, 2.5vw, 2.5rem);
}

@media (max-width: 767px) {
  body.cdx2-body :is(.cdx2-kicker, .cdx2-eyebrow),
  body.inner-page :is(.bl-hero-label, .ct-hero-label, .pr-hero-label, .pr-flagship__kicker) {
    gap: .58rem;
    font-size: .61rem !important;
    letter-spacing: .1em !important;
  }

  body.cdx2-body :is(.cdx2-kicker, .cdx2-eyebrow)::before,
  body.inner-page :is(.bl-hero-label, .ct-hero-label, .pr-hero-label, .pr-flagship__kicker)::before {
    width: 24px !important;
    flex-basis: 24px;
    background:
      linear-gradient(currentColor, currentColor) left center / 16px 1.5px no-repeat,
      radial-gradient(circle, currentColor 0 1.8px, transparent 2.2px) right center / 5px 5px no-repeat !important;
  }
}

/* Exact eyebrow token normalization v44. Keep last in the cascade. */
body.cdx2-body .cdx2-section .cdx2-kicker,
body.cdx2-body .cdx2-closing .cdx2-kicker,
body.cdx2-body .cdx2-hero .cdx2-eyebrow,
body.inner-page :is(.bl-hero-label, .ct-hero-label, .pr-hero-label, .pr-flagship__kicker) {
  color: #ff5b20 !important;
  font-size: .67rem !important;
  font-weight: 720 !important;
  letter-spacing: .13em !important;
}

@media (max-width: 767px) {
  body.cdx2-body .cdx2-section .cdx2-kicker,
  body.cdx2-body .cdx2-closing .cdx2-kicker,
  body.cdx2-body .cdx2-hero .cdx2-eyebrow,
  body.inner-page :is(.bl-hero-label, .ct-hero-label, .pr-hero-label, .pr-flagship__kicker) {
    font-size: .61rem !important;
    letter-spacing: .1em !important;
  }
}

/* Native-ratio motion viewport v46. Keep source pixels crisp. */
body.cdx2-body .cdx2-hero-video {
  padding: clamp(1.5rem, 3vw, 2.75rem) !important;
  background:
    radial-gradient(circle at 50% 46%, rgba(131, 46, 255, .2), transparent 42%),
    linear-gradient(145deg, #25113f 0%, #12071f 74%) !important;
}

body.cdx2-body .cdx2-video-window {
  width: min(96%, 680px) !important;
  background: #0b0612;
  border-color: rgba(217, 193, 255, .24) !important;
  border-radius: clamp(18px, 1.8vw, 24px) !important;
  box-shadow:
    0 34px 85px rgba(5, 1, 12, .46),
    0 0 0 1px rgba(255, 255, 255, .045),
    0 0 0 10px rgba(217, 193, 255, .035) !important;
}

body.cdx2-body .cdx2-video-bar {
  min-height: 44px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
}

body.cdx2-body .cdx2-video-stage {
  position: relative;
  aspect-ratio: 16 / 9 !important;
  background: #08050d;
  border-block: 1px solid rgba(255, 255, 255, .055);
}

body.cdx2-body .cdx2-video-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .04);
  box-shadow: inset 0 0 28px rgba(2, 0, 6, .2);
  pointer-events: none;
}

body.cdx2-body .cdx2-video-stage video {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: contain !important;
  object-position: 50% 50% !important;
  transform: none !important;
  filter: contrast(1.025) saturate(1.025);
  image-rendering: auto;
  will-change: auto;
  backface-visibility: visible;
  transition: filter .45s ease !important;
}

body.cdx2-body .cdx2-video-meta {
  min-height: 40px;
  background: rgba(255, 255, 255, .022);
}

@media (hover: hover) and (pointer: fine) {
  body.cdx2-body .cdx2-hero-video:hover .cdx2-video-window {
    transform: translateY(-3px) !important;
    box-shadow:
      0 40px 95px rgba(5, 1, 12, .52),
      0 0 0 1px rgba(255, 255, 255, .055),
      0 0 0 10px rgba(185, 138, 255, .055) !important;
  }

  body.cdx2-body .cdx2-hero-video:hover .cdx2-video-stage video {
    transform: none !important;
    filter: contrast(1.035) saturate(1.04);
  }
}

@media (max-width: 767px) {
  body.cdx2-body .cdx2-hero-video {
    padding: .75rem !important;
  }

  body.cdx2-body .cdx2-video-window {
    width: 100% !important;
    border-radius: 16px !important;
    box-shadow: 0 22px 55px rgba(5, 1, 12, .38), 0 0 0 5px rgba(217, 193, 255, .03) !important;
  }
}

/* FAQ desktop frame alignment v49. Keep last in the cascade. */
@media (min-width: 1024px) {
  body.cdx2-body .cdx2-faq-layout {
    align-items: start !important;
  }

  body.cdx2-body .cdx2-faq-list {
    margin-top: 1.25rem !important;
  }

  body.cdx2-body .cdx2-faq summary,
  body.cdx2-body .cdx2-faq details[open] summary {
    min-height: 110px !important;
  }
}

/* Shared contact footer parity v52. Loaded on every template that can include home_footer.html. */
.home-bottom-band {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(180deg, #f7f3fb 0%, #f0e8fb 44%, #ebe2f8 100%);
  overflow: hidden;
  isolation: isolate;
}

.home-bottom-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(131, 46, 255, .07), transparent 42%),
    radial-gradient(circle at 88% 72%, rgba(217, 193, 255, .16), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.home-bottom-band > * {
  position: relative;
  z-index: 1;
}

.home-cta {
  position: relative !important;
  overflow: visible !important;
  isolation: isolate !important;
  margin-top: 0 !important;
  padding: clamp(2.5rem, 4.5vw, 4rem) 0 clamp(1.25rem, 2.5vw, 2rem) !important;
  background: transparent !important;
}

.home-cta-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 3rem), 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.home-cta-copy {
  position: relative;
  z-index: 2;
  max-width: 48rem;
}

.home-cta-title {
  margin: 0;
  padding-bottom: .15em !important;
  font-family: "publicaPlay", "Space Grotesk", sans-serif !important;
  font-size: clamp(3.5rem, 10vw, 6.5rem) !important;
  line-height: .95 !important;
  letter-spacing: -.04em !important;
  font-weight: 900 !important;
}

.home-cta-actions {
  margin-top: clamp(2rem, 4vw, 3rem) !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.home-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  min-height: 56px;
  padding: .85rem 2.2rem !important;
  border-radius: 999px !important;
  font-family: inherit;
  font-size: clamp(.86rem, 1.2vw, 1rem) !important;
  font-weight: 700 !important;
  line-height: 1;
  text-transform: uppercase !important;
  letter-spacing: .05em !important;
  text-decoration: none !important;
  cursor: pointer;
  box-sizing: border-box;
  transition: transform .28s ease, background-color .28s ease, color .28s ease, box-shadow .28s ease, border-color .28s ease !important;
}

.home-cta-btn-primary {
  background: #0c1016 !important;
  color: #f7f3fb !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  box-shadow: 0 18px 34px rgba(12,16,22,.14) !important;
}

.home-cta-btn-secondary {
  background: rgba(255,255,255,.58) !important;
  color: #190733 !important;
  border: 1px solid rgba(25,7,51,.12) !important;
  box-shadow: 0 12px 30px rgba(83,51,140,.08) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-cta-btn:hover {
  transform: translateY(-2px) !important;
}

.home-cta-btn-primary:hover {
  background: #1a0836 !important;
  color: #fffaf2 !important;
  box-shadow: 0 20px 42px rgba(26,8,54,.22) !important;
}

.home-cta-btn-secondary:hover {
  background: #fffaf2 !important;
  color: #190733 !important;
  border-color: rgba(25,7,51,.22) !important;
}

.home-cta-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.home-cta-btn-secondary .home-cta-icon-wrap {
  background: rgba(25,7,51,.08);
}

.home-cta-icon-slide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: currentColor;
}

.home-cta-art {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 30rem;
  margin: clamp(1rem, 2.5vw, 2rem) auto 0;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 36px;
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 28px 60px rgba(83,51,140,.08), inset 0 1px 0 rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.home-cta-art img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

.cta-decor-bubble,
.cta-decor-code,
.cta-decor-sparkle {
  pointer-events: none;
}

.cta-decor-bubble {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  padding: .55rem .95rem;
  border-radius: 999px;
  background: #1a0836;
  color: #fffaf2;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(26,8,54,.18);
}

.cta-decor-code {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 4;
  padding: .85rem 1.1rem;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.78);
  color: #190733;
  font-family: "JetBrains Mono", monospace;
  font-size: .74rem;
  line-height: 1.45;
  box-shadow: 0 18px 34px rgba(83,51,140,.08);
}

.cta-decor-code-header {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}

.cta-decor-code-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.cta-decor-code-dot.red { background: #ff5f56; }
.cta-decor-code-dot.yellow { background: #ffbd2e; }
.cta-decor-code-dot.green { background: #27c93f; }

.cta-decor-sparkle {
  position: absolute;
  z-index: 3;
  color: #832eff;
  opacity: .72;
}

.cta-decor-sparkle-1 { top: 18%; right: .75rem; }
.cta-decor-sparkle-2 { bottom: 22%; left: .75rem; }

.home-footer {
  position: relative;
  margin-top: 0;
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  box-sizing: border-box;
  border-top: 0;
}

.home-footer-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  padding-top: clamp(.5rem, 1.5vw, 1rem);
}

.home-footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  padding-bottom: .25rem;
}

.home-footer-nav a {
  color: #55338a;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .35rem clamp(.85rem, 2vw, 1.35rem);
  transition: color .2s ease;
}

.home-footer-nav a:hover {
  color: #1a0836;
}

.home-footer-nav-divider {
  width: 1px;
  height: .9rem;
  flex-shrink: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(131,46,255,.22) 20%, rgba(192,132,252,.55) 50%, rgba(131,46,255,.22) 80%, transparent 100%);
}

.home-footer-brand-block {
  width: 100%;
  text-align: center;
  padding-top: clamp(.75rem, 1.8vw, 1.25rem);
  border-top: 1px solid rgba(131,46,255,.1);
}

.home-footer-brand {
  display: block;
  width: 100%;
  margin: 0;
  font-family: "publicaPlay", "Space Grotesk", sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 17vw, 13rem);
  line-height: .78;
  letter-spacing: -.06em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(85,51,138,.62) 0%, rgba(131,46,255,.22) 58%, rgba(131,46,255,0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-footer-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem 2rem;
  width: 100%;
  margin-top: clamp(.65rem, 1.5vw, 1rem);
  margin-bottom: 0;
  color: #7d6b9c;
  font-size: clamp(.72rem, 1.1vw, .82rem);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.home-footer-meta > :first-child { justify-self: start; }
.home-footer-meta > :last-child { justify-self: end; }

.home-footer-tagline {
  margin: 0;
  max-width: 40rem;
  color: #7d6b9c;
  font-size: clamp(.72rem, 1.1vw, .84rem);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .home-cta-shell {
    width: min(calc(100% - 4rem), 1240px);
    grid-template-columns: 1.1fr .9fr;
  }
}

@media (min-width: 1024px) {
  .home-cta-shell {
    grid-template-columns: 1.2fr .8fr;
  }
}

@media (max-width: 900px) {
  .home-footer-meta {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .home-footer-meta > :first-child,
  .home-footer-meta > :last-child {
    justify-self: center;
  }

  .home-footer-tagline {
    white-space: normal;
  }

  .home-footer-nav {
    row-gap: .35rem;
  }

  .home-footer-nav-divider {
    display: none;
  }

  .home-footer-nav a {
    padding: .35rem .85rem;
  }
}

@media (max-width: 640px) {
  .home-cta-shell {
    width: min(calc(100% - 1.5rem), 32rem);
    gap: 2rem;
  }

  .home-cta-title {
    font-size: clamp(2.8rem, 18vw, 4.8rem) !important;
  }

  .home-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-cta-btn {
    width: 100%;
  }

  .home-cta-art {
    max-width: 22rem;
    padding: 2.25rem 1.25rem 1.5rem;
    border-radius: 28px;
  }

  .cta-decor-code {
    font-size: .68rem;
    max-width: 10rem;
  }
}

/* Shared CODARA display face. The inner-page bundle already declares this font;
   keep it here as well so every page shell renders the same wordmark. */
@font-face {
  font-family: "publicaPlay";
  src: url("../fonts/PublicaPlay_Regular-s.p.0q-8ia62.nfmi.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

/* Footer wordmark parity v54. Contact footer is the visual source of truth. */
body :is(.home-footer-brand, .cdx2-footer-wordmark, .site-footer-brand) {
  font-family: "publicaPlay", "Space Grotesk", "Archivo", sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(4rem, 17vw, 13rem) !important;
  line-height: .78 !important;
  letter-spacing: -.06em !important;
  text-align: center !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  background: linear-gradient(180deg, rgba(85,51,138,.62) 0%, rgba(131,46,255,.22) 58%, rgba(131,46,255,0) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}
