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

@font-face {
  font-family: "Alibaba PuHuiTi";
  src: url("../fonts/AlibabaPuHuiTi-Bold.subset.woff2") format("woff2");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #f4f7ff;
  --surface: #ffffff;
  --surface-soft: #eef2ff;
  --surface-raised: rgba(255, 255, 255, .92);
  --surface-glass: rgba(255, 255, 255, .78);
  --text: #111827;
  --text-strong: #05070b;
  --muted: #5e6776;
  --muted-2: #8a94a3;
  --line: #d7dce8;
  --line-strong: #bacdf2;
  --orange: #2563eb;
  --orange-2: #3b82f6;
  --orange-3: #93c5fd;
  --green: #18c595;
  --blue: #2476ff;
  --purple: #8f50ff;
  --brand: #2476ff;
  --brand-deep: #1557d8;
  --brand-soft: rgba(36, 118, 255, .10);
  --brand-ring: rgba(36, 118, 255, .22);
  --surface-wash: linear-gradient(135deg, rgba(36, 118, 255, .08), rgba(255, 255, 255, .72));
  --shadow: 0 18px 50px rgba(29, 78, 138, .12);
  --shadow-sm: 0 8px 26px rgba(23, 73, 142, .09);
  --radius: 8px;
  --container: 1400px;
  --font: "Alibaba PuHuiTi";
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0f1219;
  --surface: #141820;
  --surface-soft: #121828;
  --surface-raised: rgba(20, 24, 35, .94);
  --surface-glass: rgba(20, 24, 32, .78);
  --text: #f1f5f9;
  --text-strong: #ffffff;
  --muted: #aab2bd;
  --muted-2: #7c8795;
  --line: #2a3040;
  --line-strong: rgba(64, 128, 255, .38);
  --brand-soft: rgba(36, 118, 255, .18);
  --brand-ring: rgba(106, 168, 255, .30);
  --surface-wash: linear-gradient(135deg, rgba(36, 118, 255, .18), rgba(255, 255, 255, .035));
  --shadow: 0 18px 50px rgba(0, 0, 0, .42);
  --shadow-sm: 0 8px 26px rgba(0, 0, 0, .28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(232, 240, 255, .82), rgba(255, 255, 255, .88) 36%, rgba(240, 245, 255, .84)),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  letter-spacing: 0;
}

html[data-theme="dark"] body {
  background:
    linear-gradient(90deg, rgba(18, 25, 42, .72), rgba(15, 17, 22, .97) 42%, rgba(19, 24, 35, .72)),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(38, 106, 255, .035) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(12, 18, 28, .026) 0 1px, transparent 1px 80px);
  mask-image: linear-gradient(180deg, #000 0, rgba(0, 0, 0, .75) 40%, transparent 100%);
}

html[data-theme="dark"] body::before {
  background:
    repeating-linear-gradient(90deg, rgba(55, 130, 255, .08) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 86px);
}

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

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

button,
input {
  font: inherit;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ui-icon,
.dash-icon,
.value-icon svg,
.contact-icon svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection {
  background: rgba(37, 99, 235, .22);
}

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .36);
  outline-offset: 3px;
}

section {
  scroll-margin-top: 86px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: var(--surface-glass);
  backdrop-filter: blur(16px);
  transition: background .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.site-header.is-scrolled {
  background: var(--surface-raised);
  box-shadow: 0 10px 30px rgba(23, 73, 142, .08);
}

html[data-theme="dark"] .site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, .32);
}

.nav-shell {
  width: min(var(--container), calc(100% - 48px));
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, .36), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(37, 99, 235, .14));
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
  color: var(--text-strong);
}

.brand-name strong {
  font-size: 20px;
  font-weight: 800;
}

.brand-name strong::first-letter {
  color: var(--blue);
}

.brand-name em {
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  color: var(--blue);
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 34px);
  min-width: 0;
}

.main-nav a {
  position: relative;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--blue);
  background: var(--brand-soft);
  box-shadow: inset 0 0 0 1px var(--brand-ring);
}

html[data-theme="dark"] .main-nav a {
  color: #f8fbff !important;
  opacity: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}

html[data-theme="dark"] .main-nav a:hover,
html[data-theme="dark"] .main-nav a.is-active {
  color: #6aa8ff !important;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.lang-toggle,
.theme-toggle,
.nav-cta,
.button {
  min-height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.lang-toggle,
.theme-toggle {
  width: 40px;
  display: inline-grid;
  place-items: center;
  background: var(--surface);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.theme-toggle {
  position: relative;
}

.theme-toggle svg {
  position: absolute;
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s ease, opacity .25s ease;
}

.theme-toggle .icon-sun {
  color: var(--blue);
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.theme-toggle .icon-moon {
  color: var(--blue);
  opacity: 0;
  transform: scale(.6) rotate(-45deg);
}

html[data-theme="dark"] .theme-toggle .icon-sun {
  opacity: 0;
  transform: scale(.6) rotate(45deg);
}

html[data-theme="dark"] .theme-toggle .icon-moon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(37, 99, 235, .22);
}

.lang-toggle:hover,
.theme-toggle:hover,
.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(226, 238, 255, .95) 0%, rgba(255, 255, 255, .78) 46%, rgba(232, 242, 255, .92) 100%),
    repeating-linear-gradient(135deg, rgba(31, 95, 255, .04) 0 1px, transparent 1px 18px);
}

html[data-theme="dark"] .hero {
  background:
    linear-gradient(115deg, rgba(18, 25, 35, .98) 0%, rgba(18, 20, 26, .94) 48%, rgba(20, 24, 33, .98) 100%),
    repeating-linear-gradient(135deg, rgba(48, 112, 255, .07) 0 1px, transparent 1px 20px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(255, 255, 255, .22) 24% 24.12%, transparent 24.12%),
    linear-gradient(90deg, transparent 0 70%, rgba(37, 99, 235, .08) 70% 70.08%, transparent 70.08%);
}

html[data-theme="dark"] .hero::before {
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(255, 255, 255, .045) 24% 24.12%, transparent 24.12%),
    linear-gradient(90deg, transparent 0 70%, rgba(48, 112, 255, .12) 70% 70.08%, transparent 70.08%);
}

