/* ==========================================================================
   CSS Variables & Design Tokens
   ========================================================================== */
:root {
	/* Colors */
	--tech-blue-base: #0f172a;
	--tech-blue-dark: #020617;
	--tech-blue-light: #1e293b;
	--tech-blue-glow: rgba(56, 189, 248, 0.4);
	
	--accent-orange: #ff6b00;
	--accent-orange-hover: #ff8533;
	--accent-orange-glow: rgba(255, 107, 0, 0.5);

	/* Text */
	--text-primary: #f8fafc;
	--text-secondary: #94a3b8;
	--text-muted: #64748b;
	
	/* Glass */
	--glass-bg: rgba(30, 41, 59, 0.6);
	--glass-border: rgba(255, 255, 255, 0.08);
	--glass-border-hover: rgba(255, 255, 255, 0.2);
	
	/* Layout */
	--container-width: 1200px;
	--container-padding: 2rem;
	--section-padding: 6rem;
	--border-radius-lg: 16px;
	--border-radius-md: 12px;
	--border-radius-sm: 8px;
	
	/* Typography */
	--font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	
	/* Transitions */
	--transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   Resets and Base
   ========================================================================== */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-primary);
	background-color: var(--tech-blue-dark);
	color: var(--text-primary);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

a {
	color: var(--text-primary);
	text-decoration: none;
	transition: var(--transition-smooth);
}

a:hover {
	color: var(--accent-orange);
}

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

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

/* ==========================================================================
   Utilities & Layout
   ========================================================================== */
.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	width: 100%;
}

.grid-container {
	display: grid;
	align-items: stretch;
}

.section-padding {
	padding: var(--section-padding) 0;
}

.text-center { text-align: center; }
.text-orange { color: var(--accent-orange); }
.text-blue { color: #38bdf8; }

/* Utility classes used in template markup */
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-sm { font-size: 0.875rem; line-height: 1.55; }
.text-xs { font-size: 0.78rem; line-height: 1.55; }
.text-lg { font-size: 1.125rem; line-height: 1.65; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2rem; }
.mt-10 { margin-top: 2.75rem; }
.mt-auto { margin-top: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.75rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.justify-center { justify-content: center; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace; }

.eyebrow {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

/* ==========================================================================
   Glassmorphism System
   ========================================================================== */
.glass-header {
	background: rgba(2, 6, 23, 0.7);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--glass-border);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: var(--transition-smooth);
}

.glass-card {
	background: var(--glass-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius-lg);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	transition: var(--transition-smooth);
}

.glass-card:hover {
	transform: translateY(-4px);
	border-color: var(--glass-border-hover);
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 20px rgba(56, 189, 248, 0.1);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	border-radius: var(--border-radius-sm);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	border: none;
	transition: var(--transition-smooth);
	white-space: nowrap;
}

.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

.btn-primary {
	background-color: var(--accent-orange);
	color: #fff;
}

.btn-primary:hover {
	background-color: var(--accent-orange-hover);
	color: #fff;
	transform: translateY(-2px);
}

.btn-glow {
	box-shadow: 0 0 15px var(--accent-orange-glow);
}
.btn-glow:hover {
	box-shadow: 0 0 25px var(--accent-orange-glow);
}

.btn-secondary.glass-btn {
	background: rgba(255, 255, 255, 0.05);
	color: var(--text-primary);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(8px);
}

.btn-secondary.glass-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--glass-border-hover);
	color: #fff;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
	padding: 0 var(--container-padding);
	max-width: var(--container-width);
	margin: 0 auto;
}

.site-branding .logo-text {
	display: none; /* Hidden visually but kept for screen readers */
}

.site-nav-logo {
	height: 60px;
	width: auto;
	border-radius: 8px;
	box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
	transition: var(--transition-smooth);
	display: block;
}

.site-nav-logo:hover {
	box-shadow: 0 0 25px rgba(56, 189, 248, 0.7);
	transform: scale(1.05);
}

