/* 52JinY 站点介绍页样式（全部 class 带 jxy-landing- 前缀） */

.jxy-landing-page {
	--jxy-landing-ink: #16181d;
	--jxy-landing-muted: #6b7280;
	--jxy-landing-surface: #ffffff;
	--jxy-landing-soft: #f6f8fb;
	--jxy-landing-line: #e8ebf0;
	--jxy-landing-accent: #2f6bff;
	color: var(--jxy-landing-ink);
}

[data-bs-theme="dark"] .jxy-landing-page {
	--jxy-landing-ink: #f3f5f8;
	--jxy-landing-muted: rgba(243, 245, 248, .66);
	--jxy-landing-surface: #1c1f26;
	--jxy-landing-soft: #16181d;
	--jxy-landing-line: rgba(255, 255, 255, .12);
	--jxy-landing-accent: #6b95ff;
}

.jxy-landing-page section {
	position: relative;
}

.jxy-landing-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	padding: .3rem .8rem;
	border-radius: 999px;
	border: 1px solid var(--jxy-landing-line);
	background: var(--jxy-landing-surface);
	color: var(--jxy-landing-muted);
	font-size: .8125rem;
	letter-spacing: .02em;
}

.jxy-landing-hero {
	padding: 4.5rem 0 3.5rem;
	overflow: hidden;
}

.jxy-landing-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(46rem 26rem at 12% -10%, rgba(47, 107, 255, .16), transparent 62%),
		radial-gradient(38rem 24rem at 92% 4%, rgba(0, 191, 165, .14), transparent 60%);
	pointer-events: none;
}

.jxy-landing-hero > .container {
	position: relative;
	z-index: 1;
}

.jxy-landing-title {
	font-size: clamp(2rem, 4.4vw, 3.25rem);
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -.02em;
	margin: 1rem 0 1.1rem;
}

.jxy-landing-lead {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--jxy-landing-muted);
	max-width: 44rem;
}

.jxy-landing-actions .btn {
	border-radius: 10px;
	padding: .68rem 1.4rem;
	font-weight: 600;
}

.jxy-landing-window {
	border: 1px solid var(--jxy-landing-line);
	border-radius: 14px;
	background: var(--jxy-landing-surface);
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(16, 24, 40, .05), 0 16px 40px rgba(16, 24, 40, .07);
}

.jxy-landing-window-bar {
	display: flex;
	align-items: center;
	gap: .45rem;
	padding: .6rem .9rem;
	border-bottom: 1px solid var(--jxy-landing-line);
	background: var(--jxy-landing-soft);
}

.jxy-landing-dot {
	width: .55rem;
	height: .55rem;
	border-radius: 50%;
	background: var(--jxy-landing-line);
}

.jxy-landing-window-url {
	margin-left: .6rem;
	font-size: .78rem;
	color: var(--jxy-landing-muted);
}

.jxy-landing-window-body {
	padding: 1.15rem;
}

.jxy-landing-mini {
	display: flex;
	align-items: flex-start;
	gap: .7rem;
	padding: .7rem 0;
	border-bottom: 1px dashed var(--jxy-landing-line);
}

.jxy-landing-mini:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.jxy-landing-mini-icon {
	flex: 0 0 auto;
	width: 2rem;
	height: 2rem;
	border-radius: 8px;
	display: grid;
	place-items: center;
	background: rgba(47, 107, 255, .1);
	color: var(--jxy-landing-accent);
}

