* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary-color: #1A2A5E;
  --accent-color: #00D4FF;
  --accent-orange: #FF6B35;
  --bg-base: #F7F4EF;
  --text-color: #1A2A5E;
  --text-light: #5A6A8E;
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-border: rgba(255, 255, 255, 0.65);
  --glass-shadow: 0 8px 32px rgba(26, 42, 94, 0.08);
  --glass-shadow-hover: 0 16px 48px rgba(26, 42, 94, 0.14);
  --text-glow: 0 0 1px rgba(255, 255, 255, 0.95), 0 2px 20px rgba(255, 255, 255, 0.85);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; background-color: var(--bg-base); }

body {
  font-family: 'Outfit', 'Noto Sans SC', sans-serif;
  background: transparent;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.parallax-glow-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.glow-parallax { position: absolute; will-change: transform; }
.glow { border-radius: 50%; will-change: transform, opacity; pointer-events: none; }
.glow-parallax-1 { top: 18%; left: 8%; }
.glow-1 { width: 700px; height: 700px; background: rgb(0, 212, 255); filter: blur(80px); opacity: 0.15; animation: glowDriftX 28s linear infinite, glowPulseA 28s linear infinite; }
.glow-parallax-2 { bottom: 5%; right: 0; }
.glow-2 { width: 600px; height: 600px; background: rgb(167, 139, 250); filter: blur(70px); opacity: 0.12; animation: glowDriftY 32s linear infinite, glowPulseB 32s linear infinite; }
.glow-parallax-3 { top: 42%; left: 42%; }
.glow-3 { width: 500px; height: 500px; background: rgb(255, 107, 53); filter: blur(60px); opacity: 0.08; animation: glowDriftCircle 35s linear infinite, glowPulseC 35s linear infinite; }

@keyframes glowDriftX { 0%, 100% { transform: translate(-110px, 0) scale(0.96); } 50% { transform: translate(110px, 12px) scale(1.05); } }
@keyframes glowDriftY { 0%, 100% { transform: translate(0, -100px) scale(1); } 50% { transform: translate(-18px, 100px) scale(1.06); } }
@keyframes glowDriftCircle { 0% { transform: translate(100px, 0) scale(1); } 25% { transform: translate(0, 95px) scale(1.04); } 50% { transform: translate(-100px, 0) scale(0.96); } 75% { transform: translate(0, -95px) scale(1.03); } 100% { transform: translate(100px, 0) scale(1); } }
@keyframes glowPulseA { 0%, 100% { opacity: 0.05; } 50% { opacity: 0.25; } }
@keyframes glowPulseB { 0%, 100% { opacity: 0.25; } 50% { opacity: 0.05; } }
@keyframes glowPulseC { 0% { opacity: 0.12; } 33% { opacity: 0.05; } 66% { opacity: 0.22; } 100% { opacity: 0.12; } }

.cursor-glow {
  position: fixed; width: 150px; height: 150px; margin-left: -75px; margin-top: -75px;
  border-radius: 50%; background: rgba(255, 255, 255, 0.05); filter: blur(40px);
  pointer-events: none; z-index: 0; will-change: transform; opacity: 0; transition: opacity 0.4s ease;
}
.cursor-glow.visible { opacity: 1; }

.page-content { position: relative; z-index: 1; }
h1, h2, h3 { color: var(--primary-color); font-weight: 700; }

.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 5%; display: flex; justify-content: space-between; align-items: center;
  transition: var(--transition);
  background: rgba(247, 244, 239, 0.55);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.navbar.scrolled { background: rgba(255, 255, 255, 0.78); padding: 12px 5%; box-shadow: 0 4px 24px rgba(26, 42, 94, 0.06); }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(145deg, #1A2A5E, #243670);
  display: flex; align-items: center; justify-content: center; position: relative;
  box-shadow: 0 2px 10px rgba(26, 42, 94, 0.12);
}
.logo-mark span { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: #fff; }
.logo-mark::after { content: ''; position: absolute; top: 5px; right: 5px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-color); box-shadow: 0 0 6px rgba(0, 212, 255, 0.55); }
.logo-lockup { display: flex; flex-direction: column; gap: 2px; line-height: 1.15; }
.logo-en { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: var(--primary-color); letter-spacing: 0.14em; }
.logo-cn { font-size: 11px; color: var(--text-light); letter-spacing: 0.38em; font-weight: 500; }

.nav-menu { display: flex; list-style: none; gap: 32px; }
.nav-menu a { color: var(--primary-color); text-decoration: none; font-size: 15px; font-weight: 500; transition: var(--transition); position: relative; }
.nav-menu a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--accent-color), var(--primary-color)); transition: var(--transition); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu a:hover { color: #0A9EBF; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.mobile-menu-btn span { display: block; width: 25px; height: 3px; background: var(--primary-color); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

.hero-slider { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.1s var(--ease-out), visibility 1.1s; display: flex; align-items: center; justify-content: center; }
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-visual {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(26, 42, 94, 0.78) 0%, rgba(26, 42, 94, 0.35) 45%, rgba(255, 107, 53, 0.28) 100%),
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(0, 212, 255, 0.35), transparent 60%),
    linear-gradient(160deg, #1A2A5E 0%, #243670 40%, #3d2a45 100%);
  transform: scale(1.06); transition: transform 8s linear;
}
.hero-slide.active .hero-visual { transform: scale(1); }
.hero-visual::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 85%);
}
.hero-visual::after {
  content: ''; position: absolute; right: -10%; top: 10%; width: 55vw; height: 55vw; max-width: 720px; max-height: 720px;
  border-radius: 50%; border: 1px solid rgba(0, 212, 255, 0.25); box-shadow: inset 0 0 80px rgba(0, 212, 255, 0.08);
  animation: heroRing 22s linear infinite;
}
@keyframes heroRing { from { transform: rotate(0deg) scale(1); } to { transform: rotate(360deg) scale(1.05); } }
.hero-slide:nth-child(2) .hero-visual { background: linear-gradient(120deg, rgba(26, 42, 94, 0.82) 0%, rgba(0, 180, 210, 0.3) 50%, rgba(255, 107, 53, 0.22) 100%), linear-gradient(200deg, #152248 0%, #1A2A5E 50%, #2a3d6e 100%); }
.hero-slide:nth-child(3) .hero-visual { background: linear-gradient(135deg, rgba(26, 42, 94, 0.8) 0%, rgba(255, 107, 53, 0.32) 55%, rgba(0, 212, 255, 0.2) 100%), linear-gradient(180deg, #1A2A5E 0%, #2c1f3a 100%); }

.hero-copy { position: relative; z-index: 3; text-align: center; color: #fff; max-width: 920px; padding: 0 24px; transform: translateY(28px); opacity: 0; transition: transform 0.9s var(--ease-out) 0.2s, opacity 0.9s var(--ease-out) 0.2s; }
.hero-slide.active .hero-copy { transform: translateY(0); opacity: 1; }
.hero-brand { font-family: 'Outfit', sans-serif; font-size: clamp(42px, 8vw, 88px); font-weight: 800; letter-spacing: 0.12em; line-height: 1; margin-bottom: 18px; text-shadow: 0 8px 40px rgba(0,0,0,0.25); }
.hero-line { width: 56px; height: 3px; margin: 0 auto 22px; background: var(--accent-orange); border-radius: 2px; box-shadow: 0 0 16px rgba(255, 107, 53, 0.55); transform: scaleX(0); transition: transform 0.7s var(--ease-out) 0.45s; }
.hero-slide.active .hero-line { transform: scaleX(1); }
.hero-headline { font-size: clamp(22px, 3.6vw, 40px); font-weight: 700; color: #fff; margin-bottom: 16px; text-shadow: 0 4px 24px rgba(0,0,0,0.2); }
.hero-sub { font-size: clamp(15px, 1.8vw, 18px); color: rgba(255,255,255,0.88); margin-bottom: 36px; }
.hero-cta { display: inline-flex; align-items: center; padding: 14px 28px; background: var(--accent-orange); color: #fff; text-decoration: none; font-weight: 700; font-size: 15px; border-radius: 4px; box-shadow: 0 10px 28px rgba(255, 107, 53, 0.35); transition: var(--transition); }
.hero-cta:hover { background: #FF7A4A; transform: translateY(-2px); }
.hero-cta.ghost { background: transparent; border: 1px solid rgba(255,255,255,0.55); box-shadow: none; margin-left: 12px; }
.hero-cta.ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; }
.hero-dots { position: absolute; left: 50%; bottom: 36px; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; }
.hero-dot { width: 28px; height: 3px; border: none; padding: 0; background: rgba(255,255,255,0.35); cursor: pointer; transition: var(--transition); }
.hero-dot.active { background: #fff; box-shadow: 0 0 10px rgba(255,255,255,0.5); }

.section { padding: 100px 5%; position: relative; z-index: 10; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-eyebrow { display: inline-block; font-size: 13px; font-weight: 600; color: var(--accent-orange); letter-spacing: 0.18em; margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 12px; text-shadow: var(--text-glow); }
.section-sub { font-size: 16px; color: var(--text-light); max-width: 720px; margin: 0 auto; }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

.loop-strip { max-width: 1100px; margin: 0 auto 32px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 6px; font-size: 13px; font-weight: 600; color: var(--primary-color); }
.loop-strip span { padding: 6px 12px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 999px; backdrop-filter: blur(12px); }
.loop-strip i { font-style: normal; color: var(--accent-orange); padding: 6px 2px; }

.compare-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-card { padding: 28px 24px; background: var(--glass-bg); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 20px; box-shadow: var(--glass-shadow); transition: var(--transition); }
.compare-card:hover { transform: translateY(-4px); box-shadow: var(--glass-shadow-hover); }
.compare-card h3 { margin-bottom: 16px; text-shadow: var(--text-glow); }
.flow-pre { font-family: Consolas, monospace; font-size: 13px; line-height: 1.9; color: var(--text-light); white-space: pre-line; }

.cap-grid { max-width: 1100px; margin: 48px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cap-item { padding: 22px 20px; background: var(--glass-bg); backdrop-filter: blur(18px); border: 1px solid var(--glass-border); border-radius: 16px; box-shadow: var(--glass-shadow); transition: var(--transition); }
.cap-item:hover { transform: translateY(-5px); box-shadow: var(--glass-shadow-hover); border-color: rgba(0, 212, 255, 0.35); }
.cap-item .mod { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--accent-color); margin-bottom: 8px; }
.cap-item h3 { font-size: 16px; margin-bottom: 8px; text-shadow: var(--text-glow); }
.cap-item p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin: 0; }

.product-rail-wrap { position: relative; max-width: 1280px; margin: 0 auto; }
.product-rail { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 8px 4px 28px; scrollbar-width: none; }
.product-rail::-webkit-scrollbar { display: none; }
.product-card { flex: 0 0 min(340px, 82vw); scroll-snap-align: start; min-height: 340px; border-radius: 20px; overflow: hidden; text-decoration: none; color: inherit; border: 1px solid var(--glass-border); background: var(--glass-bg); backdrop-filter: blur(20px); box-shadow: var(--glass-shadow); transition: var(--transition); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--glass-shadow-hover); border-color: rgba(0, 212, 255, 0.35); }
.product-card-visual { height: 160px; position: relative; }
.product-card-visual span { position: absolute; inset: 0; display: grid; place-items: center; font-family: 'Outfit', sans-serif; font-size: 36px; font-weight: 800; color: rgba(255,255,255,0.9); }
.pv-1 { background: linear-gradient(135deg, #1A2A5E, #00D4FF); }
.pv-2 { background: linear-gradient(135deg, #243670, #FF6B35); }
.pv-3 { background: linear-gradient(135deg, #1A2A5E 30%, #0e7490); }
.pv-4 { background: linear-gradient(145deg, #FF6B35, #1A2A5E); }
.pv-5 { background: linear-gradient(135deg, #22c55e, #1A2A5E); }
.product-card-body { padding: 22px; }
.product-card-body h3 { font-size: 18px; margin-bottom: 10px; }
.product-card-body p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 14px; }
.product-more { font-size: 13px; font-weight: 700; color: var(--accent-orange); }
.rail-nav { position: absolute; top: 40%; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(26,42,94,0.12); background: rgba(255,255,255,0.85); cursor: pointer; z-index: 3; font-size: 20px; display: grid; place-items: center; transition: var(--transition); }
.rail-nav:hover { color: var(--accent-orange); }
.rail-prev { left: -8px; }
.rail-next { right: -8px; }

.showcase { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.demo-panel { background: #0a1224; color: #e8eef8; border-radius: 20px; padding: 24px; border: 1px solid rgba(0,212,255,.15); box-shadow: 0 24px 60px rgba(26,42,94,.25); }
.demo-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 16px 0; }
.demo-kpi { background: rgba(255,255,255,.06); border-radius: 10px; padding: 10px; font-size: 12px; }
.demo-kpi strong { display: block; font-size: 18px; color: #00d4ff; margin-top: 4px; }
.demo-suggest { border-left: 4px solid #00d4ff; padding-left: 14px; margin: 14px 0; font-size: 14px; line-height: 1.7; }
.showcase-copy h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 18px; text-shadow: var(--text-glow); }
.showcase-copy p { color: var(--text-light); font-size: 16px; line-height: 1.85; margin-bottom: 20px; }
.link-btn { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-orange); font-weight: 700; text-decoration: none; font-size: 15px; }

.arch-wrap { max-width: 520px; margin: 0 auto; text-align: center; }
.arch-box { padding: 14px 24px; border-radius: 12px; background: var(--glass-bg); border: 1px solid var(--glass-border); margin: 8px 0; font-weight: 600; backdrop-filter: blur(12px); }
.arch-arrow { color: var(--accent-orange); font-weight: 800; }
.layer-grid { max-width: 1100px; margin: 40px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.layer-card { padding: 28px; background: var(--glass-bg); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 20px; box-shadow: var(--glass-shadow); transition: var(--transition); }
.layer-card:hover { transform: translateY(-4px); box-shadow: var(--glass-shadow-hover); }

.marquee-section { padding: 40px 0; overflow: hidden; border-top: 1px solid rgba(26,42,94,0.06); border-bottom: 1px solid rgba(26,42,94,0.06); background: rgba(255,255,255,0.35); backdrop-filter: blur(12px); }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 32s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { font-size: 15px; font-weight: 600; color: var(--primary-color); white-space: nowrap; opacity: 0.75; }
.marquee-item i { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-color); margin: 0 18px 2px 0; vertical-align: middle; }

.stats-band { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item strong { display: block; font-family: 'Outfit', sans-serif; font-size: clamp(36px, 5vw, 52px); font-weight: 800; color: var(--primary-color); line-height: 1.1; text-shadow: var(--text-glow); }
.stat-item strong em { font-style: normal; font-size: 0.45em; color: var(--accent-orange); margin-left: 2px; vertical-align: super; }
.stat-item span { display: block; margin-top: 8px; font-size: 14px; color: var(--text-light); }

.contact { padding: 100px 5%; }
.contact-container { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-info h2 { font-size: 36px; margin-bottom: 36px; text-shadow: var(--text-glow); }
.contact-item { display: flex; align-items: center; margin-bottom: 22px; gap: 16px; }
.contact-item-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--glass-bg); border: 1px solid var(--glass-border); display: grid; place-items: center; font-size: 11px; font-weight: 800; color: var(--accent-orange); }
.contact-item-label { display: block; font-size: 13px; color: var(--text-light); }
.contact-item-value { font-weight: 600; }
.contact-form { padding: 36px; background: var(--glass-bg); backdrop-filter: blur(24px); border: 1px solid var(--glass-border); border-radius: 24px; box-shadow: var(--glass-shadow); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-light); }
.form-group input, .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid rgba(26,42,94,0.12); border-radius: 10px; background: rgba(255,255,255,0.7); font-family: inherit; }
.form-group textarea { min-height: 120px; resize: vertical; }
.submit-btn { width: 100%; padding: 14px; border: none; border-radius: 10px; background: var(--accent-orange); color: #fff; font-weight: 700; cursor: pointer; transition: var(--transition); }
.submit-btn:hover { background: #FF7A4A; transform: translateY(-1px); }

.footer { padding: 40px 5%; text-align: center; color: var(--text-light); font-size: 14px; border-top: 1px solid rgba(26,42,94,0.06); }
.toast { position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(80px); padding: 14px 24px; background: var(--primary-color); color: #fff; border-radius: 999px; font-weight: 600; opacity: 0; transition: var(--transition); z-index: 2000; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.cs-widget { position: fixed; right: 24px; bottom: 24px; z-index: 10050; }
.cs-toggle {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px 14px 14px; background: var(--accent-orange);
  color: #fff; border: none; border-radius: 999px; cursor: pointer;
  box-shadow: 0 10px 28px rgba(255, 107, 53, 0.45), 0 0 0 4px rgba(255, 107, 53, 0.15);
  font-family: inherit; font-size: 14px; font-weight: 700;
  transition: var(--transition); position: relative;
  animation: csFloat 3s ease-in-out infinite;
}
@keyframes csFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.cs-toggle:hover {
  background: #FF7A4A; transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 107, 53, 0.55), 0 0 0 6px rgba(255, 107, 53, 0.2);
  animation: none;
}
.cs-toggle-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.22); display: grid; place-items: center; flex-shrink: 0;
}
.cs-toggle-icon svg {
  width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.cs-toggle-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.cs-toggle-text strong { font-size: 15px; color: #fff; letter-spacing: 0.02em; }
.cs-toggle-text span { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.92); }
.cs-pulse {
  position: absolute; right: 10px; top: 8px; width: 10px; height: 10px;
  border-radius: 50%; background: #7CFFB2;
  animation: csPulse 2s ease-out infinite;
}
@keyframes csPulse {
  0% { box-shadow: 0 0 0 0 rgba(124, 255, 178, 0.65); }
  70% { box-shadow: 0 0 0 12px rgba(124, 255, 178, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 255, 178, 0); }
}
.cs-panel {
  position: absolute; right: 0; bottom: calc(100% + 14px); width: 300px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.75); border-radius: 18px;
  box-shadow: 0 16px 48px rgba(26,42,94,0.18); padding: 20px;
  opacity: 0; visibility: hidden; transform: translateY(8px) scale(0.98);
  transition: var(--transition); pointer-events: none;
}
.cs-widget.open .cs-panel {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1); pointer-events: auto;
}
.cs-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cs-panel-head h3 { margin: 0; font-size: 17px; text-shadow: none; }
.cs-online {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: #1F8A4C;
  background: rgba(31,138,76,0.1); padding: 4px 10px; border-radius: 999px;
}
.cs-online i { width: 7px; height: 7px; border-radius: 50%; background: #22C55E; display: block; }
.cs-panel-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.cs-actions { display: grid; gap: 8px; }
.cs-actions a {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  border-radius: 12px; text-decoration: none;
  background: rgba(26,42,94,0.04); border: 1px solid rgba(26,42,94,0.08);
  color: var(--primary-color); font-weight: 600; font-size: 14px;
  transition: var(--transition);
}
.cs-actions a:hover {
  background: rgba(255,107,53,0.1); border-color: rgba(255,107,53,0.35); color: var(--accent-orange);
}
.cs-actions a .cs-ico {
  width: 34px; height: 34px; border-radius: 10px; background: #fff;
  display: grid; place-items: center; font-size: 11px; font-weight: 800;
  font-family: 'Outfit', sans-serif; box-shadow: 0 2px 8px rgba(26,42,94,0.06); flex-shrink: 0;
}
.cs-actions a span { display: flex; flex-direction: column; }
.cs-actions a small { display: block; font-size: 11px; font-weight: 500; color: var(--text-light); margin-top: 2px; }

@media (max-width: 1024px) { .cap-grid, .layer-grid, .stats-band { grid-template-columns: repeat(2, 1fr); } .compare-grid, .showcase, .contact-container { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  .nav-menu { position: fixed; top: 0; right: -100%; width: 75%; height: 100vh; background: rgba(255,255,255,0.92); backdrop-filter: blur(24px); flex-direction: column; justify-content: center; align-items: center; transition: var(--transition); gap: 36px; }
  .nav-menu.active { right: 0; }
  .mobile-menu-btn { display: block; z-index: 1001; }
  .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
  .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-cta.ghost { margin-left: 0; }
  .cap-grid, .stats-band { grid-template-columns: 1fr; }
  .cs-widget { right: 16px; bottom: 16px; }
  .cs-toggle-text span { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .glow, .hero-visual::after, .marquee-track, .cs-toggle, .cs-pulse { animation: none !important; }
  .cursor-glow { display: none; }
  .reveal { opacity: 1; transform: none; }
}