.main-navigation ul {
	list-style: none;
	display: flex;
	gap: 0.55rem;
	padding: 0.35rem;
	border-radius: 14px;
	background: rgba(15, 23, 42, 0.55);
	border: 1px solid rgba(148, 163, 184, 0.18);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.main-navigation a {
	font-size: 0.92rem;
	font-weight: 600;
	color: #b8c4d6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 2.1rem;
	padding: 0 0.95rem;
	border-radius: 10px;
	border: 1px solid transparent;
	letter-spacing: 0.01em;
}

.main-navigation a:hover {
	color: #f8fafc;
	background: rgba(148, 163, 184, 0.12);
	border-color: rgba(148, 163, 184, 0.3);
}

.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a,
.main-navigation a[aria-current="page"] {
	color: #ffffff;
	background: linear-gradient(180deg, rgba(56, 189, 248, 0.24), rgba(56, 189, 248, 0.14));
	border-color: rgba(56, 189, 248, 0.5);
	box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.2), 0 8px 20px rgba(56, 189, 248, 0.12);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-tech {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 80px; /* Offset for fixed header */
	text-align: center;
	overflow: hidden;
}

.hero-content {
	position: relative;
	z-index: 10;
	max-width: 800px;
}

.hero-title {
	font-size: clamp(3rem, 6vw, 5rem);
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.gradient-text {
	background: linear-gradient(to right, #fff, var(--text-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: clamp(1.125rem, 2vw, 1.35rem);
	color: var(--text-secondary);
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

/* Decorative Orbs & Backgrounds */
.tech-grid-bg {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 50px 50px;
	z-index: 1;
	mask-image: radial-gradient(circle at center, black, transparent 80%);
	-webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.blob-blue {
	position: absolute;
	top: 20%;
	left: 15%;
	width: 50vw;
	height: 50vw;
	max-width: 600px;
	max-height: 600px;
	background: var(--tech-blue-base);
	border-radius: 50%;
	filter: blur(100px);
	z-index: 1;
	opacity: 0.6;
	animation: float 20s ease-in-out infinite;
}

.blob-orange {
	position: absolute;
	bottom: 10%;
	right: 15%;
	width: 40vw;
	height: 40vw;
	max-width: 500px;
	max-height: 500px;
	background: rgba(255, 107, 0, 0.15);
	border-radius: 50%;
	filter: blur(80px);
	z-index: 1;
	animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
	0%, 100% { transform: translate(0, 0); }
	33% { transform: translate(30px, -50px); }
	66% { transform: translate(-20px, 20px); }
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.section-header {
	margin-bottom: 4rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.section-desc {
	font-size: 1.25rem;
	color: var(--text-secondary);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}

.feature-card {
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
}

.feature-icon {
	margin-bottom: 1.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	padding: 1rem;
	border-radius: var(--border-radius-md);
	background: rgba(255,255,255,0.03);
	border: 1px solid var(--glass-border);
	line-height: 0;
}

.feature-icon svg {
	width: 32px;
	height: 32px;
	display: block;
	margin: 0 auto;
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.feature-card p {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 0;
}

@media (max-width: 900px) {
	.features-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Highlight (Split) Section
   ========================================================================== */
.split-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.split-content .sub-title {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.split-content p {
	font-size: 1.125rem;
	color: var(--text-secondary);
}

/* ==========================================================================
   Inner Pages (page.php, index.php)
   ========================================================================== */
.page-main {
	padding-top: 80px;
}

.page-tech-header {
	position: relative;
	padding: 6rem 0 3rem;
	text-align: center;
	border-bottom: 1px solid var(--glass-border);
	background: var(--tech-blue-base);
	overflow: hidden;
}

.ambient-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 100%;
	background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
	z-index: 1;
	pointer-events: none;
}

.page-tech-header .container {
	position: relative;
	z-index: 2;
}

.page-title {
	font-size: 3rem;
	margin-bottom: 0;
}

.lx-breadcrumb {
	margin: 0 auto 0.95rem auto;
}

.lx-breadcrumb ol {
	list-style: none;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.45);
	border: 1px solid rgba(148, 163, 184, 0.22);
}

.lx-breadcrumb li {
	display: inline-flex;
	align-items: center;
	color: #94a3b8;
	font-size: 0.82rem;
	line-height: 1.2;
}

.lx-breadcrumb li:not(:last-child)::after {
	content: "/";
	margin-left: 0.5rem;
	color: rgba(148, 163, 184, 0.5);
}

.lx-breadcrumb a {
	color: #cbd5e1;
}

.lx-breadcrumb a:hover {
	color: #ffffff;
}

.lx-breadcrumb .is-current {
	color: #f8fafc;
}

.glow-text {
	text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.text-content {
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--text-secondary);
	padding: 3rem; /* Used if wrapped in glass-card */
}

.text-content h1, .text-content h2, .text-content h3 {
	color: var(--text-primary);
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.text-content p {
	margin-bottom: 1.5rem;
}

/* ==========================================================================
   Inner Page Rhythm
   ========================================================================== */

.inner-page-wrap {
	max-width: 1120px;
	margin: 0 auto;
}

.btn-full {
	width: 100%;
	text-align: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.btn-full:hover {
	transform: translateY(-2px);
}

.btn-secondary.glass-btn.btn-full:hover {
	background: rgba(56, 189, 248, 0.14);
	border-color: rgba(56, 189, 248, 0.45);
	box-shadow: 0 8px 20px rgba(2, 6, 23, 0.4);
}

.support-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.1rem;
	max-width: 1040px;
	margin: 0.5rem auto 0 auto;
}

.support-card {
	display: flex;
	flex-direction: column;
	padding: 1.9rem 1.6rem;
	min-height: 280px;
	row-gap: 0.25rem;
}

.support-card h3 {
	font-size: 1.55rem;
	line-height: 1.35;
	margin-bottom: 0.65rem;
}

.support-icon {
	width: 56px;
	height: 56px;
	padding: 0.55rem;
	border-radius: 12px;
}

.support-note {
	padding: 2.35rem 2.15rem;
}

.support-footnote {
	margin-top: 1.2rem;
}

.download-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.7rem;
}

.download-card {
	display: flex;
	flex-direction: column;
	padding: 1.65rem 1.45rem;
	min-height: 320px;
}

.install-code {
	background: rgba(0, 0, 0, 0.5);
	padding: 0.85rem;
	border-radius: 8px;
	font-size: 0.78rem;
	color: #fff;
	margin-bottom: 1rem;
	border: 1px solid rgba(255, 107, 0, 0.2);
	line-height: 1.55;
}

.faq-card {
	padding: 2.3rem 2.1rem;
}

.pricing-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.1rem;
	max-width: 980px;
	margin: 0 auto;
}

.pricing-card {
	display: flex;
	flex-direction: column;
	padding: 2.2rem 1.8rem;
}

.pricing-card-free {
	border-top: 3px solid #10b981;
}

.pricing-card-pro {
	border-top: 3px solid #f97316;
}

.plan-list {
	list-style: none;
	padding: 0;
}

.plan-list li {
	margin-bottom: 0.85rem;
	line-height: 1.65;
}

.about-card {
	padding: 2.4rem 2.1rem;
	max-width: 940px;
	margin: 0 auto;
}

.single-title {
	margin-bottom: 0.7rem;
}

.single-meta {
	display: inline-flex;
	gap: 1rem;
	flex-wrap: wrap;
	color: #94a3b8;
	font-size: 0.86rem;
	margin-top: 0.4rem;
}

.single-article {
	padding: 2.2rem 2rem;
	max-width: 980px;
	margin: 0 auto;
}

.single-content {
	max-width: 100%;
	padding: 0;
}

.single-content p,
.single-content li {
	color: #cbd5e1;
	line-height: 1.88;
}

.related-section {
	max-width: 980px;
	margin: 2.2rem auto 0 auto;
}

.related-title {
	font-size: 1.35rem;
	margin-bottom: 1rem;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.related-card {
	padding: 1.15rem 1.05rem;
}

.related-card h3 {
	font-size: 1.02rem;
	line-height: 1.4;
	margin-bottom: 0.6rem;
}

.related-card p {
	font-size: 0.92rem;
	line-height: 1.68;
	color: #cbd5e1;
	margin-bottom: 0.8rem;
}

.related-date {
	font-size: 0.76rem;
	color: #94a3b8;
	margin-bottom: 0.45rem;
}

.latest-topic-section + .latest-topic-section {
	margin-top: 2.1rem;
}

.latest-topic-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.latest-topic-tip {
	font-size: 0.8rem;
	color: #94a3b8;
}

.latest-topic-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.latest-topic-grid-sticky {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.latest-topic-card {
	padding: 1.2rem 1.1rem;
}

.latest-topic-card h3 {
	font-size: 1.08rem;
	line-height: 1.42;
	margin-bottom: 0.58rem;
}

.latest-topic-card p {
	font-size: 0.92rem;
	line-height: 1.72;
	color: #cbd5e1;
	margin-bottom: 0.78rem;
}

.latest-topic-meta {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.78rem;
	color: #cbd5e1;
	margin-bottom: 0.45rem;
}

.sticky-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.18rem 0.48rem;
	border-radius: 999px;
	background: rgba(249, 115, 22, 0.16);
	border: 1px solid rgba(249, 115, 22, 0.5);
	color: #fdba74;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.latest-pagination {
	margin-top: 1.2rem;
}

.latest-pagination .page-numbers {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	padding: 0;
}

.latest-pagination .page-numbers a,
.latest-pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.1rem;
	height: 2.1rem;
	padding: 0 0.72rem;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(15, 23, 42, 0.56);
	font-size: 0.85rem;
	color: #cbd5e1;
}

.latest-pagination .page-numbers .current {
	border-color: rgba(56, 189, 248, 0.56);
	color: #e0f2fe;
	background: rgba(56, 189, 248, 0.12);
}

.latest-pagination .page-numbers a:hover {
	border-color: rgba(249, 115, 22, 0.6);
	color: #fff;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background: #000;
	border-top: 1px solid var(--glass-border);
	padding: 4rem 0 2rem;
	margin-top: 4rem;
}

.footer-widgets {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 3rem;
	max-width: var(--container-width);
	margin: 0 auto 3rem;
	padding: 0 var(--container-padding);
}

.widget-title {
	font-size: 1.125rem;
	margin-bottom: 1.5rem;
	color: #fff;
}

.brand-widget p {
	color: var(--text-muted);
	margin-bottom: 0.5rem;
}

.link-widget ul {
	list-style: none;
}

.link-widget li {
	margin-bottom: 0.75rem;
}

.link-widget a {
	color: var(--text-muted);
}

.link-widget a:hover {
	color: var(--accent-orange);
}

.site-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem var(--container-padding) 0;
	max-width: var(--container-width);
	margin: 0 auto;
	border-top: 1px solid rgba(255,255,255,0.05);
	color: var(--text-muted);
	font-size: 0.875rem;
}

.site-info-minimal {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3rem;
	padding: 2rem var(--container-padding) 0;
	text-align: center;
}

.site-info-minimal .copyright {
	font-size: 0.9rem;
	letter-spacing: 0.01em;
}

.beian-link-muted {
	position: absolute;
	right: var(--container-padding);
	bottom: 0.15rem;
	color: rgba(20, 28, 40, 0.5);
	font-size: 0.58rem;
	opacity: 0.45;
	text-decoration: none;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.beian-link-muted:hover {
	color: rgba(46, 59, 79, 0.7);
	opacity: 0.62;
}

.legal-links {
	display: flex;
	gap: 1.5rem;
}

.legal-links a {
	color: var(--text-muted);
}

.legal-links a:hover {
	color: var(--text-primary);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
	.split-layout {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.footer-widgets {
		grid-template-columns: 1fr;
	}
	.support-grid,
	.download-grid,
	.pricing-grid,
	.related-grid,
	.latest-topic-grid,
	.latest-topic-grid-sticky {
		grid-template-columns: 1fr;
	}
	.support-card,
	.download-card,
	.pricing-card {
		min-height: 0;
	}
}

@media (max-width: 768px) {
	:root {
		--section-padding: 4rem;
	}
	.main-navigation ul {
		display: none;
	}
	.main-navigation ul.nav-open {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 80px;
		left: 0;
		width: 100%;
		background: rgba(2, 6, 23, 0.95);
		padding: 1.25rem 1.5rem;
		border-bottom: 1px solid rgba(255,255,255,0.08);
		z-index: 1200;
		gap: 0.6rem;
		border-radius: 0;
	}
	.main-navigation ul.nav-open a {
		justify-content: flex-start;
		height: 2.4rem;
		padding: 0 0.9rem;
	}
	.menu-toggle {
		display: block;
	}
	.header-actions {
		display: none;
	}
	.hero-actions {
		flex-direction: column;
	}
	.needs-actions {
		flex-direction: column;
	}
	.need-form-grid {
		grid-template-columns: 1fr;
	}
	.need-actions {
		flex-direction: column;
	}
	.need-actions .btn {
		width: 100%;
	}
	.needs-topic-grid,
	.needs-flow-grid {
		grid-template-columns: 1fr;
	}
	.site-info {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
	.site-info-minimal {
		padding-bottom: 1.5rem;
	}
	.beian-link-muted {
		position: static;
		display: block;
		margin-top: 0.5rem;
		font-size: 0.56rem;
		color: rgba(20, 28, 40, 0.5);
		opacity: 0.45;
	}
	.text-content {
		padding: 1.5rem;
	}
	.inner-page-wrap {
		padding-left: 0.2rem;
		padding-right: 0.2rem;
	}
	.support-card,
	.download-card,
	.pricing-card,
	.about-card,
	.faq-card,
	.support-note {
		padding: 1.35rem 1.15rem;
	}
	.latest-topic-head {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ==========================================================================
   Advanced UI Upgrades (Phase 5)
   ========================================================================== */

/* Cyber SVG Background layer */
.cyber-bg-layer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 0;
	pointer-events: none;
	opacity: 0.8;
}

.animated-line {
	animation: scanline 8s linear infinite;
}

@keyframes scanline {
	0% { transform: translateY(-100%); }
	100% { transform: translateY(100vh); }
}

/* Deep Glassmorphism overrides */
.glass-header {
	background: rgba(2, 6, 23, 0.4);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(20px) saturate(150%);
	-webkit-backdrop-filter: blur(20px) saturate(150%);
}

.glass-card {
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.4) 100%);
	backdrop-filter: blur(24px) saturate(120%);
	-webkit-backdrop-filter: blur(24px) saturate(120%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.element-hover-glow:hover {
	border-color: rgba(56, 189, 248, 0.4);
	box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2), 0 0 20px rgba(56, 189, 248, 0.15);
	transform: translateY(-6px);
}

/* Feature Grid Adjustments */
.features-grid {
	position: relative;
	z-index: 2;
}

.cyber-grid .feature-card {
	position: relative;
	overflow: hidden;
}

.cyber-grid .feature-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(56,189,248,0.05) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.cyber-grid .feature-card:hover::before {
	opacity: 1;
}

/* Hero Badge */
.hero-badge {
	display: inline-block;
	padding: 0.4rem 1rem;
	background: rgba(56,189,248,0.1);
	border: 1px solid rgba(56,189,248,0.3);
	color: #38bdf8;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	letter-spacing: 0.05em;
	box-shadow: 0 0 15px rgba(56,189,248,0.2);
}

/* Cyan Blob for extra tech feel */
.blob-cyan {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30vw;
	height: 30vw;
	background: rgba(34, 211, 238, 0.1);
	border-radius: 50%;
	filter: blur(120px);
	z-index: 0;
	animation: pulse 15s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
	50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

/* Terminal Mockup */
.terminal-mockup {
	border-radius: 12px;
	overflow: hidden;
	font-family: 'Fira Code', 'Courier New', Courier, monospace;
	font-size: 0.9rem;
	text-align: left;
}
.terminal-header {
	background: rgba(0,0,0,0.4);
	padding: 0.75rem 1rem;
	border-bottom: 1px solid rgba(255,255,255,0.05);
	display: flex;
	align-items: center;
}
.terminal-header .dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin-right: 8px;
	display: inline-block;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.term-title {
	color: #888;
	margin-left: 1rem;
	font-size: 0.85rem;
}
.terminal-body {
	padding: 1.5rem;
	background: rgba(10, 15, 25, 0.8);
	line-height: 1.6;
}
.term-line {
	margin-bottom: 0.5rem;
}
.term-line.prompt span {
	color: #38bdf8;
	margin-right: 0.5rem;
}
.term-line.output {
	color: #94a3b8;
}
.term-line.output.success {
	color: #22c55e;
}
.term-line.output.info {
	color: #eab308;
}
.cursor-blink {
	animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* Highlight Badges */
.highlight-badges {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}
.tech-badge {
	padding: 0.4rem 0.8rem;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 6px;
	font-size: 0.85rem;
	color: #cbd5e1;
}

/* Adjust layout overlaps */
.dynamic-graphic-box {
	position: relative;
	z-index: 2;
}
.deep-glass-box {
	position: relative;
	z-index: 2;
}

/* ==========================================================================
   Phase 6: Marquee, Scroll Reveal, Mascot Floating
   ========================================================================== */

/* Hero Layout */
.hero-layout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4rem;
	width: 100%;
}
.hero-content {
	flex: 1;
	text-align: left;
	max-width: 600px;
}
.hero-title, .hero-subtitle {
	margin-left: 0;
}
.hero-actions {
	justify-content: flex-start;
}

.quick-start-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	margin-top: 1.1rem;
}

.quick-start-item {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--text-secondary);
	font-size: 0.84rem;
	padding: 0.6rem 0.7rem;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(2, 6, 23, 0.45);
	white-space: nowrap;
}

.quick-start-item span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: rgba(255, 107, 0, 0.18);
	border: 1px solid rgba(255, 107, 0, 0.45);
	color: #ffd8bf;
	font-size: 0.75rem;
	font-weight: 700;
}

/* Mascot Area */
.hero-mascot {
	flex: 1;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 400px;
}
.mascot-image {
	max-width: 100%;
	height: auto;
	z-index: 10;
	position: relative;
	border-radius: 20px;
	filter: drop-shadow(0 0 30px rgba(56, 189, 248, 0.5));
}
.floating-anim {
	animation: floatMascot 6s ease-in-out infinite;
}
@keyframes floatMascot {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-20px); }
}

/* Mascot Pulse Glows */
.mascot-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	z-index: 1;
	opacity: 0.6;
	animation: pulseGlow 4s ease-in-out infinite alternate;
}
.hero-mascot .glow-blue {
	width: 300px;
	height: 300px;
	background: rgba(56, 189, 248, 0.3);
	top: 50%;
	left: 50%;
	transform: translate(-60%, -50%);
}
.hero-mascot .glow-orange {
	width: 250px;
	height: 250px;
	background: rgba(255, 107, 0, 0.2);
	top: 50%;
	left: 50%;
	transform: translate(-30%, -40%);
	animation-delay: -2s;
}
@keyframes pulseGlow {
	0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
	100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Scrolling Marquee */
.marquee-section {
	padding: 2.35rem 0 2.2rem;
	background: rgba(2, 6, 23, 0.6);
	border-top: 1px solid rgba(255,255,255,0.05);
	border-bottom: 1px solid rgba(255,255,255,0.05);
	overflow-x: hidden;
	overflow-y: visible;
	position: relative;
	z-index: 10;
}
.marquee-container {
	width: 100%;
	overflow: visible;
	display: flex;
}
.marquee-content {
	display: flex;
	gap: 2rem;
	align-items: center;
	padding: 0.15rem 0;
	animation: scrollMarquee 30s linear infinite;
	white-space: nowrap;
}
.marquee-content:hover {
	animation-play-state: paused;
}
.skill-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 30px;
	font-weight: 600;
	font-size: 1rem;
	backdrop-filter: blur(8px);
	transition: all 0.3s ease;
	position: relative;
}
.skill-badge:hover {
	background: rgba(255,255,255,0.1);
	transform: translateY(-1px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	line-height: 1;
}

.badge-text {
	display: inline-block;
	line-height: 1.25;
}
@keyframes scrollMarquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-50% - 1rem)); }
}

/* Latest updates section */
.latest-section {
	position: relative;
	z-index: 8;
}

.latest-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.4rem;
}

