/**
 * Dev Blueprint 802 — shared stylesheet.
 *
 * Mobile-first: every block starts at a 320px single-column layout and only
 * gains structure at 640 / 900 / 1024px. Direction-agnostic: all box offsets use
 * logical properties, so the same rules serve RTL Hebrew and LTR without a
 * mirrored stylesheet. Latin/numeric runs are isolated with dir="ltr" in markup.
 */

/* =========================================================================
 * Tokens
 * ====================================================================== */
.bp-802 {
	--bp-802-paper:  #F7F7F5;
	--bp-802-ink:    #22221F;
	--bp-802-muted:  #5F5F5A;
	--bp-802-forest: #1A3C2B;
	--bp-802-line:   rgba( 58, 58, 56, 0.22 );
	--bp-802-marker: #1A3C2B;
	--bp-802-module: 132px;

	--bp-802-coral: #FF8C69;
	--bp-802-mint:  #9EFFBF;
	--bp-802-gold:  #F4D35E;

	--bp-802-ff:      'Heebo', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--bp-802-ff-mono: 'IBM Plex Mono', 'Heebo', ui-monospace, SFMono-Regular, Menlo, monospace;

	--bp-802-fs-display: clamp( 2rem, 1.15rem + 4.2vw, 4.25rem );
	--bp-802-fs-h2:      clamp( 1.5rem, 1.15rem + 1.7vw, 2.375rem );
	--bp-802-fs-h3:      clamp( 1.125rem, 1rem + 0.6vw, 1.375rem );
	--bp-802-fs-body:    clamp( 1rem, 0.96rem + 0.2vw, 1.0625rem );
	--bp-802-fs-mono:    0.6875rem;

	--bp-802-lh-display: 0.98;
	--bp-802-lh-body:    1.65;
	--bp-802-track:      -0.03em;
	--bp-802-track-mono: 0.1em;

	--bp-802-radius: 2px;
	--bp-802-ease:   cubic-bezier( 0.2, 0, 0, 1 );

	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	font-family: var( --bp-802-ff );
	color: var( --bp-802-ink );
}

.bp-802 *,
.bp-802 *::before,
.bp-802 *::after { box-sizing: inherit; }

.bp-802 img { max-width: 100%; height: auto; display: block; }

.bp-802 a { color: inherit; text-decoration: none; }

.bp-802 a:focus-visible,
.bp-802 button:focus-visible {
	outline: 2px solid var( --bp-802-forest );
	outline-offset: 3px;
}

.bp-802 h1, .bp-802 h2, .bp-802 h3, .bp-802 p, .bp-802 blockquote,
.bp-802 dl, .bp-802 dd, .bp-802 dt, .bp-802 figure {
	margin: 0;
	overflow-wrap: anywhere;
	word-break: normal;
}

/* =========================================================================
 * Shared parts
 * ====================================================================== */
.bp-802-eyebrow {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-family: var( --bp-802-ff-mono );
	font-size: var( --bp-802-fs-mono );
	font-weight: 500;
	letter-spacing: var( --bp-802-track-mono );
	text-transform: uppercase;
	color: var( --bp-802-muted );
}

.bp-802-eyebrow::before {
	content: "";
	inline-size: 1.75rem;
	block-size: 1px;
	background-color: currentColor;
	opacity: 0.55;
	flex: 0 0 auto;
}

/* L-shaped corner markers — direction-agnostic via logical borders. */
.bp-802-marker {
	position: absolute;
	inline-size: 10px;
	block-size: 10px;
	border-color: var( --bp-802-marker );
	border-style: solid;
	border-width: 0;
	pointer-events: none;
}

.bp-802-marker--tl {
	inset-block-start: -1px;
	inset-inline-start: -1px;
	border-block-start-width: 2px;
	border-inline-start-width: 2px;
}

.bp-802-marker--tr {
	inset-block-start: -1px;
	inset-inline-end: -1px;
	border-block-start-width: 2px;
	border-inline-end-width: 2px;
}

