﻿:root {
  --blue-950: #08154c;
  --blue-900: #102a8c;
  --blue-800: #1947d5;
  --blue-700: #1768ff;
  --blue-600: #2385ff;
  --blue-500: #48a0ff;
  --cyan: #28d8ff;
  --violet: #815bff;
  --green: #2dccb0;
  --orange: #ff9f43;
  --ink: #151b2a;
  --muted: #667085;
  --line: #e3e8f1;
  --soft: #f4f9ff;
  --white: #ffffff;
  --shadow: 0 22px 58px rgba(24, 91, 255, 0.13);
  --shadow-subtle: 0 14px 38px rgba(24, 91, 255, 0.08);
  --radius: 10px;
  --radius-lg: 18px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes centeredRiseIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes heroBackdropDrift {
  0%,
  100% {
    transform: translate3d(calc(var(--hero-parallax-x, 0px) * 0.35), calc(var(--hero-parallax-y, 0px) * 0.35), 0) scale(1.025);
  }

  50% {
    transform: translate3d(calc(-12px + var(--hero-parallax-x, 0px) * 0.35), calc(-10px + var(--hero-parallax-y, 0px) * 0.35), 0) scale(1.055);
  }
}

@keyframes subpageBackdropDrift {
  0%,
  100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.05) translate3d(-10px, -8px, 0);
  }
}

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

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

@keyframes glowSweep {
  from {
    transform: translateX(-130%) skewX(-16deg);
  }

  to {
    transform: translateX(170%) skewX(-16deg);
  }
}

@keyframes promoGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes tabPop {
  0% {
    transform: translateY(0) scale(1);
  }

  55% {
    transform: translateY(-5px) scale(1.08);
  }

  100% {
    transform: translateY(-2px) scale(1.03);
  }
}

@keyframes contactIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tagRailLoop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes zegoVisualFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotateX(0.7deg) rotateY(-0.8deg);
  }
}

@keyframes zegoTraceMove {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes detailPulseLine {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.72);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei",
    sans-serif;
  background: #fff;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(32px, calc((100vw - 1180px) / 2));
  color: #172033;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(226, 232, 240, 0.88);
  box-shadow: 0 10px 28px rgba(24, 91, 255, 0.08);
  backdrop-filter: blur(18px);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: #172033;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(226, 232, 240, 0.88);
  box-shadow: 0 10px 28px rgba(24, 91, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 29px;
  height: 29px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(36, 88, 216, 0.22);
}

.brand-text {
  font-size: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links > a,
.nav-trigger {
  position: relative;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  opacity: 0.92;
  font-weight: inherit;
  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}

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

.nav-links > a::after,
.nav-trigger::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.36);
  transition:
    opacity 0.22s ease,
    transform 0.22s var(--ease-out);
}

.nav-links > a:hover,
.nav-trigger:hover,
.nav-item:hover .nav-trigger {
  color: var(--blue-600);
  opacity: 1;
}

.nav-links > a:hover::after,
.nav-links > a.is-active::after,
.nav-trigger:hover::after,
.nav-trigger.is-active::after,
.nav-item:hover .nav-trigger::after,
.nav-item.is-open .nav-trigger::after {
  opacity: 0.85;
  transform: scaleX(1);
}

.site-header.is-scrolled .nav-links > a:hover,
.site-header.menu-open .nav-links > a:hover,
.site-header.is-scrolled .nav-trigger:hover,
.site-header.menu-open .nav-trigger:hover,
.site-header.is-scrolled .nav-item:hover .nav-trigger,
.site-header.menu-open .nav-item:hover .nav-trigger {
  color: var(--blue-600);
}

.mega-menu {
  position: fixed;
  z-index: 29;
  top: 60px;
  left: 0;
  right: 0;
  overflow: hidden;
  min-height: 540px;
  color: #1a2437;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 22px 50px rgba(12, 35, 79, 0.08);
  transition:
    opacity 0.22s ease,
    transform 0.22s var(--ease-out);
}

.mega-nav-item.is-open .mega-menu,
.mega-nav-item.is-hover .mega-menu {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

html.is-mega-hover-ready .mega-nav-item:hover .mega-menu {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.mega-panel {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: grid;
  background:
    linear-gradient(90deg, #f3f5f8 0, #f3f5f8 calc((100vw - min(100vw, 1240px)) / 2 + 240px), rgba(243, 245, 248, 0) calc((100vw - min(100vw, 1240px)) / 2 + 240px)),
    url("./image/solution-mega-menu-bg-v1.webp") right center/auto 100% no-repeat,
    linear-gradient(180deg, #fff 0%, #f9fcff 100%);
}

.product-mega .mega-panel,
.solution-mega .mega-panel {
  background:
    linear-gradient(
      90deg,
      #f3f5f8 0,
      #f3f5f8 calc((100vw - min(100vw, 1240px)) / 2 + 240px),
      #fff calc((100vw - min(100vw, 1240px)) / 2 + 240px),
      #fff 100%
    );
}

.product-mega .mega-panel::before,
.solution-mega .mega-panel::before {
  left: calc((100vw - min(100vw, 1240px)) / 2 + 240px);
  width: auto;
  opacity: 0.3;
}

.product-mega .mega-panel::before {
  background:
    radial-gradient(circle at 62% 26%, rgba(204, 226, 255, 0.44), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04) 46%, rgba(255, 255, 255, 0.36)),
    url("./image/product-mega-menu-bg-v1.webp") center center/cover no-repeat;
}

.solution-mega .mega-panel::before {
  background:
    radial-gradient(circle at 62% 26%, rgba(204, 226, 255, 0.44), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04) 46%, rgba(255, 255, 255, 0.36)),
    url("./image/solution-mega-menu-bg-v1.webp") center center/cover no-repeat;
}

.mega-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(52vw, 820px);
  height: 100%;
  background:
    radial-gradient(circle at 62% 26%, rgba(204, 226, 255, 0.44), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.68));
  content: "";
  pointer-events: none;
}

.mega-menu-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  min-height: 460px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 54px;
  margin: 0 auto;
  padding: 46px 32px 52px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.mega-aside-title {
  margin: 0 0 24px;
  color: #172033;
  font-size: 16px;
  font-weight: 700;
}

.mega-aside-list {
  display: grid;
  gap: 11px;
}

.mega-aside-list a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding: 3px 0;
  border-radius: 0;
  color: #273244;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  opacity: 0.96;
}

.mega-aside-list a::after,
.mega-all-link::after {
  display: none;
}

.mega-aside-list a:hover,
.mega-aside-list a.is-featured {
  color: var(--blue-700);
  background: transparent;
}

.mega-aside-list span {
  flex: 0 0 auto;
  min-width: 0;
  padding: 2px 6px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ff4d40, #ff7b55);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.mega-content {
  min-width: 0;
  max-width: 984px;
  padding-top: 0;
}

.mega-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.mega-heading span {
  color: #172033;
  font-size: 17px;
  font-weight: 700;
}

.mega-all-link {
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
  opacity: 1;
}

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

.mega-card {
  position: relative;
  overflow: hidden;
  min-height: 122px;
  display: flex;
  align-items: flex-start;
  padding: 30px 22px 18px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #0b256c;
  opacity: 1;
  box-shadow: 0 18px 36px rgba(24, 91, 255, 0.14);
  transition:
    transform 0.2s var(--ease-out),
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.mega-card:hover {
  transform: translateY(-4px);
  color: #fff;
  filter: saturate(1.1) brightness(1.04);
  box-shadow: 0 22px 42px rgba(24, 91, 255, 0.24);
}

.mega-card-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.mega-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  background:
    linear-gradient(90deg, rgba(12, 27, 99, 0.52) 0%, rgba(12, 27, 99, 0.22) 42%, rgba(12, 27, 99, 0.02) 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 34%);
  content: "";
  pointer-events: none;
}

.mega-card span {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 16px;
  min-width: 0;
  width: min(56%, 132px);
  display: grid;
  gap: 9px;
}

.mega-card strong {
  color: #fff;
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 2px 8px rgba(0, 18, 70, 0.24);
}

.mega-card small {
  color: rgba(255, 255, 255, 0.96);
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  text-shadow: 0 2px 7px rgba(0, 18, 70, 0.2);
}

.product-mega .mega-card::after {
  background:
    linear-gradient(90deg, rgba(12, 27, 99, 0.58) 0%, rgba(12, 27, 99, 0.24) 42%, rgba(12, 27, 99, 0.03) 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 34%);
}

.product-mega .mega-card span {
  top: 28px;
  left: 16px;
  width: min(56%, 132px);
  gap: 9px;
}

.product-mega .mega-card strong {
  color: #fff;
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 2px 8px rgba(0, 18, 70, 0.24);
}

.product-mega .mega-card small {
  color: rgba(255, 255, 255, 0.96);
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  text-shadow: 0 2px 7px rgba(0, 18, 70, 0.2);
}

.product-mega .mega-card-image {
  object-position: center center;
}

.product-mega .mega-card:nth-child(1) .mega-card-image,
.product-mega .mega-card:nth-child(8) .mega-card-image {
  object-position: 66% center;
}

.product-mega .mega-card:nth-child(2) .mega-card-image {
  object-position: 64% center;
}

.product-mega .mega-card:nth-child(3) .mega-card-image {
  object-position: 68% center;
}

.product-mega .mega-card:nth-child(4) .mega-card-image {
  object-position: 62% center;
}

.product-mega .mega-card:nth-child(5) .mega-card-image {
  object-position: 64% center;
}

.product-mega .mega-card:nth-child(6) .mega-card-image {
  object-position: 66% center;
}

.product-mega .mega-card:nth-child(7) .mega-card-image {
  object-position: 64% center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.platform-login {
  position: relative;
}

.platform-login::after {
  position: absolute;
  top: 100%;
  right: 0;
  width: 188px;
  height: 16px;
  content: "";
}

.platform-login-trigger,
.demo-link {
  position: relative;
  overflow: hidden;
  min-width: 104px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  transition:
    transform 0.2s var(--ease-out),
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.platform-login-trigger:hover,
.platform-login.is-open .platform-login-trigger,
.demo-link:hover {
  transform: translateY(-2px);
}

.platform-login-trigger {
  color: var(--blue-700);
  border: 1px solid #d9e2f2;
  background: #fff;
  cursor: pointer;
}

.platform-login-trigger::after {
  display: inline-block;
  margin-left: 8px;
  border-top: 5px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
  transition: transform 0.18s ease;
}

.demo-link {
  color: #fff;
  background: var(--blue-700);
  box-shadow: 0 10px 24px rgba(15, 35, 66, 0.12);
}

.platform-login:hover .platform-login-trigger::after,
.platform-login.is-open .platform-login-trigger::after {
  transform: rotate(180deg);
}

.platform-login-menu {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  min-width: 168px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(217, 226, 242, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(15, 35, 66, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s var(--ease-out);
}

.platform-login:hover .platform-login-menu,
.platform-login.is-open .platform-login-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.platform-login-menu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-radius: 12px;
  color: #20304f;
  font-weight: 700;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.platform-login-menu a::after {
  color: #7a88a3;
  font-size: 12px;
  font-weight: 600;
  content: "进入";
}

.platform-login-menu a:hover,
.platform-login-menu a:focus-visible {
  color: var(--blue-700);
  background: #f1f6ff;
  transform: translateX(2px);
}

.site-header.is-scrolled .platform-login-trigger,
.site-header.menu-open .platform-login-trigger {
  color: var(--blue-700);
  border-color: #d9e2f2;
  background: #fff;
}

.site-header.is-scrolled .demo-link,
.site-header.menu-open .demo-link {
  color: #fff;
  background: var(--blue-700);
}

.menu-button {
  display: none;
  width: 38px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-icon {
  width: 22px;
  height: 22px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.menu-icon-dark {
  display: block;
}

.menu-icon-light,
.site-header.is-scrolled .menu-icon-light,
.site-header.menu-open .menu-icon-light {
  display: none;
}

.site-header.is-scrolled .menu-icon-dark,
.site-header.menu-open .menu-icon-dark {
  display: block;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(164, 108, 255, 0.6), transparent 34%),
    radial-gradient(circle at 45% 82%, rgba(41, 225, 255, 0.34), transparent 32%),
    linear-gradient(120deg, #1324d8 0%, #1768ff 48%, #7c42ff 100%);
  --hero-parallax-x: 0px;
  --hero-parallax-y: 0px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.68;
  transform-origin: 56% 45%;
  animation: heroBackdropDrift 16s ease-in-out infinite;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 35, 216, 0.78), rgba(24, 104, 255, 0.38) 42%, rgba(124, 66, 255, 0.12) 82%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(5, 24, 120, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 140px;
}

.hero-content > * {
  opacity: 0;
  animation: riseIn 0.74s var(--ease-out) forwards;
}

.hero-content > *:nth-child(1) {
  animation-delay: 0.08s;
}

.hero-content > *:nth-child(2) {
  animation-delay: 0.16s;
}

.hero-content > *:nth-child(3) {
  animation-delay: 0.24s;
}

.hero-content > *:nth-child(4) {
  animation-delay: 0.34s;
}

.hero-content > *:nth-child(5) {
  animation-delay: 0.44s;
}

.eyebrow,
.eyebrow.dark,
.card-kicker,
.footer-hero-kicker {
  display: none !important;
}

.eyebrow + h1,
.eyebrow + h2,
.eyebrow + h3,
.card-kicker + h2,
.card-kicker + h3,
.card-kicker + h4,
.footer-hero-kicker + h2 {
  margin-top: 0;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 4.15vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

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

.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 52px;
}

.primary-button,
.ghost-button,
.light-button {
  position: relative;
  overflow: hidden;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
  transform: translateZ(0);
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.primary-button::after,
.ghost-button::after,
.light-button::after,
.demo-link::after,
.promo-bar a::after {
  position: absolute;
  inset: -30% auto -30% 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-130%) skewX(-16deg);
  pointer-events: none;
}

.primary-button:hover,
.ghost-button:hover,
.light-button:hover {
  transform: translateY(-3px);
}

.primary-button:hover::after,
.ghost-button:hover::after,
.light-button:hover::after,
.demo-link:hover::after,
.promo-bar a:hover::after {
  opacity: 1;
  animation: glowSweep 0.74s var(--ease-out);
}

.primary-button {
  color: #fff;
  background: linear-gradient(90deg, #23d7ff, #1768ff);
  box-shadow: 0 16px 36px rgba(23, 104, 255, 0.32);
}

.primary-button:hover {
  box-shadow: 0 20px 44px rgba(23, 104, 255, 0.42);
}

.ghost-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.ghost-button:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.21);
  box-shadow: 0 16px 36px rgba(5, 18, 65, 0.12);
}

.light-button {
  color: var(--blue-800);
  background: #fff;
}

.light-button:hover {
  box-shadow: 0 16px 34px rgba(0, 24, 80, 0.16);
}

.nav-links > a.is-active,
.nav-trigger.is-active {
  color: var(--blue-600);
}

.site-header.is-scrolled .nav-links > a.is-active,
.site-header.menu-open .nav-links > a.is-active,
.site-header.is-scrolled .nav-trigger.is-active,
.site-header.menu-open .nav-trigger.is-active {
  color: var(--blue-600);
}

.page-main {
  min-height: 70vh;
}

.subpage-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(164, 108, 255, 0.52), transparent 34%),
    linear-gradient(120deg, #1324d8 0%, #1768ff 52%, #7c42ff 100%);
}

.subpage-hero-compact {
  min-height: 430px;
}

.subpage-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 58% 45%;
  animation: subpageBackdropDrift 18s ease-in-out infinite;
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 132px;
}

.subpage-hero-content > * {
  opacity: 0;
  animation: riseIn 0.72s var(--ease-out) forwards;
}

.subpage-hero-content > *:nth-child(1) {
  animation-delay: 0.08s;
}

.subpage-hero-content > *:nth-child(2) {
  animation-delay: 0.17s;
}

.subpage-hero-content > *:nth-child(3) {
  animation-delay: 0.26s;
}

.subpage-hero-content > *:nth-child(4) {
  animation-delay: 0.36s;
}

.subpage-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}

.subpage-hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.9;
}

.subpage-hero-business {
  min-height: 0;
  padding: 112px 0 34px;
  color: #172033;
  background:
    radial-gradient(circle at 18% 18%, rgba(97, 158, 255, 0.16), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(23, 104, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #f6f9fd 0%, #ffffff 100%);
}

.subpage-hero-business .hero-overlay,
.subpage-hero-business .subpage-hero-bg {
  display: none;
}

.subpage-hero-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  margin: 0 auto;
}

.subpage-hero-copy {
  min-width: 0;
}

.subpage-hero-business .eyebrow {
  width: max-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #dbe5f3;
  border-radius: 999px;
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(35, 71, 140, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.subpage-hero-business h1 {
  max-width: 560px;
  margin: 18px 0 0;
  color: #172033;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 800;
}

.subpage-hero-lead {
  max-width: 560px;
  margin: 22px 0 0;
  color: #526277;
  font-size: 17px;
  line-height: 1.92;
}

.subpage-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.subpage-hero-pills span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid #dbe5f3;
  border-radius: 999px;
  color: #304158;
  background: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
}

.subpage-hero-business .hero-actions {
  margin-top: 32px;
}

.subpage-hero-business .ghost-button {
  color: #254388;
  border: 1px solid #d7e1ef;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 35, 66, 0.06);
  backdrop-filter: none;
}

.subpage-hero-business .ghost-button:hover {
  border-color: #bdd1ea;
  background: #f8fbff;
  box-shadow: 0 18px 38px rgba(15, 35, 66, 0.1);
}

.subpage-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.subpage-hero-metrics article {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid #e1e9f4;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(15, 35, 66, 0.06);
}

.subpage-hero-metrics strong {
  color: #16213a;
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
}

.subpage-hero-metrics span {
  color: #607085;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}

.subpage-hero-visual-wrap {
  min-width: 0;
}

.subpage-hero-visual-panel {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid #dfe7f3;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
  box-shadow: 0 30px 64px rgba(20, 56, 118, 0.12);
}

.subpage-hero-visual-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 4px 18px;
}

.subpage-hero-visual-top span {
  display: block;
  color: #172033;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.subpage-hero-visual-top small {
  display: block;
  margin-top: 6px;
  color: #75849a;
  font-size: 13px;
  line-height: 1.5;
}

.subpage-hero-inline-link {
  flex: 0 0 auto;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--blue-700);
  background: #eef4ff;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.22s var(--ease-out),
    background 0.22s ease,
    color 0.22s ease;
}

.subpage-hero-inline-link:hover {
  transform: translateY(-2px);
  color: var(--blue-800);
  background: #e5eeff;
}

.subpage-hero-business-image {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  border-radius: 18px;
  object-fit: cover;
  object-position: 74% center;
  background: #f4f7fd;
}

.subpage-hero-summary {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 22px auto 0;
}

.subpage-hero-summary article {
  min-height: 128px;
  padding: 22px 20px;
  border: 1px solid #e1e9f4;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(15, 35, 66, 0.05);
}

.subpage-hero-summary h3 {
  margin: 0;
  color: #172033;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.subpage-hero-summary p {
  margin: 12px 0 0;
  color: #607085;
  font-size: 14px;
  line-height: 1.75;
}

.logo-strip {
  position: relative;
  z-index: 3;
  overflow: hidden;
  min-height: 74px;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 28px;
  padding: 12px max(32px, calc((100vw - 1180px) / 2));
  background: rgba(237, 247, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.logo-strip::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.62) 36%, transparent 64%);
  content: "";
  opacity: 0.56;
  transform: translateX(-100%);
  animation: glowSweep 5.8s ease-in-out infinite;
  pointer-events: none;
}

.logo-strip-copy {
  min-width: 0;
}

.logo-strip-title {
  color: #1b2c4c;
  font-weight: 800;
  line-height: 1.3;
  font-size: 15px;
}

.logo-strip-note {
  margin-top: 4px;
  color: #5d6b82;
  font-size: 13px;
  line-height: 1.35;
}

.industry-tags {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.industry-tag-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 12px;
  animation: tagRailLoop 24s linear infinite;
  will-change: transform;
}

.industry-tags:hover .industry-tag-track {
  animation-play-state: paused;
}

.industry-tag-group {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 12px;
  min-width: 0;
}

.industry-tag-group span {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #dbeaff;
  background: #fff;
  color: #4c5b72;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.22s var(--ease-out),
    color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.industry-tag-group span:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 104, 255, 0.32);
  color: var(--blue-700);
  box-shadow: 0 12px 26px rgba(23, 104, 255, 0.1);
}

