@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --container-max-width-sm: 540px;
  --container-max-width-md: 720px;
  --container-max-width-lg: 960px;
  --container-max-width-xl: 1140px;
  --container-max-width-xxl: 1320px;
  --container-max-width-xxxl: 1440px;
  --container-max-width-25k: 1440px;
  --container-max-width-4k: 1600px;
  --container-max-width-mobile: 100%;
  --container-padding: 1rem;
  --font-family-poppins: "Poppins", sans-serif;
  --font-family-archivo: "Archivo", sans-serif;
  --h1-font-size: clamp(3rem, 2.5rem + 3vw, 3.5rem);
  --h1-mobile-font-size: clamp(2rem, 2rem + 3vw, 2rem);
  --h1-mobile-font-weight: 600;
  --ia-bg: hsl(225, 65%, 20%);
  --ia-ink: hsl(0 0% 98%);
  --ia-ink-dim: hsl(0 0% 78%);
  --ia-card: hsla(220, 12%, 5%, 0.7);
  --ia-glass: hsl(0 0% 100% / 0.06);
  --ia-ring: linear-gradient(135deg, #5ac8fa, #a78bfa, #aa46be);
  --ia-accent: #aa46be;
  --ia-shadow: 0 10px 30px hsl(0 0% 0% / 0.25);
  --ia-radius: 18px;
  --ia-gap: clamp(1rem, 2vw, 1.5rem);
  --ia-pad: clamp(1rem, 2.2vw, 1.75rem);
  --ia-title-size: clamp(3rem, 2.5rem + 3vw, 3.5rem);
  --ia-subtitle-size: clamp(0.95rem, 0.85rem + 0.6vw, 1.125rem);
  --ia-card-title: clamp(1.6rem, 0.95rem + 0.4vw, 1.9rem);
  --ia-card-desc: clamp(0.9rem, 0.85rem + 0.2vw, 14px);
  --duo-bg: #fafbfd;
  --duo-card: #ffffff;
  --duo-ink: #0e1116;
  --duo-sub: #5e6a78;
  --duo-ring: #e9eef6;
  --duo-accent: #3b82f6;
  --duo-accent2: #d946ef;
  --duo-shadow: 0 8px 28px rgba(8, 15, 35, 0.06);
  --duo-r: 18px;
  --duo-g: clamp(16px, 3vw, 28px);
  --duo-pad: clamp(48px, 8vw, 96px);
  --c-blue: #3a8cff;
  --c-magenta: #c835ff;
  --c-orange: #ffb55e;
  --c-ink: #0b1b07;
  --c-body: #1c1f1d;
  --c-muted: #6b6f6d;
  --radius-xl: 22px;
  --shadow-lg: 0 18px 60px rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 8px 28px rgba(0, 0, 0, 0.08);
  --pad-y: clamp(3rem, 6vw, 6rem);
  --gap: clamp(1rem, 2.5vw, 1.5rem);
}