.bp-802-marker--bl {
	inset-block-end: -1px;
	inset-inline-start: -1px;
	border-block-end-width: 2px;
	border-inline-start-width: 2px;
}

.bp-802-marker--br {
	inset-block-end: -1px;
	inset-inline-end: -1px;
	border-block-end-width: 2px;
	border-inline-end-width: 2px;
}

/* Buttons — square by design; hover shifts colour and nudges, never scales. */
.bp-802-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 15px 26px;
	border: 1px solid var( --bp-802-forest );
	border-radius: 0;
	font-family: var( --bp-802-ff );
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition:
		background-color 0.16s var( --bp-802-ease ),
		border-color 0.16s var( --bp-802-ease ),
		color 0.16s var( --bp-802-ease );
}

.bp-802-btn--solid {
	background-color: var( --bp-802-forest );
	color: var( --bp-802-paper );
}

.bp-802-btn--ghost {
	background-color: transparent;
	color: var( --bp-802-forest );
}

.bp-802-btn__icon {
	display: inline-flex;
	align-items: center;
	transition: transform 0.16s var( --bp-802-ease );
}

.bp-802-btn:hover .bp-802-btn__icon,
.bp-802-btn:focus-visible .bp-802-btn__icon {
	transform: translateX( -3px );
}

[dir="ltr"] .bp-802-btn:hover .bp-802-btn__icon,
[dir="ltr"] .bp-802-btn:focus-visible .bp-802-btn__icon {
	transform: translateX( 3px );
}

/* =========================================================================
 * Hero
 * ====================================================================== */
.bp-802-hero {
	position: relative;
	padding: 48px 20px;
	background-color: var( --bp-802-paper );
	isolation: isolate;
	overflow: hidden;
}

.bp-802-hero--mosaic::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient( to right, var( --bp-802-line ) 1px, transparent 1px ),
		linear-gradient( to bottom, var( --bp-802-line ) 1px, transparent 1px );
	background-size: var( --bp-802-module ) var( --bp-802-module );
	-webkit-mask-image: linear-gradient( to bottom, rgba( 0, 0, 0, 0.9 ) 0%, rgba( 0, 0, 0, 0.25 ) 62%, transparent 100% );
	mask-image: linear-gradient( to bottom, rgba( 0, 0, 0, 0.9 ) 0%, rgba( 0, 0, 0, 0.25 ) 62%, transparent 100% );
	pointer-events: none;
}

.bp-802-hero__grid {
	--bp-802-hero-col: 58%;
	display: grid;
	grid-template-columns: minmax( 0, 1fr );
	gap: 0;
	align-items: stretch;
}

.bp-802-hero__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.25rem;
	padding-block-end: 2.5rem;
}

.bp-802-hero__title {
	font-size: var( --bp-802-fs-display );
	line-height: var( --bp-802-lh-display );
	letter-spacing: var( --bp-802-track );
	font-weight: 800;
	color: var( --bp-802-forest );
	max-inline-size: 18ch;
}

.bp-802-hero__lede {
	font-size: var( --bp-802-fs-body );
	line-height: var( --bp-802-lh-body );
	color: #3B3B36;
	max-inline-size: 52ch;
}

.bp-802-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	inline-size: 100%;
}

.bp-802-hero__actions .bp-802-btn { flex: 1 1 auto; }

/* Spec list */
.bp-802-hero__specs {
	display: grid;
	grid-template-columns: minmax( 0, 1fr );
	gap: 0;
	inline-size: 100%;
	margin-block-start: 0.75rem;
	border-block-start: 1px solid var( --bp-802-line );
}

.bp-802-spec {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding-block: 0.875rem;
	padding-inline: 0 1.25rem;
	border-block-end: 1px solid var( --bp-802-line );
	font-family: var( --bp-802-ff-mono );
	font-size: var( --bp-802-fs-mono );
	letter-spacing: var( --bp-802-track-mono );
}

.bp-802-spec__label {
	text-transform: uppercase;
	color: #6B6B65;
}

