@font-face {
  font-family: "AlibabaPuHuiTi";
  src: url("../fonts/EQ-Z_g__AAc120RhMQZGg.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF;
}

@font-face {
  font-family: "AlibabaPuHuiTi";
  src: url("../fonts/4fhTJcjQ6eoxLRx8MR3kY.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+4E1A, U+4E8E, U+4EA7, U+4EBA, U+4EF6, U+4F8B, U+5173, U+51B3, U+5236, U+529B, U+5305, U+53D1, U+54C1, U+5916, U+5B9A, U+5C16, U+5F00, U+65B9, U+6848, U+884C, U+89E3, U+8BAF, U+8D44, U+8F6F, U+9875, U+9996;
}

@font-face {
  font-family: "AlibabaPuHuiTi";
  src: url("../fonts/OnqtsfIU7ayc00c7ZLL2S.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+9F0E;
}

:root {
  --brand-blue: #0b3b67;
  --brand-blue-dark: #062540;
  --brand-cyan: #0f6174;
  --brand-green: #1d5f3a;
  --brand-lime: #5e7d2c;
  --ink: #071b2c;
  --muted: #41566a;
  --hero-bg: #edf2f3;
  --line: rgba(11, 59, 103, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.container-wide {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.top-section {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #061e34;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #062c54;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header .navbar {
  min-height: 82px;
  padding-top: 0;
  padding-bottom: 0;
}

.brand {
  display: inline-flex;
  order: 1;
  flex: 0 0 auto;
  align-items: center;
  margin-right: 40px;
  padding: 0;
}

.brand-mark {
  width: 46px;
  height: 43px;
  margin-right: 10px;
  object-fit: contain;
}

.brand-name {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.navbar-collapse {
  order: 2;
  align-items: stretch;
}

.navbar-nav {
  align-items: stretch;
}

.nav-item {
  display: flex;
  align-items: stretch;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 0 14px !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-family: "AlibabaPuHuiTi", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 16px;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 14px;
  bottom: 20px;
  left: 14px;
  height: 2px;
  content: "";
  background: #24c4a3;
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-arrow {
  width: 6px;
  height: 6px;
  margin-top: -4px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.language-switcher {
  display: inline-flex;
  order: 3;
  flex: 0 0 auto;
  align-items: center;
  height: 34px;
  margin-left: 16px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher-icon {
  width: 16px;
  height: 16px;
  margin: 0 5px;
  color: rgba(255, 255, 255, 0.72);
}

.language-option {
  display: inline-block;
  min-width: 31px;
  height: 28px;
  padding: 0 6px;
  border: 0;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.language-option:hover,
.language-option:focus-visible {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
}

.language-option.is-active {
  color: var(--brand-blue-dark);
  background: #ffffff;
}

.navbar-toggler {
  order: 4;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.navbar-toggler:focus {
  outline: 2px solid rgba(11, 59, 103, 0.32);
}

.navbar-toggler-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 560px;
  color: #ffffff;
  background: #061e34;
}

.hero .carousel-inner,
.hero .carousel-item {
  min-height: 560px;
}

.hero.carousel-fade .carousel-item {
  transition-duration: 0.9s;
}

.hero-slide {
  position: relative;
  overflow: hidden;
  background: #061e34;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center 52%;
  transform: scale(1.045);
}

.hero-slide-data .hero-media {
  object-position: center 58%;
}

.hero-slide-team .hero-media {
  object-position: center 48%;
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 20, 38, 0.96) 0%, rgba(4, 30, 55, 0.86) 38%, rgba(4, 31, 57, 0.48) 69%, rgba(4, 31, 57, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 39, 69, 0.06), rgba(4, 24, 43, 0.36));
}

.carousel-item.active .hero-media {
  animation: hero-media-zoom 6.8s ease-out both;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 560px;
  align-items: center;
  gap: 42px;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
}

.hero-copy {
  position: relative;
  width: min(100%, 670px);
  padding: 34px 0 118px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.hero-kicker::before {
  width: 32px;
  height: 2px;
  margin-right: 11px;
  content: "";
  background: #24c4a3;
}

.hero-title {
  max-width: 670px;
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.28;
}

.hero-title span {
  display: block;
}

.hero-description {
  max-width: 590px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-action {
  display: inline-flex;
  min-width: 164px;
  height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid #22bfa2;
  border-radius: 5px;
  color: #ffffff;
  background: #159f8f;
  box-shadow: 0 12px 24px rgba(3, 27, 48, 0.24);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-action::after {
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.hero-action:hover {
  color: #ffffff;
  background: #118576;
  box-shadow: 0 15px 28px rgba(6, 75, 150, 0.24);
  transform: translateY(-2px);
}

.hero-action-secondary {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(3, 31, 67, 0.26);
  box-shadow: none;
}

.hero-action-secondary::after {
  display: none;
}

.hero-action-secondary svg {
  width: 16px;
  height: 16px;
  margin-right: 9px;
}

.hero-action-secondary:hover {
  color: #082b4d;
  background: #ffffff;
  box-shadow: none;
}

.carousel-item .hero-copy > * {
  opacity: 0;
}

.carousel-item.active .hero-kicker,
.carousel-item.active .hero-title,
.carousel-item.active .hero-description,
.carousel-item.active .hero-actions {
  animation: hero-content-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.carousel-item.active .hero-title {
  animation-delay: 0.1s;
}

.carousel-item.active .hero-description {
  animation-delay: 0.19s;
}

.carousel-item.active .hero-actions {
  animation-delay: 0.28s;
}

.hero-indicators.carousel-indicators {
  right: auto;
  bottom: 60px;
  left: 50%;
  z-index: 5;
  display: flex;
  width: 100%;
  max-width: 1200px;
  justify-content: flex-start;
  margin: 0;
  padding: 0 20px;
  transform: translateX(-50%);
}

.hero-indicators button {
  position: relative;
  width: 168px;
  margin: 0 14px 0 0;
  padding: 11px 0 8px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  outline: 0;
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  text-align: left;
  transition: color 0.2s ease;
}

.hero-indicators button::after {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #24c4a3;
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-indicators button.active {
  color: #ffffff;
}

.hero-indicators button.active::after {
  animation: hero-indicator-progress 6s linear both;
}

.hero:hover .hero-indicators button.active::after {
  animation-play-state: paused;
}

.indicator-number {
  margin-right: 10px;
  color: #24c4a3;
  font-weight: 700;
}

.indicator-label {
  font-weight: 700;
}

.hero-control {
  top: 50%;
  bottom: auto;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  background: rgba(4, 28, 51, 0.42);
  opacity: 1;
  transform: translateY(-50%);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hero-control-prev {
  left: 22px;
}

.hero-control-next {
  right: 22px;
}

.hero-control svg {
  width: 22px;
  height: 22px;
}

.hero-control:hover,
.hero-control:focus {
  border-color: #24c4a3;
  background: rgba(21, 159, 143, 0.86);
}

.hero-indicators button:focus-visible,
.hero-control:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@keyframes hero-media-zoom {
  from {
    transform: scale(1.045);
  }
  to {
    transform: scale(1);
  }
}

@keyframes hero-content-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-indicator-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.hero-visual {
  --hero-visual-scale: 1;
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 360px;
  margin-left: auto;
  isolation: isolate;
  transform-origin: center right;
}

.code-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(94, 205, 186, 0.24);
  border-radius: 50%;
}

.code-orbit-large {
  top: 4px;
  right: 2px;
  width: 320px;
  height: 320px;
}

.code-orbit-small {
  bottom: 13px;
  left: 14px;
  width: 156px;
  height: 156px;
  border-style: dashed;
}

.code-workbench {
  position: absolute;
  top: 43px;
  right: 17px;
  z-index: 2;
  width: 382px;
  height: 276px;
  overflow: hidden;
  border: 1px solid rgba(135, 221, 208, 0.5);
  border-radius: 7px;
  background: rgba(4, 28, 49, 0.96);
  box-shadow: 0 28px 55px rgba(1, 14, 29, 0.46), inset 0 1px rgba(255, 255, 255, 0.08);
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
}

.code-toolbar {
  display: grid;
  height: 42px;
  align-items: center;
  padding: 0 13px;
  border-bottom: 1px solid rgba(147, 214, 208, 0.14);
  background: #071f35;
  grid-template-columns: 68px minmax(0, 1fr) auto;
}

.code-window-dots {
  display: flex;
  gap: 6px;
}

.code-window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5fbcae;
}

.code-window-dots i:nth-child(2) {
  background: #e1b85a;
}

.code-window-dots i:nth-child(3) {
  background: #6696c2;
}

.code-file,
.code-run {
  display: flex;
  align-items: center;
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
}

.code-file {
  align-self: stretch;
  gap: 7px;
  padding: 0 12px;
  border-right: 1px solid rgba(147, 214, 208, 0.1);
  border-left: 1px solid rgba(147, 214, 208, 0.1);
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.035);
}

.code-file svg,
.code-run svg {
  width: 13px;
  height: 13px;
}

.code-file svg {
  color: #63c5b3;
}

.code-run {
  gap: 4px;
  padding-left: 11px;
  color: #77d1a3;
  font-weight: 700;
}

.code-main {
  display: grid;
  height: 191px;
  grid-template-columns: 43px minmax(0, 1fr);
}

.code-files {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding-top: 19px;
  border-right: 1px solid rgba(147, 214, 208, 0.1);
  color: rgba(167, 197, 208, 0.52);
  background: #061a2e;
}

.code-files svg {
  width: 16px;
  height: 16px;
}

.code-files svg:first-child {
  color: #71d1be;
}

.code-editor {
  margin: 0;
  padding: 18px 13px 10px 45px;
  overflow: hidden;
  color: rgba(140, 173, 190, 0.56);
  background: rgba(7, 34, 57, 0.75);
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
  line-height: 1;
}

.code-editor li {
  position: relative;
  height: 30px;
  padding-left: 7px;
}

.code-editor li::marker {
  font-size: 10px;
}

.code-editor code {
  display: block;
  width: 0;
  overflow: hidden;
  color: #c8d9e4;
  font-family: inherit;
  white-space: nowrap;
}

.code-editor li:nth-child(2) code,
.code-editor li:nth-child(3) code {
  margin-left: 14px;
}

.code-editor code b {
  color: #62cbb8;
  font-weight: 400;
}

.code-editor code span {
  color: #82b9e2;
}

.code-current-line i {
  position: absolute;
  top: -2px;
  left: calc(var(--code-width) + 9px);
  width: 2px;
  height: 15px;
  opacity: 0;
  background: #76d8c4;
}

.code-console {
  display: flex;
  height: 43px;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border-top: 1px solid rgba(147, 214, 208, 0.13);
  color: rgba(255, 255, 255, 0.7);
  background: #051a2d;
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
}

.code-console svg {
  width: 15px;
  height: 15px;
  color: #6fd4a8;
}

.code-console b {
  margin-left: auto;
  color: #76c4dd;
  font-weight: 400;
}

.code-deploy-badge,
.code-language-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  border: 1px solid rgba(172, 231, 215, 0.45);
  color: #ffffff;
  background: #0a4052;
  box-shadow: 0 14px 30px rgba(1, 16, 29, 0.38);
}

.code-deploy-badge {
  right: 0;
  bottom: 5px;
  width: 164px;
  height: 56px;
  align-items: center;
  gap: 11px;
  padding: 0 14px;
  border-radius: 6px;
}

.code-deploy-badge svg {
  width: 24px;
  height: 24px;
  color: #74d8b0;
}

.code-deploy-badge span,
.code-deploy-badge b,
.code-deploy-badge small {
  display: block;
}

.code-deploy-badge b {
  font-family: Arial, sans-serif;
  font-size: 10px;
}

.code-deploy-badge small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}

.code-language-badge {
  top: 92px;
  left: 0;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0b5170;
}

.code-language-badge svg {
  width: 23px;
  height: 23px;
}

.data-orbit {
  position: absolute;
  top: 33px;
  left: 38px;
  width: 286px;
  height: 286px;
}

.data-orbit-ring,
.data-orbit-point,
.data-core {
  position: absolute;
  border-radius: 50%;
}

.data-orbit-ring {
  inset: 0;
  border: 1px solid rgba(100, 210, 191, 0.38);
}

.data-orbit-ring::before,
.data-orbit-ring::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.data-orbit-ring::before {
  inset: 18px;
  border: 1px dashed rgba(122, 188, 208, 0.25);
}

.data-orbit-ring::after {
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #67d2ba;
  box-shadow: 0 0 14px rgba(103, 210, 186, 0.75);
}

.data-orbit-ring-inner {
  inset: 44px;
  border-style: dashed;
  border-color: rgba(102, 161, 201, 0.4);
}

.data-orbit-point {
  z-index: 2;
  width: 10px;
  height: 10px;
  border: 2px solid #d9fff5;
  background: #1a9e8b;
  box-shadow: 0 0 0 6px rgba(35, 177, 155, 0.12);
}

.data-orbit-point-one {
  top: 53px;
  right: 31px;
}

.data-orbit-point-two {
  bottom: 36px;
  left: 48px;
}

.data-orbit-point-three {
  top: 130px;
  left: -4px;
}

.data-core {
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  width: 116px;
  height: 116px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(143, 226, 210, 0.58);
  color: #ffffff;
  background: rgba(7, 54, 72, 0.95);
  box-shadow: 0 0 0 12px rgba(23, 143, 131, 0.09), 0 18px 36px rgba(1, 16, 31, 0.35);
  transform: translate(-50%, -50%);
}

.data-core svg {
  width: 25px;
  height: 25px;
  color: #74d9c2;
}

.data-core strong {
  margin-top: 4px;
  font-family: Arial, sans-serif;
  font-size: 19px;
}

.data-core span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
}

.data-stat,
.data-trend {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(157, 225, 215, 0.34);
  border-radius: 6px;
  background: rgba(5, 42, 62, 0.96);
  box-shadow: 0 16px 34px rgba(1, 16, 31, 0.34);
  backdrop-filter: blur(6px);
}

.data-stat-primary {
  top: 29px;
  right: 0;
  width: 146px;
  height: 101px;
  padding: 16px 17px;
}

.data-stat-primary > span,
.data-trend > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.data-stat-primary strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.data-stat-primary strong small {
  margin-left: 2px;
  color: #69d0b9;
  font-size: 13px;
}

.data-stat-primary > svg {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 20px;
  height: 20px;
  color: #6ad2a6;
}

.data-stat-stream {
  bottom: 26px;
  left: 0;
  display: flex;
  width: 154px;
  height: 61px;
  align-items: center;
  gap: 11px;
  padding: 0 14px;
}

.data-stat-stream > svg {
  width: 24px;
  height: 24px;
  color: #70c9e0;
}

.data-stat-stream span,
.data-stat-stream b,
.data-stat-stream small {
  display: block;
}

.data-stat-stream b {
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.data-stat-stream small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
}

.data-trend {
  right: 0;
  bottom: 24px;
  width: 198px;
  height: 110px;
  padding: 12px 14px;
}

.data-trend svg {
  width: 100%;
  height: 66px;
  overflow: visible;
}

.data-trend path {
  fill: none;
  stroke: #65d3b6;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  stroke-linecap: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.data-trend-dot {
  position: absolute;
  top: 31px;
  right: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e9fff9;
  box-shadow: 0 0 0 5px rgba(101, 211, 182, 0.2);
}

.team-collaboration {
  position: absolute;
  inset: 45px 8px 43px 8px;
}

.team-heading {
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 9px;
  border-bottom: 1px solid rgba(155, 224, 213, 0.22);
}

.team-heading span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}

.team-heading svg {
  width: 20px;
  height: 20px;
  color: #72d5bd;
}

.team-heading b {
  padding: 5px 8px;
  border: 1px solid rgba(110, 202, 183, 0.35);
  border-radius: 3px;
  color: #70cdb8;
  font-family: Arial, sans-serif;
  font-size: 9px;
}

.team-members {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  padding: 24px 17px 20px;
}

.team-members > span {
  display: flex;
  width: 62px;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  opacity: 0;
}

.team-members svg {
  width: 45px;
  height: 45px;
  padding: 10px;
  border: 1px solid rgba(157, 226, 215, 0.48);
  border-radius: 50%;
  color: #ffffff;
  background: #0d5770;
  box-shadow: 0 9px 18px rgba(1, 16, 31, 0.28);
}

.team-members > span:nth-child(2) svg {
  background: #287e72;
}

.team-members > span:nth-child(3) svg {
  background: #17659a;
}

.team-members > span:nth-child(4) svg {
  background: #3d7d5b;
}

.team-members b {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.team-pipeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 14px 4px 0;
}

.team-pipeline-line {
  position: absolute;
  top: 34px;
  right: 39px;
  left: 39px;
  height: 2px;
  overflow: hidden;
  background: rgba(147, 209, 206, 0.18);
}

.team-pipeline-line::after {
  display: block;
  width: 0;
  height: 100%;
  content: "";
  background: #62cdb5;
  box-shadow: 0 0 9px rgba(98, 205, 181, 0.55);
}

.team-step {
  position: relative;
  z-index: 2;
  display: flex;
  width: 68px;
  align-items: center;
  flex-direction: column;
  gap: 7px;
}

.team-step svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(157, 226, 215, 0.28);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.66);
  background: #092e49;
}

.team-step.is-complete svg,
.team-step.is-current svg {
  border-color: rgba(115, 216, 193, 0.65);
  color: #83dfca;
}

.team-step.is-current svg {
  background: #176d72;
}

.team-step b {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
}

.team-commit-card,
.team-delivery-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  border: 1px solid rgba(157, 225, 215, 0.4);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(5, 43, 63, 0.97);
  box-shadow: 0 15px 32px rgba(1, 16, 31, 0.36);
}

.team-commit-card {
  bottom: 5px;
  left: 0;
  width: 153px;
  height: 58px;
  gap: 10px;
  padding: 0 13px;
}

.team-commit-card svg {
  width: 25px;
  height: 25px;
  color: #70cce0;
}

.team-commit-card span,
.team-commit-card b,
.team-commit-card small {
  display: block;
}

.team-commit-card b {
  font-family: Arial, sans-serif;
  font-size: 11px;
}

.team-commit-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
}

.team-delivery-badge {
  top: 24px;
  right: 0;
  height: 38px;
  gap: 7px;
  padding: 0 12px;
  color: #82deb8;
  font-size: 10px;
  font-weight: 700;
}

.team-delivery-badge svg {
  width: 18px;
  height: 18px;
}

.carousel-item .hero-visual {
  opacity: 0;
}

.carousel-item.active .hero-visual {
  animation: hero-visual-in 0.82s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.carousel-item.active .code-editor code {
  animation: code-writing 0.62s steps(18, end) var(--code-delay) both;
}

.carousel-item.active .code-current-line i {
  animation: code-cursor 0.72s 3.55s step-end infinite;
}

.carousel-item.active .code-console {
  animation: visual-status-in 0.45s 3.35s both;
}

.carousel-item.active .code-deploy-badge,
.carousel-item.active .team-delivery-badge {
  animation: visual-float 2.8s ease-in-out infinite alternate;
}

.carousel-item.active .code-language-badge,
.carousel-item.active .data-stat-stream,
.carousel-item.active .team-commit-card {
  animation: visual-float 3.2s -1.1s ease-in-out infinite alternate;
}

.carousel-item.active .data-orbit-ring-outer {
  animation: data-orbit-spin 13s linear infinite;
}

.carousel-item.active .data-orbit-ring-inner {
  animation: data-orbit-spin 9s linear infinite reverse;
}

.carousel-item.active .data-orbit-point {
  animation: data-point-pulse 1.8s ease-in-out infinite alternate;
}

.carousel-item.active .data-orbit-point-two {
  animation-delay: -0.6s;
}

.carousel-item.active .data-orbit-point-three {
  animation-delay: -1.2s;
}

.carousel-item.active .data-core {
  animation: data-core-pulse 2.4s ease-in-out infinite alternate;
}

.carousel-item.active .data-trend path {
  animation: data-line-draw 1.7s 0.8s ease-out both;
}

.carousel-item.active .data-trend-dot {
  animation: data-point-pulse 1.2s 2.2s ease-in-out infinite alternate;
}

.carousel-item.active .team-members > span {
  animation: team-member-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.carousel-item.active .team-members > span:nth-child(1) {
  animation-delay: 0.55s;
}

.carousel-item.active .team-members > span:nth-child(2) {
  animation-delay: 0.7s;
}

.carousel-item.active .team-members > span:nth-child(3) {
  animation-delay: 0.85s;
}

.carousel-item.active .team-members > span:nth-child(4) {
  animation-delay: 1s;
}

.carousel-item.active .team-pipeline-line::after {
  animation: team-progress 2.2s 1.15s ease-out both;
}

.carousel-item.active .team-step.is-current svg {
  animation: team-current-step 1.5s 1.8s ease-in-out infinite alternate;
}

@keyframes hero-visual-in {
  from {
    opacity: 0;
    transform: translateX(35px) scale(var(--hero-visual-scale));
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(var(--hero-visual-scale));
  }
}

@keyframes code-writing {
  from {
    width: 0;
  }
  to {
    width: var(--code-width);
  }
}

@keyframes code-cursor {
  0%,
  48% {
    opacity: 1;
  }
  49%,
  100% {
    opacity: 0;
  }
}

@keyframes visual-status-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes visual-float {
  from {
    transform: translateY(-3px);
  }
  to {
    transform: translateY(5px);
  }
}

@keyframes data-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes data-point-pulse {
  from {
    opacity: 0.55;
    transform: scale(0.82);
  }
  to {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes data-core-pulse {
  from {
    box-shadow: 0 0 0 8px rgba(23, 143, 131, 0.07), 0 18px 36px rgba(1, 16, 31, 0.35);
    transform: translate(-50%, -50%) scale(0.98);
  }
  to {
    box-shadow: 0 0 0 16px rgba(23, 143, 131, 0.11), 0 18px 36px rgba(1, 16, 31, 0.35);
    transform: translate(-50%, -50%) scale(1.02);
  }
}

@keyframes data-line-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes team-member-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes team-progress {
  to {
    width: 68%;
  }
}

@keyframes team-current-step {
  from {
    box-shadow: 0 0 0 0 rgba(99, 210, 186, 0);
  }
  to {
    box-shadow: 0 0 0 6px rgba(99, 210, 186, 0.12);
  }
}

.hero-bottom-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan) 48%, var(--brand-green));
}

.service-overview {
  position: relative;
  z-index: 10;
  margin-top: -44px;
}

.service-overview-grid {
  display: grid;
  padding: 28px 20px;
  border: 1px solid rgba(11, 59, 103, 0.08);
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 27, 44, 0.1);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.overview-item {
  display: grid;
  min-width: 0;
  padding: 0 17px;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
}

.overview-item + .overview-item {
  border-left: 1px solid rgba(11, 59, 103, 0.08);
}

.overview-icon,
.business-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 97, 116, 0.22);
  border-radius: 7px;
  color: var(--brand-cyan);
  background: #f4faf9;
}

.overview-icon svg,
.business-icon svg {
  width: 21px;
  height: 21px;
}

.overview-icon,
.business-icon {
  width: 52px;
  height: 52px;
  border-color: rgba(21, 159, 143, 0.32);
  color: #159f8f;
  background: #edf9f7;
  box-shadow: inset 0 0 0 4px #ffffff, 0 7px 16px rgba(21, 159, 143, 0.16);
}

.overview-icon svg,
.business-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}

.overview-item h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.overview-item p {
  margin: 0;
  color: #607286;
  font-size: 12px;
  line-height: 1.7;
}

#software,
#smart-hardware,
#products,
#solutions,
#cases,
#news,
#about,
#contact {
  scroll-margin-top: 92px;
}

.service-detail-section {
  padding: 88px 0;
  border-bottom: 1px solid #e8eef1;
  background: #ffffff;
}

.service-detail-muted {
  background: #f6f9fa;
}

.service-detail-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 72px;
}

.service-detail-grid-reverse {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
}

.service-detail-media {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: 7px;
  background: #dce7ea;
}

.service-detail-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 60%, rgba(3, 25, 43, 0.35));
  pointer-events: none;
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-detail-media:hover img {
  transform: scale(1.035);
}

