/* 魔晶云·企业助手 产品介绍页样式 */

/* Hero 增强 */
.hero-product {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(160deg, #08081e 0%, #10103a 30%, #1a1050 60%, #0e0a30 100%);
	position: relative;
	overflow: hidden;
	padding-top: 72px;
}
.hero-product::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -30%;
	width: 80%;
	height: 200%;
	background: radial-gradient(ellipse, rgba(76,83,245,0.15) 0%, transparent 60%);
}
.hero-product .grid-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(76,83,245,0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(76,83,245,0.05) 1px, transparent 1px);
	background-size: 60px 60px;
}
.hero-product .content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 960px;
	padding: 0 40px;
}
.hero-product .product-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 20px;
	border-radius: 20px;
	background: rgba(76,83,245,0.15);
	border: 1px solid rgba(76,83,245,0.3);
	color: #b8a0f0;
	font-size: 14px;
	margin-bottom: 32px;
}
.hero-product .product-badge .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4C53F5;
	animation: pulse 2s infinite;
}
.hero-product h1 {
	font-size: 56px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 24px;
	letter-spacing: 2px;
}
.hero-product h1 span {
	background: linear-gradient(135deg, #c84fff, #4C53F5, #8a5cff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hero-product .subtitle {
	font-size: 22px;
	color: rgba(255,255,255,0.7);
	margin-bottom: 16px;
	font-weight: 500;
}
.hero-product .desc {
	font-size: 18px;
	color: rgba(255,255,255,0.5);
	line-height: 1.8;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
.hero-product .core-phrase {
	display: inline-block;
	padding: 10px 28px;
	border-radius: 8px;
	background: rgba(76,83,245,0.12);
	border: 1px solid rgba(76,83,245,0.3);
	color: #c8b8ff;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
	letter-spacing: 1px;
}
/* 终身免费高亮横幅 */
.hero-product .free-highlight {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 32px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(229,57,53,0.15), rgba(255,87,34,0.12));
	border: 2px solid rgba(229,57,53,0.4);
	margin-bottom: 36px;
	margin-left: 20px;
	animation: free-glow 2s ease-in-out infinite alternate;
}
@keyframes free-glow {
	from { box-shadow: 0 0 20px rgba(229,57,53,0.15); }
	to { box-shadow: 0 0 40px rgba(229,57,53,0.3); }
}
.free-highlight-icon {
	font-size: 28px;
	line-height: 1;
}
.free-highlight-text {
	text-align: left;
}
.free-highlight-text strong {
	display: block;
	font-size: 22px;
	font-weight: 800;
	color: #ff6b6b;
	letter-spacing: 2px;
}
.free-highlight-text span {
	font-size: 14px;
	color: rgba(255,255,255,0.6);
}
.hero-product .hero-tech-stack {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 48px;
}
.hero-tech-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 18px;
	border-radius: 20px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	color: rgba(255,255,255,0.7);
	font-size: 13px;
	transition: all 0.3s;
}
.hero-tech-pill:hover {
	background: rgba(76,83,245,0.15);
	border-color: rgba(76,83,245,0.4);
	color: #b8a0f0;
}

