.site-home,
.site-page {
  --v105-navy: #071d3b;
  --v105-blue: #0b4ea2;
  --v105-blue-2: #1d6fc9;
  --v105-ink: #11243f;
  --v105-muted: #5c6e86;
  --v105-line: #d8e3f0;
  --v105-soft: #f3f7fb;
  --v105-card: #ffffff;
  --v105-radius: 8px;
  --v105-shadow: 0 18px 50px rgba(19, 52, 92, .1);
  background: #fff;
  color: var(--v105-ink);
}

.site-home .site-header:not(.is-scrolled):not(:focus-within) {
  background: linear-gradient(to bottom, rgba(6, 36, 78, .66), rgba(6, 36, 78, 0));
}

.site-home .site-header.is-scrolled,
.site-home .site-header:focus-within {
  border-color: rgba(216, 227, 240, .86);
  background: rgba(255, 255, 255, .92);
}

.site-home .site-header:not(.is-scrolled):not(:focus-within) .brandmark,
.site-home .site-header:not(.is-scrolled):not(:focus-within) .nav-links,
.site-home .site-header:not(.is-scrolled):not(:focus-within) .icon-btn,
.site-home .site-header:not(.is-scrolled):not(:focus-within) .menu-toggle {
  color: #fff;
}

.site-home .brand-logo-img {
  padding: 5px;
  border-color: rgba(125, 211, 252, .45);
  background: linear-gradient(180deg, rgba(248, 253, 255, .96), rgba(226, 245, 250, .9));
  box-shadow:
    0 10px 28px rgba(3, 18, 40, .28),
    0 0 20px rgba(34, 211, 238, .16);
}

.v105-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  border-bottom: 1px solid rgba(216, 227, 240, .9);
  background: rgba(255, 255, 255, .96);
  color: var(--v105-ink);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.v105-site-header.is-scrolled,
.v105-site-header:focus-within {
  border-color: rgba(216, 227, 240, .9);
  background: rgba(255, 255, 255, .96);
  color: var(--v105-ink);
}

.v105-site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

.v105-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: inherit;
}

.v105-brand-icon,
.v105-brand-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(120, 182, 255, .44);
  border-radius: var(--v105-radius);
}

.v105-brand-icon {
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--v105-blue), var(--v105-blue-2));
  box-shadow: 0 12px 28px rgba(7, 29, 59, .18);
  font-weight: 820;
}

.v105-brand-logo {
  object-fit: contain;
  padding: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.v105-brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.v105-brand-copy strong {
  max-width: 240px;
  overflow: hidden;
  font-family: "Bahnschrift", "Microsoft YaHei", "PingFang SC", var(--kh-font-display);
  font-size: 17px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v105-brand-copy span {
  color: currentColor;
  opacity: .72;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .14em;
}

.v105-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.v105-site-header.is-scrolled .v105-nav-links,
.v105-site-header:focus-within .v105-nav-links {
  border-color: transparent;
  background: transparent;
}

.v105-nav-links a,
.v105-nav-parent {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  border-radius: 0;
  padding: 0;
  color: inherit;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .02em;
  transition: color .2s ease;
}

.v105-nav-links a::after,
.v105-nav-parent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  background: currentColor;
  opacity: .88;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease, opacity .22s ease;
}

.v105-nav-links a:hover,
.v105-nav-parent:hover,
.v105-nav-item:hover > .v105-nav-parent,
.v105-nav-item:focus-within > .v105-nav-parent {
  color: var(--v105-blue);
  background: transparent;
}

.v105-nav-links a:hover::after,
.v105-nav-parent:hover::after,
.v105-nav-item:hover > .v105-nav-parent::after,
.v105-nav-item:focus-within > .v105-nav-parent::after {
  transform: scaleX(1);
}

.v105-nav-item {
  position: relative;
}

.v105-nav-item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 100%;
  min-width: 178px;
  height: 12px;
  transform: translateX(-50%);
}

.v105-nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 5;
  display: grid;
  min-width: 178px;
  padding: 8px;
  border: 1px solid var(--v105-line);
  border-radius: var(--v105-radius);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 22px 60px rgba(19, 52, 92, .18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}

.v105-nav-dropdown a {
  justify-content: flex-start;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--v105-muted);
  font-size: 18px;
  letter-spacing: 0;
}

.v105-nav-dropdown a::after {
  content: none;
}

.v105-nav-dropdown a:hover {
  color: #fff;
  background: var(--v105-blue);
}

.v105-nav-item:hover .v105-nav-dropdown,
.v105-nav-item:focus-within .v105-nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.v105-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.v105-icon-btn,
.v105-menu-toggle,
.v105-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--v105-line);
  border-radius: 999px;
  color: inherit;
  background: #fff;
}

.v105-site-header.is-scrolled .v105-icon-btn,
.v105-site-header.is-scrolled .v105-menu-toggle,
.v105-site-header:focus-within .v105-icon-btn,
.v105-site-header:focus-within .v105-menu-toggle {
  border-color: var(--v105-line);
  background: #fff;
}

.v105-icon-btn,
.v105-menu-toggle {
  width: 42px;
}

.v105-nav-cta {
  padding: 0 16px;
  border-color: rgba(120, 182, 255, .42);
  color: #fff;
  background: var(--v105-blue);
  box-shadow: 0 12px 28px rgba(11, 78, 162, .18);
  font-size: 14px;
  font-weight: 760;
}

.v105-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.v105-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

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