.latest-card {
	padding: 1.35rem 1.3rem;
	display: flex;
	flex-direction: column;
	min-height: 220px;
}

.latest-meta {
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	color: #94a3b8;
	margin-bottom: 0.65rem;
}

.latest-title {
	font-size: 1.15rem;
	line-height: 1.4;
	margin-bottom: 0.75rem;
}

.latest-excerpt {
	font-size: 0.94rem;
	line-height: 1.72;
	color: #cbd5e1;
	margin-bottom: 1rem;
}

.latest-link {
	margin-top: auto;
	font-size: 0.88rem;
	color: #38bdf8;
}

.latest-link:hover {
	color: #7dd3fc;
}

/* Needs spotlight & topic page */
.needs-section {
	position: relative;
	z-index: 8;
	padding-top: 0;
}

.needs-spotlight {
	padding: 2.1rem 2rem;
	border-color: rgba(56, 189, 248, 0.24);
	background: linear-gradient(145deg, rgba(30, 41, 59, 0.64), rgba(2, 6, 23, 0.78));
}

.needs-head {
	margin-bottom: 1.25rem;
}

.needs-head .section-title {
	margin-bottom: 0.7rem;
}

.needs-head .section-desc {
	color: #cbd5e1;
	line-height: 1.8;
}

.needs-points {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
	margin-bottom: 1.25rem;
}

