:root {
	--bom-ink: #17202a;
	--bom-muted: #5f6872;
	--bom-paper: #fbfaf6;
	--bom-surface: #ffffff;
	--bom-line: #d9d6cb;
	--bom-blue: #22577a;
	--bom-red: #b83b3b;
	--bom-gold: #d7a83f;
	--bom-sage: #5d7f71;
	--bom-max: 1180px;
	--bom-radius: 8px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--bom-paper);
	color: var(--bom-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
	text-underline-offset: 0.2em;
}

.bestof-site-main {
	min-height: 60vh;
}

.bom-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	overflow: visible;
	padding: 14px max(22px, calc((100vw - var(--bom-max)) / 2));
	background: rgba(251, 250, 246, 0.92);
	border-bottom: 1px solid rgba(23, 32, 42, 0.1);
	backdrop-filter: blur(16px);
}

.bom-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--bom-ink);
	font-weight: 850;
	text-decoration: none;
	white-space: nowrap;
}

.bom-brand__mark {
	display: block;
	width: 58px;
	height: 58px;
	object-fit: contain;
	border-radius: 50%;
	filter: drop-shadow(0 4px 10px rgba(23, 32, 42, 0.2));
}

.bom-brand__text {
	font-size: 1rem;
}

.bom-nav,
.bom-footer__nav {
	display: flex;
	align-items: center;
	gap: 20px;
}

.bom-nav a,
.bom-footer__nav a {
	color: var(--bom-ink);
	font-size: 0.94rem;
	font-weight: 700;
	text-decoration: none;
}

.bom-nav a:hover,
.bom-footer__nav a:hover {
	color: var(--bom-red);
}

.bom-header .wp-block-shortcode {
	margin: 0;
}

.bom-header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.bom-header-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	border-radius: 999px;
	color: var(--bom-ink);
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.bom-header-actions svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.bom-header-actions__account {
	gap: 7px;
	padding: 0 12px;
	background: rgba(34, 87, 122, 0.1);
}

.bom-header-actions__auth {
	padding: 0 12px;
}

.bom-header-actions__auth[data-bom-modal-open] {
	background: transparent;
	color: var(--bom-ink);
	box-shadow: none;
}

.bom-mini-cart {
	gap: 7px;
	padding: 0 10px 0 12px;
	background: var(--bom-blue);
	color: #fff !important;
	box-shadow: 0 10px 22px rgba(34, 87, 122, 0.18);
}

.bom-mini-cart__count {
	display: grid;
	place-items: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--bom-gold);
	color: var(--bom-ink);
	font-size: 0.78rem;
	line-height: 1;
}

.bom-mini-cart__subtotal {
	padding-left: 2px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.78rem;
}

.bom-mini-cart-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding-bottom: 12px;
	margin-bottom: -12px;
}

.bom-mini-cart-panel {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 50;
	width: min(340px, calc(100vw - 44px));
	padding: 16px;
	border: 1px solid rgba(23, 32, 42, 0.12);
	border-radius: var(--bom-radius);
	background: var(--bom-surface);
	box-shadow: 0 22px 54px rgba(23, 32, 42, 0.22);
	color: var(--bom-ink);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-4px);
	transition: opacity 140ms ease, transform 140ms ease;
}

.bom-mini-cart-wrap:hover .bom-mini-cart-panel,
.bom-mini-cart-wrap:focus-within .bom-mini-cart-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.bom-mini-cart-panel::before {
	position: absolute;
	right: 34px;
	bottom: 100%;
	width: 18px;
	height: 18px;
	background: var(--bom-surface);
	border-top: 1px solid rgba(23, 32, 42, 0.12);
	border-left: 1px solid rgba(23, 32, 42, 0.12);
	content: "";
	transform: translateY(9px) rotate(45deg);
}

.bom-mini-cart-panel__empty {
	margin: 0;
	color: var(--bom-muted);
	font-size: 0.94rem;
}

.bom-mini-cart-panel__items {
	display: grid;
	gap: 12px;
	max-height: 280px;
	margin: 0;
	padding: 0;
	overflow-y: auto;
	list-style: none;
}

