@font-face {
  font-family: "Michroma";
  src: url("../fonts/Michroma-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --color-text-300: #c9cdd7;
  --color-text-400: #9aa0b0;
  --color-text-500: #6b7180;
  --color-text-600: #4a5063;
  --color-text-700: #2f3649;
  --color-text-800: #232a3d;
  --color-text-900: #1a233c;
  --color-brand: #015efb;
  --color-brand-hover: #0057d4;
  --page-gutter: 40px;
  --content-width: 1280px;
  --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  --shadow-control: 0 12px 20px -12px rgba(26, 35, 60, 0.08),
    0 6px 20px -6px rgba(26, 35, 60, 0.04),
    0 0 1px rgba(26, 35, 60, 0.2);
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text-900);
  background: #fff;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#main-content {
  overflow-x: clip;
  background: #f2f5fc;
}

body,
button {
  font: inherit;
}

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

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

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--color-text-900);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 208px minmax(0, 1fr) 248px;
  align-items: center;
  width: 100%;
  height: 72px;
  padding: 0 0 0 var(--page-gutter);
  background: rgba(255, 255, 255, 0.68);
  -webkit-backdrop-filter: blur(36px) saturate(1.5);
  backdrop-filter: blur(36px) saturate(1.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 1px 0 rgba(26, 35, 60, 0.02),
    0 6px 30px rgba(26, 35, 60, 0.05);
}

.site-header.site-header--pinned {
  position: fixed;
  animation: site-header-pin 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes site-header-pin {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 190px;
  height: 32px;
}

.site-brand__mark {
  flex: 0 0 auto;
  width: 78px;
  height: 26px;
}

.site-brand__divider {
  position: relative;
  display: block;
  flex: 0 0 1px;
  width: 1px;
  height: 32px;
  overflow: hidden;
}

.site-brand__divider img {
  position: absolute;
  top: 15.5px;
  left: -15.5px;
  width: 32px;
  height: 1px;
  max-width: none;
  transform: rotate(90deg);
}

.site-brand__slogan {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  white-space: nowrap;
  background-image:
    linear-gradient(
      110deg,
      transparent 18%,
      rgba(255, 231, 163, 0.95) 43%,
      #fff 50%,
      rgba(255, 231, 163, 0.95) 57%,
      transparent 82%
    ),
    linear-gradient(107deg, #c06600 48%, #752a00 100%);
  background-repeat: no-repeat;
  background-position: -52px 0, 0 0;
  background-size: 52px 100%, 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: site-brand-slogan-shine 4s ease-in-out infinite;
}

@keyframes site-brand-slogan-shine {
  0%,
  18% {
    background-position: -52px 0, 0 0;
  }

  48%,
  100% {
    background-position: calc(100% + 52px) 0, 0 0;
  }
}

.primary-nav {
  justify-self: center;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.primary-nav a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
  transition: color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--color-brand-hover);
}

.header-actions {
  display: grid;
  grid-template-columns: 40px 40px 144px;
  align-items: center;
  gap: 8px;
  width: 248px;
}

.header-actions__cta {
  height: 72px;
  margin-left: 8px;
}

.icon-action {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-control);
  cursor: pointer;
}

.icon-action img {
  width: 18px;
  height: 18px;
}

.icon-action .icon-action__wechat {
  width: 22px;
  height: 18px;
}

.header-wechat {
  position: relative;
}

.header-wechat__popover {
  position: absolute;
  z-index: 4;
  top: 56px;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 128px;
  gap: 8px;
  padding: 8px;
  color: var(--color-text-700);
  background: #fff;
  border: 1px solid rgba(26, 35, 60, 0.06);
  border-radius: 12px;
  box-shadow: var(--shadow-control);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition:
    opacity 180ms ease,
    visibility 0s linear 180ms,
    transform 180ms ease;
}

.header-wechat__popover::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 16px;
  content: "";
}

.header-wechat.is-open .header-wechat__popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.header-wechat.is-open .icon-action {
  background: rgba(1, 94, 251, 0.08);
  box-shadow:
    0 0 0 1px rgba(1, 94, 251, 0.16),
    var(--shadow-control);
}

.header-wechat__qr {
  width: 112px;
  height: 112px;
  max-width: none;
}

.header-wechat__popover p {
  width: 100%;
  color: var(--color-text-700);
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(111deg, #3392fe 0%, var(--color-brand) 100%);
  border-radius: 12px;
  box-shadow: var(--shadow-control);
  font-weight: 600;
  transition: transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: linear-gradient(
    111deg,
    var(--color-brand) 0%,
    var(--color-brand-hover) 100%
  );
}

.button:active {
  transform: translateY(1px);
}

.button--compact {
  width: 144px;
  height: 72px;
  border-radius: 0;
  font-size: 16px;
  line-height: 24px;
}

.hero {
  position: relative;
  height: 810px;
  overflow: hidden;
  background: #fff;
}

.hero__slide {
  --hero-edge-left: url("../images/hero-iso-edge-left.png");
  --hero-edge-right: url("../images/hero-iso-edge-right.png");
  position: absolute;
  inset: 0 0 auto;
  height: 810px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 800ms;
}

#hero-slide-ce {
  --hero-edge-left: url("../images/hero-ce-edge-left.png");
  --hero-edge-right: url("../images/hero-ce-edge-right.png");
}

#hero-slide-management {
  --hero-edge-left: url("../images/hero-management-edge-left.png");
  --hero-edge-right: url("../images/hero-management-edge-right.png");
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.hero__visual {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 810px;
  overflow: hidden;
  background:
    var(--hero-edge-left) left / 50% 100% no-repeat,
    var(--hero-edge-right) right / 50% 100% no-repeat;
}

.hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 721px) {
  .hero__visual img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1440px;
    height: 810px;
    max-width: none;
    transform: translateX(-50%);
  }
}

.hero__copy {
  position: relative;
  z-index: 4;
  width: min(var(--content-width), calc(100% - 160px));
  margin: 0 auto;
  padding-top: 200px;
}

.hero__title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  white-space: nowrap;
}