.hero-shell {
  width: min(var(--container), calc(100% - 48px));
  min-height: 608px;
  margin: 0 auto;
  padding: 28px 0 34px;
  display: grid;
  grid-template-columns: minmax(400px, 520px) minmax(500px, 1fr);
  align-items: center;
  gap: 24px;
}

.hero-copy {
  position: relative;
  min-height: 0;
  padding-top: 0;
  min-width: 0;
  flex: 1;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 0;
  width: 5px;
  height: 106px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), var(--orange-3));
  box-shadow: 0 12px 28px rgba(37, 99, 235, .28);
}

html[lang="en"] .hero-copy::before {
  height: 190px;
}

.hero-copy h1 {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--blue);
}

.hero-copy p {
  margin: 20px 0 0;
  color: var(--text-strong);
  font-size: 19px;
  font-weight: 400;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 34px 0 0;
}

.hero-pills span {
  width: auto;
  min-width: 104px;
  height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  box-shadow: var(--shadow-sm);
}

.hero-pills b {
  font-size: 16px;
  font-weight: 400;
}

.hero-pills .ui-icon {
  width: 22px;
  height: 22px;
  color: var(--blue);
  flex: 0 0 auto;
}

.hero-pills .ui-icon.green {
  color: var(--green);
}

.hero-buttons {
  position: relative;
  z-index: 4;
  display: flex;
  gap: 16px;
  margin: 34px 0 0;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
}

.button.primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 14px 28px rgba(37, 99, 235, .22);
}

.button.primary::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -35%;
  width: 30%;
  pointer-events: none;
  transform: translateX(-120%) rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
  transition: transform .58s ease;
}

.button.primary:hover::after {
  transform: translateX(520%) rotate(18deg);
}

.button span,
.button svg {
  position: relative;
  z-index: 1;
}

.button.secondary {
  background: var(--surface-raised);
  color: var(--text-strong);
}

.hero-carousel-card {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .58)),
    var(--surface-raised);
  box-shadow:
    inset 0 0 0 8px rgba(112, 128, 144, .08),
    var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

html[data-theme="dark"] .hero-carousel-card {
  background:
    linear-gradient(180deg, rgba(31, 41, 55, .86), rgba(20, 24, 35, .72)),
    var(--surface-raised);
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, .04),
    var(--shadow);
}

.hero-carousel-track {
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.018);
  transition:
    opacity .78s cubic-bezier(.22, 1, .36, 1),
    transform 1.05s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
  backface-visibility: hidden;
  pointer-events: none;
}

.hero-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.hero-carousel-link,
.hero-carousel-slide img {
  width: 100%;
  height: 100%;
}

.hero-carousel-link {
  display: block;
  color: inherit;
}

.hero-carousel-slide img {
  display: block;
  object-fit: contain;
  background: #fff;
  transform: translateZ(0);
}

.hero-carousel-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 14px;
  height: 28%;
  pointer-events: none;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, .16));
  z-index: 2;
}

.hero-carousel-card:has(.dashboard-carousel-slide.is-active)::after {
  opacity: .35;
}

.hero-carousel-btn,
.hero-carousel-dots {
  position: absolute;
  z-index: 3;
}

.hero-carousel-btn {
  top: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(23, 73, 142, .16);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(.94);
  transition: opacity .2s ease, transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.hero-carousel-card:hover .hero-carousel-btn,
.hero-carousel-card:focus-within .hero-carousel-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

.hero-carousel-btn:hover {
  background: #fff;
  box-shadow: 0 14px 30px rgba(23, 73, 142, .22);
  transform: translateY(-50%) scale(1.04);
}

.hero-carousel-btn.prev {
  left: 28px;
}

.hero-carousel-btn.next {
  right: 28px;
}

.hero-carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-carousel-dots {
  left: 50%;
  bottom: 28px;
  display: inline-flex;
  gap: 8px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 24px rgba(23, 73, 142, .14);
  transform: translateX(-50%);
}

.hero-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(37, 99, 235, .28);
  cursor: pointer;
  transition: width .22s ease, background .22s ease;
}

.hero-carousel-dots button.is-active {
  width: 24px;
  background: var(--blue);
}

html[data-theme="dark"] .hero-carousel-btn,
html[data-theme="dark"] .hero-carousel-dots {
  border-color: rgba(106, 168, 255, .24);
  background: rgba(20, 24, 35, .78);
}