.bom-mini-cart-panel__items li {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2px 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--bom-line);
}

.bom-mini-cart-panel__name {
	font-weight: 850;
}

.bom-mini-cart-panel__meta {
	color: var(--bom-muted);
	font-size: 0.82rem;
}

.bom-mini-cart-panel__price {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: center;
	font-weight: 850;
}

.bom-mini-cart-panel__total {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid var(--bom-line);
	color: var(--bom-muted);
}

.bom-mini-cart-panel__total strong {
	color: var(--bom-ink);
}

.bom-mini-cart-panel__actions {
	display: flex;
	gap: 8px;
	margin-top: 14px;
}

.bom-mini-cart-panel__actions a {
	flex: 1 1 0;
	min-height: 40px;
	padding: 0 12px;
	border: 1px solid var(--bom-line);
	border-radius: 4px;
	background: #f7f4eb;
	color: var(--bom-ink);
	font-size: 0.84rem;
}

.bom-mini-cart-panel__actions a:last-child {
	border-color: var(--bom-blue);
	background: var(--bom-blue);
	color: #fff;
}

.bom-hero {
	position: relative;
	min-height: min(650px, calc(100vh - 120px));
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--bom-ink);
}

.bom-hero__image,
.bom-hero__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.bom-hero__image {
	object-fit: cover;
	object-position: center;
}

.bom-hero__shade {
	background:
		linear-gradient(90deg, rgba(23, 32, 42, 0.92) 0%, rgba(23, 32, 42, 0.74) 36%, rgba(23, 32, 42, 0.22) 68%, rgba(23, 32, 42, 0.08) 100%),
		linear-gradient(0deg, rgba(23, 32, 42, 0.34), rgba(23, 32, 42, 0.02));
}

.bom-hero__content {
	position: relative;
	z-index: 1;
	width: min(100%, var(--bom-max));
	margin: 0 auto;
	padding: 46px 22px 58px;
	color: var(--bom-surface);
}

.bom-hero h1 {
	max-width: 900px;
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.65rem, 5.6vw, 4.8rem);
	line-height: 1;
	letter-spacing: 0;
}

.bom-hero__lede {
	max-width: 650px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.2rem;
	line-height: 1.58;
}

.bom-hero__trust {
	max-width: 620px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.45;
}

.bom-eyebrow {
	margin: 0 0 14px;
	color: var(--bom-red);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.bom-hero .bom-eyebrow {
	color: var(--bom-gold);
}

.bom-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.bom-actions--center {
	justify-content: center;
}

.bom-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 20px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-weight: 850;
	line-height: 1.1;
	text-decoration: none;
}

.bom-button--primary {
	background: var(--bom-red);
	color: var(--bom-surface);
}

.bom-button--primary:hover {
	background: #9e3030;
	color: var(--bom-surface);
}

.bom-button--secondary {
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--bom-surface);
	background: rgba(255, 255, 255, 0.08);
}

.bom-button--secondary:hover {
	background: rgba(255, 255, 255, 0.18);
	color: var(--bom-surface);
}

.bom-section {
	padding: 76px 22px;
}

.bom-section__inner,
.bom-cta__inner {
	width: min(100%, var(--bom-max));
	margin: 0 auto;
}

.bom-section--intro {
	background: var(--bom-surface);
	border-bottom: 1px solid var(--bom-line);
}

.bom-split {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
	gap: 52px;
	align-items: start;
}

.bom-section h2,
.bom-cta h2 {
	max-width: 760px;
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 4vw, 3.55rem);
	line-height: 1.04;
	letter-spacing: 0;
}

.bom-section h3 {
	margin: 0 0 10px;
	font-size: 1.15rem;
	line-height: 1.25;
}

.bom-lede-stack p,
.bom-product__copy p,
.bom-benefit-grid p,
.bom-included-card p,
.bom-how-card p,
.bom-icp-grid p,
.bom-process-card p,
.bom-trust-grid p,
.bom-cta p {
	color: var(--bom-muted);
	font-size: 1rem;
	line-height: 1.65;
}