.brand-rail {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.brand-rail-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 16px;
  animation: tagRailLoop 72s linear infinite;
  will-change: transform;
}

.logo-strip-brand:hover .brand-rail-track {
  animation-play-state: paused;
}

.brand-rail-group {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
  align-items: center;
}

.brand-rail-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: clamp(82px, 7vw, 116px);
  min-height: 52px;
  padding: 8px 10px;
  transition: transform 0.22s var(--ease-out);
}

.brand-rail-item:hover {
  transform: translateY(-3px);
}

.brand-rail-item img {
  width: auto;
  height: auto;
  max-width: min(102px, 100%);
  max-height: 42px;
  object-fit: contain;
}

.section {
  padding: 80px 0;
}

.product-system {
  background: #fff;
}

.section-heading,
.split-heading,
.feature-grid,
.pain-grid,
.industry-heading,
.solution-tabs,
.solution-showcase,
.developer-card,
.clients-heading,
.client-showcase,
.client-logo-wall,
.case-grid,
.security-grid,
.contact {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  text-align: center;
}

.reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.72s var(--ease-out),
    transform 0.72s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading h2,
.split-heading h2,
.flow-copy h2,
.developer-card h2,
.contact-copy h2 {
  margin: 0;
  color: #111b36;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading > p:last-child,
.split-heading > p,
.developer-card p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.85;
}

.section-heading > p:last-child {
  max-width: 720px;
  margin: 18px auto 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 22px;
  margin-top: 48px;
}

.product-matrix {
  padding: 10px;
  border: 1px solid rgba(195, 213, 240, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(242, 248, 255, 0.96), rgba(255, 255, 255, 0.98) 46%, rgba(238, 249, 255, 0.9)),
    radial-gradient(circle at 10% 8%, rgba(23, 104, 255, 0.11), transparent 30%);
  box-shadow: 0 28px 80px rgba(17, 54, 120, 0.12);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 246px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(208, 225, 248, 0.86);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(24, 91, 255, 0.08);
  transform: translateZ(0);
  transition:
    transform 0.28s var(--ease-out),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.feature-card::before,
.page-card::before,
.case-grid article::before,
.security-grid article::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--hover-x, 72%) var(--hover-y, 18%), rgba(40, 216, 255, 0.16), transparent 32%);
  content: "";
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.feature-card:hover,
.page-card:hover,
.pain-grid article:hover,
.case-grid article:hover,
.security-grid article:hover,
.case-detail-grid article:hover,
.flow-steps article:hover,
.detail-number-rail article:hover {
  transform: translateY(-8px);
  border-color: rgba(23, 104, 255, 0.28);
  box-shadow: 0 26px 66px rgba(24, 91, 255, 0.16);
}

.feature-card:hover::before,
.page-card:hover::before,
.case-grid article:hover::before,
.security-grid article:hover::before {
  opacity: 1;
}

.feature-card-large {
  min-height: 604px;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  gap: 0;
  padding: 16px;
  overflow: hidden;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 10%, rgba(40, 216, 255, 0.22), transparent 30%),
    linear-gradient(145deg, #1768ff 0%, #1da7ff 48%, #405dff 100%);
  box-shadow: 0 26px 64px rgba(17, 71, 170, 0.22);
}

.product-matrix-hero {
  grid-column: 1;
  grid-row: 1;
}

.feature-large-copy {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 2;
  max-width: 430px;
  padding: 22px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(4, 27, 74, 0.58), rgba(16, 94, 216, 0.38));
  box-shadow: 0 20px 46px rgba(5, 23, 65, 0.22);
  backdrop-filter: blur(16px);
}

.feature-large-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.feature-large-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.feature-large-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  align-self: stretch;
  min-height: 572px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 52px rgba(0, 31, 94, 0.22);
}

.feature-large-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 26, 79, 0.52) 0%, rgba(6, 26, 79, 0.2) 36%, rgba(6, 26, 79, 0) 70%),
    linear-gradient(180deg, rgba(23, 104, 255, 0.08), rgba(23, 104, 255, 0.18));
  content: "";
  pointer-events: none;
}

.feature-large-visual img {
  width: 100%;
  height: 100%;
  min-height: 572px;
  max-width: none;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(1.08);
  transition:
    transform 0.32s var(--ease-out),
    filter 0.32s ease;
}

.feature-card-large:hover .feature-large-visual img {
  transform: scale(1.04);
  filter: saturate(1.12);
}

.card-kicker {
  display: block;
  margin: 0 0 8px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
}

.feature-card-large .card-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.feature-card h3 {
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.35;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.feature-card-large p {
  color: rgba(255, 255, 255, 0.85);
}

.feature-card a {
  position: relative;
  display: inline-block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--blue-600);
  font-weight: 800;
}

.feature-card .matrix-card-link {
  display: grid;
  margin-top: 0;
  color: inherit;
}

.feature-card:not(.feature-card-large):not(.matrix-feature)::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--card-accent, #1768ff), rgba(40, 216, 255, 0.16));
  content: "";
}

.feature-card.blue {
  --card-accent: #1768ff;
}

.feature-card.cyan {
  --card-accent: #19bfff;
}

.feature-card.green {
  --card-accent: #2dccb0;
}

.feature-card.orange {
  --card-accent: #ff9f43;
}

.product-matrix-stack {
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  height: 604px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(207, 224, 246, 0.8);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 250, 255, 0.88)),
    radial-gradient(circle at 100% 0%, rgba(40, 216, 255, 0.12), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.product-matrix-row {
  display: contents;
}

.matrix-feature {
  min-height: 0;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.94)),
    linear-gradient(135deg, rgba(23, 104, 255, 0.08), rgba(255, 255, 255, 0));
  box-shadow: 0 12px 30px rgba(24, 91, 255, 0.07);
}

.matrix-feature::after {
  position: absolute;
  inset: 0;
  border-left: 5px solid var(--card-accent, #1768ff);
  content: "";
  pointer-events: none;
}

.matrix-card-link {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 118px minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
  color: inherit;
}

.matrix-feature-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.matrix-feature-copy strong {
  color: #111b36;
  font-size: 17px;
  line-height: 1.32;
  font-weight: 900;
}

.matrix-feature-copy > span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.56;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.matrix-feature-visual {
  align-self: stretch;
  overflow: hidden;
  min-height: 118px;
  border: 1px solid rgba(218, 230, 246, 0.92);
  border-radius: 12px;
  background: #eef6ff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.matrix-feature-visual img {
  width: 100%;
  height: 100%;
  min-height: 118px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05);
  transition:
    transform 0.32s var(--ease-out),
    filter 0.32s ease;
}

.matrix-feature.compact .matrix-card-link {
  grid-template-rows: 118px minmax(0, 1fr);
}

.matrix-feature.compact .matrix-feature-copy {
  justify-content: flex-start;
}

.matrix-feature.compact .matrix-feature-copy strong {
  font-size: 17px;
}

.matrix-feature.compact .matrix-feature-copy > span:last-child {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.55;
}

.matrix-feature.compact .matrix-feature-visual {
  min-height: 118px;
}

.matrix-feature.compact .matrix-feature-visual img {
  min-height: 118px;
}

.matrix-feature:hover .matrix-feature-visual img {
  transform: scale(1.05);
  filter: saturate(1.12);
}

.product-matrix-band {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.product-matrix-band a {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 18px 20px;
  border: 1px solid rgba(207, 224, 246, 0.86);
  border-radius: 14px;
  color: #14213d;
  background: rgba(255, 255, 255, 0.76);
  transition:
    transform 0.24s var(--ease-out),
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.product-matrix-band a:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 104, 255, 0.28);
  box-shadow: 0 18px 36px rgba(24, 91, 255, 0.11);
}

.product-matrix-band strong {
  color: var(--blue-700);
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.product-matrix-band span {
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.feature-card a:not(.matrix-card-link)::after,
.page-card a::after {
  display: inline-block;
  margin-left: 6px;
  content: ">";
  transition: transform 0.18s var(--ease-out);
}

.feature-card a:not(.matrix-card-link):hover::after,
.page-card a:hover::after {
  transform: translateX(5px);
}

.card-icon {
  width: 58px;
  height: 58px;
  display: block;
  margin-bottom: 24px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(30, 64, 116, 0.12);
  transition:
    transform 0.28s var(--spring),
    box-shadow 0.28s ease;
}

.feature-card:hover .card-icon,
.page-card:hover .card-icon {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 18px 34px rgba(23, 104, 255, 0.18);
}

.dark-kicker {
  color: var(--blue-600);
}

.page-card-grid {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 46px auto 0;
}

.page-card {
  position: relative;
  overflow: hidden;
  min-height: 246px;
  padding: 28px;
  border: 1px solid #dcecff;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-subtle);
  transition:
    transform 0.28s var(--ease-out),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.page-card h3 {
  margin: 0 0 14px;
  color: #15223a;
  font-size: 23px;
  line-height: 1.35;
}

.page-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.page-card a {
  display: inline-block;
  margin-top: 22px;
  color: var(--blue-600);
  font-weight: 800;
}

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

.compact-grid .page-card {
  min-height: 210px;
}

.partner-value-grid .page-card h3 {
  min-height: calc(23px * 1.35 * 2);
}

.page-band {
  background: linear-gradient(180deg, #f4f9ff, #eef7ff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-layout {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: center;
  margin: 0 auto;
}

.detail-layout h2,
.cta-panel h2,
.contact-info-panel h2 {
  margin: 0;
  color: #15223a;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: 0;
}

.page-lead {
  color: var(--muted);
  line-height: 1.85;
}

.visual-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-subtle);
  transition:
    transform 0.28s var(--ease-out),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.visual-card:hover {
  transform: translateY(-8px);
  border-color: rgba(23, 104, 255, 0.26);
  box-shadow: 0 28px 72px rgba(24, 91, 255, 0.15);
}

.visual-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.visual-card:hover img {
  transform: scale(1.045);
}

.visual-card.detail-image-card,
.visual-card.developer-detail-card {
  position: relative;
  min-height: 0;
  padding: 0;
  background: #fff;
}

.visual-card.detail-image-card::before,
.visual-card.developer-detail-card::before {
  content: none;
  display: none;
}

.visual-card.detail-image-card img,
.visual-card.developer-detail-card img {
  position: static;
  right: auto;
  bottom: auto;
  z-index: auto;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.visual-card.detail-image-card:hover img,
.visual-card.developer-detail-card:hover img {
  filter: none;
}

.flow-steps,
.detail-number-rail {
  --flow-card-min: 152px;
  --flow-gap: clamp(14px, 1.8vw, 20px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(var(--flow-card-min), 100%), 1fr));
  gap: var(--flow-gap);
  align-items: stretch;
  margin-top: clamp(30px, 3.2vw, 44px);
}

.flow-steps {
  width: min(1180px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.flow-steps.flow-steps--seven {
  width: min(1288px, calc(100% - 48px));
}

@media (min-width: 1101px) and (max-width: 1239px) {
  .flow-steps.flow-steps--seven {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .flow-steps.flow-steps--seven article:nth-child(5) {
    grid-column: 2;
  }

  .flow-steps.flow-steps--seven article::after {
    display: none;
  }
}

@media (min-width: 1240px) {
  .flow-steps.flow-steps--seven {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

.flow-steps article,
.detail-number-rail article {
  position: relative;
  min-height: clamp(168px, 18vw, 196px);
  padding: 24px 20px 22px;
  border: 1px solid rgba(23, 104, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(64, 196, 255, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
  box-shadow: 0 20px 44px rgba(15, 60, 145, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition:
    transform 0.28s var(--ease-out),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.flow-steps span,
.detail-number-rail span {
  position: relative;
  width: clamp(56px, 5vw, 66px);
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #3a8dff 0%, #1768ff 100%);
  box-shadow: 0 16px 34px rgba(23, 104, 255, 0.26);
  color: #fff;
  font-size: clamp(1.45rem, 1.2rem + 0.65vw, 2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.flow-steps span::after,
.detail-number-rail span::after {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: clamp(42px, 3.2vw, 54px);
  height: 3px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(23, 104, 255, 0.08), rgba(23, 104, 255, 0.42), rgba(23, 104, 255, 0.08));
  content: "";
}

.flow-steps h3,
.detail-number-rail h3 {
  width: 100%;
  margin: 0;
  color: #111b36;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.26rem);
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: 0;
}

.flow-steps article::after,
.detail-workflow-section > .detail-number-rail article::after,
.detail-access-panel .detail-number-rail article::after {
  position: absolute;
  top: 50%;
  right: calc(var(--flow-gap) * -0.66);
  transform: translateY(-50%);
  color: #2d70ff;
  font-size: clamp(1.55rem, 1.35rem + 0.45vw, 1.95rem);
  line-height: 1;
  text-shadow: 0 12px 22px rgba(23, 104, 255, 0.22);
  content: "→";
}

.flow-steps article:last-child::after,
.detail-workflow-section > .detail-number-rail article:last-child::after,
.detail-access-panel .detail-number-rail article:last-child::after {
  display: none;
}

.combo-panel {
  width: min(900px, calc(100% - 48px));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 42px auto 0;
}

.combo-panel span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: var(--radius);
  color: #25466e;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-subtle);
  font-weight: 800;
  transition:
    transform 0.22s var(--ease-out),
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.combo-panel span:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 104, 255, 0.32);
  box-shadow: 0 16px 34px rgba(23, 104, 255, 0.12);
}

.zego-detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 118px 0 82px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(40, 216, 255, 0.24), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(129, 91, 255, 0.3), transparent 32%),
    linear-gradient(132deg, #06103d 0%, #09256f 42%, #125dff 100%);
}

.zego-detail-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 66% center;
  opacity: 0.34;
  filter: saturate(1.08) contrast(1.04) blur(1px);
  transform: scale(1.03);
  animation: subpageBackdropDrift 18s ease-in-out infinite;
}

.zego-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 36, 0.98) 0%, rgba(7, 25, 78, 0.95) 38%, rgba(15, 82, 219, 0.58) 72%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(5, 13, 44, 0.26), rgba(4, 11, 35, 0.76));
  pointer-events: none;
}

.zego-detail-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  align-items: center;
  gap: 56px;
  margin: 0 auto;
}

.zego-detail-hero-copy {
  min-width: 0;
}

.zego-detail-hero-inner > * {
  min-width: 0;
}

.zego-detail-hero h1 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.zego-detail-hero h1 .hero-title-line {
  display: block;
  white-space: nowrap;
}

.zego-detail-hero h1 .hero-title-line--primary {
  font-size: 0.82em;
  line-height: 1.02;
}

.zego-detail-hero h1 .hero-title-line--primary.hero-title-line--compact {
  font-size: 0.6em;
}

.zego-detail-hero h1 .hero-title-line--secondary {
  margin-top: 0.08em;
  font-size: 0.9em;
  line-height: 1.02;
}

.zego-detail-hero h1 .hero-title-line--secondary.hero-title-line--compact {
  font-size: 0.82em;
}

.zego-detail-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(238, 247, 255, 0.9);
  font-size: 17px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.zego-detail-hero .hero-actions {
  margin-top: 34px;
}

.zego-detail-hero-visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  min-height: 492px;
  margin: 0;
  border: 1px solid rgba(211, 230, 255, 0.32);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(236, 247, 255, 0.62)),
    rgba(255, 255, 255, 0.48);
  box-shadow:
    0 40px 108px rgba(0, 31, 96, 0.38),
    0 0 0 8px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
  transform-origin: center;
  animation: zegoVisualFloat 9s ease-in-out infinite;
}

.zego-detail-hero-visual::after,
.zego-showcase-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(23, 104, 255, 0.1)),
    radial-gradient(circle at 78% 16%, rgba(40, 216, 255, 0.18), transparent 34%);
  content: "";
  pointer-events: none;
}

.zego-detail-hero-visual img {
  width: 100%;
  height: 492px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.01);
}

