/**
 * 广州长境科技 — Changjing Theme v1.0
 * Light tech-white design system (adapted from AI Agent template)
 */

/* ============================================
   Design Tokens — Light Theme
   ============================================ */
:root {
  --cj-bg: #ffffff;
  --cj-bg-alt: #f8fafc;
  --cj-bg-section: #f0f4ff;
  --cj-surface: rgba(255, 255, 255, 0.72);
  --cj-surface-hover: rgba(255, 255, 255, 0.92);
  --cj-ink: #1e293b;
  --cj-ink-bright: #0f172a;
  --cj-muted: #64748b;
  --cj-accent: #6c5ce7;
  --cj-accent-light: #a29bfe;
  --cj-accent2: #00cec9;
  --cj-accent-gradient: linear-gradient(135deg, #6c5ce7, #00cec9);
  --cj-rule: rgba(15, 23, 42, 0.08);
  --cj-glass: rgba(255, 255, 255, 0.65);
  --cj-glass-border: rgba(108, 92, 231, 0.12);
  --cj-glow-purple: rgba(108, 92, 231, 0.18);
  --cj-glow-cyan: rgba(0, 206, 201, 0.15);
  --cj-radius: 16px;
  --cj-radius-sm: 8px;
  --cj-radius-lg: 24px;
  --cj-font-cn: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --cj-font-en: 'Space Grotesk', 'Noto Sans SC', sans-serif;
  --cj-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --cj-footer-bg: #1a1f36;
  --cj-nav-height: 80px;
  --cj-container-max: 1400px;
  --cj-hero-height: calc(100vh - var(--cj-nav-height));
  --cj-shadow-sm: 0 4px 24px rgba(15, 23, 42, 0.06);
  --cj-shadow-md: 0 12px 40px rgba(108, 92, 231, 0.12);
  --cj-shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.1);
}

/* ============================================
   Base
   ============================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--cj-font-cn);
  background: var(--cj-bg);
  color: var(--cj-ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--cj-accent);
  transition: color var(--cj-transition);
}

a:hover {
  color: var(--cj-accent2);
  text-decoration: none;
}

/* ============================================
   Section System
   ============================================ */
.cj-section {
  padding: 5rem 0;
  position: relative;
}

.cj-section-alt {
  background: var(--cj-bg-section);
}

.cj-section-white {
  background: var(--cj-bg);
}

.cj-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cj-section-label,
.section-label {
  font-family: var(--cj-font-en);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cj-accent2);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cj-section-label::before,
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--cj-accent2);
  border-radius: 1px;
}

.cj-section-title,
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--cj-ink-bright);
  margin-bottom: 0.75rem;
}

.cj-section-subtitle,
.section-desc {
  font-size: 1rem;
  color: var(--cj-muted);
  max-width: 560px;
  margin: 0 auto;
}

.cj-section-header .cj-section-subtitle {
  letter-spacing: 0.05em;
}

.cj-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cj-muted) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--cj-rule);
  transition: var(--cj-transition);
}

.cj-more-link:hover {
  color: var(--cj-accent) !important;
  border-color: var(--cj-accent);
  background: rgba(108, 92, 231, 0.06);
}

/* ============================================
   Glass Card
   ============================================ */
.glass-card,
.cj-glass-card {
  background: var(--cj-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--cj-glass-border);
  border-radius: var(--cj-radius);
  transition: var(--cj-transition);
}

.glass-card:hover,
.cj-glass-card:hover {
  background: var(--cj-surface-hover);
  border-color: rgba(108, 92, 231, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--cj-shadow-md);
}

/* ============================================
   Navigation
   ============================================ */
.cj-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--cj-transition);
}

.cj-nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--cj-rule);
  box-shadow: var(--cj-shadow-sm);
}

.cj-nav .navbar-brand {
  display: flex;
  align-items: center;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.cj-nav .navbar-brand img,
.cj-nav .navbar-brand .cj-logo {
  height: 52px;
  max-height: 52px;
  width: auto;
  max-width: min(320px, 52vw);
  object-fit: contain;
  object-position: left center;
  display: block;
  background: transparent !important;
  transition: var(--cj-transition);
}

.cj-nav.scrolled .navbar-brand img,
.cj-nav.scrolled .navbar-brand .cj-logo {
  height: 46px;
  max-height: 46px;
}

.cj-nav .navbar-nav .nav-link {
  font-size: 0.95rem !important;
  font-weight: 500;
  color: var(--cj-muted) !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--cj-radius-sm);
  transition: var(--cj-transition);
  position: relative;
}

.cj-nav .navbar-nav .nav-link:hover {
  color: var(--cj-ink) !important;
  background: rgba(108, 92, 231, 0.06);
}

.cj-nav .navbar-nav .nav-item.active .nav-link {
  color: var(--cj-accent) !important;
  font-weight: 600;
}

.cj-nav .navbar-nav .nav-item.active .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--cj-accent-gradient);
  border-radius: 2px;
}

.cj-nav .navbar-toggler {
  border-color: var(--cj-rule);
  padding: 0.35rem 0.6rem;
}

.cj-nav-spacer {
  height: var(--cj-nav-height);
}

.cj-nav-cta .nav-link {
  background: var(--cj-accent-gradient) !important;
  color: #fff !important;
  border-radius: 100px !important;
  padding: 0.45rem 1.25rem !important;
  margin-left: 0.5rem;
  font-weight: 600 !important;
}

.cj-nav-cta .nav-link:hover {
  box-shadow: 0 8px 24px var(--cj-glow-purple);
  transform: translateY(-1px);
  color: #fff !important;
}

.cj-nav-cta .nav-link::after {
  display: none !important;
}