.dashboard-carousel-slide {
  padding: 0;
  background: #fff;
  overflow: hidden;
}

.dashboard-carousel-slide .dashboard-card {
  display: block !important;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 16px 16px 20px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.dashboard-carousel-slide .dashboard-layout {
  height: calc(100% - 34px);
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
}

.dashboard-carousel-slide .dashboard-topbar {
  height: 30px;
  padding: 0 8px;
  gap: 10px;
}

.dashboard-carousel-slide .mini-brand {
  gap: 4px;
  font-size: 11px;
}

.dashboard-carousel-slide .mini-brand-logo {
  width: 13px;
  height: 13px;
}

.dashboard-carousel-slide .dashboard-topbar>b {
  font-size: 12px;
}

.dashboard-carousel-slide .window-icons {
  gap: 10px;
}

.dashboard-carousel-slide .window-icons span {
  width: 7px;
  height: 7px;
}

.dashboard-carousel-slide .dash-sidebar {
  gap: 4px;
}

.dashboard-carousel-slide .dash-sidebar span {
  height: 28px;
  padding: 0 9px;
  font-size: 11px;
}

.dashboard-carousel-slide .dash-icon {
  width: 13px;
  height: 13px;
  margin-right: 6px;
}

.dashboard-carousel-slide .dash-main {
  min-height: 0;
}

.dashboard-carousel-slide .metric-grid {
  gap: 9px;
}

.dashboard-carousel-slide .metric-grid article {
  min-height: 72px;
  padding: 8px 11px;
}

.dashboard-carousel-slide .metric-grid span,
.dashboard-carousel-slide .content-stats span,
.dashboard-carousel-slide .bars-panel span {
  font-size: 10px;
}

.dashboard-carousel-slide .metric-grid strong {
  margin-top: 6px;
  font-size: 20px;
}

.dashboard-carousel-slide .dash-content {
  min-height: 0;
  grid-template-columns: minmax(0, 1.55fr) minmax(150px, .62fr);
  grid-template-rows: 168px 112px;
  gap: 10px;
  margin-top: 10px;
}

.dashboard-carousel-slide .chart-panel,
.dashboard-carousel-slide .keyword-panel {
  min-height: 0;
}

.dashboard-carousel-slide .chart-panel {
  padding: 12px 14px 8px;
}

.dashboard-carousel-slide .panel-title {
  gap: 10px;
  min-height: 20px;
}

.dashboard-carousel-slide .panel-title b,
.dashboard-carousel-slide .keyword-panel b,
.dashboard-carousel-slide .content-panel b {
  font-size: 12px;
}

.dashboard-carousel-slide .line-chart {
  height: calc(100% - 28px);
  min-height: 0;
  margin-top: 4px;
}

.dashboard-carousel-slide .keyword-panel {
  padding: 12px 14px;
}

.dashboard-carousel-slide .keyword-panel ol {
  margin: 8px 0 6px;
  font-size: 11px;
}

.dashboard-carousel-slide .keyword-panel li {
  margin: 6px 0;
}

.dashboard-carousel-slide .content-panel,
.dashboard-carousel-slide .bars-panel {
  padding: 10px;
}

.dashboard-carousel-slide .content-stats strong {
  font-size: 18px;
}

.dashboard-carousel-slide .bars {
  height: 42px;
}

html[data-theme="dark"] .dashboard-carousel-slide {
  background: #121722;
}

html[data-theme="dark"] .dashboard-carousel-slide .dashboard-card {
  box-shadow: none;
}

.dashboard-card {
  display: none !important;
  position: relative;
  min-height: 540px;
  padding: 16px 16px 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface-raised);
  box-shadow:
    inset 0 0 0 8px rgba(112, 128, 144, .08),
    var(--shadow);
  overflow: hidden;
}

html[data-theme="dark"] .dashboard-card {
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, .04),
    var(--shadow);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 10px 16px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, .34), rgba(36, 118, 255, .22), transparent);
}

.dashboard-topbar {
  height: 34px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-strong);
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}

.mini-brand-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.dashboard-topbar>b {
  font-size: 13px;
  font-weight: 900;
}

.window-icons {
  margin-left: auto;
  display: inline-flex;
  gap: 14px;
}

.window-icons span {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 999px;
  animation: signal-pulse 2.4s ease-in-out infinite;
}

.window-icons span:nth-child(1) {
  background: #ff5f57;
  box-shadow: 0 0 5px rgba(255, 95, 87, .55);
  animation-delay: 0s;
}

.window-icons span:nth-child(2) {
  background: #febc2e;
  box-shadow: 0 0 5px rgba(254, 188, 46, .55);
  animation-delay: .8s;
}

.window-icons span:nth-child(3) {
  background: #28c840;
  box-shadow: 0 0 5px rgba(40, 200, 64, .55);
  animation-delay: 1.6s;
}

@keyframes signal-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .72;
    transform: scale(1.14);
  }
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
}

.dash-sidebar {
  display: grid;
  gap: 6px;
  align-content: start;
  padding-top: 4px;
}