/* 双引擎亮点区 */
.dual-engine {
	background: #fff;
}
.engine-grid {
	display: grid;
	grid-template-columns: 1fr 80px 1fr;
	gap: 0;
	max-width: 1100px;
	margin: 0 auto;
	align-items: stretch;
}
.engine-card {
	background: #fafafa;
	border-radius: 20px;
	padding: 48px 40px;
	border: 1px solid rgba(0,0,0,0.04);
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}
.engine-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	opacity: 0;
	transition: opacity 0.3s;
}
.engine-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.engine-card:hover::before {
	opacity: 1;
}
.engine-card.ai-engine::before {
	background: linear-gradient(90deg, #c84fff, #8a5cff);
}
.engine-card.lc-engine::before {
	background: linear-gradient(90deg, #4C53F5, #6C63FF);
}
.engine-connector {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.engine-connector .plus {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, #4C53F5, #8a5cff);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	box-shadow: 0 4px 20px rgba(76,83,245,0.3);
}
.engine-connector .line-v {
	width: 2px;
	flex: 1;
	background: linear-gradient(to bottom, rgba(76,83,245,0.3), rgba(76,83,245,0.08));
}
.engine-card .engine-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	margin-bottom: 24px;
}
.engine-card.ai-engine .engine-icon {
	background: linear-gradient(135deg, rgba(200,79,255,0.1), rgba(138,92,255,0.18));
}
.engine-card.lc-engine .engine-icon {
	background: linear-gradient(135deg, rgba(76,83,245,0.08), rgba(108,99,255,0.15));
}
.engine-card h3 {
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 12px;
}
.engine-card .engine-desc {
	font-size: 15px;
	color: #888;
	line-height: 1.8;
	margin-bottom: 28px;
}
.engine-features {
	list-style: none;
	padding: 0;
	margin: 0;
}
.engine-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	font-size: 14px;
	color: #555;
	border-bottom: 1px solid rgba(0,0,0,0.04);
}
.engine-features li:last-child {
	border-bottom: none;
}
.engine-features .feat-icon {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
}
.engine-card.ai-engine .feat-icon {
	background: rgba(200,79,255,0.1);
}
.engine-card.lc-engine .feat-icon {
	background: rgba(76,83,245,0.08);
}

/* 功能亮点网格 */
.feature-grid-section {
	background: #fafafa;
}
.feat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	max-width: 1200px;
	margin: 0 auto;
}
.feat-card {
	background: #fff;
	border-radius: 16px;
	padding: 36px 28px;
	border: 1px solid rgba(0,0,0,0.04);
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}
.feat-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.feat-card .feat-num {
	position: absolute;
	top: 16px;
	right: 20px;
	font-size: 48px;
	font-weight: 800;
	color: rgba(76,83,245,0.06);
	line-height: 1;
}
.feat-card .feat-icon-wrap {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(76,83,245,0.08), rgba(138,92,255,0.15));
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 24px;
}
.feat-card h4 {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 10px;
}
.feat-card p {
	font-size: 14px;
	color: #888;
	line-height: 1.8;
	margin: 0;
}

/* AI智能体详情区 */
.ai-detail {
	background: #fff;
}
.ai-detail-row {
	display: flex;
	align-items: center;
	gap: 80px;
	max-width: 1200px;
	margin: 0 auto 60px;
}
.ai-detail-row:last-child {
	margin-bottom: 0;
}
.ai-detail-row.reverse {
	flex-direction: row-reverse;
}
.ai-detail-visual {
	flex: 1;
	min-width: 0;
}
.ai-detail-text {
	flex: 1;
	min-width: 0;
}
.ai-detail-text .tag {
	display: inline-block;
	padding: 4px 16px;
	border-radius: 4px;
	background: rgba(200,79,255,0.08);
	color: #c84fff;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 20px;
}
.ai-detail-text h3 {
	font-size: 28px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 16px;
	line-height: 1.3;
}
.ai-detail-text > p {
	font-size: 15px;
	color: #888;
	line-height: 1.9;
	margin-bottom: 24px;
}

/* AI 插图 */
.illust-ai-nl2sql .nl2sql-flow {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.nl2sql-input {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: #f0eef8;
	border-radius: 10px;
	font-size: 13px;
	color: #555;
}
.nl2sql-input .user-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, #4C53F5, #8a5cff);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 12px;
	flex-shrink: 0;
}
.nl2sql-process {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 0;
	color: #c84fff;
	font-size: 18px;
}
.nl2sql-result {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: linear-gradient(135deg, rgba(76,83,245,0.06), rgba(138,92,255,0.1));
	border-radius: 10px;
	border: 1px solid rgba(76,83,245,0.12);
}
.nl2sql-result .ai-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, #c84fff, #8a5cff);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 12px;
	flex-shrink: 0;
}
.nl2sql-code {
	font-family: 'Courier New', monospace;
	font-size: 12px;
	color: #4C53F5;
	line-height: 1.6;
}