/* ============================================
   Hero / Swiper
   ============================================ */
.cj-hero {
  position: relative;
  overflow: hidden;
}

.cj-hero .swiper-container {
  width: 100%;
}

.cj-hero .swiper-slide {
  position: relative;
  overflow: hidden;
}

.cj-hero .swiper-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
  filter: none;
}

/* 仅左侧轻渐变，保证标题可读，不整屏洗白 Banner */
.cj-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(255, 255, 255, 0.08) 24%,
    transparent 48%
  );
  z-index: 1;
  pointer-events: none;
}

.cj-hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation: cj-float 8s ease-in-out infinite;
}

.hero-gradient-orb.orb1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--cj-accent), transparent 70%);
  top: -120px;
  right: -80px;
}

.hero-gradient-orb.orb2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--cj-accent2), transparent 70%);
  bottom: -100px;
  left: -60px;
  animation-delay: -4s;
}

.hero-gradient-orb.orb3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--cj-accent-light), transparent 70%);
  top: 40%;
  left: 55%;
  opacity: 0.1;
  animation-delay: -2s;
}

@keyframes cj-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.04); }
  66% { transform: translate(-15px, 15px) scale(0.96); }
}

.cj-hero-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 640px;
}

.cj-hero-content .titleClass {
  font-family: var(--cj-font-cn);
  font-weight: 900;
  color: var(--cj-ink-bright) !important;
  line-height: 1.15;
  text-shadow: none;
}

.cj-hero-content .titleClass .highlight,
.cj-hero-content .subTitle .highlight {
  background: var(--cj-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cj-hero-content .subTitle {
  color: var(--cj-muted) !important;
  font-weight: 400;
  text-shadow: none;
}

/* 单图 Hero — 左文案 + 右配图，固定视区高度 */
.cj-hero-single {
  position: relative;
  width: 100%;
  min-height: var(--cj-hero-height);
  max-height: none;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 45%, #f0f4ff 100%);
}

.cj-hero-single .cj-hero-container {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--cj-hero-height);
  max-height: none;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  line-height: normal;
}

.cj-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  width: 100%;
}

.cj-hero-single .cj-hero-content {
  position: static;
  transform: none;
  max-width: 720px;
  padding: 0;
}

.cj-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 0.5rem 0;
}

/* Hero 右侧 — 原生玻璃态能力图（与全站配色一致，无图片白框） */
.cj-hero-showcase {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.cj-hero-showcase-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(108, 92, 231, 0.16), transparent 58%),
    radial-gradient(circle at 65% 60%, rgba(0, 206, 201, 0.14), transparent 55%);
  filter: blur(2px);
  pointer-events: none;
}

.cj-hero-showcase-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cj-hero-showcase-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 148px;
  height: 148px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(108, 92, 231, 0.18);
  box-shadow:
    0 16px 40px rgba(108, 92, 231, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.cj-hero-showcase-logo {
  width: 52px;
  height: auto;
  object-fit: contain;
}

.cj-hero-showcase-hub span {
  font-family: var(--cj-font-en);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cj-accent);
  text-transform: uppercase;
}

.cj-hero-showcase-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 178px;
  padding: 0.85rem 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(108, 92, 231, 0.12);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
  z-index: 3;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cj-hero-showcase-node:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(108, 92, 231, 0.12);
}

.cj-hero-showcase-node span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cj-ink-bright);
  white-space: nowrap;
}

.cj-hero-showcase-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--node-accent, #6c5ce7), rgba(0, 206, 201, 0.85));
  box-shadow: 0 6px 16px rgba(108, 92, 231, 0.2);
}

.cj-hero-showcase-node-tl { left: 0; top: 6%; }
.cj-hero-showcase-node-tr { right: 0; top: 6%; }
.cj-hero-showcase-node-bl { left: 0; bottom: 6%; }
.cj-hero-showcase-node-br { right: 0; bottom: 6%; }

.cj-hero-showcase-hub {
  animation: cj-hero-hub-float 6s ease-in-out infinite;
}

@keyframes cj-hero-hub-float {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 6px)); }
}

.cj-hero-single::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(640px, 52vw);
  height: min(640px, 52vw);
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 206, 201, 0.1), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(108, 92, 231, 0.12), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.cj-hero-single .cj-hero-container {
  z-index: 1;
}

.cj-hero-single .cj-hero-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cj-accent);
  background: rgba(108, 92, 231, 0.08);
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.cj-hero-single .cj-hero-title,
.cj-hero-single .titleClass {
  color: var(--cj-ink-bright) !important;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cj-hero-single .cj-hero-subtitle,
.cj-hero-single .subTitle {
  color: var(--cj-muted) !important;
  line-height: 1.65;
  margin-bottom: 0;
  width: auto !important;
  max-width: 600px;
  padding-top: 0 !important;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem) !important;
}

.cj-hero-single .cj-hero-title,
.cj-hero-single .titleClass {
  font-size: clamp(2rem, 4.6vw, 3.35rem) !important;
}

.cj-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.cj-hero-actions .cj-btn-primary {
  padding: 0.8rem 1.85rem;
  font-size: 1rem;
}

.cj-hero-actions .cj-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.85rem;
  border-radius: 100px;
  border: 1px solid var(--cj-rule);
  color: var(--cj-ink) !important;
  font-weight: 600;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.85);
  transition: var(--cj-transition);
}

.cj-hero-actions .cj-btn-outline:hover {
  border-color: var(--cj-accent);
  color: var(--cj-accent) !important;
  background: #fff;
}