.v105-home {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 78, 162, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 78, 162, .028) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbff 0%, #fff 38%, #eef5fb 100%);
  background-size: 72px 72px, 72px 72px, auto;
  color: var(--v105-ink);
}

.v105-hero {
  position: relative;
  min-height: 720px;
  height: calc(100svh - 76px);
  margin-top: 76px;
  isolation: isolate;
  overflow: hidden;
  background: #dceeff;
}

.v105-hero::before {
  content: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.v105-hero::after {
  content: none;
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 122px;
  background: linear-gradient(180deg, rgba(28, 106, 190, 0), rgba(38, 126, 205, .3) 58%, rgba(224, 241, 255, .82) 100%);
  pointer-events: none;
}

.v105-hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.v105-hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}

.v105-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(8, 58, 125, .2);
  pointer-events: none;
}

.v105-hero-slide img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(1.04) contrast(1.01);
  transition: opacity .72s ease;
}

.v105-hero-slide.is-active img {
  opacity: 1;
}

.v105-hero-slide:nth-child(1) img {
  object-position: 62% center;
}

.v105-hero-slide:nth-child(2) img {
  object-position: center;
}

.v105-hero-slide:nth-child(3) img {
  object-position: 54% center;
}

.v105-hero-shell {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-items: center;
  pointer-events: none;
}

.v105-hero-copy {
  width: min(720px, 48vw);
  padding-top: 42px;
  color: #fff;
}

.v105-hero-kicker,
.v105-hero-copy h1,
.v105-hero-copy p {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  backface-visibility: hidden;
  transition: none;
  will-change: opacity, transform;
}

.v105-hero-slide.is-active .v105-hero-kicker,
.v105-hero-slide.is-active .v105-hero-copy h1 {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .72s ease, transform .72s cubic-bezier(.18, .78, .2, 1);
}

.v105-hero-slide.is-active .v105-hero-copy p {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .72s ease, transform .72s cubic-bezier(.18, .78, .2, 1);
}

.v105-hero-slide.is-active .v105-hero-kicker {
  transition-delay: 0ms;
}

.v105-hero-slide.is-active .v105-hero-copy h1 {
  transition-delay: 160ms;
}

.v105-hero-slide.is-active .v105-hero-copy p {
  transition-delay: 340ms;
}

.v105-hero-kicker {
  width: fit-content;
  max-width: 100%;
  border-left: 4px solid #78b6ff;
  padding-left: 14px;
  color: #bcd9ff;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.v105-hero-copy h1 {
  margin: 24px 0 0;
  color: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", var(--kh-font-display);
  font-size: clamp(42px, 4.8vw, 74px);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
  text-shadow:
    0 2px 8px rgba(0, 14, 38, .42),
    0 10px 22px rgba(0, 18, 44, .26);
}

.v105-hero-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(235, 244, 255, .9);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.78;
  overflow-wrap: anywhere;
  text-shadow: 0 8px 22px rgba(0, 18, 44, .28);
}

.v105-hero-bars {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 34px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.v105-hero-bars button {
  width: 46px;
  height: 4px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: rgba(255, 255, 255, .42);
  cursor: pointer;
}

.v105-hero-bars button.is-active {
  background: #fff;
}

.v105-section,
.v105-proof {
  padding: clamp(72px, 8vw, 118px) 0;
}

.v105-proof {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #071d3b;
}

.v105-proof::before,
.v105-proof::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.v105-proof::before {
  z-index: -2;
  background: url("../images/theme/proof-blue-map.png") center / cover no-repeat;
  transform: scale(1.02);
}

.v105-proof::after {
  z-index: -1;
  background: none;
}

.v105-proof .kh-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.v105-proof .v105-kicker {
  color: rgba(225, 241, 255, .82);
}

.v105-proof .v105-kicker::before {
  background: rgba(255, 255, 255, .72);
}

.v105-proof .v105-section-head h2 {
  color: #fff;
  text-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}

.v105-proof .v105-section-head-row {
  display: block;
  margin-bottom: 0;
}

.v105-section:nth-of-type(even) {
  background: var(--v105-soft);
}

.v105-section-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.v105-section-head-row {
  display: grid;
  grid-template-columns: minmax(0, .35fr) minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  max-width: none;
}

.v105-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--v105-blue);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.v105-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--v105-blue);
}

.v105-section-head h2,
.v105-sticky-copy h2,
.v105-closing-card h2 {
  margin: 14px 0 0;
  color: var(--v105-ink);
  font-family: "Microsoft YaHei", "PingFang SC", var(--kh-font-display);
  font-size: clamp(31px, 3.6vw, 54px);
  font-weight: 720;
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.v105-section-head p,
.v105-sticky-copy p,
.v105-service-grid p,
.v105-scenario-list span,
.v105-practice-grid p,
.v105-closing-card p {
  color: var(--v105-muted);
  font-size: 16px;
  line-height: 1.74;
  overflow-wrap: anywhere;
}

.v105-section-head p,
.v105-sticky-copy p {
  max-width: 720px;
  margin: 18px 0 0;
}

.v105-proof-grid,
.v105-service-grid,
.v105-industry-grid,
.v105-practice-grid {
  display: grid;
  gap: 16px;
}

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

.v105-proof-grid article,
.v105-service-grid article,
.v105-scenario-list article,
.v105-industry-grid article,
.v105-practice-grid article,
.v105-closing-card {
  border: 1px solid var(--v105-line);
  border-radius: var(--v105-radius);
  background: var(--v105-card);
  box-shadow: var(--v105-shadow);
}

.v105-proof-grid article,
.v105-industry-grid article {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: clamp(18px, 1.8vw, 24px);
  border: 1px solid rgba(210, 232, 255, .2);
  border-top: 1px solid rgba(255, 255, 255, .38);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .025)),
    linear-gradient(135deg, rgba(120, 182, 255, .11), rgba(255, 255, 255, 0) 58%);
  box-shadow: 0 22px 64px rgba(0, 8, 24, .18);
  backdrop-filter: blur(5px);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}