.dash-sidebar span {
  height: 31px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.dash-sidebar b {
  font: inherit;
}

.dash-icon {
  width: 15px;
  height: 15px;
  margin-right: 8px;
  flex: 0 0 auto;
  stroke-width: 1.9;
}

.dash-sidebar .active {
  background: rgba(37, 99, 235, .12);
  color: var(--blue);
}

.dash-main {
  min-width: 0;
}

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

.metric-grid article,
.chart-panel,
.keyword-panel,
.content-panel,
.bars-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .62);
}

html[data-theme="dark"] .metric-grid article,
html[data-theme="dark"] .chart-panel,
html[data-theme="dark"] .keyword-panel,
html[data-theme="dark"] .content-panel,
html[data-theme="dark"] .bars-panel {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.metric-grid article {
  min-height: 82px;
  padding: 10px 14px;
}

.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--text-strong);
  font-size: 22px;
  font-weight: 900;
}

.metric-grid em {
  color: #00a96b;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.dash-content {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(170px, .7fr);
  grid-template-rows: 220px 118px;
  gap: 12px;
  margin-top: 12px;
}

.chart-panel {
  padding: 16px 18px 10px;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  min-height: 24px;
}

.panel-title b,
.keyword-panel b,
.content-panel b {
  color: var(--text-strong);
  font-size: 13px;
  font-weight: 900;
}

.legend {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.legend::before {
  content: "";
  width: 14px;
  height: 3px;
  margin-right: 5px;
  border-radius: 999px;
  background: currentColor;
}

.legend.blue {
  color: var(--blue);
}

.legend.green {
  color: var(--green);
}

.legend.orange {
  color: var(--blue);
}

.line-chart {
  width: 100%;
  height: 160px;
  margin-top: 8px;
}

.grid-lines {
  fill: none;
  stroke: var(--line);
  stroke-width: 1;
}

.area {
  fill: url(#blueFade);
}

.line {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blue-line {
  stroke: var(--blue);
}

.green-line {
  stroke: var(--green);
}

.orange-line {
  stroke: var(--blue);
}

.blue-dots {
  fill: var(--blue);
}

.chart-labels {
  fill: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}

.chart-labels .y-label {
  text-anchor: end;
  stroke: var(--surface);
  stroke-width: 4px;
  paint-order: stroke;
}

.keyword-panel {
  padding: 16px 18px;
}

.keyword-panel ol {
  margin: 14px 0 10px;
  padding: 0 0 0 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.keyword-panel li {
  margin: 10px 0;
}

.keyword-panel em {
  float: right;
  color: var(--text-strong);
  font-style: normal;
  font-weight: 800;
}

.keyword-panel a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.content-panel,
.bars-panel {
  padding: 12px;
}

.content-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 8px;
}

.content-panel b {
  color: var(--text-strong);
  font-size: 14px;
  font-weight: 900;
}

.content-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.content-stats span,
.bars-panel span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.content-stats strong {
  color: var(--text-strong);
  font-size: 20px;
  font-weight: 900;
}

.bars-panel strong {
  color: var(--text-strong);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

.bars-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.bars {
  grid-column: 1 / -1;
  height: 48px;
  display: flex;
  align-items: end;
  gap: 4px;
}

.bars span {
  flex: 1;
  min-width: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #7ab8ff, #4a9eff);
  transition: transform .2s ease, opacity .2s ease;
  cursor: pointer;
}

.bars:hover span {
  opacity: .72;
}

.bars span:hover {
  opacity: 1;
  transform: translateY(-2px);
}

html[data-theme="dark"] .bars span {
  background: linear-gradient(180deg, #5c9eff, #1f5caa);
}


.partner-strip {
  margin-top: 40px;
}

.partner-strip h2 {
  margin: 0;
  color: var(--text-strong);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0;
}

.partner-strip>p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
}

.partner-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partner-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: marquee 46s linear infinite;
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

.partner-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 116px;
  height: 96px;
  padding: 12px 8px;
  border-radius: var(--radius);
  background: var(--surface-raised);
  border: 1px solid var(--line);
  flex-shrink: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.partner-item:hover {
  border-color: rgba(37, 99, 235, .36);
  box-shadow: var(--shadow-sm);
}

.partner-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

html[data-theme="dark"] .partner-item img {
  filter: brightness(1.25) contrast(1.08);
}

.partner-item b {
  color: var(--text-strong);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.value-row,
.about-section,
.tech-section,
.products-section,
.global-section,
.bottom-grid,
.footer-shell {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.ai-search-bar {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 0;
  display: flex;
  justify-content: center;
}

.ai-search-shell {
  width: 60%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 8px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.ai-search-shell:focus-within {
  border-color: rgba(37, 99, 235, .45);
  box-shadow: 0 8px 26px rgba(23, 73, 142, .12);
}

.ai-input-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

.ai-input {
  width: 100%;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-strong);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  outline: none;
}

.ai-placeholder {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-2);
  font-size: 15px;
  font-weight: 600;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
}

.ai-placeholder.typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  background: var(--blue);
  vertical-align: text-bottom;
  animation: cursorBlink .9s step-end infinite;
}

@keyframes cursorBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.ai-send {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 6px 14px rgba(37, 99, 235, .28);
}

.ai-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, .36);
}

.ai-send:active {
  transform: translateY(0);
}

.ai-send svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px 0 36px;
}

.value-row article {
  min-height: 126px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--surface), var(--surface-soft));
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.value-row article:hover,
.product-card:hover,
/* .blog-card:hover, */
/* .jobs-card:hover, */
/* .contact-card:hover, */
.lab-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, .36);
  box-shadow: var(--shadow);
}