/* 全站统一内容宽度 */
.cj-container {
  max-width: var(--cj-container-max) !important;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.cj-hero .swiper-button-prev,
.cj-hero .swiper-button-next {
  color: var(--cj-accent);
  background: rgba(255, 255, 255, 0.85);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: var(--cj-shadow-sm);
}

.cj-hero .swiper-pagination-bullet {
  background: var(--cj-muted);
  opacity: 0.4;
}

.cj-hero .swiper-pagination-bullet-active {
  background: var(--cj-accent);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   Cards
   ============================================ */
.cj-card,
.cj-section .card {
  border: 1px solid var(--cj-rule);
  border-radius: var(--cj-radius);
  overflow: hidden;
  background: var(--cj-bg);
  box-shadow: var(--cj-shadow-sm);
  transition: var(--cj-transition);
  margin: 0;
}

.cj-card:hover,
.cj-section .card:hover {
  transform: translateY(-6px);
  box-shadow: var(--cj-shadow-md);
  border-color: rgba(108, 92, 231, 0.2);
}

.cj-section .card-img-top {
  transition: transform 0.5s ease;
}

.cj-section .card:hover .card-img-top {
  transform: scale(1.04);
}

.cj-section .card-body {
  padding: 1.25rem;
}

.cj-section .card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cj-section .card-title a {
  color: var(--cj-ink-bright);
}

.cj-section .card-title a:hover {
  color: var(--cj-accent);
}

.cj-section .card-text {
  color: var(--cj-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.cj-section .badge-danger {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.cj-section .badge-warning {
  background: linear-gradient(135deg, #f59e0b, #eab308);
}

.cj-section .badge-info {
  background: var(--cj-accent-gradient);
}

/* ============================================
   Stats / Number Section — 全宽渐变数据条
   ============================================ */
.cj-stats.cj-stats-band {
  padding: 3.75rem 0 !important;
  background: linear-gradient(102deg, #00cec9 0%, #0984e3 52%, #6c5ce7 100%) !important;
  position: relative;
  overflow: hidden;
}

.cj-stats.cj-stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/static/upload/changjing/hero-home.png') center center / cover no-repeat;
  opacity: 0.14;
  pointer-events: none;
}

.cj-stats.cj-stats-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    102deg,
    rgba(0, 180, 190, 0.88) 0%,
    rgba(9, 132, 227, 0.9) 52%,
    rgba(108, 92, 231, 0.92) 100%
  );
  pointer-events: none;
}

.cj-stats.cj-stats-band .cj-stats-inner {
  position: relative;
  z-index: 1;
}

.cj-stats.cj-stats-band .number ul li,
.cj-stats.cj-stats-band ul li {
  color: #fff !important;
}

.cj-stats.cj-stats-band .number ul li b,
.cj-stats.cj-stats-band ul li b {
  font-family: var(--cj-font-en);
  font-weight: 700;
  font-size: clamp(3rem, 5.5vw, 4.25rem);
  color: #fff !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  -webkit-text-fill-color: #fff !important;
  background-clip: border-box !important;
  position: relative;
  display: inline-block;
  margin: 0 0 0.85rem;
  line-height: 1;
}

.cj-stats.cj-stats-band .number ul li b i,
.cj-stats.cj-stats-band ul li b i {
  font-style: normal;
}

.cj-stats.cj-stats-band .number ul li b em,
.cj-stats.cj-stats-band ul li b em {
  position: relative;
  top: -0.15em;
  padding-left: 0.2em;
  font-style: normal;
  font-size: 0.42em;
  font-weight: 500;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.cj-stats.cj-stats-band .number ul li b sup,
.cj-stats.cj-stats-band ul li b sup {
  top: -0.35em;
  margin-left: 0.05em;
  font-size: 0.55em;
  font-weight: 600;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.cj-stats.cj-stats-band .number ul li p,
.cj-stats.cj-stats-band ul li p {
  color: rgba(255, 255, 255, 0.96) !important;
  margin: 0;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* ============================================
   News / Content Lists
   ============================================ */
.cj-news-item .content_video_body {
  border: 1px solid var(--cj-rule);
  border-radius: var(--cj-radius);
  background: var(--cj-bg);
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}

.cj-news-item .content_video_body dd {
  color: var(--cj-ink) !important;
  font-weight: 600;
}

.cj-news-item .content_video_body dt {
  color: var(--cj-muted) !important;
}

.cj-news-item .right_list_content .list_content_title {
  border-bottom-color: var(--cj-rule);
}

.cj-news-item .list_content_title dt {
  color: var(--cj-muted) !important;
}

.cj-news-item .list_content_title dd h5 a {
  color: var(--cj-ink-bright);
  font-weight: 600;
}

.cj-news-item .list_content_title dd h5 a:hover {
  color: var(--cj-accent);
}

.cj-news-item #video_button2 {
  border-radius: var(--cj-radius);
  overflow: hidden;
}

/* ============================================
   Partners
   ============================================ */
.cj-partners {
  background: var(--cj-bg-alt);
}

.cj-partners .partner_content_list {
  border-radius: var(--cj-radius-sm) !important;
  border: 1px solid var(--cj-rule) !important;
  box-shadow: var(--cj-shadow-sm) !important;
  background: var(--cj-bg);
  transition: var(--cj-transition) !important;
}

.cj-partners .partner_content_list:hover {
  transform: translateY(-4px);
  box-shadow: var(--cj-shadow-md) !important;
  border-color: rgba(108, 92, 231, 0.2) !important;
}

.cj-partners .partner_content_list img.gray {
  filter: grayscale(30%);
  opacity: 0.85;
  transition: var(--cj-transition);
}

.cj-partners .partner_content_list:hover img.gray {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================
   Page Hero (subpages)
   ============================================ */
.cj-page-hero {
  background: var(--cj-bg-section) !important;
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3rem !important;
  margin-bottom: 0 !important;
  border-bottom: 1px solid var(--cj-rule);
}

.cj-page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--cj-glow-purple), transparent 70%);
  pointer-events: none;
}

.cj-page-hero::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--cj-glow-cyan), transparent 70%);
  pointer-events: none;
}

.cj-page-hero .container {
  position: relative;
  z-index: 1;
}

.cj-page-hero h1 {
  color: var(--cj-ink-bright) !important;
  font-weight: 700;
}

.cj-page-hero p {
  color: var(--cj-muted) !important;
}

/* ============================================
   Inner Pages
   ============================================ */
.pages {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.pages .position,
.pages .position a {
  color: var(--cj-muted);
  font-size: 0.875rem;
}

.pages .position a:hover {
  color: var(--cj-accent);
}

.pages h2 {
  color: var(--cj-ink-bright);
  font-weight: 700;
}

.pages .content {
  color: var(--cj-ink);
}

.cj-product-detail .content {
  font-size: 1rem;
  line-height: 1.85;
}

.cj-product-detail .content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cj-ink-bright);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(108, 92, 231, 0.15);
}