.bom-lede-stack p:first-child {
	margin-top: 0;
}

.bom-section__heading {
	max-width: 760px;
	margin-bottom: 34px;
}

.bom-section__heading p:not(.bom-eyebrow) {
	color: var(--bom-muted);
	font-size: 1.08rem;
	line-height: 1.65;
}

.bom-section--how {
	background: #f4f1e8;
	border-bottom: 1px solid var(--bom-line);
}

.bom-included-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.bom-included-card {
	position: relative;
	min-height: 300px;
	padding: 24px;
	overflow: hidden;
	border: 1px solid var(--bom-line);
	border-radius: var(--bom-radius);
	background: var(--bom-surface);
}

.bom-included-card::after,
.bom-icp-grid article::after {
	content: "";
	position: absolute;
	right: -38px;
	bottom: -38px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: rgba(215, 168, 63, 0.14);
}

.bom-included-card--feature {
	grid-column: span 2;
	background: var(--bom-ink);
	color: var(--bom-surface);
}

.bom-included-card--feature p {
	color: rgba(255, 255, 255, 0.78);
}

.bom-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 52px;
	border-radius: 50%;
	background: #f1eee3;
	color: var(--bom-red);
	font-size: 0.78rem;
	font-weight: 900;
}

.bom-included-card--feature .bom-card-icon {
	background: rgba(255, 255, 255, 0.12);
	color: var(--bom-gold);
}

.bom-included-card h3 {
	position: relative;
	z-index: 1;
	font-size: 1.32rem;
}

.bom-included-card p {
	position: relative;
	z-index: 1;
}

.bom-how-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.bom-how-card {
	position: relative;
	min-height: 280px;
	padding: 24px;
	overflow: hidden;
	border: 1px solid var(--bom-line);
	border-radius: var(--bom-radius);
	background: var(--bom-surface);
}

.bom-how-card::after {
	content: "";
	position: absolute;
	right: -36px;
	bottom: -36px;
	width: 104px;
	height: 104px;
	border-radius: 50%;
	background: rgba(215, 168, 63, 0.16);
}

.bom-how-card--wide {
	grid-column: span 2;
	background: var(--bom-ink);
	color: var(--bom-surface);
}

.bom-how-card--wide p {
	color: rgba(255, 255, 255, 0.78);
}

.bom-how-card__label {
	display: inline-block;
	margin-bottom: 42px;
	padding: 6px 9px;
	border-radius: 4px;
	background: #f1eee3;
	color: var(--bom-red);
	font-size: 0.75rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.bom-how-card--wide .bom-how-card__label {
	background: rgba(255, 255, 255, 0.12);
	color: var(--bom-gold);
}

.bom-how-card h3 {
	position: relative;
	z-index: 1;
	max-width: 500px;
	font-size: 1.35rem;
}

.bom-how-card p {
	position: relative;
	z-index: 1;
}

.bom-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.bom-process-card,
.bom-benefit-grid article,
.bom-trust-grid article,
.bom-icp-grid article,
.bom-dashboard {
	background: var(--bom-surface);
	border: 1px solid var(--bom-line);
	border-radius: var(--bom-radius);
}

.bom-process-card {
	min-height: 270px;
	padding: 22px;
}

.bom-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 48px;
	border-radius: 50%;
	background: #f1eee3;
	color: var(--bom-red);
	font-size: 0.8rem;
	font-weight: 900;
}

.bom-section--trust {
	background: var(--bom-ink);
	color: var(--bom-surface);
}

.bom-section--trust .bom-eyebrow {
	color: var(--bom-gold);
}

.bom-section--trust .bom-section__heading p {
	color: rgba(255, 255, 255, 0.74);
}

.bom-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.bom-trust-grid article {
	padding: 24px;
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.14);
}

.bom-trust-grid p {
	color: rgba(255, 255, 255, 0.74);
}

.bom-section--product {
	background: #eef2ed;
	border-top: 1px solid var(--bom-line);
	border-bottom: 1px solid var(--bom-line);
}