@property --q-hover-x {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 0px;
}
@property --q-hover-y {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 0px;
}
@property --q-hover-scale {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}
* {
  font-family: var(--font-family-poppins);
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

.p1 {
  padding: 1rem;
}

.p2 {
  padding: 2rem;
}

.p3 {
  padding: 3rem;
}

.p4 {
  padding: 4rem;
}

.p5 {
  padding: 5rem;
}

.g1 {
  gap: 1rem;
}

.g2 {
  gap: 2rem;
}

.g3 {
  gap: 3rem;
}

.g4 {
  gap: 4rem;
}

.g5 {
  gap: 5rem;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-inline: var(--container-padding);
}
@media (min-width: 576px) {
  .container {
    max-width: var(--container-max-width-sm);
  }
}
@media (min-width: 768px) {
  .container {
    max-width: var(--container-max-width-md);
  }
}
@media (min-width: 992px) {
  .container {
    max-width: var(--container-max-width-lg);
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: var(--container-max-width-xl);
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: var(--container-max-width-xxl);
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: var(--container-max-width-xxxl);
  }
}
@media (min-width: 2560px) {
  .container {
    max-width: var(--container-max-width-25k);
  }
}
@media (min-width: 3840px) {
  .container {
    max-width: var(--container-max-width-4k);
  }
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.w-100 {
  width: 100%;
}

.interoperabilityHero {
  display: flex;
  min-height: 70vh;
  max-height: 860px;
  align-items: center;
  justify-content: center;
  gap: var(--g2);
  background: url(/images/hero-bg-03.png);
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  position: relative;
}
.interoperabilityHero .logo-symbol-s {
  height: 200%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  right: -10%;
  mix-blend-mode: hard-light;
  opacity: 0.4;
}
.interoperabilityHero .logo-symbol-s img {
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 2;
  -o-object-position: center center;
     object-position: center center;
}
.interoperabilityHero .InteractiveObject {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  transform: scale(1.4);
  opacity: 1;
  mix-blend-mode: hard-light;
  opacity: 0.5;
}
.interoperabilityHero .InteractiveObject::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 40%, rgb(0, 0, 0) 83%);
}
.interoperabilityHero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.26) 30%, rgb(0, 0, 0) 83%);
}
.interoperabilityHero .hero_content {
  position: relative;
  z-index: 4;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.interoperabilityHero .hero_content h1 {
  font-size: 5rem;
  line-height: 4.5rem;
  font-weight: 300;
  color: white;
  text-align: center;
}
.interoperabilityHero .hero_content h3 {
  font-size: 1.2rem;
  line-height: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 300;
  color: white;
  text-align: center;
}
.interoperabilityHero .hero_content button.actionReadinessBtn {
  background: rgb(0, 81, 255);
  border: 0px;
  border-radius: 99px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 300;
  color: white;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  box-shadow: 0px 10px 40px rgba(0, 81, 255, 0.2);
}
.interoperabilityHero .hero_content button.actionReadinessBtn:hover {
  filter: brightness(1.2);
  box-shadow: 0px 10px 40px rgba(0, 123, 255, 0.669);
}
.interoperabilityHero .hero_content button.actionReadinessBtn:active {
  filter: brightness(0.95);
  transform: translateY(2px);
}
@media (max-width: 1024px) {
  .interoperabilityHero .hero_content h1 {
    font-size: var(--h1-mobile-font-size);
    line-height: 0.95;
    font-weight: var(--h1-mobile-font-weight);
    z-index: 1;
  }
}

.schtMarketLeadership {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-height: 70vh;
  align-items: center;
  justify-content: center;
  background: rgb(246, 246, 246);
  position: relative;
  overflow: hidden;
}
.schtMarketLeadership h1 {
  font-size: var(--h1-font-size);
  font-weight: 300;
  letter-spacing: -0.02em;
  z-index: 1;
}
@media (max-width: 1024px) {
  .schtMarketLeadership h1 {
    font-size: var(--h1-mobile-font-size);
    line-height: 0.95;
    font-weight: var(--h1-mobile-font-weight);
    z-index: 1;
    text-align: center;
  }
}

.schtMarketGrid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  z-index: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.schtMarketGrid > li {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5176470588);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 2rem 2rem;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.2s ease-in-out;
  border: 0.15rem solid white;
}
.schtMarketGrid > li:hover {
  background: rgba(255, 255, 255, 0.8862745098);
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px) scale(1.1);
}
.schtMarketGrid > li img {
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
.schtMarketGrid > li h4 {
  font-size: 1.5rem;
  line-height: 1.1;
  text-align: center;
  font-weight: 500;
}
.schtMarketGrid > li p {
  font-size: 13px;
  text-align: center;
  line-height: 1.1;
}
@media (max-width: 1024px) {
  .schtMarketGrid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.offeringAtaGlance {
  width: 100%;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
}
.offeringAtaGlance h1 {
  font-size: var(--h1-font-size);
  font-weight: 300;
  letter-spacing: -0.02em;
  z-index: 1;
}
@media (max-width: 1024px) {
  .offeringAtaGlance h1 {
    font-size: var(--h1-mobile-font-size);
    line-height: 0.95;
    font-weight: var(--h1-mobile-font-weight);
    z-index: 1;
    text-align: center;
  }
}

.quartGraph {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: clamp(10px, 2.2vmin, 24px);
  height: calc(clamp(480px, 70vmin, 1280px) + clamp(10px, 2.2vmin, 24px) * 2);
  max-height: 85vh;
  gap: 1rem;
  flex-direction: column;
}
.quartGraph .xAxis {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(480px, 70vmin, 1280px);
  height: 2px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, hsl(339, 100%, 55%) 0%, hsl(197, 100%, 64%) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quartGraph .xAxis::before {
  content: "Foundational Technology";
  background: rgba(255, 255, 255, 0.5);
  padding: 0.4rem 0.5rem;
  border-radius: 20px;
  font-size: 11px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-style: normal;
  width: 120px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 0.1rem solid white;
}
.quartGraph .xAxis::after {
  content: "Advanced Technology";
  background: rgba(255, 255, 255, 0.5);
  padding: 0.4rem 0.5rem;
  border-radius: 20px;
  font-size: 11px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-style: normal;
  width: 120px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 0.1rem solid white;
}
.quartGraph .yAxis {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: clamp(480px, 70vmin, 1280px);
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, hsl(339, 100%, 55%) 0%, hsl(197, 100%, 64%) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.quartGraph .yAxis::before {
  content: "High Integration Support";
  background: rgba(255, 255, 255, 0.5);
  padding: 0.4rem 0.5rem;
  border-radius: 20px;
  font-size: 11px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-style: normal;
  width: 120px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 0.1rem solid white;
}
.quartGraph .yAxis::after {
  content: "Basic Integration Support";
  background: rgba(255, 255, 255, 0.5);
  padding: 0.4rem 0.5rem;
  border-radius: 20px;
  font-size: 11px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-style: normal;
  width: 120px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 0.1rem solid white;
}
.quartGraph .fourBoxes {
  position: relative;
  width: clamp(480px, 70vmin, 1280px);
  height: clamp(480px, 70vmin, 1280px);
  padding: 120px;
}
.quartGraph .fourBoxes .boxTLC {
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  background: white;
  width: 250px;
  height: 250px;
  border: 1px solid lightgrey;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  --q-hover-x: 0px;
  --q-hover-y: 0px;
  --q-hover-scale: 1;
  transition: box-shadow 220ms cubic-bezier(0.2, 0.6, 0.2, 1), filter 220ms cubic-bezier(0.2, 0.6, 0.2, 1), --q-hover-x 220ms cubic-bezier(0.2, 0.6, 0.2, 1), --q-hover-y 220ms cubic-bezier(0.2, 0.6, 0.2, 1), --q-hover-scale 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-100% - clamp(14px, 2vw, 28px)), calc(-100% - clamp(14px, 2vw, 28px))) translate(var(--q-hover-x, 0), var(--q-hover-y, 0)) scale(var(--q-hover-scale, 1));
  will-change: transform, box-shadow, filter;
}
.quartGraph .fourBoxes .boxTLC img {
  height: 100px;
}
.quartGraph .fourBoxes .boxTLC h4 {
  font-size: 14px;
  line-height: 1.1;
  text-align: center;
  font-weight: 600;
}
@media (hover: hover) {
  .quartGraph .fourBoxes .boxTLC:hover {
    --q-hover-y: $box-hover-raise;
    --q-hover-scale: $box-hover-scale;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
    filter: saturate(1.03);
  }
}
.quartGraph .fourBoxes .boxTLC:focus-visible {
  --q-hover-y: $box-hover-raise;
  --q-hover-scale: $box-hover-scale;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16), 0 0 0 2px rgba(0, 0, 0, 0.08) inset;
  outline: 0;
}
@media (prefers-reduced-motion: reduce) {
  .quartGraph .fourBoxes .boxTLC {
    transition: none;
  }
}
.quartGraph .fourBoxes .boxTRC {
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  background: white;
  width: 250px;
  height: 250px;
  border: 1px solid lightgrey;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  --q-hover-x: 0px;
  --q-hover-y: 0px;
  --q-hover-scale: 1;
  transition: box-shadow 220ms cubic-bezier(0.2, 0.6, 0.2, 1), filter 220ms cubic-bezier(0.2, 0.6, 0.2, 1), --q-hover-x 220ms cubic-bezier(0.2, 0.6, 0.2, 1), --q-hover-y 220ms cubic-bezier(0.2, 0.6, 0.2, 1), --q-hover-scale 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(clamp(14px, 2vw, 28px), calc(-100% - clamp(14px, 2vw, 28px))) translate(var(--q-hover-x, 0), var(--q-hover-y, 0)) scale(var(--q-hover-scale, 1));
  will-change: transform, box-shadow, filter;
}
.quartGraph .fourBoxes .boxTRC img {
  height: 100px;
}
.quartGraph .fourBoxes .boxTRC h4 {
  font-size: 14px;
  line-height: 1.1;
  text-align: center;
  font-weight: 600;
}
@media (hover: hover) {
  .quartGraph .fourBoxes .boxTRC:hover {
    --q-hover-y: $box-hover-raise;
    --q-hover-scale: $box-hover-scale;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
    filter: saturate(1.03);
  }
}
.quartGraph .fourBoxes .boxTRC:focus-visible {
  --q-hover-y: $box-hover-raise;
  --q-hover-scale: $box-hover-scale;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16), 0 0 0 2px rgba(0, 0, 0, 0.08) inset;
  outline: 0;
}
@media (prefers-reduced-motion: reduce) {
  .quartGraph .fourBoxes .boxTRC {
    transition: none;
  }
}
.quartGraph .fourBoxes .boxBLC {
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  background: white;
  width: 250px;
  height: 250px;
  border: 1px solid lightgrey;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  --q-hover-x: 0px;
  --q-hover-y: 0px;
  --q-hover-scale: 1;
  transition: box-shadow 220ms cubic-bezier(0.2, 0.6, 0.2, 1), filter 220ms cubic-bezier(0.2, 0.6, 0.2, 1), --q-hover-x 220ms cubic-bezier(0.2, 0.6, 0.2, 1), --q-hover-y 220ms cubic-bezier(0.2, 0.6, 0.2, 1), --q-hover-scale 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-100% - clamp(14px, 2vw, 28px)), clamp(14px, 2vw, 28px)) translate(var(--q-hover-x, 0), var(--q-hover-y, 0)) scale(var(--q-hover-scale, 1));
  will-change: transform, box-shadow, filter;
}
.quartGraph .fourBoxes .boxBLC img {
  height: 100px;
}
.quartGraph .fourBoxes .boxBLC h4 {
  font-size: 14px;
  line-height: 1.1;
  text-align: center;
  font-weight: 600;
}
@media (hover: hover) {
  .quartGraph .fourBoxes .boxBLC:hover {
    --q-hover-y: $box-hover-raise;
    --q-hover-scale: $box-hover-scale;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
    filter: saturate(1.03);
  }
}
.quartGraph .fourBoxes .boxBLC:focus-visible {
  --q-hover-y: $box-hover-raise;
  --q-hover-scale: $box-hover-scale;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16), 0 0 0 2px rgba(0, 0, 0, 0.08) inset;
  outline: 0;
}
@media (prefers-reduced-motion: reduce) {
  .quartGraph .fourBoxes .boxBLC {
    transition: none;
  }
}
.quartGraph .fourBoxes .boxBRC {
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  background: white;
  width: 250px;
  height: 250px;
  border: 1px solid lightgrey;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  --q-hover-x: 0px;
  --q-hover-y: 0px;
  --q-hover-scale: 1;
  transition: box-shadow 220ms cubic-bezier(0.2, 0.6, 0.2, 1), filter 220ms cubic-bezier(0.2, 0.6, 0.2, 1), --q-hover-x 220ms cubic-bezier(0.2, 0.6, 0.2, 1), --q-hover-y 220ms cubic-bezier(0.2, 0.6, 0.2, 1), --q-hover-scale 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(clamp(14px, 2vw, 28px), clamp(14px, 2vw, 28px)) translate(var(--q-hover-x, 0), var(--q-hover-y, 0)) scale(var(--q-hover-scale, 1));
  will-change: transform, box-shadow, filter;
}
.quartGraph .fourBoxes .boxBRC img {
  height: 100px;
}
.quartGraph .fourBoxes .boxBRC h4 {
  font-size: 14px;
  line-height: 1.1;
  text-align: center;
  font-weight: 600;
}
@media (hover: hover) {
  .quartGraph .fourBoxes .boxBRC:hover {
    --q-hover-y: $box-hover-raise;
    --q-hover-scale: $box-hover-scale;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
    filter: saturate(1.03);
  }
}
.quartGraph .fourBoxes .boxBRC:focus-visible {
  --q-hover-y: $box-hover-raise;
  --q-hover-scale: $box-hover-scale;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16), 0 0 0 2px rgba(0, 0, 0, 0.08) inset;
  outline: 0;
}
@media (prefers-reduced-motion: reduce) {
  .quartGraph .fourBoxes .boxBRC {
    transition: none;
  }
}
@media (max-width: 1024px) {
  .quartGraph {
    transform: scale(0.7);
    display: none;
  }
  .quartGraph .xAxis {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(480px, 70vmin, 1280px);
    height: 2px;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, hsl(339, 100%, 55%) 0%, hsl(197, 100%, 64%) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .quartGraph .xAxis::before {
    content: "Foundational Technology";
    background: rgba(255, 255, 255, 0.5);
    padding: 0.4rem 0.5rem;
    border-radius: 20px;
    font-size: 11px;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-style: normal;
    width: 120px;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border: 0.1rem solid white;
  }
  .quartGraph .xAxis::after {
    content: "Advanced Technology";
    background: rgba(255, 255, 255, 0.5);
    padding: 0.4rem 0.5rem;
    border-radius: 20px;
    font-size: 11px;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-style: normal;
    width: 120px;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border: 0.1rem solid white;
  }
  .quartGraph .yAxis {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: clamp(480px, 70vmin, 1280px);
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, hsl(339, 100%, 55%) 0%, hsl(197, 100%, 64%) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
  .quartGraph .yAxis::before {
    content: "High Integration Support";
    background: rgba(255, 255, 255, 0.5);
    padding: 0.4rem 0.5rem;
    border-radius: 20px;
    font-size: 11px;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-style: normal;
    width: 120px;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border: 0.1rem solid white;
  }
  .quartGraph .yAxis::after {
    content: "Basic Integration Support";
    background: rgba(255, 255, 255, 0.5);
    padding: 0.4rem 0.5rem;
    border-radius: 20px;
    font-size: 11px;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-style: normal;
    width: 120px;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border: 0.1rem solid white;
  }
}

.interopAdvisory {
  position: relative;
  isolation: isolate;
  background: radial-gradient(1200px 600px at 10% -10%, #2c22dd 12%, transparent 60%), radial-gradient(1200px 600px at 90% 110%, #06b6d4 10%, transparent 60%), var(--ia-bg);
  color: var(--ia-ink);
  padding: clamp(3rem, 6vw, 5rem) 0;
  min-height: 70vh;
}
.interopAdvisory .ia-header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}
.interopAdvisory .ia-header .ia-title {
  font-weight: 300;
  letter-spacing: -0.02em;
  font-size: var(--ia-title-size);
  line-height: 1.5;
  background: linear-gradient(180deg, #fff, #b8c0ff 70%);
  -webkit-background-clip: text;
  background-clip: text;
  background-size: cover;
  color: transparent;
}
.interopAdvisory .ia-header .ia-subtitle {
  font-size: var(--ia-subtitle-size);
  color: var(--ia-ink-dim);
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .interopAdvisory .ia-header .ia-title {
    font-size: var(--h1-mobile-font-size);
    line-height: 1.1;
    font-weight: var(--h1-mobile-font-weight);
    z-index: 1;
  }
}
.interopAdvisory .ia-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--ia-gap);
  grid-template-columns: repeat(1, minmax(0, 1fr));
  justify-items: center;
}
@media (min-width: 640px) {
  .interopAdvisory .ia-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .interopAdvisory .ia-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.interopAdvisory .ia-card {
  position: relative;
  border-radius: var(--ia-radius);
}
.interopAdvisory .ia-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px;
  border-radius: inherit;
  background: var(--ia-ring);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}
.interopAdvisory .ia-card .ia-card__inner {
  height: 100%;
  display: grid;
  align-content: start;
  gap: 0.6rem;
  background: linear-gradient(180deg, var(--ia-card), transparent);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: inherit;
  padding: var(--ia-pad);
  box-shadow: var(--ia-shadow);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, background 0.35s ease;
}
.interopAdvisory .ia-card .ia-card__icon {
  width: 84px;
  height: 84px;
  border-radius: 99px;
  background: transparent;
  border: 0.1rem solid rgba(0, 123, 255, 0.669);
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.interopAdvisory .ia-card .ia-card__icon img {
  width: 90%;
  height: 90%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 6px;
}
.interopAdvisory .ia-card .ia-card__title {
  font-size: var(--ia-card-title);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0.2rem 0 0;
}
.interopAdvisory .ia-card .ia-card__desc {
  font-size: var(--ia-card-desc);
  color: var(--ia-ink-dim);
  line-height: 1.2;
  margin: 0;
}
.interopAdvisory .ia-card:hover .ia-card__inner, .interopAdvisory .ia-card:focus-within .ia-card__inner {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px hsla(0, 0%, 0%, 0.35);
  background: linear-gradient(180deg, hsla(225, 14%, 14%, 0.8), hsla(224, 14%, 22%, 0.6));
}
@media (hover: hover) and (pointer: fine) {
  .interopAdvisory .ia-card {
    perspective: 900px;
  }
  .interopAdvisory .ia-card .ia-card__inner {
    transform-style: preserve-3d;
  }
  .interopAdvisory .ia-card:hover .ia-card__inner {
    transform: translateY(-3px) translateX(-3px) rotateX(0deg) rotateY(0deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .interopAdvisory .ia-card .ia-card__inner,
  .interopAdvisory .ia-card::before {
    transition: none;
  }
}

.humanCapital {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 70vh;
  align-items: center;
  justify-content: center;
  background: rgb(246, 246, 246);
  position: relative;
  overflow: hidden;
  padding: 5% 2rem;
}
.humanCapital h1 {
  font-size: var(--h1-font-size);
  font-weight: 300;
  letter-spacing: -0.02em;
  z-index: 1;
  color: #000000;
}
.humanCapital p,
.humanCapital span {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #4a4a4a;
}
.humanCapital .humanCapitalGrid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  z-index: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.humanCapital .humanCapitalGrid > li {
  border-radius: 20px;
  background: rgb(255, 255, 255);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 2rem 2rem;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.2s ease-in-out;
  border: 0.15rem solid rgba(255, 255, 255, 0.8);
}
.humanCapital .humanCapitalGrid > li:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px) scale(1.05);
}
.humanCapital .humanCapitalGrid > li img {
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
.humanCapital .humanCapitalGrid > li h4 {
  font-size: 1.5rem;
  line-height: 1.1;
  text-align: center;
  font-weight: 500;
  color: #000000;
}
.humanCapital .humanCapitalGrid > li p {
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
  color: #4a4a4a;
}
@media (max-width: 1024px) {
  .humanCapital .humanCapitalGrid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 1024px) {
  .humanCapital h1 {
    font-size: var(--h1-mobile-font-size);
    line-height: 0.95;
    font-weight: var(--h1-mobile-font-weight);
    z-index: 1;
    text-align: center;
  }
}

.useCaseSection {
  padding: 4rem 0;
  background: #fefefe;
  height: 70vh;
  max-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.useCaseSection .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  height: 100%;
}
.useCaseSection .container .useCaseContent {
  flex: 1 1 50%;
}
.useCaseSection .container .useCaseContent h2 {
  font-size: var(--h1-font-size);
  line-height: 1;
  font-weight: 300;
  margin-bottom: 1rem;
}
.useCaseSection .container .useCaseContent .subtitle {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 2rem;
}
.useCaseSection .container .useCaseContent .useCaseList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.useCaseSection .container .useCaseContent .useCaseList li {
  position: relative;
  padding-left: 2.2rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}
.useCaseSection .container .useCaseContent .useCaseList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
}
.useCaseSection .container .useCaseContent .useCaseList li:nth-child(2)::before {
  background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
}
.useCaseSection .container .useCaseContent .useCaseList li:nth-child(3)::before {
  background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
}
.useCaseSection .container .useCaseContent .useCaseList li:nth-child(4)::before {
  background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
}
.useCaseSection .container .useCaseImage {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  height: 100%;
}
.useCaseSection .container .useCaseImage img {
  max-width: 100%;
  height: 100%;
  border-radius: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.duoInterOp.section--light {
  position: relative;
  isolation: isolate;
  background: radial-gradient(1200px 400px at 50% -10%, rgba(59, 130, 246, 0.2), transparent 60%), radial-gradient(900px 380px at 80% 0%, rgba(217, 70, 239, 0.2), transparent 60%), var(--duo-bg);
  color: var(--duo-ink);
  padding-block: var(--duo-pad);
}
.duoInterOp.section--light .sectionHead {
  text-align: center;
  margin-bottom: clamp(28px, 5vw, 48px);
}
.duoInterOp.section--light .sectionHead h2 {
  font-size: var(--h1-font-size);
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.duoInterOp.section--light .sectionHead .subtitle {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--duo-sub);
  max-width: 60ch;
  margin-inline: auto;
}
.duoInterOp.section--light .duoTiles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--duo-g);
  grid-template-columns: 1fr;
  align-items: stretch;
  justify-items: center;
}
@media (min-width: 768px) {
  .duoInterOp.section--light .duoTiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .duoInterOp.section--light .duoTiles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.duoInterOp.section--light .duoTiles .tile {
  width: 100%;
  background: var(--duo-card);
  border: 1px solid var(--duo-ring);
  border-radius: var(--duo-r);
  box-shadow: var(--duo-shadow);
  padding: clamp(18px, 3.5vw, 28px);
  text-align: center;
  position: relative;
  overflow: clip;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.duoInterOp.section--light .duoTiles .tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(8, 15, 35, 0.08);
}
.duoInterOp.section--light .duoTiles .tile .tileNumber {
  --size: 56px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  margin-inline: auto;
  margin-top: -6px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  background: radial-gradient(100% 100% at 30% 20%, rgba(255, 255, 255, 0.9), #fff), linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(217, 70, 239, 0.25));
  border: 2px solid color-mix(in oklab, var(--duo-accent) 60%, #fff 40%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6), 0 6px 16px rgba(59, 130, 246, 0.18);
}
.duoInterOp.section--light .duoTiles .tile .tileNumber span {
  font-weight: 700;
  color: var(--duo-ink);
}
.duoInterOp.section--light .duoTiles .tile h3 {
  margin: 0 0 8px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.3;
  font-weight: 600;
}
.duoInterOp.section--light .duoTiles .tile p {
  margin: 0;
  color: var(--duo-sub);
  font-size: clamp(13px, 1.6vw, 15px);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .duoInterOp.section--light .sectionHead {
    text-align: center;
    margin-bottom: clamp(28px, 5vw, 48px);
  }
  .duoInterOp.section--light .sectionHead h2 {
    font-size: var(--h1-mobile-font-size);
    line-height: 0.95;
    font-weight: var(--h1-mobile-font-weight);
    z-index: 1;
    text-align: center;
  }
  .duoInterOp.section--light .sectionHead .subtitle {
    margin: 0;
    font-size: clamp(14px, 1.6vw, 18px);
    line-height: 1.6;
    color: var(--duo-sub);
    max-width: 60ch;
    margin-inline: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .duoInterOp.section--light * {
    animation: none !important;
    transition: none !important;
  }
}

.jumpstart-spine {
  --grad: linear-gradient(135deg, #3a8cff, #c835ff);
  --glass: rgba(255, 255, 255, 0.75);
  --ink: #0b1220;
  --muted: rgba(20, 28, 44, 0.62);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --rail: #ffffff;
  padding: clamp(48px, 8vw, 96px) 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(92, 149, 211, 0.35) 100%);
}
.jumpstart-spine .js-head {
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.jumpstart-spine .js-head h2 {
  font-size: var(--h1-font-size);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.jumpstart-spine .js-head .js-sub {
  margin-top: 8px;
  color: black;
  font-size: clamp(14px, 1.8vw, 18px);
}
.jumpstart-spine .spine-wrap {
  position: relative;
  padding: clamp(12px, 2vw, 16px) 0;
}
.jumpstart-spine .spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  width: 2px;
  background: var(--rail);
  border-radius: 4px;
  opacity: 0.85;
}
.jumpstart-spine .spine-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  position: relative;
}
.jumpstart-spine .spine-item {
  position: relative;
  display: grid;
  display: grid;
  grid-template-columns: 1fr minmax(0, 0) 1fr;
}
.jumpstart-spine .spine-item .node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--grad);
  border: 2px solid #fff;
  box-shadow: 0 8px 24px rgba(90, 50, 255, 0.22);
  z-index: 2;
}
.jumpstart-spine .spine-item:nth-child(odd) .card {
  --gap: calc(3.5rem + 12px);
  grid-column: 1;
  justify-self: end;
  margin-right: var(--gap);
}
.jumpstart-spine .spine-item:nth-child(even) .card {
  --gap: calc(3.5rem + 12px);
  grid-column: 3;
  justify-self: start;
  margin-left: var(--gap);
}
.jumpstart-spine .card {
  position: relative;
  width: min(520px, 42vw);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: clamp(16px, 2vw, 22px);
  color: var(--ink);
  display: grid;
  gap: 4px;
  opacity: 0.2;
  transform: translateY(16px);
}
.jumpstart-spine .card .num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 24px rgba(90, 50, 255, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}
.jumpstart-spine .card h3 {
  margin: 2px 0 0;
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 24px);
}
.jumpstart-spine .card p {
  margin: 0;
  color: black;
  font-size: clamp(13px, 1.6vw, 15px);
}
.jumpstart-spine .card::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  width: var(--gap, 28px);
  background: var(--rail);
  opacity: 0.9;
  transform: translateY(-50%);
}
.jumpstart-spine .spine-item:nth-child(odd) .card::after {
  right: calc(-1 * var(--gap, 28px));
}
.jumpstart-spine .spine-item:nth-child(even) .card::after {
  left: calc(-1 * var(--gap, 28px));
}
@media (max-width: 1024px) {
  .jumpstart-spine .js-head {
    text-align: center;
    margin-bottom: clamp(24px, 3vw, 40px);
  }
  .jumpstart-spine .js-head h2 {
    font-size: var(--h1-mobile-font-size);
    font-weight: var(--h1-mobile-font-weight);
    letter-spacing: -0.02em;
  }
  .jumpstart-spine .js-head .js-sub {
    margin-top: 8px;
    color: black;
    font-size: 1rem;
    line-height: 1.2;
  }
  .jumpstart-spine .spine-wrap {
    position: relative;
    padding: clamp(12px, 2vw, 16px) 0;
  }
  .jumpstart-spine .spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top center;
    width: 2px;
    background: var(--rail);
    border-radius: 4px;
    opacity: 0;
  }
  .jumpstart-spine .spine-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: clamp(18px, 3vw, 28px);
    position: relative;
  }
  .jumpstart-spine .spine-item {
    position: relative;
    display: grid;
    display: grid;
    grid-template-columns: 1fr minmax(0, 0) 1fr;
  }
  .jumpstart-spine .spine-item .node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--grad);
    border: 2px solid #fff;
    box-shadow: 0 8px 24px rgba(90, 50, 255, 0.22);
    z-index: 2;
    display: none;
  }
  .jumpstart-spine .spine-item:nth-child(odd) .card {
    grid-column: 1;
    justify-self: center;
    margin-right: 0;
  }
  .jumpstart-spine .spine-item:nth-child(even) .card {
    grid-column: 3;
    justify-self: center;
    margin-left: 0;
  }
  .jumpstart-spine .card {
    position: relative;
    width: 80vw;
    background: var(--glass);
    border: 1px solid rgb(255, 255, 255);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(16px, 2vw, 22px);
    color: var(--ink);
    display: grid;
    gap: 4px;
    opacity: 0.2;
    transform: translateY(16px);
  }
  .jumpstart-spine .card .num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--grad);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 24px rgba(90, 50, 255, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.65);
    font-size: 1.5rem;
    letter-spacing: -0.03em;
  }
  .jumpstart-spine .card h3 {
    margin: 2px 0 0;
    font-weight: 600;
    font-size: clamp(18px, 2.2vw, 24px);
  }
  .jumpstart-spine .card p {
    margin: 0;
    color: black;
    font-size: clamp(13px, 1.6vw, 15px);
  }
  .jumpstart-spine .card::after {
    content: "";
    position: absolute;
    top: 50%;
    height: 2px;
    width: var(--gap, 28px);
    background: var(--rail);
    opacity: 0;
    transform: translateY(-50%);
  }
}

