:root {
	--modern-bg: #f6f8fc;
	--modern-ink: #121826;
	--modern-muted: #667085;
	--modern-line: #e6eaf2;
	--modern-blue: #1677ff;
	--modern-cyan: #18d3e8;
	--modern-green: #1fbf75;
	--modern-gold: #f7b731;
	--modern-navy: #0a1020;
}

body.modern-site {
	min-width: 0;
	background: var(--modern-bg);
	color: var(--modern-ink);
	font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
	letter-spacing: 0;
}

body.modern-site #page-wrapper {
	height: auto;
	min-height: 100%;
	padding-top: 0;
}

.modern-site a {
	text-decoration: none;
}

.modern-container {
	width: min(1280px, calc(100% - 48px));
	margin: 0 auto;
}

#header.modern-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	height: auto;
	left: auto;
	line-height: normal;
	color: var(--modern-ink);
	cursor: default;
	background: rgba(255, 255, 255, .86);
	border-bottom: 1px solid rgba(219, 226, 239, .78);
	backdrop-filter: blur(18px);
	box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.modern-header-inner {
	width: min(1280px, calc(100% - 48px));
	min-height: 78px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.modern-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--modern-ink);
	font-size: 19px;
	font-weight: 800;
	white-space: nowrap;
}

.modern-brand img {
	width: 42px;
	height: 42px;
	object-fit: contain;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(23, 105, 255, .12);
}

.modern-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex: 1;
}

#header.modern-header .modern-nav {
	position: static;
	top: auto;
	height: auto;
	line-height: normal;
	display: flex;
}

.modern-nav a {
	display: inline-flex;
	align-items: center;
	height: 38px;
	padding: 0 10px;
	border-radius: 6px;
	color: #344054;
	font-size: 14px;
	font-weight: 600;
	transition: color .18s ease, background .18s ease;
}

.modern-nav a:hover {
	color: var(--modern-blue);
	background: #eef4ff;
}

.modern-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.modern-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 18px;
	border-radius: 7px;
	border: 1px solid transparent;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.modern-btn:hover {
	transform: translateY(-1px);
}

.modern-btn-primary {
	color: #fff;
	background: linear-gradient(135deg, var(--modern-blue), #0ea5e9);
	box-shadow: 0 12px 26px rgba(23, 105, 255, .28);
}

.modern-btn-primary:hover {
	color: #fff !important;
	box-shadow: 0 16px 34px rgba(23, 105, 255, .34);
}

.modern-btn-ghost {
	color: var(--modern-blue);
	background: #f3f7ff;
	border-color: #d8e5ff;
}

.modern-btn-light {
	color: #dbeafe;
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .2);
}

.modern-btn-light:hover {
	color: #fff !important;
}

.modern-btn-lg {
	min-height: 48px;
	padding: 0 24px;
	font-size: 15px;
}

.hero-section {
	position: relative;
	overflow: hidden;
	min-height: calc(100vh - 78px);
	padding: 104px 0 92px;
	background:
		linear-gradient(90deg, rgba(5, 12, 28, .98), rgba(6, 19, 48, .92) 48%, rgba(7, 20, 43, .72)),
		url("/template/index6/assets/img/home-bg.jpg") center/cover no-repeat;
	isolation: isolate;
}

.hero-bg-grid {
	position: absolute;
	inset: 0;
	opacity: .2;
	background-image:
		linear-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .22) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: linear-gradient(to right, #000, rgba(0,0,0,.72), transparent 90%);
	z-index: -1;
}

.hero-section:before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 23% 28%, rgba(24, 211, 232, .26), transparent 26%),
		radial-gradient(circle at 78% 30%, rgba(22, 119, 255, .28), transparent 28%),
		linear-gradient(180deg, rgba(4, 10, 25, .16), rgba(4, 10, 25, .72));
	z-index: -1;
}

.hero-section:after {
	content: "";
	position: absolute;
	right: -14%;
	top: 9%;
	width: 56%;
	height: 82%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(24, 211, 232, .18), transparent 66%);
	filter: blur(10px);
	z-index: -1;
}

.hero-orbit {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 50%;
	animation: drift 8s ease-in-out infinite alternate;
}

.hero-orbit-one {
	width: 620px;
	height: 620px;
	left: -260px;
	top: 140px;
}

.hero-orbit-two {
	width: 420px;
	height: 420px;
	right: 4%;
	top: 80px;
	animation-delay: -2s;
}