.jxy-landing-mini-title {
	font-size: .9rem;
	font-weight: 600;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.jxy-landing-mini-meta {
	font-size: .78rem;
	color: var(--jxy-landing-muted);
}

.jxy-landing-stats {
	padding: 1.5rem 0 .5rem;
}

.jxy-landing-stat {
	padding: 1.25rem 1rem;
	border-radius: 12px;
	border: 1px solid var(--jxy-landing-line);
	background: var(--jxy-landing-surface);
	height: 100%;
}

.jxy-landing-stat-value {
	font-size: 1.85rem;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -.02em;
}

.jxy-landing-stat-label {
	font-size: .85rem;
	color: var(--jxy-landing-muted);
	margin-top: .3rem;
}

.jxy-landing-section {
	padding: 3.5rem 0;
}

.jxy-landing-section-soft {
	background: var(--jxy-landing-soft);
}

.jxy-landing-heading {
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	font-weight: 700;
	letter-spacing: -.015em;
	margin: .75rem 0 .6rem;
}

.jxy-landing-sub {
	color: var(--jxy-landing-muted);
	max-width: 40rem;
}

.jxy-landing-feature {
	height: 100%;
	padding: 1.6rem;
	border-radius: 12px;
	border: 1px solid var(--jxy-landing-line);
	background: var(--jxy-landing-surface);
	transition: transform .18s ease, box-shadow .18s ease;
}

.jxy-landing-feature:hover {
	transform: translateY(-2px);
	box-shadow: 0 1px 2px rgba(16, 24, 40, .05), 0 12px 28px rgba(16, 24, 40, .07);
}

.jxy-landing-feature-icon {
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 10px;
	display: grid;
	place-items: center;
	font-size: 1.25rem;
	margin-bottom: 1rem;
	background: rgba(47, 107, 255, .1);
	color: var(--jxy-landing-accent);
}

.jxy-landing-feature-icon.is-teal { background: rgba(0, 191, 165, .12); color: #0f9b8a; }
.jxy-landing-feature-icon.is-amber { background: rgba(245, 158, 11, .14); color: #b8760f; }
.jxy-landing-feature-icon.is-violet { background: rgba(139, 92, 246, .14); color: #7c4ddb; }
.jxy-landing-feature-icon.is-rose { background: rgba(244, 63, 94, .12); color: #d13a52; }
.jxy-landing-feature-icon.is-slate { background: rgba(100, 116, 139, .14); color: #55637a; }

[data-bs-theme="dark"] .jxy-landing-feature-icon.is-teal { color: #4fd3bf; }
[data-bs-theme="dark"] .jxy-landing-feature-icon.is-amber { color: #ecb45c; }
[data-bs-theme="dark"] .jxy-landing-feature-icon.is-violet { color: #b79bf5; }
[data-bs-theme="dark"] .jxy-landing-feature-icon.is-rose { color: #f492a1; }
[data-bs-theme="dark"] .jxy-landing-feature-icon.is-slate { color: #a8b3c6; }

.jxy-landing-feature-title {
	font-size: 1.05rem;
	font-weight: 650;
	margin-bottom: .5rem;
}

.jxy-landing-feature-text {
	color: var(--jxy-landing-muted);
	font-size: .93rem;
	line-height: 1.7;
	margin-bottom: .9rem;
}

.jxy-landing-tag {
	display: inline-block;
	padding: .18rem .6rem;
	margin: 0 .35rem .35rem 0;
	border-radius: 999px;
	border: 1px solid var(--jxy-landing-line);
	font-size: .75rem;
	color: var(--jxy-landing-muted);
}

.jxy-landing-step {
	display: flex;
	gap: 1rem;
	padding: 1.1rem 0;
	border-bottom: 1px solid var(--jxy-landing-line);
}

.jxy-landing-step:last-child {
	border-bottom: 0;
}

.jxy-landing-step-index {
	flex: 0 0 auto;
	width: 2rem;
	height: 2rem;
	border-radius: 8px;
	display: grid;
	place-items: center;
	font-weight: 700;
	font-size: .9rem;
	background: var(--jxy-landing-soft);
	border: 1px solid var(--jxy-landing-line);
}

.jxy-landing-cta {
	border-radius: 16px;
	padding: 2.75rem 2rem;
	text-align: center;
	border: 1px solid var(--jxy-landing-line);
	background:
		radial-gradient(30rem 16rem at 50% 0%, rgba(47, 107, 255, .14), transparent 65%),
		var(--jxy-landing-surface);
}

.jxy-landing-reveal {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .5s ease, transform .5s ease;
}

.jxy-landing-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.jxy-landing-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.jxy-landing-feature:hover {
		transform: none;
	}
}

@media (max-width: 767.98px) {
	.jxy-landing-hero {
		padding: 2.75rem 0 2rem;
	}
	.jxy-landing-section {
		padding: 2.5rem 0;
	}
	.jxy-landing-cta {
		padding: 2rem 1.15rem;
	}
}