.why-scht {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: var(--pad-y) 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.why-scht .container {
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
}
.why-scht .bg-layer {
  position: absolute;
  inset: -10% -5% -10% -5%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(50% 50% at 20% 20%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.3) 60%, transparent 70%), radial-gradient(45% 45% at 80% 10%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 55%, transparent 70%), radial-gradient(40% 40% at 15% 80%, rgba(58, 140, 255, 0.35) 0%, transparent 60%), radial-gradient(40% 40% at 85% 75%, rgba(200, 53, 255, 0.35) 0%, transparent 60%), radial-gradient(38% 38% at 50% 20%, rgba(255, 181, 94, 0.5) 0%, transparent 62%), linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0.9) 100%);
  filter: blur(80px) saturate(110%);
  transform: translateZ(0);
  -webkit-mask-image: radial-gradient(90% 70% at 50% 40%, #000 60%, transparent 100%);
          mask-image: radial-gradient(90% 70% at 50% 40%, #000 60%, transparent 100%);
}
.why-scht .logo-symbol-s {
  height: 250%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: -1;
  right: -10%;
  mix-blend-mode: hard-light;
  opacity: 0.4;
  top: 0%;
}
.why-scht .logo-symbol-s img {
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 0;
  -o-object-position: center center;
     object-position: center center;
}
.why-scht .why-head {
  text-align: center;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4;
}
.why-scht .why-head .eyebrow {
  font-size: 1.1rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.5rem;
  background: black;
  padding: 0.3rem 0.8rem;
  border-radius: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}
.why-scht .why-head h2 {
  font-weight: 300;
  line-height: 1.12;
  color: var(--c-ink);
  font-size: var(--h1-font-size);
  letter-spacing: -0.015em;
}
.why-scht .why-head h2 .grad-accent {
  background: linear-gradient(90deg, var(--c-blue), var(--c-magenta) 55%, var(--c-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  white-space: nowrap;
}
.why-scht .why-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 900px) {
  .why-scht .why-list {
    grid-template-columns: 1fr;
  }
}
.why-scht .why-list li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  max-width: 280px;
  width: 100%;
  gap: 1.5rem;
  background: rgb(255, 255, 255);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 1.1rem 1.25rem;
  height: 240px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.why-scht .why-list li .dot {
  width: 72px;
  height: 72px;
  margin-top: 0.42rem;
  border-radius: 50%;
  background-image: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-scht .why-list li .dot img {
  width: 64px;
  height: 64px;
}
.why-scht .why-list li .item-text h3 {
  margin: 0 0 0.2rem 0;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: var(--c-ink);
}
.why-scht .why-list li .item-text p {
  margin: 0;
  color: var(--c-body);
  opacity: 0.9;
  font-size: 0.98rem;
  line-height: 1.15;
}
.why-scht .why-list li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.9);
}
.why-scht .why-list li:active {
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .why-scht .why-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .why-scht .why-list li {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    max-width: 100vw;
    width: 100%;
    gap: 1.5rem;
    background: rgb(255, 255, 255);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    padding: 1.1rem 1.25rem;
    height: 240px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }
  .why-scht .why-list li .dot {
    width: 72px;
    height: 72px;
    margin-top: 0.42rem;
    border-radius: 50%;
    background-image: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .why-scht .why-list li .dot img {
    width: 64px;
    height: 64px;
  }
  .why-scht .why-list li .item-text h3 {
    margin: 0 0 0.2rem 0;
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-weight: 600;
    color: var(--c-ink);
  }
  .why-scht .why-list li .item-text p {
    margin: 0;
    color: var(--c-body);
    opacity: 0.9;
    font-size: 0.98rem;
    line-height: 1.15;
  }
  .why-scht .why-list li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.9);
  }
  .why-scht .why-list li:active {
    transform: translateY(0);
  }
  .why-scht .why-head {
    text-align: center;
    margin: 0 auto clamp(1.5rem, 3vw, 2rem);
    max-width: 980px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
  }
  .why-scht .why-head .eyebrow {
    font-size: 1.1rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0.5rem;
    background: black;
    padding: 0.3rem 0.8rem;
    border-radius: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
  }
  .why-scht .why-head h2 {
    font-weight: var(--h1-mobile-font-weight);
    line-height: 1.12;
    color: var(--c-ink);
    font-size: 2rem;
    letter-spacing: -0.015em;
  }
  .why-scht .why-head h2 .grad-accent {
    background: linear-gradient(90deg, var(--c-blue), var(--c-magenta) 55%, var(--c-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    white-space: nowrap;
  }
}

.cta-section {
  position: relative;
  padding: clamp(3rem, 5vw, 5rem) 0;
  text-align: center;
  color: #000000;
  overflow: hidden;
  isolation: isolate;
  min-height: 40vh;
}
.cta-section .cta-bg {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background: radial-gradient(45% 45% at 20% 30%, rgba(58, 140, 255, 0.4) 0%, transparent 100%), radial-gradient(40% 40% at 80% 20%, rgba(200, 53, 255, 0.35) 0%, transparent 100%), radial-gradient(35% 35% at 50% 80%, rgba(255, 181, 94, 0.35) 0%, transparent 100%);
  filter: blur(45px) saturate(120%);
}
.cta-section h2 {
  font-size: var(--h1-font-size);
  font-weight: 300;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.cta-section .tagline {
  font-size: 2rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.cta-section .desc {
  font-size: 1.05rem;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: rgba(0, 0, 0, 0.85);
}
.cta-section .cta-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  font-weight: 300;
  background: linear-gradient(135deg, #3a8cff, #c835ff);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.cta-section .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.cta-section .cta-btn:active {
  transform: translateY(2px) scale(0.95);
  filter: brightness(0.9);
}
@media (max-width: 1024px) {
  .cta-section h2 {
    font-size: var(--h1-mobile-font-size);
    font-weight: var(--h1-mobile-font-weight);
    margin-bottom: 0.5rem;
    line-height: 1.1;
  }
  .cta-section .tagline {
    font-size: 2rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  .cta-section .desc {
    font-size: 1.05rem;
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    color: rgba(0, 0, 0, 0.85);
  }
  .cta-section .cta-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
    font-weight: 300;
    background: linear-gradient(135deg, #3a8cff, #c835ff);
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
  }
  .cta-section .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }
  .cta-section .cta-btn:active {
    transform: translateY(2px) scale(0.95);
    filter: brightness(0.9);
  }
}

@media (prefers-reduced-motion: no-preference) {
  #why-scht .why-list li {
    opacity: 0;
    transform: translateY(12px);
    animation: whyIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  #why-scht .why-list li:nth-child(2) {
    animation-delay: 0.06s;
  }
  #why-scht .why-list li:nth-child(3) {
    animation-delay: 0.12s;
  }
  #why-scht .why-list li:nth-child(4) {
    animation-delay: 0.18s;
  }
  @keyframes whyIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (max-width: 1024px) {
  .useCaseSection {
    padding: 4rem 0;
    background: #fefefe;
    height: auto;
    max-height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .useCaseSection .container {
    width: 100%;
    flex-direction: column-reverse;
    text-align: center;
  }
  .useCaseSection .container h1 {
    font-size: var(--h1-mobile-font-size);
    line-height: 0.95;
    font-weight: var(--h1-mobile-font-weight);
  }
  .useCaseSection .container .useCaseContent {
    flex: 1;
    max-width: 100vw;
  }
  .useCaseSection .container .useCaseContent .useCaseList {
    width: 100%;
    align-items: flex-start;
    padding: 0 1rem;
  }
  .useCaseSection .container .useCaseContent .useCaseList li {
    padding-left: 2rem;
    width: 100%;
    text-align: left;
  }
  .useCaseSection .container .useCaseImage {
    flex: 1;
    width: 100%;
    margin-top: 2rem;
  }
}/*# sourceMappingURL=interoperability.css.map */