.bom-product {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
	gap: 54px;
	align-items: center;
}

.bom-check-list {
	display: grid;
	gap: 12px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.bom-check-list li {
	position: relative;
	padding-left: 28px;
	color: var(--bom-ink);
	font-weight: 700;
}

.bom-check-list li::before {
	content: "";
	position: absolute;
	top: 0.42em;
	left: 0;
	width: 12px;
	height: 12px;
	border: 3px solid var(--bom-sage);
	border-top: 0;
	border-left: 0;
	transform: rotate(45deg);
}

.bom-dashboard {
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(23, 32, 42, 0.14);
}

.bom-dashboard__bar {
	display: flex;
	gap: 7px;
	padding: 16px;
	background: var(--bom-ink);
}

.bom-dashboard__bar span {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.44);
}

.bom-dashboard__body {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	padding: 22px;
}

.bom-dashboard__metric {
	padding: 18px;
	border: 1px solid #ece8dc;
	border-radius: 6px;
	background: #fffdf8;
}

.bom-dashboard__metric strong {
	display: block;
	color: var(--bom-blue);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2.15rem;
	line-height: 1;
}

.bom-dashboard__metric span {
	display: block;
	margin-top: 8px;
	color: var(--bom-muted);
	font-size: 0.88rem;
	line-height: 1.35;
}

.bom-dashboard__rows {
	grid-column: 1 / -1;
	display: grid;
	gap: 12px;
	margin-top: 8px;
	padding: 22px;
	border-radius: 6px;
	background: #f5f1e7;
}

.bom-dashboard__rows span {
	display: block;
	width: var(--w);
	height: 14px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--bom-blue), var(--bom-sage));
}

.bom-benefit-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.bom-benefit-grid--dense {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bom-benefit-grid article {
	padding: 26px;
}

.bom-benefit-grid--dense article:nth-child(-n+3) {
	background: #fffdf8;
	border-color: #cfc7b2;
}

.bom-section--audience {
	background: #eef2ed;
	border-top: 1px solid var(--bom-line);
	border-bottom: 1px solid var(--bom-line);
}

.bom-icp-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.bom-icp-grid article {
	position: relative;
	min-height: 220px;
	padding: 24px;
	overflow: hidden;
}

.bom-glance {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
	gap: 54px;
	align-items: start;
}

.bom-glance h2,
.bom-pricing h2 {
	max-width: 620px;
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 4vw, 3.55rem);
	line-height: 1.04;
	letter-spacing: 0;
}

.bom-glance-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.bom-glance-grid article {
	padding: 24px;
	border: 1px solid var(--bom-line);
	border-radius: var(--bom-radius);
	background: var(--bom-surface);
}

.bom-glance-grid strong {
	display: block;
	color: var(--bom-blue);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2.2rem;
	line-height: 1;
}

.bom-glance-grid span {
	display: block;
	margin-top: 10px;
	color: var(--bom-muted);
	line-height: 1.5;
}

.bom-section--pricing {
	background: #f2efe6;
	border-top: 1px solid var(--bom-line);
}

.bom-pricing {
	max-width: 880px;
}

.bom-pricing p {
	max-width: 760px;
	color: var(--bom-muted);
	font-size: 1.08rem;
	line-height: 1.65;
}

.bom-cta {
	padding: 86px 22px;
	background: var(--bom-ink);
	color: var(--bom-surface);
	text-align: center;
}

.bom-cta__inner {
	max-width: 820px;
}

.bom-cta p {
	max-width: 620px;
	margin: 20px auto 0;
	color: rgba(255, 255, 255, 0.78);
}

.bom-cta .bom-button {
	margin-top: 28px;
}

.bom-footer {
	display: flex;
	justify-content: space-between;
	gap: 28px;
	padding: 34px max(22px, calc((100vw - var(--bom-max)) / 2));
	background: #f2efe6;
	border-top: 1px solid var(--bom-line);
}

.bom-footer p {
	margin: 12px 0 0;
	color: var(--bom-muted);
}