.v105-proof-grid article:hover,
.v105-industry-grid article:hover {
  border-color: rgba(255, 255, 255, .5);
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, .12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04)),
    linear-gradient(135deg, rgba(120, 182, 255, .16), rgba(255, 255, 255, 0) 58%);
  box-shadow: 0 26px 72px rgba(0, 8, 24, .24);
  transform: translateY(-3px);
}

.v105-proof-flow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.v105-proof-grid article::before,
.v105-industry-grid article::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--v105-radius) - 8px);
  border: 1px solid rgba(255, 255, 255, .06);
  pointer-events: none;
}

.v105-proof-grid .v105-metric-icon {
  display: none;
}

.v105-proof-flow::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -46px;
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(11, 78, 162, .1) 12%, var(--v105-blue) 58%, #78b6ff);
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(29, 111, 201, .28));
}

.v105-proof-flow::after {
  content: "";
  position: absolute;
  top: -46px;
  right: -1px;
  width: 2px;
  height: 46px;
  background: linear-gradient(180deg, transparent, rgba(11, 78, 162, .1) 12%, var(--v105-blue) 58%, #78b6ff);
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(29, 111, 201, .28));
}

.v105-proof-grid .v105-proof-flow::before,
.v105-industry-grid .v105-proof-flow::before {
  width: 76px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(120, 214, 255, .72) 36%, #fff 68%, rgba(196, 246, 255, 1) 100%);
  opacity: 0;
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, .78))
    drop-shadow(0 0 22px rgba(120, 214, 255, .62));
}

.v105-proof-grid .v105-proof-flow::after,
.v105-industry-grid .v105-proof-flow::after {
  width: 3px;
  height: 76px;
  background: linear-gradient(180deg, transparent 0%, rgba(120, 214, 255, .72) 36%, #fff 68%, rgba(196, 246, 255, 1) 100%);
  opacity: 0;
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, .72))
    drop-shadow(0 0 22px rgba(120, 214, 255, .56));
}

.v105-proof-flow-alt::before {
  top: auto;
  right: -46px;
  bottom: -1px;
  left: auto;
  background: linear-gradient(270deg, transparent, rgba(11, 78, 162, .1) 12%, var(--v105-blue) 58%, #78b6ff);
}

.v105-proof-flow-alt::after {
  top: auto;
  right: auto;
  bottom: -46px;
  left: -1px;
  background: linear-gradient(0deg, transparent, rgba(11, 78, 162, .1) 12%, var(--v105-blue) 58%, #78b6ff);
}

.v105-proof-grid .v105-proof-flow-alt::before,
.v105-industry-grid .v105-proof-flow-alt::before {
  width: 76px;
  height: 3px;
  background: linear-gradient(270deg, transparent 0%, rgba(120, 214, 255, .68) 36%, #fff 68%, rgba(196, 246, 255, .96) 100%);
}

.v105-proof-grid .v105-proof-flow-alt::after,
.v105-industry-grid .v105-proof-flow-alt::after {
  width: 3px;
  height: 76px;
  background: linear-gradient(0deg, transparent 0%, rgba(120, 214, 255, .68) 36%, #fff 68%, rgba(196, 246, 255, .96) 100%);
}

.v105-proof-grid article:hover .v105-proof-flow::before,
.v105-industry-grid article:hover .v105-proof-flow::before {
  opacity: 1;
  animation: v105-proof-flow-x 2.8s linear infinite;
}

.v105-proof-grid article:hover .v105-proof-flow::after,
.v105-industry-grid article:hover .v105-proof-flow::after {
  opacity: 1;
  animation: v105-proof-flow-y 2.8s linear infinite;
}

.v105-proof-grid article:hover .v105-proof-flow-alt::before,
.v105-industry-grid article:hover .v105-proof-flow-alt::before {
  animation-name: v105-proof-flow-x-reverse;
}

.v105-proof-grid article:hover .v105-proof-flow-alt::after,
.v105-industry-grid article:hover .v105-proof-flow-alt::after {
  animation-name: v105-proof-flow-y-reverse;
}

.v105-proof-grid strong,
.v105-industry-grid strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--v105-blue);
  font-family: "Bahnschrift", "Microsoft YaHei", sans-serif;
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1;
}

.v105-proof-grid strong {
  color: #fff;
  font-size: clamp(42px, 3.7vw, 58px);
  text-shadow: 0 0 22px rgba(120, 214, 255, .26);
}

.v105-industry-grid strong {
  color: #fff;
  font-size: clamp(38px, 3.2vw, 52px);
  text-shadow: 0 0 20px rgba(120, 214, 255, .22);
}

.v105-proof-grid span,
.v105-industry-grid span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 12px;
  color: var(--v105-muted);
  font-weight: 680;
}

.v105-proof-grid span {
  color: rgba(225, 241, 255, .76);
  margin-top: 10px;
  text-align: center;
}

.v105-industry-grid span {
  color: rgba(225, 241, 255, .76);
  margin-top: 10px;
  text-align: center;
}

.v105-scenario-icon,
.v105-practice-icon {
  font-style: normal;
  line-height: 1;
}

@keyframes v105-proof-flow-x {
  from { left: -46px; }
  to { left: calc(100% + 46px); }
}

@keyframes v105-proof-flow-y {
  from { top: -46px; }
  to { top: calc(100% + 46px); }
}

@keyframes v105-proof-flow-x-reverse {
  from { right: -46px; }
  to { right: calc(100% + 46px); }
}

@keyframes v105-proof-flow-y-reverse {
  from { bottom: -46px; }
  to { bottom: calc(100% + 46px); }
}

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

.v105-service-grid article {
  position: relative;
  isolation: isolate;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 251, 255, .92)),
    #fff;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}