.service-number {
  position: absolute;
  right: 24px;
  bottom: 14px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  font-family: Arial, sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.section-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: #128c7e;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.section-label::before {
  width: 24px;
  height: 2px;
  margin-right: 9px;
  content: "";
  background: #20ad98;
}

.service-detail-content h2,
.about-content h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
}

.service-lead,
.about-lead {
  margin: 0;
  color: #5c6f82;
  font-size: 15px;
  line-height: 1.9;
}

.service-points {
  display: grid;
  margin: 30px 0 28px;
  border-top: 1px solid #dfe7ea;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-point {
  display: grid;
  min-width: 0;
  padding: 19px 12px 18px 0;
  border-bottom: 1px solid #dfe7ea;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 11px;
}

.service-point:nth-child(2n) {
  padding-right: 0;
  padding-left: 18px;
}

.service-point > svg {
  width: 23px;
  height: 23px;
  margin-top: 2px;
  color: #159f8f;
}

.service-point h3 {
  margin: 0 0 5px;
  color: #132a3d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.service-point p {
  margin: 0;
  color: #728192;
  font-size: 12px;
  line-height: 1.65;
}

.text-action {
  display: inline-flex;
  align-items: center;
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 700;
}

.text-action svg {
  width: 17px;
  height: 17px;
  margin-left: 9px;
  transition: transform 0.2s ease;
}