.bom-footer__legal {
	max-width: 620px;
	font-size: 0.9rem;
	line-height: 1.55;
}

.bom-footer__legal a {
	color: var(--bom-ink);
	font-weight: 800;
}

.bom-brand--footer .bom-brand__mark {
	width: 52px;
	height: 52px;
}

.bom-page {
	padding-top: 64px;
	padding-bottom: 80px;
}

.bom-page h1 {
	max-width: 860px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.4rem, 5vw, 4.2rem);
	line-height: 1.04;
	letter-spacing: 0;
}

.bom-page .wp-block-post-title {
	margin-bottom: 26px;
}

.bom-page-lede {
	max-width: 760px;
	color: var(--bom-muted);
	font-size: 1.22rem;
	line-height: 1.62;
}

.bom-page-band {
	margin-top: 48px;
	padding: 34px;
	border: 1px solid var(--bom-line);
	border-radius: var(--bom-radius);
	background: var(--bom-surface);
}

.bom-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 32px;
}

.bom-feature-grid > .wp-block-group {
	padding: 24px;
	border: 1px solid var(--bom-line);
	border-radius: var(--bom-radius);
	background: var(--bom-surface);
}

.bom-feature-grid h2,
.bom-feature-grid h3,
.bom-page-band h2 {
	margin-top: 0;
	font-size: 1.45rem;
	line-height: 1.2;
}

.bom-feature-grid p,
.bom-page-band p {
	color: var(--bom-muted);
}

.bom-contact-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
	gap: 34px;
	align-items: start;
	margin-top: 44px;
	padding: 34px;
	border-radius: var(--bom-radius);
	background: var(--bom-ink);
	color: var(--bom-surface);
}

.bom-contact-panel p {
	color: rgba(255, 255, 255, 0.76);
}

.bom-platform-hero,
.bom-platform-section {
	width: min(100% - 44px, var(--bom-max));
	margin: 0 auto;
	padding: 78px 0;
}

.bom-platform-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
	gap: 56px;
	align-items: center;
}

.bom-platform-hero h1,
.bom-platform-section h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.35rem, 5vw, 4.3rem);
	line-height: 1.04;
	letter-spacing: 0;
}

.bom-platform-hero p,
.bom-platform-lede,
.bom-platform-section > p:not(.bom-eyebrow),
.bom-platform-split p {
	color: var(--bom-muted);
	font-size: 1.08rem;
	line-height: 1.65;
}

.bom-platform-stack {
	position: relative;
	min-height: 470px;
	border: 1px solid var(--bom-line);
	border-radius: var(--bom-radius);
	background: linear-gradient(135deg, #eef2ed, #fffdf8);
	overflow: hidden;
}

.bom-stack-card {
	position: absolute;
	display: grid;
	gap: 8px;
	padding: 20px;
	border: 1px solid var(--bom-line);
	border-radius: var(--bom-radius);
	background: var(--bom-surface);
	box-shadow: 0 20px 50px rgba(23, 32, 42, 0.12);
}

.bom-stack-card strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.35rem;
}

.bom-stack-card span {
	color: var(--bom-muted);
}

.bom-stack-card--console {
	top: 34px;
	left: 34px;
	right: 86px;
	min-height: 150px;
}

.bom-stack-card--phone {
	top: 145px;
	right: 30px;
	width: 170px;
	min-height: 255px;
	background: var(--bom-ink);
	color: var(--bom-surface);
}

.bom-stack-card--phone span {
	color: rgba(255, 255, 255, 0.72);
}

.bom-stack-card--print {
	left: 42px;
	bottom: 36px;
	width: 230px;
	min-height: 180px;
	background: #f4f1e8;
}

.bom-stack-card--sign {
	right: 64px;
	bottom: 36px;
	width: 210px;
	background: var(--bom-gold);
}

.bom-platform-section {
	border-top: 1px solid var(--bom-line);
}

.bom-platform-section--revenue,
.bom-platform-section--public,
.bom-platform-section--magazine {
	width: 100%;
	max-width: none;
	padding-right: max(22px, calc((100vw - var(--bom-max)) / 2));
	padding-left: max(22px, calc((100vw - var(--bom-max)) / 2));
}