.bp-802-spec__value {
	font-family: var( --bp-802-ff );
	font-size: 0.9375rem;
	letter-spacing: normal;
	font-weight: 500;
	color: var( --bp-802-ink );
	unicode-bidi: isolate;
}

/* Wireframe panel */
.bp-802-hero__panel {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.bp-802-hero__frame {
	position: relative;
	min-block-size: 260px;
	border: 1px solid var( --bp-802-line );
	background-color: var( --bp-802-paper );
	display: grid;
	place-items: center;
	overflow: hidden;
}

.bp-802-hero__index {
	position: absolute;
	inset-block-start: 12px;
	inset-inline-start: 14px;
	font-family: var( --bp-802-ff-mono );
	font-size: var( --bp-802-fs-mono );
	letter-spacing: var( --bp-802-track-mono );
	color: var( --bp-802-muted );
	unicode-bidi: isolate;
}

.bp-802-hero__image {
	position: absolute;
	inset: 0;
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
	mix-blend-mode: luminosity;
	opacity: 0.9;
	transition: opacity 0.25s var( --bp-802-ease ), filter 0.25s var( --bp-802-ease );
}

.bp-802-hero__frame:hover .bp-802-hero__image {
	mix-blend-mode: normal;
	opacity: 1;
}

.bp-802-hero__caption {
	font-family: var( --bp-802-ff-mono );
	font-size: var( --bp-802-fs-mono );
	line-height: 1.6;
	letter-spacing: var( --bp-802-track-mono );
	color: var( --bp-802-muted );
}

/* Orbit graphic — the one continuously animated element in the kit. */
.bp-802-orbit {
	inline-size: min( 78%, 320px );
	block-size: auto;
	overflow: visible;
}

.bp-802-orbit__path {
	fill: none;
	stroke: var( --bp-802-forest );
	stroke-width: 1;
	stroke-dasharray: 3 6;
	opacity: 0.45;
}

.bp-802-orbit__path--inner {
	stroke-dasharray: 2 5;
	opacity: 0.3;
}

.bp-802-orbit__spoke {
	stroke: var( --bp-802-forest );
	stroke-width: 1;
	opacity: 0.2;
}

.bp-802-orbit__node { fill: var( --bp-802-forest ); opacity: 0.8; }

.bp-802-orbit__core { fill: var( --bp-802-forest ); }

.bp-802-orbit__rotor {
	transform-origin: 160px 160px;
	animation: bp-802-rotate 26s linear infinite;
}

@keyframes bp-802-rotate {
	from { transform: rotate( 0deg ); }
	to   { transform: rotate( 360deg ); }
}

/* =========================================================================
 * Bento grid
 * ====================================================================== */
.bp-802-bento {
	padding-block: 40px;
}

.bp-802-bento__header {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding-block-end: 1.75rem;
	max-inline-size: 44ch;
}

.bp-802-bento__title,
.bp-802-proof__title,
.bp-802-form__title {
	font-size: var( --bp-802-fs-h2 );
	line-height: 1.15;
	letter-spacing: var( --bp-802-track );
	font-weight: 700;
	color: var( --bp-802-forest );
}

.bp-802-bento__grid {
	--bp-802-cols: 1;
	display: grid;
	grid-template-columns: repeat( var( --bp-802-cols ), minmax( 0, 1fr ) );
	gap: 1px;
	background-color: var( --bp-802-line );
	border: 1px solid var( --bp-802-line );
}

.bp-802-cell {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	padding: 22px 20px;
	background-color: var( --bp-802-paper );
	transition: background-color 0.18s var( --bp-802-ease );
}

.bp-802-cell::before {
	content: "";
	position: absolute;
	inset-block-start: 0;
	inset-inline-start: 0;
	inline-size: 3px;
	block-size: 2.75rem;
	background-color: var( --bp-802-accent, var( --bp-802-forest ) );
	transition: block-size 0.2s var( --bp-802-ease );
}

.bp-802-cell:hover::before,
.bp-802-cell:focus-within::before { block-size: 100%; }

.bp-802-cell[data-accent="coral"] { --bp-802-accent: var( --bp-802-coral ); }
.bp-802-cell[data-accent="mint"]  { --bp-802-accent: var( --bp-802-mint ); }
.bp-802-cell[data-accent="gold"]  { --bp-802-accent: var( --bp-802-gold ); }
.bp-802-cell[data-accent="forest"]{ --bp-802-accent: var( --bp-802-forest ); }

.bp-802-cell__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
}