.value-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: var(--blue);
  background:
    linear-gradient(135deg, rgba(48, 130, 255, .16), rgba(255, 255, 255, .72)),
    var(--surface);
  box-shadow:
    inset 0 0 0 1px rgba(37, 99, 235, .18),
    0 12px 28px rgba(37, 99, 235, .13);
}

html[data-theme="dark"] .value-icon {
  background:
    linear-gradient(135deg, rgba(48, 130, 255, .22), rgba(255, 255, 255, .04)),
    var(--surface);
}

.value-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.85;
}

.value-row h2,
.about-section h2,
.products-section h2,
.global-heading h2,
.bottom-grid h2,
.tech-section h2 {
  margin: 0;
  color: var(--text-strong);
  font-weight: 900;
  letter-spacing: 0;
}

.value-row h2 {
  font-size: 24px;
}

.value-row p {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 44px 0 52px;
  border-top: 1px solid var(--line);
}

.about-copy {
  padding-right: 42px;
  border-right: 1px solid var(--line);
}

.about-section h2 {
  font-size: 26px;
}

.about-copy p {
  max-width: 560px;
  margin: 24px 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
  font-weight: 400;
}

.about-copy>span {
  color: var(--text-strong);
  font-size: 14px;
  font-weight: 400;
}

.team-label {
  display: block;
  margin-top: 17px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.team-card {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37, 99, 235, .08), rgba(59, 130, 246, .04));
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, .45);
  box-shadow: var(--shadow);
}

.team-logo-wrap {
  width: 96px;
  min-height: 56px;
  height: auto;
  display: grid;
  place-items: center;
  padding: 8px 12px;
}

.team-logo-wrap img {
  width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.brand-panel {
  padding-left: 10px;
}

.brand-panel .clients-desc {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
}

.client-industries {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.client-card {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  cursor: default;
}

.client-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, .36);
  box-shadow: var(--shadow);
}

.client-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(37, 99, 235, .10);
  color: var(--blue);
}

.client-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.card-edu .client-icon {
  background: rgba(24, 197, 149, .12);
  color: var(--green);
}

.card-biz .client-icon {
  background: rgba(143, 80, 255, .12);
  color: var(--purple);
}

.card-consume .client-icon {
  background: rgba(249, 171, 13, .12);
  color: #f5a623;
}

.card-local .client-icon {
  background: rgba(255, 77, 79, .12);
  color: #ff4d4f;
}

.client-card b {
  color: var(--text-strong);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.stats-grid {
  min-height: 96px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.stats-grid div {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
}

.stats-grid strong {
  color: var(--text-strong);
  font-size: 26px;
  font-weight: 900;
}

.stats-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.tech-section {
  position: relative;
  padding: 44px 0 52px;
}

.section-eyebrow {
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
}

.tech-section h2 {
  margin-top: 8px;
  font-size: clamp(26px, 3vw, 36px);
}

.tech-shell {
  position: relative;
  min-height: 300px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: center;
  gap: 34px;
}

.tech-stack {
  display: grid;
  gap: 9px;
}

.tech-row {
  min-height: 56px;
  display: grid;
  grid-template-columns: 116px repeat(5, minmax(92px, 1fr));
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.tech-row b {
  color: var(--blue);
  font-size: 16px;
  font-weight: 900;
}

.tech-row span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .64);
}

html[data-theme="dark"] .tech-row span {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.tech-row span strong {
  color: var(--blue);
  margin-right: 6px;
}

.connector-row {
  display: grid;
  grid-template-columns: 116px repeat(5, minmax(92px, 1fr));
  gap: 10px;
  height: 18px;
}

.connector-row i {
  position: relative;
  grid-column: auto;
}

.connector-row i:first-child {
  grid-column: 2;
}

.connector-row i::before,
.connector-row i::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--muted-2);
}

.connector-row i::before {
  top: 0;
  width: 1px;
  height: 18px;
}

.connector-row i::after {
  bottom: 0;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--muted-2);
  border-bottom: 1px solid var(--muted-2);
  background: transparent;
  transform: translateX(-50%) rotate(45deg);
}

.system-row {
  grid-template-columns: 116px repeat(2, minmax(280px, auto)) 1fr;
}

.system-row span {
  border-color: var(--blue);
  white-space: nowrap;
}

.tech-person {
  align-self: end;
  width: 300px;
  margin-left: auto;
  filter: drop-shadow(0 20px 24px rgba(46, 66, 96, .16));
}

.filing-section {
  width: min(var(--container), calc(100% - 24px));
  margin: 0 auto;
  padding: 34px 0 44px;
  text-align: center;
}

.filing-section h2 {
  margin-top: 8px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
}

.filing-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 820px;
  margin-inline: auto;
}

.filing-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: left;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.filing-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, .36);
  box-shadow: var(--shadow);
}

.filing-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--blue);
  border-radius: 10px;
  background: rgba(37, 99, 235, .08);
}

.filing-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.filing-body b {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-strong);
}