.text-action:hover {
  color: #128c7e;
}

.text-action:hover svg {
  transform: translateX(4px);
}

.section {
  padding: 76px 0;
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading .section-label {
  margin-bottom: 10px;
}

.section-heading h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.section-heading p {
  margin: 0;
  color: #627386;
  font-size: 15px;
  line-height: 1.8;
}

.solutions-section {
  padding: 56px 0 44px;
}

.solutions-section .section-heading {
  margin-bottom: 26px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  overflow: hidden;
  border: 1px solid #e8eef1;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(7, 27, 44, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.solution-card:hover {
  border-color: rgba(15, 97, 116, 0.24);
  box-shadow: 0 16px 34px rgba(7, 27, 44, 0.11);
  transform: translateY(-4px);
}

.solution-card img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.solution-card-body {
  padding: 15px 16px 17px;
}

.solution-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.solution-card h3 svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  padding: 3px;
  border: 1px solid rgba(15, 97, 116, 0.3);
  border-radius: 50%;
  color: var(--brand-cyan);
}

.solution-card p {
  min-height: 42px;
  margin: 0;
  color: #647588;
  font-size: 13px;
  line-height: 1.65;
}

.business-section {
  padding-top: 18px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 38px;
}

.business-item {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 14px;
}

.business-item h3 {
  margin: 0 0 5px;
  color: #12263a;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.business-item p {
  margin: 0;
  color: #718092;
  font-size: 13px;
  line-height: 1.6;
}

