/* MyMOSS 官网视觉与响应式优化 — 首页 & 关于我们 */

:root {
	--brand: #00c15f;
	--brand-dark: #00a851;
	--brand-glow: rgba(0, 193, 95, 0.22);
	--surface: #3a3a3a;
	--surface-elevated: #424242;
	--bg-deep: #090b0c;
	--text-primary: #ffffff;
	--text-secondary: rgba(255, 255, 255, 0.72);
	--text-muted: rgba(255, 255, 255, 0.55);
	--radius-lg: 16px;
	--radius-xl: 20px;
	--shadow-card: 0 16px 48px rgba(0, 0, 0, 0.28);
	--section-gap: clamp(56px, 8vw, 96px);
	--container: min(1180px, calc(100% - 40px));
}

html {
	scroll-behavior: smooth;
}

/* —— 通用按钮（不含 Banner 区） —— */
.ready .button,
.aCardList .aCard .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 0.02em;
	border: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
	box-shadow: none;
}

.ready .button:hover,
.aCardList .aCard .button:hover {
	opacity: 1;
	transform: translateY(-2px);
	box-shadow: 0 10px 28px var(--brand-glow);
	background-color: var(--brand-dark);
}

/* —— 首页容器（保留区块间距，Banner 样式沿用 aiContainer.css） —— */
.aiContainer {
	padding-bottom: var(--section-gap);
}

/* —— 快捷场景 —— */
.scene-quick {
	max-width: var(--container);
	margin: 0 auto var(--section-gap);
	padding: 0 20px;
}

.scene-quick .sq-title {
	font-size: clamp(24px, 3.2vw, 34px);
	font-weight: 600;
	letter-spacing: -0.02em;
}