.filing-id {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0;
}

.products-section {
  padding: 24px 0 44px;
}

.products-section h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.product-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(36, 118, 255, .035), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--product-accent, var(--brand));
  transform: scaleX(.28);
  transform-origin: left center;
  transition: transform .22s ease;
  opacity: .9;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 3px 0 auto;
  height: 76px;
  pointer-events: none;
  background: linear-gradient(180deg, var(--product-wash, var(--brand-soft)), transparent);
  opacity: .55;
  z-index: 0;
  transition: opacity .22s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover::after {
  opacity: .9;
}

.product-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 12px rgba(44, 38, 32, .12));
}

html[data-theme="dark"] .product-logo {
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .36));
}

.product-title-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.card-reels {
  --product-accent: #f9ab0d;
  --product-wash: rgba(249, 171, 13, .12);
}

.card-geo {
  --product-accent: #2563eb;
  --product-wash: rgba(37, 99, 235, .13);
}

.card-seo {
  --product-accent: #b10300;
  --product-wash: rgba(177, 3, 0, .10);
}

.card-gem {
  --product-accent: #ff7001;
  --product-wash: rgba(255, 112, 1, .12);
}

.card-dragon {
  --product-accent: #ea7d18;
  --product-wash: rgba(234, 125, 24, .12);
}

.tag-reels {
  background: rgb(249, 171, 13);
}

.tag-geo {
  background: #2563EB;
}

.tag-seo {
  background: #b10300;
}

.tag-gem {
  background: #ff7001;
}

.tag-dragon {
  background: #ea7d18;
}

.product-card h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: 18px;
  font-weight: 900;
}

.ai-suffix {
  font-weight: 900;
}

.card-reels .ai-suffix {
  color: rgb(249, 171, 13);
}

.card-geo .ai-suffix {
  color: #2563EB;
}

.card-seo .ai-suffix {
  color: #b10300;
}

.card-gem .ai-suffix {
  color: #ff7001;
}

.card-dragon .ai-suffix {
  color: #ea7d18;
}

.product-card p {
  position: relative;
  z-index: 1;
  min-height: 46px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
}

.product-link-row {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease, border-top-color .2s ease;
}

.product-card:hover .product-link-row {
  color: var(--blue);
  border-top-color: rgba(37, 99, 235, .28);
}

.product-arrow {
  color: var(--text-strong);
  font-size: 18px;
  transition: transform .2s ease;
}

.product-card:hover .product-arrow {
  transform: translate(2px, -2px);
}

.global-section {
  position: relative;
  margin-top: 18px;
  padding: 36px 36px 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(37, 99, 235, .10), transparent 28%, transparent 72%, rgba(37, 99, 235, .10)),
    repeating-linear-gradient(90deg, rgba(36, 118, 255, .03) 0 1px, transparent 1px 28px),
    var(--surface-raised);
  overflow: hidden;
}

.global-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: stretch;
}

.global-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.global-heading {
  position: relative;
  z-index: 2;
}

.global-heading h2 {
  font-size: 27px;
}

.global-heading p {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
}

.lab-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lab-list article {
  min-height: 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  column-gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.lab-list article:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, .36);
  box-shadow: var(--shadow);
}

.pin {
  grid-row: span 3;
  width: 48px;
  height: 48px;
  position: relative;
  border-radius: 999px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .72), rgba(181, 222, 255, .55)),
    radial-gradient(circle, rgba(36, 118, 255, .18), transparent 62%);
  box-shadow: inset 0 0 0 1px rgba(36, 118, 255, .15);
}

.pin::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 9px;
  width: 13px;
  height: 17px;
  border-radius: 999px 999px 999px 0;
  background: var(--blue);
  transform: rotate(-45deg);
}

.pin::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 25px;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #fff;
}

.lab-list h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: 18px;
  font-weight: 400;
}

.lab-list b,
.lab-list p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
}

.lab-list p {
  color: var(--muted);
}