.cj-product-detail .content h3:first-child {
  margin-top: 0;
}

.cj-product-detail .content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cj-ink-bright);
  margin: 1.5rem 0 0.75rem;
}

.cj-product-detail .content pre {
  background: var(--cj-bg-alt);
  border: 1px solid var(--cj-rule);
  border-radius: var(--cj-radius-sm);
  padding: 1rem;
  font-size: 0.8125rem;
  overflow-x: auto;
}

.cj-product-detail .content ol {
  padding-left: 1.5rem;
}

.cj-product-detail .content p {
  margin-bottom: 1rem;
  color: var(--cj-muted);
}

.cj-product-detail .content ul,
.cj-product-detail .content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
}

.cj-product-detail .content li {
  margin-bottom: 0.5rem;
  color: var(--cj-muted);
}

.cj-product-detail .content strong {
  color: var(--cj-ink-bright);
}

.cj-product-detail .content table {
  margin: 1rem 0 1.5rem;
  border-color: var(--cj-rule) !important;
}

.cj-product-detail .content table td,
.cj-product-detail .content table th {
  border-color: var(--cj-rule) !important;
  font-size: 0.9rem;
  vertical-align: top;
}

.pages .border-bottom-dashed {
  border-bottom-color: var(--cj-rule) !important;
}

.pages .border-bottom-dashed a {
  color: var(--cj-ink);
}

.pages .border-bottom-dashed a:hover {
  color: var(--cj-accent);
}

.pages .page-num {
  color: var(--cj-accent);
  border-color: var(--cj-rule);
  border-radius: var(--cj-radius-sm);
}

.pages .page-num-current {
  background: var(--cj-accent-gradient) !important;
  border-color: transparent !important;
  color: #fff !important;
}

.pages .figure-caption a {
  color: var(--cj-ink);
  font-weight: 500;
}

.pages .figure {
  border-radius: var(--cj-radius);
  overflow: hidden;
  border: 1px solid var(--cj-rule);
  transition: var(--cj-transition);
}

.pages .figure:hover {
  box-shadow: var(--cj-shadow-md);
  transform: translateY(-4px);
}

/* ============================================
   Footer
   ============================================ */
.cj-footer {
  position: relative;
  background: var(--cj-footer-bg) !important;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}

.cj-footer-accent {
  height: 3px;
  background: var(--cj-accent-gradient);
}

.cj-footer-inner {
  max-width: 1200px !important;
  min-width: auto !important;
  width: 100% !important;
  padding: 3.5rem 1rem 2.5rem !important;
}

.cj-footer-top {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

.cj-footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.25rem;
}

.cj-footer-col-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid rgba(108, 92, 231, 0.35);
  white-space: nowrap;
}

.cj-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cj-footer-links li {
  margin-bottom: 0.55rem;
  line-height: 1.5;
}

.cj-footer-links a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8125rem;
  transition: var(--cj-transition);
  display: inline-block;
}

.cj-footer-links a:hover {
  color: var(--cj-accent2);
  transform: translateX(3px);
}

.cj-footer-aside {
  position: sticky;
  top: 6rem;
}

.cj-footer-contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--cj-radius);
  padding: 1.75rem 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cj-footer-contact-label {
  font-family: var(--cj-font-en);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cj-accent2);
  margin-bottom: 1rem;
}

.cj-footer-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
}

.cj-footer-phone i {
  color: var(--cj-accent2);
  font-size: 1.1rem;
}

.cj-footer-phone a {
  font-family: var(--cj-font-en);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: 0.02em;
}

.cj-footer-phone a:hover {
  color: var(--cj-accent2) !important;
}

.cj-footer-phone-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1.25rem;
  padding-left: 1.7rem;
}

.cj-footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.cj-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

.cj-footer-contact-list li:last-child {
  margin-bottom: 0;
}

.cj-footer-contact-list i {
  color: var(--cj-accent-light);
  width: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  text-align: center;
  opacity: 0.85;
}

.cj-footer-contact-list a {
  color: var(--cj-accent2);
  word-break: break-all;
}

.cj-footer-contact-list a:hover {
  color: #fff;
}

.cj-footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
}

.cj-footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.cj-footer-copy {
  color: rgba(255, 255, 255, 0.45);
}

.cj-footer-icp {
  color: rgba(255, 255, 255, 0.45) !important;
  transition: var(--cj-transition);
}

.cj-footer-icp:hover {
  color: var(--cj-accent2) !important;
}

/* Mobile bottom nav */
.cj-mobile-nav-spacer {
  height: 56px;
}