.hero__title-accent {
  display: block;
  flex: 0 0 auto;
  width: 141px;
  overflow: visible;
  background-image: linear-gradient(
    115.796deg,
    #3392fe 0%,
    #015efb 50%,
    #ba39ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Michroma", "Arial Narrow", "SF Pro Display", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  text-indent: -2px;
  text-transform: uppercase;
  transform: translateY(-4px) scaleX(1.24);
  transform-origin: left center;
  -webkit-text-fill-color: transparent;
}

.hero__title--ce {
  gap: 8px;
}

.hero__title-accent--ce {
  width: 90px;
  transform: translateY(-4px);
}

.hero__title--management {
  gap: 4px;
}

.hero__title-accent--management {
  width: auto;
  font-family: inherit;
  font-weight: 600;
  line-height: 58px;
  text-indent: 0;
  text-transform: none;
  transform: none;
}

.hero__lead {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.hero__lead span {
  display: block;
}

.hero__lead span + span {
  margin-top: 8px;
}

.button--primary {
  justify-content: space-between;
  width: 320px;
  height: 56px;
  margin-top: 44px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.button--primary img {
  width: 24px;
  height: 24px;
}

.hero__pagination {
  position: absolute;
  z-index: 4;
  top: 548px;
  left: 50%;
  display: flex;
  gap: 8px;
  width: min(var(--content-width), calc(100% - 160px));
  transform: translateX(-50%);
}

.hero__pagination button {
  position: relative;
  width: 34.6667px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hero__pagination button::before {
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--color-text-300);
  border-radius: 99px;
  content: "";
}

.hero__pagination button::after {
  position: absolute;
  top: 10px;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--color-brand);
  border-radius: 99px;
  content: "";
  opacity: 0;
}

.hero__pagination button[data-carousel-progress="current"]::after,
.hero__pagination button[aria-current="true"]:not([data-carousel-progress])::after {
  opacity: 1;
  width: 100%;
}

.hero__pagination button.is-progressing::after {
  animation: hero-pagination-progress var(--carousel-interval, 6000ms) linear forwards;
  animation-play-state: paused;
  opacity: 1;
}

.hero.is-carousel-playing .hero__pagination button.is-progressing::after {
  animation-play-state: running;
}

@keyframes hero-pagination-progress {
  from {
    width: 4px;
  }

  to {
    width: 100%;
  }
}

.hero__pagination button:focus-visible {
  outline: 0;
}

.hero__pagination button:focus-visible::before {
  box-shadow: 0 0 0 3px rgba(1, 94, 251, 0.2);
}

.advantages {
  position: absolute;
  z-index: 3;
  top: 630px;
  left: 50%;
  width: 100%;
  height: 180px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.advantages__list {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  height: 100px;
  padding: 0 40px;
}

.advantages__item {
  flex: 1 0 0;
  min-width: 0;
}

.advantages__divider {
  position: relative;
  flex: 0 0 0;
  width: 0;
  height: 80px;
}

.advantages__divider::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 35, 60, 0.01) 0%,
    rgba(26, 35, 60, 0.1) 50%,
    rgba(26, 35, 60, 0.01) 100%
  );
  content: "";
  transform: translateX(-50%);
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.feature__icon {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.feature__icon--dual-track,
.feature__icon--experience,
.feature__icon--consultant,
.feature__icon--chain {
  width: 32px;
  height: 32px;
  overflow: visible;
}

.feature__icon-track,
.feature__icon-arrow {
  transform-box: fill-box;
}

.feature__icon-track {
  transform-origin: center bottom;
}

.feature__icon-arrow {
  transform-origin: center;
}

.feature__icon-ten,
.feature__icon-chain-line,
.feature__icon-chain-arrow {
  transform-box: fill-box;
}

.feature__icon-chain-arrow {
  transform-origin: center;
}

.feature__icon--dual-track.is-animating .feature__icon-track--short {
  animation: feature-dual-track-short 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.feature__icon--dual-track.is-animating .feature__icon-track--medium {
  animation: feature-dual-track-medium 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.feature__icon--dual-track.is-animating .feature__icon-track--tall {
  animation: feature-dual-track-tall 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.feature__icon--dual-track.is-animating .feature__icon-arrow {
  animation: feature-dual-track-arrow 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.feature__icon--experience.is-animating .feature__icon-ten--one {
  animation: feature-experience-one 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.feature__icon--experience.is-animating .feature__icon-ten--zero {
  animation: feature-experience-zero 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.feature__icon--consultant.is-animating .feature__icon-consultant-part--head {
  animation: feature-consultant-head 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.feature__icon--consultant.is-animating .feature__icon-consultant-part--body {
  animation: feature-consultant-body 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.feature__icon--chain.is-animating .feature__icon-chain-line {
  animation: feature-chain-line 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.feature__icon--chain.is-animating .feature__icon-chain-arrow {
  animation: feature-chain-arrow 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes feature-dual-track-short {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  12% {
    opacity: 0.35;
    transform: scaleY(0.2);
  }

  30% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes feature-dual-track-medium {
  0%,
  16%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  28% {
    opacity: 0.35;
    transform: scaleY(0.2);
  }

  46% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes feature-dual-track-tall {
  0%,
  32%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  44% {
    opacity: 0.35;
    transform: scaleY(0.2);
  }

  62% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes feature-dual-track-arrow {
  0%,
  42%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }

  52% {
    opacity: 0.35;
    transform: translateY(4px);
  }

  66% {
    opacity: 1;
    transform: translateY(-1px);
  }

  78% {
    transform: translateY(0);
  }
}

@keyframes feature-experience-one {
  0%,
  100% {
    opacity: 1;
    stroke-dasharray: 20;
    stroke-dashoffset: 0;
  }

  10% {
    opacity: 0.25;
    stroke-dashoffset: 20;
  }

  38% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes feature-experience-zero {
  0%,
  18%,
  100% {
    opacity: 1;
    stroke-dasharray: 32;
    stroke-dashoffset: 0;
  }

  28% {
    opacity: 0.25;
    stroke-dashoffset: 32;
  }

  58% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes feature-consultant-head {
  0%,
  100% {
    opacity: 1;
    stroke-dasharray: 16;
    stroke-dashoffset: 0;
  }

  8% {
    opacity: 0.25;
    stroke-dasharray: 16;
    stroke-dashoffset: 16;
  }

  32% {
    opacity: 1;
    stroke-dasharray: 16;
    stroke-dashoffset: 0;
  }
}

@keyframes feature-consultant-body {
  0%,
  14%,
  100% {
    opacity: 1;
    stroke-dasharray: 44;
    stroke-dashoffset: 0;
  }

  22% {
    opacity: 0.25;
    stroke-dasharray: 44;
    stroke-dashoffset: 44;
  }

  62% {
    opacity: 1;
    stroke-dasharray: 44;
    stroke-dashoffset: 0;
  }
}

@keyframes feature-chain-line {
  0%,
  100% {
    opacity: 1;
    stroke-dasharray: 32;
    stroke-dashoffset: 0;
  }

  10% {
    opacity: 0.25;
    stroke-dashoffset: 32;
  }

  52% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes feature-chain-arrow {
  0%,
  40%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: 0;
    transform: translateY(3px) scale(0.65);
  }

  66% {
    opacity: 1;
    transform: translateY(-1px) scale(1.08);
  }

  78% {
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature__icon-track,
  .feature__icon-arrow,
  .feature__icon-ten,
  .feature__icon-consultant-part,
  .feature__icon-chain-line,
  .feature__icon-chain-arrow {
    animation: none !important;
  }
}

.feature h3 {
  color: var(--color-text-900);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.feature p {
  margin-top: 4px;
  color: var(--color-text-500);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

@property --service-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.service-entries {
  position: relative;
  min-height: 0;
  padding: 80px max(80px, calc((100% - var(--content-width)) / 2)) 48px;
  overflow: visible;
  background: #f2f5fc;
  isolation: isolate;
}

.service-entries::before {
  position: absolute;
  z-index: -1;
  top: 120px;
  left: -190px;
  width: 900px;
  height: 860px;
  background: linear-gradient(
    193.436deg,
    rgba(51, 146, 254, 0) 14.678%,
    rgba(1, 94, 251, 0.8) 52.339%,
    rgba(186, 57, 255, 0.4) 90%
  );
  border-radius: 50%;
  filter: blur(100px);
  content: "";
}

.service-entries__heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: min(100%, var(--content-width));
  min-height: 48px;
  margin: 0 auto;
}

.service-entries__heading h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.service-entries__heading p {
  width: 420px;
  color: var(--color-text-700);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.service-entries__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 444px 240px;
  gap: 20px 16px;
  width: min(100%, var(--content-width));
  margin: 52px auto 0;
}

.service-entry {
  --service-border-angle: 0deg;
  position: relative;
  padding: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  box-shadow: var(--shadow-control);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.service-entry::before {
  position: absolute;
  z-index: 4;
  inset: 0;
  padding: 1px;
  background: conic-gradient(
    from var(--service-border-angle),
    transparent 0 72%,
    #3392fe 80%,
    #015efb 87%,
    #ba39ff 94%,
    transparent 100%
  );
  border-radius: inherit;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.service-entry:hover::before,
.service-entry:focus-within::before {
  opacity: 1;
  animation: service-border-flow 6s linear infinite;
}

.service-entry--iso {
  grid-column: span 2;
}

.service-entry--iso,
.service-entry--ce {
  height: 444px;
}

.service-entry--compact {
  height: 240px;
}

.service-entry__index {
  position: absolute;
  z-index: 5;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 26px;
  color: rgba(26, 35, 60, 0.8);
  border: 1px dashed rgba(26, 35, 60, 0.2);
  border-radius: 99px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.service-entry:hover .service-entry__index,
.service-entry:focus-within .service-entry__index {
  color: #fff;
  background: var(--color-brand);
  border-color: var(--color-brand);
}

.service-entry__title {
  position: relative;
  z-index: 2;
  padding-right: 56px;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.service-entry__title--display {
  padding-right: 72px;
  font-family: "Michroma", "Arial Narrow", "SF Pro Display", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 58px;
  letter-spacing: -0.02em;
}

.service-entry__title a:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 5px;
  border-radius: 4px;
}

.service-entry__description {
  position: relative;
  z-index: 2;
  width: 336px;
  margin-top: 12px;
  color: var(--color-text-700);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.service-entry__description--iso {
  width: 480px;
}

.service-entry__ce-detail {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 62px;
}

.service-entry__ce-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-entry__ce-path::before {
  position: absolute;
  top: 14px;
  right: calc(100% / 6);
  left: calc(100% / 6);
  height: 0;
  border-top: 1px dashed var(--color-text-300);
  content: "";
}

.service-entry__ce-path::after {
  position: absolute;
  top: 13px;
  right: calc(100% / 6);
  left: calc(100% / 6);
  height: 2px;
  background: var(--color-brand);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
}

.service-entry__ce-path.is-playing::after {
  animation: ce-path-line 5s linear infinite;
}

.service-entry__ce-path li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.service-entry__ce-path span {
  position: relative;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--color-text-700);
  background: #fff;
  border: 1px solid var(--color-text-400);
  border-radius: 50%;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
}

.service-entry__ce-path li:nth-child(n + 2) span::after {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  opacity: 0;
  transform: rotate(-45deg) scale(0.6);
}

.service-entry__ce-path.is-playing li:nth-child(2) span {
  animation: ce-path-node-02 5s linear infinite;
}

.service-entry__ce-path.is-playing li:last-child span::after {
  animation: ce-path-check-03 5s linear infinite;
}

.service-entry__ce-path.is-playing li:nth-child(2) span::after {
  animation: ce-path-check-02 5s linear infinite;
}

.service-entry__ce-path.is-playing li:last-child span {
  animation: ce-path-node-03 5s linear infinite;
}

@keyframes ce-path-line {
  0%,
  6% {
    transform: scaleX(0);
  }

  42%,
  99.99% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

@keyframes ce-path-node-02 {
  0%,
  22% {
    color: var(--color-text-700);
    background: #fff;
    border-color: var(--color-text-400);
  }

  26%,
  99.99% {
    color: transparent;
    background: var(--color-brand);
    border-color: var(--color-brand);
  }

  100% {
    color: var(--color-text-700);
    background: #fff;
    border-color: var(--color-text-400);
  }
}

@keyframes ce-path-node-03 {
  0%,
  40% {
    color: var(--color-text-700);
    background: #fff;
    border-color: var(--color-text-400);
  }

  44%,
  99.99% {
    color: transparent;
    background: var(--color-brand);
    border-color: var(--color-brand);
  }

  100% {
    color: var(--color-text-700);
    background: #fff;
    border-color: var(--color-text-400);
  }
}

@keyframes ce-path-check-02 {
  0%,
  22% {
    opacity: 0;
    transform: rotate(-45deg) scale(0.6);
  }

  26%,
  99.99% {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: rotate(-45deg) scale(0.6);
  }
}

@keyframes ce-path-check-03 {
  0%,
  40% {
    opacity: 0;
    transform: rotate(-45deg) scale(0.6);
  }

  44%,
  99.99% {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: rotate(-45deg) scale(0.6);
  }
}

.service-entry__ce-path strong {
  color: var(--color-text-700);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  white-space: nowrap;
}

.service-entry__ce-scopes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 62px;
}

.service-entry__ce-scopes li {
  display: grid;
  place-items: center;
  height: 28px;
  color: var(--color-text-600);
  background: rgba(242, 245, 252, 0.72);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.service-entry--compact .service-entry__description {
  margin-top: 80px;
}

.service-entry__globes {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 160px);
  justify-content: center;
  gap: 40px;
  width: 100%;
  margin-top: 86px;
}

.service-entry__globes .standard-card__badge {
  cursor: default;
}

.service-entry__globes [data-iso-model] {
  display: inline-flex;
  justify-content: center;
  opacity: 1;
  transition:
    opacity 180ms linear,
    filter 180ms linear;
}

.service-entry__globes [data-iso-model].is-changing {
  opacity: 0;
  filter: blur(4px);
}

.standard-card__model-char {
  display: inline-block;
  animation: iso-model-char-in 450ms linear backwards;
}

@keyframes iso-model-char-in {
  from {
    opacity: 0;
    filter: blur(20px);
  }

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

@keyframes service-border-flow {
  to {
    --service-border-angle: 360deg;
  }
}

@media (max-width: 1400px) {
  .service-entries {
    padding-right: 40px;
    padding-left: 40px;
  }

  .service-entry__globes {
    gap: clamp(8px, calc((100% - 640px) / 3), 40px);
  }
}

@media (max-width: 1180px) {
  .service-entries__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    align-items: start;
  }

  .service-entry--iso {
    grid-column: span 2;
  }

  .service-entry__globes {
    gap: 40px;
  }
}

@media (max-width: 980px) {
  .service-entries {
    min-height: 0;
    padding: 64px 32px 40px;
  }

  .service-entries__heading {
    display: block;
  }

  .service-entries__heading p {
    width: min(100%, 560px);
    margin-top: 16px;
  }

  .service-entries__grid {
    margin-top: 40px;
  }
}

@media (max-width: 720px) {
  .service-entries {
    padding: 56px 20px 40px;
  }

  .service-entries__heading h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .service-entries__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-entry,
  .service-entry--iso,
  .service-entry--ce,
  .service-entry--compact {
    grid-column: auto;
    width: 100%;
    height: auto;
    min-height: 240px;
    padding: 28px;
  }

  .service-entry--ce {
    padding-bottom: 40px;
  }

  .service-entry__title--display {
    font-size: 38px;
    line-height: 48px;
  }

  .service-entry__description,
  .service-entry__description--iso {
    width: 100%;
  }

  .service-entry--compact .service-entry__description {
    margin-top: 56px;
  }

  .service-entry__globes {
    grid-template-columns: repeat(2, 160px);
    gap: 24px 16px;
    margin-top: 56px;
  }
}

@media (max-width: 460px) {
  .service-entry {
    padding-right: 20px;
    padding-left: 20px;
  }

  .service-entry__globes {
    grid-template-columns: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-entry:hover::before,
  .service-entry:focus-within::before {
    animation: none;
  }

  .service-entry__globes [data-iso-model] {
    transition: none;
  }

  .standard-card__model-char {
    animation: none;
  }

  .service-entry__ce-path::after,
  .service-entry__ce-path li:nth-child(n + 2) span,
  .service-entry__ce-path li:nth-child(n + 2) span::after {
    animation: none;
  }

  .service-entry__ce-path.is-playing::after {
    transform: scaleX(1);
  }

  .service-entry__ce-path.is-playing li:nth-child(n + 2) span {
    color: transparent;
    background: var(--color-brand);
    border-color: var(--color-brand);
  }

  .service-entry__ce-path.is-playing li:nth-child(n + 2) span::after {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
  }
}

.standards {
  min-height: 0;
  padding: 52px 0 112px;
  background: #fff;
}

.standards__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
}

.standard-card {
  flex: 0 0 160px;
  width: 160px;
  text-align: center;
}

.standard-card--wide {
  flex-basis: 192px;
  width: 192px;
}

.standard-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.standard-card__badge {
  position: relative;
  width: 160px;
  height: 160px;
  overflow: hidden;
}

.standard-card__globe {
  position: absolute;
  inset: 0;
  display: block;
  width: 160px;
  height: 160px;
  background-image:
    url("../images/globe-latitude-upper.svg"),
    url("../images/globe-latitude-lower.svg"),
    url("../images/globe-sphere-outline.svg"),
    url("../images/globe-ring-dashed.svg?v=20260818-1"),
    url("../images/globe-ring-gradient.svg?v=20260818-1");
  background-repeat: no-repeat;
  background-position:
    center 38px,
    center 110px,
    center,
    center,
    center;
  background-size:
    63.932px 11.681px,
    63.932px 11.681px,
    106px 106px,
    125px 125px,
    140px 140px;
}

.standard-card__globe::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image:
    url("../images/globe-meridian-axis.svg"),
    url("../images/globe-meridian-narrow.svg"),
    url("../images/globe-meridian-wide.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1px 105px, 43px 106px, 85px 106px;
  content: "";
}

.standard-card__globe.is-animating::before {
  opacity: 0;
}

.standard-card__globe-motion {
  position: absolute;
  z-index: 1;
  top: 27px;
  left: 27px;
  width: 106px;
  height: 106px;
  opacity: 0;
  pointer-events: none;
}

.standard-card__globe.is-animating .standard-card__globe-motion {
  opacity: 1;
}

.standard-card__badge figcaption {
  position: absolute;
  z-index: 2;
  top: 66px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 124px;
  height: 28px;
  color: var(--color-text-900);
  background: #fff;
  border: 1px solid var(--color-text-400);
  border-radius: 99px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
}

.standard-card h3 {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  white-space: nowrap;
}

.standard-card a:hover h3,
.standard-card a:focus-visible h3 {
  color: var(--color-brand-hover);
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: none;
  }

  .hero__pagination button::before {
    transition: none;
  }

  .hero__pagination button.is-progressing::after {
    animation: none;
    width: 100%;
  }

  .site-header.site-header--pinned {
    animation: none;
  }

  .site-brand__slogan {
    background-image: linear-gradient(107deg, #c06600 48%, #752a00 100%);
    background-position: 0 0;
    background-size: 100% 100%;
    animation: none;
  }

  .standard-card__globe-motion {
    display: none;
  }
}

@media (max-width: 1280px) {
  :root {
    --page-gutter: 24px;
  }

  .site-header {
    grid-template-columns: 190px minmax(0, 1fr) 104px;
  }

  .site-brand__slogan {
    display: none;
  }

  .site-brand__divider {
    display: none;
  }

  .primary-nav ul {
    gap: 14px;
  }

  .primary-nav a {
    font-size: 14px;
  }

  .header-actions {
    grid-template-columns: 104px;
    width: 104px;
  }

  .header-actions > li:not(.header-actions__cta) {
    display: none;
  }

  .header-actions__cta {
    height: 72px;
    margin-left: 0;
  }

  .button--compact {
    width: 104px;
  }

  .advantages__list {
    gap: 28px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .standards__list {
    gap: clamp(28px, 5vw, 80px);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 110px minmax(0, 1fr) 104px;
  }

  .primary-nav {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav ul {
    width: max-content;
    padding: 0 12px;
  }

  .hero__copy {
    width: calc(100% - 80px);
  }

  .hero__pagination {
    width: calc(100% - 80px);
  }

  .advantages {
    padding-right: 32px;
    padding-left: 32px;
  }

  .advantages__list {
    gap: 20px;
    padding: 0;
  }

  .feature h3 {
    font-size: 16px;
  }

  .feature p {
    font-size: 13px;
  }

  .standards {
    padding-right: 32px;
    padding-left: 32px;
  }

  .standards__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 192px));
  }
}

@media (max-width: 720px) {
  body.site-header-is-pinned {
    padding-top: var(--site-header-pinned-space, 120px);
  }

  .site-header {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    height: auto;
    min-height: 120px;
    padding: 16px 20px 12px;
  }

  .site-brand {
    width: auto;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions__cta {
    height: 40px;
  }

  .button--compact {
    height: 40px;
    border-radius: 12px;
  }

  .primary-nav {
    order: 3;
  }

  .primary-nav ul {
    padding: 0;
  }

  .hero {
    height: auto;
    overflow: visible;
    background: #f5f8ff;
  }

  .hero__slide {
    position: relative;
    inset: auto;
    display: none;
    height: auto;
    opacity: 1;
    visibility: visible;
    transition: none;
  }

  .hero__slide.is-active {
    display: block;
  }

  .hero__visual {
    height: 620px;
  }

  .hero__visual img {
    object-position: 34% center;
  }

  .hero__copy {
    width: calc(100% - 40px);
    padding-top: 104px;
    padding-bottom: 112px;
  }

  .hero__title {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.2;
    white-space: normal;
  }

  .hero__title-accent {
    transform: scaleX(1.24);
  }

  .hero__title-accent--ce,
  .hero__title-accent--management {
    transform: none;
  }

  .hero__lead {
    font-size: 20px;
    line-height: 30px;
  }

  .button--primary {
    width: min(100%, 320px);
  }

  .hero__pagination {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 40px);
    margin: -104px auto 80px;
    transform: none;
  }

  .advantages {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 40px);
    height: auto;
    margin: -72px auto 0;
    padding: 32px;
    border-radius: 24px;
    transform: none;
  }

  .advantages__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    gap: 32px 24px;
    padding: 0;
  }

  .advantages__divider {
    display: none;
  }

  .standards {
    min-height: 0;
    padding: 72px 20px 120px;
  }

  .standards__list {
    grid-template-columns: repeat(2, minmax(140px, 160px));
    gap: 36px 20px;
  }

  .standard-card,
  .standard-card--wide {
    width: 100%;
  }

  .standard-card h3 {
    white-space: normal;
  }
}

@media (max-width: 460px) {
  .hero__copy {
    padding-top: 80px;
  }

  .hero__lead {
    font-size: 18px;
    line-height: 28px;
  }

  .advantages__list {
    grid-template-columns: 1fr;
  }
}

.entity-scenarios {
  padding: 64px max(80px, calc((100vw - var(--content-width)) / 2)) 48px;
  background: transparent;
}

.entity-scenarios > h2 {
  width: min(100%, var(--content-width));
  margin: 0 auto 40px;
  color: var(--color-text-900);
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
}

.entity-scenarios__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, var(--content-width));
  gap: 20px;
  margin: 0 auto;
}

.entity-scenarios__intro,
.entity-scenarios__stage {
  min-width: 0;
  min-height: 640px;
  overflow: hidden;
  border-radius: 24px;
}

.entity-scenarios__intro {
  display: flex;
  flex-direction: column;
  padding: 48px 30px 0;
  background: linear-gradient(145deg, #eaf3ff 0%, #cfe3ff 52%, #e8ddff 100%);
}

.entity-scenarios__lead {
  max-width: 590px;
  color: var(--color-text-900);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.entity-scenarios__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  margin-top: 32px;
  color: var(--color-brand);
  background: #fff;
  border-radius: 99px;
  box-shadow: 0 0 0 1px rgba(1, 94, 251, 0.06);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition:
    color 150ms ease,
    background-color 150ms ease;
}

.entity-scenarios__cta:hover,
.entity-scenarios__cta:focus-visible {
  color: #fff;
  background: var(--color-brand);
}

.entity-scenarios__capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 200px;
  margin: auto -30px 0;
  border-top: 1px dashed rgba(26, 35, 60, 0.16);
  border-bottom: 1px dashed rgba(26, 35, 60, 0.16);
}

.entity-scenarios__capabilities li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  min-height: 100px;
  border-right: 1px dashed rgba(26, 35, 60, 0.16);
  border-bottom: 1px dashed rgba(26, 35, 60, 0.16);
}

.entity-scenarios__capabilities li:nth-child(2n) {
  border-right: 0;
}

.entity-scenarios__capabilities li:nth-child(n + 3) {
  border-bottom: 0;
}

.entity-scenarios__logo {
  width: auto;
  max-width: 74%;
  height: auto;
  max-height: 32px;
  opacity: 0.78;
}

.entity-scenarios__caption {
  display: flex;
  align-items: center;
  min-height: 80px;
  color: var(--color-text-600);
  font-size: 13px;
  line-height: 20px;
}

.entity-scenarios__stage {
  position: relative;
  background: #fff;
  box-shadow: var(--shadow-control);
  isolation: isolate;
}

.entity-scenarios__arrow {
  position: absolute;
  z-index: 4;
  top: 30px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(26, 35, 60, 0.12);
  border-radius: 50%;
  cursor: pointer;
  transition:
    background-color 150ms ease,
    border-color 150ms ease;
}

.entity-scenarios__arrow:hover,
.entity-scenarios__arrow:focus-visible {
  background: rgba(1, 94, 251, 0.08);
  border-color: rgba(1, 94, 251, 0.28);
}

.entity-scenarios__arrow img {
  width: 24px;
  height: 24px;
}

.entity-scenarios__arrow--previous {
  left: 30px;
}

.entity-scenarios__arrow--previous img {
  transform: rotate(180deg);
}

.entity-scenarios__arrow--next {
  right: 30px;
}

.entity-scenarios__pagination {
  position: absolute;
  z-index: 4;
  top: 49px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
}

.entity-scenarios__pagination button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: var(--color-text-300);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transform: scale(0.75);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.entity-scenarios__pagination button[aria-current="true"] {
  background: var(--color-brand);
  transform: scale(1);
}

.entity-scenario {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 84px 40px 34px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 520ms;
}

.entity-scenario.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.entity-scenario__visual {
  min-height: 0;
  overflow: hidden;
  background: #f2f5fc;
  border-radius: 20px;
}

.entity-scenario__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.entity-scenario header {
  min-height: 104px;
}

.entity-scenario h3 {
  color: var(--color-text-900);
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.entity-scenario p {
  max-width: 520px;
  margin-top: 8px;
  color: var(--color-text-600);
  font-size: 15px;
  line-height: 24px;
}

@media (max-width: 980px) {
  .entity-scenarios {
    padding: 56px 40px 40px;
  }

  .entity-scenarios__layout {
    grid-template-columns: 1fr;
  }

  .entity-scenarios__intro,
  .entity-scenarios__stage {
    min-height: 600px;
  }
}

@media (max-width: 720px) {
  .entity-scenarios {
    padding: 56px 24px 40px;
  }

  .entity-scenarios > h2 {
    margin-bottom: 32px;
    font-size: 28px;
    line-height: 36px;
  }

  .entity-scenarios__intro {
    min-height: 540px;
    padding: 32px 24px 0;
  }

  .entity-scenarios__lead {
    font-size: 18px;
    line-height: 28px;
  }

  .entity-scenarios__cta {
    margin-top: 24px;
  }

  .entity-scenarios__capabilities {
    margin-right: -24px;
    margin-left: -24px;
  }

  .entity-scenarios__caption {
    min-height: 72px;
  }

  .entity-scenarios__stage {
    min-height: 570px;
  }

  .entity-scenarios__arrow {
    top: 22px;
    width: 42px;
    height: 42px;
  }

  .entity-scenarios__arrow--previous {
    left: 20px;
  }

  .entity-scenarios__arrow--next {
    right: 20px;
  }

  .entity-scenarios__pagination {
    top: 39px;
  }

  .entity-scenario {
    gap: 16px;
    padding: 76px 24px 28px;
  }

  .entity-scenario header {
    min-height: 138px;
  }

  .entity-scenario h3 {
    font-size: 21px;
    line-height: 29px;
  }

  .entity-scenario p {
    font-size: 14px;
    line-height: 22px;
  }
}

.company-news {
  overflow: hidden;
  padding: 64px 0 48px;
  background: #f2f5fc;
}

.company-news__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  width: min(calc(100% - 160px), var(--content-width));
  margin: 0 auto 56px;
}

.company-news__heading h2 {
  color: var(--color-text-900);
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.company-news__heading p {
  color: var(--color-text-700);
  font-size: 16px;
  line-height: 24px;
}

.company-news__viewport {
  --company-news-gutter: max(80px, calc((100vw - var(--content-width)) / 2));
  overflow-x: auto;
  padding-left: var(--company-news-gutter);
  padding-right: max(var(--company-news-gutter), calc(100vw - var(--company-news-gutter) - 1080px));
  cursor: grab;
  scroll-behavior: smooth;
  scroll-padding-inline: var(--company-news-gutter);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.company-news__viewport:active {
  cursor: grabbing;
}

.company-news__viewport:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: -2px;
}

.company-news__viewport::-webkit-scrollbar {
  display: none;
}

.company-news__track {
  display: flex;
  width: max-content;
  gap: 20px;
}

.company-news__card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex: 0 0 min(1080px, calc(100vw - 160px));
  height: 480px;
  padding: 8px;
  overflow: hidden;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-control);
  scroll-snap-align: start;
}

.company-news__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 40px;
}

.company-news__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 16px;
  color: #fff;
  background: var(--color-brand);
  border-radius: 99px;
  font-size: 12px;
  line-height: 18px;
}

.company-news__content h3 {
  margin-top: 24px;
  color: var(--color-text-900);
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.02em;
}

.company-news__content p {
  margin-top: 20px;
  color: var(--color-text-700);
  font-size: 16px;
  line-height: 24px;
}

.company-news__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 48px;
  color: var(--color-text-900);
  border: 1px solid rgba(26, 35, 60, 0.1);
  border-radius: 99px;
  font-size: 16px;
  line-height: 24px;
  transition:
    color 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease;
}

.company-news__button:hover,
.company-news__button:focus-visible {
  color: #fff;
  background: var(--color-brand);
  border-color: var(--color-brand);
}

.company-news__media {
  min-width: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f2f5fc, #e4e6eb 52%, var(--color-text-300));
  border-radius: 8px 20px 20px 8px;
}

.company-news__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.company-news__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 8px;
  margin: 40px auto 0;
}

.company-news__pagination button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: var(--color-text-300);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transform: scale(0.75);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.company-news__pagination button[aria-current="true"] {
  background: var(--color-brand);
  transform: scale(1);
}

.company-news__pagination button:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .company-news {
    padding: 56px 0 40px;
  }

  .company-news__heading {
    grid-template-columns: 1fr;
    width: calc(100% - 80px);
    gap: 16px;
    margin-bottom: 40px;
  }

  .company-news__viewport {
    --company-news-gutter: 40px;
    padding: 0 40px;
    scroll-padding-inline: 40px;
  }

  .company-news__card {
    flex-basis: calc(100vw - 80px);
  }

  .company-news__content {
    padding: 32px;
  }

  .company-news__content h3 {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (max-width: 720px) {
  .company-news {
    padding: 56px 0 40px;
  }

  .company-news__heading {
    width: calc(100% - 48px);
    margin-bottom: 32px;
  }

  .company-news__heading h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .company-news__viewport {
    --company-news-gutter: 24px;
    padding: 0 24px;
    scroll-padding-inline: 24px;
  }

  .company-news__card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 240px;
    flex-basis: calc(100vw - 48px);
    height: auto;
    min-height: 620px;
  }

  .company-news__content {
    min-height: 364px;
    padding: 28px 24px 32px;
  }

  .company-news__content h3 {
    font-size: 26px;
    line-height: 34px;
  }

  .company-news__button {
    width: 152px;
    height: 44px;
  }

  .company-news__media {
    border-radius: 8px 8px 18px 18px;
  }

  .company-news__pagination {
    margin-top: 28px;
  }
}

.technical-docs {
  padding: 64px 40px 48px;
  background: #f2f5fc;
}

.technical-docs__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1360px);
  margin: 0 auto 40px;
}

.technical-docs__heading h2 {
  color: var(--color-text-900);
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
}

.technical-docs__more {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 32px;
  padding: 4px 12px 4px 16px;
  color: var(--color-text-700);
  background: rgba(26, 35, 60, 0.05);
  border-radius: 99px;
  font-size: 14px;
  line-height: 24px;
  transition:
    color 150ms ease,
    background-color 150ms ease;
}

.technical-docs__more img {
  width: 24px;
  height: 24px;
}

.technical-docs__more:hover,
.technical-docs__more:focus-visible {
  color: #fff;
  background: var(--color-brand);
}

.technical-docs__more:hover img,
.technical-docs__more:focus-visible img {
  filter: brightness(0) invert(1);
}

.technical-docs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 1360px);
  gap: 20px;
  margin: 0 auto;
}

.technical-doc {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 8px;
  overflow: hidden;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-control);
}

.technical-doc__media {
  --technical-doc-gradient: linear-gradient(135deg, #3392fe, #015efb);
  position: relative;
  aspect-ratio: 424 / 200;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  isolation: isolate;
}

.technical-doc__media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: var(--technical-doc-gradient);
  content: "";
  mix-blend-mode: color;
  opacity: 0.92;
  pointer-events: none;
}

.technical-doc__media--ce {
  --technical-doc-gradient: linear-gradient(135deg, #65c6ff, #015efb 72%);
}

.technical-doc__media--audit {
  --technical-doc-gradient: linear-gradient(135deg, #015efb, #7668ff 58%, #ba39ff);
}

.technical-doc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(0.92) brightness(1.06);
}

.technical-doc__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 24px;
  min-height: 200px;
  padding: 20px;
}

.technical-doc__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.technical-doc__tag {
  align-self: flex-start;
  padding: 4px 16px;
  color: #fff;
  background: var(--color-brand);
  border-radius: 99px;
  font-size: 12px;
  line-height: 18px;
}

.technical-doc h3 {
  min-height: 56px;
  color: var(--color-text-900);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.technical-doc__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  margin-top: auto;
  color: var(--color-text-900);
  border: 1px solid rgba(26, 35, 60, 0.1);
  border-radius: 99px;
  font-size: 15px;
  line-height: 24px;
  transition:
    color 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease;
}

.technical-doc__button:hover,
.technical-doc__button:focus-visible {
  color: #fff;
  background: var(--color-brand);
  border-color: var(--color-brand);
}

@media (max-width: 980px) {
  .technical-docs {
    padding: 56px 40px 40px;
  }

  .technical-docs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .technical-docs {
    padding: 56px 24px 40px;
  }

  .technical-docs__heading {
    margin-bottom: 32px;
  }

  .technical-docs__heading h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .technical-docs__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.faq-section {
  width: 100%;
  padding: 80px max(80px, calc((100vw - var(--content-width)) / 2)) 80px;
  background: #fff;
}

.faq-section__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  align-items: start;
  width: min(100%, var(--content-width));
  gap: 80px;
  margin: 0 auto;
}

.faq-section__intro {
  position: sticky;
  top: 120px;
}

.faq-section__intro h2 {
  color: var(--color-text-900);
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.faq-section__intro > p {
  max-width: 320px;
  margin-top: 24px;
  color: var(--color-text-600);
  font-size: 15px;
  line-height: 27px;
}

.faq-section__link {
  display: inline-block;
  margin-top: 28px;
  color: var(--color-brand);
  font-size: 15px;
  line-height: 24px;
}

.faq-section__link:hover,
.faq-section__link:focus-visible {
  color: var(--color-brand-hover);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-section__list {
  border-top: 0;
}

.faq-section__list details {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(26, 35, 60, 0.1);
}

.faq-section__list details[open] {
  background: transparent;
}

.faq-section__list summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  color: var(--color-text-900);
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq-section__list summary span {
  flex: 1 1 auto;
  min-width: 0;
}

.faq-section__list summary img {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  transition: transform 180ms ease;
}

.faq-section__list details[open] summary img {
  transform: rotate(90deg);
}

.faq-section__list summary:focus-visible {
  outline: 3px solid rgba(1, 94, 251, 0.16);
  outline-offset: 4px;
}

.faq-section__list details p {
  max-width: 720px;
  padding: 0 36px 24px 0;
  color: var(--color-text-600);
  font-size: 15px;
  line-height: 27px;
}

@media (max-width: 1400px) {
  .faq-section {
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media (max-width: 980px) {
  .faq-section {
    padding: 80px 40px 64px;
  }

  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .faq-section__intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .faq-section {
    padding: 80px 24px 64px;
  }

  .faq-section__inner {
    gap: 44px;
  }

  .faq-section__intro h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .faq-section__intro > p {
    max-width: none;
  }

  .faq-section__list summary {
    font-size: 16px;
    line-height: 24px;
  }
}

.consultation-shell {
  padding: 10px;
  background: #fff;
}

.consultation {
  display: grid;
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  width: 100%;
  gap: 80px;
  padding: 100px max(80px, calc((100vw - var(--content-width)) / 2));
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(125deg, #0044cb, #015efb 58%, #2689ff);
  border-radius: 20px;
}

.consultation-copy h2 {
  font-size: clamp(40px, 3.5vw, 54px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.consultation-copy > p {
  max-width: 460px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 27px;
}

.consultation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
  gap: 18px;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 26px 70px rgba(0, 29, 106, 0.24);
}

.consultation-form label {
  display: grid;
  gap: 8px;
}

.consultation-form label > span {
  color: var(--color-text-700);
  font-size: 12px;
  font-weight: 600;
}

.consultation-form input,
.consultation-form select {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  color: var(--color-text-900);
  background: #f4f7fb;
  border: 1px solid transparent;
  border-radius: 7px;
  outline: 0;
  font: inherit;
}

.consultation-form input:focus,
.consultation-form select:focus {
  background: #fff;
  border-color: rgba(1, 94, 251, 0.48);
  box-shadow: 0 0 0 3px rgba(1, 94, 251, 0.1);
}

.consultation-form__submit {
  grid-column: 1 / -1;
  height: 50px;
  border: 0;
  cursor: pointer;
}

.consultation-form__status {
  grid-column: 1 / -1;
  min-height: 20px;
  align-self: center;
  color: var(--color-text-500);
  font-size: 12px;
  line-height: 20px;
}

@media (max-width: 980px) {
  .consultation {
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 80px 40px;
  }
}

@media (max-width: 720px) {
  .consultation-shell {
    padding: 8px;
  }

  .consultation {
    padding: 72px 24px;
    border-radius: 16px;
  }

  .consultation-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

.blaze-footer-shell {
  padding: 10px;
  background: #fff;
}

.blaze-footer {
  position: relative;
  min-height: 832px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(51, 115, 255, 0.14), transparent 52%),
    #0a0a0a;
  border-radius: 20px;
  isolation: isolate;
}

.blaze-footer__source {
  display: none;
}

.blaze-footer__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 832px;
}

.blaze-footer__output {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.blaze-footer--fallback .blaze-footer__output {
  display: none;
}

.blaze-footer__cta {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 144px 24px 96px;
  text-align: center;
}

.blaze-footer__cta h2 {
  max-width: 720px;
  font-size: 48px;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: -0.035em;
}

.blaze-footer__cta p {
  max-width: 520px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 28px;
}

.blaze-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  height: 44px;
  margin-top: 32px;
  padding: 0 24px;
  color: #0a0a0a;
  background: #fff;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 500;
  transition:
    opacity 150ms ease,
    transform 150ms ease;
}

.blaze-footer__button:hover,
.blaze-footer__button:focus-visible {
  opacity: 0.85;
}

.blaze-footer__button:active {
  transform: scale(0.98);
}

.site-footer {
  width: 100%;
  margin: auto 0 0;
  padding: 0 80px;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(248px, 1fr) repeat(3, minmax(120px, auto));
  gap: 56px;
  padding: 56px 0 64px;
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.site-footer__brand > a img {
  width: 78px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.site-footer__brand p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 24px;
}

.ai-summary {
  margin-top: 48px;
}

.site-footer__brand .ai-summary__title {
  width: max-content;
  max-width: 100%;
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  background-image:
    linear-gradient(
      108deg,
      transparent 8%,
      rgba(89, 151, 255, 0.72) 38%,
      rgba(255, 255, 255, 0.96) 50%,
      rgba(169, 111, 255, 0.72) 62%,
      transparent 92%
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.56));
  background-repeat: no-repeat;
  background-position: -112px 0, 0 0;
  background-size: 112px 100%, 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 16px rgba(69, 139, 255, 0.08);
  animation: ai-summary-thinking-scan 5.2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@keyframes ai-summary-thinking-scan {
  0%,
  32% {
    background-position: -112px 0, 0 0;
  }

  76%,
  100% {
    background-position: calc(100% + 112px) 0, 0 0;
  }
}

.ai-summary__platforms {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.ai-summary__link {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: background-color 150ms ease;
}

.ai-summary__link:hover,
.ai-summary__link:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.ai-summary__link img {
  width: 24px;
  height: 24px;
}

.site-footer nav {
  min-width: 116px;
}

.site-footer h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.site-footer nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  line-height: 22px;
  transition: color 150ms ease;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #fff;
}

.site-footer__legal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  line-height: 20px;
}

.site-footer__legal > p:last-child {
  justify-self: end;
}

.site-footer__back-to-top {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 12px;
  padding: 0;
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: color 150ms ease;
}

.site-footer__back-to-top:hover,
.site-footer__back-to-top:focus-visible {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__back-to-top:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
  border-radius: 99px;
}

.site-footer__back-to-top img {
  width: 32px;
  height: 32px;
}

@media (max-width: 1140px) {
  .site-footer {
    padding: 0 40px;
  }

  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 48px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .blaze-footer-shell {
    padding: 8px;
  }

  .blaze-footer,
  .blaze-footer__content {
    min-height: 900px;
  }

  .blaze-footer {
    border-radius: 16px;
  }

  .blaze-footer__cta {
    padding: 96px 24px 72px;
  }

  .blaze-footer__cta h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .site-footer {
    padding: 0 24px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 0 48px;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__legal {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .site-footer__legal > p:last-child,
  .site-footer__back-to-top {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blaze-footer__output {
    display: none;
  }

  .header-wechat__popover {
    transition: none;
  }

  .ai-summary__title {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.62));
    background-position: 0 0;
    background-size: 100% 100%;
    animation: none;
  }
}