.v105-service-grid article::before,
.v105-scenario-list article::before,
.v105-practice-grid article::before,
.v105-closing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 78, 162, .06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 78, 162, .05) 1px, transparent 1px),
    radial-gradient(circle at 86% 14%, rgba(29, 111, 201, .12), transparent 30%);
  background-size: 42px 42px, 42px 42px, auto;
  opacity: .46;
  pointer-events: none;
}

.v105-service-grid article::after,
.v105-scenario-list article::after,
.v105-practice-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--v105-blue), var(--v105-blue-2));
}

.v105-service-grid article span,
.v105-practice-grid article span {
  position: relative;
  z-index: 1;
  color: var(--v105-blue);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.v105-service-grid h3,
.v105-practice-grid h3 {
  position: relative;
  z-index: 1;
  margin: 24px 0 12px;
  color: var(--v105-ink);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.18;
}

.v105-service-grid p,
.v105-practice-grid p,
.v105-scenario-list span {
  position: relative;
  z-index: 1;
}

.v105-service-card {
  display: grid;
  align-content: start;
}

.v105-service-card::before {
  z-index: 1;
  transition: opacity .42s ease, background .42s ease;
}

.v105-service-card::after {
  inset: 0;
  z-index: 0;
  height: auto;
  background-image: var(--v105-service-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity .48s cubic-bezier(.2, .72, .18, 1),
    transform .72s cubic-bezier(.2, .72, .18, 1);
}

.v105-service-card-cloud { --v105-service-bg: url("../images/theme/services/cloud-infrastructure.png"); }
.v105-service-card-smart-system { --v105-service-bg: url("../images/theme/services/smart-system.png"); }
.v105-service-card-security { --v105-service-bg: url("../images/theme/services/security.png"); }
.v105-service-card-ai { --v105-service-bg: url("../images/theme/services/ai-application.png"); }
.v105-service-card-education { --v105-service-bg: url("../images/theme/services/smart-education.png"); }
.v105-service-card-operations { --v105-service-bg: url("../images/theme/services/operations.png"); }

.v105-service-card > * {
  position: relative;
  z-index: 2;
}

.v105-service-card span {
  justify-self: start;
  display: grid;
  place-items: center;
  width: 58px;
  height: 42px;
  border: 1px solid rgba(11, 78, 162, .22);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(231, 240, 250, .82));
  box-shadow: inset 0 0 18px rgba(29, 111, 201, .08);
  transition:
    border-color .32s ease,
    background .32s ease,
    box-shadow .32s ease,
    color .32s ease,
    transform .42s cubic-bezier(.2, .72, .18, 1);
}

.v105-service-card h3,
.v105-service-card p {
  transition: color .32s ease, transform .42s cubic-bezier(.2, .72, .18, 1);
}

.v105-service-grid .v105-service-card::before {
  z-index: 1;
  transition: opacity .42s ease, background .42s ease;
}

.v105-service-grid .v105-service-card::after {
  inset: 0;
  z-index: 0;
  height: auto;
  background-image: var(--v105-service-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity .48s cubic-bezier(.2, .72, .18, 1),
    transform .72s cubic-bezier(.2, .72, .18, 1);
}

.v105-service-card:hover,
.v105-service-card:focus-within {
  border-color: rgba(255, 255, 255, .34);
  transform: translateY(-2px);
  box-shadow: 0 30px 82px rgba(7, 29, 59, .26);
}

.v105-service-grid .v105-service-card:hover::before,
.v105-service-grid .v105-service-card:focus-within::before {
  background:
    linear-gradient(180deg, rgba(5, 17, 34, .42), rgba(5, 17, 34, .58)),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  opacity: 1;
}

.v105-service-grid .v105-service-card:hover::after,
.v105-service-grid .v105-service-card:focus-within::after {
  opacity: 1;
  transform: scale(1);
}

.v105-service-card:hover span,
.v105-service-card:focus-within span {
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .12);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, .1),
    0 0 24px rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .96);
  transform: translateY(-2px);
}

.v105-service-card:hover h3,
.v105-service-card:focus-within h3 {
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .42);
  transform: none;
}

.v105-service-card:hover p,
.v105-service-card:focus-within p {
  color: rgba(255, 255, 255, .82);
  text-shadow: 0 1px 16px rgba(0, 0, 0, .38);
  transform: none;
}

.v105-split {
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.v105-scenario-layout {
  display: grid;
  gap: clamp(28px, 4.5vw, 46px);
}

.v105-scenario-layout .v105-sticky-copy {
  max-width: 980px;
  position: static;
}

.v105-scenario-layout .v105-sticky-copy h2 {
  max-width: 860px;
}

.v105-scenario-layout .v105-sticky-copy p {
  max-width: 780px;
}

.v105-sticky-copy {
  position: sticky;
  top: 108px;
}

.v105-scenario-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.v105-scenario-list article {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 162px;
  padding: 24px;
  overflow: hidden;
}

.v105-scenario-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(11, 78, 162, .18);
  border-radius: 8px;
  color: var(--v105-blue);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(231, 240, 250, .78)),
    #fff;
  box-shadow: inset 0 0 18px rgba(29, 111, 201, .08);
  font-size: 25px;
  transition: color .24s ease, background .24s ease, transform .24s ease;
}