.hero-layout {
	position: relative;
	display: grid;
	grid-template-columns: minmax(560px, 1.02fr) minmax(500px, .98fr);
	align-items: center;
	gap: 58px;
}

.hero-copy {
	color: #fff;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 38px;
	padding: 0 16px;
	border-radius: 999px;
	color: #dff8ff;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .2);
	font-size: 13px;
	font-weight: 700;
}

.hero-copy h1 {
	max-width: 760px;
	margin: 26px 0 22px;
	color: #fff;
	font-size: 66px;
	line-height: 1.06;
	font-weight: 900;
	letter-spacing: 0;
}

.hero-lead {
	max-width: 700px;
	color: #d3def8;
	font-size: 19px;
	line-height: 1.9;
}

.hero-actions {
	display: flex;
	gap: 14px;
	margin-top: 38px;
	flex-wrap: wrap;
}

.hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	max-width: 640px;
	margin-top: 54px;
}

.hero-metrics div {
	padding: 22px 24px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .18);
	backdrop-filter: blur(14px);
}

.hero-metrics strong {
	display: block;
	color: #fff;
	font-size: 28px;
	font-weight: 900;
}

.hero-metrics span {
	display: block;
	margin-top: 8px;
	color: #a8badb;
	font-size: 13px;
}

.hero-visual {
	position: relative;
	min-height: 560px;
	perspective: 1200px;
}

.pay-card {
	border-radius: 8px;
	background: rgba(255, 255, 255, .9);
	border: 1px solid rgba(255, 255, 255, .72);
	box-shadow: 0 34px 90px rgba(2, 8, 23, .34);
	backdrop-filter: blur(18px);
}

.pay-card-main {
	position: absolute;
	inset: 72px 4px auto auto;
	width: min(100%, 520px);
	padding: 34px;
	transform: rotateY(-8deg) rotateX(2deg);
	transform-origin: center;
}

.pay-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #475467;
	font-size: 14px;
	font-weight: 800;
}

.pay-card-head i {
	color: var(--modern-blue);
}

.pay-amount {
	margin-top: 28px;
	color: #0f172a;
	font-size: 50px;
	font-weight: 900;
}

.pay-status-row {
	display: flex;
	justify-content: space-between;
	margin-top: 14px;
	color: #667085;
	font-size: 13px;
}

.pay-status-row i {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: 6px;
	border-radius: 50%;
	background: var(--modern-green);
}

.pay-chart {
	display: flex;
	align-items: end;
	gap: 12px;
	height: 158px;
	margin-top: 34px;
	padding: 22px;
	border-radius: 8px;
	background: linear-gradient(180deg, #f8fbff, #eef4ff);
}

.pay-chart b {
	flex: 1;
	display: block;
	min-width: 24px;
	border-radius: 6px 6px 2px 2px;
	background: linear-gradient(180deg, var(--modern-cyan), var(--modern-blue));
	animation: barPulse 3.4s ease-in-out infinite;
}

.pay-chart b:nth-child(2n) {
	animation-delay: -.8s;
}

.pay-card-mini {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 20px;
}

.pay-card-mini i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 8px;
	color: #fff;
	font-size: 19px;
}

.pay-card-mini strong {
	display: block;
	font-weight: 900;
	color: #172033;
}

.pay-card-mini span {
	display: block;
	margin-top: 5px;
	color: #667085;
	font-size: 12px;
}

.channel-wx {
	left: 16px;
	top: 42px;
}

