/**
 * BrandKit content blocks.
 *
 * Two layers of variables. The theme's own tokens come first; each block then
 * exposes its own `--bkb-*` properties, which the design panel writes inline on
 * the wrapper. A block left alone follows the theme, a block with an override
 * follows the override, and nothing is hard-coded into the markup.
 */

/* Border-box everywhere inside a block. Without this a full-width button pays
   for its own padding on top of 100% and sticks out past the card it sits in. */
[class*="bkb-"],
[class*="bkb-"]::before,
[class*="bkb-"]::after {
	box-sizing: border-box;
}

.bkb-buttons,
.bkb-hero,
.bkb-features,
.bkb-flist,
.bkb-cats,
.bkb-games,
.bkb-quicknav,
.bkb-steps,
.bkb-proscons,
.bkb-faq,
.bkb-app,
.bkb-list,
.bkb-pay {
	--bkb-brand: var(--wp--preset--color--brand, #0f7a56);
	--bkb-accent: var(--wp--preset--color--accent, #ffc233);
	--bkb-radius: 10px;
	--bkb-radius-sm: 6px;
	--bkb-chip-radius: 999px;
	--bkb-border-w: 1px;
	--bkb-pad: clamp(16px, 2.5vw, 26px);
	--bkb-gap: 12px;

	/* The size scale. Everything inside a block is one of these three, so the
	   base and small sizes set in the theme reach block text too — and a
	   per-block override still wins because it is the first fallback. */
	--bkb-fs-base: var(--bkb-font-size, var(--wp--preset--font-size--medium, 1rem));
	--bkb-fs-small: var(--bkb-font-size, var(--wp--preset--font-size--small, .875rem));
	--bkb-fs-tiny: calc(var(--bkb-fs-small) * .86);
	--bkb-fs-lead: calc(var(--bkb-fs-base) * 1.06);
	--bkb-fs-lg: calc(var(--bkb-fs-base) * 1.16);

	margin-block: 1.8rem;
	color: var(--bkb-fg);
	font-family: var(--bkb-font, inherit);
	font-size: var(--bkb-font-size, inherit);
}

/* ---------- tones ---------- */

.is-tone-light {
	--bkb-bg: var(--wp--preset--color--base, #ffffff);
	--bkb-card: var(--wp--preset--color--surface, #f4f6f5);
	--bkb-fg: var(--wp--preset--color--contrast, #151d19);
	--bkb-muted: var(--wp--preset--color--muted, #5c6862);
	--bkb-line: var(--wp--preset--color--line, #e0e5e2);
	--bkb-shadow: 0 1px 2px rgba(15, 25, 20, .06);
}

.is-tone-dark {
	--bkb-bg: #131b18;
	--bkb-card: #1c2723;
	--bkb-fg: #ffffff;
	--bkb-muted: rgba(255, 255, 255, .72);
	--bkb-line: rgba(255, 255, 255, .13);
	--bkb-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}

.is-tone-plain {
	--bkb-bg: transparent;
	--bkb-card: var(--wp--preset--color--surface, #f4f6f5);
	--bkb-fg: inherit;
	--bkb-muted: var(--wp--preset--color--muted, #5c6862);
	--bkb-line: var(--wp--preset--color--line, #e0e5e2);
	--bkb-shadow: 0 1px 2px rgba(15, 25, 20, .06);
}

/* ---------- shared pieces ---------- */

.bkb-section-title {
	margin: 0 0 1rem;
	font-size: var(--bkb-title-size, var(--bk-h2, clamp(1.25rem, 1.05rem + 0.9vw, 1.6rem)));
	line-height: 1.25;
	font-weight: 700;
	color: var(--bkb-title-color, var(--bkb-fg));
}

.bkb-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.bkb-empty {
	margin: 0;
	padding: 12px 14px;
	border: 1px dashed currentColor;
	border-radius: var(--bkb-radius-sm);
	font-size: var(--bkb-fs-small);
	opacity: .7;
}

.bkb-icon-img {
	display: block;
	max-height: 24px;
	width: auto;
}

/* Links typed into body text. They carry no class of their own, which is what
   keeps this rule away from buttons, chips and cards. */
:where(.bkb-hero, .bkb-features, .bkb-flist, .bkb-steps, .bkb-proscons, .bkb-faq, .bkb-app, .bkb-list, .bkb-cats, .bkb-pay, .bkb-games) a:not([class]) {
	color: var(--bkb-link-color, var(--bkb-brand));
	text-decoration: underline;
	text-underline-offset: 2px;
}

:where(.bkb-hero, .bkb-features, .bkb-flist, .bkb-steps, .bkb-proscons, .bkb-faq, .bkb-app, .bkb-list, .bkb-cats, .bkb-pay, .bkb-games) a:not([class]):hover {
	text-decoration-thickness: 2px;
}

/* ---------- buttons ---------- */

.bkb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	max-width: 100%;
	padding: var(--bkb-btn-pad-y, 0.78em) var(--bkb-btn-pad-x, 1.5em);
	border: var(--bkb-border-w) solid transparent;
	border-radius: var(--bkb-btn-radius, var(--bk-btn-radius, var(--bkb-radius-sm)));
	font-family: inherit;
	font-size: var(--bkb-btn-font-size, var(--bkb-fs-base));
	font-weight: var(--bk-btn-weight, 700);
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
	transition: filter .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}

.bkb-btn__label {
	display: inline-block;
}

.bkb-btn:hover,
.bkb-btn:focus {
	text-decoration: none;
}

/* Sizes */

.bkb-btn--small {
	--bkb-btn-pad-y: 0.55em;
	--bkb-btn-pad-x: 1.1em;
	font-size: var(--bkb-btn-font-size, var(--bkb-fs-small));
}

.bkb-btn--large {
	--bkb-btn-pad-y: 0.95em;
	--bkb-btn-pad-x: 1.9em;
	font-size: var(--bkb-btn-font-size, var(--bkb-fs-lead));
}

/* Presets. Each one reads the theme's button variables first, so a button in
   content matches the ones in the header without anyone copying a colour. */

.bkb-btn--primary {
	background: var(--bkb-btn-bg, var(--bk-btn-primary-bg, var(--bkb-brand)));
	color: var(--bkb-btn-fg, var(--bk-btn-primary-text, #fff));
	border-color: var(--bkb-btn-border, var(--bk-btn-primary-border, transparent));
}

.bkb-btn--primary:hover,
.bkb-btn--primary:focus {
	background: var(--bkb-btn-bg-hover, var(--bk-btn-primary-bg-hover, var(--bkb-brand)));
	color: var(--bkb-btn-fg-hover, var(--bk-btn-primary-text-hover, #fff));
	filter: brightness(1.06);
}

.bkb-btn--secondary {
	background: var(--bkb-btn-bg, var(--bk-btn-secondary-bg, var(--bkb-accent)));
	color: var(--bkb-btn-fg, var(--bk-btn-secondary-text, #17140a));
	border-color: var(--bkb-btn-border, var(--bk-btn-secondary-border, transparent));
}

.bkb-btn--secondary:hover,
.bkb-btn--secondary:focus {
	background: var(--bkb-btn-bg-hover, var(--bk-btn-secondary-bg-hover, var(--bkb-accent)));
	color: var(--bkb-btn-fg-hover, var(--bk-btn-secondary-text-hover, #17140a));
	filter: brightness(1.06);
}

.bkb-btn--outline {
	background: var(--bkb-btn-bg, transparent);
	color: var(--bkb-btn-fg, var(--bk-btn-ghost-text, currentColor));
	border-color: var(--bkb-btn-border, var(--bk-btn-ghost-border, currentColor));
}

.bkb-btn--outline:hover,
.bkb-btn--outline:focus {
	background: var(--bkb-btn-bg-hover, var(--bk-btn-ghost-bg-hover, var(--bkb-brand)));
	color: var(--bkb-btn-fg-hover, var(--bk-btn-ghost-text-hover, #fff));
}

.bkb-btn--plain {
	background: var(--bkb-btn-bg, transparent);
	color: var(--bkb-btn-fg, var(--bkb-brand));
	border-color: transparent;
	padding-inline: 0;
}

.bkb-btn--plain:hover,
.bkb-btn--plain:focus {
	color: var(--bkb-btn-fg-hover, var(--bkb-brand));
	text-decoration: underline;
}

.bkb-btn--block {
	display: flex;
	width: 100%;
}

.bkb-btn.is-disabled {
	opacity: .55;
	cursor: default;
}

.bkb-btn__icon {
	flex: none;
}

/* A row of buttons */

.bkb-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--bkb-gap);
	margin-block: 1.3rem;
}

.bkb-buttons.is-align-center {
	justify-content: center;
}

.bkb-buttons.is-align-right {
	justify-content: flex-end;
}

.bkb-buttons.is-align-full .bkb-btn {
	flex: 1 1 100%;
}

/* On a phone a row of call-to-action buttons stacks. Left to wrap on their own
   the long one fills the line and the short one does not, which reads as a
   mistake; small buttons and plain links keep their natural width. */
@media (max-width: 480px) {
	.bkb-buttons > .bkb-btn:not(.bkb-btn--small):not(.bkb-btn--plain) {
		flex: 1 1 100%;
	}
}

/* ---------- hero ---------- */

.bkb-hero {
	background: var(--bkb-bg);
	border-radius: var(--bkb-radius);
	overflow: hidden;
}

.bkb-hero__inner {
	display: grid;
	gap: 24px;
	align-items: center;
	padding: calc(var(--bkb-pad) * 1.4);
	background-size: cover;
	background-position: center;
}

@media (min-width: 800px) {
	.bkb-hero__inner {
		grid-template-columns: 1.35fr .9fr;
		gap: 40px;
	}

	.bkb-hero.is-single .bkb-hero__inner {
		grid-template-columns: 1fr;
	}
}

.bkb-hero.has-bg .bkb-hero__inner {
	position: relative;
}

.bkb-hero.has-bg .bkb-hero__inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10, 16, 14, .92), rgba(10, 16, 14, .62));
}

.bkb-hero.has-bg .bkb-hero__text,
.bkb-hero.has-bg .bkb-hero__card {
	position: relative;
}

.bkb-hero__title {
	margin: 0 0 .6em;
	font-size: var(--bkb-title-size, var(--bk-h1, clamp(1.7rem, 1.15rem + 2.4vw, 2.7rem)));
	line-height: 1.14;
	letter-spacing: -.02em;
	font-weight: 800;
	color: var(--bkb-fg);
	text-wrap: balance;
}

.bkb-hero__subtitle {
	margin: 0 0 .5em;
	font-size: var(--bkb-fs-lg);
	font-weight: 700;
	color: var(--bkb-fg);
}

.bkb-hero__desc {
	margin: 0;
	color: var(--bkb-muted);
	max-width: 60ch;
}

.bkb-hero__card {
	position: relative;
	margin-top: 22px;
	padding: 30px var(--bkb-pad) var(--bkb-pad);
	background: var(--wp--preset--color--base, #fff);
	color: #151d19;
	border: 2px solid var(--bkb-brand);
	border-radius: var(--bkb-radius);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
	text-align: center;
}

.bkb-hero__badge {
	position: absolute;
	top: -26px;
	left: 50%;
	transform: translateX(-50%);
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--wp--preset--color--base, #fff);
	border: 2px solid var(--bkb-brand);
	color: var(--bkb-brand);
}

.bkb-hero__badge-img {
	max-width: 30px;
	height: auto;
}

.bkb-hero__card-title {
	margin: 0 0 .25em;
	font-size: var(--bkb-fs-lg);
	font-weight: 800;
}

.bkb-hero__card-text {
	margin: 0 0 1em;
	font-size: var(--bkb-fs-lead);
	color: #3d4a44;
}

.bkb-hero__card-note {
	margin: .8em 0 0;
	font-size: var(--bkb-fs-small);
	color: #626f69;
}

/* ---------- category buttons ---------- */

.bkb-cats__grid {
	display: grid;
	gap: var(--bkb-gap);
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.bkb-cats.cols-2 .bkb-cats__grid {
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
	.bkb-cats.cols-3 .bkb-cats__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.bkb-cats.cols-4 .bkb-cats__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.bkb-cat {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 16px;
	min-height: 52px;
	background: var(--bkb-card);
	border: var(--bkb-border-w) solid var(--bkb-line);
	border-radius: var(--bkb-radius);
	color: var(--bkb-fg);
	text-decoration: none;
	transition: border-color .15s ease, background-color .15s ease, transform .15s ease;
}

.bkb-cats.is-size-regular .bkb-cat {
	min-height: 66px;
	padding: 16px 18px;
}

.bkb-cats.is-size-tall .bkb-cat {
	min-height: 84px;
	padding: 20px;
}

a.bkb-cat:hover,
a.bkb-cat:focus {
	border-color: var(--bkb-hover-border, var(--bkb-accent));
	background: var(--bkb-hover-bg, var(--bkb-card));
	text-decoration: none;
	transform: translateY(-1px);
}

.bkb-cat__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.bkb-cat__label {
	font-weight: 700;
	font-size: var(--bkb-fs-base);
	letter-spacing: .02em;
	text-transform: uppercase;
	line-height: 1.2;
}

.bkb-cat__note {
	font-size: var(--bkb-fs-small);
	color: var(--bkb-muted);
	text-transform: none;
	font-weight: 400;
	line-height: 1.3;
}

.bkb-cat__icon {
	flex: none;
	color: var(--bkb-accent);
}

/* ---------- games ---------- */

.bkb-games__grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
	.bkb-games.cols-3 .bkb-games__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.bkb-games.cols-4 .bkb-games__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.bkb-game {
	display: flex;
	flex-direction: column;
	background: var(--bkb-card);
	border: var(--bkb-border-w) solid var(--bkb-line);
	border-radius: var(--bkb-radius);
	overflow: hidden;
	box-shadow: var(--bkb-shadow);
}

.bkb-game__media {
	position: relative;
	aspect-ratio: 1 / 1;
	background: #0d1411;
	overflow: hidden;
}

.bkb-game__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bkb-game__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1d2a25, #101815);
}

.bkb-game__name {
	position: absolute;
	inset: auto 0 0 0;
	padding: 22px 10px 8px;
	background: linear-gradient(transparent, rgba(0, 0, 0, .78));
	color: #fff;
	font-size: var(--bkb-fs-small);
	font-weight: 600;
	text-align: center;
	line-height: 1.25;
}

.bkb-game__badge {
	position: absolute;
	top: 8px;
	left: 8px;
	padding: 3px 8px;
	border-radius: 3px;
	background: var(--bkb-accent);
	color: #17140a;
	font-size: var(--bkb-fs-tiny);
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}

/* The button fills the card exactly: border-box plus a flex centre, so the
   label sits in the middle whatever the padding is. */
.bkb-game__btn {
	width: 100%;
	border-radius: 0;
	justify-content: center;
	letter-spacing: .06em;
	text-transform: uppercase;
}

/* ---------- features: grid and list ---------- */

.bkb-features__grid {
	display: grid;
	grid-template-columns: repeat(var(--bkb-cols, 3), minmax(0, 1fr));
	gap: var(--bkb-gap);
}

.bkb-features.cols-1 { --bkb-cols: 1; }
.bkb-features.cols-2 { --bkb-cols: 2; }
.bkb-features.cols-3 { --bkb-cols: 3; }
.bkb-features.cols-4 { --bkb-cols: 4; }

.bkb-feature {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	padding: var(--bkb-pad);
	background: var(--bkb-card);
	border: var(--bkb-border-w) solid var(--bkb-line);
	border-radius: var(--bkb-radius);
}

/* Without the card the content keeps its rhythm but loses the plate. */
.bkb-features.is-flat .bkb-feature {
	padding: 0;
	background: none;
	border: 0;
}

.bkb-feature__title {
	margin: 0;
	font-size: var(--bkb-fs-lg);
	font-weight: 700;
	line-height: 1.3;
	color: var(--bkb-title-color, var(--bkb-fg));
}

.bkb-feature__text {
	margin: 0;
	color: var(--bkb-muted);
	font-size: var(--bkb-fs-small);
	line-height: 1.55;
}

.bkb-feature__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding-top: 4px;
	color: var(--bkb-link-color, var(--bkb-brand));
	font-size: var(--bkb-fs-small);
	font-weight: 600;
	text-decoration: none;
}

.bkb-feature__link:hover,
.bkb-feature__link:focus {
	text-decoration: underline;
}

.bkb-feature__arrow {
	transition: transform .15s ease;
}

.bkb-feature__link:hover .bkb-feature__arrow {
	transform: translateX(3px);
}

/* The icon plate, shared by both feature blocks. Size follows the icon itself,
   so changing the icon size in the sidebar resizes the plate with it. */
.bkb-feature__icon,
.bkb-flist__icon {
	display: inline-grid;
	place-items: center;
	flex: none;
	padding: var(--bkb-icon-pad, 10px);
	color: var(--bkb-icon-color, var(--bkb-brand));
	background: var(--bkb-icon-bg, var(--bkb-surface-soft, rgba(15, 122, 86, .1)));
	border-radius: var(--bkb-icon-radius, 12px);
	line-height: 0;
}

.is-icon-circle .bkb-feature__icon,
.is-icon-circle .bkb-flist__icon {
	border-radius: var(--bkb-icon-radius, 50%);
	padding: var(--bkb-icon-pad, 12px);
}

.is-icon-square .bkb-feature__icon,
.is-icon-square .bkb-flist__icon {
	border-radius: var(--bkb-icon-radius, 0);
}

.is-icon-plain .bkb-feature__icon,
.is-icon-plain .bkb-flist__icon {
	padding: 0;
	background: none;
	border-radius: 0;
	color: var(--bkb-icon-color, var(--bkb-brand));
}

/* ---------- features as a list ---------- */

.bkb-flist__list {
	display: flex;
	flex-direction: column;
	gap: var(--bkb-gap);
	margin: 0;
	padding: 0;
	list-style: none;
}

.bkb-flist__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: var(--bkb-pad);
	background: var(--bkb-card);
	border: var(--bkb-border-w) solid var(--bkb-line);
	border-radius: var(--bkb-radius);
}

.bkb-flist.is-rows-plain .bkb-flist__item,
.bkb-flist.is-rows-divided .bkb-flist__item {
	padding: 0;
	background: none;
	border: 0;
	border-radius: 0;
}

.bkb-flist.is-rows-divided .bkb-flist__list {
	gap: 0;
}

.bkb-flist.is-rows-divided .bkb-flist__item {
	padding: 16px 0;
	border-bottom: var(--bkb-border-w) solid var(--bkb-line);
}

.bkb-flist.is-rows-divided .bkb-flist__item:last-child {
	border-bottom: 0;
}

.bkb-flist__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.bkb-flist__title {
	margin: 0;
	font-size: var(--bkb-fs-base);
	font-weight: 700;
	line-height: 1.35;
	color: var(--bkb-title-color, var(--bkb-fg));
}

.bkb-flist__text {
	margin: 0;
	color: var(--bkb-muted);
	font-size: var(--bkb-fs-small);
	line-height: 1.5;
}

@media (max-width: 700px) {
	.bkb-features.cols-3 .bkb-features__grid,
	.bkb-features.cols-4 .bkb-features__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Same specificity as the rule above on purpose: a two-column rule written with
   a class prefix would otherwise outrank a bare one and keep phones on two. */
@media (max-width: 480px) {
	.bkb-features.cols-2 .bkb-features__grid,
	.bkb-features.cols-3 .bkb-features__grid,
	.bkb-features.cols-4 .bkb-features__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* ---------- quick navigation ---------- */

/* No card: just a heading and the links. */
.bkb-quicknav {
	display: block;
	background: none;
	border: 0;
	padding: 0;
}

.bkb-quicknav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bkb-quicknav__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 15px;
	border-radius: var(--bkb-chip-radius, 999px);
	color: var(--bkb-fg);
	font-size: var(--bkb-fs-small);
	font-weight: 600;
	text-decoration: none;
	transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}

.bkb-quicknav__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--bkb-accent);
	flex: none;
}

/* Preset 1: filled chips */
.bkb-quicknav.is-preset-pills .bkb-quicknav__link {
	background: var(--bkb-card);
	border: var(--bkb-border-w) solid transparent;
}

.bkb-quicknav.is-preset-pills .bkb-quicknav__link:hover,
.bkb-quicknav.is-preset-pills .bkb-quicknav__link:focus {
	border-color: var(--bkb-hover-border, var(--bkb-accent));
}

/* Preset 2: outlined chips */
.bkb-quicknav.is-preset-outline .bkb-quicknav__link {
	background: none;
	border: var(--bkb-border-w) solid var(--bkb-line);
}

.bkb-quicknav.is-preset-outline .bkb-quicknav__link:hover,
.bkb-quicknav.is-preset-outline .bkb-quicknav__link:focus {
	border-color: var(--bkb-hover-border, var(--bkb-brand));
	color: var(--bkb-hover-color, var(--bkb-brand));
}

/* Preset 3: plain links, no chip at all */
.bkb-quicknav.is-preset-plain .bkb-quicknav__list {
	gap: 6px 22px;
}

.bkb-quicknav.is-preset-plain .bkb-quicknav__link {
	padding: 2px 0;
	border-radius: 0;
	background: none;
	border: 0;
}

.bkb-quicknav.is-preset-plain .bkb-quicknav__link:hover,
.bkb-quicknav.is-preset-plain .bkb-quicknav__link:focus {
	text-decoration: underline;
	color: var(--bkb-hover-color, var(--bkb-brand));
}

/* ---------- steps ---------- */

.bkb-steps__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.bkb-step {
	display: grid;
	grid-template-columns: 38px 1fr;
	gap: 14px;
	padding: 18px;
	background: var(--bkb-card);
	border: var(--bkb-border-w) solid var(--bkb-line);
	border-radius: var(--bkb-radius);
}

.bkb-steps.is-compact .bkb-step {
	padding: 10px 0;
	background: none;
	border: 0;
	border-bottom: 1px solid var(--bkb-line);
	border-radius: 0;
}

.bkb-step__num {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--bkb-brand);
	color: #fff;
	font-weight: 800;
	font-size: var(--bkb-fs-base);
}

.bkb-step__title {
	margin: 0 0 .3em;
	font-size: var(--bkb-fs-lg);
	font-weight: 700;
	color: var(--bkb-fg);
}

.bkb-step__text {
	margin: 0;
	color: var(--bkb-fg);
}

.bkb-step__figure {
	margin: 12px 0 0;
}

.bkb-step__img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 460px;
	border: 1px solid var(--bkb-line);
	border-radius: var(--bkb-radius-sm);
}

/* ---------- pros and cons ---------- */

.bkb-pc__grid {
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.bkb-pc__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.bkb-pc__col {
	padding: 18px 20px;
	background: var(--bkb-card);
	border: var(--bkb-border-w) solid var(--bkb-line);
	border-radius: var(--bkb-radius);
}

.bkb-pc__title {
	margin: 0 0 .7em;
	font-size: var(--bkb-fs-small);
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.bkb-pc__col--pros .bkb-pc__title {
	color: #1f9d63;
}

.bkb-pc__col--cons .bkb-pc__title {
	color: #d4553f;
}

.bkb-pc__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 9px;
}

.bkb-pc__list li {
	display: grid;
	grid-template-columns: 20px 1fr;
	gap: 10px;
	align-items: start;
	font-size: var(--bkb-fs-base);
	line-height: 1.5;
}

.bkb-pc__mark {
	display: block;
	padding-top: 1px;
}

.bkb-pc__col--pros .bkb-pc__mark {
	color: #1f9d63;
}

.bkb-pc__col--cons .bkb-pc__mark {
	color: #d4553f;
}

/* ---------- faq ---------- */

.bkb-faq__list {
	display: grid;
	gap: 10px;
}

.bkb-faq__item {
	background: var(--bkb-card);
	border: var(--bkb-border-w) solid var(--bkb-line);
	border-radius: var(--bkb-radius-sm);
	overflow: hidden;
}

.bkb-faq__q {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px 44px 15px 18px;
	position: relative;
	font-weight: 700;
	font-size: var(--bkb-fs-base);
	line-height: 1.4;
	cursor: pointer;
	list-style: none;
	color: var(--bkb-fg);
}

.bkb-faq__q::-webkit-details-marker {
	display: none;
}

.bkb-faq__q::after {
	content: "";
	position: absolute;
	right: 18px;
	top: 50%;
	width: 9px;
	height: 9px;
	margin-top: -6px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	opacity: .6;
	transition: transform .15s ease;
}

.bkb-faq__item[open] .bkb-faq__q::after {
	transform: rotate(-135deg);
	margin-top: -2px;
}

.bkb-faq__icon {
	flex: none;
	color: var(--bkb-brand);
}

.bkb-faq__a {
	padding: 0 18px 16px;
	color: var(--bkb-muted);
	font-size: var(--bkb-fs-base);
}

.bkb-faq__a p {
	margin: 0 0 .7em;
}

.bkb-faq__a p:last-child {
	margin-bottom: 0;
}

/* ---------- app cta ---------- */

.bkb-app {
	background: var(--bkb-bg);
	border: var(--bkb-border-w) solid var(--bkb-line);
	border-radius: var(--bkb-radius);
	padding: var(--bkb-pad);
}

.bkb-app__inner {
	display: grid;
	gap: 22px;
	align-items: center;
}

@media (min-width: 860px) {
	.bkb-app__inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 32px;
	}
}

.bkb-app__logo {
	display: grid;
	place-items: center;
}

.bkb-app__logo-img {
	max-width: 170px;
	height: auto;
}

.bkb-app__title {
	margin: 0 0 .35em;
	font-size: var(--bkb-title-size, var(--bk-h2, clamp(1.3rem, 1.1rem + 1vw, 1.7rem)));
	font-weight: 800;
	line-height: 1.2;
	color: var(--bkb-fg);
}

.bkb-app__subtitle {
	margin: 0 0 1em;
	color: var(--bkb-muted);
	max-width: 55ch;
}

.bkb-app__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
	margin-bottom: 1.1em;
	padding: 12px 0;
	border-block: 1px solid var(--bkb-line);
}

.bkb-app__stat {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 74px;
}

.bkb-app__stat-value {
	font-size: var(--bkb-fs-lead);
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	color: var(--bkb-fg);
}

.bkb-app__stat-label {
	font-size: var(--bkb-fs-tiny);
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--bkb-muted);
}

.bkb-app__buttons {
	margin-block: 0;
}

.bkb-app__aside {
	display: grid;
	gap: 14px;
	align-content: start;
}

.bkb-app__platforms,
.bkb-app__features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 7px;
	font-size: var(--bkb-fs-small);
}

.bkb-app__platform {
	display: grid;
	grid-template-columns: 20px 1fr 18px;
	align-items: center;
	gap: 9px;
	padding: 7px 12px;
	background: var(--bkb-card);
	border: var(--bkb-border-w) solid var(--bkb-line);
	border-radius: var(--bkb-radius-sm);
	font-weight: 600;
}

.bkb-app__tick {
	color: #2fb56f;
}

.bkb-app__platform.is-off {
	opacity: .55;
}

.bkb-app__platform.is-off .bkb-app__tick {
	color: #d4553f;
}

.bkb-app__features li {
	display: grid;
	grid-template-columns: 8px 1fr;
	gap: 10px;
	align-items: baseline;
	color: var(--bkb-muted);
}

.bkb-app__features li::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--bkb-accent);
}

/* ---------- styled list ---------- */

.bkb-list__items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
	counter-reset: bkb-item;
}

@media (min-width: 700px) {
	.bkb-list.cols-2 .bkb-list__items {
		grid-template-columns: 1fr 1fr;
		gap: 10px 28px;
	}
}

.bkb-list__items li {
	position: relative;
	padding-left: 34px;
	line-height: 1.55;
	counter-increment: bkb-item;
}

.bkb-list__items li::before {
	position: absolute;
	left: 0;
	top: 0;
}

.bkb-list.is-style-numbered .bkb-list__items li::before {
	content: counter(bkb-item);
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--bkb-brand);
	color: #fff;
	font-size: var(--bkb-fs-small);
	font-weight: 700;
	top: 1px;
}

.bkb-list.is-style-check .bkb-list__items li::before {
	content: "";
	width: 20px;
	height: 20px;
	top: 3px;
	background: currentColor;
	color: #1f9d63;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M4.5 12.6l4.8 4.8L19.5 7.2'/></svg>") center / contain no-repeat;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M4.5 12.6l4.8 4.8L19.5 7.2'/></svg>") center / contain no-repeat;
}

.bkb-list.is-style-cross .bkb-list__items li::before {
	content: "";
	width: 18px;
	height: 18px;
	top: 4px;
	background: currentColor;
	color: #d4553f;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round'><path d='M6 6l12 12M18 6L6 18'/></svg>") center / contain no-repeat;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round'><path d='M6 6l12 12M18 6L6 18'/></svg>") center / contain no-repeat;
}

.bkb-list.is-style-dot .bkb-list__items li::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--bkb-accent);
	top: .55em;
	left: 8px;
}

.bkb-list.is-style-arrow .bkb-list__items li::before {
	content: "";
	width: 8px;
	height: 8px;
	top: .5em;
	left: 8px;
	border-right: 2px solid var(--bkb-brand);
	border-bottom: 2px solid var(--bkb-brand);
	transform: rotate(-45deg);
}

/* ---------- payments ---------- */

.bkb-pay__table {
	width: 100%;
	min-width: 520px;
	border-collapse: collapse;
	font-size: var(--bkb-fs-base);
	background: var(--bkb-bg);
}

.bkb-pay__table th,
.bkb-pay__table td {
	text-align: left;
	padding: 12px 16px;
	vertical-align: middle;
}

.bkb-pay__table thead th {
	font-size: var(--bkb-fs-tiny);
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--bkb-muted);
	border-bottom: 1px solid var(--bkb-line);
	white-space: nowrap;
}

.bkb-pay__table tbody tr:nth-child(odd) {
	background: var(--bkb-card);
}

.bkb-pay__table tbody th {
	font-weight: 600;
}

.bkb-pay__method {
	display: flex;
	align-items: center;
	gap: 10px;
}

.bkb-pay__icon {
	flex: none;
	color: var(--bkb-brand);
}

/* CSS-only tabs: real radio inputs, keyboard operable, zero script. */

.bkb-tabs {
	position: relative;
}

.bkb-tabs__radio {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	pointer-events: none;
}

.bkb-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.bkb-tabs__nav label {
	display: inline-flex;
	align-items: center;
	padding: 9px 16px;
	border: var(--bkb-border-w) solid var(--bkb-line);
	border-radius: var(--bkb-chip-radius, 999px);
	background: var(--bkb-card);
	color: var(--bkb-muted);
	font-size: var(--bkb-fs-small);
	font-weight: 700;
	cursor: pointer;
	transition: background-color .15s ease, color .15s ease;
}

.bkb-tabs__panel {
	display: none;
}

.bkb-tabs__radio:nth-of-type(1):checked ~ .bkb-tabs__nav label:nth-of-type(1),
.bkb-tabs__radio:nth-of-type(2):checked ~ .bkb-tabs__nav label:nth-of-type(2) {
	background: var(--bkb-fg);
	border-color: var(--bkb-fg);
	color: var(--bkb-bg);
}

.bkb-tabs__radio:nth-of-type(1):checked ~ .bkb-tabs__panels > .bkb-tabs__panel:nth-of-type(1),
.bkb-tabs__radio:nth-of-type(2):checked ~ .bkb-tabs__panels > .bkb-tabs__panel:nth-of-type(2) {
	display: block;
}

.bkb-tabs__radio:nth-of-type(1):focus-visible ~ .bkb-tabs__nav label:nth-of-type(1),
.bkb-tabs__radio:nth-of-type(2):focus-visible ~ .bkb-tabs__nav label:nth-of-type(2) {
	outline: 2px solid var(--bkb-accent);
	outline-offset: 2px;
}

/* ---------- motion ---------- */

@media (prefers-reduced-motion: reduce) {
	.bkb-cat,
	.bkb-btn,
	.bkb-quicknav__link,
	.bkb-faq__q::after,
	.bkb-tabs__nav label {
		transition: none;
	}
}
