:root{
	--im-bg:#ffffff;
	--im-bg-soft:#f7f9fc;
	--im-surface:#ffffff;
	--im-surface-soft:#f8fbff;
	--im-line:#d9e2ef;
	--im-line-strong:#c7d4e6;
	--im-text:#15263a;
	--im-text-2:#506177;
	--im-text-3:#738398;
	--im-primary:#1460d2;
	--im-primary-dark:#103f96;
	--im-primary-soft:#eef4ff;
	--im-cyan:#0e8ca6;
	--im-violet:#6457d9;
	--im-shadow:0 10px 28px rgba(16,36,73,.06);
	--im-radius:22px;
	--im-radius-sm:14px;
	--im-max:1000px;
	--im-gutter:24px;
	--im-gutter-mobile:12px;
	--im-focus:0 0 0 3px rgba(20,96,210,.18);
}
html{
	scroll-behavior:smooth;
}
body.page-template,
body.page-template-default{
	background:#fff;
	margin:0;
	padding:0;
}
.site-main{
	margin:0;
	padding:0;
}
.site,
.site-content,
.content-area,
.site-main,
.entry-content,
.page-content,
.post-content,
.container,
.wrap{
	max-width:none;
	width:100%;
}
.site-content,
.content-area,
.site-main,
.entry-content,
.page-content,
.post-content{
	padding-left:0;
	padding-right:0;
	margin-left:0;
	margin-right:0;
}
.im-page,
.im-page *{
	box-sizing:border-box;
}
.im-page{
	width:100%;
	margin:0;
	color:var(--im-text);
	background:
		radial-gradient(circle at top left, rgba(20,96,210,.07), transparent 28%),
		radial-gradient(circle at top right, rgba(100,87,217,.05), transparent 26%),
		linear-gradient(180deg, #fbfcff 0%, #f5f8fc 22%, #ffffff 100%);
	margin-top:0;
	margin-bottom:0;
	padding-top:0;
	padding-bottom:0;
}
.im-page a{
	color:var(--im-primary);
	text-decoration:none;
	text-underline-offset:3px;
}
.im-page a:hover{
	color:var(--im-primary-dark);
	text-decoration:underline;
}
.im-page a:focus-visible,
.im-page button:focus-visible,
.im-page [tabindex]:focus-visible{
	outline:none;
	box-shadow:var(--im-focus);
	border-radius:12px;
}
.im-shell{
	width:100%;
	max-width:var(--im-max);
	margin:0 auto;
	padding-left:var(--im-gutter);
	padding-right:var(--im-gutter);
}
.im-topbar{
	border-bottom:1px solid var(--im-line);
	background:rgba(248,251,255,.92);
	backdrop-filter:saturate(180%) blur(8px);
}
.im-topbar-inner{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	align-items:center;
	min-height:52px;
	font-size:13px;
	line-height:1.5;
	color:var(--im-text-3);
}
.im-badge{
	display:inline-flex;
	align-items:center;
	gap:6px;
	padding:7px 11px;
	border-radius:999px;
	border:1px solid #d8e5fa;
	background:#edf4ff;
	color:var(--im-primary-dark);
	font-weight:700;
}
.im-hero{
	padding:28px 0 18px;
}
.im-hero-box{
	padding:32px;
	border:1px solid var(--im-line);
	border-radius:28px;
	background:linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	box-shadow:var(--im-shadow);
}
.im-kicker{
	display:inline-flex;
	align-items:center;
	gap:8px;
	margin:0 0 14px;
	padding:8px 12px;
	border-radius:999px;
	background:#eef4ff;
	border:1px solid #d9e6fb;
	color:var(--im-primary-dark);
	font-size:13px;
	font-weight:700;
}
.im-title{
	margin:0;
	font-size:42px;
	line-height:1.12;
	letter-spacing:-.03em;
	color:#0f1f32;
}
.im-subtitle{
	margin:14px 0 0;
	max-width:900px;
	font-size:17px;
	line-height:1.88;
	color:var(--im-text);
}
.im-cover{
	margin:22px 0 0;
}
.im-figure-box{
	margin:0;
	border:1px solid var(--im-line);
	border-radius:20px;
	background:#fff;
	padding:10px;
}
.im-figure-box img{
	display:block;
	width:100%;
	height:auto;
	border-radius:14px;
}
.im-figure-box figcaption{
	margin-top:10px;
	font-size:13px;
	line-height:1.6;
	color:var(--im-text-3);
	text-align:center;
}
.im-action-row{
	display:flex;
	flex-wrap:wrap;
	gap:12px;
	margin-top:20px;
}
.im-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-height:46px;
	padding:0 18px;
	border-radius:12px;
	font-size:15px;
	font-weight:700;
	border:1px solid transparent;
	transition:background-color .2s ease,border-color .2s ease,color .2s ease,transform .2s ease;
}
.im-btn:hover{
	transform:translateY(-1px);
	text-decoration:none;
}
.im-btn-primary{
	background:var(--im-primary);
	color:#fff;
}
.im-btn-primary:hover{
	background:var(--im-primary-dark);
}
.im-btn-ghost{
	background:#fff;
	border-color:#d3deed;
	color:var(--im-primary-dark);
}
.im-btn-ghost:hover{
	background:#f8fbff;
}
.im-metrics{
	display:grid;
	grid-template-columns:repeat(4,minmax(0,1fr));
	gap:12px;
	margin-top:20px;
}
.im-metric{
	padding:16px 14px;
	border:1px solid var(--im-line);
	border-radius:16px;
	background:#fff;
}
.im-metric strong{
	display:block;
	margin-bottom:6px;
	font-size:24px;
	line-height:1.1;
	color:var(--im-primary-dark);
}
.im-metric span{
	display:block;
	font-size:13px;
	line-height:1.65;
	color:var(--im-text-3);
}
.im-flow{
	padding-bottom:36px;
}
.im-toc{
	margin:0 0 18px;
	padding:18px;
	border:1px solid var(--im-line);
	border-radius:18px;
	background:#fff;
	box-shadow:var(--im-shadow);
}
.im-toc h2{
	margin:0 0 12px;
	font-size:18px;
	line-height:1.4;
	color:#11253d;
}
.im-toc-links{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
}
.im-toc-links a{
	display:inline-flex;
	align-items:center;
	min-height:38px;
	padding:0 12px;
	border-radius:999px;
	border:1px solid var(--im-line);
	background:#f8fbff;
	color:var(--im-text);
	font-size:14px;
	line-height:1;
}
.im-toc-links a:hover{
	background:#eef5ff;
	text-decoration:none;
}
.im-section{
	margin-bottom:18px;
	padding:24px;
	border:1px solid var(--im-line);
	border-radius:22px;
	background:#fff;
	box-shadow:var(--im-shadow);
	scroll-margin-top:88px;
}
.im-section h2{
	margin:0 0 14px;
	font-size:30px;
	line-height:1.26;
	letter-spacing:-.02em;
	color:#101d31;
}
.im-section h3{
	margin:24px 0 12px;
	font-size:21px;
	line-height:1.4;
	color:#162841;
}
.im-section p{
	margin:0 0 16px;
	font-size:16px;
	line-height:1.88;
	color:var(--im-text);
}
.im-section strong{
	color:var(--im-primary-dark);
}
.im-chip-row{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	margin:0 0 14px;
}
.im-chip{
	display:inline-flex;
	align-items:center;
	gap:6px;
	padding:7px 10px;
	border-radius:999px;
	border:1px solid #d9e6fa;
	background:#f2f7ff;
	color:#194699;
	font-size:12px;
	font-weight:700;
}
.im-note{
	margin:16px 0 18px;
	padding:14px 16px;
	border-left:4px solid var(--im-primary);
	border-radius:12px;
	background:#f7fbff;
	font-size:15px;
	line-height:1.82;
	color:var(--im-text);
}
.im-card-grid{
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:14px;
	margin:18px 0 0;
}
.im-card{
	padding:18px;
	border:1px solid var(--im-line);
	border-radius:18px;
	background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}