.bp-802-cell__index {
	font-family: var( --bp-802-ff-mono );
	font-size: var( --bp-802-fs-mono );
	letter-spacing: var( --bp-802-track-mono );
	color: #6B6B65;
	unicode-bidi: isolate;
}

.bp-802-cell__icon {
	display: inline-flex;
	align-items: center;
	font-size: 18px;
	color: var( --bp-802-forest );
}

.bp-802-cell__icon svg { width: 18px; height: 18px; fill: currentColor; }

.bp-802-cell__title {
	font-size: var( --bp-802-fs-h3 );
	line-height: 1.3;
	font-weight: 700;
	color: var( --bp-802-forest );
}

.bp-802-cell__link {
	border-block-end: 1px solid transparent;
	transition: border-color 0.16s var( --bp-802-ease );
}

.bp-802-cell__link:hover { border-block-end-color: currentColor; }

.bp-802-cell__text {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #3B3B36;
}

.bp-802-cell__mock {
	margin: 0.25rem 0 0;
	padding: 0.75rem 0.875rem;
	border: 1px solid var( --bp-802-line );
	background-color: rgba( 255, 255, 255, 0.6 );
	font-family: var( --bp-802-ff-mono );
	font-size: 0.6875rem;
	line-height: 1.7;
	color: #4A4A44;
	white-space: pre-wrap;
	overflow-x: auto;
	unicode-bidi: isolate;
}

/* =========================================================================
 * Proof wall
 * ====================================================================== */
.bp-802-proof { padding-block: 40px; }

.bp-802-proof__header {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding-block-end: 1.75rem;
	max-inline-size: 44ch;
}

.bp-802-proof__wall {
	--bp-802-cols: 1;
	display: grid;
	grid-template-columns: repeat( var( --bp-802-cols ), minmax( 0, 1fr ) );
	gap: 1px;
	background-color: var( --bp-802-line );
	border: 1px solid var( --bp-802-line );
}

.bp-802-quote {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 20px 18px 18px;
	background-color: var( --bp-802-paper );
}

.bp-802-quote--featured {
	grid-column: 1 / -1;
	background-color: #FFFFFF;
}