.cases-section {
  padding-top: 80px;
  padding-bottom: 84px;
  color: #ffffff;
  background: #061e34;
}

.section-heading-light h2 {
  color: #ffffff;
}

.section-heading-light p {
  color: rgba(255, 255, 255, 0.64);
}

.section-heading-light .section-label {
  color: #4fd5bd;
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(0, 0.76fr);
  grid-template-rows: repeat(2, 220px);
  gap: 18px;
}

.case-item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: #0a2b47;
}

.case-item-featured {
  grid-row: 1 / 3;
}

.case-item img,
.case-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.case-item img {
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.case-overlay {
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 22, 39, 0.04) 20%, rgba(4, 22, 39, 0.9) 100%);
}

.case-item-featured .case-overlay {
  background: linear-gradient(180deg, rgba(4, 22, 39, 0.05) 20%, rgba(4, 22, 39, 0.94) 100%);
}

.case-item:hover img {
  transform: scale(1.045);
}

.case-content {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
}

.case-item-featured .case-content {
  right: 34px;
  bottom: 32px;
  left: 34px;
}

.case-content > span {
  display: block;
  margin-bottom: 7px;
  color: #54d4bc;
  font-size: 11px;
  font-weight: 700;
}

.case-content h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}

.case-item-featured .case-content h3 {
  font-size: 28px;
}