.v105-scenario-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.v105-scenario-list strong {
  color: var(--v105-ink);
  font-size: 20px;
  line-height: 1.28;
}

.v105-scenario-list article:hover .v105-scenario-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--v105-blue), var(--v105-blue-2));
  transform: translateY(-2px);
}

.v105-industries {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #071d3b;
}

.v105-industries::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../images/theme/proof-blue-map.png") center / cover no-repeat;
  transform: scale(1.02);
  pointer-events: none;
}

.v105-industries .kh-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.v105-industries .v105-kicker {
  color: rgba(225, 241, 255, .82);
}

.v105-industries .v105-kicker::before {
  background: rgba(255, 255, 255, .72);
}

.v105-industries .v105-section-head h2 {
  color: #fff;
  text-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}

.v105-industries .v105-section-head {
  margin-bottom: 0;
}

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

.v105-industry-grid article {
  position: relative;
  overflow: hidden;
}

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

.v105-practice-grid article {
  position: relative;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
}

.v105-practice-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-right: 8px;
  border: 1px solid rgba(11, 78, 162, .16);
  border-radius: 6px;
  color: var(--v105-blue);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(231, 240, 250, .78)),
    linear-gradient(90deg, rgba(11, 78, 162, .06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 78, 162, .05) 1px, transparent 1px);
  background-size: auto, 18px 18px, 18px 18px;
  box-shadow: inset 0 0 18px rgba(29, 111, 201, .08);
  font-size: 15px;
  vertical-align: middle;
  transition: color .24s ease, background .24s ease, transform .24s ease;
}

.v105-practice-grid article:hover .v105-practice-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--v105-blue), var(--v105-blue-2));
    transform: translateY(-1px);
}

.v105-closing {
  padding: clamp(44px, 5.4vw, 66px) 0;
  background:
    linear-gradient(90deg, rgba(11, 78, 162, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 78, 162, .08) 1px, transparent 1px),
    var(--v105-soft);
  background-size: 46px 46px;
}

.v105-closing-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3.8vw, 42px);
}

.v105-closing-card h2 {
  max-width: 980px;
  font-size: clamp(30px, 3.2vw, 46px);
}

.v105-closing-card > * {
  position: relative;
  z-index: 1;
}

.v105-closing-card ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 18px;
  padding: 0;
  list-style: none;
}

.v105-closing-card li {
  position: relative;
  border: 1px solid var(--v105-line);
  border-radius: var(--v105-radius);
  padding: 13px 12px;
  color: var(--v105-blue);
  background: #f8fbff;
  font-weight: 720;
  text-align: center;
}

.v105-closing-card p {
  max-width: 980px;
  margin-top: 0;
}

.v105-closing-card li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--v105-blue);
  border-right: 2px solid var(--v105-blue);
  transform: translateY(-50%) rotate(45deg);
}

.v105-home [data-v105-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity .58s ease, transform .58s ease;
}

.v105-home.is-motion-ready [data-v105-reveal] {
  --v105-delay: 0ms;
  opacity: 0;
  transform: translateY(38px) scale(.985);
  transition:
    opacity .7s cubic-bezier(.2, .72, .18, 1) var(--v105-delay),
    transform .7s cubic-bezier(.2, .72, .18, 1) var(--v105-delay),
    border-color .24s ease,
    box-shadow .24s ease;
}