.zego-screen-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 108px;
  background:
    radial-gradient(circle at 18% 8%, rgba(40, 216, 255, 0.08), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(23, 104, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.zego-screen-head {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.zego-screen-head h2 {
  margin: 0;
  color: #111b36;
  font-size: clamp(36px, 3.6vw, 54px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}

.zego-screen-head > p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.86;
}

.zego-screen-head .pill-row {
  justify-content: center;
  margin-top: 28px;
}

.zego-screen-visual {
  position: relative;
  overflow: hidden;
  width: min(1240px, calc(100% - 48px));
  margin: 56px auto 0;
  border: 1px solid rgba(199, 219, 247, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 248, 255, 0.86)),
    #fff;
  box-shadow:
    0 36px 96px rgba(24, 91, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.zego-screen-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.04));
  content: "";
  opacity: 0.64;
  transform: translateX(-100%);
  animation: zegoTraceMove 6s ease-in-out infinite;
  pointer-events: none;
}

.zego-screen-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(23, 104, 255, 0.08)),
    radial-gradient(circle at 78% 12%, rgba(40, 216, 255, 0.12), transparent 28%);
  content: "";
  pointer-events: none;
}

.zego-screen-visual img {
  width: 100%;
  height: auto;
  max-width: none;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.006);
  transition:
    transform 0.42s var(--ease-out),
    filter 0.42s ease;
}

.zego-screen-visual:hover img {
  transform: scale(1.028);
  filter: saturate(1.1) contrast(1.04);
}

.zego-showcase-section {
  padding: 104px 0 76px;
  background:
    radial-gradient(circle at 86% 10%, rgba(23, 104, 255, 0.09), transparent 28%),
    linear-gradient(180deg, #07133e 0%, #0c2b74 100%);
}

.zego-showcase {
  width: min(1240px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 64px;
  align-items: center;
  margin: 0 auto;
}

.zego-showcase h2 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.zego-showcase .eyebrow.dark {
  color: #84eaff;
}

.zego-showcase .page-lead {
  color: rgba(235, 246, 255, 0.78);
}

.zego-showcase .pill-row {
  margin-top: 30px;
}

.zego-showcase .pill-row span {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(238, 247, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.zego-showcase-visual {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(235, 248, 255, 0.78)),
    rgba(255, 255, 255, 0.18);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.22);
}

.zego-showcase-visual img {
  width: 100%;
  height: 460px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06);
}

.zego-capability-section {
  padding: 104px 0 108px;
  background: #fff;
}

.zego-combo-section,
.zego-process-section {
  background:
    radial-gradient(circle at 15% 0%, rgba(40, 216, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #f5f9ff, #eef6ff);
  border-top: 1px solid rgba(221, 234, 249, 0.88);
  border-bottom: 1px solid rgba(221, 234, 249, 0.88);
}

.zego-process-section {
  background: #fff;
  border-top: 0;
}

.zego-feature-grid {
  width: min(1240px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 50px auto 0;
}

.zego-ability-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.zego-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 252px;
  display: grid;
  align-content: start;
  padding: 28px 24px 26px;
  border: 1px solid #dbeaff;
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--hover-x, 84%) var(--hover-y, 12%), rgba(40, 216, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
  box-shadow: 0 22px 56px rgba(24, 91, 255, 0.08);
  transition:
    min-height 0.28s var(--ease-out),
    transform 0.28s var(--ease-out),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.zego-feature-card::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #1768ff, rgba(40, 216, 255, 0.2));
  content: "";
}

.zego-feature-card::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(23, 104, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 104, 255, 0.12), rgba(40, 216, 255, 0.06)),
    #fff;
  color: var(--blue-700);
  content: "+";
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.24s var(--ease-out),
    color 0.24s ease,
    background 0.24s ease;
}

.zego-feature-card:hover,
.zego-feature-card.is-active {
  min-height: 284px;
  transform: translateY(-8px);
  border-color: rgba(23, 104, 255, 0.3);
  background:
    radial-gradient(circle at var(--hover-x, 84%) var(--hover-y, 12%), rgba(40, 216, 255, 0.22), transparent 36%),
    linear-gradient(180deg, #ffffff, #f2f8ff);
  box-shadow: 0 30px 72px rgba(24, 91, 255, 0.15);
}

.zego-feature-card:hover::after,
.zego-feature-card.is-active::after {
  color: #fff;
  background:
    linear-gradient(135deg, var(--blue-700), #1ec7ff);
  transform: rotate(45deg) translateY(-2px);
}

.zego-feature-index {
  display: inline-flex;
  align-items: center;
  height: 24px;
  margin-bottom: 16px;
  color: #1768ff;
  font-size: 13px;
  font-weight: 900;
}

.zego-feature-card h3 {
  min-height: 54px;
  margin: 0 0 14px;
  color: #111b36;
  font-size: 18px;
  line-height: 1.42;
  font-weight: 900;
}

.zego-feature-card p {
  margin: 0;
  color: #667085;
  line-height: 1.74;
}

.zego-feature-card > p:last-child {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: opacity 0.24s ease;
}

.zego-feature-card:hover > p:last-child,
.zego-feature-card.is-active > p:last-child {
  -webkit-line-clamp: 5;
}

.zego-combo-panel,
.zego-process {
  width: min(1240px, calc(100% - 48px));
  margin: 46px auto 0;
}

.zego-combo-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.zego-combo-panel span {
  position: relative;
  overflow: hidden;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(203, 223, 250, 0.92);
  border-radius: 8px;
  color: #15305f;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(24, 91, 255, 0.08);
  font-weight: 900;
  text-align: center;
  transition:
    transform 0.24s var(--ease-out),
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    color 0.24s ease;
}

.zego-combo-panel span::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(40, 216, 255, 0.2), transparent 44%),
    linear-gradient(135deg, rgba(23, 104, 255, 0.12), transparent);
  content: "";
  opacity: 0;
  transition: opacity 0.24s ease;
}

.zego-combo-panel span:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 104, 255, 0.32);
  color: var(--blue-700);
  box-shadow: 0 26px 58px rgba(24, 91, 255, 0.14);
}

.zego-combo-panel span:hover::before {
  opacity: 1;
}

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