.bom-platform-section--revenue {
	background: #f4f1e8;
}

.bom-revenue-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 34px;
}

.bom-revenue-card,
.bom-platform-columns article,
.bom-storefront-mockup article,
.bom-data-model article,
.bom-deploy-grid article {
	border: 1px solid var(--bom-line);
	border-radius: var(--bom-radius);
	background: var(--bom-surface);
}

.bom-revenue-card {
	padding: 26px;
	border-top: 7px solid var(--bom-blue);
}

.bom-revenue-card--nomination { border-top-color: var(--bom-sage); }
.bom-revenue-card--voting { border-top-color: var(--bom-blue); }
.bom-revenue-card--winners { border-top-color: var(--bom-gold); }

.bom-revenue-card span,
.bom-platform-close {
	color: var(--bom-red);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.bom-revenue-card h3 {
	font-size: 1.55rem;
}

.bom-revenue-card ul,
.bom-platform-columns ul {
	display: grid;
	gap: 8px;
	padding-left: 18px;
	color: var(--bom-muted);
	line-height: 1.5;
}

.bom-revenue-card blockquote {
	margin: 22px 0 0;
	padding: 16px;
	border-left: 4px solid var(--bom-line);
	background: #fbfaf6;
	color: var(--bom-ink);
	font-weight: 750;
	line-height: 1.5;
}

.bom-platform-close {
	margin-top: 28px;
	color: var(--bom-ink);
	text-align: center;
}

.bom-platform-split {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
	gap: 48px;
	align-items: center;
}

.bom-console-mockup,
.bom-storefront-mockup,
.bom-magazine-mockup {
	overflow: hidden;
	border: 1px solid var(--bom-line);
	border-radius: var(--bom-radius);
	background: var(--bom-surface);
	box-shadow: 0 22px 55px rgba(23, 32, 42, 0.12);
}

.bom-console-mockup__body {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	padding: 22px;
}

.bom-console-mockup__body strong {
	grid-column: 1 / -1;
	padding: 18px;
	border-radius: 6px;
	background: #eef2ed;
	color: var(--bom-blue);
}

.bom-console-mockup__body span {
	padding: 18px;
	border: 1px solid #ece8dc;
	border-radius: 6px;
	color: var(--bom-muted);
}

.bom-platform-columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 28px;
}

.bom-platform-columns article {
	padding: 24px;
}

.bom-platform-section--public {
	background: #eef2ed;
}

.bom-phone-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin: 36px auto;
	max-width: 960px;
}

.bom-phone {
	display: grid;
	gap: 14px;
	min-height: 420px;
	padding: 28px 20px;
	border: 10px solid var(--bom-ink);
	border-radius: 28px;
	background: var(--bom-surface);
	box-shadow: 0 18px 48px rgba(23, 32, 42, 0.14);
}

.bom-phone strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.45rem;
}

.bom-phone span {
	padding: 14px;
	border: 1px solid var(--bom-line);
	border-radius: 6px;
	color: var(--bom-muted);
}

.bom-phone button {
	align-self: end;
	padding: 12px;
	border: 0;
	border-radius: 4px;
	background: var(--bom-red);
	color: var(--bom-surface);
	font-weight: 850;
}

.bom-storefront-mockup {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	padding: 18px;
	background: #f4f1e8;
}

.bom-storefront-mockup article {
	min-height: 140px;
	padding: 20px;
}

.bom-section--magazine {
	background: var(--bom-ink);
	color: var(--bom-surface);
}

.bom-section--magazine .bom-eyebrow {
	color: var(--bom-gold);
}

.bom-section--magazine p {
	color: rgba(255, 255, 255, 0.76);
}

.bom-magazine-mockup {
	display: grid;
	grid-template-columns: 0.72fr 1fr;
	min-height: 420px;
	background: #f4f1e8;
	color: var(--bom-ink);
}

.bom-magazine-mockup div {
	display: grid;
	place-items: center;
	padding: 28px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2rem;
	font-weight: 800;
	text-align: center;
}