.v105-home [data-v105-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.site-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background:
    linear-gradient(90deg, rgba(216, 227, 240, .38) 1px, transparent 1px),
    linear-gradient(180deg, rgba(216, 227, 240, .3) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbff 0%, #fff 44%, var(--v105-soft) 100%);
  background-size: 72px 72px, 72px 72px, auto;
  color: var(--v105-ink);
}

.site-page .site-header:not(.is-scrolled):not(:focus-within) {
  background: linear-gradient(180deg, rgba(7, 29, 59, .46), rgba(7, 29, 59, 0));
}

.site-page .site-header.is-scrolled,
.site-page .site-header:focus-within {
  border-color: rgba(216, 227, 240, .92);
  background: rgba(255, 255, 255, .9);
}

.site-page .nav-links,
.site-home .nav-links {
  position: relative;
  gap: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.site-page .site-header.is-scrolled .nav-links,
.site-page .site-header:focus-within .nav-links,
.site-home .site-header.is-scrolled .nav-links,
.site-home .site-header:focus-within .nav-links {
  background: transparent;
  border-color: transparent;
}

.site-page .nav-links a,
.site-page .nav-parent,
.site-home .nav-links a,
.site-home .nav-parent {
  position: relative;
  min-height: 72px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-weight: 650;
}

.site-page .nav-links a::after,
.site-page .nav-parent::after,
.site-home .nav-links a::after,
.site-home .nav-parent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  opacity: .86;
  transition: transform .22s ease, opacity .22s ease;
}

.site-page .nav-links a:hover,
.site-page .nav-parent:hover,
.site-page .nav-item:hover > .nav-parent,
.site-page .nav-item:focus-within > .nav-parent,
.site-home .nav-links a:hover,
.site-home .nav-parent:hover,
.site-home .nav-item:hover > .nav-parent,
.site-home .nav-item:focus-within > .nav-parent {
  color: #fff;
  background: transparent;
}

.site-page .site-header.is-scrolled .nav-links a:hover,
.site-page .site-header.is-scrolled .nav-parent:hover,
.site-page .site-header.is-scrolled .nav-item:hover > .nav-parent,
.site-page .site-header.is-scrolled .nav-item:focus-within > .nav-parent,
.site-page .site-header:focus-within .nav-links a:hover,
.site-page .site-header:focus-within .nav-parent:hover,
.site-page .site-header:focus-within .nav-item:hover > .nav-parent,
.site-home .site-header.is-scrolled .nav-links a:hover,
.site-home .site-header.is-scrolled .nav-parent:hover,
.site-home .site-header.is-scrolled .nav-item:hover > .nav-parent,
.site-home .site-header.is-scrolled .nav-item:focus-within > .nav-parent,
.site-home .site-header:focus-within .nav-links a:hover,
.site-home .site-header:focus-within .nav-parent:hover,
.site-home .site-header:focus-within .nav-item:hover > .nav-parent {
  color: var(--v105-blue);
}

.site-page .nav-links a:hover::after,
.site-page .nav-parent:hover::after,
.site-page .nav-item:hover > .nav-parent::after,
.site-page .nav-item:focus-within > .nav-parent::after,
.site-home .nav-links a:hover::after,
.site-home .nav-parent:hover::after,
.site-home .nav-item:hover > .nav-parent::after,
.site-home .nav-item:focus-within > .nav-parent::after {
  transform: scaleX(1);
}

.site-page main {
  position: relative;
  flex: 1 0 auto;
  overflow: hidden;
  color: var(--v105-ink);
}

.site-page main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 78, 162, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 78, 162, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.site-page .kh-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 142px 0 70px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(7, 29, 59, .94) 0%, rgba(11, 78, 162, .92) 52%, rgba(29, 111, 201, .84) 100%),
    var(--v105-navy);
  border-bottom: 1px solid rgba(120, 182, 255, .26);
}

.site-page .kh-page-hero::before,
.site-page .kh-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-page .kh-page-hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, black 0%, rgba(0, 0, 0, .7) 48%, transparent 86%);
}

.site-page .kh-page-hero::after {
  z-index: -1;
  background:
    linear-gradient(135deg, transparent 0 52%, rgba(255, 255, 255, .08) 52% 63%, transparent 63%),
    linear-gradient(180deg, transparent 42%, rgba(7, 29, 59, .22));
}

.site-page .kh-page-hero .kh-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
  border-left: 4px solid #78b6ff;
  padding-left: 14px;
  color: #c9e2ff;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .16em;
  line-height: 1.25;
}

.site-page .kh-page-hero .kh-title {
  max-width: 920px;
  color: rgba(255, 255, 255, .97);
  font-family: "Microsoft YaHei", "PingFang SC", var(--kh-font-display);
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.site-page .kh-page-hero .kh-note {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(226, 239, 255, .82);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.78;
}

.site-page .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.site-page .post-meta span {
  display: none;
}

.site-page .post-meta a,
.site-page .post-meta time {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(201, 226, 255, .28);
  border-radius: 999px;
  padding: 7px 12px;
  color: #d9ebff;
  background: rgba(255, 255, 255, .08);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .04em;
}

.site-page .post-meta a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .14);
}

.site-page .kh-content-layout {
  gap: clamp(24px, 4vw, 42px);
  padding-block: 54px 96px;
}

.site-page .kh-content-panel,
.site-page .post-content,
.site-page .category-panel,
.site-page .category-tree {
  min-width: 0;
}

.site-page .kh-content-panel,
.site-page .category-panel,
.site-page .post-content {
  border: 1px solid var(--v105-line);
  border-radius: var(--v105-radius);
  background:
    linear-gradient(180deg, #fff, rgba(255, 255, 255, .92)),
    var(--v105-card);
  box-shadow: var(--v105-shadow);
}

.site-page .kh-content-panel {
  padding: clamp(24px, 4vw, 44px);
}

.site-page .kh-content-panel .post-content {
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.site-page .post-content {
  max-width: 900px;
  padding: clamp(24px, 4vw, 44px);
  color: color-mix(in oklch, var(--v105-ink) 72%, var(--v105-muted));
  font-size: 17px;
  line-height: 1.92;
}

.site-page .post-content h2,
.site-page .post-content h3,
.site-page .post-content h4 {
  color: var(--v105-ink);
  font-family: "Microsoft YaHei", "PingFang SC", var(--kh-font-display);
  letter-spacing: 0;
}

.site-page .post-content h2 {
  margin-top: 42px;
  padding-left: 14px;
  border-left: 4px solid var(--v105-blue);
  font-size: clamp(25px, 3vw, 34px);
}

.site-page .post-content h3 {
  color: var(--v105-blue);
}

.site-page .post-content a {
  color: var(--v105-blue);
  border-bottom-color: rgba(11, 78, 162, .32);
}

.site-page .post-content blockquote {
  border-left-color: var(--v105-blue);
  background: rgba(11, 78, 162, .06);
  color: var(--v105-muted);
}

.site-page .post-content img {
  border: 1px solid var(--v105-line);
  border-radius: var(--v105-radius);
}

.site-page .post-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--v105-radius);
}

.site-page .post-content th,
.site-page .post-content td {
  border: 1px solid var(--v105-line);
  padding: 12px 14px;
}

.site-page .post-content th {
  color: var(--v105-ink);
  background: rgba(11, 78, 162, .07);
}

