:root {
	--b8-bg: #07141d;
	--b8-bg-soft: #0d2230;
	--b8-surface: rgba(8, 21, 30, 0.76);
	--b8-surface-strong: rgba(9, 24, 34, 0.92);
	--b8-border: rgba(150, 214, 196, 0.16);
	--b8-text: #f3efe3;
	--b8-muted: #d6e1de;
	--b8-accent: #f1b24a;
	--b8-accent-strong: #ffcf6a;
	--b8-accent-soft: rgba(241, 178, 74, 0.14);
	--b8-mint: #7de0c2;
	--b8-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
	--b8-radius: 24px;
	--b8-radius-sm: 16px;
	--b8-shell: min(1180px, calc(100vw - 32px));
	--b8-title-font: Fraunces, Georgia, serif;
	--b8-body-font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

body.b8-landing {
	background:
		radial-gradient(circle at top left, rgba(125, 224, 194, 0.18), transparent 34%),
		radial-gradient(circle at top right, rgba(241, 178, 74, 0.16), transparent 28%),
		linear-gradient(180deg, #08141d 0%, #0c1c28 42%, #07141d 100%);
	color: var(--b8-text);
	font-family: var(--b8-body-font);
}

.b8-homepage {
	background:
		radial-gradient(circle at top left, rgba(125, 224, 194, 0.18), transparent 34%),
		radial-gradient(circle at top right, rgba(241, 178, 74, 0.16), transparent 28%),
		linear-gradient(180deg, #08141d 0%, #0c1c28 42%, #07141d 100%);
	color: var(--b8-text);
	isolation: isolate;
	min-height: 100vh;
	overflow: clip;
	padding-bottom: 96px;
	position: relative;
}

.b8-homepage::before {
	background: linear-gradient(180deg, rgba(7, 20, 29, 0.12), rgba(7, 20, 29, 0));
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 0;
}

.b8-homepage > * {
	position: relative;
	z-index: 1;
}

.b8-editor-layout,
.b8-editor-snippet {
	padding-top: 24px;
}

.b8-editor-shell {
	display: grid;
	gap: 22px;
}

.b8-editor-header,
.b8-editor-content {
	backdrop-filter: blur(16px);
	background: var(--b8-surface);
	border: 1px solid var(--b8-border);
	border-radius: var(--b8-radius);
	box-shadow: var(--b8-shadow);
	padding: 24px;
}

.b8-editor-content > *:first-child,
.b8-editor-content .wp-block-group > *:first-child {
	margin-top: 0;
}

.b8-editor-content > *:last-child,
.b8-editor-content .wp-block-group > *:last-child {
	margin-bottom: 0;
}

.b8-editor-content h1,
.b8-editor-content h2,
.b8-editor-content h3,
.b8-editor-content h4,
.b8-editor-content h5,
.b8-editor-content h6 {
	margin: 0 0 14px;
}

.b8-editor-content p,
.b8-editor-content li,
.b8-editor-content blockquote,
.b8-editor-content figcaption {
	color: var(--b8-muted);
	line-height: 1.8;
}

.b8-editor-content a {
	color: var(--b8-accent-strong);
}

.b8-editor-content .wp-block-button__link {
	background: linear-gradient(135deg, var(--b8-accent), var(--b8-accent-strong));
	color: #17212b;
	font-weight: 700;
}

.b8-editor-content .wp-block-columns {
	gap: 18px;
}

.b8-editor-content .wp-block-group,
.b8-editor-content .wp-block-cover,
.b8-editor-content .wp-block-column,
.b8-editor-content .wp-block-quote,
.b8-editor-content .wp-block-table,
.b8-editor-content .wp-block-media-text {
	margin-bottom: 20px;
}

.b8-editor-content img {
	border-radius: 18px;
	height: auto;
	max-width: 100%;
}

.b8-shell {
	margin: 0 auto;
	width: var(--b8-shell);
}

.b8-homepage section {
	position: relative;
	padding: 36px 0;
}

.b8-homepage h1,
.b8-homepage h2,
.b8-homepage h3 {
	color: #fff7e3;
	font-family: var(--b8-title-font);
	letter-spacing: -0.03em;
	line-height: 1.05;
	margin: 0;
}

.b8-homepage p,
.b8-homepage li,
.b8-homepage a,
.b8-homepage span,
.b8-homepage strong {
	font-family: var(--b8-body-font);
}

.b8-homepage a:not(.b8-button),
.b8-homepage strong {
	color: #fff6de;
}

.b8-kicker,
.b8-section-kicker,
.b8-link-label,
.b8-panel-label,
.b8-category-meta {
	color: var(--b8-mint);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.b8-section-head {
	align-items: end;
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr;
	margin-bottom: 24px;
}

.b8-section-head h2 {
	font-size: clamp(1.55rem, 2.25vw, 2.35rem);
	line-height: 1.2;
	max-width: none;
	text-wrap: balance;
}

.b8-hero {
	padding-top: 24px;
	padding-bottom: 26px;
}

.b8-hero-grid,
.b8-process-grid,
.b8-guides-grid {
	align-items: stretch;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.b8-hero-copy,
.b8-hero-media,
.b8-process-copy,
.b8-steps,
.b8-guides-main,
.b8-guides-side {
	min-width: 0;
}

.b8-hero-head {
        margin-bottom: 36px;
}

.b8-hero-head h1 {
	font-size: clamp(1.85rem, 3.3vw, 3.75rem);
	line-height: 1.1;
	max-width: 20ch;
        text-wrap: balance;
}

.b8-hero-head .b8-lead {
        max-width: 72ch;
}

.b8-lead,
.b8-process-copy p {
	color: var(--b8-muted);
	font-size: 1.02rem;
	line-height: 1.8;
	margin: 18px 0 0;
	max-width: 62ch;
}

.b8-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.b8-button {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.95rem;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	min-height: 52px;
	padding: 0 24px;
	text-decoration: none;
	transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.b8-button:hover,
.b8-inline-link:hover,
.b8-link-card h3 a:hover,
.b8-category-card h3 a:hover,
.b8-guide-item h3 a:hover,
.b8-side-link:hover strong {
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

.b8-button-primary {
	background: linear-gradient(135deg, var(--b8-accent), var(--b8-accent-strong));
	box-shadow: 0 18px 42px rgba(241, 178, 74, 0.24);
	color: #17212b;
}

.b8-button-secondary {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--b8-border);
	color: #fff7e3;
}

.b8-hero-points {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
}

.b8-hero-points li,
.b8-link-card p,
.b8-category-card p,
.b8-guide-item p,
.b8-side-link span,
.b8-step-card p,
.b8-mini-card span,
.b8-faq-answer p {
	color: var(--b8-muted);
	font-size: 0.96rem;
	line-height: 1.7;
	margin: 0;
}

.b8-lead,
.b8-process-copy p,
.b8-link-card p,
.b8-category-card p,
.b8-guide-item p,
.b8-side-link span,
.b8-step-card p,
.b8-mini-card span,
.b8-faq-answer p {
	color: #dbe5e1;
}

.b8-hero-points li {
	align-items: center;
	display: flex;
	gap: 12px;
}

.b8-hero-points li::before {
	background: linear-gradient(135deg, var(--b8-mint), #d0fff1);
	border-radius: 999px;
	content: "";
	flex: 0 0 10px;
	height: 10px;
	box-shadow: 0 0 0 8px rgba(125, 224, 194, 0.1);
	width: 10px;
}

.b8-mini-grid,
.b8-link-grid,
.b8-category-grid,
.b8-guide-list,
.b8-faq-list,
.b8-steps {
	display: grid;
	gap: 18px;
}

.b8-mini-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 28px;
}

.b8-mini-card,
.b8-link-card,
.b8-category-card,
.b8-guide-item,
.b8-step-card,
.b8-side-card,
.b8-faq-item,
.b8-hero-frame,
.b8-floating-panel {
	backdrop-filter: blur(16px);
	background: var(--b8-surface);
	border: 1px solid var(--b8-border);
	box-shadow: var(--b8-shadow);
	border-radius: var(--b8-radius);
}

.b8-mini-card,
.b8-link-card,
.b8-category-card,
.b8-guide-item,
.b8-step-card,
.b8-side-card,
.b8-faq-item {
	padding: 22px;
}

.b8-mini-card strong,
.b8-step-card h3,
.b8-side-card h2,
.b8-link-card h3,
.b8-category-card h3,
.b8-guide-item h3 {
	font-size: 1.05rem;
	line-height: 1.3;
	margin-bottom: 10px;
}

.b8-link-card h3,
.b8-category-card h3,
.b8-guide-item h3,
.b8-step-card h3,
.b8-hero-chip h3 {
	max-width: none;
	text-wrap: balance;
}

.b8-hero-media {
	align-content: start;
	display: grid;
	gap: 16px;
	padding-top: 14px;
}

.b8-hero-frame {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
		linear-gradient(145deg, rgba(125, 224, 194, 0.18), rgba(10, 22, 32, 0.5));
	overflow: hidden;
	padding: 22px;
	position: relative;
}

.b8-hero-frame::before {
	background: linear-gradient(135deg, rgba(241, 178, 74, 0.2), transparent 45%);
	border-radius: inherit;
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.b8-hero-image {
	border-radius: calc(var(--b8-radius) - 6px);
	display: block;
	height: auto;
	position: relative;
	width: 100%;
	z-index: 1;
}

.b8-floating-panel {
	max-width: 230px;
	padding: 18px 20px;
	position: absolute;
	z-index: 2;
}

.b8-hero-badges {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	left: 14px;
	position: absolute;
	right: 14px;
	top: 14px;
	z-index: 2;
}

.b8-hero-badge {
	backdrop-filter: blur(14px);
	background: rgba(7, 20, 29, 0.72);
	border: 1px solid rgba(150, 214, 196, 0.24);
	border-radius: var(--b8-radius-sm);
	padding: 12px 14px;
}

.b8-hero-badge strong {
	color: #fff6de;
	font-size: 1rem;
	line-height: 1.4;
}

.b8-hero-chip-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.b8-hero-chip {
	backdrop-filter: blur(14px);
	background: var(--b8-surface-strong);
	border: 1px solid var(--b8-border);
	border-radius: var(--b8-radius-sm);
	padding: 14px;
}

.b8-hero-chip h3 {
	font-size: 1rem;
	margin: 0 0 8px;
}

.b8-hero-chip p {
	color: #dbe5e1;
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
}

.b8-panel-top {
	right: -12px;
	top: 12px;
}

.b8-panel-bottom {
	bottom: -12px;
	left: -12px;
}

.b8-floating-panel strong {
	color: #fff7e3;
	font-size: 1rem;
	line-height: 1.45;
}

.b8-link-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.b8-category-grid,
.b8-guide-list,
.b8-steps {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.b8-link-card h3 a,
.b8-category-card h3 a,
.b8-guide-item h3 a,
.b8-side-link,
.b8-inline-link {
	color: #fff7e3;
	text-decoration: none;
	transition: color 220ms ease, transform 220ms ease;
}

.b8-inline-link {
	display: inline-flex;
	font-size: 0.92rem;
	font-weight: 700;
	margin-top: 16px;
}
.b8-hero-grid,.b8-process-grid,
.b8-guides-grid {
	align-items: start;
}

.b8-steps,
.b8-guide-list,
.b8-faq-list {
	grid-template-columns: 1fr;
}

.b8-step-card span {
	color: var(--b8-accent-strong);
	font-size: 2.4rem;
	font-weight: 700;
	display: block;
	margin-bottom: 14px;
}

.b8-side-card {
	background: var(--b8-surface-strong);
	position: sticky;
	top: 110px;
}

.b8-side-link {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: grid;
	gap: 4px;
	padding: 16px 0;
}

.b8-side-link:first-of-type {
	margin-top: 18px;
}

.b8-side-link strong {
	font-size: 1.02rem;
	transition: color 220ms ease;
}

.b8-faq-button {
	align-items: center;
	background: transparent;
	border: 0;
	color: #fff7e3;
	cursor: pointer;
	display: flex;
	font-family: var(--b8-title-font);
	font-size: 1.12rem;
	justify-content: space-between;
	padding: 0;
	text-align: left;
	width: 100%;
}

.b8-faq-icon {
	color: var(--b8-accent-strong);
	font-family: var(--b8-body-font);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	transition: transform 220ms ease;
}

.b8-faq-button.is-open .b8-faq-icon {
	transform: rotate(45deg);
}

.b8-faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 220ms ease, margin-top 220ms ease;
}

.b8-faq-answer > p {
	overflow: hidden;
	padding-right: 10px;
}

.b8-faq-answer.is-open {
	grid-template-rows: 1fr;
	margin-top: 14px;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 420ms ease, transform 420ms ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1080px) {
	.b8-hero-grid,
	.b8-process-grid,
	.b8-guides-grid,
	.b8-link-grid,
	.b8-category-grid,
	.b8-mini-grid {
		grid-template-columns: 1fr;
	}

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

	.b8-guides-grid {
		grid-template-columns: 1fr;
	}

	.b8-hero-chip-grid,
	.b8-hero-badges {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.b8-side-card {
		position: static;
	}
}

@media (max-width: 780px) {
	.b8-homepage section {
		padding: 24px 0;
	}

	.b8-shell {
		width: min(100vw - 20px, 1180px);
	}

	.b8-hero-grid,
	.b8-process-grid,
	.b8-link-grid,
	.b8-category-grid,
	.b8-mini-grid,
	.b8-steps {
		grid-template-columns: 1fr;
	}

	.b8-hero-head h1 {
		font-size: clamp(1.65rem, 6vw, 2.5rem);
		max-width: none;
	}

        .b8-hero-head {
                margin-bottom: 24px;
	}

	.b8-floating-panel {
		max-width: none;
		position: static;
	}

	.b8-hero-media {
		padding-top: 0;
	}

	.b8-hero-badges,
	.b8-hero-chip-grid {
		grid-template-columns: 1fr;
	}

	.b8-hero-frame {
		margin-bottom: 14px;
	}

	.b8-faq-button {
		font-size: 0.98rem;
	}
}