.bom-magazine-mockup div:first-child {
	background: var(--bom-red);
	color: var(--bom-surface);
}

.bom-kit-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(120px, 1fr));
	gap: 12px;
	margin-top: 28px;
}

.bom-kit-grid span {
	display: grid;
	place-items: center;
	min-height: 120px;
	padding: 14px;
	border: 1px solid var(--bom-line);
	border-radius: var(--bom-radius);
	background: #fffdf8;
	color: var(--bom-ink);
	font-weight: 850;
	text-align: center;
}

.bom-platform-section--data {
	background: #f4f1e8;
	width: 100%;
	max-width: none;
	padding-right: max(22px, calc((100vw - var(--bom-max)) / 2));
	padding-left: max(22px, calc((100vw - var(--bom-max)) / 2));
}

.bom-data-model {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 30px;
}

.bom-data-model article {
	padding: 24px;
}

.bom-data-model span {
	display: block;
	margin-bottom: 18px;
	color: var(--bom-blue);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.35rem;
	font-weight: 850;
}

.bom-deploy-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 30px;
}

.bom-deploy-grid article {
	padding: 28px;
}

.bom-deploy-grid strong {
	display: block;
	margin-top: 18px;
	color: var(--bom-blue);
}

.bom-platform-final .bom-button--secondary {
	border-color: rgba(255, 255, 255, 0.48);
	color: var(--bom-surface);
}

.bom-modal-open {
	overflow: hidden;
}

.bom-modal[aria-hidden="true"] {
	display: none;
}

.bom-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: 20px;
}

.bom-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(23, 32, 42, 0.72);
}

.bom-modal__dialog {
	position: relative;
	width: min(100%, 720px);
	max-height: min(92vh, 760px);
	overflow: auto;
	padding: 32px;
	border-radius: var(--bom-radius);
	background: var(--bom-paper);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
	outline: none;
}

.bom-login-modal .bom-modal__dialog {
	width: min(100%, 390px);
	max-height: calc(100vh - 32px);
	overflow: visible;
	padding: 18px 28px 20px;
}

.bom-login-modal .bom-eyebrow {
	margin: 0 0 8px;
	font-size: 0.72rem;
}

.bom-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--bom-line);
	border-radius: 50%;
	background: var(--bom-surface);
	color: var(--bom-ink);
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
}

.bom-modal h2 {
	margin: 0;
	max-width: 560px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.05;
	letter-spacing: 0;
}

.bom-modal__lede {
	max-width: 590px;
	color: var(--bom-muted);
}

.bom-login-modal .bom-modal h2,
.bom-login-modal h2 {
	font-size: clamp(1.45rem, 2.3vw, 1.75rem);
	line-height: 1.05;
}

.bom-login-modal .bom-modal__lede {
	display: none;
}

.bom-demo-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 24px;
}

.bom-demo-form label {
	display: grid;
	gap: 6px;
	font-weight: 800;
}

.bom-demo-form input,
.bom-demo-form textarea {
	width: 100%;
	padding: 12px 13px;
	border: 1px solid #cfcabe;
	border-radius: 4px;
	background: var(--bom-surface);
	color: var(--bom-ink);
	font: inherit;
}

.bom-demo-form textarea {
	resize: vertical;
}

.bom-demo-form__wide {
	grid-column: 1 / -1;
}

.bom-auth-form {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin-top: 12px;
}

.bom-auth-form label {
	display: block;
	margin: 0 !important;
	font-weight: 800;
	line-height: 1.2;
}

.bom-auth-form label span {
	display: block;
	margin-bottom: 6px;
	line-height: 1.2;
}

.bom-auth-form input[type="text"],
.bom-auth-form input[type="password"] {
	width: 100%;
	height: 36px;
	margin: 0 !important;
	padding: 8px 10px;
	border: 1px solid #cfcabe;
	border-radius: 4px;
	background: var(--bom-surface);
	color: var(--bom-ink);
	font: inherit;
}

.bom-auth-form__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	color: var(--bom-muted);
	font-size: 0.92rem;
}