.case-content p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.7;
}

.case-item-featured .case-content p {
  font-size: 14px;
}

.case-content ul {
  display: flex;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  gap: 22px;
}

.case-content li {
  position: relative;
  padding-left: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.case-content li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: #4fd5bd;
  transform: translateY(-50%);
}

.news-section {
  padding-top: 82px;
  padding-bottom: 84px;
  background: #ffffff;
}

.section-heading-inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
}

.section-heading-inline h2 {
  margin-bottom: 0;
}

.section-heading-inline > p {
  padding-bottom: 3px;
}

.news-list {
  border-top: 1px solid #dfe7ea;
}

.news-item {
  display: grid;
  min-width: 0;
  align-items: center;
  padding: 25px 14px 25px 0;
  border-bottom: 1px solid #dfe7ea;
  grid-template-columns: 62px 116px minmax(0, 1fr);
  gap: 14px;
  transition: background 0.2s ease, padding 0.2s ease;
}

.news-item:hover {
  padding-right: 20px;
  padding-left: 14px;
  background: #f6f9fa;
}

.news-index {
  color: #aab5bf;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.news-category {
  color: #128c7e;
  font-size: 12px;
  font-weight: 700;
}

.news-item h3 {
  margin: 0 0 6px;
  color: #132a3d;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.news-item p {
  margin: 0;
  color: #718092;
  font-size: 13px;
  line-height: 1.7;
}

