:root {
      --studio-midpoint: 62%;
    }

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

    html,
    body {
      width: 100%;
      min-height: 100%;
      margin: 0;
      padding: 0;
      background: #14151A;
      font-family: 'Montserrat', Arial, sans-serif;
      overflow-x: hidden;
    }

    body {
      background: linear-gradient(180deg,
          #111213 0%,
          #191D2F var(--studio-midpoint),
          #14151A 80%);
    }

    body.reveal-lock {
      overflow: hidden;
      height: 100vh;
    }

    body.agentic-modal-open {
      overflow: hidden;
      height: 100vh;
    }

    .home-root {
      --section-gap: clamp(56px, 7vw, 110px);
      width: 100%;
      background: transparent;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    
    .reveal-stage {
      position: fixed;
      inset: 0;
      background:
        linear-gradient(140deg, rgba(20, 24, 34, 0.78) 0%, rgba(12, 15, 24, 0.72) 42%, rgba(17, 20, 30, 0.76) 100%);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 50;
      transition: transform 1.5s cubic-bezier(0.22, 0.61, 0.36, 1);
      will-change: transform;
      backdrop-filter: blur(26px) saturate(160%) contrast(108%);
      -webkit-backdrop-filter: blur(26px) saturate(160%) contrast(108%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    }

    html.home-reveal-enabled .reveal-stage {
      display: flex;
    }

    .reveal-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(900px 500px at 18% 10%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 65%),
        radial-gradient(800px 460px at 86% 88%, rgba(120, 150, 200, 0.08), rgba(255, 255, 255, 0) 62%);
      pointer-events: none;
    }

    .reveal-stage::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(35deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 5px),
        repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 6px);
      opacity: 0.2;
      pointer-events: none;
    }

    .reveal-rocket {
      position: relative;
      z-index: 1;
      width: min(34vw, 240px);
      min-width: 130px;
      height: auto;
      display: block;
      filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
      animation: reveal-idle 1.1s ease-in-out infinite;
      transform-origin: center;
    }

    .reveal-stage.launch {
      transform: translateY(-125vh);
    }

    .reveal-stage.launch .reveal-rocket {
      animation: reveal-thrust 1.5s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
    }

    @keyframes reveal-idle {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-4px);
      }
    }

    @keyframes reveal-thrust {
      0% {
        transform: translateY(0) scale(1);
      }

      100% {
        transform: translateY(-90px) scale(0.96);
      }
    }

    
    .framework-banner {
      position: relative;
      z-index: 2;
      width: min(calc(100% - 130px), 1360px);
      margin: calc(var(--section-gap) - 40px) auto var(--section-gap);
      padding: clamp(22px, 3.4vw, 40px) clamp(20px, 4.2vw, 66px);
      border-radius: 14px;
    }

    .framework-banner__title {
      text-align: center;
      text-transform: uppercase;
      font-size: 55px;
      line-height: 1.05;
      font-weight: 800;
      letter-spacing: 0.03em;
      background: linear-gradient(90deg, #E8383B 0%, #5983BC 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      width: fit-content;
      margin: 0 auto;
    }

    .framework-banner__divider {
      width: 85%;
      height: 1px;
      margin: clamp(14px, 1.8vw, 26px) auto clamp(14px, 2vw, 28px);
      background: rgba(255, 255, 255, 0.9);
    }

    .framework-banner__summary {
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: clamp(12px, 2.4vw, 34px);
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: 0.035em;
      font-size: clamp(22px, 3.1vw, 40px);
      line-height: 1.08;
    }

    .framework-banner__agentic {
      color: #5983BC;
    }

    .framework-banner__plus {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
    }

    .framework-banner__studio {
      color: #E8383B;
    }

    .hero {
      position: relative;
      z-index: 2;
      width: calc(100% - 130px);
      margin: 0 auto var(--section-gap);
      display: grid;
      grid-template-columns: 46% 54%;
      align-items: center;
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 18px;
      max-width: 680px;
      padding-left: clamp(6px, 1.5vw, 25px);
      padding-right: clamp(12px, 1vw, 16px);
    }

    
    .hero-title,
    .neural-studio-title {
      font-size: 55px;
      font-weight: 800;
      line-height: 1.06;
      letter-spacing: 0.01em;
      background: linear-gradient(90deg, #E8383B, #5983BC);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }

    .hero-title {
      margin: 0 0 24px 0;
    }

    
    .hero-text {
      margin: 0;
      font-size: 20px;
      line-height: 1.56;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.9);
      max-width: 38ch;
    }

    @media (max-width: 1365px) and (min-width: 901px) {
      .hero {
        grid-template-columns: 47.5% 52.5%;
      }

      .hero-copy {
        max-width: 640px;
        padding-left: 6px;
        padding-right: 12px;
      }

      .hero-title {
        font-size: clamp(48px, 3.9vw, 53px);
      }
    }

    .hero-agentic {
      width: 100%;
      padding: 0;
    }

    .hero-agentic-card {
      --agentic-control-size: 40px;
      --agentic-control-gap: 5px;
      position: relative;
      border-radius: 22px;
      padding: 0;
      background: transparent;
      min-height: 420px;
    }

    .hero-agentic__content .metric-content {
      position: relative;
      width: 100%;
      margin: 0 auto;
      padding-top: 15px;
      padding-left: calc(var(--agentic-control-size) + (2 * var(--agentic-control-gap)));
      padding-right: calc(var(--agentic-control-size) + (2 * var(--agentic-control-gap)));
    }

    .hero-agentic__content {
      position: relative;
      z-index: 1;
      will-change: opacity, transform, filter;
    }

    .hero-agentic__content .metric-title {
      position: absolute;
      top: 5px;
      left: calc(var(--agentic-control-size) + (2 * var(--agentic-control-gap)));
      right: calc(var(--agentic-control-size) + (2 * var(--agentic-control-gap)));
      margin: 0 auto;
      width: fit-content;
      text-align: center;
      font-size: clamp(20px, 1.65vw, 29px);
      font-weight: 800;
      line-height: 1.05;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      z-index: 2;
      pointer-events: none;
    }

    .hero-agentic__content svg {
      width: 100%;
      margin: 0 auto;
      display: block;
      height: auto;
    }

    .hero-agentic__content .metric-content {
      max-width: calc(455px + (2 * (var(--agentic-control-size) + (2 * var(--agentic-control-gap)))));
    }

    .hero-agentic__expand {
      position: absolute;
      right: 15%;
      top: -2px;
      width: 40px;
      height: 40px;
      border: none;
      background: transparent;
      color: rgba(255, 255, 255, 0.9);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color 0.25s ease, transform 0.2s ease, color 0.25s ease;
      z-index: 6;
    }

    .hero-agentic__expand:hover,
    .hero-agentic__expand:focus-visible {
      color: #fff;
      transform: translateY(-1px);
      outline: none;
    }

    .hero-agentic__expand svg {
      width: 22px;
      height: 22px;
      display: block;
      stroke: currentColor;
    }

    .hero-agentic__arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: var(--agentic-control-size, 40px);
      height: var(--agentic-control-size, 40px);
      padding: 0;
      border: 0;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      cursor: pointer;
      transition: transform 0.2s ease, filter 0.2s ease;
      z-index: 6;
    }

    .hero-agentic__arrow--left {
      left: 15%;
      background: #E8383B;
    }

    .hero-agentic__arrow--right {
      right: 15%;
      background: #5983BC;
    }

    .hero-agentic__arrow:hover,
    .hero-agentic__arrow:focus-visible {
      transform: translateY(-50%) scale(1.06);
      filter: brightness(1.05);
      outline: none;
    }

    .hero-agentic__arrow svg {
      width: 14px;
      height: 14px;
      display: block;
      stroke: #fff;
    }

    .hero-agentic__arrow--left svg {
      transform: rotate(-90deg);
      margin-left: -1px;
    }

    .hero-agentic__arrow--right svg {
      transform: rotate(90deg);
      margin-left: 1px;
    }

    .agentic-modal {
      position: fixed;
      inset: 0;
      z-index: 80;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 18px;
    }

    .agentic-modal.is-open {
      display: flex;
    }

    .agentic-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(3, 5, 12, 0.76);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
    }

    .agentic-modal__dialog {
      position: relative;
      width: min(95vw, 1480px);
      min-height: min(84vh, 800px);
      max-height: min(92vh, 860px);
      overflow: auto;
      border-radius: 28px;
      border: 0;
      background: linear-gradient(180deg, rgba(8, 12, 22, 0.98), rgba(8, 12, 22, 0.96));
      padding: 32px 24px 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
    }

    .agentic-modal__close {
      position: absolute;
      top: 12px;
      right: 14px;
      border: 0;
      background: transparent;
      color: #fff;
      font-size: 54px;
      line-height: 1;
      cursor: pointer;
      padding: 2px 8px;
      z-index: 3;
    }

    .agentic-modal__content {
      position: relative;
      display: grid;
      width: 100%;
      grid-template-columns: minmax(0, 1fr) minmax(160px, 20vw) minmax(0, 1fr);
      align-items: center;
    }

    .agentic-modal__card-wrap {
      --agentic-control-size: 40px;
      --agentic-control-gap: 5px;
      position: relative;
      min-width: 0;
      display: block;
    }

    .agentic-modal__hover-panel {
      width: 100%;
      min-height: 190px;
      align-self: center;
      justify-self: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 14px 0;
      text-align: center;
      color: #fff;
      pointer-events: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
      z-index: 2;
    }

    .agentic-modal__hover-panel.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .agentic-modal__hover-panel .tt-title {
      margin: 0 0 10px;
      color: #fff;
      font-size: clamp(18px, 1.55vw, 30px);
      font-weight: 800;
      line-height: 1.15;
    }

    .agentic-modal__hover-panel .tt-desc {
      margin: 0;
      color: rgba(236, 240, 247, 0.92);
      font-size: clamp(14px, 0.96vw, 19px);
      line-height: 1.5;
    }

    .agentic-modal__card {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      min-height: clamp(540px, 62vh, 590px);
      border: 0;
      background: linear-gradient(180deg, rgba(8, 12, 22, 0.98), rgba(8, 12, 22, 0.95));
      box-shadow: none;
      padding: 0;
      will-change: opacity, transform, filter;
    }

    .agentic-modal__card .metric-content {
      position: relative;
      width: 100%;
      margin: 0 auto;
      min-height: inherit;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 26px;
      
      
      max-width: calc(680px + (2 * (var(--agentic-control-size) + (2 * var(--agentic-control-gap)))));
    }

    .agentic-modal__card-wrap--left {
      padding-left: 12px
    }

    .agentic-modal__card-wrap--right {
      padding-right: 12px
    }

    .agentic-modal__card .metric-title {
      position: absolute;
      top: 0;
      left: calc(var(--agentic-control-size) + (2 * var(--agentic-control-gap)));
      right: calc(var(--agentic-control-size) + (2 * var(--agentic-control-gap)));
      margin: 0;
      text-align: center;
      font-size: clamp(24px, 1.75vw, 34px);
      font-weight: 800;
      line-height: 1.06;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      z-index: 2;
      pointer-events: none;
    }

    .agentic-modal__card svg {
      width: 100%;
      margin: 0 auto;
      display: block;
      height: auto;
      max-width: 680px;
    }

    .agentic-modal__arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: var(--agentic-control-size, 40px);
      height: var(--agentic-control-size, 40px);
      padding: 0;
      border: 0;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      cursor: pointer;
      transition: transform 0.2s ease, filter 0.2s ease;
      z-index: 6;
    }

    .agentic-modal__arrow--left {
      left: 5px;
      background: #E8383B;
    }

    .agentic-modal__arrow--right {
      right: 5px;
      background: #5983BC;
    }

    .agentic-modal__arrow:hover,
    .agentic-modal__arrow:focus-visible {
      transform: translateY(-50%) scale(1.06);
      filter: brightness(1.05);
      outline: none;
    }

    .agentic-modal__arrow svg {
      width: 14px;
      height: 14px;
      display: block;
      stroke: #fff;
    }

    .agentic-modal__arrow--left svg {
      transform: rotate(-90deg);
      margin-left: -1px;
    }

    .agentic-modal__arrow--right svg {
      transform: rotate(90deg);
      margin-left: 1px;
    }

    .hero-agentic .segment-group,
    .agentic-modal .segment-group {
      cursor: pointer;
      transition: transform .25s ease;
      transform-origin: 400px 400px;
    }

    .hero-agentic .segment-group:hover,
    .agentic-modal .segment-group:hover {
      transform: scale(1.08);
    }

    .hero-agentic .inner-curve,
    .agentic-modal .inner-curve {
      fill: none;
      stroke: white;
      stroke-width: 2;
    }

    .hero-agentic .core,
    .agentic-modal .core {
      fill: white;
    }

    .hero-agentic .core-interactive,
    .agentic-modal .core-interactive {
      cursor: pointer;
    }

    .hero-agentic .inner-dash,
    .agentic-modal .inner-dash {
      stroke: #888;
      stroke-dasharray: 5 6;
      stroke-width: 1.5;
    }

    .hero-agentic .hover-tooltip,
    .agentic-modal .hover-tooltip {
      position: absolute;
      z-index: 20;
      width: 280px;
      max-width: 280px;
      background: rgba(15, 15, 20, .95);
      border: 1px solid rgba(1, 152, 177, 0.9);
      border-radius: 12px;
      padding: 14px 16px;
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
      color: #fff;
      pointer-events: none;
      opacity: 0;
      visibility: hidden;
      transform: translate(-50%, -38%);
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .hero-agentic .hover-tooltip.is-visible,
    .agentic-modal .hover-tooltip.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, -40%);
    }

    .hero-agentic .hover-tooltip .tt-title,
    .agentic-modal .hover-tooltip .tt-title {
      font-weight: 800;
      font-size: 16px;
      margin-bottom: 8px;
      line-height: 1.2;
    }

    .hero-agentic .hover-tooltip .tt-desc,
    .agentic-modal .hover-tooltip .tt-desc {
      color: #cfcfcf;
      font-size: 13px;
      line-height: 1.45;
    }

    
    .metrics-home {
      position: relative;
      min-height: 100vh;
      background: transparent;
      padding: 50px;
      z-index: 1;
    }

    .metrics-home::after {
      content: none;
      position: absolute;
      right: 0;
      bottom: 0;
      width: var(--eclipse-size);
      height: var(--eclipse-size);
      background: radial-gradient(circle at 100% 100%,
          var(--eclipse-core) 0%,
          var(--eclipse-core) 32%,
          var(--eclipse-edge) 70%,
          var(--eclipse-edge) 100%);
      opacity: 0.86;
      pointer-events: none;
      z-index: 0;
    }

    .metrics-home .dashboard {
      position: relative;
      z-index: 1;
      padding-top: 20px;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 20px;
    }

    .metrics-home .dashboard-row {
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .metrics-home .card {
      border: 1px solid #849BBC;
      border-radius: 16px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin: 0 auto;
    }

    .metrics-home .chart-card {
      width: 53%;
      min-width: 300px;
      height: 450px;
      background: #14141C;
      justify-content: flex-start;
      gap: 15px;
      padding: 20px 20px 0;
    }

    .metrics-home .chart-root {
      width: 100%;
      height: 100%;
      margin-top: 12px;
      border-radius: 12px;
      background: transparent;
      overflow: hidden;
    }

    .metrics-home .partner-card {
      min-width: 300px;
      height: 450px;
      flex: 1;
      justify-content: center;
      gap: 15px;
      padding: 20px 20px 0;
      background: radial-gradient(ellipse farthest-corner at 0% 0%, #14141C 70%, #5D5D82 100%);
    }

    .metrics-home .group-left {
      width: 53%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .metrics-home .office-card {
      width: 49%;
      height: 300px;
      gap: 30px;
      padding: 60px 30px;
      background: linear-gradient(to right, #14141C 28%, #0A1E24 100%);
    }

    .metrics-home .project-card {
      width: 49%;
      height: 300px;
      justify-content: center;
      gap: 15px;
      padding: 30px;
      background: linear-gradient(to left, #14141C 0%, #0A1E24 72%);
    }

    .metrics-home .satisfaction-card {
      height: 300px;
      flex: 1;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 30px;
      background: radial-gradient(ellipse farthest-corner at 0% 90%, #14141C 74%, #5D5D82 100%);
    }

    .metrics-home .satisfaction-copy {
      flex: 1;
      min-width: 260px;
    }

    .metrics-home .satisfaction-copy .kpi-value {
      margin-bottom: 14px;
    }

    .metrics-home .satisfaction-copy .kpi-label {
      margin-bottom: 10px;
    }

    .metrics-home .satisfaction-gauge-wrap {
      width: min(42%, 360px);
      min-width: 280px;
      aspect-ratio: 1 / 1;
      flex-shrink: 0;
      margin-top: 10px;
    }

    .metrics-home .satisfaction-gauge {
      width: 100%;
      height: 100%;
      display: block;
      overflow: visible;
    }

    .metrics-home .gauge-outer-guide {
      fill: none;
      stroke: rgba(154, 159, 190, 0.72);
      stroke-width: 2;
    }

    .metrics-home .gauge-progress {
      fill: none;
      stroke: url(#satisfactionRingGradient);
      stroke-width: 65;
    }

    .metrics-home .gauge-solid {
      stroke: rgba(154, 159, 190, 0.72);
      stroke-width: 2;
    }

    .metrics-home .gauge-pointer {
      stroke: url(#satisfactionPointerGradient);
      stroke-width: 2.4;
      stroke-linecap: round;
    }

    .metrics-home .gauge-pointer-dot {
      fill: url(#satisfactionAccentGradient);
      stroke: none;
      stroke-width: 0;
      filter: drop-shadow(0 0 8px rgba(106, 148, 205, 0.45));
    }

    .metrics-home .gauge-pointer-value {
      fill: url(#satisfactionAccentGradient);
      font-size: 24px;
      font-weight: 700;
      letter-spacing: 0.5px;
      stroke: none;
      stroke-width: 0;
    }

    .metrics-home .gauge-dashed {
      stroke: rgba(98, 106, 146, 0.7);
      stroke-width: 2;
      stroke-dasharray: 6 7;
    }

    .metrics-home #satisfactionTicks line {
      stroke: rgba(120, 126, 158, 0.72);
      stroke-width: 2;
      stroke-linecap: round;
    }

    .metrics-home #satisfactionLabels text {
      fill: rgba(200, 205, 226, 0.86);
      font-size: 16px;
      font-weight: 400;
      letter-spacing: 1px;
    }

    .metrics-home .gauge-current {
      pointer-events: none;
    }

    .metrics-home .gauge-current-value {
      fill: url(#satisfactionRingGradient);
      font-size: 72px;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .metrics-home .gauge-current-label {
      fill: rgba(200, 205, 226, 0.9);
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .metrics-home .kpi-value {
      font-weight: 600;
      letter-spacing: 2px;
      background: linear-gradient(90deg, #E8383B, #5983BC);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
      line-height: 1.1;
      display: block;
      margin-bottom: 10px;
    }

    .metrics-home .kpi-value-xl {
      font-size: 90px;
    }

    .metrics-home .kpi-value-lg {
      font-size: 70px;
    }

    .metrics-home .kpi-label {
      font-weight: 400;
      color: #FFFFFF;
      opacity: 0.9;
      letter-spacing: 0.5px;
      display: block;
      text-align: left;
    }

    .metrics-home .kpi-label-xl {
      font-size: 25px;
    }

    .metrics-home .kpi-label-lg {
      font-size: 20px;
    }

    .metrics-home .kpi-desc {
      font-weight: 400;
      color: #849BBC;
      opacity: 0.9;
      letter-spacing: 0.5px;
      display: block;
      text-align: left;
    }

    .metrics-home .kpi-desc-md {
      font-size: 15px;
    }

    .metrics-home .kpi-desc-sm {
      font-size: 12px;
    }

    
    .pie-home {
      position: relative;
      z-index: 1;
      padding: 20px 30px;
      padding-bottom: 0;
      background: transparent;
      overflow: visible;
    }

    .metrics-pie-bridge {
      position: relative;
      background: transparent;
      isolation: isolate;
      --eclipse-size: clamp(368px, 49vw, 608px);
      --eclipse-mobile-size: clamp(176px, 34vw, 241px);
      --eclipse-core: rgb(89, 131, 188, 0.5);
      --eclipse-edge: #000000;
    }

    .pie-home::before {
      content: none;
      position: absolute;
      right: 0;
      top: 0;
      width: var(--eclipse-size);
      height: var(--eclipse-size);
      background: radial-gradient(circle at 100% 0%,
          var(--eclipse-core) 0%,
          var(--eclipse-core) 32%,
          var(--eclipse-edge) 70%,
          var(--eclipse-edge) 100%);
      opacity: 0.86;
      pointer-events: none;
      z-index: 0;
    }

    .section-title {
      position: relative;
      font-size: 60px;
      font-weight: 700;
      line-height: 1.1;
      background: linear-gradient(90deg, #E8383B 0%, #5983BC 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin: 0 0 60px;
      width: fit-content;
      z-index: 2;
    }

    .pie-home .section-title {
      margin-left: 30px;
      z-index: 6;
    }

    .pie-home .pie-metrics-stack {
      position: relative;
      z-index: 1;
      overflow: visible;
    }

    .pie-home .pie-metrics-root {
      padding: 0;
    }

    .pie-home .mobile-carousel {
      position: relative;
      overflow: hidden;
      z-index: 5;
      padding: 0 50px;
    }

    .pie-home .carousel-track {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }

    .pie-home .carousel-track::-webkit-scrollbar {
      display: none;
    }

    .pie-home .carousel-slide {
      position: relative;
      flex: 0 0 100%;
      scroll-snap-align: center;
      padding: 12px 0 8px;
      height: auto;
      display: flex;
      flex-direction: column;
    }

    .pie-home .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 18px;
    }

    .pie-home .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #555;
      transition: 0.3s;
      cursor: pointer;
    }

    .pie-home .carousel-dot.active {
      background: #1E98B1;
    }

    .pie-home .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      cursor: pointer;
      font-size: 18px;
      backdrop-filter: blur(6px);
      z-index: 6;
    }

    .pie-home .carousel-arrow svg {
      color: rgba(255, 255, 255, 0.9);
      width: 20px;
      height: 20px;
    }

    .pie-home .carousel-arrow.left {
      left: 10px;
    }

    .pie-home .carousel-arrow.right {
      right: 10px;
    }

    .pie-home .stack-row {
      position: sticky;
      top: 60px;
      height: 68vh;
      margin-bottom: 15vh;
      overflow: visible;
      will-change: transform;
      transform: translateZ(0);
      backface-visibility: hidden;
      background: #000;
      border-radius: 16px;
    }

    .pie-home .stack-row:last-child {
      margin-bottom: 0;
    }

    .pie-home .stack-inner {
      position: relative;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 60px;
      border-radius: 16px;
      padding: 28px 8px;
      background: #000;
      --border-c1: #1E42AF;
      --border-c2: #0198B1;
      --divider-color: #1E98B1;
    }

    .pie-home .stack-inner::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 16px;
      padding: 3px;
      background: linear-gradient(90deg, var(--border-c1), var(--border-c2));
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      z-index: 0;
    }

    .pie-home .stack-row[data-index="1"] .stack-inner::before,
    .pie-home .stack-row[data-index="3"] .stack-inner::before,
    .pie-home .carousel-slide[data-index="1"] .stack-inner::before,
    .pie-home .carousel-slide[data-index="3"] .stack-inner::before {
      --border-c1: #9A1E1C;
      --border-c2: #C2931E;
      --divider-color: #C2931E;
    }

    .pie-home .stack-inner::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 16px;
      background:
        linear-gradient(to bottom, transparent, var(--divider-color), transparent) center / 1px 80% no-repeat,
        radial-gradient(circle, rgba(228, 233, 244, 0.26) 0 1px, transparent 1.7px) 0 0 / 140px 140px,
        radial-gradient(circle, rgba(228, 233, 244, 0.2) 0 1px, transparent 1.9px) 70px 35px / 170px 170px;
      opacity: 0.62;
      pointer-events: none;
      z-index: 1;
    }

    .pie-home .stack-row[data-index="1"] .stack-inner::after,
    .pie-home .stack-row[data-index="3"] .stack-inner::after,
    .pie-home .carousel-slide[data-index="1"] .stack-inner::after,
    .pie-home .carousel-slide[data-index="3"] .stack-inner::after {
      --divider-color: #C2931E;
    }

    .pie-home .metric-content {
      position: relative;
      z-index: 2;
    }

    .pie-home .metric-title {
      color: #fff;
      font-size: 28px;
      font-weight: 700;
      margin-top: 20px;
      text-align: center;
    }

    .pie-home svg {
      width: 100%;
      height: auto;
      overflow: visible;
      display: block;
    }

    .pie-home .segment-group {
      cursor: pointer;
      transition: transform .25s ease;
      transform-origin: 400px 400px;
    }

    .pie-home .segment-group:hover {
      transform: scale(1.08);
    }

    .pie-home .inner-curve {
      fill: none;
      stroke: white;
      stroke-width: 2;
    }

    .pie-home .core {
      fill: white;
    }

    .pie-home .core-interactive {
      cursor: pointer;
    }

    .pie-home .inner-dash {
      stroke: #888;
      stroke-dasharray: 5 6;
      stroke-width: 1.5;
    }

    .pie-home .hover-tooltip {
      position: absolute;
      z-index: 999;
      width: 280px;
      max-width: 280px;
      background: rgba(15, 15, 20, .95);
      border: 1px solid rgba(1, 152, 177, 0.9);
      border-radius: 12px;
      padding: 14px 16px;
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
      color: #fff;
      pointer-events: none;
      opacity: 0;
      visibility: hidden;
      transform: translate(-50%, -38%);
      transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    }

    .pie-home .hover-tooltip.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, -40%);
    }

    .pie-home .hover-tooltip .tt-title {
      font-weight: 800;
      font-size: 16px;
      margin-bottom: 8px;
      line-height: 1.2;
    }

    .pie-home .hover-tooltip .tt-desc {
      color: #cfcfcf;
      font-size: 13px;
      line-height: 1.45;
    }

    
    .neural-studio-home {
      margin: 0 auto var(--section-gap);
      width: calc(100% - 130px);
      background: transparent;
      position: relative;
      z-index: 1;
    }

    .neural-studio-row {
      display: grid;
      grid-template-columns: 46% 54%;
      align-items: center;
      gap: 52px;
      max-width: 1440px;
      margin: 0 auto;
    }

    .neural-studio-media {
      position: relative;
      width: 100%;
      border-radius: 26px;
      padding: 1px;
      background: linear-gradient(130deg, #E8383B 0%, #5983BC 100%);
      border: 0;
      box-shadow:
        0 22px 56px rgba(2, 8, 18, 0.62),
        -7px -9px 30px rgba(232, 56, 59, 0.2),
        8px 12px 34px rgba(89, 131, 188, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
      transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.95s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform, box-shadow;
      cursor: pointer;
      overflow: hidden;
    }

    .neural-studio-media:hover {
      transform: translateY(-7px);
      box-shadow:
        0 30px 70px rgba(2, 8, 18, 0.72),
        -11px -13px 42px rgba(232, 56, 59, 0.3),
        12px 16px 48px rgba(89, 131, 188, 0.32),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .neural-studio-media-frame {
      width: 100%;
      aspect-ratio: 16 / 10;
      background: #000;
      border-radius: 25px;
      padding: 6px 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .neural-studio-media-frame img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      border-radius: 25px;
      background: #000;
      box-shadow: none;
    }

    .neural-studio-text {
      display: flex;
      flex-direction: column;
      gap: 24px;
      max-width: 620px;
      align-items: flex-end;
      text-align: right;
    }

    .neural-studio-title {
      margin: 0 0 24px auto;
      max-width: 19ch;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.04em;
      text-align: right;
    }

    .neural-studio-title-line {
      display: block;
      width: fit-content;
      background: linear-gradient(90deg, #E8383B, #5983BC);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }

    .neural-studio-description {
      margin: 0;
      color: rgba(228, 233, 244, 0.86);
      font-size: clamp(21px, 1.45vw, 28px);
      line-height: 1.5;
      font-weight: 400;
      max-width: 37ch;
    }

    .neural-studio-text p {
      margin: 0;
    }

    .ethos-slogan-home {
      margin: 60px 0 calc(var(--section-gap) + 60px);
      padding: 0 64px;
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .ethos-slogan-inner {
      max-width: 1220px;
      margin: 0 auto;
      text-align: center;
      color: rgba(238, 242, 248, 0.95);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .ethos-slogan-line {
      margin: 0;
      font-size: 22px;
      line-height: 1.25;
      font-weight: 100;
      color: rgba(236, 240, 247, 0.88);
    }

    .ethos-slogan-line--strong {
      font-weight: 700;
      color: #ffffff;
    }

    .ethos-slogan-line--copy {
      color: rgba(225, 231, 240, 0.86);
    }

    .ethos-connection-home {
      --connection-title-size: clamp(46px, 6.6vw, 92px);
      --connection-title-line-height: 0.94;
      --connection-logo-height: calc(var(--connection-title-size) * var(--connection-title-line-height));
      --connection-logo-max-height: calc(var(--connection-logo-height) * 0.9);
      --handling-c1: #E8383B;
      --handling-c2: #5983BC;
      --handling-c3: #38416C;
      width: 100%;
      max-width: 1220px;
      margin: 0 auto calc(2.2 * var(--section-gap));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .ethos-connection-heading {
      margin-top: 0;
      margin-bottom: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.18em;
      color: #ffffff;
      font-size: clamp(30px, 5vw, 65px);
      line-height: 0.94;
      font-weight: 800;
      letter-spacing: 0.03em;
      text-align: center;
    }

    .ethos-connection-heading-accent {
      background: linear-gradient(90deg, #E8383B 0%, #5983BC 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }

    .ethos-connection-title {
      margin: 0;
      color: #ffffff;
      font-size: var(--connection-title-size);
      line-height: var(--connection-title-line-height);
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    .ethos-connection-visual {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 50px;
      gap: 10px;
    }

    .ethos-connection-stage {
      width: min(100%, 620px);
      min-height: var(--connection-logo-max-height);
      display: grid;
      place-items: center;
      overflow: visible;
      isolation: isolate;
    }

    .ethos-connection-logo {
      grid-area: 1 / 1;
      width: auto;
      max-width: 100%;
      height: auto;
      max-height: var(--connection-logo-max-height);
      object-fit: contain;
      opacity: 0;
      transform: translateY(0) scale(0);
      transform-origin: center center;
      animation: ethosConnectionLogo 12s linear infinite;
      will-change: opacity, transform;
      filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.2));
    }

    .ethos-connection-logo--lead {
      animation-name: ethosConnectionLeadLogo;
    }

    @keyframes ethosConnectionLeadLogo {
      0% {
        opacity: 0;
        transform: translateY(0) scale(4);
        animation-timing-function: cubic-bezier(0.1, 0.72, 0.2, 1);
      }

      22% {
        opacity: 1;
        transform: translateY(0) scale(1.9);
        animation-timing-function: cubic-bezier(0.72, 0.02, 1, 0.28);
      }

      25%,
      100% {
        opacity: 0;
        transform: translateY(0) scale(0);
      }
    }

    @keyframes ethosConnectionLogo {
      0% {
        opacity: 0;
        transform: translateY(0) scale(0);
        animation-timing-function: cubic-bezier(0.2, 0.78, 0.22, 1);
      }

      18% {
        opacity: 1;
        transform: translateY(0) scale(1);
        animation-timing-function: cubic-bezier(0.7, 0.02, 1, 0.32);
      }

      25%,
      100% {
        opacity: 0;
        transform: translateY(0) scale(1.6);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .ethos-connection-logo {
        animation: none;
        position: relative;
        display: none;
        opacity: 1;
        transform: none;
      }

      .ethos-connection-logo:first-child {
        display: block;
      }

      .ethos-handling-subtitle {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    .ethos-handling-home {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .ethos-handling-title {
      margin: 0;
      width: fit-content;
      max-width: 100%;
      color: #ffffff;
      font-size: var(--connection-title-size);
      line-height: var(--connection-title-line-height);
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    .ethos-handling-subtitle-wrap {
      width: 100%;
      max-width: 100%;
      min-height: 2.6em;
      margin: 0 auto;
      display: grid;
      place-items: center;
      text-align: center;
      overflow: visible;
    }

    .ethos-handling-subtitle {
      margin: 0;
      display: block;
      width: fit-content;
      max-width: 100%;
      color: var(--handling-c1);
      font-size: clamp(18px, 2.8vw, 50px);
      line-height: 1.18;
      font-weight: 800;
      font-style: italic;
      letter-spacing: 0.045em;
      text-transform: uppercase;
      opacity: 0;
      transform: translate3d(var(--handling-enter-shift, -0.18em), -1.3em, 0) scale(0.82) rotateX(34deg);
      transform-origin: center top;
      filter: blur(12px) saturate(0.92);
      transition:
        opacity 0.68s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.78s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.78s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.38s ease,
        letter-spacing 0.68s ease;
      text-wrap: balance;
      will-change: opacity, transform, filter, letter-spacing;
      backface-visibility: hidden;
    }

    .ethos-handling-subtitle.is-visible {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1) rotateX(0deg);
      filter: blur(0) saturate(1);
    }

    .ethos-handling-subtitle.is-dropping-out {
      opacity: 0;
      transform: translate3d(var(--handling-exit-shift, 0.14em), 1.1em, 0) scale(1.08) rotateX(-18deg);
      filter: blur(10px) saturate(0.9);
      transition:
        opacity 0.62s cubic-bezier(0.7, 0.02, 1, 0.3),
        transform 0.62s cubic-bezier(0.7, 0.02, 1, 0.3),
        filter 0.62s cubic-bezier(0.7, 0.02, 1, 0.3),
        color 0.38s ease;
    }

    .site-footer {
      background: #000;
      color: #f4f7fb;
      padding: 100px;
      padding-bottom: 44px;
      font-size: 16px;
    }

    .footer-inner {
      position: relative;
      z-index: 1;
      max-width: 1440px;
      margin: 0 auto;
    }

    .footer-desktop-layout {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0;
    }

    .footer-desktop-nav {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 96px;
      flex: 0 0 45%;
      width: 45%;
    }

    .footer-nav-section {
      flex: 0 0 auto;
      min-width: 0;
    }

    .footer-section-heading {
      margin: 0 0 20px;
      line-height: 1.25;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.9);
    }

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

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: flex-start;
    }

    .footer-links a,
    .footer-links a:link,
    .footer-links a:visited {
      text-decoration: none;
      color: rgba(255, 255, 255, 0.9) !important;
      transition: color 0.3s ease;
      white-space: nowrap;
      display: inline-block;
      width: fit-content;
      font-size: 16px;
      line-height: 1.35;
      font-weight: 100;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: #5983BC !important;
      text-decoration: none;
    }

    .footer-links a[aria-current="page"],
    .footer-links a[aria-current="page"]:hover,
    .footer-links a[aria-current="page"]:focus-visible,
    .footer-links a[aria-current="page"]:visited {
      background: linear-gradient(90deg, #E8383B 0%, #5983BC 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent !important;
      background-clip: text;
      color: transparent !important;
      text-decoration: none;
    }

    body[data-page="home"] .footer-links a[href="/"],
    body[data-page="about"] .footer-links a[href="/about-us"],
    body[data-page="contact"] .footer-links a[href="/contact-us"],
    body[data-page="career"] .footer-links a[href="/careers"],
    body[data-page="new-client"] .footer-links a[href="/new-client-setup"],
    body[data-page="support"] .footer-legal-links a[href="/support"],
    body[data-page="privacy"] .footer-legal-links a[href="/privacy-policy"],
    body[data-page="licence"] .footer-legal-links a[href="/licence-agreement"] {
      background: linear-gradient(90deg, #E8383B 0%, #5983BC 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent !important;
      background-clip: text;
      color: transparent !important;
      text-decoration: none;
    }

    .footer-meta-column {
      display: flex;
      flex-direction: column;
      gap: 56px;
      flex: 0 0 25%;
      width: 25%;
      align-items: flex-start;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

    .footer-meta-section {
      width: 100%;
    }

    .footer-meta-column,
    .footer-meta-column * {
      font-size: 14px !important;
    }

    .footer-meta-text,
    .footer-meta-inline {
      margin: 0;
      color: rgba(255, 255, 255, 0.88);
      font-size: 14px;
      line-height: 1.85;
      font-weight: 100;
      letter-spacing: 0.02em;
    }

    .footer-meta-text {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-meta-inline {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      line-height: 1.25;
      text-transform: uppercase;
    }

    .footer-meta-inline span[aria-hidden="true"] {
      color: rgba(255, 255, 255, 0.55);
    }

    .footer-map-link,
    .footer-map-link:link,
    .footer-map-link:visited {
      width: fit-content;
      max-width: 100%;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      appearance: none;
      -webkit-appearance: none;
      box-shadow: none;
      color: rgba(255, 255, 255, 0.9) !important;
      font: inherit;
      font-family: inherit;
      text-align: left;
      cursor: pointer;
      transition: color 0.3s ease;
      text-decoration: none;
    }

    .footer-map-link:hover,
    .footer-map-link:focus-visible {
      color: #5983BC !important;
      text-decoration: underline;
    }

    .footer-map-link.footer-meta-text,
    .footer-map-link.footer-mobile-meta--stack,
    .footer-map-link.footer-meta-text span,
    .footer-map-link.footer-mobile-meta--stack span {
      font-weight: 100 !important;
    }

    .footer-map-link:focus-visible {
      outline: none;
    }

    .footer-mobile-layout {
      display: none;
    }

    .footer-logo {
      height: 38px;
      width: auto;
      margin-bottom: 25px;
    }

    .footer-bottom {
      position: relative;
      z-index: 1;
      text-align: center;
      font-size: 14px;
      color: #7d8790;
      padding-top: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    .footer-legal-links {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
      font-size: 14px;
      line-height: 1.7;
    }

    .footer-legal-links a,
    .footer-legal-links a:link,
    .footer-legal-links a:visited {
      color: rgba(255, 255, 255, 0.9) !important;
      text-decoration: none;
      transition: color 0.3s ease;
      white-space: nowrap;
      font-weight: 100;
      letter-spacing: 0.02em;
    }

    .footer-legal-links a:hover,
    .footer-legal-links a:focus-visible {
      color: #5983BC !important;
      text-decoration: none;
    }

    .footer-legal-links a[aria-current="page"],
    .footer-legal-links a[aria-current="page"]:hover,
    .footer-legal-links a[aria-current="page"]:focus-visible,
    .footer-legal-links a[aria-current="page"]:visited {
      background: linear-gradient(90deg, #E8383B 0%, #5983BC 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent !important;
      background-clip: text;
      color: transparent !important;
      text-decoration: none;
    }

    .footer-legal-links span {
      color: #7d8790;
    }

    .footer-legal-links--desktop {
      justify-content: center;
      margin-top: 0;
      margin-bottom: 0;
    }

    .footer-legal-links--mobile {
      display: none;
      justify-content: center;
      margin-top: 16px;
    }

    .footer-brand--desktop {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    .footer-brand--mobile {
      display: none;
    }

    .footer-logo--bottom {
      width: auto;
      height: auto;
      max-width: 217.06px;
      max-height: 86.2px;
      display: block;
      margin: 0;
    }

    .footer-logo--mobile {
      height: clamp(62.4px, 16.64vw, 76.96px);
      margin: 0;
    }

    .footer-copyright {
      margin: 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 18px;
      line-height: 1.4;
      font-weight: 100;
      letter-spacing: 0.02em;
    }

    .footer-copyright--mobile {
      display: none;
    }

    .footer-copyright--desktop {
      display: block;
      margin-top: 20px;
    }

    .site-footer,
    .site-footer a,
    .site-footer p,
    .site-footer span,
    .site-footer h4 {
      font-size: 16px;
    }

    @media (max-width: 900px) {

      .home-root {
        --section-gap: clamp(45px, 10.5vw, 66px);
        --mobile-section-inner-gap: calc(var(--section-gap) / 1.5);
        --mobile-section-inline: 8px;
      }

      .metrics-pie-bridge,
      .framework-banner,
      .hero,
      .neural-studio-home,
      .ethos-slogan-home {
        z-index: 4;
      }

      .framework-banner {
        width: calc(100% - 40px);
        margin: var(--section-gap) auto var(--section-gap);
        padding: 18px 14px 20px;
        border-radius: 12px;
      }

      .framework-banner__title {
        font-size: clamp(25px, 8.6vw, 36px);
        letter-spacing: 0.025em;
      }

      .framework-banner__divider {
        margin: 12px auto 14px;
      }

      .framework-banner__summary {
        flex-direction: column;
        align-items: center;
        font-size: clamp(16px, 5.4vw, 24px);
        gap: 2px;
        letter-spacing: 0.03em;
      }

      .framework-banner__plus {
        display: block;
        line-height: 1;
        margin: -2px 0;
      }

      .hero {
        width: calc(100% - 40px);
        margin: 0 auto var(--section-gap);
        min-height: auto;
        grid-template-columns: 1fr;
        gap: var(--mobile-section-inner-gap);
      }

      .hero-copy {
        max-width: 100%;
        padding-left: 8px;
        padding-right: 8px;
        text-align: center;
        gap: 8px;
      }

      .hero-title,
      .neural-studio-title {
        font-size: clamp(30.6px, 7.36vw, 45.9px);
        margin-bottom: 12px;
      }

      .hero-text {
        font-size: clamp(11.2px, 4.096vw, 20px);
        line-height: 1.5;
        max-width: 100%;
      }

      .hero-agentic {
        padding: 0;
        margin-top: 0;
      }

      .hero-agentic-card {
        --agentic-control-size: 32px;
        min-height: 0;
        padding: 0;
        border-radius: 16px;
      }

      .hero-agentic__content .metric-content {
        padding-top: 22px;
        overflow: visible;
      }

      .hero-agentic__content svg {
        width: 120%;
        max-width: none;
        margin-left: -10%;
      }

      .hero-agentic__expand {
        display: none;
      }

      .hero-agentic__content .metric-title {
        font-size: clamp(14px, 5.2vw, 24px);
        top: 10px;
        left: 50%;
        right: auto;
        width: max-content;
        max-width: calc(100vw - 32px);
        margin: 0 auto;
        padding-inline: 6px;
        font-weight: 800;
        white-space: nowrap;
        transform: translateX(-50%);
      }

      .hero-agentic__arrow {
        width: 32px;
        height: 32px;
      }

      .hero-agentic__arrow:active {
        transform: translateY(-50%) scale(1.06);
        filter: brightness(1.05);
      }

      .hero-agentic__arrow--left {
        left: 6px;
      }

      .hero-agentic__arrow--right {
        right: 6px;
      }

      .hero-agentic .hover-tooltip {
        width: min(420px, calc(100% - 112px));
        max-width: none;
        padding: 16px;
        text-align: center;
      }

      .hero-agentic .hover-tooltip .tt-title,
      .hero-agentic .hover-tooltip .tt-desc {
        text-align: center;
      }

      .agentic-modal {
        display: none !important;
      }

      .agentic-modal__dialog {
        --agentic-control-size: 32px;
        padding: 24px 10px 14px;
        border-radius: 18px;
        max-height: 96vh;
      }

      .agentic-modal__close {
        font-size: 42px;
        top: 8px;
        right: 10px;
      }

      .agentic-modal__hover-panel {
        display: none;
      }

      .agentic-modal__card {
        --agentic-control-size: 32px;
        min-height: 0;
        padding: 0;
      }

      .agentic-modal__card .metric-title {
        font-size: clamp(22px, 6vw, 30px);
      }

      .metrics-home {
        min-height: 100svh;
        padding: 0 20px;
      }

      .metrics-home .dashboard-row {
        flex-direction: column;
        align-items: stretch;
      }

      .metrics-home .chart-card,
      .metrics-home .partner-card,
      .metrics-home .group-left,
      .metrics-home .satisfaction-card {
        min-width: 0;
        width: 100%;
      }

      .metrics-home .group-left {
        flex-direction: row;
        align-items: stretch;
        gap: 20px;
      }

      .metrics-home .office-card,
      .metrics-home .project-card {
        width: calc(50% - 7px);
      }

      .metrics-home .chart-card {
        height: 350px;
      }

      .metrics-home .partner-card {
        flex: 0 0 auto;
        min-height: 320px;
        height: auto;
      }

      .metrics-home .partner-card .kpi-value-xl {
        font-size: 70px;
      }

      .metrics-home .partner-card .kpi-label-xl {
        font-size: 20px;
      }

      .metrics-home .partner-card .kpi-desc-md {
        font-size: 12px;
      }

      .metrics-home .satisfaction-card {
        flex-direction: column;
        align-items: flex-start;
      }

      .metrics-home .satisfaction-gauge-wrap {
        width: 100%;
        min-width: 0;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
      }

      .metrics-home .gauge-current-value {
        font-size: 56px;
      }

      .metrics-home .gauge-current-label {
        font-size: 14px;
        letter-spacing: 1.6px;
      }

      .metrics-home .gauge-pointer-value {
        font-size: 20px;
      }

      .pie-home svg {
        width: 108%;
        max-height: 60vh;
        height: auto;
        max-width: none;
        margin: 0 0 0 -4%;
      }

      .pie-home .carousel-slide .stack-inner {
        grid-template-columns: 1fr;
        gap: var(--mobile-section-inner-gap);
        padding: 20px 8px;
      }

      .pie-home .mobile-carousel {
        padding: 0;
      }

      .pie-home .metric-title {
        font-size: 20px;
        margin-top: 12px;
      }

      .pie-home .hover-tooltip {
        width: min(420px, calc(100% - 112px));
        max-width: none;
        padding: 18px 20px;
        text-align: center;
      }

      .pie-home .carousel-arrow.left {
        left: 11px;
      }

      .pie-home .carousel-arrow.right {
        right: 11px;
      }

      .pie-home .carousel-arrow:active {
        transform: translateY(-50%) scale(1.06);
        filter: brightness(1.05);
      }

      .pie-home .hover-tooltip .tt-title,
      .pie-home .hover-tooltip .tt-desc {
        text-align: center;
      }

      .pie-home .carousel-slide .stack-inner::after {
        background:
          radial-gradient(circle, rgba(228, 233, 244, 0.26) 0 1px, transparent 1.7px) 0 0 / 140px 140px,
          radial-gradient(circle, rgba(228, 233, 244, 0.2) 0 1px, transparent 1.9px) 70px 35px / 170px 170px;
      }

      .metrics-home::after,
      .pie-home::before {
        width: var(--eclipse-mobile-size);
        height: var(--eclipse-mobile-size);
      }

      .neural-studio-home {
        width: calc(100% - 40px);
        padding: 0 8px;
      }

      .section-title {
        font-size: 35px;
        margin-bottom: 34px;
      }

      .pie-home .section-title {
        margin-left: 0;
        margin-top: 30px;
      }

      .neural-studio-row {
        grid-template-columns: 1fr;
        gap: var(--mobile-section-inner-gap);
      }

      .neural-studio-media {
        width: min(560px, 100%);
        margin-left: auto;
        margin-right: auto;
        padding: 1px;
        border-radius: 20px;
      }

      .neural-studio-media-frame {
        padding: 5px;
        border-radius: 19px;
      }

      .neural-studio-media-frame img {
        border-radius: 19px;
      }

      .neural-studio-text {
        gap: 10px;
        max-width: 100%;
        align-items: center;
        text-align: center;
      }

      .neural-studio-title {
        max-width: 100%;
        margin: 0 auto 8px;
        align-items: center;
        text-align: center;
      }

      .neural-studio-description {
        font-size: clamp(15px, 4vw, 20px);
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
      }

      .ethos-slogan-home {
        width: calc(100% - var(--mobile-section-inline) - var(--mobile-section-inline));
        margin: 25px auto 70px;
        padding: 0 20px;
        gap: 6px;
      }

      .ethos-slogan-inner {
        gap: 5px;
      }

      .ethos-slogan-line {
        font-size: clamp(16px, 3vw, 18px);
      }

      .ethos-connection-title {
        font-size: var(--connection-title-size);
        letter-spacing: 0.03em;
      }

      .ethos-connection-heading {
        font-size: clamp(24px, 7.5vw, 40px);
        gap: 0.14em;
      }

      .ethos-connection-home {
        --connection-title-size: clamp(38px, 11vw, 62px);
        width: calc(100% - var(--mobile-section-inline) - var(--mobile-section-inline));
        margin: 0 auto 70px;
        padding: 0 20px;
      }

      .ethos-connection-stage {
        width: min(100%, 360px);
      }

      .ethos-connection-heading {
        margin-bottom: 20px;
      }

      .ethos-connection-visual {
        margin-bottom: var(--mobile-section-inner-gap);
        gap: 5px;
      }

      .ethos-handling-home {
        gap: 0;
      }

      .ethos-handling-subtitle-wrap {
        min-height: 1em;
      }

      .ethos-handling-subtitle {
        font-size: clamp(16px, 5vw, 24px);
      }

    }

    @media (max-width: 640px) {
      .metrics-home .group-left {
        flex-direction: column;
        gap: 16px;
      }

      .metrics-home .office-card,
      .metrics-home .project-card {
        width: 100%;
      }
    }

    @media (max-width: 900px) {
      body > [data-global-resource-path*="header"] {
        z-index: 20;
      }

      .site-footer {
        position: relative;
        z-index: 4;
        isolation: isolate;
        padding: 28px 24px 34px;
      }

      .footer-inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
      }

      .footer-desktop-layout {
        display: none;
      }

      .footer-mobile-layout {
        display: block;
      }

      .footer-mobile-grid {
        display: grid;
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        gap: 40px 44px;
        align-items: flex-start;
      }

      .footer-mobile-column {
        display: contents;
      }

      .footer-mobile-section {
        min-width: 0;
      }

      .footer-mobile-section--discover {
        grid-column: 1;
        grid-row: 1;
      }

      .footer-mobile-section--connect {
        grid-column: 1;
        grid-row: 2;
      }

      .footer-mobile-section--resources {
        grid-column: 1;
        grid-row: 3;
      }

      .footer-mobile-section--headquarters {
        grid-column: 2;
        grid-row: 1;
      }

      .footer-mobile-section--offices {
        grid-column: 2;
        grid-row: 2;
      }

      .footer-mobile-layout .footer-section-heading {
        margin: 0 0 18px;
        font-size: 14px !important;
        line-height: 1.2;
        letter-spacing: 0.03em;
      }

      .footer-mobile-section--resources .footer-section-heading {
        width: max-content;
        max-width: none;
        white-space: nowrap;
      }

      .footer-mobile-links {
        position: static;
        z-index: auto;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
      }

      .footer-mobile-links a {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        font-size: 14px !important;
        line-height: 1.4;
        font-weight: 100;
        letter-spacing: 0.02em;
        text-transform: uppercase;
      }

      .footer-mobile-layout .footer-section-heading,
      .footer-mobile-links a,
      .footer-legal-links--mobile,
      .footer-legal-links--mobile a,
      .footer-legal-links--mobile span {
        font-size: 14px !important;
      }

      .footer-mobile-meta {
        margin: 0;
        color: rgba(255, 255, 255, 0.88);
        font-size: 13px !important;
        line-height: 1.7;
        font-weight: 100;
        letter-spacing: 0.02em;
      }

      .footer-mobile-meta--stack {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .footer-mobile-meta--inline {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        text-transform: uppercase;
      }

      .footer-mobile-section--offices .footer-mobile-meta--inline {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .footer-mobile-section--headquarters .footer-section-heading,
      .footer-mobile-section--offices .footer-section-heading {
        font-size: 14px !important;
      }

      .footer-mobile-section--headquarters .footer-mobile-meta,
      .footer-mobile-section--headquarters .footer-mobile-meta span,
      .footer-mobile-section--offices .footer-mobile-meta,
      .footer-mobile-section--offices .footer-mobile-meta span {
        font-size: 13px !important;
      }

      .footer-mobile-section--headquarters .footer-mobile-meta,
      .footer-mobile-section--headquarters .footer-mobile-meta span {
        line-height: 1.7 !important;
      }

      .footer-mobile-meta--inline span[aria-hidden="true"] {
        color: rgba(255, 255, 255, 0.55);
      }

      .footer-mobile-layout .footer-map-link {
        width: 100%;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.9);
      }

      .footer-bottom {
        position: relative;
        z-index: 5;
        margin-top: 46px;
        gap: 0;
      }

      .footer-legal-links {
        position: relative;
        z-index: 5;
        margin-top: 0;
        font-size: 14px !important;
        line-height: 1.7;
        justify-content: center;
      }

      .footer-legal-links--desktop {
        display: none;
      }

      .footer-legal-links--mobile {
        display: flex;
        margin-bottom: 0;
      }

      .footer-brand--desktop {
        display: none;
      }

      .footer-copyright--desktop {
        display: none;
      }

      .footer-brand--mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
      }

      .footer-copyright--mobile {
        display: block;
        margin: 18px 0 0;
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px !important;
        line-height: 1.7;
        font-weight: 100;
        letter-spacing: 0.02em;
      }
    }