.im-card h3{
	margin:0 0 10px;
	font-size:18px;
	line-height:1.4;
	color:#122b4f;
}
.im-card p{
	margin:0;
	font-size:14px;
	line-height:1.8;
	color:var(--im-text-2);
}
.im-table-wrap{
	width:100%;
	margin:18px 0 22px;
	border:1px solid var(--im-line);
	border-radius:16px;
	background:#fff;
	overflow:auto;
	-webkit-overflow-scrolling:touch;
	scrollbar-gutter:stable both-edges;
}
.im-table-wrap:focus-visible{
	outline:none;
	box-shadow:var(--im-focus);
}
.im-table{
	width:100%;
	min-width:700px;
	border-collapse:separate;
	border-spacing:0;
}
.im-table caption{
	padding:14px 14px 0;
	text-align:left;
	font-size:13px;
	line-height:1.65;
	color:var(--im-text-3);
}
.im-table th,
.im-table td{
	padding:14px;
	vertical-align:top;
	text-align:left;
	border-bottom:1px solid var(--im-line);
	border-right:1px solid #edf2f8;
	font-size:14px;
	line-height:1.72;
	color:var(--im-text);
}
.im-table th:last-child,
.im-table td:last-child{
	border-right:none;
}
.im-table thead th{
	position:sticky;
	top:0;
	z-index:1;
	background:linear-gradient(180deg,#f3f7fc 0%,#ecf2fa 100%);
	color:#12233a;
	font-weight:800;
}
.im-table tbody tr:nth-child(even) td{
	background:#fbfdff;
}
.im-table tbody tr:hover td{
	background:#f5f9ff;
}
.im-table tbody tr:last-child td{
	border-bottom:none;
}
.im-gallery{
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:16px;
	margin:18px 0;
}
.im-listbox{
	margin:18px 0 0;
	padding:18px;
	border:1px solid var(--im-line);
	border-radius:18px;
	background:#fbfdff;
}
.im-listbox ul,
.im-section ul,
.im-section ol{
	margin:0 0 16px 1.2em;
	padding:0;
}
.im-section li{
	margin-bottom:10px;
	font-size:16px;
	line-height:1.82;
	color:var(--im-text);
}
.im-feature-grid{
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:16px;
	margin-top:18px;
}
.im-feature{
	padding:18px;
	border:1px solid var(--im-line);
	border-radius:16px;
	background:#fff;
}
.im-feature h4{
	margin:0 0 10px;
	font-size:18px;
	line-height:1.42;
	color:#12305d;
}
.im-feature p{
	margin:0;
	font-size:14px;
	line-height:1.8;
	color:var(--im-text-2);
}
.im-cta{
	padding:26px;
	border:1px solid #d8e6fb;
	border-radius:24px;
	background:
		radial-gradient(circle at top right, rgba(20,96,210,.08), transparent 30%),
		linear-gradient(180deg,#f8fbff 0%,#eef5ff 100%);
}
.im-cta-inner{
	text-align:center;
	padding:20px 16px;
	border-radius:16px;
	background:#eaf4ff;
	border:1px solid #d6e7ff;
	margin-top:16px;
}
.f8-affiliate{
	margin-top:12px;
	padding:8px 0;
	font-size:14px;
	color:var(--im-text-2);
	background:transparent;
}
.bw-author{
	padding:24px 20px;
	border:1px solid var(--im-line);
	border-radius:18px;
	background:#fff;
	box-shadow:var(--im-shadow);
	margin-bottom:16px;
}
.bw-author-box{
	display:flex;
	flex-direction:column;
	align-items:center;
	text-align:center;
}
.bw-author-avatar{
	width:88px;
	height:88px;
	border-radius:50%;
	object-fit:cover;
	border:3px solid #eef3f9;
	margin-bottom:12px;
}
.bw-author-name{
	font-size:20px;
	font-weight:700;
	margin:0 0 6px;
	color:#14263d;
}
.bw-author-role{
	font-size:13px;
	color:var(--im-text-3);
	margin-bottom:12px;
	line-height:1.5;
}
.bw-author-bio{
	font-size:14px;
	line-height:1.7;
	color:var(--im-text-2);
	margin-bottom:18px;
}
.bw-author-link{
	display:inline-block;
	padding:8px 20px;
	font-size:14px;
	border-radius:20px;
	background:#f0f5ff;
	color:var(--im-primary);
	font-weight:600;
	transition:background-color 0.2s;
}
.bw-author-link:hover{
	background:var(--im-primary);
	color:#fff;
	text-decoration:none;
}
@media (max-width: 1024px){
	.im-shell{
		padding-left:18px;
		padding-right:18px;
	}
	.im-title{
		font-size:36px;
	}
}
@media (max-width: 900px){
	.sidebar,
	.widget-area,
	.right-sidebar,
	.secondary{
		width:100%;
		margin:0;
		padding:0;
	}
	.im-shell{
		max-width:none;
		padding-left:var(--im-gutter-mobile);
		padding-right:var(--im-gutter-mobile);
	}
	.im-hero-box,
	.im-section,
	.im-cta,
	.im-toc{
		padding:18px 14px;
		border-radius:16px;
	}
	.im-title{
		font-size:30px;
	}
	.im-subtitle{
		font-size:15px;
		line-height:1.82;
	}
	.im-metrics,
	.im-card-grid,
	.im-gallery,
	.im-feature-grid{
		grid-template-columns:1fr;
	}
	.im-section h2{
		font-size:24px;
	}
	.im-section h3{
		font-size:19px;
	}
	.im-action-row{
		flex-direction:column;
	}
	.im-btn{
		width:100%;
	}
}
@media (max-width: 640px){
	.im-shell{
		padding-left:var(--im-gutter-mobile);
		padding-right:var(--im-gutter-mobile);
	}
	.im-topbar-inner{
		min-height:auto;
		padding:10px 0;
	}
	.im-hero{
		padding-top:18px;
	}
	.im-hero-box,
	.im-section,
	.im-cta,
	.im-toc{
		padding:16px 12px;
		border-radius:14px;
		box-shadow:none;
	}
	.im-title{
		font-size:26px;
		line-height:1.18;
	}
	.im-section p,
	.im-section li{
		font-size:15px;
		line-height:1.8;
	}
	.im-table-wrap{
		border-radius:14px;
	}
	.im-table th,
	.im-table td{
		padding:12px;
		font-size:13px;
	}
	.im-card,
	.im-feature,
	.im-listbox,
	.im-metric{
		padding:14px 12px;
		border-radius:14px;
	}
	.im-cover .im-figure-box,
	.im-gallery .im-figure-box{
		padding:8px;
		border-radius:14px;
	}
}