.channel-wx i {
	background: linear-gradient(135deg, #20bf55, #01baef);
}

.channel-card {
	right: 12px;
	bottom: 58px;
}

.channel-card i {
	background: linear-gradient(135deg, #f7b731, #f97316);
}

.coin {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	color: #6b3a00;
	background: linear-gradient(145deg, #ffdf81, #f2aa19);
	box-shadow: 0 22px 44px rgba(247, 183, 49, .34);
	font-size: 24px;
	font-weight: 900;
	animation: floatCoin 5s ease-in-out infinite;
}

.coin-a {
	right: 28px;
	top: 8px;
}

.coin-b {
	left: 18px;
	bottom: 126px;
	animation-delay: -1.2s;
}

.coin-c {
	right: 42%;
	bottom: 10px;
	animation-delay: -2.4s;
}

.section-block {
	padding: 104px 0;
}

.section-white {
	background:
		linear-gradient(180deg, #fff, #f8fbff);
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 52px;
	text-align: center;
}

.section-heading.align-left {
	margin-left: 0;
	text-align: left;
}

.section-heading span {
	display: inline-block;
	margin-bottom: 12px;
	color: var(--modern-blue);
	font-size: 13px;
	font-weight: 900;
}

.section-heading h2 {
	margin: 0;
	color: var(--modern-ink);
	font-size: 40px;
	line-height: 1.28;
	font-weight: 900;
	letter-spacing: 0;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.feature-card,
.step-card {
	min-height: 250px;
	padding: 32px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid var(--modern-line);
	box-shadow: 0 20px 55px rgba(15, 23, 42, .07);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-card:hover,
.step-card:hover {
	transform: translateY(-4px);
	border-color: #cfe0ff;
	box-shadow: 0 24px 52px rgba(23, 105, 255, .11);
}

.feature-card i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 8px;
	color: #fff;
	font-size: 20px;
	background: linear-gradient(135deg, var(--modern-blue), var(--modern-cyan));
}

.feature-card h3,
.step-card h3 {
	margin: 24px 0 12px;
	color: var(--modern-ink);
	font-size: 19px;
	font-weight: 900;
}

.feature-card p,
.step-card p,
.channel-copy p {
	color: var(--modern-muted);
	font-size: 15px;
	line-height: 1.85;
}

.channel-section {
	background:
		radial-gradient(circle at 16% 20%, rgba(24, 211, 232, .16), transparent 28%),
		linear-gradient(135deg, #eef5ff 0%, #f8fbff 48%, #edf7ff 100%);
}

.channel-layout {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(360px, 520px);
	align-items: center;
	gap: 72px;
}

.channel-tags {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 30px;
}

.channel-tags span {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 64px;
	padding: 14px 16px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid var(--modern-line);
	color: #243047;
	font-weight: 800;
	box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
}

.channel-tags img {
	width: 34px;
	height: 34px;
	object-fit: contain;
}

.terminal-panel {
	overflow: hidden;
	border-radius: 8px;
	background: #0b1220;
	border: 1px solid rgba(148, 163, 184, .18);
	box-shadow: 0 34px 80px rgba(15, 23, 42, .24);
}

.terminal-top {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 46px;
	padding: 0 18px;
	background: #111827;
	border-bottom: 1px solid rgba(148, 163, 184, .16);
}

.terminal-top span {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #ef4444;
}

.terminal-top span:nth-child(2) {
	background: #f59e0b;
}

.terminal-top span:nth-child(3) {
	background: #22c55e;
}

.terminal-top b {
	margin-left: auto;
	color: #94a3b8;
	font-size: 12px;
}

.terminal-panel pre {
	margin: 0;
	padding: 28px;
	color: #bfdbfe;
	font-size: 15px;
	line-height: 1.9;
	font-family: Consolas, Monaco, monospace;
	white-space: pre-wrap;
}

.step-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.step-card {
	min-height: 190px;
}

.step-card b {
	color: transparent;
	background: linear-gradient(135deg, var(--modern-blue), var(--modern-cyan));
	-webkit-background-clip: text;
	background-clip: text;
	font-size: 32px;
	font-weight: 900;
}

.cta-section {
	padding: 0 0 92px;
	background: #fff;
}

.cta-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 48px;
	border-radius: 8px;
	color: #fff;
	background:
		radial-gradient(circle at 82% 20%, rgba(24, 211, 232, .24), transparent 30%),
		radial-gradient(circle at 94% 70%, rgba(247, 183, 49, .28), transparent 26%),
		linear-gradient(135deg, #07111f, #0d2a63 62%, #062236);
	box-shadow: 0 28px 70px rgba(15, 23, 42, .18);
}

.cta-box span {
	color: #93c5fd;
	font-size: 13px;
	font-weight: 900;
}

.cta-box h2 {
	max-width: 720px;
	margin: 10px 0 0;
	color: #fff;
	font-size: 28px;
	line-height: 1.35;
	font-weight: 900;
}

.modern-footer {
	padding: 58px 0 24px;
	background: #0a1020;
	color: #cbd5e1;
}

.footer-layout {
	display: grid;
	grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(130px, .6fr));
	gap: 36px;
}

.modern-footer .modern-brand {
	color: #fff;
}

.footer-brand p {
	max-width: 420px;
	margin-top: 18px;
	color: #94a3b8;
	font-size: 14px;
	line-height: 1.8;
}

.footer-links h5,
.footer-contact h5 {
	margin: 0 0 16px;
	color: #fff;
	font-size: 15px;
	font-weight: 900;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
	display: block;
	margin: 11px 0;
	color: #94a3b8;
	font-size: 14px;
}

.footer-links a:hover,
.footer-contact a:hover {
	color: #fff;
}

.footer-contact i {
	width: 18px;
	color: var(--modern-cyan);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 40px;
	padding-top: 22px;
	border-top: 1px solid rgba(148, 163, 184, .18);
	color: #64748b;
	font-size: 13px;
}

@keyframes drift {
	from { transform: translate3d(0, 0, 0) rotate(0deg); }
	to { transform: translate3d(18px, 20px, 0) rotate(8deg); }
}

@keyframes floatCoin {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-18px); }
}

@keyframes barPulse {
	0%, 100% { filter: saturate(1); opacity: .92; }
	50% { filter: saturate(1.3); opacity: 1; }
}

@media screen and (max-width: 980px) {
	.modern-header-inner {
		min-height: auto;
		padding: 14px 0;
		flex-wrap: wrap;
	}

	.modern-nav {
		order: 3;
		width: 100%;
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 2px;
	}

	.hero-section {
		min-height: auto;
		padding-top: 62px;
		background:
			linear-gradient(180deg, rgba(5, 12, 28, .96), rgba(6, 19, 48, .9)),
			url("/template/index6/assets/img/home-bg.jpg") center/cover no-repeat;
	}

	.hero-layout,
	.channel-layout {
		grid-template-columns: 1fr;
	}

	.hero-copy h1 {
		font-size: 46px;
	}

	.hero-visual {
		min-height: 460px;
	}

	.pay-card-main {
		transform: none;
	}

	.feature-grid,
	.step-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-layout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 640px) {
	.modern-container,
	.modern-header-inner {
		width: min(100% - 24px, 1280px);
	}

	.modern-brand span {
		max-width: 160px;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.modern-actions {
		width: 100%;
	}

	.modern-actions .modern-btn {
		flex: 1;
	}

	.hero-copy h1 {
		font-size: 36px;
	}

	.hero-lead {
		font-size: 16px;
	}

	.hero-metrics,
	.feature-grid,
	.step-grid,
	.channel-tags,
	.footer-layout {
		grid-template-columns: 1fr;
	}

	.hero-visual {
		min-height: 410px;
	}

	.pay-card-main {
		inset: 70px auto auto 0;
		width: 100%;
		padding: 24px;
	}

	.pay-amount {
		font-size: 32px;
	}

	.channel-wx,
	.channel-card {
		display: none;
	}

	.section-block {
		padding: 62px 0;
	}

	.section-heading h2 {
		font-size: 27px;
	}

	.cta-box,
	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

.modern-subpage {
	background: #f6f8fc;
}

.sub-hero {
	position: relative;
	overflow: hidden;
	padding: 112px 0 86px;
	color: #fff;
	background:
		linear-gradient(90deg, rgba(5, 12, 28, .98), rgba(8, 27, 68, .88)),
		url("/template/index6/assets/img/home-bg.jpg") center/cover no-repeat;
}

.sub-hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 20%, rgba(24, 211, 232, .22), transparent 30%),
		radial-gradient(circle at 84% 24%, rgba(247, 183, 49, .18), transparent 22%);
}

.sub-hero-layout {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
	align-items: center;
	gap: 70px;
}

.sub-kicker {
	display: inline-flex;
	align-items: center;
	height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	color: #bff7ff;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .16);
	font-size: 13px;
	font-weight: 900;
}

.sub-hero h1 {
	max-width: 760px;
	margin: 24px 0 18px;
	color: #fff;
	font-size: 52px;
	line-height: 1.12;
	font-weight: 900;
	letter-spacing: 0;
}

.sub-hero p {
	max-width: 690px;
	color: #d3def8;
	font-size: 18px;
	line-height: 1.9;
}

.sub-hero-actions {
	display: flex;
	gap: 14px;
	margin-top: 32px;
	flex-wrap: wrap;
}

.capability-dashboard,
.about-panel {
	padding: 30px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .92);
	border: 1px solid rgba(255, 255, 255, .68);
	box-shadow: 0 34px 90px rgba(2, 8, 23, .34);
	backdrop-filter: blur(18px);
}

.dash-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #475467;
	font-weight: 900;
}

.dash-head b {
	padding: 6px 10px;
	border-radius: 999px;
	color: #027a48;
	background: #dcfae6;
	font-size: 12px;
}

.dash-total {
	margin-top: 28px;
	padding: 24px;
	border-radius: 8px;
	background: linear-gradient(135deg, #f7fbff, #eef5ff);
}

.dash-total label {
	display: block;
	color: #667085;
	font-size: 13px;
	font-weight: 800;
}

.dash-total strong {
	display: block;
	margin-top: 12px;
	color: #101828;
	font-size: 34px;
	font-weight: 900;
}

.dash-list {
	display: grid;
	gap: 12px;
	margin-top: 20px;
}

.dash-list div,
.about-panel div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #e8eef7;
	color: #344054;
}

.dash-list b {
	color: var(--modern-blue);
}

.scene-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.scene-card {
	min-height: 236px;
	padding: 30px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid var(--modern-line);
	box-shadow: 0 20px 55px rgba(15, 23, 42, .07);
}

.scene-card-large {
	grid-column: span 2;
	background:
		linear-gradient(135deg, rgba(22, 119, 255, .92), rgba(24, 211, 232, .86)),
		url("/template/index10/assets/picture/banner_right.png") right center/contain no-repeat;
	color: #fff;
}

.scene-card-dark {
	background: linear-gradient(135deg, #07111f, #123a7c);
	color: #fff;
}

.scene-card i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 8px;
	color: #fff;
	background: linear-gradient(135deg, var(--modern-blue), var(--modern-cyan));
	font-size: 21px;
}

.scene-card-large i,
.scene-card-dark i {
	background: rgba(255, 255, 255, .18);
}

.scene-card h3 {
	margin: 24px 0 12px;
	color: inherit;
	font-size: 21px;
	font-weight: 900;
}

.scene-card p,
.split-desc {
	color: var(--modern-muted);
	font-size: 15px;
	line-height: 1.85;
}

.scene-card-large p,
.scene-card-dark p {
	color: rgba(255, 255, 255, .82);
}

.product-band,
.timeline-section {
	background:
		radial-gradient(circle at 18% 18%, rgba(24, 211, 232, .12), transparent 28%),
		linear-gradient(135deg, #eef5ff, #f9fbff);
}

.split-layout {
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
	gap: 64px;
	align-items: center;
}

.ops-grid,
.value-stack {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.ops-grid div,
.value-stack div,
.timeline-grid div,
.contact-card {
	padding: 26px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid var(--modern-line);
	box-shadow: 0 18px 44px rgba(15, 23, 42, .07);
}

.ops-grid i,
.value-stack i,
.contact-card i {
	color: var(--modern-blue);
	font-size: 28px;
}

.ops-grid h3,
.value-stack h3,
.timeline-grid h3,
.contact-card h3 {
	margin: 16px 0 10px;
	color: var(--modern-ink);
	font-size: 19px;
	font-weight: 900;
}

.ops-grid p,
.value-stack p,
.timeline-grid p,
.contact-card p {
	color: var(--modern-muted);
	font-size: 14px;
	line-height: 1.8;
}

.process-line,
.timeline-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.process-line div {
	position: relative;
	padding: 30px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid var(--modern-line);
	box-shadow: 0 18px 44px rgba(15, 23, 42, .07);
}

.process-line b,
.timeline-grid b {
	color: transparent;
	background: linear-gradient(135deg, var(--modern-blue), var(--modern-cyan));
	-webkit-background-clip: text;
	background-clip: text;
	font-size: 32px;
	font-weight: 900;
}

.process-line h3 {
	margin: 18px 0 10px;
	color: var(--modern-ink);
	font-size: 19px;
	font-weight: 900;
}

.process-line p {
	color: var(--modern-muted);
	font-size: 14px;
	line-height: 1.8;
}

.about-panel {
	display: grid;
	gap: 14px;
}

.about-panel strong {
	color: #101828;
	font-size: 22px;
	font-weight: 900;
}

.about-panel span {
	color: #667085;
	font-size: 14px;
}

.contact-layout {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.contact-card a {
	color: var(--modern-blue);
	font-weight: 800;
}

.contact-card-dark {
	color: #fff;
	background: linear-gradient(135deg, #07111f, #123a7c);
	border-color: transparent;
}

.contact-card-dark h3,
.contact-card-dark p,
.contact-card-dark i {
	color: #fff;
}

.contact-card-dark a {
	display: inline-flex;
	margin-top: 14px;
	color: #bff7ff;
}

.modern-legal {
	margin-top: 54px;
	margin-bottom: 72px;
	padding: 46px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid var(--modern-line);
	box-shadow: 0 22px 60px rgba(15, 23, 42, .08);
}

.modern-legal .header-body {
	padding: 0 0 26px;
	margin-bottom: 28px;
	border-bottom: 1px solid var(--modern-line);
}

.modern-legal h2 {
	color: var(--modern-ink);
	font-size: 36px;
	font-weight: 900;
}

.modern-legal h4 {
	margin: 28px 0 12px;
	color: var(--modern-ink);
	font-size: 18px;
	font-weight: 900;
}

.modern-legal p {
	margin: 10px 0;
	color: #475467;
	font-size: 15px;
	line-height: 1.9;
}

.modern-legal strong {
	color: #1d2939;
	font-weight: 900;
}

@media screen and (max-width: 980px) {
	.sub-hero-layout,
	.split-layout {
		grid-template-columns: 1fr;
	}

	.sub-hero h1 {
		font-size: 42px;
	}

	.scene-grid,
	.process-line,
	.timeline-grid,
	.contact-layout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 640px) {
	.sub-hero {
		padding: 74px 0 58px;
	}

	.sub-hero h1 {
		font-size: 32px;
	}

	.scene-grid,
	.ops-grid,
	.value-stack,
	.process-line,
	.timeline-grid,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.scene-card-large {
		grid-column: span 1;
	}

	.modern-legal {
		padding: 24px;
		margin-top: 24px;
	}
}

/* Minimal premium skin */
body.modern-site {
	background: #f7f8fb;
	color: #111827;
}

#header.modern-header {
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid #edf0f5;
	box-shadow: none;
	backdrop-filter: blur(18px);
}

.modern-header-inner {
	min-height: 82px;
}

.modern-brand {
	color: #111827;
	font-size: 18px;
	font-weight: 900;
}

.modern-brand img {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	box-shadow: none;
	border: 1px solid #edf0f5;
}

.modern-nav {
	gap: 28px;
}

.modern-nav a {
	height: auto;
	padding: 0;
	color: #374151;
	background: transparent;
	font-size: 15px;
	font-weight: 800;
}

.modern-nav a:hover {
	color: #0b63f6;
	background: transparent;
}

.modern-btn {
	border-radius: 6px;
	box-shadow: none;
}

.modern-btn-primary {
	background: #0b63f6;
	box-shadow: 0 16px 34px rgba(11, 99, 246, .22);
}

.modern-btn-primary:hover {
	box-shadow: 0 18px 36px rgba(11, 99, 246, .26);
}

.modern-btn-ghost {
	color: #0b63f6;
	background: #fff;
	border-color: #d9e4f8;
}

.hero-section {
	min-height: calc(100vh - 82px);
	padding: 118px 0 104px;
	background:
		linear-gradient(90deg, rgba(6, 18, 42, .98) 0%, rgba(8, 25, 57, .94) 54%, rgba(8, 25, 57, .72) 100%),
		url("/template/index6/assets/img/home-bg.jpg") center/cover no-repeat;
}

.hero-section:before {
	background: linear-gradient(180deg, rgba(5, 13, 31, .08), rgba(5, 13, 31, .54));
}

.hero-section:after,
.hero-orbit,
.coin {
	display: none;
}

.hero-bg-grid {
	opacity: .11;
	background-size: 72px 72px;
}

.hero-layout {
	grid-template-columns: minmax(560px, 1.08fr) minmax(420px, .92fr);
	gap: 92px;
}

.eyebrow {
	height: auto;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	color: #8fdcff;
	background: transparent;
	font-size: 14px;
	letter-spacing: 0;
}

.hero-copy h1 {
	max-width: 820px;
	margin: 28px 0 26px;
	font-size: 68px;
	line-height: 1.08;
	font-weight: 900;
}

.hero-lead {
	max-width: 720px;
	color: #c8d3e6;
	font-size: 19px;
	line-height: 1.95;
}

.hero-actions {
	margin-top: 42px;
}

.hero-metrics {
	max-width: 680px;
	margin-top: 64px;
	gap: 0;
	border-top: 1px solid rgba(255, 255, 255, .16);
}

.hero-metrics div {
	padding: 24px 34px 0 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	backdrop-filter: none;
}

.hero-metrics strong {
	font-size: 30px;
}

.hero-metrics span {
	color: #95a3b8;
}

.hero-visual {
	min-height: 520px;
}

.pay-card-main {
	inset: 54px 0 auto auto;
	width: min(100%, 520px);
	padding: 36px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .95);
	border: 1px solid rgba(255, 255, 255, .72);
	box-shadow: 0 34px 90px rgba(0, 0, 0, .28);
	transform: none;
}

.pay-card-mini {
	display: none;
}

.pay-amount {
	font-size: 48px;
}

.pay-chart {
	height: 150px;
	background: #f4f7fb;
}

.pay-chart b {
	border-radius: 5px 5px 2px 2px;
	background: #0b63f6;
	animation: none;
}

.section-block {
	padding: 112px 0;
}

.section-white,
.product-band,
.timeline-section,
.channel-section {
	background: #fff;
}

.section-heading {
	margin-bottom: 58px;
}

.section-heading span,
.sub-kicker {
	color: #0b63f6;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.section-heading h2 {
	font-size: 42px;
	line-height: 1.25;
}

.feature-grid,
.scene-grid,
.step-grid,
.process-line,
.timeline-grid,
.contact-layout {
	gap: 22px;
}

.feature-card,
.step-card,
.scene-card,
.ops-grid div,
.value-stack div,
.timeline-grid div,
.contact-card,
.process-line div {
	border: 1px solid #edf0f5;
	box-shadow: none;
	background: #fff;
}

.feature-card:hover,
.step-card:hover,
.scene-card:hover {
	transform: translateY(-2px);
	border-color: #d8e3f7;
	box-shadow: none;
}

.feature-card i,
.scene-card i,
.ops-grid i,
.value-stack i,
.contact-card i {
	background: #eef5ff;
	color: #0b63f6;
}

.scene-card-large,
.scene-card-dark,
.contact-card-dark,
.cta-box {
	background: #07152d;
	color: #fff;
}

.scene-card-large p,
.scene-card-dark p,
.contact-card-dark p {
	color: #c8d3e6;
}

.scene-card-large i,
.scene-card-dark i,
.contact-card-dark i {
	background: rgba(255, 255, 255, .1);
	color: #fff;
}

.channel-layout,
.split-layout {
	gap: 90px;
}

.channel-tags span {
	box-shadow: none;
	border-color: #edf0f5;
}

.terminal-panel,
.capability-dashboard,
.about-panel {
	border-radius: 8px;
	box-shadow: none;
	border: 1px solid #edf0f5;
	background: #fff;
}

.terminal-panel {
	background: #07152d;
	border-color: #142442;
}

.sub-hero {
	padding: 118px 0 96px;
	background:
		linear-gradient(90deg, rgba(6, 18, 42, .98), rgba(8, 25, 57, .88)),
		url("/template/index6/assets/img/home-bg.jpg") center/cover no-repeat;
}

.sub-hero:before {
	background: linear-gradient(180deg, rgba(5, 13, 31, .08), rgba(5, 13, 31, .46));
}

.sub-hero h1 {
	font-size: 56px;
	line-height: 1.1;
}

.sub-hero p {
	color: #c8d3e6;
}

.modern-legal,
#article-content.markdown-body {
	box-shadow: none;
	border-color: #edf0f5;
}

.modern-footer {
	background: #07111f;
}

@media screen and (max-width: 980px) {
	.hero-layout {
		grid-template-columns: 1fr;
		gap: 46px;
	}

	.hero-copy h1 {
		font-size: 48px;
	}

	.hero-visual {
		min-height: 420px;
	}

	.pay-card-main {
		position: relative;
		inset: auto;
		width: 100%;
	}

	.sub-hero h1 {
		font-size: 42px;
	}
}

@media screen and (max-width: 640px) {
	.modern-nav {
		gap: 18px;
	}

	.hero-section,
	.sub-hero {
		padding: 72px 0 64px;
	}

	.hero-copy h1,
	.sub-hero h1 {
		font-size: 34px;
	}

	.hero-metrics {
		margin-top: 42px;
	}

	.hero-metrics div {
		padding-right: 0;
	}
}