/* 智能体中心 - 增强样式 */
.illust-mockup {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
}
.mockup-bar {
	height: 36px;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	padding: 0 14px;
	gap: 6px;
	border-bottom: 1px solid #eee;
}
.mockup-bar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.mockup-bar span:nth-child(1) { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #ffbd2e; }
.mockup-bar span:nth-child(3) { background: #28c840; }
.mockup-body {
	padding: 24px;
	min-height: 260px;
}
.ai-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}
.ai-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 14px;
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(200,79,255,0.1), rgba(138,92,255,0.15));
	color: #8a5cff;
	font-size: 13px;
	font-weight: 600;
}
.ai-badge-count {
	font-size: 11px;
	color: #28c840;
	font-weight: 600;
	padding: 3px 10px;
	background: rgba(40,200,64,0.08);
	border-radius: 10px;
}
.illust-ai-agent .agent-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}
.agent-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	background: #f8f7fc;
	border-radius: 10px;
	font-size: 12px;
	color: #555;
	border: 1px solid transparent;
	transition: all 0.25s;
	cursor: default;
}
.agent-item:hover {
	background: #f0eef8;
	border-color: rgba(200,79,255,0.15);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(200,79,255,0.08);
}
.agent-item.agent-active {
	background: linear-gradient(135deg, rgba(200,79,255,0.06), rgba(138,92,255,0.1));
	border-color: rgba(200,79,255,0.2);
}
.agent-icon-wrap {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.agent-icon-wrap.purple {
	background: rgba(200,79,255,0.1);
	color: #c84fff;
}
.agent-icon-wrap.blue {
	background: rgba(76,83,245,0.1);
	color: #4C53F5;
}
.agent-icon-wrap.green {
	background: rgba(40,200,64,0.1);
	color: #28a745;
}
.agent-icon-wrap.orange {
	background: rgba(255,149,0,0.1);
	color: #e68a00;
}
.agent-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.agent-name {
	font-size: 12px;
	font-weight: 600;
	color: #333;
}
.agent-status {
	font-size: 10px;
	color: #aaa;
}
.agent-status.active {
	color: #28c840;
}
.agent-status.active::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #28c840;
	margin-right: 3px;
	animation: agent-pulse 2s infinite;
}
@keyframes agent-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}
/* 配置详情面板 */
.agent-config-panel {
	margin-top: 12px;
	padding: 12px;
	background: linear-gradient(135deg, #f8f7fc, #f0eef8);
	border-radius: 10px;
	border: 1px solid rgba(200,79,255,0.1);
	animation: config-fade 0.5s ease-out;
}
@keyframes config-fade {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}
.config-header {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 600;
	color: #8a5cff;
	margin-bottom: 10px;
}
.config-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #c84fff;
	animation: agent-pulse 2s infinite;
}
.config-items {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.config-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
}
.config-label {
	flex-shrink: 0;
	padding: 2px 8px;
	border-radius: 4px;
	background: rgba(76,83,245,0.08);
	color: #4C53F5;
	font-weight: 600;
	font-size: 10px;
}
.config-value {
	color: #666;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* 智能体详情 - 文字侧增强 */
.tag-gradient {
	background: linear-gradient(135deg, rgba(200,79,255,0.1), rgba(138,92,255,0.15)) !important;
	color: #8a5cff !important;
	border: 1px solid rgba(200,79,255,0.15);
}
.agent-subtitle {
	font-size: 15px;
	color: #888;
	line-height: 1.9;
	margin-bottom: 24px;
}
.detail-features {
	list-style: none;
	padding: 0;
	margin: 0;
}
.detail-features li {
	font-size: 14px;
	color: #555;
	padding: 8px 0;
	padding-left: 20px;
	position: relative;
	line-height: 1.7;
}
.detail-features li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 16px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: linear-gradient(135deg, #4C53F5, #8a5cff);
}
.detail-features li strong {
	color: #1a1a1a;
}
.detail-illust {
	width: 100%;
}
.agent-features li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(0,0,0,0.04);
	font-size: 14px;
	color: #555;
	line-height: 1.6;
}
.agent-features li:last-child {
	border-bottom: none;
}
.agent-features .feat-icon-wrap {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}
.feat-icon-wrap.purple {
	background: rgba(200,79,255,0.1);
	color: #c84fff;
}
.feat-icon-wrap.blue {
	background: rgba(76,83,245,0.1);
	color: #4C53F5;
}
.feat-icon-wrap.green {
	background: rgba(40,200,64,0.1);
	color: #28a745;
}
.feat-icon-wrap.orange {
	background: rgba(255,149,0,0.1);
	color: #e68a00;
}
.agent-features li strong {
	display: block;
	font-size: 15px;
	color: #1a1a1a;
	margin-bottom: 3px;
}
.agent-features li span {
	display: block;
	font-size: 13px;
	color: #888;
	line-height: 1.6;
}

/* 低代码能力区 */
.lowcode-detail {
	background: #fafafa;
}
.lc-capabilities {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}
.lc-cap-card {
	background: #fff;
	border-radius: 14px;
	padding: 28px 20px;
	text-align: center;
	border: 1px solid rgba(0,0,0,0.04);
	transition: all 0.3s;
}
.lc-cap-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.06);
	border-color: rgba(76,83,245,0.12);
}
.lc-cap-card .lc-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(76,83,245,0.08), rgba(138,92,255,0.15));
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 22px;
}
.lc-cap-card h4 {
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 8px;
}
.lc-cap-card p {
	font-size: 12px;
	color: #999;
	line-height: 1.6;
	margin: 0;
}