.about-section {
  padding-top: 86px;
  padding-bottom: 86px;
  border-top: 1px solid #edf1f3;
  background: #f5f8f9;
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 74px;
}

.about-media {
  overflow: hidden;
  height: 390px;
  border-radius: 7px;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.about-values {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid #d8e2e6;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-values > div {
  min-width: 0;
  padding: 20px 18px 0 0;
}

.about-values > div + div {
  padding-left: 18px;
  border-left: 1px solid #d8e2e6;
}

.about-values span {
  display: block;
  margin-bottom: 10px;
  color: #159f8f;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.about-values h3 {
  margin: 0 0 6px;
  color: #132a3d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.about-values p {
  margin: 0;
  color: #748392;
  font-size: 12px;
  line-height: 1.65;
}

.capability-strip {
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(100deg, #0b3b67 0%, #0f6174 52%, #1d5f3a 100%);
}

.capability-grid {
  display: grid;
  min-height: 106px;
  align-items: center;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-item {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.capability-item + .capability-item::before {
  position: absolute;
  top: 11px;
  bottom: 11px;
  left: 0;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.2);
}

.capability-item strong {
  margin-bottom: 6px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.25;
}

.capability-item span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.ecosystem-section {
  background: #fbfcfd;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.ecosystem-item {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #e8eef1;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(7, 27, 44, 0.04);
}

.ecosystem-item strong {
  margin-bottom: 6px;
  color: var(--brand-blue);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
}

.ecosystem-item:nth-child(2n) strong {
  color: var(--brand-green);
}

.ecosystem-item span {
  color: #7b8896;
  font-size: 12px;
}

.contact-banner {
  color: #ffffff;
  background: linear-gradient(100deg, #1d5f3a 0%, #0f6174 50%, #0b3b67 100%);
}

.contact-banner-inner {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact-banner h2 {
  margin: 0 0 7px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.contact-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

.contact-action {
  display: inline-flex;
  min-width: 150px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-action svg {
  width: 17px;
  height: 17px;
  margin-left: 10px;
}

.contact-action:hover {
  color: var(--brand-blue);
  background: #ffffff;
  transform: translateY(-2px);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #061e34;
}

.footer-grid {
  display: grid;
  padding-top: 48px;
  padding-bottom: 42px;
  grid-template-columns: minmax(230px, 1.55fr) repeat(4, minmax(120px, 0.8fr));
  gap: 44px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-logo:hover {
  color: #ffffff;
}

.footer-logo img {
  width: 42px;
  height: 39px;
  margin-right: 10px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo strong {
  font-size: 20px;
  line-height: 1;
}

.footer-brand p {
  max-width: 280px;
  margin: 0;
  font-size: 12px;
  line-height: 2;
}

.footer-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-column a,
.footer-column span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-contact svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  text-align: center;
}

.footer-records {
  display: flex;
  min-height: 54px;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
}

.footer-records a {
  display: inline-flex;
  align-items: center;
  color: inherit;
  line-height: 20px;
}

.footer-records a:hover {
  color: #ffffff;
}

.footer-records img {
  width: 18px;
  height: 20px;
  margin-right: 5px;
  object-fit: contain;
}

.side-toolbar {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 30;
  width: 74px;
  transform: translateY(-50%);
}

.side-toolbar-main,
.side-tool-back {
  border: 1px solid rgba(11, 59, 103, 0.08);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(7, 27, 44, 0.1);
}

.side-tool {
  position: relative;
}

.side-tool {
  display: flex;
  width: 100%;
  height: 72px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  gap: 7px;
  font-family: inherit;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}

html[lang="en"] .side-tool span {
  max-width: 100%;
  font-size: 10px;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
}

.side-toolbar-main > .side-tool:first-child {
  border-radius: 6px 6px 0 0;
}

.side-toolbar-main > .side-tool:last-child {
  border-radius: 0 0 6px 6px;
}

.side-toolbar-main > * + *::before {
  position: absolute;
  top: 0;
  right: 10px;
  left: 10px;
  z-index: 1;
  height: 1px;
  content: "";
  background: rgba(11, 59, 103, 0.12);
}

.side-tool svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  color: var(--brand-blue);
}

.side-tool:hover,
.side-tool:focus-visible {
  color: var(--brand-blue);
  outline: 0;
  background: rgba(15, 97, 116, 0.07);
}

.side-tool-back {
  display: flex;
  width: 74px;
  height: 72px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 0;
  border: 1px solid rgba(11, 59, 103, 0.08);
  color: var(--brand-blue-dark);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
}

.side-tool-back svg {
  width: 30px;
  height: 30px;
}

.side-tool-back:hover,
.side-tool-back:focus-visible {
  color: #ffffff;
  outline: 0;
  background: var(--brand-blue);
}

.side-tool-back.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.consultation-modal {
  padding-right: 16px !important;
  padding-left: 16px !important;
}

.consultation-modal .modal-dialog {
  width: fit-content;
  max-width: min(430px, 100%);
  margin: 16px auto;
}

.consultation-modal .modal-content {
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: #f4f5f6;
  box-shadow: 0 18px 52px rgba(7, 27, 44, 0.28);
}

.consultation-modal img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  object-fit: contain;
}

.consultation-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--brand-blue-dark);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 14px rgba(7, 27, 44, 0.14);
  cursor: pointer;
}

.consultation-modal-close svg {
  width: 21px;
  height: 21px;
}

.consultation-modal-close:hover,
.consultation-modal-close:focus-visible {
  color: #ffffff;
  background: var(--brand-blue);
  outline: 0;
}

.phone-modal {
  padding-right: 16px !important;
  padding-left: 16px !important;
}

.phone-modal .modal-dialog {
  width: min(380px, 100%);
  margin: 16px auto;
}

.phone-modal .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 18px 52px rgba(7, 27, 44, 0.28);
}

.phone-modal-body {
  display: flex;
  align-items: center;
  padding: 42px 28px 30px;
  flex-direction: column;
  text-align: center;
}

.phone-modal-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand-blue);
}

.phone-modal-icon svg {
  width: 27px;
  height: 27px;
}

.phone-modal-body h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
}