.site-page .post-content pre,
.site-page .post-content code {
  border-radius: 6px;
  color: var(--v105-ink);
  background: rgba(7, 29, 59, .06);
}

.site-page .sidebar-card,
.site-page .sidebar-drawer-panel {
  border-color: var(--v105-line);
  border-radius: var(--v105-radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--v105-shadow);
  color: var(--v105-ink);
}

.site-page .sidebar-title {
  border-bottom-color: var(--v105-line);
  color: var(--v105-ink);
  font-family: "Microsoft YaHei", "PingFang SC", var(--kh-font-display);
}

.site-page .sidebar-link {
  color: var(--v105-muted);
}

.site-page .sidebar-link:hover,
.site-page .sidebar-link.is-active {
  color: #fff;
  background: var(--v105-blue);
}

.site-page .sidebar-drawer-trigger {
  background: var(--v105-blue);
  color: #fff;
}

.site-page .sidebar-drawer-overlay {
  background: rgba(7, 29, 59, .56);
}

.site-page .category-panel {
  padding: clamp(20px, 3vw, 32px);
}

.site-page .post-list,
.site-page .category-tree {
  gap: 12px;
}

.site-page .post-list-item,
.site-page .category-tree li {
  overflow: hidden;
  border-color: var(--v105-line);
  border-radius: var(--v105-radius);
  background:
    linear-gradient(180deg, #fff, rgba(243, 247, 251, .78)),
    var(--v105-card);
  box-shadow: 0 10px 30px rgba(19, 52, 92, .06);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.site-page .post-list-item:hover,
.site-page .category-tree li:hover {
  border-color: rgba(11, 78, 162, .34);
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(19, 52, 92, .12);
}

.site-page .post-list-link,
.site-page .category-tree a {
  color: var(--v105-ink);
}

.site-page .post-list-link:hover h2,
.site-page .category-tree a:hover {
  color: var(--v105-blue);
}

.site-page .post-list-title {
  color: var(--v105-ink);
  font-family: "Microsoft YaHei", "PingFang SC", var(--kh-font-display);
}

.site-page .post-list-excerpt {
  color: var(--v105-muted);
}

.site-page .post-list-time {
  color: var(--v105-blue);
}

.site-page .category-tree ul {
  border-left-color: var(--v105-line);
}

.site-page .empty-state {
  border: 1px solid var(--v105-line);
  border-radius: var(--v105-radius);
  color: var(--v105-muted);
  background: #fff;
  box-shadow: var(--v105-shadow);
}

.site-page .pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.site-page .pagination a,
.site-page .pagination span {
  border: 1px solid var(--v105-line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--v105-muted);
  background: #fff;
}

.site-page .pagination a:hover {
  color: #fff;
  border-color: var(--v105-blue);
  background: var(--v105-blue);
}

.site-page .contact-footer {
  border-top: 1px solid rgba(120, 182, 255, .18);
  background:
    linear-gradient(90deg, rgba(120, 182, 255, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(120, 182, 255, .06) 1px, transparent 1px),
    linear-gradient(135deg, var(--v105-navy), #0b326c);
  background-size: 56px 56px, 56px 56px, auto;
}

.v105-site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(216, 227, 240, .82);
  color: var(--v105-muted);
  background:
    linear-gradient(90deg, rgba(11, 78, 162, .05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 78, 162, .04) 1px, transparent 1px),
    linear-gradient(180deg, #fff, #eef5fb);
  background-size: 54px 54px, 54px 54px, auto;
  padding: 18px 0;
}

.v105-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
}

.v105-service-grid article:nth-child(2),
.v105-scenario-list article:nth-child(2),
.v105-industry-grid article:nth-child(2),
.v105-practice-grid article:nth-child(2) { --v105-delay: 80ms; }
.v105-service-grid article:nth-child(3),
.v105-scenario-list article:nth-child(3),
.v105-industry-grid article:nth-child(3),
.v105-practice-grid article:nth-child(3) { --v105-delay: 160ms; }
.v105-service-grid article:nth-child(4),
.v105-scenario-list article:nth-child(4),
.v105-industry-grid article:nth-child(4),
.v105-practice-grid article:nth-child(4) { --v105-delay: 240ms; }
.v105-service-grid article:nth-child(5),
.v105-scenario-list article:nth-child(5),
.v105-industry-grid article:nth-child(5) { --v105-delay: 320ms; }
.v105-service-grid article:nth-child(6),
.v105-scenario-list article:nth-child(6),
.v105-industry-grid article:nth-child(6) { --v105-delay: 400ms; }
.v105-industry-grid article:nth-child(7) { --v105-delay: 480ms; }
.v105-industry-grid article:nth-child(8) { --v105-delay: 560ms; }

@media (hover: hover) {
  .v105-service-grid article,
  .v105-scenario-list article,
  .v105-industry-grid article,
  .v105-practice-grid article {
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }

  .v105-service-grid article:hover,
  .v105-scenario-list article:hover,
  .v105-industry-grid article:hover,
  .v105-practice-grid article:hover {
    border-color: rgba(11, 78, 162, .34);
    box-shadow: 0 24px 64px rgba(19, 52, 92, .15);
    transform: translateY(-4px);
  }
}

@media (max-width: 1120px) {
  .v105-scenario-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .v105-site-nav {
    min-height: 68px;
  }

  .v105-nav-links {
    position: fixed;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    align-items: stretch;
    border-color: var(--v105-line);
    border-radius: var(--v105-radius);
    padding: 10px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 70px rgba(19, 52, 92, .18);
    color: var(--v105-ink);
  }

  .v105-nav-links.is-open {
    display: grid;
  }

  .v105-nav-links a,
  .v105-nav-parent {
    justify-content: space-between;
    min-height: 42px;
    border-radius: 6px;
  }

  .v105-nav-dropdown {
    position: static;
    min-width: 0;
    margin: 4px 0 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .v105-nav-item::after {
    display: none;
  }

  .v105-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 1020px) {
  .v105-hero-copy {
    width: min(680px, 62vw);
  }

  .v105-section-head-row,
  .v105-proof .kh-shell,
  .v105-industries .kh-shell,
  .v105-split {
    grid-template-columns: 1fr;
  }

  .v105-sticky-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .v105-home .kh-shell {
    width: min(390px, calc(100% - 28px));
  }

  .v105-hero {
    min-height: 640px;
    height: 86svh;
    margin-top: 68px;
  }

  .v105-hero-slide::before {
    background: rgba(8, 58, 125, .2);
  }

  .v105-hero-slide img {
    object-position: 58% center;
  }

  .v105-hero::after {
    height: 0;
  }

  .v105-hero-shell {
    align-items: center;
    text-align: center;
  }

  .v105-hero-copy {
    width: min(100%, 308px);
    margin: 0 auto;
    padding-top: 34px;
  }

  .v105-hero-kicker {
    margin: 0 auto;
    border-left: 0;
    border-bottom: 2px solid #78b6ff;
    padding: 0 0 8px;
    font-size: 11px;
    letter-spacing: .12em;
  }

  .v105-hero-copy h1 {
    max-width: 308px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(28px, 7.8vw, 33px);
    line-height: 1.18;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .v105-hero-copy p {
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.72;
  }

  .v105-hero-bars {
    bottom: 24px;
  }

  .v105-proof-grid,
  .v105-service-grid,
  .v105-scenario-list,
  .v105-industry-grid,
  .v105-practice-grid,
  .v105-closing-card ol {
    grid-template-columns: 1fr;
  }

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

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

  .v105-proof-grid article {
    justify-items: center;
    text-align: center;
  }

  .v105-proof-grid span {
    text-align: center;
  }

  .v105-scenario-list article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
  }

  .v105-section,
  .v105-proof {
    padding: 68px 0;
  }

  .v105-service-grid article,
  .v105-practice-grid article {
    min-height: 0;
  }

  .v105-scenario-icon,
  .v105-practice-icon {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .v105-practice-icon {
    width: 23px;
    height: 23px;
    font-size: 14px;
  }

  .v105-brand {
    gap: 9px;
  }

  .v105-brand-copy {
    display: grid;
  }

  .v105-brand-copy strong {
    max-width: min(190px, calc(100vw - 178px));
    font-size: 14px;
  }

  .v105-brand-copy span {
    display: none;
  }

  .v105-nav-cta {
    display: none;
  }

  .v105-footer-bottom {
    flex-direction: column;
  }

  .v105-closing-card li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -11px;
    transform: translateX(50%) rotate(135deg);
  }

  .site-page .kh-shell {
    width: min(390px, calc(100% - 28px));
  }

  .site-page .kh-page-hero {
    padding: 112px 0 52px;
  }

  .site-page .kh-page-hero .kh-kicker {
    border-left: 0;
    border-bottom: 2px solid #78b6ff;
    padding: 0 0 8px;
    font-size: 11px;
    letter-spacing: .12em;
  }

  .site-page .kh-page-hero .kh-title {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.16;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .site-page .kh-page-hero .kh-note {
    font-size: 15px;
    line-height: 1.72;
    overflow-wrap: anywhere;
  }

  .site-page .kh-content-layout {
    padding-block: 34px 72px;
  }

  .site-page .kh-content-panel,
  .site-page .post-content,
  .site-page .category-panel {
    padding: 20px;
  }

  .site-page .kh-content-panel .post-content {
    padding: 0;
  }

  .site-page .post-content {
    font-size: 15px;
    line-height: 1.86;
  }

  .site-page .post-content h2 {
    font-size: clamp(24px, 6.6vw, 30px);
  }

  .site-page .post-list-link,
  .site-page .category-tree a {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v105-hero-slide,
  .v105-hero-slide img,
  .v105-hero-kicker,
  .v105-hero-copy h1,
  .v105-hero-copy p,
  .v105-service-card,
  .v105-service-card::before,
  .v105-service-card::after,
  .v105-service-card span,
  .v105-service-card h3,
  .v105-service-card p,
  .v105-home [data-v105-reveal] {
    animation: none !important;
    transition: none !important;
  }

  .v105-hero-slide {
    opacity: 1;
    visibility: visible;
  }

  .v105-hero-slide img {
    opacity: 0;
  }

  .v105-hero-slide.is-active img {
    opacity: 1;
  }

  .v105-hero-kicker,
  .v105-hero-copy h1,
  .v105-hero-copy p {
    opacity: 0;
    transform: none;
  }

  .v105-hero-slide.is-active .v105-hero-kicker,
  .v105-hero-slide.is-active .v105-hero-copy h1,
  .v105-hero-slide.is-active .v105-hero-copy p,
  .v105-home [data-v105-reveal] {
    opacity: 1;
    transform: none;
  }

  .v105-proof-grid article:hover .v105-proof-flow::before,
  .v105-proof-grid article:hover .v105-proof-flow::after,
  .v105-industry-grid article:hover .v105-proof-flow::before,
  .v105-industry-grid article:hover .v105-proof-flow::after {
    animation: none !important;
    opacity: .45;
  }
}
