.isg-guide,
.isg-faq-card {
	--isg-navy: #071a34;
	--isg-navy-soft: #0d284d;
	--isg-blue: #096bd8;
	--isg-cyan: #40c9ed;
	--isg-mint: #5edbc8;
	--isg-amber: #ffad3d;
	--isg-ink: #172b46;
	--isg-muted: #60748d;
	--isg-line: #d8e5f2;
	--isg-pale: #eef7ff;
	--isg-white: #ffffff;
	--isg-radius: 22px;
	--isg-shadow: 0 22px 55px rgba(19, 55, 97, 0.11);
	box-sizing: border-box;
	font-family: inherit;
}

.isg-guide *,
.isg-guide *::before,
.isg-guide *::after,
.isg-faq-card *,
.isg-faq-card *::before,
.isg-faq-card *::after {
	box-sizing: inherit;
}

.isg-theme-toggle {
	box-sizing: border-box;
	width: 42px;
	height: 42px;
	display: none;
	align-items: center;
	justify-content: center;
	margin: 0 10px;
	padding: 0;
	color: #1c355a;
	border: 1px solid rgba(61, 116, 223, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: none;
	cursor: pointer;
	font: inherit;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.isg-theme-toggle * {
	box-sizing: inherit;
}

.isg-theme-toggle.isg-theme-toggle--mounted {
	display: inline-flex;
}

.isg-theme-toggle:hover {
	color: #385dff;
	border-color: #385dff;
}

.isg-theme-toggle:focus-visible {
	color: #385dff;
	border-color: #385dff;
	outline: none;
}

.isg-theme-toggle i {
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
}

html[data-ipilot-theme="dark"] body.ipilot-smartbook-guide-page .isg-theme-toggle,
body.ipilot-smartbook-guide-page.bb-dark-theme .isg-theme-toggle {
	color: #f8fafc;
	border-color: #3b4764;
	background: #111827;
}

html[data-ipilot-theme="dark"] body.ipilot-smartbook-guide-page .isg-theme-toggle:hover,
html[data-ipilot-theme="dark"] body.ipilot-smartbook-guide-page .isg-theme-toggle:focus-visible,
body.ipilot-smartbook-guide-page.bb-dark-theme .isg-theme-toggle:hover,
body.ipilot-smartbook-guide-page.bb-dark-theme .isg-theme-toggle:focus-visible {
	color: #fff;
	border-color: #9fb0ff;
	background: #182033;
}

.isg-theme-toggle--fixed {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 99999;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

/* 다른 다크모드 지원 페이지와 동일한 헤더 로고를 첫 페인트부터 사용합니다. */
:is(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot
) body.ipilot-smartbook-guide-page :is(
	.site-header #site-logo,
	.bb-mobile-header .site-branding
) {
	background-image: url("/wp-content/themes/buddyboss-theme-child/assets/img/ipilot-dark-logo-v1-1-original-shape.png?ver=20260428-v1-1") !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: 64px 64px !important;
}

:is(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot
):not(.isg-dark-logo-ready) body.ipilot-smartbook-guide-page :is(
	.site-header #site-logo,
	.bb-mobile-header .site-branding
) img {
	opacity: 0 !important;
	visibility: hidden !important;
}

:is(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot
).isg-dark-logo-ready body.ipilot-smartbook-guide-page :is(
	.site-header #site-logo,
	.bb-mobile-header .site-branding
) {
	background-image: none !important;
}

:is(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot
) body.ipilot-smartbook-guide-page :is(
	.site-header,
	.bb-mobile-header
) img[data-isg-dark-logo-active="true"] {
	width: 64px !important;
	max-width: 64px !important;
	height: 64px !important;
	max-height: 64px !important;
	object-fit: contain !important;
	opacity: 1 !important;
	visibility: visible !important;
	filter: none !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.isg-faq-card {
	width: 100%;
	max-width: 960px;
	margin: 26px auto 30px;
}

.isg-faq-card__link {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	min-height: 94px;
	padding: 18px 22px;
	color: var(--isg-ink);
	text-decoration: none !important;
	border: 1px solid #c5ddf5;
	border-radius: 15px;
	background:
		radial-gradient(circle at 90% -30%, rgba(64, 201, 237, 0.18), transparent 42%),
		linear-gradient(135deg, #f5faff 0%, #eaf4ff 100%);
	box-shadow: 0 9px 26px rgba(20, 76, 136, 0.09);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.isg-faq-card__link:hover {
	color: var(--isg-ink);
	border-color: #8dbfec;
	box-shadow: 0 14px 32px rgba(20, 76, 136, 0.14);
	transform: translateY(-2px);
}

.isg-faq-card__link:focus-visible {
	outline: 3px solid rgba(9, 107, 216, 0.35);
	outline-offset: 4px;
}

.isg-faq-card__icon {
	width: 55px;
	height: 55px;
	display: grid;
	place-items: center;
	color: #fff;
	border-radius: 15px;
	background: linear-gradient(145deg, #1278e4, #0552a9);
	box-shadow: 0 9px 20px rgba(9, 107, 216, 0.25);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.04em;
}

.isg-faq-card__copy {
	min-width: 0;
}

.isg-faq-card__copy strong {
	display: block;
	margin-bottom: 4px;
	color: var(--isg-ink);
	font-size: 18px;
	font-weight: 850;
	letter-spacing: -0.025em;
}

.isg-faq-card__copy > span {
	display: block;
	color: var(--isg-muted);
	font-size: 13px;
	line-height: 1.6;
}

.isg-faq-card__action {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	min-height: 43px;
	padding: 0 17px;
	color: #fff;
	border-radius: 11px;
	background: var(--isg-navy);
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.isg-guide {
	width: min(1180px, calc(100% - 32px));
	margin: 28px auto 80px;
	color: var(--isg-ink);
	font-size: 15px;
	line-height: 1.6;
}

.isg-guide a {
	text-decoration: none;
}

.isg-hero {
	position: relative;
	overflow: hidden;
	min-height: 570px;
	padding: 70px 62px;
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
	gap: 48px;
	align-items: center;
	color: #fff;
	border-radius: 28px;
	background:
		radial-gradient(circle at 86% 18%, rgba(36, 182, 225, 0.23), transparent 34%),
		linear-gradient(118deg, #061a35 0%, #0a2b55 66%, #08476d 100%);
	box-shadow: 0 30px 80px rgba(5, 31, 64, 0.22);
}

.isg-hero::before {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
	background-image:
		linear-gradient(rgba(119, 187, 230, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(119, 187, 230, 0.055) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(90deg, transparent, #000 36%, #000);
}

.isg-hero::after {
	position: absolute;
	top: -36%;
	left: 42%;
	width: 2px;
	height: 165%;
	content: "";
	background: linear-gradient(transparent, rgba(99, 209, 239, 0.2), transparent);
	transform: rotate(26deg);
}

.isg-hero__copy,
.isg-reader-illustration {
	position: relative;
	z-index: 1;
}

.isg-eyebrow {
	margin: 0 0 24px;
	display: flex;
	gap: 9px;
	align-items: center;
	color: #7be4f8;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.isg-eyebrow span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--isg-mint);
	box-shadow: 0 0 0 7px rgba(94, 219, 200, 0.12);
}

.isg-hero h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(46px, 5vw, 70px);
	line-height: 0.99;
	font-weight: 900;
	letter-spacing: -0.065em;
}

.isg-hero h1 em {
	color: var(--isg-cyan);
	font-style: normal;
}

.isg-hero__lead {
	max-width: 510px;
	margin: 28px 0 0;
	color: #c5d6e8;
	font-size: 16px;
	line-height: 1.85;
}

.isg-hero__meta {
	margin: 27px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
}

.isg-hero__meta li {
	padding: 7px 11px;
	color: #d7e7f7;
	border: 1px solid rgba(190, 218, 243, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	font-size: 11px;
}

.isg-hero__actions {
	margin-top: 28px;
	display: flex;
	gap: 17px;
	align-items: center;
}

.isg-button {
	min-height: 47px;
	padding: 0 20px;
	display: inline-flex;
	gap: 9px;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 850;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.isg-button:hover {
	transform: translateY(-2px);
}

.isg-button:focus-visible,
.isg-text-link:focus-visible,
.isg-jump-nav button:focus-visible,
.isg-download-note a:focus-visible {
	outline: 3px solid rgba(64, 201, 237, 0.42);
	outline-offset: 4px;
}

.isg-button--light {
	color: var(--isg-navy) !important;
	background: #fff;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.isg-button--ghost {
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.4);
	background: transparent;
}

.isg-text-link {
	color: #d8e8f8 !important;
	font-size: 13px;
	font-weight: 750;
}

.isg-reader-illustration {
	min-width: 0;
	border: 1px solid rgba(121, 174, 220, 0.3);
	border-radius: 18px;
	background: #07152d;
	box-shadow: 0 35px 60px rgba(0, 0, 0, 0.24);
}

.isg-reader-illustration__top {
	height: 43px;
	padding: 0 14px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	color: #8ea4be;
	border-bottom: 1px solid #213755;
	font-size: 9px;
}

.isg-reader-illustration__top b {
	color: #dce8f5;
	font-size: 10px;
}

.isg-reader-illustration__top > span:last-child {
	text-align: right;
}

.isg-window-dots {
	display: flex;
	gap: 5px;
}

.isg-window-dots i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #4b6380;
}

.isg-reader-illustration__body {
	padding: 16px;
}

.isg-reader-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
	font-size: 10px;
}

.isg-reader-title span {
	color: var(--isg-mint);
	font-size: 8px;
}

.isg-reader-filters {
	display: grid;
	grid-template-columns: 1fr 1fr 1.35fr;
	gap: 7px;
}

.isg-reader-filters > span {
	min-height: 48px;
	padding: 9px;
	color: #90a5be;
	border: 1px solid #29415f;
	border-radius: 7px;
	background: #0c1d37;
	font-size: 8px;
}

.isg-reader-filters b {
	display: block;
	margin-top: 3px;
	color: #fff;
}

.isg-reader-filters .is-active {
	color: #fff;
	border-color: #2587e1;
}

.isg-reader-result {
	margin: 10px 0;
	padding: 7px 9px;
	display: flex;
	justify-content: space-between;
	color: #84ddf5;
	border-radius: 6px;
	background: rgba(36, 182, 225, 0.12);
	font-size: 8px;
}

.isg-reader-columns {
	display: grid;
	grid-template-columns: 34% 1fr;
	gap: 8px;
}

.isg-reader-toc,
.isg-reader-article {
	min-height: 210px;
	padding: 11px;
	border: 1px solid #253d5b;
	border-radius: 9px;
	font-size: 8px;
}

.isg-reader-toc > b,
.isg-reader-article > b {
	font-size: 8px;
}

.isg-reader-toc > span {
	margin-top: 7px;
	padding: 7px;
	display: block;
	color: #8298b2;
	border-radius: 5px;
	background: #10223e;
}

.isg-reader-toc > span.is-active {
	color: #fff;
	border-left: 2px solid #66dcf2;
	background: #17599c;
}

.isg-reader-article > div {
	margin: 9px 0 17px;
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}

.isg-reader-article > div span {
	padding: 5px 6px;
	color: #7e96b0;
	border-radius: 4px;
	background: #10223e;
	font-size: 6px;
}

.isg-reader-article > div span.is-active {
	color: #fff;
	background: #236cc0;
}

.isg-reader-article > strong {
	display: block;
	color: #fff;
	font-size: 12px;
}

.isg-reader-article > p {
	color: #91a5bd;
	font-size: 8px;
}

.isg-callout {
	position: absolute;
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	color: var(--isg-navy);
	border-radius: 50%;
	background: #7ce1f7;
	box-shadow: 0 0 0 7px rgba(124, 225, 247, 0.16);
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
}

.isg-callout--one {
	top: 85px;
	right: 38px;
}

.isg-callout--two {
	top: 158px;
	left: -12px;
}

.isg-callout--three {
	right: 22px;
	bottom: 29px;
	background: var(--isg-amber);
}

.isg-jump-nav {
	position: sticky;
	top: 88px;
	z-index: 10;
	margin: 23px 0 0;
	padding: 10px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 7px;
	border: 1px solid var(--isg-line);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.93);
	box-shadow: 0 12px 35px rgba(22, 55, 96, 0.1);
	backdrop-filter: blur(16px);
}

.isg-jump-nav button {
	appearance: none;
	padding: 10px 8px;
	color: #506780;
	border: 0;
	border-radius: 10px;
	background: transparent;
	cursor: pointer;
	font: inherit;
	text-align: center;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
	transition: color 180ms ease, background-color 180ms ease;
}

.isg-jump-nav button:hover {
	color: var(--isg-blue);
	background: var(--isg-pale);
}

.isg-jump-nav button.is-active,
.isg-jump-nav button[aria-selected="true"] {
	color: #fff;
	background: var(--isg-blue);
	box-shadow: 0 8px 18px rgba(15, 113, 206, 0.2);
}

.isg-tab-panels {
	position: relative;
}

.isg-tab-panels .isg-section {
	padding-top: 56px;
	scroll-margin-top: 150px;
}

.isg-section[hidden] {
	display: none !important;
}

.isg-section {
	padding-top: 100px;
	scroll-margin-top: 80px;
}

.isg-section__header {
	margin-bottom: 28px;
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr) auto;
	gap: 20px;
	align-items: end;
}

.isg-section__number {
	color: #d7e9fa;
	font-size: 52px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: -0.06em;
}

.isg-section__header h2 {
	margin: 0;
	color: var(--isg-ink);
	font-size: clamp(26px, 3vw, 35px);
	line-height: 1.24;
	font-weight: 900;
	letter-spacing: -0.045em;
}

.isg-section__header p {
	margin: 7px 0 0;
	color: var(--isg-muted);
	line-height: 1.7;
}

.isg-time {
	padding: 7px 11px;
	color: var(--isg-blue);
	border-radius: 999px;
	background: #e9f4ff;
	font-size: 11px;
	font-weight: 850;
	white-space: nowrap;
}

.isg-card {
	padding: 26px;
	border: 1px solid var(--isg-line);
	border-radius: var(--isg-radius);
	background: #fff;
	box-shadow: var(--isg-shadow);
}

.isg-filter-demo {
	overflow: hidden;
	border: 1px solid #d8e5f2;
	border-radius: 16px;
	background: #f8fbff;
}

.isg-demo-bar {
	height: 39px;
	padding: 0 13px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #dce9f8;
	background: #0b1730;
	font-size: 10px;
}

.isg-demo-fields {
	padding: 18px 18px 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1.45fr;
	gap: 9px;
}

.isg-demo-fields > span {
	padding: 12px;
	color: #29425f;
	border: 1px solid #ccd9e8;
	border-radius: 9px;
	background: #fff;
	font-size: 11px;
}

.isg-demo-fields > span.is-focus {
	border: 2px solid var(--isg-blue);
}

.isg-demo-fields small {
	margin-bottom: 4px;
	display: block;
	color: #7590aa;
	font-size: 8px;
}

.isg-demo-status {
	padding: 12px 18px 18px;
	display: flex;
	gap: 7px;
	flex-wrap: wrap;
}

.isg-demo-status span {
	padding: 7px 9px;
	color: #49647f;
	border-radius: 7px;
	background: #edf5fe;
	font-size: 9px;
}

.isg-notes {
	margin: 24px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 13px;
	list-style: none;
}

.isg-notes li {
	padding: 16px;
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: 11px;
	border: 1px solid #e1ebf5;
	border-radius: 13px;
	background: #fbfdff;
}

.isg-notes li > span {
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	color: #fff;
	border-radius: 9px;
	background: var(--isg-blue);
	font-size: 11px;
	font-weight: 900;
}

.isg-notes strong {
	display: block;
	margin: 2px 0 3px;
	font-size: 13px;
}

.isg-notes p,
.isg-compare p {
	margin: 0;
	color: var(--isg-muted);
	font-size: 11px;
	line-height: 1.65;
}

.isg-tip {
	margin: 20px 0 0;
	padding: 13px 15px;
	color: #376d68;
	border-radius: 10px;
	background: #e4f9f5;
	font-size: 11px;
	line-height: 1.65;
}

.isg-tip strong {
	margin-right: 5px;
	color: #0e8274;
}

.isg-search-demo {
	display: grid;
	grid-template-columns: 29% 1fr;
	overflow: hidden;
	color: #fff;
	border-radius: 16px;
	background: #07172f;
}

.isg-search-demo aside {
	padding: 20px;
	border-right: 1px solid #1f3653;
	background: #0a1d3a;
}

.isg-search-demo aside > small {
	color: #7f9ab8;
	font-size: 9px;
}

.isg-search-demo aside > strong {
	margin: 5px 0 14px;
	display: block;
	font-size: 20px;
}

.isg-search-demo aside > div {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 10px;
}

.isg-search-demo aside > div span {
	padding: 7px 4px;
	color: #8298b1;
	background: #102643;
	text-align: center;
	font-size: 8px;
}

.isg-search-demo aside > div span.is-active {
	color: #fff;
	background: var(--isg-blue);
}

.isg-search-demo aside > p {
	margin: 7px 0 0;
	padding: 10px;
	color: #8299b2;
	border-radius: 7px;
	background: #102440;
	font-size: 9px;
	line-height: 1.55;
}

.isg-search-demo aside > p.is-active {
	color: #fff;
	border-left: 2px solid #66dff7;
	background: #155495;
}

.isg-search-demo__main {
	padding: 20px;
}

.isg-search-box {
	padding: 12px 14px;
	display: flex;
	justify-content: space-between;
	border: 1px solid #2a82d2;
	border-radius: 8px;
	background: #0e2443;
}

.isg-search-box small {
	color: #71ddf5;
}

.isg-search-chips {
	margin: 12px 0;
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.isg-search-chips span {
	padding: 6px 8px;
	color: #829ab5;
	border-radius: 6px;
	background: #102541;
	font-size: 8px;
}

.isg-search-chips span.is-active {
	color: #fff;
	background: var(--isg-blue);
}

.isg-search-demo__main article {
	padding: 18px;
	border: 1px solid #223d5f;
	border-radius: 11px;
	background: #0b1d36;
}

.isg-search-demo__main article > div {
	margin-bottom: 12px;
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.isg-search-demo__main article > div span {
	padding: 5px 7px;
	color: #9eddf0;
	border-radius: 5px;
	background: #123553;
	font-size: 8px;
}

.isg-search-demo__main article > strong {
	display: block;
	font-size: 17px;
}

.isg-search-demo__main article p {
	margin-bottom: 0;
	color: #92a7bf;
	font-size: 10px;
	line-height: 1.75;
}

.isg-search-demo mark {
	padding: 2px 3px;
	color: #092544;
	background: #78e1ef;
}

/* 라이트 테마에서는 가이드 속 SmartBook 화면 예시도 실제 밝은 UI로 전환합니다. */
html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-reader-illustration {
	color: #183251;
	border-color: #bfd5e8;
	background: #f8fbff;
	box-shadow: 0 28px 55px rgba(15, 54, 89, 0.2);
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-reader-illustration__top {
	color: #6e849b;
	border-bottom-color: #d5e3ef;
	background: #eef5fb;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-reader-illustration__top b,
html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-reader-title,
html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-reader-filters b,
html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-reader-toc > b,
html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-reader-article > b,
html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-reader-article > strong {
	color: #172b46;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-window-dots i {
	background: #a8bed2;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-reader-title span {
	color: #0d8d80;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-reader-filters > span {
	color: #657d96;
	border-color: #cbddeb;
	background: #fff;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-reader-filters .is-active {
	color: #0b5fae;
	border-color: #1684e4;
	background: #edf7ff;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-reader-result {
	color: #147f90;
	background: #dcf6f8;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page :is(.isg-reader-toc, .isg-reader-article) {
	border-color: #cbddea;
	background: #fff;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-reader-toc > span {
	color: #657d96;
	background: #edf4fa;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-reader-toc > span.is-active {
	color: #0d5698;
	border-left-color: #1684e4;
	background: #dceeff;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-reader-article > div span {
	color: #607990;
	background: #eaf2f8;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-reader-article > div span.is-active {
	color: #fff;
	background: #1676cf;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-reader-article > p {
	color: #60748d;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-demo-bar {
	color: #60748d;
	border-bottom: 1px solid #d8e5f2;
	background: #edf5fc;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-demo-bar b {
	color: #172b46;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-search-demo {
	color: #172b46;
	border: 1px solid #c9ddeb;
	background: #f7fbff;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-search-demo aside {
	border-right-color: #cbddea;
	background: #eef5fb;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-search-demo aside > small {
	color: #6d849b;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-search-demo aside > div span {
	color: #617990;
	background: #dfeaf4;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-search-demo aside > div span.is-active {
	color: #fff;
	background: #1676cf;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-search-demo aside > p {
	color: #607990;
	background: #fff;
	box-shadow: inset 0 0 0 1px #d7e5f0;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-search-demo aside > p.is-active {
	color: #0d5698;
	border-left-color: #1684e4;
	background: #dceeff;
	box-shadow: none;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-search-box {
	color: #183251;
	border-color: #1684e4;
	background: #fff;
	box-shadow: 0 7px 18px rgba(18, 88, 148, 0.08);
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-search-box small {
	color: #0e8d9f;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-search-chips span {
	color: #607990;
	background: #e5eef6;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-search-chips span.is-active {
	color: #fff;
	background: #1676cf;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-search-demo__main article {
	border-color: #cbddea;
	background: #fff;
	box-shadow: 0 12px 28px rgba(15, 54, 89, 0.08);
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-search-demo__main article > div span {
	color: #17627d;
	background: #dff2f8;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-search-demo__main article p {
	color: #60748d;
}

/* 라이트 테마의 소개 무대도 밝은 항공 차트처럼 전환해 본문과 한 화면으로 이어지게 합니다. */
html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-hero {
	color: #142d49;
	border: 1px solid #cbddeb;
	background:
		radial-gradient(circle at 86% 16%, rgba(52, 191, 218, 0.19), transparent 34%),
		linear-gradient(118deg, #f9fcff 0%, #edf7ff 61%, #e2f5f7 100%);
	box-shadow: 0 30px 75px rgba(25, 78, 121, 0.16);
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-hero::before {
	background-image:
		linear-gradient(rgba(46, 119, 168, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(46, 119, 168, 0.08) 1px, transparent 1px);
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-hero::after {
	background: linear-gradient(transparent, rgba(20, 144, 187, 0.18), transparent);
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-eyebrow {
	color: #0d7188;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-hero h1 {
	color: #102840;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-hero h1 em {
	color: #087fb8;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-hero__lead {
	color: #4f6881;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-hero__meta li {
	color: #3f5d78;
	border-color: #bfd4e5;
	background: rgba(255, 255, 255, 0.72);
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-hero .isg-button--light {
	color: #fff !important;
	border-color: #0f6fc5;
	background: linear-gradient(145deg, #1685e4, #0b63b6);
	box-shadow: 0 12px 27px rgba(18, 107, 184, 0.25);
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-hero .isg-button--ghost {
	color: #183d5d !important;
	border-color: #a9c5da;
	background: rgba(255, 255, 255, 0.5);
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-hero .isg-text-link {
	color: #244f72 !important;
}

/* PDF 흐름은 밝은 작업 보드와 단계 카드로 표현하고, 다크 테마의 원래 흐름은 유지합니다. */
html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-pdf-flow {
	color: #142d49;
	border: 1px solid #c6dbea;
	background:
		linear-gradient(90deg, rgba(54, 126, 174, 0.08) 1px, transparent 1px),
		radial-gradient(circle at 92% 16%, rgba(72, 205, 216, 0.17), transparent 30%),
		linear-gradient(135deg, #f9fcff, #e7f4fd);
	background-size: 46px 46px, auto, auto;
	box-shadow: 0 24px 55px rgba(20, 73, 113, 0.14);
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-pdf-flow > div {
	border-color: #c6dbea;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 10px 24px rgba(24, 79, 119, 0.07);
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-pdf-flow > div:last-child {
	border-color: #8fd5df;
	background: linear-gradient(145deg, #e3f8f7, #d7f1fb);
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-pdf-flow span {
	color: #fff;
	background: linear-gradient(145deg, #1787d9, #12a7b4);
	box-shadow: 0 7px 16px rgba(17, 132, 177, 0.22);
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-pdf-flow strong {
	color: #142d49;
}

html[data-ipilot-theme="light"] body.ipilot-smartbook-guide-page .isg-pdf-flow p {
	color: #58718a;
}

.isg-compare {
	margin-top: 18px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.isg-compare > div {
	padding: 16px;
	border: 1px solid #e0ebf5;
	border-radius: 12px;
}

.isg-compare strong {
	display: block;
	margin-bottom: 5px;
	font-size: 13px;
}

.isg-mode-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--isg-line);
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--isg-shadow);
}

.isg-mode-grid article {
	min-height: 210px;
	padding: 27px;
	border-right: 1px solid var(--isg-line);
}

.isg-mode-grid article:last-child {
	border-right: 0;
}

.isg-mode-grid article > span {
	width: 33px;
	height: 33px;
	display: grid;
	place-items: center;
	color: #fff;
	border-radius: 9px;
	background: var(--isg-blue);
	font-size: 11px;
	font-weight: 900;
}

.isg-mode-grid article:nth-child(2) > span {
	background: #197c91;
}

.isg-mode-grid article:nth-child(3) > span {
	background: #5b557f;
}

.isg-mode-grid article:nth-child(4) > span {
	color: #713f00;
	background: var(--isg-amber);
}

.isg-mode-grid h3 {
	margin: 24px 0 8px;
	color: var(--isg-ink);
	font-size: 18px;
}

.isg-mode-grid p {
	margin: 0;
	color: var(--isg-muted);
	font-size: 12px;
	line-height: 1.75;
}

.isg-tabs-guide {
	margin-top: 15px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.isg-tabs-guide > div {
	padding: 17px 19px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: center;
	border: 1px solid var(--isg-line);
	border-radius: 12px;
	background: #f8fbff;
}

.isg-tabs-guide span {
	padding: 6px 9px;
	color: #fff;
	border-radius: 7px;
	background: var(--isg-navy-soft);
	font-size: 10px;
	font-weight: 800;
}

.isg-tabs-guide strong {
	font-size: 12px;
}

.isg-pdf-flow {
	padding: 28px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	color: #fff;
	border-radius: var(--isg-radius);
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(135deg, #071b36, #0a315b);
	background-size: 46px 46px, auto;
	box-shadow: var(--isg-shadow);
}

.isg-pdf-flow > div {
	min-height: 180px;
	padding: 18px;
	border: 1px solid rgba(158, 201, 235, 0.15);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.045);
}

.isg-pdf-flow > div:last-child {
	background: rgba(23, 164, 185, 0.23);
}

.isg-pdf-flow span {
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	color: #072241;
	border-radius: 50%;
	background: #74dff3;
	font-size: 10px;
	font-weight: 900;
}

.isg-pdf-flow strong {
	margin: 18px 0 6px;
	display: block;
	font-size: 13px;
}

.isg-pdf-flow p {
	margin: 0;
	color: #a9bed4;
	font-size: 10px;
	line-height: 1.7;
}

.isg-download-note {
	margin-top: -1px;
	padding: 18px 20px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 14px;
	align-items: center;
	border: 1px solid var(--isg-line);
	border-radius: 0 0 16px 16px;
	background: #fff;
	box-shadow: 0 15px 35px rgba(22, 55, 96, 0.08);
}

.isg-download-note > span {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	color: #fff;
	border-radius: 50%;
	background: #28a8da;
	font-weight: 900;
}

.isg-download-note strong {
	display: block;
	font-size: 13px;
}

.isg-download-note p {
	margin: 3px 0 0;
	color: var(--isg-muted);
	font-size: 11px;
	line-height: 1.65;
}

.isg-download-note a {
	padding: 10px 13px;
	color: #fff !important;
	border-radius: 9px;
	background: var(--isg-navy);
	font-size: 11px;
	font-weight: 800;
	white-space: nowrap;
}

.isg-troubles {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.isg-troubles details {
	padding: 0;
	border: 1px solid var(--isg-line);
	border-radius: 13px;
	background: #fff;
}

.isg-troubles summary {
	padding: 17px 18px;
	color: var(--isg-ink);
	cursor: pointer;
	font-size: 13px;
	font-weight: 850;
	list-style: none;
}

.isg-troubles summary::-webkit-details-marker {
	display: none;
}

.isg-troubles summary::before {
	margin-right: 9px;
	content: "▸";
	color: var(--isg-blue);
}

.isg-troubles details[open] summary::before {
	content: "▾";
}

.isg-troubles details p {
	margin: 0;
	padding: 0 18px 18px 38px;
	color: var(--isg-muted);
	font-size: 12px;
	line-height: 1.7;
}

.isg-final-cta {
	margin-top: 84px;
	padding: 35px 38px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 24px;
	align-items: center;
	color: #fff;
	border-radius: 20px;
	background: linear-gradient(100deg, #0870dc, #18b6d2);
	box-shadow: 0 22px 45px rgba(9, 107, 216, 0.2);
}

.isg-final-cta h2 {
	margin: 0 0 5px;
	color: #fff;
	font-size: 25px;
	font-weight: 900;
	letter-spacing: -0.035em;
}

.isg-final-cta p {
	margin: 0;
	color: #d9f2fa;
	font-size: 13px;
}

.isg-final-cta > div:last-child {
	display: flex;
	gap: 10px;
}

/* 통합 테마 허용 목록 밖에서도 가이드 페이지의 바깥 셸까지 같은 모드로 맞춥니다. */
:is(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot
) body.ipilot-smartbook-guide-page,
body.ipilot-smartbook-guide-page:is(
	.bb-dark-theme,
	.dark-theme,
	.dark-mode,
	.dark,
	.is-dark,
	.ipilot-dark-active
) {
	color: #edf4fc;
	background: #081321;
	color-scheme: dark;
}

:is(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot
) body.ipilot-smartbook-guide-page :is(#page, .site, .site-content, .site-content > .container),
body.ipilot-smartbook-guide-page:is(
	.bb-dark-theme,
	.dark-theme,
	.dark-mode,
	.dark,
	.is-dark,
	.ipilot-dark-active
) :is(#page, .site, .site-content, .site-content > .container) {
	background: #081321;
}

:is(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot
) body.ipilot-smartbook-guide-page #masthead.site-header--bb,
body.ipilot-smartbook-guide-page:is(
	.bb-dark-theme,
	.dark-theme,
	.dark-mode,
	.dark,
	.is-dark,
	.ipilot-dark-active
) #masthead.site-header--bb {
	border-bottom-color: #243950;
	background: #0d1929;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

:is(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot
) body.ipilot-smartbook-guide-page #masthead :is(a, i, .site-title),
body.ipilot-smartbook-guide-page:is(
	.bb-dark-theme,
	.dark-theme,
	.dark-mode,
	.dark,
	.is-dark,
	.ipilot-dark-active
) #masthead :is(a, i, .site-title) {
	color: #c5d4e5;
}

:is(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot
) body.ipilot-smartbook-guide-page #masthead .button.signup,
body.ipilot-smartbook-guide-page:is(
	.bb-dark-theme,
	.dark-theme,
	.dark-mode,
	.dark,
	.is-dark,
	.ipilot-dark-active
) #masthead .button.signup {
	color: #fff;
}

:is(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot
) body.ipilot-smartbook-guide-page :is(.buddypanel, .bb-buddypanel),
body.ipilot-smartbook-guide-page:is(
	.bb-dark-theme,
	.dark-theme,
	.dark-mode,
	.dark,
	.is-dark,
	.ipilot-dark-active
) :is(.buddypanel, .bb-buddypanel) {
	border-color: #243950;
	background: #0d1929;
}

:is(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot
) body.ipilot-smartbook-guide-page :is(.buddypanel, .bb-buddypanel) :is(a, i),
body.ipilot-smartbook-guide-page:is(
	.bb-dark-theme,
	.dark-theme,
	.dark-mode,
	.dark,
	.is-dark,
	.ipilot-dark-active
) :is(.buddypanel, .bb-buddypanel) :is(a, i) {
	color: #aebfd2;
}

:is(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot
) body.ipilot-smartbook-guide-page .buddypanel :is(.panel-head, .bb-menu-item),
body.ipilot-smartbook-guide-page:is(
	.bb-dark-theme,
	.dark-theme,
	.dark-mode,
	.dark,
	.is-dark,
	.ipilot-dark-active
) .buddypanel :is(.panel-head, .bb-menu-item) {
	border-color: #2a4059;
	background: #13243a;
}

:is(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot
) body.ipilot-smartbook-guide-page .buddypanel .bb-menu-item:hover,
body.ipilot-smartbook-guide-page:is(
	.bb-dark-theme,
	.dark-theme,
	.dark-mode,
	.dark,
	.is-dark,
	.ipilot-dark-active
) .buddypanel .bb-menu-item:hover {
	background: #1a314d;
}

:is(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot
) body.ipilot-smartbook-guide-page .entry-header .entry-title,
body.ipilot-smartbook-guide-page:is(
	.bb-dark-theme,
	.dark-theme,
	.dark-mode,
	.dark,
	.is-dark,
	.ipilot-dark-active
) .entry-header .entry-title {
	color: #edf4fc;
}

/* 사이트의 명시적 테마 상태를 따릅니다. OS 색상 설정은 테마 선택을 덮어쓰지 않습니다. */
:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-guide,
:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-faq-card {
	--isg-navy: #08182d;
	--isg-navy-soft: #163a62;
	--isg-blue: #4aa7ff;
	--isg-cyan: #65d9f4;
	--isg-mint: #68dfcc;
	--isg-ink: #edf4fc;
	--isg-muted: #a9bad0;
	--isg-line: #2d4562;
	--isg-pale: #17304d;
	--isg-white: #f7fbff;
	--isg-shadow: 0 22px 55px rgba(0, 0, 0, 0.3);
	color: var(--isg-ink);
	color-scheme: dark;
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-faq-card__link {
	color: var(--isg-ink);
	border-color: #315576;
	background:
		radial-gradient(circle at 90% -30%, rgba(64, 201, 237, 0.18), transparent 42%),
		linear-gradient(135deg, #10243c 0%, #132d49 100%);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-faq-card__link:hover {
	color: var(--isg-ink);
	border-color: #4d83ad;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-jump-nav {
	border-color: var(--isg-line);
	background: rgba(8, 22, 39, 0.94);
	box-shadow: 0 14px 38px rgba(0, 0, 0, 0.3);
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-jump-nav button {
	color: #aec0d5;
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-jump-nav button:hover {
	color: #d9eaff;
	background: #173554;
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-section__number {
	color: #294967;
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-time {
	color: #83c5ff;
	background: #193754;
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) :is(.isg-card, .isg-mode-grid, .isg-download-note, .isg-troubles details) {
	border-color: var(--isg-line);
	background: #101f33;
	box-shadow: var(--isg-shadow);
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-filter-demo {
	border-color: #2b4564;
	background: #0c1a2d;
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-demo-fields > span {
	color: #d8e6f5;
	border-color: #36516e;
	background: #152a43;
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-demo-fields small {
	color: #9aafc7;
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-demo-status span {
	color: #b8d2ec;
	background: #193553;
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-notes li {
	border-color: #2c4562;
	background: #14263c;
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-tip {
	color: #b8e7df;
	background: #123936;
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-tip strong {
	color: #6be1cf;
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-compare > div {
	border-color: #2d4764;
	background: #14263c;
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-tabs-guide > div {
	border-color: var(--isg-line);
	background: #14263c;
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-tabs-guide span {
	background: #1f4b78;
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-download-note {
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-download-note a {
	background: #2369aa;
}

:where(
	html[data-ipilot-theme="dark"],
	html.ipilot-theme-dark-boot,
	body.bb-dark-theme,
	body.dark-theme,
	body.dark-mode,
	body.dark,
	body.is-dark,
	body.ipilot-dark-active
) .isg-troubles summary {
	color: var(--isg-ink);
}

@media (prefers-reduced-motion: no-preference) {
	.isg-guide,
	.isg-faq-card,
	.isg-card,
	.isg-mode-grid,
	.isg-download-note,
	.isg-troubles details {
		transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
	}

	.isg-section.is-active {
		animation: isg-panel-enter 200ms ease-out both;
	}
}

@keyframes isg-panel-enter {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 980px) {
	.isg-hero {
		grid-template-columns: 1fr;
		padding: 58px 46px;
	}

	.isg-reader-illustration {
		max-width: 700px;
	}

	.isg-notes {
		grid-template-columns: 1fr;
	}

	.isg-mode-grid,
	.isg-pdf-flow {
		grid-template-columns: 1fr 1fr;
	}

	.isg-mode-grid article:nth-child(2) {
		border-right: 0;
	}

	.isg-mode-grid article:nth-child(-n + 2) {
		border-bottom: 1px solid var(--isg-line);
	}

	.isg-pdf-flow > div:last-child {
		grid-column: 1 / -1;
	}

	.isg-final-cta {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.isg-theme-toggle {
		width: 38px;
		height: 38px;
		margin: 0 6px;
	}

	body.ipilot-smartbook-guide-page .bb-mobile-header {
		position: relative;
	}

	body.ipilot-smartbook-guide-page .bb-mobile-header .isg-theme-toggle--mobile {
		position: absolute;
		top: 50%;
		right: 16px;
		z-index: 30;
		width: 40px;
		height: 40px;
		margin: 0;
		transform: translateY(-50%);
		box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
	}

	body.ipilot-smartbook-guide-page .bb-mobile-header .isg-theme-toggle--mobile i {
		font-size: 21px;
		line-height: 1;
	}

	.isg-faq-card {
		margin: 20px auto 24px;
	}

	.isg-faq-card__link {
		grid-template-columns: auto 1fr;
		padding: 16px;
	}

	.isg-faq-card__copy strong {
		font-size: 16px;
	}

	.isg-faq-card__copy > span {
		font-size: 12px;
	}

	.isg-faq-card__action {
		grid-column: 1 / -1;
		width: 100%;
	}

	.isg-guide {
		width: min(100% - 24px, 1180px);
		margin-top: 16px;
	}

	.isg-hero {
		min-height: 0;
		padding: 38px 20px 24px;
		gap: 35px;
		border-radius: 20px;
	}

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

	.isg-hero__lead {
		font-size: 14px;
	}

	.isg-hero__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.isg-text-link {
		text-align: center;
	}

	.isg-reader-filters {
		grid-template-columns: 1fr 1fr;
	}

	.isg-reader-filters > span:last-child {
		grid-column: 1 / -1;
	}

	.isg-reader-columns {
		grid-template-columns: 38% 1fr;
	}

	.isg-reader-toc,
	.isg-reader-article {
		min-height: 185px;
	}

	.isg-callout--one {
		right: 25px;
	}

	.isg-jump-nav {
		top: 72px;
		overflow-x: auto;
		grid-template-columns: repeat(5, minmax(116px, 1fr));
		scrollbar-width: thin;
	}

	.isg-section {
		padding-top: 76px;
		scroll-margin-top: 70px;
	}

	.isg-tab-panels .isg-section {
		padding-top: 40px;
		scroll-margin-top: 130px;
	}

	.isg-section__header {
		grid-template-columns: 54px 1fr;
		gap: 13px;
		align-items: start;
	}

	.isg-section__number {
		font-size: 38px;
	}

	.isg-section__header h2 {
		font-size: 25px;
	}

	.isg-section__header p {
		font-size: 13px;
	}

	.isg-time {
		grid-column: 2;
		width: max-content;
	}

	.isg-card {
		padding: 15px;
		border-radius: 16px;
	}

	.isg-demo-fields,
	.isg-compare,
	.isg-tabs-guide {
		grid-template-columns: 1fr;
	}

	.isg-demo-fields > span {
		min-height: 54px;
	}

	.isg-search-demo {
		grid-template-columns: 1fr;
	}

	.isg-search-demo aside {
		border-right: 0;
		border-bottom: 1px solid #1f3653;
	}

	.isg-mode-grid,
	.isg-pdf-flow {
		grid-template-columns: 1fr;
	}

	.isg-mode-grid article {
		min-height: 0;
		border-right: 0;
		border-bottom: 1px solid var(--isg-line);
	}

	.isg-mode-grid article:last-child {
		border-bottom: 0;
	}

	.isg-pdf-flow {
		padding: 18px;
	}

	.isg-pdf-flow > div {
		min-height: 0;
	}

	.isg-pdf-flow > div:last-child {
		grid-column: auto;
	}

	.isg-download-note {
		grid-template-columns: auto 1fr;
	}

	.isg-download-note a {
		grid-column: 1 / -1;
		text-align: center;
	}

	.isg-troubles {
		grid-template-columns: 1fr;
	}

	.isg-final-cta {
		margin-top: 66px;
		padding: 28px 22px;
	}

	.isg-final-cta > div:last-child {
		align-items: stretch;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	.isg-guide *,
	.isg-faq-card *,
	.isg-theme-toggle * {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