.bp-802-quote__metric {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.bp-802-quote__metric-value {
	font-family: var( --bp-802-ff-mono );
	font-size: 32px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var( --bp-802-forest );
	unicode-bidi: isolate;
}

.bp-802-quote__metric-label {
	font-family: var( --bp-802-ff-mono );
	font-size: var( --bp-802-fs-mono );
	letter-spacing: var( --bp-802-track-mono );
	text-transform: uppercase;
	color: var( --bp-802-muted );
}

.bp-802-quote__text {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var( --bp-802-ink );
	border-inline-start: 2px solid var( --bp-802-line );
	padding-inline-start: 0.875rem;
}

.bp-802-quote--featured .bp-802-quote__text {
	font-size: clamp( 1.0625rem, 1rem + 0.5vw, 1.375rem );
	line-height: 1.55;
	border-inline-start-color: var( --bp-802-forest );
}

.bp-802-quote__foot {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-block-start: auto;
	padding-block-start: 0.875rem;
	border-block-start: 1px solid var( --bp-802-line );
}

.bp-802-quote__avatar {
	inline-size: 44px;
	block-size: 44px;
	object-fit: cover;
	border-radius: 0;
	filter: grayscale( 1 );
	flex: 0 0 auto;
}

.bp-802-quote__meta {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	font-family: var( --bp-802-ff-mono );
	font-size: var( --bp-802-fs-mono );
	letter-spacing: var( --bp-802-track-mono );
	color: var( --bp-802-muted );
}

.bp-802-quote__name {
	font-family: var( --bp-802-ff );
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: normal;
	color: var( --bp-802-ink );
}

/* =========================================================================
 * Lead form
 * ====================================================================== */
.bp-802-form-shell { display: flex; justify-content: center; }

.bp-802-form {
	position: relative;
	inline-size: 100%;
	max-inline-size: 640px;
	padding: 24px 20px;
	border: 1px solid var( --bp-802-line );
	background-color: var( --bp-802-paper );
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.bp-802-form__fields {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-block-start: 0.5rem;
}

.bp-802-field {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	flex: 1 1 100%;
	min-inline-size: 0;
}

.bp-802-field__label {
	font-family: var( --bp-802-ff-mono );
	font-size: var( --bp-802-fs-mono );
	letter-spacing: var( --bp-802-track-mono );
	text-transform: uppercase;
	color: var( --bp-802-muted );
}

.bp-802-field__req {
	margin-inline-start: 0.25rem;
	color: #A63A1E;
}

.bp-802-field__input {
	inline-size: 100%;
	padding: 12px 14px;
	border: 1px solid var( --bp-802-line );
	border-radius: var( --bp-802-radius );
	background-color: #FFFFFF;
	font-family: var( --bp-802-ff );
	/* 16px floor keeps iOS Safari from zooming the viewport on focus. */
	font-size: 16px;
	line-height: 1.5;
	color: var( --bp-802-ink );
	transition: border-color 0.15s var( --bp-802-ease ), box-shadow 0.15s var( --bp-802-ease );
}

.bp-802-field__input::placeholder { color: #8E8E86; }

.bp-802-field__input:focus {
	outline: 1px solid var( --bp-802-forest );
	outline-offset: 0;
	border-color: var( --bp-802-forest );
}

.bp-802-field__input[aria-invalid="true"] { border-color: #A63A1E; }

.bp-802-field__error:empty { display: none; }

.bp-802-field__error {
	font-family: var( --bp-802-ff-mono );
	font-size: var( --bp-802-fs-mono );
	letter-spacing: var( --bp-802-track-mono );
	color: #A63A1E;
}

/* Honeypot — off-screen but focusable-safe, never display:none. */
.bp-802-form__trap {
	position: absolute;
	inline-size: 1px;
	block-size: 1px;
	overflow: hidden;
	clip-path: inset( 50% );
	white-space: nowrap;
}

.bp-802-form__foot {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-block-start: 0.5rem;
}

.bp-802-form__submit {
	inline-size: 100%;
	padding: 16px 28px;
	border: 1px solid var( --bp-802-forest );
	border-radius: 0;
	background-color: var( --bp-802-forest );
	color: var( --bp-802-paper );
	font-family: var( --bp-802-ff );
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.16s var( --bp-802-ease ), border-color 0.16s var( --bp-802-ease );
}

.bp-802-form__submit[disabled] { opacity: 0.6; cursor: progress; }

.bp-802-form__note {
	font-family: var( --bp-802-ff-mono );
	font-size: var( --bp-802-fs-mono );
	line-height: 1.7;
	letter-spacing: var( --bp-802-track-mono );
	color: var( --bp-802-muted );
}

.bp-802-form__status:empty { display: none; }

.bp-802-form__status {
	padding: 12px 14px;
	border: 1px solid currentColor;
	font-size: 0.9375rem;
	line-height: 1.55;
}

.bp-802-form__status--ok    { color: var( --bp-802-forest ); }
.bp-802-form__status--error { color: #A63A1E; }

/* =========================================================================
 * Status strip
 * ====================================================================== */
.bp-802-status {
	--bp-802-dot-open:    #1A3C2B;
	--bp-802-dot-limited: #B8860B;
	--bp-802-dot-closed:  #8A8A82;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	padding-block: 14px;
	border-block: 1px solid var( --bp-802-line );
}

.bp-802-status__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	align-self: flex-start;
	padding: 5px 12px;
	border: 1px solid var( --bp-802-line );
	font-family: var( --bp-802-ff-mono );
	font-size: var( --bp-802-fs-mono );
	letter-spacing: var( --bp-802-track-mono );
	text-transform: uppercase;
}

.bp-802-status__dot {
	inline-size: 8px;
	block-size: 8px;
	flex: 0 0 auto;
	background-color: var( --bp-802-dot-limited );
}

.bp-802-status[data-state="open"]   .bp-802-status__dot { background-color: var( --bp-802-dot-open ); }
.bp-802-status[data-state="closed"] .bp-802-status__dot { background-color: var( --bp-802-dot-closed ); }

.bp-802-status--pulse .bp-802-status__dot {
	animation: bp-802-blink 2.4s steps( 1, end ) infinite;
}

@keyframes bp-802-blink {
	0%, 62%  { opacity: 1; }
	63%, 78% { opacity: 0.25; }
	79%      { opacity: 1; }
}

.bp-802-status__link {
	border-block-end: 1px solid currentColor;
}

.bp-802-status__meta {
	display: grid;
	grid-template-columns: minmax( 0, 1fr );
	gap: 0.75rem;
}

.bp-802-status__item {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.bp-802-status__label {
	font-family: var( --bp-802-ff-mono );
	font-size: var( --bp-802-fs-mono );
	letter-spacing: var( --bp-802-track-mono );
	text-transform: uppercase;
	color: var( --bp-802-muted );
}

.bp-802-status__value {
	font-size: 0.9375rem;
	font-weight: 500;
	unicode-bidi: isolate;
}

/* =========================================================================
 * Breakpoints — structure is added, never removed
 * ====================================================================== */
@media ( min-width: 480px ) {
	.bp-802-hero__actions .bp-802-btn { flex: 0 0 auto; }
	.bp-802-form__submit { inline-size: auto; align-self: flex-start; }
	.bp-802-form__foot { flex-direction: row; align-items: center; justify-content: space-between; }
	.bp-802-form__note { max-inline-size: 30ch; }
}

@media ( min-width: 600px ) {
	.bp-802-field[data-width="50"] { flex: 1 1 calc( 50% - 9px ); }
	.bp-802-status { flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
	.bp-802-status__meta { grid-template-columns: repeat( 3, minmax( 0, auto ) ); gap: 1.5rem; margin-inline-start: auto; }
}

@media ( min-width: 640px ) {
	.bp-802-hero__specs { grid-template-columns: repeat( 2, minmax( 0, 1fr ) ); }
	.bp-802-spec:nth-last-child( -n + 2 ) { border-block-end: 0; }
	.bp-802-bento__grid,
	.bp-802-proof__wall { --bp-802-cols: 2; }
	.bp-802-cell { padding: 32px; }
	.bp-802-quote { padding: 28px 28px 24px; }
	.bp-802-form { padding: 40px; }
}

@media ( min-width: 900px ) {
	.bp-802-hero { padding: 96px 40px; }
	.bp-802-hero__grid {
		grid-template-columns: var( --bp-802-hero-col ) minmax( 0, 1fr );
		align-items: center;
	}
	.bp-802-hero__body {
		padding-block-end: 0;
		padding-inline-end: clamp( 2rem, 4vw, 4.5rem );
		border-inline-end: 1px solid var( --bp-802-line );
	}
	.bp-802-hero__panel { padding-inline-start: clamp( 2rem, 4vw, 4.5rem ); }
	.bp-802-hero__frame { min-block-size: 420px; }
	.bp-802-bento,
	.bp-802-proof { padding-block: 72px; }
}

@media ( min-width: 1024px ) {
	.bp-802-bento__grid { --bp-802-cols: 4; }
	.bp-802-cell[data-size="wide"] { grid-column: span 2; }
	.bp-802-cell[data-size="tall"] { grid-row: span 2; }
	.bp-802-proof__wall { --bp-802-cols: 2; }
}

/* =========================================================================
 * Reduced motion
 * ====================================================================== */
@media ( prefers-reduced-motion: reduce ) {
	.bp-802,
	.bp-802 * {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}