.cj-mobile-nav {
  background: var(--cj-footer-bg) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1020;
}

.cj-mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.25rem;
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.6875rem;
  transition: var(--cj-transition);
  min-height: 56px;
}

.cj-mobile-nav-item i {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
  color: var(--cj-accent-light);
}

.cj-mobile-nav-item span {
  line-height: 1.2;
}

.cj-mobile-nav-item:active,
.cj-mobile-nav-item:hover {
  color: #fff !important;
  background: rgba(108, 92, 231, 0.15);
}

/* ============================================
   Online Service
   ============================================ */
.cj-online {
  overflow: visible !important;
}

.cj-online dl {
  background: var(--cj-accent-gradient) !important;
  border-radius: var(--cj-radius-sm);
  overflow: visible !important;
  box-shadow: var(--cj-shadow-sm);
}

.cj-online dl:hover {
  box-shadow: var(--cj-shadow-md);
  transform: translateX(-2px);
}

.cj-online dl dt {
  border-radius: var(--cj-radius-sm);
  border-color: var(--cj-rule) !important;
  box-shadow: var(--cj-shadow-md);
  min-width: 180px;
}

.cj-online dl dt .cj-wechat-qr {
  margin: 0;
  padding: 0;
}

.cj-online dl dt .cj-wechat-qr img {
  display: block;
  width: 168px;
  height: auto;
  border-radius: 4px;
}

.cj-online dl dt button {
  background: var(--cj-accent-gradient) !important;
  border-radius: var(--cj-radius-sm);
}

/* ============================================
   Buttons
   ============================================ */
.cj-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: var(--cj-accent-gradient);
  color: #fff !important;
  border: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--cj-transition);
}

.cj-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--cj-glow-purple);
  color: #fff !important;
}

/* ============================================
   Scroll Reveal
   ============================================ */
.cj-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--cj-transition), transform 0.7s var(--cj-transition);
}

.cj-reveal.cj-visible {
  opacity: 1;
  transform: translateY(0);
}

.cj-reveal-delay-1 { transition-delay: 0.1s; }
.cj-reveal-delay-2 { transition-delay: 0.2s; }
.cj-reveal-delay-3 { transition-delay: 0.3s; }
.cj-reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   Bootstrap Overrides
   ============================================ */
.text-success,
.text-info,
.text-warning {
  color: var(--cj-ink-bright) !important;
}

.bg-light {
  background-color: var(--cj-bg-alt) !important;
}

.bg-gray {
  background-color: var(--cj-bg-alt) !important;
}

.bg-info.fixed-bottom {
  background: var(--cj-footer-bg) !important;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991px) {
  .cj-nav .navbar-brand img,
  .cj-nav .navbar-brand .cj-logo {
    height: 44px;
    max-height: 44px;
    max-width: min(260px, 58vw);
  }

  .cj-hero-content {
    left: 5%;
    max-width: 90%;
  }

  .cj-nav .navbar-nav .nav-item.active .nav-link::after {
    display: none;
  }

  .cj-footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cj-footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cj-footer-aside {
    position: static;
  }
}

@media (max-width: 767px) {
  .cj-footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
  }

  .cj-footer-inner {
    padding: 2.5rem 1rem 2rem !important;
  }
}

@media (max-width: 480px) {
  .cj-footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cj-footer-col-title {
    font-size: 0.875rem;
  }
}

@media (min-width: 992px) {
  .cj-hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0.05) 20%,
      transparent 42%
    );
  }
}

@media (max-width: 768px) {
  .cj-hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.38) 0%,
      rgba(255, 255, 255, 0.1) 30%,
      transparent 55%
    );
  }
}

@media (max-width: 991px) {
  :root {
    --cj-hero-height: calc(100vh - var(--cj-nav-height));
  }

  .cj-hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cj-hero-single .cj-hero-container {
    max-height: none;
    padding-top: 2rem;
    padding-bottom: 2rem;
    align-items: center;
  }

  .cj-hero-visual {
    order: -1;
    min-height: 200px;
  }

  .cj-hero-showcase {
    width: min(100%, 400px);
  }

  .cj-hero-showcase-node {
    min-width: 150px;
    padding: 0.7rem 0.85rem;
  }

  .cj-hero-showcase-node span {
    font-size: 0.9rem;
  }

  .cj-partners .cj-partner-grid-indeed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .cj-hero-single .cj-hero-content {
    max-width: 100%;
  }

  .cj-partners .cj-partner-grid-indeed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cj-partners-indeed-fade {
    width: 72px;
  }
}

@media (max-width: 580px) {
  .cj-section {
    padding: 3rem 0;
  }
}

/* ============================================
   Homepage — layout & content density
   ============================================ */
.cj-home .cj-section {
  padding: 4.5rem 0;
}

.cj-home .row.cj-card-row {
  margin-left: -12px;
  margin-right: -12px;
}

.cj-home .row.cj-card-row > [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 1.5rem;
}

.cj-home .cj-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cj-home .cj-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cj-home .cj-card .card-text {
  flex: 1;
}

.cj-home .card-img-200 {
  height: 200px;
  overflow: hidden;
  background: var(--cj-bg-alt);
}

.cj-home .card-img-200 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 核心能力 */
.cj-capabilities .cj-cap-item {
  height: 100%;
  padding: 1.75rem 1.5rem;
  border-radius: var(--cj-radius);
  border: 1px solid var(--cj-rule);
  background: var(--cj-bg);
  box-shadow: var(--cj-shadow-sm);
  transition: var(--cj-transition);
}

.cj-capabilities .cj-cap-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--cj-shadow-md);
  border-color: rgba(108, 92, 231, 0.22);
}

