:root{
	--tzp-bg:#ffffff;
	--tzp-text:#0f172a;
	--tzp-muted:#475569;
	--tzp-soft:#64748b;
	--tzp-line:#dbe4ee;
	--tzp-line-strong:#cbd5e1;
	--tzp-surface:#f8fafc;
	--tzp-surface-2:#f1f5f9;
	--tzp-brand:#0f3ea8;
	--tzp-brand-2:#1d4ed8;
	--tzp-accent:#ea580c;
	--tzp-accent-2:#c2410c;
	--tzp-warn-bg:#fff7ed;
	--tzp-warn-line:#fdba74;
	--tzp-shadow:0 10px 28px rgba(15,23,42,.08);
	--tzp-radius:18px;
	--tzp-max:1000px;
	--tzp-pad:24px;
}
*,
*::before,
*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body .ast-container{
	max-width:var(--tzp-max);
	width:100%;
	margin-inline:auto;
	padding-inline:0;
}
body #primary{
	width:100%;
	float:none;
	margin:0;
	padding:0;
}
body #secondary{display:none}
img,svg,video,iframe{max-width:100%;height:auto}
a,button,summary,[tabindex]:not([tabindex="-1"]){outline:none}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible{
	box-shadow:0 0 0 3px rgba(29,78,216,.2);
	outline:2px solid var(--tzp-brand-2);
	outline-offset:2px;
	border-radius:10px;
}
.tzp-page{
	max-width:var(--tzp-max);
	margin:0 auto;
	padding:28px 16px 56px;
	color:var(--tzp-text);
	font-size:16px;
	line-height:1.75;
}
.tzp-hero{
	padding:34px 32px;
	border-radius:24px;
	background:
		linear-gradient(135deg, rgba(15,62,168,.98), rgba(29,78,216,.94)),
		linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0));
	color:#fff;
	box-shadow:0 20px 40px rgba(15,62,168,.22);
}
.tzp-kicker{
	display:inline-flex;
	align-items:center;
	gap:8px;
	margin:0 0 12px;
	padding:6px 10px;
	border:1px solid rgba(255,255,255,.18);
	border-radius:999px;
	font-size:.8125rem;
	font-weight:700;
	letter-spacing:.02em;
	color:rgba(255,255,255,.92);
}
.tzp-hero h1{
	margin:0;
	font-size:clamp(2rem,4vw,3rem);
	line-height:1.15;
	font-weight:900;
	letter-spacing:-.03em;
}
.tzp-hero__lead{
	max-width:860px;
	margin:16px 0 0;
	font-size:1.0625rem;
	line-height:1.9;
	color:rgba(255,255,255,.94);
}
.tzp-meta{
	display:flex;
	flex-wrap:wrap;
	gap:10px 16px;
	margin:20px 0 0;
	padding:0;
	list-style:none;
	color:rgba(255,255,255,.88);
	font-size:.9375rem;
}
.tzp-meta li{
	display:flex;
	align-items:center;
	gap:8px;
}
.tzp-jumpnav{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	margin:22px 0 0;
}
.tzp-jumpnav a{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:11px 14px;
	border-radius:999px;
	border:1px solid rgba(255,255,255,.18);
	color:#fff;
	text-decoration:none;
	font-weight:700;
	font-size:.9375rem;
	background:rgba(255,255,255,.08);
	transition:transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.tzp-jumpnav a:hover{
	transform:translateY(-1px);
	background:rgba(255,255,255,.14);
	border-color:rgba(255,255,255,.3);
}
.tzp-section{
	margin-top:22px;
	padding:28px;
	border:1px solid var(--tzp-line);
	border-radius:var(--tzp-radius);
	background:var(--tzp-bg);
	box-shadow:var(--tzp-shadow);
}
.tzp-section__head{
	display:grid;
	gap:8px;
	margin-bottom:18px;
}
.tzp-section__head h2{
	margin:0;
	font-size:1.625rem;
	line-height:1.25;
	font-weight:900;
	letter-spacing:-.02em;
}
.tzp-section__head p{
	margin:0;
	color:var(--tzp-muted);
}
.tzp-grid{
	display:grid;
	gap:16px;
}
.tzp-grid--2{
	grid-template-columns:repeat(2,minmax(0,1fr));
}
.tzp-card{
	padding:20px;
	border:1px solid var(--tzp-line);
	border-radius:16px;
	background:linear-gradient(180deg,#fff,#fbfdff);
}
.tzp-card h3{
	margin:0;
	font-size:1.125rem;
	line-height:1.35;
	font-weight:850;
	letter-spacing:-.01em;
}
.tzp-card p{
	margin:10px 0 0;
	color:var(--tzp-muted);
}
.tzp-market__top{
	display:flex;
	align-items:flex-start;
	justify-content:space-between;
	gap:12px;
	margin-bottom:14px;
}
.tzp-badge{
	display:inline-flex;
	align-items:center;
	padding:5px 10px;
	border-radius:999px;
	background:#e8efff;
	color:#1e3a8a;
	font-size:.8125rem;
	font-weight:800;
	white-space:nowrap;
}
.tzp-en{
	display:block;
	margin-top:3px;
	color:var(--tzp-soft);
	font-size:.875rem;
	font-weight:650;
}
.tzp-list{
	display:grid;
	gap:10px;
	margin:0;
	padding:0;
	list-style:none;
}
.tzp-list li{
	display:grid;
	grid-template-columns:70px 1fr;
	gap:10px;
}
.tzp-list strong{
	color:var(--tzp-text);
	font-weight:800;
}
.tzp-actions{
	display:flex;
	flex-wrap:wrap;
	gap:12px;
	margin-top:16px;
}
.tzp-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-height:44px;
	padding:11px 16px;
	border-radius:999px;
	font-weight:800;
	text-decoration:none;
	transition:transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.tzp-btn:hover{transform:translateY(-1px)}
.tzp-btn--primary{
	background:var(--tzp-accent);
	color:#fff;
}
.tzp-btn--primary:hover{background:var(--tzp-accent-2)}
.tzp-btn--ghost{
	border:1px solid var(--tzp-line-strong);
	color:var(--tzp-brand);
	background:#fff;
}
.tzp-btn--ghost:hover{border-color:var(--tzp-brand-2)}
.tzp-scroll{
	margin-top:16px;
	border:1px solid var(--tzp-line);
	border-radius:16px;
	background:#fff;
	overflow-x:auto;
	overflow-y:hidden;
	scrollbar-gutter:stable both-edges;
}
.tzp-scroll:focus-visible{
	outline:2px solid var(--tzp-brand-2);
	outline-offset:2px;
}
.tzp-table{
	width:100%;
	min-width:860px;
	border-collapse:collapse;
}
.tzp-table caption{
	padding:14px 16px 10px;
	text-align:left;
	font-weight:900;
	font-size:1.0625rem;
	color:var(--tzp-text);
}
.tzp-table thead th{
	position:sticky;
	top:0;
	padding:14px 16px;
	background:var(--tzp-surface-2);
	color:#1e293b;
	border-bottom:1px solid var(--tzp-line);
	font-size:.9375rem;
	font-weight:850;
	text-align:left;
	white-space:nowrap;
}
.tzp-table tbody td{
	padding:14px 16px;
	border-bottom:1px solid var(--tzp-line);
	color:var(--tzp-muted);
	vertical-align:top;
}
.tzp-table tbody tr:last-child td{border-bottom:none}
.tzp-table tbody td:first-child{
	color:var(--tzp-text);
	font-weight:850;
}
.tzp-table a{
	color:var(--tzp-brand);
	font-weight:800;
	text-decoration:none;
}
.tzp-table a:hover{text-decoration:underline}
.tzp-note{
	margin-top:16px;
	padding:14px 16px;
	border-left:4px solid var(--tzp-brand-2);
	border-radius:12px;
	background:#eff6ff;
	color:#1e3a8a;
}
.tzp-note strong{color:#172554}
.tzp-warning{
	margin-top:16px;
	padding:14px 16px;
	border-left:4px solid #f97316;
	border-radius:12px;
	background:var(--tzp-warn-bg);
	color:#9a3412;
}
.tzp-warning strong{color:#7c2d12}
.tzp-steps{
	display:grid;
	gap:14px;
}
.tzp-step{
	padding:18px 18px 16px;
	border:1px solid var(--tzp-line);
	border-radius:14px;
	background:var(--tzp-surface);
}
.tzp-step__head{
	display:flex;
	flex-wrap:wrap;
	align-items:flex-start;
	justify-content:space-between;
	gap:8px 12px;
	margin-bottom:10px;
}
.tzp-step__head h3{
	margin:0;
	font-size:1.0625rem;
	font-weight:850;
}
.tzp-step__duration{
	color:var(--tzp-soft);
	font-size:.875rem;
	font-weight:700;
	white-space:nowrap;
}
.tzp-step__goal{
	margin-top:10px;
	padding-top:10px;
	border-top:1px dashed var(--tzp-line-strong);
	color:var(--tzp-text);
}
.tzp-terms{
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:12px;
}
.tzp-term{
	padding:14px 15px;
	border:1px solid var(--tzp-line);
	border-radius:14px;
	background:#fff;
}
.tzp-term dt{
	margin:0 0 6px;
	font-weight:850;
	color:var(--tzp-text);
}
.tzp-term dd{
	margin:0;
	color:var(--tzp-muted);
}
.tzp-platforms{
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:12px;
}
.tzp-platform{
	display:block;
	padding:16px;
	border:1px solid var(--tzp-line);
	border-radius:14px;
	background:#fff;
	color:inherit;
	text-decoration:none;
	transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.tzp-platform:hover{
	transform:translateY(-1px);
	border-color:#93c5fd;
	box-shadow:0 12px 24px rgba(15,23,42,.06);
}
.tzp-platform__name{
	font-weight:850;
	color:var(--tzp-text);
}
.tzp-platform__desc{
	margin-top:6px;
	color:var(--tzp-muted);
	font-size:.9375rem;
}
.tzp-article-list{
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:12px;
}
.tzp-article-link{
	display:block;
	padding:16px;
	border:1px solid var(--tzp-line);
	border-radius:14px;
	text-decoration:none;
	color:inherit;
	background:#fff;
	transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.tzp-article-link:hover{
	transform:translateY(-1px);
	border-color:#93c5fd;
	box-shadow:0 12px 24px rgba(15,23,42,.06);
}
.tzp-article-link__title{
	font-weight:850;
	line-height:1.45;
	color:var(--tzp-text);
}
.tzp-article-link__meta{
	margin-top:6px;
	font-size:.875rem;
	color:var(--tzp-soft);
}
.tzp-faq{
	display:grid;
	gap:10px;
}
.tzp-faq details{
	border:1px solid var(--tzp-line);
	border-radius:14px;
	background:#fff;
}
.tzp-faq summary{
	display:flex;
	align-items:flex-start;
	justify-content:space-between;
	gap:10px;
	padding:16px;
	cursor:pointer;
	list-style:none;
	font-weight:850;
	color:var(--tzp-text);
}
.tzp-faq summary::-webkit-details-marker{display:none}
.tzp-faq summary::after{
	content:"+";
	flex:0 0 auto;
	font-size:1.4rem;
	line-height:1;
	color:var(--tzp-brand-2);
}
.tzp-faq details[open] summary::after{content:"−"}
.tzp-faq__body{
	padding:0 16px 16px;
	color:var(--tzp-muted);
}
.tzp-faq__body p{
	margin:0 0 10px;
}
.tzp-faq__body p:last-child{margin-bottom:0}
.tzp-cta{
	margin-top:24px;
	padding:30px 28px;
	border-radius:24px;
	background:linear-gradient(135deg,#0f3ea8,#1d4ed8);
	color:#fff;
	box-shadow:0 22px 40px rgba(15,62,168,.18);
}
.tzp-cta h2{
	margin:0;
	font-size:1.75rem;
	line-height:1.2;
	font-weight:900;
	letter-spacing:-.02em;
}
.tzp-cta p{
	margin:12px 0 0;
	max-width:760px;
	color:rgba(255,255,255,.92);
}
.tzp-cta .tzp-actions{margin-top:18px}
.tzp-cta .tzp-btn--primary{
	background:#fff;
	color:var(--tzp-brand);
}
.tzp-cta .tzp-btn--primary:hover{background:#eff6ff}
.tzp-cta .tzp-btn--ghost{
	background:transparent;
	border-color:rgba(255,255,255,.3);
	color:#fff;
}
.tzp-cta .tzp-btn--ghost:hover{border-color:rgba(255,255,255,.55)}
.f8-affiliate{
	margin:18px 0 8px;
	padding:12px 18px;
	background:var(--tzp-surface-2);
	border-left:4px solid var(--tzp-brand-2);
	border-radius:12px;
	font-size:.9rem;
	color:var(--tzp-muted);
}
.f8-affiliate a{
	color:var(--tzp-brand);
	font-weight:800;
	text-decoration:none;
}
.bw-author{
	display:flex;
	align-items:center;
	gap:16px;
	margin:20px 0 28px;
	padding:18px 24px;
	background:var(--tzp-bg);
	border:1px solid var(--tzp-line);
	border-radius:var(--tzp-radius);
	box-shadow:var(--tzp-shadow);
}
.bw-author__avatar{
	width:56px;
	height:56px;
	border-radius:50%;
	object-fit:cover;
	border:2px solid var(--tzp-surface-2);
}
.bw-author__content{
	flex:1;
}
.bw-author__name{
	font-weight:900;
	font-size:1.1rem;
	color:var(--tzp-text);
}
.bw-author__name a{
	color:inherit;
	text-decoration:none;
}
.bw-author__badge{
	font-size:.85rem;
	font-weight:700;
	color:var(--tzp-brand);
	background:#e8efff;
	padding:2px 8px;
	border-radius:6px;
	margin-left:8px;
	vertical-align:middle;
}
.bw-author__meta{
	font-size:.85rem;
	color:var(--tzp-soft);
	margin-top:4px;
}
.rg-disclosure{
	margin-top:32px;
	padding:20px;
	background:var(--tzp-warn-bg);
	border:1px solid var(--tzp-warn-line);
	border-radius:16px;
	font-size:.85rem;
	color:#92400e;
	line-height:1.6;
	text-align:center;
}
.rg-disclosure strong{
	color:#7c2d12;
}
.rg-disclosure a{
	color:var(--tzp-accent);
	font-weight:bold;
	text-decoration:underline;
}
@media (max-width: 960px){
	.tzp-grid--2,
	.tzp-terms,
	.tzp-platforms,
	.tzp-article-list{
		grid-template-columns:1fr;
	}
}
@media (max-width: 768px){
	body .ast-container{
		max-width:100%;
		width:100%;
		margin-inline:0;
		padding-inline:0;
	}
	body #primary{
		width:100%;
		margin:0;
		padding-inline:0;
	}
	.tzp-page{
		max-width:100%;
		margin:0;
		padding:12px 12px 40px;
	}
	.tzp-hero{
		padding:24px 18px;
		border-radius:18px;
	}
	.tzp-hero h1{
		font-size:clamp(1.7rem,7vw,2.2rem);
	}
	.tzp-hero__lead{
		font-size:1rem;
		line-height:1.8;
	}
	.tzp-section{
		margin-top:16px;
		padding:18px 12px;
		border-radius:14px;
		box-shadow:none;
	}
	.tzp-card,
	.tzp-step,
	.tzp-term,
	.tzp-platform,
	.tzp-article-link,
	.tzp-faq details{
		border-radius:12px;
	}
	.tzp-card,
	.tzp-step,
	.tzp-term,
	.tzp-platform,
	.tzp-article-link{
		padding:14px;
	}
	.tzp-list li{
		grid-template-columns:62px 1fr;
		gap:8px;
	}
	.tzp-jumpnav{
		gap:8px;
	}
	.tzp-jumpnav a{
		padding:10px 12px;
		font-size:.875rem;
	}
	.tzp-table{
		min-width:760px;
	}
	.tzp-table caption,
	.tzp-table thead th,
	.tzp-table tbody td{
		padding-inline:12px;
	}
	.tzp-cta{
		padding:24px 18px;
		border-radius:18px;
	}
	.bw-author{
		padding:16px;
		margin:16px 0 24px;
	}
}