.needs-point {
	display: flex;
	align-items: flex-start;
	gap: 0.58rem;
	padding: 0.9rem 1rem;
	font-size: 0.95rem;
	line-height: 1.6;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(15, 23, 42, 0.42);
	border-radius: 12px;
	color: #cbd5e1;
}

.needs-point-body {
	display: flex;
	flex-direction: column;
	gap: 0.16rem;
	min-width: 0;
}

.needs-point-title {
	font-weight: 700;
	color: #f8fafc;
	line-height: 1.35;
	white-space: nowrap;
}

.needs-point-desc {
	font-size: 0.92rem;
	line-height: 1.58;
	color: #cbd5e1;
	word-break: break-word;
}

.needs-point .needs-point-icon {
	font-size: 1rem;
	line-height: 1;
	margin-top: 0.14rem;
	flex: 0 0 auto;
}

.needs-actions {
	gap: 0.9rem;
}

.needs-topic-hero,
.needs-flow-section {
	padding: 2.05rem 1.85rem;
	margin-bottom: 1.35rem;
}

.needs-topic-hero > p,
.needs-flow-section > p {
	color: #cbd5e1;
	line-height: 1.78;
}

.needs-topic-grid,
.needs-flow-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.15rem;
}

.needs-topic-item,
.needs-flow-item {
	background: rgba(15, 23, 42, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 1.15rem 1.05rem;
}

.needs-topic-item h3,
.needs-flow-item h3 {
	font-size: 1.1rem;
	margin-bottom: 0.55rem;
}

.needs-topic-item p,
.needs-flow-item p {
	color: #cbd5e1;
	font-size: 0.93rem;
	line-height: 1.75;
	margin-bottom: 0.8rem;
}

.needs-flow-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	margin-bottom: 0.6rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, #f97316, #fb923c);
	box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.16);
}