.cj-capabilities .cj-cap-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  background: var(--cj-accent-gradient);
  margin-bottom: 1rem;
}

.cj-capabilities .cj-cap-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cj-ink-bright);
  margin-bottom: 0.5rem;
}

.cj-capabilities .cj-cap-item p {
  font-size: 0.875rem;
  color: var(--cj-muted);
  margin: 0;
  line-height: 1.65;
}

/* 关于我们双栏 */
.cj-home-about .cj-section-header {
  margin-bottom: 2.25rem;
}

.cj-about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 44%) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.cj-about-media {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  max-height: 340px;
  border-radius: var(--cj-radius-lg);
  overflow: hidden;
  box-shadow: var(--cj-shadow-md);
  border: 1px solid var(--cj-rule);
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
}

.cj-about-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 76% 38%;
  display: block;
}

.cj-about-text {
  font-size: 1.125rem;
  line-height: 1.95;
  color: var(--cj-ink);
}

.cj-about-text p {
  margin-bottom: 1.15rem;
}

.cj-about-text p:last-child {
  margin-bottom: 0;
}

/* 数据统计 */
.cj-home .cj-stats.number ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cj-home .cj-stats.number ul li {
  float: none;
  flex: 1 1 0;
  width: 20%;
  min-width: 140px;
  padding: 0.5rem 1.25rem;
  text-align: center;
  position: relative;
}

.cj-home .cj-stats.number ul li b {
  font-size: clamp(3rem, 5.5vw, 4.25rem);
  margin-bottom: 0.85rem !important;
}

.cj-home .cj-stats.number ul li p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
}

/* 行业洞察 — 左主推 + 右四宫格 */
.cj-news-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.15fr);
  gap: 1.25rem;
  align-items: stretch;
}

.cj-news-feature {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--cj-radius);
  overflow: hidden;
  border: 1px solid var(--cj-rule);
  background: var(--cj-bg);
  box-shadow: var(--cj-shadow-sm);
  transition: var(--cj-transition);
}

.cj-news-feature:hover {
  box-shadow: var(--cj-shadow-md);
  border-color: rgba(108, 92, 231, 0.2);
}

.cj-news-feature-img {
  display: block;
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 240px;
}

.cj-news-feature-img img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cj-news-feature:hover .cj-news-feature-img img {
  transform: scale(1.03);
}

.cj-news-feature-body {
  flex: 0 0 auto;
  padding: 1.25rem 1.5rem 1.35rem;
}

.cj-news-feature-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  line-height: 1.45;
}

.cj-news-feature-body h3 a {
  color: var(--cj-ink-bright);
}

.cj-news-feature-body h3 a:hover {
  color: var(--cj-accent);
}

.cj-news-feature-body p {
  font-size: 0.875rem;
  color: var(--cj-muted);
  line-height: 1.65;
  margin: 0 0 0.85rem;
}

.cj-news-readmore {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cj-accent);
  text-decoration: none;
}

.cj-news-readmore:hover {
  color: var(--cj-accent-dark, #5b4cdb);
}

.cj-news-date {
  display: block;
  font-size: 0.75rem;
  color: var(--cj-muted);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.cj-news-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
  height: 100%;
  min-height: 100%;
}

.cj-news-list-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 0;
  border-radius: var(--cj-radius);
  border: 1px solid var(--cj-rule);
  background: var(--cj-bg);
  overflow: hidden;
  transition: var(--cj-transition);
}

.cj-news-list-item:hover {
  box-shadow: var(--cj-shadow-sm);
  border-color: rgba(108, 92, 231, 0.18);
  transform: translateY(-2px);
}

.cj-news-list-item .thumb {
  display: block;
  border-radius: 0;
  overflow: hidden;
  height: 108px;
  flex-shrink: 0;
}

.cj-news-list-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cj-news-list-item:hover .thumb img {
  transform: scale(1.04);
}

.cj-news-list-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.85rem 1rem 1rem;
  min-height: 0;
}

.cj-news-list-body h5 {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cj-news-list-body h5 a {
  color: var(--cj-ink-bright);
}

.cj-news-list-body h5 a:hover {
  color: var(--cj-accent);
}

.cj-news-list-item .excerpt {
  font-size: 0.8125rem;
  color: var(--cj-muted);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 任务 Agent 场景 — 参考实在智能 3×4 卡片网格 */
.cj-agent-tasks {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.cj-agent-tasks-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.cj-agent-tasks-title {
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 700;
  color: var(--cj-ink-bright);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.cj-agent-tasks-sub {
  font-size: 0.95rem;
  color: var(--cj-muted);
  margin: 0 auto;
  max-width: 640px;
}

.cj-agent-tasks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.cj-agent-task-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  transition: var(--cj-transition);
  min-height: 108px;
}

.cj-agent-task-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(108, 92, 231, 0.12);
  border-color: rgba(108, 92, 231, 0.18);
}

.cj-agent-task-icon {
  position: relative;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(108, 92, 231, 0.12), rgba(0, 206, 201, 0.14));
  color: var(--cj-task-accent, var(--cj-accent));
  font-size: 1.25rem;
}

.cj-agent-task-badge {
  position: absolute;
  right: -4px;
  bottom: -2px;
  padding: 0.1rem 0.35rem;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  background: var(--cj-task-accent, var(--cj-accent));
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.cj-agent-task-body {
  min-width: 0;
  flex: 1;
}

.cj-agent-task-body h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--cj-ink-bright);
  line-height: 1.4;
  margin: 0 0 0.35rem;
}

.cj-agent-task-body p {
  font-size: 0.8125rem;
  color: var(--cj-muted);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .cj-agent-tasks-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .cj-agent-tasks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .cj-agent-tasks-grid {
    grid-template-columns: 1fr;
  }

  .cj-agent-task-card {
    min-height: 0;
  }
}