.zego-process article {
  position: relative;
  overflow: hidden;
  min-height: 158px;
  padding: 24px 18px 22px;
  border: 1px solid #dbeaff;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff, #f7fbff),
    radial-gradient(circle at 100% 0%, rgba(40, 216, 255, 0.14), transparent 34%);
  box-shadow: 0 18px 48px rgba(24, 91, 255, 0.08);
  transition:
    transform 0.24s var(--ease-out),
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.zego-process article:hover {
  transform: translateY(-7px);
  border-color: rgba(23, 104, 255, 0.28);
  box-shadow: 0 26px 62px rgba(24, 91, 255, 0.14);
}

.zego-process article::after {
  position: absolute;
  top: 34px;
  right: -14px;
  width: 14px;
  height: 1px;
  background: #b8d6ff;
  content: "";
}

.zego-process article:last-child::after {
  display: none;
}

.zego-process span {
  color: #1768ff;
  font-weight: 900;
}

.zego-process h3 {
  margin: 18px 0 0;
  color: #111b36;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 900;
}

.detail-center-screen {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background:
    radial-gradient(circle at 18% 4%, rgba(40, 216, 255, 0.1), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(23, 104, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.detail-center-screen.compact {
  padding-top: 88px;
}

.detail-center-head,
.detail-band-head,
.detail-matrix-head,
.detail-ledger-head,
.marketplace-copy,
.industry-story-copy {
  width: min(930px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.detail-center-head h2,
.detail-band-head h2,
.detail-matrix-head h2,
.detail-ledger-head h2,
.marketplace-copy h2,
.industry-story-copy h2 {
  margin: 0;
  color: #111b36;
  font-size: clamp(36px, 3.5vw, 54px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}

.detail-center-head > p:not(.eyebrow),
.detail-band-head > p:not(.eyebrow),
.detail-matrix-head > p:not(.eyebrow),
.detail-ledger-head > p:not(.eyebrow),
.marketplace-copy > p:not(.eyebrow),
.industry-story-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.86;
}

.detail-center-head .pill-row {
  justify-content: center;
  margin-top: 28px;
}

.detail-image-stage {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(202, 222, 250, 0.95);
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 38px 104px rgba(24, 91, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    transform 0.52s var(--ease-out),
    box-shadow 0.52s ease,
    border-color 0.52s ease;
}

.detail-image-stage::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.detail-image-stage:hover {
  transform: translateY(-8px);
  border-color: rgba(23, 104, 255, 0.32);
  box-shadow:
    0 48px 118px rgba(24, 91, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.detail-image-stage:hover::before {
  opacity: 1;
  animation: zegoTraceMove 1.8s var(--ease-out);
}

.detail-image-stage img {
  width: 100%;
  max-width: none;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 0.52s var(--ease-out);
}

.detail-image-stage:hover img {
  transform: scale(1.018);
}

.detail-image-stage.wide,
.detail-image-stage.ledger {
  width: min(1240px, calc(100% - 48px));
  margin: 56px auto 0;
}

.detail-image-stage.tilt-left,
.detail-image-stage.tilt-right,
.detail-image-stage.phone-like {
  min-width: 0;
}

.detail-image-stage.tilt-left {
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
}

.detail-image-stage.tilt-right {
  transform: perspective(1400px) rotateY(4deg) rotateX(1deg);
}

.detail-image-stage.tilt-left:hover,
.detail-image-stage.tilt-right:hover {
  transform: perspective(1400px) rotateY(0deg) rotateX(0deg) translateY(-8px);
}

.detail-scenario-band,
.detail-module-cloud,
.detail-rule-section,
.detail-record-section,
.detail-combo-lane,
.detail-marketplace-section {
  background: #fff;
}

.detail-scenario-band {
  padding: 104px 0;
}

.detail-scenario-map {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(1240px, calc(100% - 48px));
  margin: 56px auto 0;
  border: 1px solid rgba(202, 222, 250, 0.95);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(40, 216, 255, 0.16), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow:
    0 38px 104px rgba(24, 91, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.detail-scenario-map::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(23, 104, 255, 0.12), transparent 30%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  content: "";
  pointer-events: none;
}

.detail-scenario-map img {
  width: 100%;
  max-width: none;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.01);
}

.detail-scenario-map-overlay {
  position: absolute;
  inset: clamp(18px, 2vw, 32px);
  z-index: 2;
  pointer-events: none;
}

.detail-scenario-map-node {
  position: absolute;
  max-width: clamp(190px, 17vw, 280px);
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(194, 221, 255, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(1.45);
  box-shadow:
    0 22px 48px rgba(24, 91, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  pointer-events: auto;
}

.detail-scenario-map-node::before {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1768ff, #1ed5ff);
  content: "";
}

.detail-scenario-map-node span {
  color: #111b36;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
}

.detail-scenario-map-node small {
  display: block;
  color: #5f6f8f;
  font-size: 14px;
  line-height: 1.65;
}

.detail-scenario-map-node.is-top {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.detail-scenario-map-node.is-left {
  top: 50%;
  left: 1%;
  transform: translateY(-50%);
}

.detail-scenario-map-node.is-right {
  top: 50%;
  right: 1%;
  transform: translateY(-50%);
}

.detail-scenario-map-node.is-bottom {
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.detail-insight-strip,
.detail-matrix-board,
.industry-story-grid,
.marketplace-roles,
.combo-lane,
.detail-record-grid,
.detail-workflow-layout,
.detail-growth-layout,
.detail-access-panel {
  width: min(1240px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.detail-insight-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 50px;
}

.detail-insight-strip article,
.industry-story-grid article,
.marketplace-roles article,
.combo-lane article,
.detail-matrix-board article,
.record-column article {
  position: relative;
  overflow: hidden;
  border: 1px solid #dbeaff;
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--hover-x, 78%) var(--hover-y, 8%), rgba(40, 216, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 18px 46px rgba(24, 91, 255, 0.08);
  transition:
    transform 0.28s var(--ease-out),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.detail-insight-strip article:hover,
.industry-story-grid article:hover,
.marketplace-roles article:hover,
.combo-lane article:hover,
.detail-matrix-board article:hover,
.record-column article:hover {
  transform: translateY(-8px);
  border-color: rgba(23, 104, 255, 0.32);
  box-shadow: 0 30px 72px rgba(24, 91, 255, 0.14);
}

.detail-insight-strip article {
  min-height: 218px;
  padding: 28px 24px 26px;
}

.detail-insight-strip span,
.industry-story-grid span,
.marketplace-roles span,
.combo-lane span,
.detail-matrix-board span {
  display: inline-flex;
  align-items: center;
  color: #1768ff;
  font-size: 13px;
  font-weight: 900;
}

.detail-insight-strip h3,
.industry-story-grid h3,
.marketplace-roles h3,
.combo-lane h3,
.detail-matrix-board h3,
.record-column strong {
  display: block;
  margin: 18px 0 12px;
  color: #111b36;
  font-size: 19px;
  line-height: 1.42;
  font-weight: 900;
}

.detail-insight-strip article > h3:first-child,
.industry-story-grid article > h3:first-child,
.marketplace-roles article > h3:first-child,
.combo-lane article > h3:first-child,
.detail-matrix-board article > h3:first-child {
  margin-top: 0;
}

.detail-insight-strip p,
.industry-story-grid p,
.marketplace-roles p,
.detail-matrix-board p,
.record-column p {
  margin: 0;
  color: #667085;
  line-height: 1.74;
}

.detail-workflow-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background:
    radial-gradient(circle at 84% 10%, rgba(40, 216, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #f6fbff 0%, #eef6ff 100%);
}

.detail-workflow-section.industry {
  background: #fff;
}

.detail-workflow-layout,
.detail-growth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(540px, 1.28fr);
  gap: 64px;
  align-items: center;
}

.detail-workflow-layout.reverse {
  grid-template-columns: minmax(540px, 1.28fr) minmax(0, 0.72fr);
}

.detail-workflow-copy h2,
.detail-growth-layout h2 {
  margin: 0;
  color: #111b36;
  font-size: clamp(34px, 3.25vw, 50px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.detail-workflow-copy > p:not(.eyebrow),
.detail-growth-layout > div > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.86;
}

.detail-workflow-copy .pill-row {
  margin-top: 28px;
}

.detail-workflow-section > .detail-number-rail {
  width: min(1240px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.detail-access-section,
.detail-ledger-section,
.detail-growth-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(40, 216, 255, 0.09), transparent 28%),
    linear-gradient(180deg, #f7fbff, #eef6ff);
}

.detail-access-panel {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.detail-access-panel > div:first-child {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.detail-access-panel h2 {
  margin: 0;
  color: #111b36;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.24;
  font-weight: 800;
}

.detail-access-panel p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.85;
}

.detail-access-panel .detail-number-rail {
  width: 100%;
  margin-top: 0;
}

.page-band .split-heading {
  max-width: 760px;
  grid-template-columns: 1fr;
  gap: 18px;
  text-align: center;
}

.page-band .split-heading > p {
  margin: 0 auto;
  max-width: 720px;
}

.detail-record-section {
  padding: 104px 0;
}

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

.record-column {
  padding: 28px;
  border: 1px solid #dbeaff;
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 4%, rgba(40, 216, 255, 0.13), transparent 32%),
    #f8fbff;
}

.record-column article {
  min-height: 112px;
  margin-top: 14px;
  padding: 22px 22px 20px 56px;
}

.record-column article span {
  position: absolute;
  left: 24px;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 99px;
  background: linear-gradient(135deg, #1768ff, #28d8ff);
}

.record-column strong {
  margin-top: 0;
}

.detail-matrix-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background:
    radial-gradient(circle at 50% -10%, rgba(23, 104, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #f7fbff, #ffffff);
}

.detail-matrix-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.detail-matrix-board article {
  min-height: 224px;
  padding: 28px 24px 24px;
}

.detail-matrix-board article.featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 464px;
  color: #fff;
  background:
    radial-gradient(circle at var(--hover-x, 78%) var(--hover-y, 6%), rgba(40, 216, 255, 0.24), transparent 38%),
    linear-gradient(135deg, #071b58, #1768ff);
  box-shadow: 0 34px 88px rgba(23, 104, 255, 0.22);
}

.detail-matrix-board article.featured span,
.detail-matrix-board article.featured h3,
.detail-matrix-board article.featured p {
  color: #fff;
}

.detail-matrix-board article.featured h3 {
  max-width: 360px;
  margin-top: 150px;
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.16;
}

.detail-growth-section {
  padding: 104px 0;
}

.detail-growth-layout {
  grid-template-columns: minmax(560px, 1.05fr) minmax(0, 0.95fr);
}

.industry-story-grid,
.marketplace-roles {
  display: grid;
  gap: 16px;
  margin-top: 52px;
}

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

.marketplace-roles {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.industry-story-grid article,
.marketplace-roles article {
  min-height: 236px;
  padding: 28px 24px 26px;
}

.detail-industry-story,
.detail-marketplace-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background:
    radial-gradient(circle at 10% 0%, rgba(40, 216, 255, 0.08), transparent 30%),
    #fff;
}

.detail-combo-lane {
  padding: 104px 0;
  background:
    radial-gradient(circle at 84% 0%, rgba(40, 216, 255, 0.1), transparent 26%),
    linear-gradient(180deg, #f7fbff, #eef6ff);
}

.combo-lane {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.combo-lane article {
  min-height: 142px;
  display: grid;
  align-content: center;
  padding: 24px;
  text-align: center;
}

.combo-lane h3 {
  margin-bottom: 0;
}

.detail-ledger-section {
  padding: 104px 0 112px;
}

.detail-ledger-head + .detail-image-stage {
  margin-top: 54px;
}

.cta-section {
  padding-top: 40px;
}

.payment-cta-section {
  padding-top: 40px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin: 0 auto;
  padding: 46px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 16% 22%, rgba(43, 216, 255, 0.34), transparent 30%),
    linear-gradient(135deg, #1768ff, #226dff 58%, #7c42ff);
}

.cta-panel::after,
.contact::after {
  position: absolute;
  inset: -40% auto -40% 0;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  content: "";
  opacity: 0.8;
  transform: translateX(-125%) skewX(-16deg);
  pointer-events: none;
}

.cta-panel > *,
.contact-copy {
  position: relative;
  z-index: 1;
}

.cta-panel.is-visible::after,
.contact.is-visible::after {
  animation: glowSweep 1.05s 0.24s var(--ease-out) both;
}

.cta-panel h2 {
  color: #fff;
}

.cta-title-line {
  display: block;
}

.cta-panel p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
}

.case-detail-grid {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 42px auto 0;
}

.case-detail-grid article {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-subtle);
  transition:
    transform 0.28s var(--ease-out),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.case-detail-grid p {
  margin: 0 0 20px;
  color: var(--blue-600);
  font-weight: 900;
}

.case-detail-grid h3 {
  margin: 18px 0 8px;
  color: #15223a;
  font-size: 19px;
}

.case-detail-grid span {
  color: var(--muted);
  line-height: 1.75;
}

.contact-page-section {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 32px;
  align-items: start;
  margin: 0 auto 88px;
}

.contact-info-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-subtle);
  transition:
    transform 0.28s var(--ease-out),
    box-shadow 0.28s ease;
}

.contact-info-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(24, 91, 255, 0.13);
}

.contact-info-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.lead-form-wide {
  box-shadow: var(--shadow);
}

.need-fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 0;
  border: 1px solid #d8e4f3;
  border-radius: var(--radius);
  padding: 14px;
}

.need-fieldset legend {
  padding: 0 6px;
  color: #33415c;
  font-size: 13px;
  font-weight: 800;
}

.need-fieldset label {
  display: inline-flex;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 4px 0;
  cursor: pointer;
  font-weight: 700;
}

.need-fieldset input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  flex: 0 0 18px;
  border: 1px solid #b7c7dc;
  border-radius: 5px;
  background: linear-gradient(180deg, #ffffff, #f4f8fd);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 1px 2px rgba(18, 42, 84, 0.08);
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease,
    background-image 0.18s ease;
}

.need-fieldset input[type="checkbox"]:hover {
  border-color: rgba(23, 104, 255, 0.48);
}

.need-fieldset input[type="checkbox"]:checked {
  border-color: #1768ff;
  background-color: #1768ff;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.2 2.2L9 1' fill='none' stroke='%23fff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #2a83ff, #1768ff);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: 10px 8px, 100% 100%;
  box-shadow:
    0 8px 18px rgba(23, 104, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.need-fieldset input[type="checkbox"]:focus,
.need-fieldset input[type="checkbox"]:focus-visible {
  outline: 0;
  border-color: rgba(23, 104, 255, 0.72);
  box-shadow:
    0 0 0 3px rgba(23, 104, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.pain-section {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
  background:
    radial-gradient(circle at 16% 18%, rgba(129, 91, 255, 0.08), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(40, 216, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #fbf8ff 0%, #f5faff 100%);
}

.pain-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
  content: "";
  pointer-events: none;
}

.pain-section .section-heading,
.pain-section .pain-grid {
  position: relative;
  z-index: 1;
}

.split-heading {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 64px;
  align-items: end;
}

.pain-grid,
.case-grid,
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.pain-grid {
  gap: 28px;
  margin-top: 56px;
}

.pain-grid article,
.case-grid article,
.security-grid article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  transform: translateZ(0);
  transition:
    transform 0.28s var(--ease-out),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.pain-grid article {
  min-height: 320px;
  display: grid;
  grid-template-rows: 178px minmax(0, 1fr);
  padding: 12px;
  border-color: rgba(218, 225, 242, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 68px rgba(73, 91, 135, 0.08);
}

.pain-grid article:hover {
  border-color: rgba(166, 188, 231, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 82px rgba(73, 91, 135, 0.14);
}

.pain-grid article > img {
  width: 100%;
  height: 100%;
  min-height: 178px;
  border-radius: 14px 14px 10px 10px;
  object-fit: cover;
  background: #f5f7ff;
}

.pain-copy {
  margin-top: 12px;
  padding: 22px 22px 18px;
  border: 1px solid rgba(218, 225, 242, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pain-grid span {
  display: none;
}

.pain-grid h3,
.case-grid h3,
.security-grid h3 {
  margin: 14px 0 10px;
  font-size: 21px;
}

.pain-grid h3 {
  margin: 0 0 12px;
  color: #14213a;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 700;
}

.pain-grid p,
.case-grid p,
.case-grid span,
.security-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.pain-grid p {
  max-width: none;
  margin: 0;
  color: #61718a;
  font-size: 15px;
  line-height: 1.75;
}

.security {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f6f9ff 0%, #ecf4ff 100%);
  border-top: 1px solid rgba(220, 232, 249, 0.94);
  border-bottom: 1px solid rgba(220, 232, 249, 0.94);
}

.security .section-heading {
  position: relative;
  z-index: 1;
}

.security .section-heading h2 {
  max-width: 760px;
  margin-inline: auto;
}

.security .section-heading > p:last-child {
  max-width: 760px;
}

.security-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
  align-items: stretch;
}

.flow-section {
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(69, 216, 255, 0.26), transparent 32%),
    linear-gradient(135deg, #0d2ac8, #1768ff 58%, #7c42ff);
}

.flow-panel {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  margin: 0 auto;
}

.flow-copy {
  padding: 14px 0;
}

.flow-copy h2 {
  color: #fff;
}

.flow-copy p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 30px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.check-list img {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 5px;
  object-fit: contain;
}

.flow-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 12, 32, 0.32);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.flow-visual:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 34px 86px rgba(0, 12, 32, 0.42);
}

.flow-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  animation: softFloat 7.8s ease-in-out infinite;
}

.solutions {
  padding-top: 88px;
  background:
    radial-gradient(circle at 78% 96%, rgba(88, 158, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #f8fcff 0%, #eaf6ff 34%, #f7fbff 100%);
}

.industry-heading,
.clients-heading {
  text-align: center;
}

.industry-heading h2,
.clients-heading h2 {
  margin: 0;
  color: #08172f;
  font-size: clamp(32px, 3.1vw, 46px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0;
}

.industry-heading p,
.clients-heading p {
  max-width: 780px;
  margin: 18px auto 0;
  color: #667085;
  font-size: 17px;
  line-height: 1.75;
}

.solution-tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
  overflow-x: auto;
  padding: 4px 4px 7px;
  scrollbar-width: thin;
}

.industry-tabs {
  width: min(860px, calc(100% - 48px));
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-bottom: 0;
}

.solution-tabs button {
  position: relative;
  min-width: 96px;
  min-height: 92px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 16px 16px 0 0;
  color: #536276;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 700;
  transition:
    transform 0.22s var(--ease-out),
    color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.industry-tabs button {
  min-width: 76px;
  min-height: 98px;
  padding: 4px 8px 14px;
  border-bottom-width: 4px;
  border-radius: 0;
  color: #15223a;
  font-size: 16px;
  background: transparent;
}

.solution-tabs button img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(23, 104, 255, 0.12);
  transition:
    transform 0.25s var(--spring),
    box-shadow 0.25s ease;
}

.industry-tabs button img {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

.solution-tabs button:hover {
  transform: translateY(-3px);
  color: var(--blue-700);
  background: rgba(23, 104, 255, 0.06);
}

.solution-tabs button:hover img {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 16px 32px rgba(23, 104, 255, 0.18);
}

.solution-tabs button.active {
  color: var(--blue-700);
  border-color: var(--blue-700);
  background: linear-gradient(180deg, rgba(23, 104, 255, 0.1), rgba(255, 255, 255, 0));
  box-shadow: 0 14px 34px rgba(23, 104, 255, 0.08);
}

.industry-tabs button.active {
  color: var(--blue-700);
  background: transparent;
  box-shadow: none;
}

.solution-tabs button.active img {
  animation: tabPop 0.36s var(--spring);
}

.solution-showcase {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 58px auto 0;
  overflow: visible;
  min-height: 0;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #142033;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.solution-stage {
  width: min(1180px, calc(100% - 48px));
  min-height: 0;
  margin-top: 58px;
  padding: 0 0 88px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.solution-stage-heading {
  margin: 0 0 18px;
  text-align: center;
}

.solution-stage-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(23, 104, 255, 0.18);
  border-radius: 999px;
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.solution-stage-heading h3 {
  margin: 12px 0 8px;
  color: #071832;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.solution-stage-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: #5f6f86;
  font-size: 15px;
  line-height: 1.7;
}

.solution-stage:hover,
.solution-showcase:hover {
  transform: none;
  box-shadow: none;
}

.solution-state-frame {
  overflow: hidden;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 24px 60px rgba(26, 72, 148, 0.1),
    0 0 0 1px rgba(214, 232, 255, 0.72);
}

.solution-state-image {
  width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: contain;
  transition:
    opacity 0.24s ease,
    transform 0.24s var(--ease-out);
}

.solution-showcase.is-switching .solution-state-image {
  opacity: 0.18;
  transform: translateY(10px);
}
.developers {
  background: linear-gradient(180deg, #f6fbff, #edf7ff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.developer-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 42px;
  align-items: center;
  padding: 48px;
  border: 1px solid #dcecff;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-subtle);
  transition:
    transform 0.28s var(--ease-out),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.developer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 104, 255, 0.28);
  box-shadow: 0 30px 76px rgba(24, 91, 255, 0.16);
}

.api-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.api-grid span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #25466e;
  border: 1px solid var(--line);
  background: #f7f9fc;
  font-weight: 800;
  transition:
    transform 0.2s var(--ease-out),
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.api-grid span:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 104, 255, 0.28);
  color: var(--blue-700);
  background: #fff;
}

.developer-flow-image {
  width: 100%;
  height: 390px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(3, 18, 54, 0.18);
  animation: softFloat 7.4s ease-in-out infinite;
  transition: transform 0.36s var(--ease-out);
}

.developer-card:hover .developer-flow-image {
  transform: scale(1.025);
}

.case-grid article {
  min-height: 190px;
}

.case-grid p {
  margin: 0;
  color: var(--blue-600);
  font-weight: 900;
}

.case-grid span {
  display: block;
  margin-top: 20px;
  font-size: 14px;
}

.clients-section {
  overflow: hidden;
  padding: 88px 0 72px;
  background:
    linear-gradient(180deg, #fff 0%, #fff 70%, #eef8ff 100%);
}

.clients-heading p {
  max-width: 620px;
}

.client-showcase {
  display: grid;
  grid-template-columns: 258px 258px 628px;
  gap: 18px;
  align-items: stretch;
  margin-top: 44px;
  transition: grid-template-columns 0.42s var(--ease-out);
}

.client-hover-showcase:has(.client-card:nth-child(1).active) {
  grid-template-columns: 628px 258px 258px;
}

.client-hover-showcase:has(.client-card:nth-child(2).active) {
  grid-template-columns: 258px 628px 258px;
}

.client-hover-showcase:has(.client-card:nth-child(3).active) {
  grid-template-columns: 258px 258px 628px;
}

.client-hover-showcase.is-active-1 {
  grid-template-columns: 628px 258px 258px;
}

.client-hover-showcase.is-active-2 {
  grid-template-columns: 258px 628px 258px;
}

.client-hover-showcase.is-active-3 {
  grid-template-columns: 258px 258px 628px;
}

.client-card {
  position: relative;
  min-height: 332px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid transparent;
  box-shadow: 0 24px 64px rgba(42, 97, 190, 0.12);
  transition:
    transform 0.32s var(--ease-out),
    box-shadow 0.32s ease;
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 82px rgba(42, 97, 190, 0.18);
}

.client-gradient-blue,
.client-gradient-red,
.client-gradient-cyan {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: #fff;
}

.client-gradient-blue {
  background: linear-gradient(145deg, #3d6cff 0%, #36c7ff 100%);
}

.client-gradient-red {
  background: linear-gradient(145deg, #ff4f62 0%, #ff4260 52%, #ff7a86 100%);
}

.client-gradient-cyan {
  color: #15223a;
  border: 1px solid rgba(177, 235, 244, 0.72);
  background: linear-gradient(90deg, #ecfeff 0%, #dffbff 100%);
}

.client-summary,
.client-detail {
  transition:
    opacity 0.28s ease;
}

.client-summary {
  min-width: 0;
  min-height: 276px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}

.client-summary > div {
  display: grid;
  gap: 14px;
  min-height: 154px;
  align-content: start;
  width: min(100%, 220px);
}

.client-detail {
  position: absolute;
  inset: 28px;
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
}

.client-card.active {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.client-gradient-blue.active {
  background:
    radial-gradient(circle at 88% 18%, rgba(119, 205, 255, 0.35), transparent 32%),
    linear-gradient(135deg, #2864ff 0%, #33c3ff 100%);
}

.client-gradient-red.active {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 195, 204, 0.32), transparent 34%),
    linear-gradient(135deg, #ff3e58 0%, #ff5068 54%, #ff7d8f 100%);
}

.client-gradient-cyan.active {
  color: #15223a;
  border-color: rgba(177, 235, 244, 0.72);
  background: linear-gradient(90deg, #ecfeff 0%, #dffbff 100%);
}

.client-card.active .client-summary {
  opacity: 0;
  pointer-events: none;
}

.client-card.active .client-detail {
  opacity: 1;
  pointer-events: auto;
}

.client-detail img {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(23, 104, 255, 0.14);
}

.client-detail-copy {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  align-content: start;
  min-width: 0;
  width: min(100%, 220px);
  min-height: 276px;
}

.client-detail-spacer {
  display: none;
}

.client-detail span {
  color: rgba(255, 255, 255, 0.88);
}

.client-detail h3 {
  color: #fff;
  font-size: clamp(22px, 1.45vw, 25px);
  line-height: 1.28;
}

.client-detail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.client-gradient-cyan.active .client-detail span {
  color: #0f6cbf;
}

.client-gradient-cyan.active .client-detail h3 {
  color: #0d1b32;
}

.client-gradient-cyan.active .client-detail p {
  color: #42526b;
}

.client-card span {
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-weight: 900;
}

.client-card h3 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(22px, 1.45vw, 25px);
  line-height: 1.28;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.client-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  font-size: 16px;
  overflow-wrap: anywhere;
}

.client-gradient-cyan .client-summary p {
  color: #42526b;
}

.client-card a {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.24);
  font-size: 22px;
  font-weight: 900;
  transition:
    transform 0.22s var(--spring),
    background 0.22s ease;
}

.client-gradient-cyan a {
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.72);
}

.client-card a:hover {
  transform: rotate(12deg) scale(1.06);
  background: rgba(255, 255, 255, 0.34);
}

.client-divider {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin: 54px auto 26px;
  color: #8a97aa;
  font-size: 15px;
}

.client-divider::before,
.client-divider::after {
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9d3df);
  content: "";
}

.client-divider::after {
  background: linear-gradient(90deg, #c9d3df, transparent);
}

.client-logo-wall {
  display: grid;
  grid-template-columns: repeat(8, minmax(120px, 1fr));
  gap: 18px;
}

.client-logo-wall span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  border: 1px solid #edf2f8;
  border-radius: 8px;
  color: #334155;
  background: #fff;
  box-shadow: 0 10px 28px rgba(25, 52, 94, 0.06);
  font-weight: 900;
  transition:
    transform 0.24s var(--ease-out),
    color 0.24s ease,
    box-shadow 0.24s ease;
}

.client-logo-wall span:hover {
  transform: translateY(-5px);
  color: var(--blue-700);
  box-shadow: 0 18px 38px rgba(25, 93, 210, 0.12);
}

.security-card {
  position: relative;
  min-height: 280px;
  display: grid;
  grid-template-columns: minmax(210px, 0.92fr) minmax(240px, 1.08fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  padding: 30px 28px 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(49, 92, 156, 0.16);
  transition:
    transform 0.28s var(--ease-out),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.security-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.18), transparent 40%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.34), transparent 28%);
  content: "";
  pointer-events: none;
}

.security-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.76);
  box-shadow: 0 30px 66px rgba(42, 91, 164, 0.22);
}

.security-card-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  gap: 10px;
}

.security-card-copy h3 {
  margin: 0;
  color: #08214e;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.security-card-copy p {
  margin: 0;
  color: rgba(8, 33, 78, 0.72);
  font-size: 15px;
  line-height: 1.78;
}

.security-card-image {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 212px;
  overflow: hidden;
  border-radius: 18px;
}

.security-card-image img {
  width: 100%;
  height: 100%;
  max-height: 250px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 28px rgba(31, 80, 150, 0.2));
  transform: scale(1.16);
  transition: transform 0.3s var(--ease-out);
}

.security-card:hover .security-card-image img {
  transform: scale(1.2);
}

.security-card-stability {
  background:
    linear-gradient(135deg, #7befc8 0%, #45d8d9 50%, #1db8df 100%);
}

.security-card-review {
  background:
    linear-gradient(135deg, #ffb6dd 0%, #fb68bd 52%, #c04cff 100%);
}

.security-card-permission {
  background:
    linear-gradient(135deg, #addcff 0%, #6ea0ff 52%, #2d43d3 100%);
}

.security-card-trace {
  background:
    linear-gradient(135deg, #b6defd 0%, #829eff 48%, #11128d 100%);
}

.contact {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: none;
  min-height: 0;
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: calc(50% - 50vw);
  padding: 0;
  border-radius: 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 23, 84, 0.9) 0%, rgba(15, 62, 184, 0.82) 36%, rgba(15, 69, 196, 0.46) 68%, rgba(8, 27, 90, 0.2) 100%),
    url("./image/contact-band-bg.webp") center center / cover no-repeat;
}

.contact-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
  padding: 68px 0;
}

.contact-shell > * {
  position: relative;
  z-index: 1;
}

.contact .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 18px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.contact-copy {
  display: grid;
  gap: 22px;
  max-width: 620px;
  padding: 18px 0;
}

.contact-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 4.5vw, 60px);
  line-height: 1.05;
  text-shadow: 0 16px 40px rgba(4, 18, 72, 0.18);
}

.contact-copy .cta-title-line:last-child {
  white-space: nowrap;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.82;
}

.contact-meta span {
  color: rgba(255, 255, 255, 0.8);
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.contact-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 700;
}

.lead-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius-lg);
  color: #15223a;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 58px rgba(0, 28, 88, 0.12);
  transition:
    transform 0.28s var(--ease-out),
    box-shadow 0.28s ease;
}

.contact .lead-form {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 76px rgba(0, 22, 76, 0.22);
  backdrop-filter: blur(18px);
}

.contact:hover .lead-form {
  transform: translateY(-5px);
  box-shadow: 0 30px 76px rgba(0, 28, 88, 0.18);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #33415c;
  font-size: 13px;
  font-weight: 800;
}

.lead-form input:not([type="checkbox"]),
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d8e4f3;
  border-radius: var(--radius);
  padding: 0 13px;
  color: #15223a;
  background: #fff;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.lead-form input:not([type="checkbox"]):focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(23, 104, 255, 0.72);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(23, 104, 255, 0.1);
}

.lead-form textarea {
  min-height: 94px;
  padding: 12px 13px;
  resize: vertical;
}

.form-full,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: #69788f;
  font-size: 13px;
}

.policy-section {
  padding-top: 72px;
}

.policy-panel {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 22px;
  padding: 34px;
  border: 1px solid #e2ebf7;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.96), rgba(255, 255, 255, 0.98)),
    #fff;
  box-shadow: var(--shadow-subtle);
}

.policy-panel article {
  padding-bottom: 22px;
  border-bottom: 1px solid #e8eef7;
}

.policy-panel article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-panel h2 {
  margin: 0 0 10px;
  color: #14213d;
  font-size: 20px;
  letter-spacing: 0;
}

.policy-panel p {
  margin: 0;
  color: #5f6f86;
  line-height: 1.9;
}

.policy-updated {
  color: var(--blue-700) !important;
  font-weight: 800;
}

.floating-contact {
  position: fixed;
  z-index: 35;
  right: 0;
  top: 138px;
  overflow: hidden;
  border-radius: var(--radius) 0 0 var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(8, 27, 70, 0.16);
  animation: contactIn 0.62s 0.55s var(--ease-out) both;
}

.floating-contact a {
  width: 72px;
  min-height: 78px;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 10px 8px;
  border-bottom: 1px solid #edf2f7;
  color: #33415c;
  font-size: 13px;
  text-align: center;
  transition:
    width 0.22s var(--ease-out),
    color 0.22s ease,
    background 0.22s ease;
}

.floating-contact a:hover {
  width: 86px;
  color: var(--blue-700);
  background: #f5faff;
}

.floating-contact img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.22s var(--spring);
}

.floating-contact a:hover img {
  transform: translateY(-3px) scale(1.06);
}

.promo-bar {
  position: fixed;
  z-index: 34;
  left: 50%;
  bottom: 0;
  overflow: hidden;
  width: 100%;
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 14px 84px 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 0;
  border-radius: 0;
  color: #fff;
  background:
    radial-gradient(circle at 14% 48%, rgba(165, 214, 255, 0.55), transparent 17%),
    radial-gradient(circle at 34% -6%, rgba(255, 255, 255, 0.3), transparent 28%),
    linear-gradient(90deg, #78afff 0%, #2f74ff 24%, #1d62ff 54%, #0f47d8 100%);
  background-size: 180% 180%;
  box-shadow:
    0 -18px 54px rgba(15, 71, 216, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transform: translateX(-50%);
  animation:
    centeredRiseIn 0.58s 0.78s var(--ease-out) both,
    promoGradient 7.5s ease-in-out infinite;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease;
}

.promo-bar::before,
.promo-bar::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.promo-bar::before {
  inset: -10px auto -10px -42px;
  width: 300px;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.82), transparent 18%),
    radial-gradient(circle at 44% 50%, rgba(255, 255, 255, 0.34), transparent 42%);
  filter: blur(10px);
  opacity: 0.65;
}

.promo-bar::after {
  left: 32px;
  right: 170px;
  top: 8px;
  bottom: 8px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02) 32%, rgba(255, 255, 255, 0.18) 58%, rgba(255, 255, 255, 0));
  clip-path: polygon(0 56%, 12% 18%, 30% 24%, 46% 62%, 64% 36%, 82% 46%, 100% 0, 100% 100%, 0 100%);
  opacity: 0.42;
}

.promo-bar:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow:
    0 -22px 60px rgba(15, 71, 216, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.promo-bar-visual,
.promo-bar-copy,
.promo-bar a,
.promo-bar button {
  position: relative;
  z-index: 1;
}

.promo-bar-copy {
  grid-column: 2;
  min-width: 0;
  display: grid;
  gap: 3px;
  justify-items: center;
  justify-self: center;
  text-align: center;
}

.promo-bar-copy span {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  opacity: 0.88;
}

.promo-bar-copy strong {
  display: block;
  min-width: 0;
  color: #fff;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.12;
  font-weight: 900;
  text-shadow: 0 8px 18px rgba(25, 79, 226, 0.3);
}

.promo-bar a {
  grid-column: 3;
  justify-self: end;
  position: relative;
  overflow: hidden;
  min-width: 156px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: 18px;
  border: 1px solid rgba(207, 223, 255, 0.92);
  color: var(--blue-800);
  background: linear-gradient(180deg, #ffffff, #eef4ff);
  box-shadow:
    0 14px 28px rgba(4, 36, 126, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 900;
  transition:
    transform 0.2s var(--ease-out),
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.promo-bar a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 18px 34px rgba(4, 36, 126, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.promo-bar button {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition:
    transform 0.2s var(--ease-out),
    opacity 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.promo-bar button::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 5l10 10M15 5L5 15' stroke='white' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.promo-bar button:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(90deg) scale(1.05);
}

.promo-bar button img {
  display: none;
}

.is-hidden {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-item,
  .hero-content > *,
  .subpage-hero-content > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .industry-tags {
    overflow: visible;
    mask-image: none;
  }

  .industry-tag-track {
    width: auto;
    flex-wrap: wrap;
    animation: none !important;
    transform: none !important;
  }

  .industry-tag-group {
    flex-wrap: wrap;
  }

  .industry-tag-group[aria-hidden="true"] {
    display: none;
  }

  .payment-card,
  .payout-card,
  .manage-card,
  .marketing-card,
  .product-sub-panel,
  .product-aigc-panel,
  .aigc-card-list article,
  .product-core-panel::before,
  .product-title-icon img,
  .product-sub-title span img {
    animation: none !important;
  }
}

.footer {
  position: relative;
  margin-top: 0;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(45, 109, 255, 0.42) 0%, rgba(45, 109, 255, 0.08) 22%, transparent 38%),
    linear-gradient(116deg, transparent 44%, rgba(110, 204, 255, 0.2) 60%, transparent 76%),
    linear-gradient(180deg, #193668 0%, #091222 28%, #03060c 58%, #020304 100%);
  color: rgba(255, 255, 255, 0.9);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px);
  background-size:
    auto,
    132px 132px,
    132px 132px;
  opacity: 0.26;
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 118px;
}

.footer > div:first-child:not(.footer-shell),
.footer > .footer-links,
.footer > .copyright {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.footer > div:first-child:not(.footer-shell) {
  display: grid;
  gap: 14px;
  padding: 48px 0 24px;
}

.footer > div:first-child:not(.footer-shell) p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.8;
}

.footer > .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 20px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer > .footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.22s ease;
}

.footer > .footer-links a:hover,
.footer > .footer-links a:focus-visible {
  color: #fff;
}

.footer > .copyright {
  padding: 18px 0 32px;
  text-align: left;
}

.footer > .footer-meta {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 32px;
  text-align: left;
}

.footer-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px 40px;
  align-items: start;
  padding: 0 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hero::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: -1px;
  width: clamp(240px, 34vw, 420px);
  height: 32px;
  background: linear-gradient(180deg, rgba(73, 132, 255, 0.3), rgba(73, 132, 255, 0));
  filter: blur(10px);
  pointer-events: none;
}

.footer-hero-copy {
  min-width: 0;
}

.footer-hero-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}

.footer-hero h2 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-hero-button {
  min-width: 140px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 0 22px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #1f7fff 0%, #0b5af3 100%);
  box-shadow: 0 16px 34px rgba(18, 91, 255, 0.28);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.22s ease;
}

.footer-hero-button:hover,
.footer-hero-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(18, 91, 255, 0.34);
}

.footer-hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  align-content: start;
  padding-top: 8px;
}

.footer-highlight {
  width: fit-content;
  max-width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(6, 15, 33, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 28px rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.footer-highlight:nth-child(2) {
  margin-left: 26px;
}

.footer-highlight:nth-child(3) {
  margin-left: 12px;
}

.footer-highlight:nth-child(4) {
  margin-left: 44px;
}

.footer-highlight img {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  object-fit: cover;
  flex: 0 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 40px 64px;
  align-items: start;
  padding: 44px 0 30px;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 26px;
  min-width: 0;
}

.footer-nav-group {
  min-width: 0;
}

.footer-nav-group p {
  margin: 0 0 18px;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
}

.footer-nav-group a {
  display: block;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.footer-nav-group a:hover,
.footer-nav-group a:focus-visible {
  color: #fff;
  transform: translateX(4px);
}

.footer-contact-panel {
  min-width: 0;
}

.footer-contact-title {
  margin: 0 0 18px;
  color: #fff;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
}

.footer-contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.footer-contact-list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.footer-contact-list strong {
  color: #fff;
  font-weight: 700;
}

.footer-code-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.footer-code-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(4, 10, 24, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-code {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
  box-shadow:
    inset 0 0 0 1px rgba(5, 12, 28, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.footer-code--image {
  padding: 8px;
  background: #fff;
}

.footer-code-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: contain;
}

.footer-code::before {
  content: "";
  position: absolute;
  inset: 12px;
  background:
    linear-gradient(90deg, #091120 0 10%, transparent 10% 20%, #091120 20% 30%, transparent 30% 40%, #091120 40% 50%, transparent 50% 60%, #091120 60% 70%, transparent 70% 80%, #091120 80% 90%, transparent 90% 100%),
    linear-gradient(#091120 0 10%, transparent 10% 20%, #091120 20% 30%, transparent 30% 40%, #091120 40% 50%, transparent 50% 60%, #091120 60% 70%, transparent 70% 80%, #091120 80% 90%, transparent 90% 100%);
  opacity: 0.84;
}

.footer-code::after {
  content: "";
  position: absolute;
  inset: 8px;
  background:
    linear-gradient(#091120, #091120) 0 0 / 18px 18px no-repeat,
    linear-gradient(#ffffff, #ffffff) 4px 4px / 10px 10px no-repeat,
    linear-gradient(#091120, #091120) 100% 0 / 18px 18px no-repeat,
    linear-gradient(#ffffff, #ffffff) calc(100% - 14px) 4px / 10px 10px no-repeat,
    linear-gradient(#091120, #091120) 0 100% / 18px 18px no-repeat,
    linear-gradient(#ffffff, #ffffff) 4px calc(100% - 14px) / 10px 10px no-repeat;
}

.footer-code-card:nth-child(2) .footer-code::before {
  inset: 14px 10px 10px 14px;
}

.footer-code-card:nth-child(3) .footer-code::before {
  inset: 10px 14px 14px 10px;
}

.footer-code.footer-code--image::before,
.footer-code.footer-code--image::after {
  content: none;
}

.footer-code-card span {
  color: #fff;
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-brand {
  color: #fff;
}

.footer-brand .brand-mark {
  box-shadow: 0 16px 30px rgba(7, 24, 76, 0.22);
}

.footer-brand .brand-text {
  font-size: 24px;
}

.footer-brand-note {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.6;
  transition: color 0.22s ease;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: #fff;
}

.footer-meta {
  display: grid;
  gap: 10px;
  padding-top: 14px;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.copyright a {
  color: inherit;
  text-decoration: none;
  transition: color 0.22s ease;
}

.copyright a:hover,
.copyright a:focus-visible {
  color: rgba(255, 255, 255, 0.84);
}

.footer-records {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 12px;
  max-width: 1080px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}

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

.footer-records a,
.footer-records span:not([aria-hidden="true"]) {
  color: inherit;
}

.footer-records a {
  text-decoration: none;
  transition: color 0.22s ease;
}

.footer-records a:hover,
.footer-records a:focus-visible {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 900px) {
  .footer > div:first-child:not(.footer-shell),
  .footer > .footer-links,
  .footer > .copyright,
  .footer > .footer-meta {
    width: min(100% - 36px, 720px);
  }

  .footer > div:first-child:not(.footer-shell) {
    padding: 42px 0 22px;
  }
}

@media (max-width: 520px) {
  .footer > div:first-child:not(.footer-shell),
  .footer > .footer-links,
  .footer > .copyright,
  .footer > .footer-meta {
    width: min(100% - 28px, 560px);
  }

  .footer > div:first-child:not(.footer-shell) {
    gap: 12px;
    padding: 38px 0 20px;
  }

  .footer > div:first-child:not(.footer-shell) p,
  .footer > .footer-links a {
    font-size: 13px;
  }

  .footer > .footer-links {
    gap: 8px 16px;
    padding: 18px 0 20px;
  }

  .footer > .copyright,
  .footer > .footer-meta {
    padding: 16px 0 28px;
  }
}

@media (max-width: 430px) {
  .footer > div:first-child:not(.footer-shell),
  .footer > .footer-links,
  .footer > .copyright,
  .footer > .footer-meta {
    width: min(100% - 22px, 390px);
  }
}

@media (max-width: 1100px) {
  .site-header {
    padding: 0 32px;
  }

  .nav-links {
    gap: 20px;
  }

  .mega-panel {
    min-height: 500px;
  }

  .mega-menu-inner {
    width: calc(100% - 32px);
    min-height: 424px;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 34px 0 36px;
  }

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

  .mega-card {
    min-height: 112px;
    padding: 24px 18px 16px;
  }

  .mega-card span {
    top: 24px;
    left: 16px;
    width: min(58%, 126px);
  }

  .mega-card strong {
    font-size: 16px;
  }

  .mega-card small {
    font-size: 13px;
  }

  .logo-strip {
    padding: 12px 32px;
  }

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

  .feature-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 520px;
  }

  .feature-large-visual {
    min-height: 488px;
  }

  .feature-large-visual img {
    min-height: 488px;
  }

  .product-matrix-stack,
  .product-matrix-band {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .product-matrix-stack {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .matrix-feature {
    min-height: 206px;
  }

  .matrix-card-link {
    grid-template-columns: 1fr;
    grid-template-rows: 132px minmax(0, 1fr);
  }

  .matrix-feature:not(.compact) .matrix-feature-visual {
    grid-row: 1;
  }

  .matrix-feature:not(.compact) .matrix-feature-copy {
    grid-row: 2;
  }

  .product-matrix-band {
    grid-template-columns: 1fr;
  }

  .flow-panel,
  .developer-card,
  .contact,
  .detail-layout,
  .contact-page-section {
    grid-template-columns: 1fr;
  }

  .industry-tabs {
    width: min(100% - 48px, 860px);
    justify-content: flex-start;
  }

  .solution-stage {
    padding-right: 32px;
    padding-left: 32px;
  }

  .client-showcase {
    grid-template-columns: 628px 258px 258px;
    gap: 36px;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .client-hover-showcase:has(.client-card:nth-child(1).active),
  .client-hover-showcase:has(.client-card:nth-child(2).active),
  .client-hover-showcase:has(.client-card:nth-child(3).active),
  .client-hover-showcase.is-active-1,
  .client-hover-showcase.is-active-2,
  .client-hover-showcase.is-active-3 {
    grid-template-columns: 628px 258px 258px;
  }

  .client-logo-wall {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-card-grid,
  .compact-grid,
  .case-detail-grid,
  .zego-feature-grid,
  .zego-ability-grid,
  .zego-combo-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .subpage-hero-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .subpage-hero-business h1,
  .subpage-hero-lead {
    max-width: min(100%, 640px);
  }

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

  .flow-steps,
  .detail-access-panel .detail-number-rail,
  .detail-workflow-section > .detail-number-rail,
  .zego-process {
    grid-template-columns: repeat(3, 1fr);
  }

  .flow-steps article::after,
  .detail-number-rail article::after {
    display: none;
  }

  .detail-workflow-layout,
  .detail-workflow-layout.reverse,
  .detail-growth-layout,
  .detail-access-panel {
    grid-template-columns: 1fr;
  }

  .detail-insight-strip,
  .industry-story-grid,
  .marketplace-roles,
  .combo-lane,
  .detail-matrix-board,
  .detail-record-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-matrix-board article.featured {
    grid-column: span 2;
    min-height: 320px;
  }

  .detail-matrix-board article.featured h3 {
    margin-top: 80px;
  }

  .zego-detail-hero-inner,
  .zego-showcase {
    grid-template-columns: 1fr;
  }

  .zego-detail-hero {
    min-height: 0;
  }

  .zego-detail-hero-visual,
  .zego-showcase-visual {
    min-height: 392px;
  }

  .zego-detail-hero-visual img,
  .zego-showcase-visual img {
    height: 392px;
  }

  .footer-hero,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-hero {
    gap: 26px;
  }

  .footer-hero-highlights {
    max-width: 760px;
  }

  .footer-content {
    gap: 34px;
  }

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

  .zego-process article:nth-child(3n)::after {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 58px;
    padding: 0 18px;
  }

  .nav-links {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    color: #13213d;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 32px rgba(12, 35, 79, 0.08);
  }

  .site-header.menu-open .nav-links {
    display: flex;
  }

  .nav-links > a,
  .nav-trigger {
    padding: 14px 4px;
    border-bottom: 1px solid #edf2f8;
  }

  .nav-links > a::after,
  .nav-trigger::after {
    display: none;
  }

  .nav-item {
    display: block;
  }

  .nav-trigger {
    width: 100%;
    text-align: left;
  }

  .mega-menu {
    position: static;
    display: none;
    z-index: auto;
    min-height: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: #fff;
    box-shadow: none;
  }

  .mega-panel {
    min-height: 0;
    display: block;
    background: #fff;
  }

  .mega-panel::before {
    display: none;
  }

  .mega-nav-item:hover .mega-menu,
  .mega-nav-item:focus-within .mega-menu {
    display: none;
  }

  .mega-nav-item.is-open .mega-menu {
    display: block;
  }

  .mega-menu-inner {
    width: 100%;
    min-height: 0;
    display: block;
    padding: 0 0 12px;
    border: 0;
    border-bottom: 1px solid #edf2f8;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .mega-aside {
    display: none;
  }

  .mega-heading {
    display: none;
  }

  .mega-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 6px 0 0;
  }

  .mega-card {
    min-height: 86px;
    padding: 12px 14px;
    border-color: #e7eef8;
    box-shadow: none;
  }

  .mega-card span {
    top: 16px;
    left: 16px;
    width: min(76%, 220px);
  }

  .mega-card strong {
    font-size: 14px;
  }

  .mega-card small {
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
  }

  .platform-login,
  .demo-link {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 690px;
  }

  .hero-bg {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 12, 28, 0.94), rgba(11, 35, 74, 0.74) 62%, rgba(7, 17, 31, 0.42)),
      rgba(5, 12, 28, 0.2);
  }

  .hero-content {
    width: min(100% - 36px, 720px);
    padding-top: 100px;
  }

  .hero h1 {
    font-size: clamp(32px, 7.4vw, 48px);
    line-height: 1.12;
  }

  .hero h1 span {
    max-width: 100%;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.75;
  }

  .logo-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 18px;
  }

  .logo-strip-copy {
    display: grid;
    gap: 2px;
  }

  .industry-tag-track {
    gap: 10px;
  }

  .industry-tag-group {
    gap: 10px;
  }

  .industry-tag-group span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 12px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading,
  .split-heading,
  .feature-grid,
  .pain-grid,
  .industry-heading,
  .solution-tabs,
  .solution-showcase,
  .developer-card,
  .clients-heading,
  .client-showcase,
  .client-logo-wall,
  .case-grid,
  .security-grid,
  .contact,
  .flow-panel,
  .page-card-grid,
  .detail-layout,
  .flow-steps,
  .zego-detail-hero-inner,
  .zego-showcase,
  .zego-feature-grid,
  .zego-combo-panel,
  .zego-process,
  .detail-center-head,
  .detail-band-head,
  .detail-matrix-head,
  .detail-ledger-head,
  .marketplace-copy,
  .industry-story-copy,
  .detail-insight-strip,
  .detail-matrix-board,
  .industry-story-grid,
  .marketplace-roles,
  .combo-lane,
  .detail-record-grid,
  .detail-workflow-layout,
  .detail-growth-layout,
  .detail-access-panel,
  .detail-image-stage.wide,
  .detail-image-stage.ledger,
  .case-detail-grid,
  .contact-page-section,
  .cta-panel {
    width: min(100% - 36px, 720px);
  }

  .zego-screen-head,
  .zego-screen-visual {
    width: min(100% - 36px, 720px);
  }

  .split-heading,
  .solution-showcase,
  .detail-layout,
  .contact-page-section,
  .cta-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-grid,
  .pain-grid,
  .case-grid,
  .security-grid,
  .api-grid,
  .lead-form,
  .page-card-grid,
  .zego-feature-grid,
  .zego-ability-grid,
  .zego-combo-panel,
  .compact-grid,
  .case-detail-grid {
    grid-template-columns: 1fr;
  }

  .flow-steps,
  .detail-number-rail,
  .zego-process {
    grid-template-columns: 1fr 1fr;
  }

  .detail-insight-strip,
  .industry-story-grid,
  .marketplace-roles,
  .combo-lane,
  .detail-matrix-board,
  .detail-record-grid,
  .detail-workflow-layout,
  .detail-workflow-layout.reverse,
  .detail-growth-layout,
  .detail-access-panel {
    grid-template-columns: 1fr;
  }

  .detail-workflow-layout,
  .detail-growth-layout,
  .detail-access-panel {
    gap: 28px;
  }

  .detail-center-screen,
  .detail-scenario-band,
  .detail-workflow-section,
  .detail-matrix-section,
  .detail-growth-section,
  .detail-industry-story,
  .detail-marketplace-section,
  .detail-combo-lane,
  .detail-ledger-section,
  .detail-record-section {
    padding: 64px 0;
  }

  .detail-center-head h2,
  .detail-band-head h2,
  .detail-matrix-head h2,
  .detail-ledger-head h2,
  .marketplace-copy h2,
  .industry-story-copy h2,
  .detail-workflow-copy h2,
  .detail-growth-layout h2 {
    font-size: clamp(30px, 7vw, 40px);
  }

  .detail-image-stage.wide,
  .detail-image-stage.ledger {
    margin-top: 34px;
  }

  .detail-scenario-map {
    margin-top: 34px;
  }

  .detail-scenario-map-overlay {
    inset: 14px;
  }

  .detail-scenario-map-node {
    max-width: min(180px, 31vw);
    gap: 6px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .detail-scenario-map-node span {
    font-size: 15px;
  }

  .detail-scenario-map-node small {
    font-size: 12px;
    line-height: 1.55;
  }

  .detail-image-stage.tilt-left,
  .detail-image-stage.tilt-right {
    transform: none;
  }

  .detail-access-panel {
    padding: 28px;
  }

  .detail-matrix-board article.featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .detail-matrix-board article.featured h3 {
    margin-top: 44px;
    font-size: 32px;
  }

  .detail-number-rail {
    margin-top: 28px;
  }

  .detail-access-panel .detail-number-rail {
    margin-top: 0;
  }

  .zego-detail-hero {
    min-height: 0;
    padding: 96px 0 54px;
  }

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

  .zego-detail-hero h1 {
    font-size: clamp(30px, 7.2vw, 42px);
    line-height: 1.16;
  }

  .zego-detail-hero-copy > p:not(.eyebrow) {
    font-size: 15px;
    max-width: min(100%, 560px);
  }

  .zego-detail-hero-visual,
  .zego-showcase-visual {
    min-height: 280px;
  }

  .zego-detail-hero-visual img,
  .zego-showcase-visual img {
    height: 280px;
  }

  .zego-screen-section {
    padding: 66px 0 72px;
  }

  .zego-screen-head h2 {
    font-size: clamp(30px, 7vw, 40px);
  }

  .zego-screen-head > p:not(.eyebrow) {
    font-size: 15px;
  }

  .zego-screen-visual {
    margin-top: 34px;
    border-radius: 12px;
  }

  .zego-showcase-section,
  .zego-capability-section {
    padding: 64px 0;
  }

  .zego-showcase {
    gap: 28px;
  }

  .zego-showcase h2 {
    font-size: clamp(30px, 7vw, 40px);
  }

  .zego-feature-card {
    min-height: 0;
    padding: 26px 24px;
  }

  .zego-process article:nth-child(3n)::after {
    display: block;
  }

  .zego-process article:nth-child(2n)::after {
    display: none;
  }

  .product-matrix {
    padding: 8px;
    border-radius: 18px;
  }

  .feature-card-large {
    min-height: 0;
    padding: 14px;
  }

  .feature-large-copy {
    top: 28px;
    left: 28px;
    max-width: min(430px, calc(100% - 56px));
  }

  .feature-large-visual {
    min-height: 440px;
    margin: 0;
  }

  .feature-large-visual img {
    min-height: 440px;
    object-position: 68% center;
  }

  .product-matrix-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .matrix-card-link,
  .matrix-feature.compact .matrix-card-link {
    grid-template-columns: 1fr;
    grid-template-rows: 132px minmax(0, 1fr);
    padding: 16px;
  }

  .matrix-feature:not(.compact) .matrix-feature-visual,
  .matrix-feature.compact .matrix-feature-visual {
    grid-column: auto;
    grid-row: 1;
  }

  .matrix-feature:not(.compact) .matrix-feature-copy,
  .matrix-feature.compact .matrix-feature-copy {
    grid-column: auto;
    grid-row: 2;
  }

  .matrix-feature-visual,
  .matrix-feature-visual img,
  .matrix-feature.compact .matrix-feature-visual,
  .matrix-feature.compact .matrix-feature-visual img {
    min-height: 132px;
  }

  .industry-tabs {
    width: min(100% - 36px, 720px);
    gap: 18px;
  }

  .industry-tabs button {
    min-width: 78px;
    font-size: 14px;
  }

  .solution-stage {
    width: 100%;
    padding: 0 18px 62px;
  }

  .client-showcase {
    width: calc(100% - 36px);
    grid-template-columns: 420px 260px 260px;
    gap: 18px;
    margin-top: 34px;
  }

  .client-hover-showcase:has(.client-card:nth-child(1).active),
  .client-hover-showcase:has(.client-card:nth-child(2).active),
  .client-hover-showcase:has(.client-card:nth-child(3).active),
  .client-hover-showcase.is-active-1,
  .client-hover-showcase.is-active-2,
  .client-hover-showcase.is-active-3 {
    grid-template-columns: 420px 260px 260px;
  }

  .client-detail {
    inset: 18px;
    gap: 18px;
  }

  .client-detail img {
    grid-column: auto;
    grid-row: auto;
    height: 166px;
    min-height: 0;
  }

  .client-detail-copy {
    grid-column: auto;
    grid-row: auto;
    justify-content: flex-start;
    gap: 10px;
    min-height: 0;
    width: auto;
  }

  .client-detail p {
    margin: 0;
  }

  .client-logo-wall {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .flow-visual img {
    height: 330px;
  }

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

  .solution-showcase,
  .developer-card,
  .contact,
  .cta-panel {
    padding: 28px;
  }

  .subpage-hero {
    min-height: 560px;
  }

  .subpage-hero-compact {
    min-height: 460px;
  }

  .subpage-hero-bg {
    object-position: 64% center;
  }

  .subpage-hero-content {
    width: min(100% - 36px, 720px);
    padding-top: 100px;
  }

  .subpage-hero h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .subpage-hero-content > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.75;
  }

  .subpage-hero-business {
    padding: 92px 0 28px;
  }

  .subpage-hero-business h1 {
    font-size: clamp(34px, 8.8vw, 46px);
  }

  .subpage-hero-lead {
    font-size: 15px;
    line-height: 1.8;
  }

  .subpage-hero-metrics {
    grid-template-columns: 1fr;
  }

  .subpage-hero-visual-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .subpage-hero-visual-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 16px;
  }

  .subpage-hero-business-image {
    aspect-ratio: 1.26 / 1;
    object-position: 72% center;
  }

  .subpage-hero-summary {
    width: min(100% - 36px, 720px);
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
  }

  .subpage-hero-summary article {
    min-height: 0;
  }

  .visual-card img,
  .developer-flow-image {
    height: 300px;
  }

  .contact-page-section {
    margin-bottom: 64px;
  }

  .floating-contact {
    display: none;
  }

  .promo-bar {
    width: 100%;
    min-height: 62px;
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 12px 12px 0 0;
    gap: 12px;
    padding: 10px 46px 10px 14px;
  }

  .promo-bar::before,
  .promo-bar::after,
  .promo-bar-copy span {
    display: none;
  }

  .promo-bar-copy strong {
    min-width: 0;
    font-size: 15px;
    line-height: 1.28;
  }

  .promo-bar a {
    min-width: 92px;
    height: 38px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 13px;
  }

  .footer-shell {
    width: min(100% - 36px, 720px);
    padding: 42px 0 100px;
  }

  .footer-hero {
    gap: 24px;
    padding-bottom: 38px;
  }

  .footer-hero::after {
    right: 0;
    width: min(70%, 320px);
  }

  .footer-hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: none;
  }

  .footer-highlight {
    width: 100%;
    min-height: 46px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .footer-highlight:nth-child(2),
  .footer-highlight:nth-child(3),
  .footer-highlight:nth-child(4) {
    margin-left: 0;
  }

  .footer-content {
    gap: 30px;
    padding: 36px 0 24px;
  }

  .footer-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }

  .footer-bottom {
    gap: 14px 22px;
  }

  .footer-bottom-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 720px;
  }

  .subpage-hero-business {
    padding-top: 84px;
  }

  .subpage-hero-shell,
  .subpage-hero-summary {
    width: min(100% - 28px, 520px);
  }

  .subpage-hero-business h1 {
    font-size: clamp(28px, 8.8vw, 36px);
    line-height: 1.14;
  }

  .subpage-hero-lead {
    font-size: 14px;
    line-height: 1.78;
  }

  .subpage-hero-pills {
    gap: 8px;
    margin-top: 22px;
  }

  .subpage-hero-pills span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .subpage-hero-metrics article,
  .subpage-hero-summary article {
    padding: 18px 16px;
  }

  .subpage-hero-visual-panel {
    padding: 14px;
  }

  .subpage-hero-visual-top span {
    font-size: 16px;
  }

  .subpage-hero-visual-top small,
  .subpage-hero-summary p {
    font-size: 13px;
  }

  .zego-detail-hero {
    padding-top: 88px;
  }

  .zego-detail-hero h1 {
    font-size: clamp(28px, 8.8vw, 36px);
    line-height: 1.18;
  }

  .footer-shell {
    width: min(100% - 28px, 560px);
    padding: 38px 0 96px;
  }

  .footer-brand .brand-text {
    font-size: 22px;
  }

  .footer-hero {
    gap: 20px;
    padding-bottom: 32px;
  }

  .footer-hero h2 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .footer-hero-button {
    width: 100%;
    max-width: 220px;
    min-height: 44px;
    margin-top: 22px;
  }

  .footer-hero-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-highlight {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 12px;
  }

  .footer-content {
    gap: 26px;
    padding: 32px 0 20px;
  }

  .footer-link-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-nav-group p {
    margin-bottom: 12px;
  }

  .footer-contact-list span {
    font-size: 13px;
    line-height: 1.76;
  }

  .footer-code-grid {
    gap: 10px;
  }

  .footer-code-card {
    padding: 10px;
    border-radius: 14px;
  }

  .footer-code-card span {
    font-size: 12px;
  }

  .footer-meta {
    gap: 8px;
  }

  .copyright,
  .footer-records {
    font-size: 12px;
  }

  .zego-detail-hero-copy > p:not(.eyebrow) {
    line-height: 1.78;
  }

  .zego-detail-hero-visual {
    border-radius: 12px;
  }

  .detail-center-head,
  .detail-band-head,
  .detail-matrix-head,
  .detail-ledger-head,
  .marketplace-copy,
  .industry-story-copy,
  .detail-insight-strip,
  .detail-matrix-board,
  .industry-story-grid,
  .marketplace-roles,
  .combo-lane,
  .detail-record-grid,
  .detail-workflow-layout,
  .detail-growth-layout,
  .detail-access-panel,
  .detail-scenario-map,
  .detail-image-stage.wide,
  .detail-image-stage.ledger {
    width: min(100% - 28px, 520px);
  }

  .detail-scenario-map {
    margin-top: 26px;
    padding-bottom: 18px;
  }

  .detail-scenario-map img {
    aspect-ratio: 5 / 4;
  }

  .detail-scenario-map-overlay {
    position: static;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0 14px;
    margin-top: 14px;
  }

  .detail-scenario-map-node,
  .detail-scenario-map-node.is-top,
  .detail-scenario-map-node.is-left,
  .detail-scenario-map-node.is-right,
  .detail-scenario-map-node.is-bottom {
    position: static;
    max-width: none;
    min-height: 0;
    transform: none;
    text-align: left;
  }

  .detail-scenario-map-node {
    gap: 7px;
    padding: 14px 16px;
  }

  .detail-scenario-map-node span {
    font-size: 14px;
  }

  .detail-scenario-map-node small {
    font-size: 12px;
    line-height: 1.55;
  }

  .detail-insight-strip,
  .industry-story-grid,
  .marketplace-roles,
  .combo-lane,
  .detail-matrix-board,
  .detail-record-grid,
  .detail-number-rail {
    grid-template-columns: 1fr;
  }

  .flow-steps article::after,
  .detail-number-rail article::after {
    display: none;
  }

  .detail-insight-strip article,
  .industry-story-grid article,
  .marketplace-roles article,
  .combo-lane article,
  .detail-matrix-board article {
    min-height: 0;
    padding: 24px 22px;
  }

  .detail-matrix-board article.featured {
    min-height: 0;
  }

  .detail-matrix-board article.featured h3 {
    margin-top: 32px;
    font-size: 28px;
  }

  .detail-access-panel {
    padding: 22px;
  }

  .hero-actions {
    display: grid;
  }

  .primary-button,
  .ghost-button,
  .light-button {
    width: 100%;
  }

  .feature-card,
  .pain-grid article,
  .case-grid article,
  .security-grid article {
    padding: 22px;
  }

  .pain-grid article {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 150px auto;
    padding: 10px;
  }

  .pain-grid article > img {
    min-height: 150px;
  }

  .pain-copy {
    margin-top: 10px;
    padding: 18px;
  }

  .product-matrix {
    width: min(100% - 24px, 720px);
    padding: 6px;
    gap: 10px;
  }

  .feature-card-large {
    min-height: 0;
    gap: 20px;
    padding: 10px;
  }

  .feature-large-tags {
    gap: 8px;
    margin-top: 18px;
  }

  .feature-large-visual {
    min-height: 430px;
    margin: 0;
  }

  .feature-large-visual img {
    min-height: 430px;
    object-position: 70% center;
  }

  .feature-large-copy {
    top: 20px;
    left: 20px;
    max-width: calc(100% - 40px);
    padding: 18px;
  }

  .feature-large-copy h3 {
    font-size: 23px;
  }

  .feature-large-copy p:not(.card-kicker) {
    font-size: 14px;
    line-height: 1.68;
  }

  .matrix-feature {
    min-height: 0;
  }

  .product-matrix-stack {
    grid-template-columns: 1fr;
  }

  .matrix-card-link,
  .matrix-feature.compact .matrix-card-link {
    grid-template-columns: minmax(0, 1fr) 112px;
    grid-template-rows: auto;
    gap: 12px;
    padding: 16px;
  }

  .matrix-feature:not(.compact) .matrix-feature-visual,
  .matrix-feature.compact .matrix-feature-visual {
    grid-column: 2;
    grid-row: 1;
  }

  .matrix-feature:not(.compact) .matrix-feature-copy,
  .matrix-feature.compact .matrix-feature-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .matrix-feature-visual,
  .matrix-feature-visual img,
  .matrix-feature.compact .matrix-feature-visual,
  .matrix-feature.compact .matrix-feature-visual img {
    min-height: 112px;
  }

  .product-matrix-band a {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 6px;
    min-height: 0;
    padding: 16px;
  }

  .contact {
    padding: 24px;
  }

  .lead-form {
    padding: 20px;
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .combo-panel {
    width: min(100% - 36px, 720px);
  }

  .contact-info-panel {
    padding: 24px;
  }

  .industry-heading h2,
  .clients-heading h2 {
    font-size: 30px;
  }

  .client-showcase,
  .client-hover-showcase:has(.client-card:nth-child(1).active),
  .client-hover-showcase:has(.client-card:nth-child(2).active),
  .client-hover-showcase:has(.client-card:nth-child(3).active),
  .client-hover-showcase.is-active-1,
  .client-hover-showcase.is-active-2,
  .client-hover-showcase.is-active-3 {
    grid-template-columns: 1fr;
  }

  .client-card {
    min-height: 420px;
  }

  .client-detail {
    grid-template-columns: 1fr;
  }

  .client-detail img {
    height: 150px;
  }

  .client-detail-copy {
    gap: 8px;
  }

  .client-detail p {
    margin: 0;
  }

  .solution-stage-copy h3 {
    font-size: 26px;
  }

  .client-divider {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .client-divider::before,
  .client-divider::after {
    display: none;
  }
}

@media (max-width: 430px) {
  .detail-scenario-map-overlay {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    width: min(100% - 22px, 390px);
    padding: 34px 0 94px;
  }

  .footer-hero h2 {
    font-size: 28px;
  }

  .footer-highlight {
    padding-right: 12px;
    padding-left: 12px;
  }

  .footer-code-grid {
    gap: 8px;
  }

  .footer-code-card {
    padding: 8px;
  }
}

/* Figma-aligned homepage product system */
.product-system {
  position: relative;
  overflow: hidden;
  padding: 92px 0 104px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 34%, #eef8ff 100%),
    linear-gradient(90deg, rgba(23, 104, 255, 0.06), rgba(45, 204, 176, 0.06));
}

.product-system::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 104, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 104, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

.product-system .section-heading {
  position: relative;
  z-index: 1;
}

.product-system .section-heading h2 {
  color: #101b35;
  font-size: clamp(32px, 3vw, 44px);
}

.product-system .section-heading > p:last-child {
  max-width: 820px;
}

.product-system-board {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 48px));
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 408px;
  align-items: start;
  gap: 24px;
}

.product-core-panel,
.product-aigc-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(180, 211, 246, 0.82);
  border-radius: 22px;
  box-shadow: 0 28px 72px rgba(28, 92, 168, 0.14);
}

.product-core-panel {
  min-height: 676px;
  padding: 20px;
  background: linear-gradient(180deg, #e9f6ff 0%, #f6fbff 100%);
}

.product-core-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 382px;
  background:
    linear-gradient(135deg, rgba(27, 93, 245, 0.98) 0%, rgba(27, 151, 255, 0.96) 58%, rgba(45, 204, 176, 0.72) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  content: "";
}

.product-core-panel::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

.product-panel-title,
.product-card-grid,
.product-lower-row,
.product-aigc-panel .aigc-card-list {
  position: relative;
  z-index: 1;
}

.product-panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin: 0 4px 16px;
}

.product-panel-title h3 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.product-title-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 10px;
  color: #1352d6;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(13, 72, 163, 0.14);
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card-column {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: 326px;
}

.product-capability-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-width: 0;
  border: 1px solid rgba(205, 223, 246, 0.92);
  border-radius: 14px;
  color: #13213a;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(17, 75, 148, 0.1);
  transform: translateZ(0);
  transition:
    transform 0.26s var(--ease-out),
    border-color 0.26s ease,
    box-shadow 0.26s ease;
}

.product-capability-card:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 104, 255, 0.38);
  box-shadow: 0 24px 52px rgba(17, 84, 178, 0.16);
}

.visual-card {
  min-height: 326px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 255, 0.92) 42%, rgba(236, 247, 255, 0.82) 100%);
}

.visual-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.72) 34%, rgba(255, 255, 255, 0) 60%);
  content: "";
  pointer-events: none;
}

.product-capability-copy {
  position: relative;
  z-index: 2;
  max-width: 96%;
}

.product-capability-card h4 {
  margin: 0;
  color: #10203b;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: 0;
}

.product-capability-card p {
  margin: 10px 0 0;
  color: #58677d;
  font-size: 14px;
  line-height: 1.72;
}

.visual-card img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 68%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
  transition:
    transform 0.36s var(--ease-out),
    filter 0.36s ease;
}

.visual-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.compact-card {
  min-height: 156px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 251, 255, 0.92) 100%),
    linear-gradient(90deg, rgba(45, 204, 176, 0.08), rgba(23, 104, 255, 0.04));
}

.compact-card::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #1768ff;
  background: #edf5ff;
  content: ">";
  font-weight: 900;
  transition:
    transform 0.24s var(--ease-out),
    background 0.24s ease,
    color 0.24s ease;
}

.compact-card:hover::after {
  transform: translateX(3px);
  color: #ffffff;
  background: #1768ff;
}

.compact-card h4 {
  max-width: calc(100% - 28px);
  font-size: 18px;
}

.compact-card p {
  max-width: calc(100% - 12px);
  font-size: 13px;
  line-height: 1.62;
}

.product-lower-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 16px;
  margin-top: 16px;
}

.product-sub-panel {
  min-width: 0;
  min-height: 238px;
  padding: 22px;
  border: 1px solid rgba(190, 215, 244, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.product-sub-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.product-sub-title span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 9px;
  color: #1768ff;
  background: #eaf4ff;
  font-size: 15px;
  font-weight: 900;
}

.product-sub-title h4 {
  margin: 0;
  color: #10203b;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 900;
}

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

.product-tech-grid article,
.aigc-card-list article {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(204, 222, 246, 0.88);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.product-tech-grid article {
  min-height: 142px;
  padding: 18px;
}

.product-tech-grid article::before,
.aigc-card-list article::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #1768ff, #2dccb0);
  content: "";
}

.product-tech-grid strong,
.aigc-card-list h4 {
  position: relative;
  display: block;
  margin: 0;
  color: #14213d;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.product-tech-grid p,
.aigc-card-list p {
  position: relative;
  margin: 10px 0 0;
  color: #5c6b7f;
  font-size: 13px;
  line-height: 1.62;
}

.industry-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.industry-pill-grid span {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(200, 221, 246, 0.88);
  border-radius: 14px;
  color: #17407f;
  background:
    linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.product-aigc-panel {
  min-height: 442px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(235, 249, 255, 0.96) 0%, rgba(246, 252, 255, 0.98) 100%),
    linear-gradient(135deg, rgba(23, 104, 255, 0.1), rgba(45, 204, 176, 0.1));
}

.product-aigc-panel::before {
  position: absolute;
  inset: 72px 20px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 104, 255, 0.22), transparent);
  content: "";
}

.product-aigc-panel::after {
  position: absolute;
  right: -88px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border: 34px solid rgba(23, 104, 255, 0.06);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.product-aigc-panel .product-panel-title h3 {
  color: #10203b;
}

.product-aigc-panel .product-title-icon {
  color: #ffffff;
  background: linear-gradient(135deg, #1768ff, #20b9d6);
  border-color: rgba(23, 104, 255, 0.18);
}

.aigc-card-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.aigc-card-list article {
  min-height: 154px;
  padding: 22px 22px 22px 24px;
  box-shadow: 0 16px 34px rgba(17, 75, 148, 0.08);
}

.aigc-card-list h4 {
  font-size: 19px;
}

@media (max-width: 1180px) {
  .product-system-board {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 980px);
  }

  .product-aigc-panel {
    min-height: 0;
  }

  .aigc-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
  }
}

@media (max-width: 900px) {
  .product-system {
    padding: 72px 0 84px;
  }

  .product-system-board {
    width: min(100% - 36px, 720px);
    margin-top: 36px;
  }

  .product-core-panel {
    min-height: 0;
    padding: 16px;
  }

  .product-core-panel::before {
    height: 650px;
  }

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

  .product-card-column {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    min-height: 0;
  }

  .product-lower-row {
    grid-template-columns: 1fr;
  }

  .product-tech-grid,
  .aigc-card-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .product-system-board {
    width: min(100% - 28px, 520px);
  }

  .product-panel-title {
    margin-right: 0;
    margin-left: 0;
  }

  .product-panel-title h3 {
    font-size: 20px;
  }

  .product-card-grid,
  .product-card-column {
    grid-template-columns: 1fr;
  }

  .visual-card {
    min-height: 316px;
    padding: 22px;
  }

  .visual-card img {
    height: 64%;
  }

  .product-capability-card h4 {
    font-size: 21px;
  }

  .compact-card {
    min-height: 142px;
  }

  .product-sub-panel,
  .product-aigc-panel {
    padding: 18px;
    border-radius: 18px;
  }

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

@media (max-width: 420px) {
  .product-system {
    padding: 64px 0 76px;
  }

  .product-system-board {
    width: min(100% - 24px, 380px);
  }

  .product-core-panel {
    padding: 12px;
    border-radius: 18px;
  }

  .product-panel-title h3 {
    font-size: 18px;
  }

  .product-title-icon {
    width: 31px;
    height: 31px;
    border-radius: 8px;
    font-size: 12px;
  }

  .visual-card {
    min-height: 300px;
    padding: 20px;
  }

  .visual-card img {
    height: 60%;
  }

  .product-capability-card h4 {
    font-size: 20px;
  }

  .product-capability-card p {
    font-size: 13px;
    line-height: 1.62;
  }

  .industry-pill-grid {
    grid-template-columns: 1fr;
  }
}

/* MCP exact override for Figma node 14:2582 */
.product-system {
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 87%, #e9f2ff 100%);
}

.product-system::before {
  display: none;
}

.product-system .section-heading {
  width: 100%;
}

.product-system .section-heading h2 {
  color: #091221;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 60px;
}

.product-system .section-heading > p:last-child {
  width: min(890px, calc(100% - 48px));
  max-width: none;
  margin: 24px auto 0;
  color: rgba(9, 18, 33, 0.7);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
}

.product-system-board {
  width: 1444px;
  max-width: calc(100% - 48px);
  min-height: 681px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1008px 436px;
  gap: 0;
  align-items: start;
  justify-content: center;
}

.product-core-panel {
  width: 1008px;
  height: 681px;
  min-height: 681px;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-core-panel::before {
  display: block;
  inset: 0 auto auto 0;
  width: 1008px;
  height: 446px;
  background: url("./image/figma-products/figma-product-core-bg.webp") left top / 100% 100% no-repeat;
  opacity: 1;
}

.product-core-panel::after {
  display: none;
}

.product-panel-title {
  min-height: 60px;
  margin: 0;
  gap: 0;
}

.product-core-panel > .product-panel-title {
  position: absolute;
  left: 20px;
  right: 4px;
  top: 18px;
  z-index: 2;
}

.product-title-icon {
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-title-icon img,
.product-sub-title span img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.product-panel-title h3 {
  margin: 0;
  color: #ffffff;
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
  white-space: nowrap;
}

.product-card-grid {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 4px;
  top: 92px;
  display: grid;
  grid-template-columns: 309px 309px 309px;
  gap: 16px;
}

.product-card-column {
  width: 309px;
  min-height: 326px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 153px 153px;
  gap: 20px;
}

.product-capability-card {
  width: 309px;
  border: 0;
  border-radius: 12px;
  background-repeat: no-repeat;
  box-shadow: none;
}

.product-capability-card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.visual-card,
.compact-card {
  padding: 24px;
}

.visual-card {
  min-height: 326px;
}

.visual-card::before {
  display: none;
}

.payment-card {
  background-image: url("./image/figma-products/figma-product-card-payment-bg.webp");
  background-position: left top;
  background-size: 100% 103%;
}

.payout-card {
  background-image: url("./image/figma-products/figma-product-card-payout-bg.webp");
  background-position: left top;
  background-size: 100% 103%;
}

.compact-card {
  min-height: 153px;
}

.manage-card {
  background-image: url("./image/figma-products/figma-product-card-manage-bg.png");
  background-position: left center;
  background-size: 100% 98.69%;
}

.marketing-card {
  background-image: url("./image/figma-products/figma-product-card-marketing-bg.png");
  background-position: center center;
  background-size: 194.17% 202.61%;
}

.product-capability-copy {
  max-width: none;
}

.product-capability-card h4 {
  display: inline-block;
  margin: 0;
  color: transparent;
  background: linear-gradient(110deg, #0063ff 0%, #0b8aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  white-space: nowrap;
}

.product-capability-card p {
  margin: 12px 0 0;
  color: #333333;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 26px;
}

.compact-card h4 {
  max-width: none;
  font-size: 24px;
}

.compact-card p {
  max-width: none;
  margin-top: 16px;
  font-size: 16px;
  line-height: 26px;
}

.mcp-product-card.visual-card img {
  display: none;
}

.compact-card::after {
  display: none;
}

.product-lower-row {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 467px;
  width: 1440px;
  height: 210px;
  margin: 0;
  display: block;
}

.product-sub-panel {
  position: absolute;
  top: 0;
  min-height: 210px;
  height: 210px;
  padding: 14px 24px 0;
  border: 0;
  border-radius: 0;
  background: url("./image/figma-products/figma-product-new-panel-bg.webp") left top / 100% 100% no-repeat;
  box-shadow: none;
}

.tech-panel {
  left: 0;
  width: 626px;
}

.industry-panel {
  left: 650px;
  width: 790px;
}

.product-sub-title {
  min-height: 40px;
  margin: 0 0 12px;
  gap: 0;
}

.product-sub-title span {
  width: 40px;
  height: 40px;
  margin-right: 6px;
  border-radius: 0;
  background: transparent;
}

.product-sub-title h4 {
  margin: 0;
  color: #091221;
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  white-space: nowrap;
}

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

.product-tech-grid article {
  min-height: 116px;
  padding: 16px 24px;
  border: 0;
  border-radius: 16px;
  background: url("./image/figma-products/figma-product-desc-bg.png") left top / 100% 100% no-repeat;
}

.product-tech-grid article::before,
.aigc-card-list article::before {
  display: none;
}

.product-tech-grid strong,
.aigc-card-list h4 {
  display: inline-block;
  margin: 0;
  color: transparent;
  background: linear-gradient(90deg, #0063ff 0%, #0b8aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
}

.product-tech-grid p,
.aigc-card-list p {
  margin: 6px 0 0;
  color: #1b1b1b;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 26px;
}

.industry-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 236px);
  gap: 16px;
}

.industry-pill-grid span {
  width: 236px;
  min-height: 50px;
  padding: 10px 24px;
  border: 0;
  border-radius: 16px;
  color: #091221;
  background: url("./image/figma-products/figma-product-desc-bg.png") left top / 119.07% 240% no-repeat;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
}

.product-aigc-panel {
  width: 408px;
  height: 442px;
  min-height: 442px;
  margin-left: 28px;
  padding: 20px 24px 24px 20px;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: url("./image/figma-products/figma-product-aigc-bg.webp") left -117px / 100% 152.94% no-repeat;
  box-shadow: none;
}

.product-aigc-panel::before,
.product-aigc-panel::after {
  display: none;
}

.product-aigc-panel .product-panel-title {
  min-height: 60px;
  margin: 0 0 13px;
  gap: 0;
}

.product-aigc-panel .product-title-icon {
  width: 60px;
  height: 60px;
  margin-right: 5px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.product-aigc-panel .product-panel-title h3 {
  color: #091221;
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 45px;
}

.aigc-card-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 0;
  padding-left: 4px;
}

.aigc-card-list article {
  width: 360px;
  min-height: 155px;
  padding: 24px 64px 33px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: url("./image/figma-products/figma-product-service-card-bg.png") left top / 100% 100% no-repeat;
  box-shadow: none;
  backdrop-filter: blur(2px);
}

.aigc-card-list h4 {
  font-size: 23px;
  line-height: 30px;
  white-space: nowrap;
}

.aigc-card-list p {
  margin-top: 16px;
}

@keyframes productFloatUp {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes productFloatDown {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 5px, 0);
  }
}

@keyframes productIconPulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -2px, 0) scale(1.08);
  }
}

@keyframes productArrowPulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.92;
  }

  50% {
    transform: translate3d(0, -2px, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes productCoreDrift {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06) translate3d(-12px, -8px, 0);
  }
}

@keyframes productShimmer {
  0%,
  16% {
    transform: translate3d(-130%, 0, 0) skewX(-18deg);
    opacity: 0;
  }

  34% {
    opacity: 0.62;
  }

  54%,
  100% {
    transform: translate3d(180%, 0, 0) skewX(-18deg);
    opacity: 0;
  }
}

.payment-card,
.payout-card,
.manage-card,
.marketing-card,
.aigc-card-list article {
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition:
    transform 0.24s var(--ease-out),
    box-shadow 0.24s ease;
}

.mcp-product-card::before,
.aigc-card-list article::after {
  display: none;
}

.mcp-product-card > h4,
.mcp-product-card > p,
.product-capability-copy,
.aigc-card-list h4,
.aigc-card-list p {
  position: relative;
  z-index: 2;
}

.product-core-panel::before,
.product-title-icon img,
.product-sub-title span img,
.product-aigc-panel .product-title-icon img {
  animation: none;
}

.product-capability-card:hover,
.product-capability-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(17, 84, 178, 0.14);
}

.product-capability-card:focus-visible {
  outline: 2px solid rgba(23, 104, 255, 0.18);
  outline-offset: 2px;
}

.aigc-card-list article:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(17, 75, 148, 0.12);
}

@media (max-width: 1500px) and (min-width: 1181px) {
  .product-system-board {
    width: 1444px;
    max-width: none;
    transform: scale(0.92);
    transform-origin: top center;
    margin-bottom: -54px;
  }
}

@media (max-width: 1320px) and (min-width: 1181px) {
  .product-system-board {
    transform: scale(0.82);
    margin-bottom: -122px;
  }
}

@media (max-width: 1180px) {
  .product-system {
    padding: 72px 0 88px;
  }

  .product-system .section-heading h2 {
    font-size: 38px;
    line-height: 48px;
  }

  .product-system .section-heading > p:last-child {
    font-size: 17px;
    line-height: 28px;
  }

  .product-system-board {
    width: min(100% - 48px, 900px);
    max-width: none;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-core-panel {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 18px;
    overflow: hidden;
    border-radius: 20px;
    background: #eaf6ff;
  }

  .product-core-panel::before {
    width: 100%;
    height: 392px;
  }

  .product-core-panel > .product-panel-title,
  .product-card-grid,
  .product-lower-row {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
  }

  .product-core-panel > .product-panel-title {
    margin-bottom: 14px;
  }

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

  .product-card-column {
    width: auto;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    min-height: 0;
    gap: 16px;
  }

  .product-capability-card,
  .product-card-column .product-capability-card {
    width: auto;
  }

  .product-lower-row {
    width: auto;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }

  .product-sub-panel,
  .tech-panel,
  .industry-panel {
    position: relative;
    left: auto;
    width: auto;
    height: auto;
    min-height: 210px;
  }

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

  .industry-pill-grid span {
    width: auto;
  }

  .product-aigc-panel {
    width: 100%;
    height: auto;
    min-height: 0;
    margin-left: 0;
    background-position: left top;
    background-size: cover;
  }

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

  .aigc-card-list article {
    width: auto;
  }
}

@media (max-width: 720px) {
  .product-system {
    padding: 64px 0 76px;
  }

  .product-system .section-heading h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .product-system .section-heading > p:last-child {
    width: min(100% - 36px, 560px);
    font-size: 15px;
    line-height: 25px;
  }

  .product-system-board {
    width: min(100% - 32px, 560px);
  }

  .product-card-grid,
  .product-card-column,
  .product-tech-grid,
  .aigc-card-list {
    grid-template-columns: 1fr;
  }

  .product-card-column {
    grid-column: auto;
  }

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

  .product-panel-title h3,
  .product-aigc-panel .product-panel-title h3 {
    font-size: 26px;
  }
}

@media (max-width: 430px) {
  .product-system-board {
    width: min(100% - 24px, 380px);
  }

  .product-core-panel,
  .product-aigc-panel {
    padding: 14px;
  }

  .visual-card {
    min-height: 310px;
  }

  .product-capability-card h4,
  .compact-card h4,
  .aigc-card-list h4 {
    font-size: 20px;
    line-height: 28px;
    white-space: normal;
  }

  .product-capability-card p,
  .product-tech-grid p,
  .aigc-card-list p {
    font-size: 14px;
    line-height: 23px;
  }

  .industry-pill-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1181px) {
  .product-system-board {
    --mcp-product-scale: 0.81717;
    width: 1444px;
    max-width: none;
    zoom: var(--mcp-product-scale);
    transform: none;
    transform-origin: initial;
    margin-bottom: 0;
  }
}

@media (max-width: 860px) {
  .contact {
    width: 100%;
    margin: 0 0 64px;
    padding: 0;
    border-radius: 0;
    background-position: 62% center;
  }

  .contact-shell {
    width: min(100% - 36px, 720px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }

  .contact-copy {
    max-width: none;
    padding: 0;
    gap: 18px;
  }

  .contact-copy h2 {
    max-width: none;
    font-size: clamp(34px, 9vw, 46px);
  }

  .contact-copy .cta-title-line:last-child {
    white-space: normal;
  }

  .contact-copy > p:not(.eyebrow) {
    max-width: none;
    font-size: 15px;
    line-height: 1.78;
  }

  .contact-meta {
    gap: 10px;
  }

  .contact-meta span {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .contact .lead-form {
    padding: 22px;
    border-radius: 22px;
  }
}

@media (max-width: 520px) {
  .contact-shell {
    width: min(100% - 24px, 520px);
    padding: 32px 0;
  }

  .contact .eyebrow {
    min-height: 30px;
    margin-bottom: 14px;
    padding: 0 12px;
    font-size: 12px;
  }

  .contact-copy h2 {
    font-size: clamp(30px, 10.5vw, 38px);
  }

  .contact-meta span {
    width: 100%;
    justify-content: flex-start;
  }
}