.needs-form-section {
	padding: 2.05rem 1.85rem;
	margin-bottom: 1.35rem;
}

.needs-form-section > p {
	color: #cbd5e1;
	line-height: 1.78;
	margin-bottom: 1rem;
}

.needs-alert {
	border-radius: 10px;
	padding: 0.75rem 0.9rem;
	font-size: 0.9rem;
	margin-bottom: 0.9rem;
	border: 1px solid transparent;
}

.needs-alert.is-success {
	background: rgba(16, 185, 129, 0.13);
	border-color: rgba(16, 185, 129, 0.4);
	color: #bbf7d0;
}

.needs-alert.is-error {
	background: rgba(239, 68, 68, 0.12);
	border-color: rgba(239, 68, 68, 0.4);
	color: #fecaca;
}

.need-form {
	display: flex;
	flex-direction: column;
	gap: 0.95rem;
}

.need-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
}

.need-field {
	display: flex;
	flex-direction: column;
	gap: 0.38rem;
}

.need-field label {
	font-size: 0.86rem;
	color: #e2e8f0;
	font-weight: 600;
}

.need-field input,
.need-field select,
.need-field textarea {
	width: 100%;
	border: 1px solid rgba(148, 163, 184, 0.34);
	background: rgba(15, 23, 42, 0.62);
	color: #f8fafc;
	border-radius: 10px;
	padding: 0.7rem 0.82rem;
	font-size: 0.92rem;
	line-height: 1.6;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.need-field input:focus,
.need-field select:focus,
.need-field textarea:focus {
	border-color: rgba(56, 189, 248, 0.72);
	box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}

.need-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.2rem;
}