/* 合作伙伴 — 参考实在智能：大标题 + 密网格 + 右侧渐隐 */
.cj-partners.cj-home-partners {
  min-height: auto;
  height: auto !important;
  overflow: hidden;
}

.cj-partners-indeed {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 55%, #f5f8ff 100%) !important;
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.cj-partners-indeed-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.cj-partners-indeed-title {
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 700;
  color: var(--cj-ink-bright);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.cj-text-gradient {
  background: linear-gradient(90deg, #6c5ce7 0%, #00cec9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cj-partners-indeed-sub {
  font-size: 0.95rem;
  color: var(--cj-muted);
  margin: 0;
}

.cj-partners-indeed-wrap {
  position: relative;
  overflow: hidden;
}

.cj-partners-indeed-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(160px, 18vw);
  background: linear-gradient(90deg, rgba(248, 251, 255, 0) 0%, #f8fbff 85%);
  pointer-events: none;
  z-index: 2;
}

.cj-partners .partner,
.cj-partners .partner_content {
  width: 100%;
}

.cj-partners .cj-partner-grid-indeed {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  max-width: var(--cj-container-max);
  margin: 0 auto;
  padding: 0 0.5rem;
}

.cj-partners .partner_content_list {
  float: none !important;
  margin: 0 !important;
  width: auto !important;
  height: 88px !important;
  padding: 0.85rem 1rem !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: var(--cj-transition);
}

.cj-partners .partner_content_list:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.1);
  border-color: rgba(108, 92, 231, 0.15);
}

.cj-partners .partner_content_list img,
.cj-partners .partner_content_list img.gray {
  display: block;
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.cj-btn-partner-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 0.7rem 1.75rem;
  border-radius: 999px;
  border: 1px solid rgba(108, 92, 231, 0.35);
  color: var(--cj-accent) !important;
  font-weight: 600;
  font-size: 0.9375rem;
  background: #fff;
  transition: var(--cj-transition);
  text-decoration: none;
}

.cj-btn-partner-more:hover {
  background: var(--cj-accent);
  border-color: var(--cj-accent);
  color: #fff !important;
  box-shadow: var(--cj-shadow-md);
}

/* 列表页卡片 */
.cj-list-grid .cj-card {
  height: 100%;
  margin-bottom: 1.5rem;
}

.cj-list-grid .card-img-200,
.cj-list-grid .card-img-150 {
  height: 200px;
  overflow: hidden;
}

.cj-list-grid .card-img-200 img,
.cj-list-grid .card-img-150 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cj-news-page-grid .cj-news-card {
  height: 100%;
  border: 1px solid var(--cj-rule);
  border-radius: var(--cj-radius);
  overflow: hidden;
  background: var(--cj-bg);
  transition: var(--cj-transition);
  margin-bottom: 1.5rem;
}

.cj-news-page-grid .cj-news-card:hover {
  box-shadow: var(--cj-shadow-md);
  transform: translateY(-4px);
}

.cj-news-page-grid .cj-news-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.cj-news-page-grid .cj-news-card-body {
  padding: 1rem 1.15rem 1.25rem;
}

.cj-news-page-grid .cj-news-card-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 0.5rem;
}

.cj-page-hero {
  padding: 3rem 0 2.25rem !important;
}

@media (min-width: 992px) {
  .cj-home .cj-stats.number ul li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 18%;
    height: 64%;
    width: 1px;
    background: rgba(255, 255, 255, 0.28);
  }
}

@media (max-width: 991px) {
  :root {
    --cj-hero-height: calc(100vh - var(--cj-nav-height));
  }

  .cj-stats.cj-stats-band {
    padding: 2.25rem 0 !important;
  }

  .cj-about-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .cj-about-media {
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .cj-about-media img {
    object-position: 62% center;
  }

  .cj-about-text {
    font-size: 1.0625rem;
  }

  .cj-news-grid {
    grid-template-columns: 1fr;
  }

  .cj-news-list {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .cj-home .cj-stats.number ul li {
    width: 33.333%;
  }
}

@media (max-width: 767px) {
  :root {
    --cj-hero-height: auto;
  }

  .cj-hero-single {
    min-height: calc(100vh - var(--cj-nav-height));
  }

  .cj-hero-single .cj-hero-container {
    min-height: calc(100vh - var(--cj-nav-height));
  }

  .cj-partners .cj-partner-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1rem;
  }

  .cj-news-list {
    grid-template-columns: 1fr;
  }

  .cj-news-feature-img,
  .cj-news-feature-img img {
    min-height: 200px;
  }

  .cj-home .cj-stats.number ul li {
    flex: 0 0 50%;
    width: 50%;
    padding: 0.75rem 0.5rem;
  }

  .cj-stats.cj-stats-band {
    padding: 1.75rem 0 !important;
  }
}

@media (max-width: 580px) {
  .cj-home .cj-stats.number ul li {
    flex: 0 0 50%;
    min-width: 0;
  }

  .cj-home .cj-stats.number ul li b,
  .cj-stats.cj-stats-band ul li b {
    font-size: 2.5rem;
  }

  .cj-home .cj-stats.number ul li p,
  .cj-stats.cj-stats-band ul li p {
    font-size: 1rem;
  }

  .cj-hero-showcase {
    width: min(100%, 340px);
  }

  .cj-hero-showcase-node {
    min-width: 130px;
    gap: 0.55rem;
    padding: 0.6rem 0.75rem;
  }

  .cj-hero-showcase-icon {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .cj-hero-showcase-node span {
    font-size: 0.8125rem;
  }

  .cj-partners .cj-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cj-partners .partner_content_list {
    height: 100px !important;
    padding: 0.75rem !important;
  }

  .cj-partners .partner_content_list img {
    max-height: 64px;
  }

  .cj-hero-actions {
    margin-top: 1.25rem;
  }

  .cj-hero-actions .cj-btn-primary,
  .cj-hero-actions .cj-btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   About Page v2
   ============================================ */
.cj-about-body .pages {
  padding-top: 0.5rem;
}

.cj-about-page {
  padding-bottom: 5rem;
}

.cj-about-intro {
  padding: 2rem 0 3rem;
}

.cj-about-intro-grid {
  display: grid;
  grid-template-columns: minmax(320px, 44%) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.cj-about-intro-media {
  aspect-ratio: 5 / 4;
  max-height: 360px;
  border-radius: var(--cj-radius-lg);
  overflow: hidden;
  box-shadow: var(--cj-shadow-md);
  border: 1px solid var(--cj-rule);
}

.cj-about-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% 38%;
  display: block;
}

.cj-about-intro-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cj-accent);
  background: rgba(108, 92, 231, 0.08);
  border-radius: 999px;
}

.cj-about-intro-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--cj-ink-bright);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.cj-about-intro-text {
  font-size: 1.125rem;
  line-height: 1.95;
  color: var(--cj-ink);
}