.scene-quick .sq-desc {
	font-size: clamp(14px, 1.5vw, 16px);
	line-height: 1.65;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.sq-card {
	background: linear-gradient(145deg, var(--surface-elevated) 0%, var(--surface) 100%);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.sq-card:hover {
	opacity: 1;
	transform: translateY(-3px);
	border-color: rgba(0, 193, 95, 0.45);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

/* —— 三步上手 —— */
.howWork {
	max-width: var(--container);
	width: 100%;
	margin: 0 auto var(--section-gap);
	padding: 0 20px;
	box-sizing: border-box;
}

.howWork .title {
	font-size: clamp(24px, 3.2vw, 36px);
	font-weight: 600;
	letter-spacing: -0.02em;
	margin-bottom: clamp(28px, 4vw, 48px);
}

.howWork .imageShow .step {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: clamp(20px, 4vw, 48px);
}

.howWork .imageShow .imageArea1,
.howWork .imageShow .imageArea2 {
	width: min(464px, 48%);
	flex-shrink: 0;
	height: auto;
	min-height: 200px;
	background: rgba(0, 193, 95, 0.12);
	border: 1px solid rgba(0, 193, 95, 0.2);
}

.howWork .imageShow .imageArea1 .image,
.howWork .imageShow .imageArea2 .image {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.howWork .step1text {
	width: auto;
	flex: 1;
	padding-top: 0;
	min-width: 0;
}

.step1text .tit {
	font-size: clamp(16px, 2vw, 20px);
	font-weight: 600;
	margin-bottom: 12px;
	line-height: 1.4;
}

.step1text .tit .sort {
	font-weight: 700;
	font-size: 14px;
	margin-right: 8px;
}

.step1text p {
	font-size: clamp(13px, 1.4vw, 15px);
	line-height: 1.75;
}

.howWork .dashline1,
.howWork .dashline2 {
	width: min(564px, 80%);
	max-height: 120px;
	background-size: contain;
	background-position: center;
	margin: 24px auto;
}

/* —— 定价 —— */
.pricePlan {
	max-width: var(--container);
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.pricePlan .title {
	font-size: clamp(24px, 3.2vw, 36px);
	font-weight: 600;
	margin-top: 0;
	margin-bottom: clamp(28px, 4vw, 40px);
}

.pricePlan .aCardList {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.aCardList .aCard {
	width: 100%;
	height: auto;
	min-height: 340px;
	display: flex;
	flex-direction: column;
	background: linear-gradient(145deg, var(--surface-elevated) 0%, var(--surface) 100%);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-lg);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.aCardList .aCard:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 193, 95, 0.35);
	box-shadow: var(--shadow-card);
}

.aCardList .aCard .button {
	margin-top: auto;
	border-radius: 8px;
	height: 40px;
	line-height: 40px;
}

/* —— CTA —— */
.ready {
	max-width: var(--container);
	width: 100%;
	margin: 0 auto;
	padding: var(--section-gap) 20px 0;
	box-sizing: border-box;
}

.ready .title {
	margin-top: 0;
	padding: clamp(40px, 6vw, 64px) clamp(24px, 4vw, 48px);
	background: linear-gradient(135deg, rgba(0, 193, 95, 0.14) 0%, rgba(58, 58, 58, 0.5) 100%);
	border: 1px solid rgba(0, 193, 95, 0.2);
	border-radius: var(--radius-xl);
}

.ready .title .text {
	font-size: clamp(24px, 3.2vw, 36px);
	font-weight: 600;
	margin-bottom: 16px;
}

.ready .title p {
	font-size: clamp(14px, 1.5vw, 16px);
	line-height: 1.7;
	max-width: 560px;
	margin: 0 auto 8px;
}

.ready .button {
	margin-top: 24px;
}

/* —— 产品矩阵补充 —— */
.product-matrix {
	max-width: var(--container);
	padding-left: 20px;
	padding-right: 20px;
}

/* —— 关于我们页 —— */
.page-banner {
	height: auto !important;
	min-height: clamp(420px, 55vh, 700px);
	padding-top: clamp(100px, 12vw, 150px);
	padding-bottom: clamp(40px, 6vw, 80px);
}

.page-preview {
	align-items: center;
	gap: clamp(24px, 4vw, 48px);
}

.page-grid .page-grid-title {
	font-size: clamp(32px, 5vw, 48px);
	margin-bottom: clamp(24px, 3vw, 40px);
}

.page-grid .page-grid-intro {
	max-width: 640px;
	font-size: clamp(14px, 1.6vw, 18px);
	line-height: 1.85;
	color: var(--text-secondary);
}

.page-photo {
	flex-shrink: 0;
	max-width: min(420px, 42%);
	text-align: center;
}

.page-photo img {
	width: 100%;
	height: auto;
	max-width: 360px;
}

.page-section {
	padding-top: clamp(40px, 6vw, 72px);
	padding-bottom: clamp(40px, 6vw, 72px);
}

.about-cell {
	position: relative;
	align-items: flex-start;
	gap: 24px;
}

.about-cell h2 {
	font-size: clamp(22px, 2.8vw, 29px);
	line-height: 1.45;
}

.about-cell p {
	font-size: clamp(15px, 1.6vw, 20px);
	line-height: 1.75;
}

.about-cell > img {
	flex-shrink: 0;
	width: clamp(80px, 12vw, 140px);
	margin-left: auto;
}

.about-card {
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
	border-color: rgba(0, 193, 95, 0.35);
	box-shadow: var(--shadow-card);
}

.about-row {
	margin-top: 8px;
}

.about-row > [class*="col-"] {
	margin-bottom: 20px;
}

.sec-heading .sec-title {
	font-size: clamp(52px, 12vw, 138px);
	line-height: 1.1;
	-webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35);
	opacity: 0.45;
}

.value-section {
	padding-bottom: clamp(60px, 8vw, 100px);
}

.value-main {
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.value-list li .text {
	font-size: clamp(18px, 2.4vw, 28px);
	height: auto;
	line-height: 1.5;
	padding-top: 8px;
	padding-bottom: 8px;
}

.history-section .sec-heading {
	margin-bottom: clamp(36px, 5vw, 60px);
}

.history-content {
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.history-item:hover .history-content {
	border-color: rgba(0, 193, 95, 0.25);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.j-section {
	height: auto;
	padding: clamp(48px, 6vw, 72px) 0;
}

.j-main-flex {
	height: auto;
	padding: 0 20px;
	gap: clamp(24px, 4vw, 60px);
}

.j-main-flex h3 {
	font-size: clamp(24px, 3vw, 36px);
}

.j-main-flex .info,
.j-main-flex .info-email {
	font-size: clamp(14px, 1.5vw, 18px);
}

.j-main-flex .j-photo {
	max-width: 220px;
}

.j-main-flex .j-photo img {
	width: 100%;
	height: auto;
}

/* —— 侧边栏 & 导航微调 —— */
.bar-fixed {
	right: clamp(12px, 2vw, 26px);
}

@media (max-width: 1024px) {
	.howWork .imageShow .step {
		flex-direction: column;
	}

	.howWork .imageShow .imageArea1,
	.howWork .imageShow .imageArea2 {
		width: 100%;
		max-width: 520px;
		order: -1;
	}

	.howWork .imageShow .step:nth-child(even) .imageArea2 {
		order: -1;
	}

	.page-preview {
		flex-direction: column;
		text-align: center;
	}

	.page-photo {
		max-width: 280px;
		margin: 0 auto;
	}

	.page-grid .page-grid-intro {
		margin-left: auto;
		margin-right: auto;
	}

	.page-sm-line {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 991px) {
	.pricePlan .aCardList {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin-left: auto;
		margin-right: auto;
	}

	.aCardList .aCard {
		min-height: 0;
	}
}

@media (max-width: 767px) {
	.aiContainer {
		padding: 0 0 var(--section-gap);
	}

	.scene-quick,
	.howWork,
	.pricePlan,
	.ready,
	.product-matrix {
		padding-left: 16px;
		padding-right: 16px;
	}

	.howWork .dashline1,
	.howWork .dashline2 {
		height: 60px;
		margin: 12px auto;
	}

	.bar-fixed .bar-link.lg .bar-link-box {
		height: 44px;
	}

	.bar-fixed .bar-link.lg .bar-link-box .txt {
		display: none;
	}

	.about-cell > img {
		position: static;
		width: 64px;
		margin: 0;
	}

	.about-cell h2 {
		padding-right: 0;
	}

	.about-cell {
		flex-direction: column;
	}

	.value-main .value-pic {
		opacity: 0.35;
	}

	.j-main-flex {
		flex-direction: column;
		text-align: center;
	}

	.j-main-flex .j-photo {
		margin-right: 0;
		max-width: 160px;
	}
}

@media (max-width: 700px) {
	.page-banner {
		height: auto !important;
		min-height: 360px;
		padding-top: 100px;
		padding-bottom: 32px;
	}

	.page-grid .page-grid-intro {
		font-size: 13px;
		line-height: 1.75;
	}
}

@media (max-width: 480px) {
	.ready .button {
		width: 100%;
		max-width: 280px;
	}

	.sec-heading .sec-title {
		font-size: clamp(40px, 14vw, 62px);
	}
}