/* 技术架构区 */
.tech-arch {
	background: #fff;
}
.arch-stack {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.arch-layer {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 28px;
	border-radius: 12px;
	border: 1px solid rgba(0,0,0,0.04);
	transition: all 0.3s;
}
.arch-layer:hover {
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.arch-layer .arch-label {
	width: 100px;
	flex-shrink: 0;
	font-size: 13px;
	font-weight: 700;
	color: #4C53F5;
	text-align: right;
}
.arch-layer .arch-content {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.arch-tag {
	padding: 4px 14px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 500;
}
.arch-tag.frontend {
	background: rgba(76,83,245,0.08);
	color: #4C53F5;
}
.arch-tag.backend {
	background: rgba(200,79,255,0.08);
	color: #c84fff;
}
.arch-tag.infra {
	background: rgba(40,200,64,0.08);
	color: #28a745;
}
.arch-tag.standard {
	background: rgba(255,149,0,0.08);
	color: #e68a00;
}

/* 系统亮点 */
.highlights-section {
	background: #fafafa;
}
.hl-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}
.hl-card {
	background: #fff;
	border-radius: 16px;
	padding: 32px 24px;
	text-align: center;
	border: 1px solid rgba(0,0,0,0.04);
	transition: all 0.3s;
}
/* 终身免费卡片高亮 */
.hl-card-free {
	background: linear-gradient(135deg, #fff5f5, #fff);
	border: 2px solid rgba(229,57,53,0.2);
	position: relative;
}
.hl-card-free:hover {
	border-color: rgba(229,57,53,0.4);
	box-shadow: 0 12px 40px rgba(229,57,53,0.12);
}
.hl-card-free .hl-num {
	background: linear-gradient(135deg, #e53935, #ff6d00);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 32px;
}
.hl-card-free h4 {
	color: #e53935;
}
.hl-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.06);
	border-color: rgba(76,83,245,0.12);
}
.hl-card .hl-num {
	font-size: 36px;
	font-weight: 800;
	background: linear-gradient(135deg, #4C53F5, #c84fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 12px;
	line-height: 1;
}
.hl-card h4 {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 8px;
}
.hl-card p {
	font-size: 13px;
	color: #888;
	line-height: 1.7;
	margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
	.engine-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.engine-connector {
		flex-direction: row;
		gap: 0;
		padding: 0 40px;
	}
	.engine-connector .line-v {
		width: auto;
		height: 2px;
		flex: 1;
		background: linear-gradient(to right, rgba(76,83,245,0.08), rgba(76,83,245,0.3), rgba(76,83,245,0.08));
	}
	.feat-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.ai-detail-row {
		flex-direction: column !important;
		gap: 40px;
	}
	.lc-capabilities {
		grid-template-columns: repeat(2, 1fr);
	}
	.hl-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.hero-product h1 {
		font-size: 40px;
	}
}
@media (max-width: 768px) {
	.hero-product h1 {
		font-size: 32px;
	}
	.hero-product .subtitle {
		font-size: 18px;
	}
	.hero-product .desc {
		font-size: 15px;
	}
	.hero-product .core-phrase {
		font-size: 14px;
		padding: 8px 20px;
	}
	.feat-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
	}
	.lc-capabilities {
		grid-template-columns: 1fr;
		max-width: 400px;
	}
	.hl-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
	}
	.engine-card {
		padding: 32px 24px;
	}
	.engine-card h3 {
		font-size: 20px;
	}
	.ai-detail-text h3 {
		font-size: 22px;
	}
	.hero-tech-stack {
		display: none;
	}
	.arch-layer {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.arch-layer .arch-label {
		text-align: left;
		width: auto;
	}
	.agent-config-panel {
		display: none;
	}
	.agent-features li {
		gap: 10px;
		padding: 10px 0;
	}
	.agent-features .feat-icon-wrap {
		width: 30px;
		height: 30px;
	}
}
@media (max-width: 480px) {
	.hero-product h1 {
		font-size: 26px;
	}
	.hero-product .subtitle {
		font-size: 16px;
	}
	.hero-product .core-phrase {
		font-size: 13px;
	}
}