.phone-modal-number {
  margin-bottom: 24px;
  color: var(--brand-blue-dark);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.phone-modal-number:hover,
.phone-modal-number:focus-visible {
  color: var(--brand-blue);
  outline: 0;
}

.phone-modal-action {
  display: inline-flex;
  min-width: 168px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #ffffff;
  background: var(--brand-blue);
  gap: 8px;
  font-weight: 600;
}

.phone-modal-action svg {
  width: 19px;
  height: 19px;
}

.phone-modal-action:hover,
.phone-modal-action:focus-visible {
  color: #ffffff;
  background: var(--brand-blue-dark);
  outline: 0;
}

.reveal-ready .reveal-on-scroll:not(.is-visible) {
  opacity: 0;
  transform: translateY(26px);
}

.reveal-ready .reveal-on-scroll.is-visible {
  animation: reveal-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: var(--reveal-delay, 0ms);
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1199.98px) {
  .site-header,
  .site-header .navbar {
    min-height: 74px;
    height: auto;
  }

  .brand {
    margin-right: 0;
  }

  .language-switcher {
    margin-right: 10px;
    margin-left: auto;
  }

  .navbar-collapse {
    position: absolute;
    top: 66px;
    right: 20px;
    left: 20px;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    padding: 10px 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    background: #062c54;
    box-shadow: 0 18px 35px rgba(16, 36, 62, 0.12);
  }

  .navbar-nav,
  .nav-item {
    display: block;
  }

  .nav-link {
    min-height: 43px;
    padding: 0 8px !important;
  }

  .nav-link::after {
    right: auto;
    bottom: 5px;
    left: 8px;
    width: 28px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 20px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-visual {
    --hero-visual-scale: 0.88;
    max-width: 440px;
  }

  .overview-item {
    padding-right: 12px;
    padding-left: 12px;
  }

  .service-detail-grid,
  .about-grid {
    gap: 46px;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (min-width: 1200px) {
  html[lang="en"] .brand {
    margin-right: 24px;
  }

  html[lang="en"] .nav-link {
    padding-right: 9px !important;
    padding-left: 9px !important;
    font-size: 14px;
  }

  html[lang="en"] .nav-link::after {
    right: 9px;
    left: 9px;
  }

  html[lang="en"] .language-switcher {
    margin-left: 10px;
  }
}

@media (max-width: 991.98px) {
  .top-section {
    min-height: auto;
  }

  .hero,
  .hero-inner,
  .hero .carousel-inner,
  .hero .carousel-item {
    min-height: 510px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
    gap: 5px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-visual {
    --hero-visual-scale: 0.73;
    margin-right: -55px;
  }

  .service-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }

  .overview-item {
    padding-right: 20px;
    padding-left: 20px;
  }

  .overview-item + .overview-item {
    border-left: 0;
  }

  .overview-item:nth-child(2n) {
    border-left: 1px solid rgba(11, 59, 103, 0.08);
  }

  .overview-item:nth-child(n + 3) {
    padding-top: 24px;
    border-top: 1px solid rgba(11, 59, 103, 0.08);
  }

  .overview-item:last-child {
    grid-column: 1 / -1;
  }

  .service-detail-grid {
    gap: 34px;
  }

  .service-detail-media,
  .service-detail-media img {
    min-height: 350px;
  }

  .service-points {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-point:nth-child(2n) {
    padding-left: 0;
  }

  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

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

  .ecosystem-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .about-media {
    height: 360px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .container-wide {
    padding-right: 18px;
    padding-left: 18px;
  }

  .side-toolbar {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    pointer-events: none;
    transform: none;
  }

  .side-toolbar-main {
    position: fixed;
    bottom: 16px;
    left: 50%;
    display: flex;
    width: min(216px, calc(100vw - 36px));
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .side-toolbar-main > .side-tool {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
  }

  .side-toolbar-main > .side-tool:first-child {
    border-radius: 6px 0 0 6px;
  }

  .side-toolbar-main > .side-tool:last-child {
    border-radius: 0 6px 6px 0;
  }

  .side-toolbar-main > * + *::before {
    top: 10px;
    right: auto;
    bottom: 10px;
    left: 0;
    width: 1px;
    height: auto;
  }

  .side-tool {
    height: 58px;
    padding: 6px 2px;
    gap: 5px;
    font-size: 11px;
  }

  html[lang="en"] .side-tool span {
    font-size: 9px;
    line-height: 1.1;
  }

  .side-tool svg {
    width: 21px;
    height: 21px;
  }

  .side-tool-back {
    position: fixed;
    top: calc(50% + 64px);
    right: 8px;
    width: 56px;
    height: 56px;
    margin-top: 0;
    pointer-events: none;
  }

  .side-tool-back.is-visible {
    pointer-events: auto;
  }

  .side-tool-back svg {
    width: 25px;
    height: 25px;
  }

  .site-header,
  .site-header .navbar {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 36px;
    margin-right: 8px;
  }

  .brand-name {
    font-size: 21px;
  }

  .language-switcher {
    height: 32px;
    margin-right: 8px;
  }

  .language-switcher-icon {
    display: none;
  }

  .language-option {
    min-width: 30px;
    height: 26px;
    line-height: 26px;
  }

  .navbar-collapse {
    top: 61px;
    right: 18px;
    left: 18px;
  }

  .hero,
  .hero-inner,
  .hero .carousel-inner,
  .hero .carousel-item {
    min-height: 500px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero-copy {
    width: 100%;
    padding: 42px 0 116px;
  }

  .hero-kicker {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .hero-title {
    margin-bottom: 18px;
    font-size: 31px;
    line-height: 1.38;
  }

  .hero-description {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-description br {
    display: none;
  }

  .hero-actions {
    max-width: 360px;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero-action {
    min-width: 0;
    height: 47px;
    flex: 1 1 0;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-action::after {
    margin-left: 8px;
  }

  .hero-action-secondary svg {
    margin-right: 6px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(3, 20, 38, 0.97) 0%, rgba(4, 30, 55, 0.88) 68%, rgba(4, 31, 57, 0.62) 100%),
      linear-gradient(180deg, rgba(5, 39, 69, 0.08), rgba(4, 24, 43, 0.42));
  }

  .hero-slide-software .hero-media {
    object-position: 64% center;
  }

  .hero-slide-data .hero-media {
    object-position: 62% center;
  }

  .hero-slide-team .hero-media {
    object-position: 56% center;
  }

  .hero-indicators.carousel-indicators {
    bottom: 48px;
    padding: 0 18px;
  }

  .hero-indicators button {
    width: auto;
    flex: 1 1 0;
    margin-right: 10px;
    font-size: 11px;
  }

  .hero-indicators button:last-child {
    margin-right: 0;
  }

  .indicator-number {
    display: none;
  }

  .hero-control {
    display: none;
  }

  .hero-visual {
    display: none;
  }

  .service-overview {
    margin-top: -28px;
  }

  .service-overview-grid {
    padding: 10px 18px;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0;
  }

  .overview-item,
  .overview-item:nth-child(n + 3) {
    padding: 18px 0;
    border-top: 0;
  }

  .overview-item + .overview-item,
  .overview-item:nth-child(2n) {
    border-top: 1px solid rgba(11, 59, 103, 0.08);
    border-left: 0;
  }

  .overview-item:last-child {
    grid-column: auto;
  }

  .section {
    padding: 60px 0;
  }

  .solutions-section {
    padding: 48px 0 38px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: 25px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .service-detail-section {
    padding: 64px 0;
  }

  .service-detail-grid,
  .service-detail-grid-reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .service-detail-grid-reverse .service-detail-media {
    order: -1;
  }

  .service-detail-media,
  .service-detail-media img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .service-detail-content h2,
  .about-content h2 {
    font-size: 27px;
  }

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

  .service-point:nth-child(2n) {
    padding-left: 16px;
  }

  .solution-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .solution-card p {
    min-height: 0;
  }

  .business-section {
    padding-top: 8px;
  }

  .business-grid {
    column-gap: 18px;
    row-gap: 28px;
  }

  .cases-section,
  .news-section,
  .about-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .case-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
  }

  .case-item,
  .case-item-featured {
    min-height: 300px;
    grid-row: auto;
  }

  .case-item-featured .case-content {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .case-item-featured .case-content h3 {
    font-size: 23px;
  }

  .section-heading-inline {
    display: block;
  }

  .section-heading-inline > p {
    margin-top: 10px;
  }

  .news-item {
    grid-template-columns: 42px 88px minmax(0, 1fr);
    gap: 10px;
  }

  .about-media {
    height: auto;
    aspect-ratio: 16 / 10;
  }

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

  .capability-item {
    min-height: 94px;
  }

  .capability-item + .capability-item::before {
    display: none;
  }

  .capability-item:nth-child(2n)::before {
    display: block;
  }

  .capability-item strong {
    font-size: 18px;
  }

  .ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ecosystem-item strong {
    font-size: 18px;
  }

  .contact-banner-inner {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 30px;
    padding-bottom: 30px;
    gap: 22px;
  }

  .contact-banner h2 {
    font-size: 22px;
  }

  .contact-action {
    width: 100%;
  }

  .footer-grid {
    padding-top: 40px;
    padding-bottom: 34px;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .footer-column:not(.footer-contact) {
    display: none;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .about-values {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-values > div,
  .about-values > div + div {
    padding: 17px 0;
    border-bottom: 1px solid #d8e2e6;
    border-left: 0;
  }
}

@media (max-width: 420px) {
  .hero-copy {
    padding-top: 38px;
  }

  .hero-title {
    font-size: 27px;
  }

  .overview-item {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .overview-icon,
  .business-icon {
    width: 48px;
    height: 48px;
  }

  .overview-icon svg,
  .business-icon svg {
    width: 26px;
    height: 26px;
  }

  .service-points {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-point:nth-child(2n) {
    padding-left: 0;
  }

  .service-number {
    right: 18px;
    bottom: 12px;
    font-size: 40px;
  }

  .business-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .case-item,
  .case-item-featured {
    min-height: 270px;
  }

  .case-content ul {
    gap: 12px;
  }

  .news-item {
    padding: 20px 0;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 8px 12px;
  }

  .news-index {
    display: none;
  }

  .news-category {
    align-self: start;
    padding-top: 3px;
  }

  .news-item h3 {
    font-size: 15px;
  }

  .news-item:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .ecosystem-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready .reveal-on-scroll,
  .carousel-item .hero-copy > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .carousel-item .hero-visual {
    opacity: 1 !important;
    transform: scale(var(--hero-visual-scale)) !important;
  }

  .code-editor code {
    width: var(--code-width) !important;
  }

  .code-current-line i {
    display: none;
  }

  .code-console,
  .team-members > span {
    opacity: 1 !important;
    transform: none !important;
  }

  .data-trend path {
    stroke-dashoffset: 0 !important;
  }

  .team-pipeline-line::after {
    width: 68% !important;
  }
}