.bom-auth-form__remember {
	display: flex !important;
	grid-template-columns: none;
	align-items: center;
	gap: 8px !important;
	font-weight: 700 !important;
}

.bom-auth-form__remember input {
	width: 16px;
	height: 16px;
	margin: 0;
	accent-color: var(--bom-blue);
}

.bom-auth-form__row a {
	color: var(--bom-blue);
	font-weight: 850;
	text-decoration: none;
}

.bom-auth-form .bom-button {
	width: 100%;
	min-height: 40px;
	margin-top: 2px;
	border: 0;
	cursor: pointer;
}

@media (max-width: 900px) {
	.bom-header {
		position: static;
		flex-wrap: wrap;
	}

	.bom-header-actions {
		width: 100%;
		justify-content: flex-start;
		margin-left: 0;
	}

	.bom-split,
	.bom-product,
	.bom-platform-hero,
	.bom-platform-split,
	.bom-revenue-grid,
	.bom-platform-columns,
	.bom-phone-grid,
	.bom-storefront-mockup,
	.bom-data-model,
	.bom-deploy-grid,
	.bom-included-grid,
	.bom-how-grid,
	.bom-process-grid,
	.bom-benefit-grid,
	.bom-feature-grid,
	.bom-contact-panel,
	.bom-trust-grid,
	.bom-icp-grid,
	.bom-glance,
	.bom-glance-grid {
		grid-template-columns: 1fr;
	}

	.bom-platform-stack,
	.bom-magazine-mockup {
		min-height: 360px;
	}

	.bom-stack-card--console {
		right: 34px;
	}

	.bom-stack-card--phone {
		top: 150px;
		right: 28px;
	}

	.bom-stack-card--sign {
		right: 42px;
	}

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

	.bom-included-card--feature {
		grid-column: auto;
	}

	.bom-how-card--wide {
		grid-column: auto;
	}

	.bom-process-card {
		min-height: auto;
	}

	.bom-how-card {
		min-height: auto;
	}

	.bom-included-card,
	.bom-icp-grid article {
		min-height: auto;
	}

	.bom-card-icon {
		margin-bottom: 32px;
	}

	.bom-how-card__label {
		margin-bottom: 28px;
	}

	.bom-step {
		margin-bottom: 28px;
	}

	.bom-dashboard__body {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.bom-header,
	.bom-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.bom-nav {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 16px;
	}

	.bom-brand__mark {
		width: 52px;
		height: 52px;
	}

	.bom-header-actions {
		flex-wrap: wrap;
		gap: 8px;
	}

	.bom-mini-cart__subtotal {
		display: none;
	}

	.bom-footer__nav {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.bom-hero {
		min-height: 704px;
	}

	.bom-hero__image {
		object-position: 64% center;
	}

	.bom-hero__shade {
		background: linear-gradient(90deg, rgba(23, 32, 42, 0.94), rgba(23, 32, 42, 0.74));
	}

	.bom-hero__content {
		padding-top: 72px;
		padding-bottom: 84px;
	}

	.bom-hero h1 {
		font-size: 2.35rem;
	}

	.bom-hero__lede {
		font-size: 1.04rem;
	}

	.bom-actions,
	.bom-button {
		width: 100%;
	}

	.bom-section,
	.bom-cta {
		padding-top: 58px;
		padding-bottom: 58px;
	}

	.bom-section h2,
	.bom-cta h2,
	.bom-page h1,
	.bom-platform-hero h1,
	.bom-platform-section h2,
	.bom-glance h2,
	.bom-pricing h2 {
		font-size: 2.1rem;
	}

	.bom-platform-hero,
	.bom-platform-section {
		width: min(100% - 44px, var(--bom-max));
		padding-top: 58px;
		padding-bottom: 58px;
	}

	.bom-platform-stack {
		display: none;
	}

	.bom-page-band,
	.bom-contact-panel,
	.bom-modal__dialog {
		padding: 24px;
	}

	.bom-demo-form {
		grid-template-columns: 1fr;
	}
}