.global-right {
  position: relative;
  min-height: 0;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.globe-chart {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 24px 0 52px;
}

.blog-card,
.jobs-card,
.contact-card {
  /* min-height: 310px; */
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.bottom-grid h2 {
  font-size: 21px;
}

.bottom-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.card-title-row>a,
.section-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: color .2s ease;
}

.card-title-row>a:hover {
  color: var(--blue);
}

.blog-list {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.blog-list article {
  min-height: 72px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.blog-list img {
  width: 100px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
}

.blog-list span {
  min-width: 0;
}

.blog-list em {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 6px;
  background: rgba(37, 99, 235, .12);
  color: var(--blue);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.blog-list article:nth-child(2) em {
  background: rgba(24, 197, 149, .12);
  color: var(--green);
}

.blog-list b {
  display: block;
  margin-top: 6px;
  overflow: hidden;
  color: var(--text-strong);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-list small {
  display: block;
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}

.job-list {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.job-list a {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 8px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.job-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, .36);
  box-shadow: var(--shadow);
}

.job-list a span {
  grid-column: 1 / -1;
}

.job-list em,
.job-list small {
  color: var(--muted);
  font-style: normal;
}

.card-title-row .job-actions {
  display: grid;
  grid-template-columns: auto;
  gap: 14px;
}

.card-title-row .job-actions .button {
  min-width: 120px;
  min-height: 40px;
  font-size: 14px;
}

.contact-card>h2 {
  margin-bottom: 6px;
}

.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.contact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-list a,
.contact-list div {
  min-height: 74px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.contact-list a:hover,
.contact-list div:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, .36);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border-radius: 10px;
  background: rgba(37, 99, 235, .08);
}

.contact-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.85;
}

.contact-list b {
  display: block;
  color: var(--text-strong);
  font-size: 14px;
  font-weight: 900;
}

.contact-list small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.qr {
  width: 84px;
  height: 84px;
  border: 4px solid #fff;
  border-radius: 4px;
  background: url('../assets/offical_contact_qrcode.png') no-repeat center / cover;
  box-shadow: 0 0 0 1px var(--line);
}

.social-row {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.social-row.compact {
  margin-top: 0;
  display: inline-flex;
  gap: 10px;
}

.social-row.compact a {
  min-width: 0;
  gap: 0;
}

.social-row.compact svg {
  width: 36px;
  height: 36px;
}

.social-row.compact small {
  display: none;
}

.social-row a {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  min-width: 0;
}

.social-row svg {
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 999px;
  color: #fff;
  fill: currentColor;
}

.wechat svg {
  background: #22c55e;
}

.linkedin svg {
  background: #1267a9;
}

.youtube svg {
  background: #e11d24;
}

.tiktok svg {
  background: #111;
}

html[data-theme="dark"] .tiktok svg {
  background: #30343a;
}

.social-row small {
  max-width: 62px;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, var(--surface-raised), var(--surface)),
    var(--surface-raised);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(360px, 430px) minmax(0, 1fr);
  align-items: start;
  justify-content: space-between;
  gap: clamp(46px, 5vw, 82px);
  padding: 40px 0 42px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 20px;
}

.footer-brand .brand {
  gap: 11px;
}

.footer-brand .brand-logo {
  width: 38px;
  height: 38px;
}

.footer-brand .brand-name {
  font-size: 22px;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.footer-brand small {
  max-width: 390px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
  line-height: 2;
}

.footer-brand small a {
  color: inherit;
  transition: color .2s ease;
}

.footer-brand small a:hover {
  color: var(--blue);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(6, minmax(86px, 1fr));
  width: min(100%, 900px);
  margin-left: auto;
  gap: clamp(18px, 2vw, 34px);
}

.footer-links div:nth-child(3) {
  min-width: 124px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links b {
  color: var(--text-strong);
  font-size: 14px;
  font-weight: 900;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
  color: var(--blue);
  transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }
}

@media (max-width: 1120px) {
  .nav-shell {
    gap: 16px;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 38px;
  }

  .hero-carousel-card {
    max-width: 820px;
    margin: 0 auto;
  }

  .value-row,
  .about-section,
  .bottom-grid {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding-right: 0;
    border-right: 0;
  }

  .tech-shell {
    grid-template-columns: 1fr;
  }

  .tech-person {
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 210px;
    opacity: .28;
  }

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

  .global-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-brand p,
  .footer-brand small {
    max-width: 520px;
  }

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

@media (max-width: 760px) {

  .nav-shell,
  .hero-shell,
  .ai-search-bar,
  .value-row,
  .about-section,
  .tech-section,
  .products-section,
  .global-section,
  .bottom-grid,
  .footer-shell {
    width: min(100% - 28px, var(--container));
  }

  .ai-search-shell {
    width: 100%;
  }

  .nav-shell {
    height: auto;
    min-height: 60px;
    padding: 10px 0;
    flex-wrap: wrap;
  }

  .brand-name strong,
  .brand-name em {
    font-size: 18px;
  }

  .main-nav {
    flex-basis: 100%;
    order: 3;
    gap: clamp(10px, 2vw, 18px);
    padding-bottom: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

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

  .main-nav a {
    font-size: 13px;
  }

  .nav-actions {
    margin-left: 0;
  }

  .lang-toggle,
  .theme-toggle {
    width: 36px;
    min-height: 34px;
  }

  .nav-cta {
    display: none;
  }

  .hero-shell {
    min-height: 0;
    padding: 18px 0 24px;
  }

  .hero-copy {
    padding-top: 28px;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-pills {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 24px 0 0;
  }

  .hero-pills span:nth-child(3) {
    grid-column: auto;
  }

  .hero-pills span {
    width: 100%;
    min-width: 0;
    height: 38px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 12px;
    line-height: 1;
  }

  .hero-pills b {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-strong);
    white-space: nowrap;
    overflow: visible;
  }

  .hero-pills .ui-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 24px 0 0;
  }

  .hero-buttons .button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
  }

  .partner-strip {
    margin-top: 28px;
  }

  .hero-carousel-card {
    min-height: auto;
    width: 100%;
    margin-top: 20px;
    border-radius: 20px;
  }

  .hero-carousel-track {
    inset: 10px;
    border-radius: 14px;
  }

  .hero-carousel-card::after {
    inset: auto 10px 10px;
    border-radius: 0 0 14px 14px;
  }

  .hero-carousel-btn {
    width: 34px;
    height: 34px;
  }

  .hero-carousel-btn.prev {
    left: 18px;
  }

  .hero-carousel-btn.next {
    right: 18px;
  }

  .hero-carousel-dots {
    bottom: 18px;
  }

  .dashboard-carousel-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dashboard-carousel-slide .dashboard-card {
    width: 760px;
    height: 360px;
    flex: 0 0 auto;
    transform-origin: center center;
    padding: 10px 12px 12px;
  }

  .dashboard-carousel-slide .dashboard-topbar {
    height: 26px;
    padding: 0 6px;
  }

  .dashboard-carousel-slide .dashboard-layout {
    display: grid;
    height: calc(100% - 26px);
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 8px;
  }

  .dashboard-carousel-slide .dash-sidebar {
    display: grid;
  }

  .dashboard-carousel-slide .dash-sidebar span {
    height: 24px;
    padding: 0 5px;
    font-size: 9px;
    white-space: nowrap;
  }

  .dashboard-carousel-slide .dash-icon {
    width: 10px;
    height: 10px;
    margin-right: 3px;
  }

  .dashboard-carousel-slide .metric-grid {
    gap: 7px;
  }

  .dashboard-carousel-slide .metric-grid article {
    min-height: 62px;
    padding: 7px 9px;
  }

  .dashboard-carousel-slide .dash-content {
    grid-template-rows: 126px 86px;
    gap: 8px;
    margin-top: 8px;
  }

  .dashboard-carousel-slide .line-chart {
    min-height: 0;
  }

  .dashboard-card {
    display: none;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .dash-sidebar {
    display: none;
  }

  .dashboard-carousel-slide .dash-sidebar {
    display: grid;
  }

  .dash-icon {
    width: 16px;
    height: 16px;
    margin-right: 0;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .metric-grid article {
    min-height: 0;
    padding: 10px;
  }

  .metric-grid strong {
    font-size: 16px;
  }

  .dash-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 8px;
  }

  .chart-panel,
  .keyword-panel,
  .content-panel,
  .bars-panel {
    min-height: 0;
    padding: 12px;
  }

  .line-chart {
    height: 140px;
  }

  .content-panel button {
    min-width: 0;
    padding: 0 10px;
    font-size: 11px;
  }

  .value-row article {
    padding: 20px;
  }

  .client-industries {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .tech-row,
  .connector-row,
  .system-row {
    grid-template-columns: 1fr;
  }

  .connector-row {
    display: none;
  }

  .tech-row b {
    text-align: left;
  }

  .product-grid,
  .global-layout {
    grid-template-columns: 1fr;
  }

  .global-section {
    padding: 24px 18px;
  }

  .global-right {
    min-height: 260px;
  }

  .blog-list article,
  .job-list a,
  .contact-list a,
  .contact-list div {
    grid-template-columns: auto 1fr;
  }

  .qr {
    grid-column: 2;
    width: 72px;
    height: 72px;
  }

  .social-row {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 28px;
  }

  .blog-list {
    grid-template-columns: 1fr;
  }

  .job-list {
    grid-template-columns: 1fr;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .button {
    min-width: 0;
  }
}

@media (max-width: 460px) {
  .nav-shell {
    gap: 8px;
  }

  .lang-toggle,
  .theme-toggle {
    width: 36px;
    min-height: 34px;
  }

  .hero-copy h1 {
    font-size: 28px;
    word-break: break-word;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-pills {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin: 24px 0 0;
  }

  .hero-pills span:nth-child(3) {
    grid-column: auto;
  }

  .hero-pills span {
    width: 100%;
    min-width: 0;
    height: 36px;
    padding: 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 11px;
    line-height: 1;
  }

  .hero-pills b {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-strong);
    white-space: nowrap;
    overflow: visible;
  }

  .hero-pills .ui-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 24px 0 0;
  }

  .button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 800;
    white-space: normal;
    line-height: 1.4;
    color: var(--text-strong);
    background: var(--surface-raised);
    border: 1px solid var(--line-strong);
  }

  .button.primary {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
  }

  .button.secondary {
    color: var(--text-strong);
    background: var(--surface-raised);
  }

  .dashboard-card {
    display: block;
    min-height: 200px;
    max-width: 100%;
    padding: 12px;
    margin-top: 24px;
    width: 100%;
  }

  .value-icon {
    width: 56px;
    height: 56px;
  }

  .partner-item {
    width: 86px;
    height: 78px;
    padding: 8px 4px;
    gap: 6px;
  }

  .partner-item img {
    width: 28px;
    height: 28px;
  }

  .partner-item b {
    font-size: 12px;
  }

  .partner-item b {
    font-size: 12px;
  }

  .partner-strip h2 {
    font-size: 22px;
  }

  .partner-strip>p {
    font-size: 13px;
  }

  .client-industries {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .team-card {
    min-height: 100px;
    padding: 12px;
  }

  .team-logo-wrap {
    width: 84px;
    min-height: 48px;
    height: auto;
    padding: 6px 10px;
  }

  .team-logo-wrap img {
    max-height: 56px;
  }

  .client-card {
    min-height: 100px;
    padding: 14px 8px;
  }

  .client-icon {
    width: 38px;
    height: 38px;
  }

  .client-icon svg {
    width: 20px;
    height: 20px;
  }

  .client-card b {
    font-size: 13px;
  }

  .job-actions {
    grid-template-columns: 1fr;
  }
}