.hidden-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
}

.needs-article-section {
	margin-top: 2rem;
}

/* Scroll Reveal Animations */
.reveal-fade {
	opacity: 0;
	transition: opacity 1s ease-out;
}
.reveal-fade.is-revealed {
	opacity: 1;
}

.reveal-slide-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-slide-up.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 992px) {
	.hero-layout {
		flex-direction: column;
		text-align: center;
	}
	.hero-content {
		text-align: center;
		margin: 0 auto;
	}
	.hero-subtitle {
		margin-left: auto;
		margin-right: auto;
	}
	.hero-actions {
		justify-content: center;
	}
	.quick-start-list {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 1rem auto 0 auto;
	}
	.hero-mascot {
		min-height: 300px;
	}
	.latest-grid {
		grid-template-columns: 1fr 1fr;
	}
	.needs-points {
		grid-template-columns: 1fr;
	}
	.needs-topic-grid,
	.needs-flow-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* ==========================================================================
   Phase 7: Visual Asset Optimization & Placement
   ========================================================================== */

/* Secondary Mascot (Highlight Section) */
.secondary-mascot-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.mascot-image-secondary {
	max-width: 90%;
	height: auto;
	border-radius: 20px;
	position: relative;
	z-index: 10;
	filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.4));
}
.floating-anim-alt {
	animation: floatMascotAlt 7s ease-in-out infinite alternate;
}
@keyframes floatMascotAlt {
	0% { transform: translateY(0) rotate(0deg); }
	100% { transform: translateY(-15px) rotate(2deg); }
}
	.secondary-mascot-container .glow-cyan {
	width: 250px;
	height: 250px;
	background: rgba(34, 211, 238, 0.25);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

/* ==========================================================================
   Phase 8: Mascot Carousel & Glitch Effects
   ========================================================================== */

.mascot-carousel {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
}
.mascot-slide {
	position: absolute;
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	filter: drop-shadow(0 0 30px rgba(56, 189, 248, 0.5));
	opacity: 0;
	visibility: hidden;
	transform: scale(0.95);
	transition: opacity 0.8s ease-in-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s;
}
.mascot-slide.active {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

/* Glitch Transition Effect (added via JS class) */
.glitch-out {
	animation: glitchLeave 0.4s cubic-bezier(.25, .46, .45, .94) forwards !important;
}
.glitch-in {
	animation: glitchEnter 0.6s cubic-bezier(.25, .46, .45, .94) forwards !important;
}

@keyframes glitchLeave {
	0% { filter: hue-rotate(0deg) blur(0px); opacity: 1; transform: scale(1) translateX(0); }
	20% { filter: hue-rotate(-90deg) blur(2px); transform: scale(1.02) translateX(-5px); }
	40% { filter: hue-rotate(90deg) blur(4px); opacity: 0.8; transform: scale(0.98) translateX(5px); }
	100% { filter: hue-rotate(180deg) blur(10px); opacity: 0; transform: scale(0.9) translateX(-20px); }
}

@keyframes glitchEnter {
	0% { filter: hue-rotate(180deg) blur(10px); opacity: 0; transform: scale(1.1) translateX(20px); }
	40% { filter: hue-rotate(-90deg) blur(4px); opacity: 0.5; transform: scale(0.98) translateX(-5px); }
	60% { filter: hue-rotate(90deg) blur(2px); opacity: 0.8; transform: scale(1.02) translateX(5px); }
	100% { filter: hue-rotate(0deg) blur(0px); opacity: 1; transform: scale(1) translateX(0); }
}

/* ==========================================================================
   Phase 9: Deep Content Overhaul Styles
   ========================================================================== */

/* Typography & Core Adjustments */
.hero-microtext {
	opacity: 0.8;
	font-weight: 500;
	line-height: 1.75;
}
.op-70 { opacity: 0.7; }
.text-green { color: #10b981; }
.text-orange { color: #f97316; }
.text-red { color: #ef4444; }

/* Comparison Table Matrix */
.comparison-table-wrapper {
	padding: 2rem;
	overflow-x: auto;
}
.comparison-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
}
.comparison-table th, .comparison-table td {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}
.comparison-table th {
	font-weight: 600;
	color: var(--text-secondary);
	font-size: 1.1rem;
}
.comparison-table .highlight-col {
	background: rgba(56, 189, 248, 0.03);
	font-weight: 600;
}
.comparison-table tbody tr:hover {
	background: rgba(255,255,255,0.02);
}

/* Models & Platforms Wall */
.models-wall {
	padding: 3rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: center;
	border: 1px solid rgba(56, 189, 248, 0.2);
}
.logo-row {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	justify-content: center;
}
.model-logo {
	font-size: 1.25rem;
	font-weight: 600;
	padding: 0.5rem 1.5rem;
	background: rgba(255,255,255,0.05);
	border-radius: 30px;
	border: 1px solid rgba(255,255,255,0.1);
	transition: all 0.3s ease;
}
.model-logo:hover {
	background: rgba(56, 189, 248, 0.1);
	border-color: rgba(56, 189, 248, 0.4);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(56, 189, 248, 0.2);
}
.platforms-list {
	font-size: 1.1rem;
	letter-spacing: 0.05em;
	line-height: 1.8;
	margin-top: 0.7rem;
}

.platforms-showcase {
	display: grid;
	grid-template-columns: repeat(3, minmax(180px, 1fr));
	gap: 0.85rem;
	max-width: 860px;
	margin: 0.8rem auto 0 auto;
}

.platform-chip {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.72rem 0.82rem;
	border-radius: 12px;
	border: 1px solid rgba(148, 163, 184, 0.26);
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.35));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.platform-chip:hover {
	transform: translateY(-2px);
	border-color: rgba(148, 163, 184, 0.42);
	box-shadow: 0 8px 18px rgba(2, 6, 23, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.chip-icon {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.74rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.01em;
}

.chip-name {
	font-size: 0.92rem;
	font-weight: 600;
	color: #d8e2f1;
	letter-spacing: 0.01em;
}

.chip-feishu .chip-icon {
	background: linear-gradient(135deg, #00a3ff, #12b4ff);
}
.chip-dingtalk .chip-icon {
	background: linear-gradient(135deg, #2467ff, #4f86ff);
}
.chip-telegram .chip-icon {
	background: linear-gradient(135deg, #2aabee, #5bc4f4);
}
.chip-discord .chip-icon {
	background: linear-gradient(135deg, #5865f2, #7983ff);
}
.chip-slack .chip-icon {
	background: linear-gradient(135deg, #36c5f0, #e01e5a);
}
.chip-signal .chip-icon {
	background: linear-gradient(135deg, #3a76f0, #69a1ff);
}

.comparison-footer {
	padding-top: 0.45rem;
}

.comparison-footer .btn {
	margin-top: 0.35rem;
}

.community-section .text-slate-300 {
	line-height: 1.8;
}

/* Community Stats Grid */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(260px, 1fr));
	gap: 2rem;
	max-width: 1160px;
	margin-left: auto;
	margin-right: auto;
}
.stat-card {
	padding: 2.5rem 2rem;
	text-align: center;
	transition: transform 0.3s ease;
}
.stat-card:hover {
	transform: translateY(-5px);
}
.stat-number {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0.5rem;
	word-break: keep-all;
	white-space: nowrap;
}
.stat-label {
	font-size: 1rem;
	color: var(--text-secondary);
	font-weight: 500;
}

/* ==========================================================================
   Phase 10: Brand Video Card Styles
   ========================================================================== */

.hero-media {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
}

.video-card {
	position: relative;
	padding: 1rem;
	border-radius: 20px;
	background: rgba(15, 23, 42, 0.6);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(56, 189, 248, 0.3);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(56, 189, 248, 0.1);
	z-index: 10;
	max-width: 100%;
}

.brand-video {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
	box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.video-badge {
	position: absolute;
	top: -12px;
	left: 20px;
	background: linear-gradient(135deg, #0ea5e9, #38bdf8);
	color: #fff;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	box-shadow: 0 4px 10px rgba(14, 165, 233, 0.4);
	z-index: 11;
}

.video-caption {
	text-align: center;
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-top: 0.75rem;
	font-weight: 500;
}

.ambient-mascot {
	position: absolute;
	right: -50px;
	bottom: -30px;
	width: 60%;
	opacity: 0.2;
	z-index: 1;
	pointer-events: none;
	filter: blur(4px);
}

@media (max-width: 768px) {
	.comparison-table th, .comparison-table td {
		padding: 1rem;
		font-size: 0.9rem;
	}
	.stat-number { font-size: 2.5rem; }
	
	.hero-layout {
		flex-direction: column;
		text-align: center;
	}
	.hero-media {
		margin-top: 3rem;
	}
	.ambient-mascot {
		display: none;
	}
	.stats-grid {
		grid-template-columns: 1fr;
	}
	.platforms-showcase {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 520px;
	}
	.latest-grid {
		grid-template-columns: 1fr;
	}
	.latest-card {
		min-height: 0;
	}
}

@media (max-width: 1100px) and (min-width: 769px) {
	.stats-grid {
		grid-template-columns: repeat(3, minmax(220px, 1fr));
		max-width: 980px;
	}
}

@media (max-width: 992px) {
	.footer-widgets {
		grid-template-columns: 1fr 1fr !important;
	}
	.brand-widget {
		grid-column: span 2;
	}
}

@media (max-width: 576px) {
	.footer-widgets {
		grid-template-columns: 1fr !important;
	}
	.brand-widget {
		grid-column: span 1;
	}
}

/* ==========================================================================
   Phase 12: Conversion & Mobile Polish
   ========================================================================== */

.hero-tech {
	min-height: 92vh;
}

.hero-content {
	max-width: 560px;
}

.hero-subtitle {
	max-width: 560px;
}

.hero-actions .btn {
	min-width: 148px;
}

.quick-start-list {
	margin-top: 1.25rem;
}

.stat-number.stat-copy {
	font-size: 2rem;
	line-height: 1.2;
}

.video-card {
	max-width: 520px;
}

@media (max-width: 430px) {
	.hero-tech {
		padding-top: 92px;
		min-height: auto;
	}
	.hero-title {
		font-size: clamp(2.1rem, 11vw, 2.45rem);
	}
	.hero-subtitle {
		font-size: 0.98rem;
		line-height: 1.55;
	}
	.hero-actions .btn {
		width: 100%;
		min-width: 0;
	}
	.video-card {
		padding: 0.65rem;
		border-radius: 14px;
	}
	.video-badge {
		left: 12px;
	}
	.stat-number {
		font-size: 1.9rem;
	}
}

@media (max-width: 390px) {
	.container {
		padding: 0 1rem;
	}
	.hero-badge {
		font-size: 0.76rem;
	}
	.quick-start-item {
		font-size: 0.8rem;
		padding: 0.55rem 0.6rem;
	}
	.quick-start-item span {
		width: 20px;
		height: 20px;
	}
	.section-title {
		font-size: 2rem;
	}
	.platforms-showcase {
		grid-template-columns: 1fr;
	}
	.needs-spotlight,
	.needs-topic-hero,
	.needs-flow-section {
		padding: 1.4rem 1.05rem;
	}
	.needs-topic-grid,
	.needs-flow-grid {
		grid-template-columns: 1fr;
	}
	.needs-point {
		font-size: 0.9rem;
		padding: 0.75rem 0.82rem;
	}
}

@media (max-width: 375px) {
	.hero-title {
		font-size: clamp(1.95rem, 10.5vw, 2.2rem);
	}
	.hero-subtitle {
		font-size: 0.94rem;
	}
	.video-caption {
		font-size: 0.78rem;
	}
	.stat-label {
		font-size: 0.88rem;
	}
}