.cj-about-intro-text p {
  margin-bottom: 1rem;
}

.cj-about-intro-text p:last-child {
  margin-bottom: 0;
}

.cj-about-intro-points {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.cj-about-intro-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  font-size: 1.0625rem;
  color: var(--cj-ink);
  line-height: 1.6;
}

.cj-about-intro-points li i {
  color: var(--cj-accent2);
  margin-top: 0.2rem;
}

.cj-about-stats.cj-stats-band {
  margin-bottom: 3.5rem;
}

.cj-about-stats.cj-stats-band ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cj-about-stats.cj-stats-band ul li {
  flex: 1 1 0;
  min-width: 140px;
  text-align: center;
  padding: 0.5rem 1rem;
}

.cj-about-block {
  margin-bottom: 3.5rem;
}

.cj-about-block-alt {
  padding: 2.5rem;
  border-radius: var(--cj-radius-lg);
  background: var(--cj-bg-section);
  border: 1px solid var(--cj-rule);
}

.cj-about-block-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.cj-about-block-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--cj-ink-bright);
  margin-bottom: 0.5rem;
}

.cj-about-block-sub {
  font-size: 1.0625rem;
  color: var(--cj-muted);
  margin: 0;
  line-height: 1.65;
}

.cj-about-card {
  height: 100%;
  padding: 1.65rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--cj-rule);
  border-radius: var(--cj-radius);
  background: var(--cj-bg);
  box-shadow: var(--cj-shadow-sm);
  transition: var(--cj-transition);
}

.cj-about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cj-shadow-md);
  border-color: rgba(108, 92, 231, 0.22);
}

.cj-about-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--cj-accent-gradient);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.cj-about-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: var(--cj-ink-bright);
}

.cj-about-card p {
  font-size: 1rem;
  color: var(--cj-muted);
  line-height: 1.7;
  margin: 0;
}

.cj-about-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.cj-about-steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  border-radius: var(--cj-radius-sm);
  border: 1px solid var(--cj-rule);
  background: var(--cj-bg);
}

.cj-about-block-alt .cj-about-steps li {
  background: #fff;
}

.cj-about-steps li span {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cj-font-en);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  background: var(--cj-accent-gradient);
}

.cj-about-steps li h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0;
  color: var(--cj-ink-bright);
}

.cj-about-steps li p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--cj-muted);
  line-height: 1.55;
}

.cj-about-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cj-about-tags li {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: 1rem;
  color: var(--cj-accent);
  background: rgba(108, 92, 231, 0.08);
  border: 1px solid rgba(108, 92, 231, 0.15);
}

.cj-about-bottom {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: stretch;
}

.cj-about-values-panel,
.cj-about-contact-panel {
  padding: 2rem;
  border-radius: var(--cj-radius-lg);
  border: 1px solid var(--cj-rule);
  background: var(--cj-bg);
  box-shadow: var(--cj-shadow-sm);
}

.cj-about-contact-panel {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
}

.cj-about-values-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.cj-about-values-list li {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--cj-rule);
  align-items: start;
}

.cj-about-values-list li:last-child {
  border-bottom: none;
}

.cj-about-values-list strong {
  color: var(--cj-accent);
  font-size: 1rem;
}

.cj-about-values-list span {
  color: var(--cj-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.cj-about-contact-panel h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cj-about-contact-panel p {
  margin-bottom: 0.7rem;
  color: var(--cj-ink);
  font-size: 1rem;
  line-height: 1.6;
}

.cj-about-contact-panel p i {
  width: 20px;
  color: var(--cj-accent);
  margin-right: 0.4rem;
}

.cj-about-contact-panel a {
  color: var(--cj-ink);
}

.cj-about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.cj-about-cta-row .cj-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  border: 1px solid var(--cj-rule);
  color: var(--cj-ink) !important;
  font-weight: 600;
  background: #fff;
}

@media (max-width: 991px) {
  .cj-about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cj-about-intro-media {
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .cj-about-steps {
    grid-template-columns: 1fr 1fr;
  }

  .cj-about-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .cj-about-intro-text {
    font-size: 1.0625rem;
  }

  .cj-about-steps {
    grid-template-columns: 1fr;
  }

  .cj-about-values-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .cj-about-cta-row .cj-btn-primary,
  .cj-about-cta-row .cj-btn-outline {
    width: 100%;
    justify-content: center;
  }
}
