/* =========================================================
   DESIGN TOKENS — extracted from client PNG
   ========================================================= */
:root {
	--bg: #050505;
	--bg-surface: #0D0C09;
	--bg-raised: #151209;
	--bg-border: #242018;

	--gold-400: #FBBF24;
	--gold-600: #EA7C1F;
	--gold-700: #EA580C;
	--gold-gradient: linear-gradient(90deg, var(--gold-400) 0%, var(--gold-600) 60%, var(--gold-700) 100%);

	--ink: #FFFFFF;
	--ink-muted: #A8A29E;
	--ink-faint: #6B6459;
	--success: #22C55E;
	--text-secondary: #7B7C85;
	--border-subtle: rgba(255,255,255,0.1);
	--surface-glass: linear-gradient(145deg, rgba(13,14,22,0.96), rgba(7,8,13,0.95));

	--radius-card: 16px;
	--radius-pill: 999px;
	--radius-control: 12px;
	--control-height: 44px;
	--container: 1280px;

	/* Vertical rhythm — every section reads from these, so the whole page
	   can be retuned from one place. Reassigned per breakpoint further down. */
	--section-py: 96px;
	--section-head-gap: 56px;

	/* Shared scrim for anything with a photo behind text or badges. */
	--img-scrim: linear-gradient(180deg, rgba(4,4,6,0.20) 0%, rgba(4,4,6,0.58) 55%, rgba(4,4,6,0.92) 100%);

	--font-display: 'Inter', sans-serif;
	--font-body: 'Inter', sans-serif;
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html {
	scroll-behavior: smooth;
	max-width: 100%;
	overflow-x: hidden;
}
body {
	margin: 0;
	max-width: 100%;
	overflow-x: hidden;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}
@supports (overflow: clip) {
	html, body { overflow-x: clip; }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, .btn, .eyebrow { font-family: var(--font-display); }
.btn svg, .eyebrow svg, button svg, a svg { flex-shrink: 0; }

:focus-visible {
	outline: 2px solid var(--gold-400);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
	/* Keep the user-triggered navigation state change understandable and visible. */
	.bb-nav {
		transition-duration: 0.45s, 0.3s, 0s !important;
	}
	.bb-nav-backdrop {
		transition-duration: 0.3s, 0s !important;
	}
	.bb-nav-toggle span,
	.bb-submenu-toggle::after {
		transition-duration: 0.2s !important;
	}
	.bb-submenu,
	.bb-nav .sub-menu {
		transition-duration: 0.35s, 0.22s, 0.35s, 0s, 0.35s !important;
	}
	.bb-nav__close { transition-duration: 0.2s !important; }
}

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.bb-container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 20px;
}
.bb-center { text-align: center; }
.text-white { color: var(--ink); }
.text-gold {
	background: var(--gold-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.bb-muted { color: var(--ink-muted); }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 26px;
	border: 1px solid var(--border-subtle);
	background: rgba(17,17,18,0.76);
	border-radius: var(--radius-pill);
	padding: 5px 12px;
	font-size: 8px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: #d8ad2d;
}
.bb-section {
	padding-block: var(--section-py);
	border-bottom: 1px solid var(--bg-border);
}
/* One rhythm for the whole page. Sections used to carry 9 different top and 9
   different bottom values across 4 breakpoints; now they all read the token. */
@media (max-width: 899px) {
	:root { --section-py: 72px; --section-head-gap: 44px; }
}
@media (max-width: 599px) {
	:root { --section-py: 56px; --section-head-gap: 34px; }
}
.bb-section__head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
	margin-bottom: var(--section-head-gap);
}
.bb-h2 {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(28px, 5vw, 40px);
	line-height: 1.15;
	margin: 12px 0 0;
}
.bb-link { font-size: 14px; font-weight: 600; color: var(--gold-400); white-space: nowrap; }

.bb-grid { display: grid; gap: 20px; margin-top: 28px; }
.bb-grid--3 { grid-template-columns: repeat(1, 1fr); }
.bb-grid--4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) {
	.bb-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
	.bb-grid--3 { grid-template-columns: repeat(3, 1fr); }
	.bb-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: var(--control-height);
	border-radius: var(--radius-pill);
	padding: 11px 22px;
	font-size: 12px;
	font-weight: 700;
	border: 1px solid transparent;
	letter-spacing: -0.01em;
	transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); opacity: 0.94; }
.btn--primary { background: var(--gold-gradient); color: #1A1305; }
.btn--secondary { background: rgba(13,14,18,0.82); border-color: var(--border-subtle); color: var(--ink); }
.btn--sm { min-height: 38px; padding: 8px 17px; font-size: 11px; }

/* badges */
.bb-badge {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	border-radius: var(--radius-pill);
	font-size: 8px;
	font-weight: 700;
	padding: 4px 9px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.bb-badge--online { color: var(--success); background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); }
.bb-badge--sale { color: var(--gold-400); background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.3); }

/* =========================================================
   TOP ANNOUNCEMENT BAR (marquee)
   ========================================================= */
.bb-topbar {
	position: relative;
	background: #0A0906;
	border-bottom: 1px solid var(--bg-border);
	overflow: hidden;
	white-space: nowrap;
	padding-block: 9px;
}
/* The track holds exactly two identical groups and translates by -50%, so the
   loop point must equal one group's full width. Spacing therefore lives on the
   group (gap between items + trailing padding), never on the track — a `gap`
   on the track would also space the two copies apart and the animation would
   fall short of the seam by half that gap on every cycle. */
.bb-topbar__track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: bb-marquee 28s linear infinite;
}
.bb-topbar__group {
	display: flex;
	gap: 48px;
	padding-right: 48px;
}
.bb-topbar:hover .bb-topbar__track { animation-play-state: paused; }
.bb-topbar__item {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ink-muted);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.bb-topbar__item svg { color: var(--gold-400); }
@keyframes bb-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.bb-topbar__track { animation: none; }
	/* Both axes must be set together: with overflow-x:auto and overflow-y left
	   at hidden, the spec makes the browser compute overflow-y as auto too,
	   which produced a stray vertical scroll container in the bar. */
	.bb-topbar { overflow-x: auto; overflow-y: hidden; }
	/* Nothing scrolls past the seam when the animation is off, so the second
	   copy is redundant and would just be reachable dead content. */
	.bb-topbar__group + .bb-topbar__group { display: none; }
}

/* =========================================================
   HEADER
   ========================================================= */
.bb-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(5,5,5,0.42);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255,255,255,0.07);
}
.bb-header__inner {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 68px;
}

/* Logo */
.bb-logo { display: flex; align-items: center; flex-shrink: 0; }
.bb-logo__img { height: 42px; width: auto; }
.bb-logo__img--footer { height: 54px; }
.bb-logo__text { font-family: var(--font-display); font-weight: 800; font-size: 17px; line-height: 1.1; display: flex; flex-direction: column; }
.bb-logo__gold { background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bb-logo__text small { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; color: var(--gold-400); }

/* Mobile nav toggle */
.bb-nav-toggle {
	display: flex;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: 1px solid var(--bg-border);
	border-radius: 8px;
	padding: 9px;
	margin-left: 0;
	order: 3;
}
.bb-nav-toggle span {
	display: block;
	width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.bb-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.bb-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.bb-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Nav + dropdowns */
.bb-nav {
	position: fixed;
	top: 0; right: 0; bottom: 0;
	width: min(88vw, 380px);
	height: 100vh;
	height: 100dvh;
	background: var(--bg);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(105%, 0, 0);
	transform-origin: right center;
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.3s ease,
		visibility 0s linear 0.45s;
	will-change: transform;
	padding: 0 20px 24px;
	overflow-y: auto;
	overscroll-behavior: contain;
	z-index: 102;
	box-shadow: -18px 0 48px rgba(0,0,0,0.45);
}
.bb-nav.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate3d(0, 0, 0);
	transition-delay: 0s;
}
.bb-nav__mobile-head {
	display: flex; align-items: center; justify-content: space-between;
	min-height: 68px; margin-bottom: 12px;
	border-bottom: 1px solid var(--bg-border);
	font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.bb-nav__close {
	display: grid; place-items: center;
	width: 38px; height: 38px;
	border: 1px solid var(--bg-border); border-radius: 9px;
	background: var(--bg-surface); color: var(--ink-muted);
	transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.bb-nav__close:hover { color: var(--gold-400); border-color: var(--gold-400); transform: rotate(90deg); }
.bb-nav-backdrop {
	position: fixed; inset: 0; z-index: 101;
	width: 100vw; height: 100vh; height: 100dvh;
	background: rgba(0,0,0,0.68);
	opacity: 0; visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.bb-nav-backdrop.is-open {
	opacity: 1; visibility: visible; pointer-events: auto;
	transition-delay: 0s;
}
body.bb-nav-open { overflow: hidden; }
body.bb-nav-open .bb-header {
	/* Avoid a full-page GPU repaint while the fixed drawer is moving. */
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}
.bb-nav__list { display: flex; flex-direction: column; gap: 4px; }
.bb-nav__list > li { position: relative; }
.bb-nav__list > li > a {
	display: flex; align-items: center; gap: 6px;
	font-size: 16px; font-weight: 500; color: var(--ink-muted);
	padding: 13px 44px 13px 4px;
}
.bb-caret { transition: transform 0.2s ease; }
.bb-nav .menu-item-has-children > a .bb-caret { display: none; }
.bb-submenu-toggle {
	position: absolute; top: 5px; right: 0;
	display: grid; place-items: center;
	width: 38px; height: 38px; padding: 0;
	border: 0; border-radius: 8px; background: var(--bg-surface); color: var(--ink-muted);
}
.bb-submenu-toggle::after {
	content: ''; width: 7px; height: 7px;
	border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
	transform: translateY(-2px) rotate(45deg); transition: transform 0.2s ease;
}
.menu-item-has-children.is-open > .bb-submenu-toggle::after { transform: translateY(2px) rotate(225deg); }

.bb-submenu,
.bb-nav .sub-menu {
	display: flex;
	flex-direction: column;
	padding-left: 14px;
	border-left: 1px solid var(--bg-border);
	margin: 0 0 0 4px;
	max-height: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	transform: translateY(-6px);
	transition:
		max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.22s ease,
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0s linear 0.35s,
		margin 0.35s ease;
}
.bb-submenu a,
.bb-nav .sub-menu a { display: block; padding: 9px 4px; font-size: 14px; color: var(--ink-faint); }
.menu-item-has-children.is-open > .bb-submenu,
.menu-item-has-children.is-open > .sub-menu {
	max-height: 420px;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	margin: 2px 0 8px 4px;
	transition-delay: 0s;
}
.menu-item-has-children.is-open .bb-caret { transform: rotate(180deg); }

.bb-nav__mobile-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid var(--bg-border);
}
.bb-nav-action {
	display: flex; align-items: center; gap: 10px;
	min-width: 0; padding: 11px 12px;
	border: 1px solid var(--bg-border); border-radius: 10px;
	background: var(--bg-surface); color: var(--ink-muted);
	font-size: 12px; text-align: left;
}
.bb-nav-action:hover { border-color: var(--gold-400); color: var(--gold-400); }
.bb-nav__mobile-join { grid-column: 1 / -1; justify-content: center; margin-top: 4px; }

/* Search */
.bb-search {
	display: none;
	align-items: center;
	gap: 10px;
	background: var(--bg-surface);
	border: 1px solid var(--bg-border);
	border-radius: var(--radius-pill);
	padding: 10px 16px;
	flex: 1;
	max-width: 340px;
}
.bb-search__icon { color: var(--ink-faint); flex-shrink: 0; }
.bb-search input {
	background: none; border: none; outline: none;
	color: var(--ink); font-size: 13px; width: 100%;
}
.bb-search input::placeholder { color: var(--ink-faint); }

/* Action icons */
.bb-header__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; order: 2; }
.bb-icon-btn {
	position: relative;
	width: 38px; height: 38px;
	border-radius: 50%;
	border: 1px solid var(--bg-border);
	background: transparent;
	color: var(--ink-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.15s ease, color 0.15s ease;
}
.bb-icon-btn:hover { border-color: var(--gold-400); color: var(--gold-400); }
.bb-icon-btn--desktop { display: none; }

.bb-cart-count {
	position: absolute; top: -4px; right: -4px;
	background: var(--gold-gradient);
	color: #1A1305;
	font-size: 10px; font-weight: 800;
	width: 17px; height: 17px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
}

.bb-join-btn { display: none; white-space: nowrap; }

@media (max-width: 419px) {
	.bb-container { padding-inline: 14px; }
	.bb-header__inner { gap: 8px; }
	.bb-logo__text { font-size: 15px; }
	.bb-icon-btn { width: 36px; height: 36px; }
}

@media (min-width: 1100px) {
	.bb-nav-toggle { display: none; }
	.bb-nav {
		position: static;
		inset: auto;
		top: auto;
		width: auto;
		height: auto;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		transition: none;
		will-change: auto;
		background: none;
		padding: 0;
		overflow: visible;
		z-index: auto;
		box-shadow: none;
	}
	.bb-nav__mobile-head, .bb-nav-backdrop, .bb-submenu-toggle, .bb-nav__mobile-actions { display: none; }
	.bb-nav .menu-item-has-children > a .bb-caret { display: inline-block; }
	.bb-nav__list { flex-direction: row; align-items: center; gap: 28px; }
	.bb-nav__list > li { position: relative; }
	.bb-nav__list > li > a { font-size: 14px; padding: 0; }

	.bb-submenu,
	.bb-nav .sub-menu {
		display: flex;
		max-height: none;
		overflow: visible;
		position: absolute; top: calc(100% + 14px); left: 0;
		background: var(--bg-surface);
		border: 1px solid var(--bg-border);
		border-radius: 12px;
		padding: 8px;
		min-width: 180px;
		border-left: none; margin: 0;
		opacity: 0; visibility: hidden; transform: translateY(4px);
		transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
	}
	.bb-nav__list > li:hover > .bb-submenu,
	.bb-nav__list > li:hover > .sub-menu,
	.bb-nav__list > li:focus-within > .bb-submenu,
	.bb-nav__list > li:focus-within > .sub-menu {
		opacity: 1; visibility: visible; transform: translateY(0);
	}
	.bb-submenu a, .bb-nav .sub-menu a { border-radius: 8px; }
	.bb-submenu a:hover, .bb-nav .sub-menu a:hover { background: var(--bg-raised); color: var(--ink); }

	.bb-search { display: flex; }
	.bb-icon-btn--desktop { display: flex; }
	.bb-join-btn { display: inline-flex; }
}

@media (min-width: 1100px) and (max-width: 1240px) {
	.bb-header__inner { gap: 12px; }
	.bb-nav__list { gap: 16px; }
	.bb-search { max-width: 190px; }
	.bb-icon-btn--desktop { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.bb-hero {
	position: relative;
	/* Scales with the viewport instead of a hard 678px, which made phones
	   scroll through an empty banner before reaching any content. */
	min-height: clamp(560px, 74vh, 700px);
	margin-top: -68px;
	border-bottom: 1px solid var(--bg-border);
	background:
		/* Horizontal scrim: solid behind the copy, and deep enough on the right
		   that the artwork reads as background rather than a second subject. */
		linear-gradient(90deg, rgba(5,5,5,0.98) 0%, rgba(5,5,5,0.92) 34%, rgba(5,5,5,0.62) 68%, rgba(5,5,5,0.42) 100%),
		/* Vertical scrim: seats the banner into the section below it. */
		linear-gradient(0deg, rgba(5,5,5,0.88) 0%, rgba(5,5,5,0.24) 32%, transparent 62%),
		url('../images/hero-marketplace-bg.webp') center right / cover no-repeat;
	overflow: hidden;
}
.bb-hero::after {
	content: '';
	position: absolute; inset: 0;
	pointer-events: none;
	/* Gold accent behind the headline. Kept tight so it warms the copy without
	   lifting the whole panel the way the old 30%-wide radial did. */
	background: radial-gradient(circle at 22% 42%, rgba(234,124,31,0.10), transparent 42%);
}
.bb-hero__grid {
	position: relative; z-index: 2;
	display: grid;
	gap: 56px;
	align-items: center;
	min-height: inherit;
	/* 68px of the top padding pays back the negative margin that tucks the hero
	   under the sticky header, so the visible space above and below matches. */
	padding-block: calc(68px + var(--section-py)) var(--section-py);
}
.bb-hero__copy { max-width: 570px; }
.bb-hero__eyebrow {
	padding: 7px 15px;
	color: #f6c83d;
	background: rgba(22,21,17,0.72);
	border-color: rgba(251,191,36,0.14);
}
.bb-hero__title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(42px, 6.2vw, 74px);
	line-height: 0.94;
	letter-spacing: -0.045em;
	margin: 30px 0 0;
}
.bb-hero__title .text-gold { display: inline-block; margin-top: 8px; }
.bb-hero__desc { color: #949494; max-width: 505px; margin: 30px 0 0; font-size: 15px; line-height: 1.65; }
.bb-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.bb-hero__actions .btn { min-height: 48px; padding-inline: 25px; }
.bb-play-icon {
	display: inline-grid; place-items: center;
	width: 15px; height: 15px; border: 1px solid currentColor; border-radius: 50%;
	padding-left: 1px;
}
.bb-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 44px;
	padding-top: 27px;
	border-top: 1px solid rgba(255,255,255,0.09);
}
.bb-hero__stats strong { display: block; font-family: var(--font-display); font-size: 27px; line-height: 1; font-weight: 800; letter-spacing: 0.02em; }
.bb-hero__stats span { display: block; margin-top: 8px; font-size: 9px; color: #4f4f54; letter-spacing: 0.1em; text-transform: uppercase; }

.bb-hero__trend {
	position: absolute; z-index: 3;
	/* Overlaps the market panel by design; clamped so it can never be the
	   thing that pushes the page wide on a narrow desktop window. */
	top: 0; left: max(-54px, -6vw);
	width: 160px;
	padding: 12px 16px;
	border: 1px solid rgba(255,255,255,0.1); border-radius: 22px;
	background: rgba(10,11,17,0.82); backdrop-filter: blur(12px);
	box-shadow: 0 14px 40px rgba(0,0,0,0.3);
}
.bb-hero__trend small { display: block; color: #777984; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; }
.bb-hero__trend strong { display: block; margin-top: 4px; color: #f0c93b; font-size: 13px; }
.bb-hero__trend strong span { color: #ff7d18; }

.bb-hero__market {
	position: relative;
	width: 100%; max-width: 500px;
	padding-top: 45px;
	justify-self: end;
}

.bb-hero__widget {
	position: relative;
	width: 100%;
	background: linear-gradient(145deg, rgba(18,18,27,0.88), rgba(8,9,14,0.76));
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 24px;
	padding: 24px 20px 0;
	backdrop-filter: blur(12px);
	box-shadow: 0 28px 70px rgba(0,0,0,0.38);
	overflow: hidden;
}
.bb-widget__head {
	display: flex; align-items: center; gap: 8px;
	font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.17em; color: #8b8992;
}
.bb-pulse-icon {
	display: grid; place-items: center;
	width: 24px; height: 24px; border-radius: 50%;
	border: 1px solid rgba(34,197,94,0.22); background: rgba(34,197,94,0.06); color: var(--success);
	font-size: 17px;
}
.bb-widget__head .bb-badge { margin-left: auto; }
.bb-widget__metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 20px; }
.bb-widget__metrics div {
	background: rgba(14,14,22,0.72); border: 1px solid rgba(255,255,255,0.08); border-radius: 23px;
	padding: 15px 6px 13px; text-align: center;
}
.bb-widget__metrics strong { display: block; font-family: var(--font-display); color: #f4c530; font-weight: 800; font-size: 17px; }
.bb-widget__metrics span { display: block; margin-top: 6px; font-size: 8px; color: #666671; text-transform: uppercase; letter-spacing: 0.07em; }
.bb-widget__label { display: flex; justify-content: space-between; margin-top: 20px; padding-inline: 2px; font-size: 9px; text-transform: uppercase; color: #74727d; letter-spacing: 0.15em; }
.bb-widget__label strong { color: #4995e8; font-size: 8px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.bb-widget__orders { margin-top: 10px; display: flex; flex-direction: column; gap: 8px; }
.bb-widget__orders li {
	display: flex; justify-content: space-between; align-items: center;
	min-height: 60px;
	background: rgba(12,12,18,0.7); border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; padding: 9px 12px;
}
.bb-widget__order-info { display: flex; align-items: center; gap: 10px; }
.bb-widget__order-info strong { display: block; font-size: 11px; font-weight: 600; }
.bb-widget__order-info small { display: block; margin-top: 2px; color: #666671; font-size: 8px; }
.bb-widget__orders .price { padding-left: 8px; color: #f2c526; font-size: 10px; white-space: nowrap; }
.bb-order-thumb {
	display: grid; place-items: center; flex: 0 0 38px;
	width: 38px; height: 38px; border-radius: 50%;
	border: 1px solid rgba(255,191,36,0.22); color: #f4c531;
	background: radial-gradient(circle at 35% 30%, #7b5e13, #171209 72%);
	box-shadow: inset 0 0 12px rgba(251,191,36,0.18);
}
.bb-order-thumb--2 { color: #76bce8; border-color: rgba(65,145,205,0.25); background: radial-gradient(circle at 35% 30%, #254e65, #0b1318 72%); }
.bb-order-thumb--3 { color: #d4aa51; background: radial-gradient(circle at 35% 30%, #5a492a, #15110b 72%); }
.bb-widget__rating {
	display: flex; align-items: center; gap: 12px;
	margin-top: 18px; padding: 13px 14px;
	border: 1px solid rgba(255,255,255,0.08); border-radius: 22px;
	background: rgba(12,12,18,0.7);
}
.bb-rating-avatars { display: flex; }
.bb-rating-avatars span {
	display: grid; place-items: center;
	width: 25px; height: 25px; margin-left: -5px;
	border: 1px solid #171820; border-radius: 50%; background: #252735; color: #aaaab5; font-size: 7px;
}
.bb-rating-avatars span:first-child { margin-left: 0; }
.bb-widget__rating strong { display: block; font-size: 10px; }
.bb-widget__rating .bb-stars { color: #f4c531; letter-spacing: 1px; }
.bb-widget__rating small { display: block; color: #5e5e68; font-size: 7px; }
.bb-widget__secure { display: flex; align-items: center; gap: 5px; margin: 12px -20px 0; padding: 8px 20px 12px; border-top: 1px solid rgba(255,255,255,0.04); color: #4d4d55; font-size: 7px; }
.bb-thumb { width: 34px; height: 34px; border-radius: 8px; background: var(--gold-gradient); flex-shrink: 0; }
.bb-thumb--lg { width: 100%; height: 140px; border-radius: 12px 12px 0 0; }

@media (min-width: 900px) {
	.bb-hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr); }
}

@media (max-width: 899px) {
	.bb-hero {
		background:
			linear-gradient(180deg, rgba(5,5,5,0.82) 0%, rgba(5,5,5,0.94) 46%, rgba(5,5,5,0.97) 100%),
			url('../images/hero-marketplace-bg.webp') 68% top / auto 620px no-repeat;
	}
	.bb-hero__grid { padding-block: calc(68px + var(--section-py)) var(--section-py); }
	.bb-hero__copy { max-width: 600px; }
	.bb-hero__market { justify-self: center; max-width: 600px; }
	.bb-hero__trend { left: 18px; }
}

@media (max-width: 599px) {
	.bb-hero__grid { gap: 38px; padding-block: calc(68px + var(--section-py)) var(--section-py); }
	.bb-hero__market { padding-top: 42px; }
	.bb-hero__trend { top: 0; left: 12px; width: 145px; padding: 9px 13px; }
	.bb-hero__eyebrow { font-size: 9px; }
	.bb-hero__title { margin-top: 22px; font-size: clamp(42px, 14vw, 58px); }
	.bb-hero__desc { margin-top: 23px; font-size: 14px; }
	.bb-hero__actions { margin-top: 28px; }
	.bb-hero__actions .btn { flex: 1 1 145px; justify-content: center; padding-inline: 16px; }
	.bb-hero__stats { margin-top: 34px; padding-top: 22px; gap: 8px; }
	.bb-hero__stats strong { font-size: 21px; }
	.bb-hero__stats span { font-size: 7px; }
	.bb-hero__widget { margin-inline: -4px; padding: 18px 12px 0; border-radius: 19px; }
	.bb-widget__metrics { gap: 6px; }
	.bb-widget__metrics div { border-radius: 17px; padding: 12px 3px; }
	.bb-widget__orders li { padding-inline: 9px; border-radius: 17px; }
	.bb-widget__order-info { gap: 7px; min-width: 0; }
	.bb-widget__order-info div { min-width: 0; }
	.bb-widget__order-info strong { max-width: 155px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
	.bb-order-thumb { flex-basis: 34px; width: 34px; height: 34px; }
	.bb-widget__rating { padding-inline: 10px; }
	.bb-rating-avatars span { width: 22px; height: 22px; }
	.bb-widget__secure { margin-inline: -12px; padding-inline: 12px; }
}

/* =========================================================
   CATEGORY / NEEDS CARDS
   ========================================================= */
.bb-featured {
	position: relative;
	background:
		radial-gradient(circle at 50% 10%, rgba(234,124,31,0.035), transparent 36%),
		#030405;
	overflow: hidden;
}
.bb-featured__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
}
.bb-featured__head > div { max-width: 600px; }
.bb-featured__head .eyebrow {
	padding: 5px 12px;
	border-color: rgba(251,191,36,0.1);
	background: rgba(20,19,15,0.66);
	color: #d4ac31;
	font-size: 8px;
}
.bb-featured__head .bb-h2 {
	max-width: 570px;
	margin-top: 17px;
	font-size: clamp(34px, 4.2vw, 46px);
	line-height: 0.98;
	letter-spacing: -0.04em;
}
.bb-featured__head p { margin: 19px 0 0; color: #77777f; font-size: 12px; }
.bb-featured__browse {
	flex: 0 0 auto;
	min-height: 40px;
	padding: 10px 19px;
	border-color: rgba(255,255,255,0.08);
	background: rgba(14,15,19,0.78);
	color: #aaaab2;
	font-size: 10px;
}
.bb-featured__browse svg { flex-shrink: 0; transition: transform 0.2s ease; }
.bb-featured__browse:hover svg { transform: translateX(3px); }
.bb-featured__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: var(--section-head-gap);
}
.bb-featured-card {
	min-width: 0;
	border: 1px solid rgba(255,255,255,0.09);
	border-radius: 19px;
	background: #08090e;
	overflow: hidden;
	box-shadow: 0 18px 44px rgba(0,0,0,0.22);
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.bb-featured-card:hover {
	transform: translateY(-5px);
	border-color: rgba(251,191,36,0.28);
	box-shadow: 0 24px 54px rgba(0,0,0,0.38);
}
.bb-featured-card__art {
	position: relative;
	min-height: 216px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.bb-featured-card__art::after {
	content: '';
	position: absolute; inset: 0;
	background: var(--img-scrim);
}
.bb-featured-card__badge {
	position: absolute; z-index: 1; top: 12px; left: 12px;
	display: inline-flex; align-items: center; gap: 4px;
	padding: 5px 10px;
	border: 1px solid rgba(251,191,36,0.22); border-radius: 999px;
	background: rgba(9,9,8,0.72); backdrop-filter: blur(8px);
	color: #e6ba2d; font-size: 8px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.bb-featured-card__body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	padding: 14px 18px;
	background: linear-gradient(120deg, #08090e, #05060a);
}
.bb-featured-card__body strong { display: block; font-size: 15px; line-height: 1.2; }
.bb-featured-card__body small { display: block; margin-top: 7px; color: #656671; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; }
.bb-featured-card__arrow {
	display: grid; place-items: center; flex: 0 0 36px;
	width: 36px; height: 36px;
	border: 1px solid rgba(255,255,255,0.08); border-radius: 50%;
	color: #8a8b94;
	transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.bb-featured-card__arrow svg { display: block; }
.bb-featured-card:hover .bb-featured-card__arrow { color: var(--gold-400); border-color: rgba(251,191,36,0.28); transform: translateX(3px); }

@media (max-width: 899px) {
	.bb-featured__head { align-items: flex-start; }
	.bb-featured__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 44px; }
	.bb-featured-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 9px); width: 100%; justify-self: center; }
}

@media (max-width: 599px) {
	.bb-featured__head { display: block; }
	.bb-featured__head .bb-h2 { font-size: 37px; }
	.bb-featured__head p { line-height: 1.6; }
	.bb-featured__browse { margin-top: 24px; }
	.bb-featured__grid { grid-template-columns: 1fr; gap: 16px; margin-top: 34px; }
	.bb-featured-card:last-child { grid-column: auto; max-width: none; }
	.bb-featured-card__art { min-height: 220px; }
}

.bb-needs {
	position: relative;
	background:
		radial-gradient(circle at 24% 38%, rgba(137,88,13,0.13), transparent 33%),
		radial-gradient(circle at 85% 44%, rgba(8,52,112,0.13), transparent 34%),
		linear-gradient(180deg, #050506, #050609);
	overflow: hidden;
}
.bb-needs::after {
	content: '';
	position: absolute; left: 0; right: 0; bottom: 0;
	height: 56px;
	pointer-events: none;
	background:
		radial-gradient(circle, rgba(251,191,36,0.65) 0 1px, transparent 1.5px) 0 100% / 82px 42px repeat-x,
		linear-gradient(transparent, rgba(6,8,14,0.76));
	opacity: 0.65;
}
.bb-needs__head { position: relative; z-index: 1; text-align: center; }
.bb-needs__head .eyebrow {
	padding: 5px 11px;
	border-color: rgba(251,191,36,0.1);
	background: rgba(18,17,13,0.7);
	color: #d5ad31;
	font-size: 7px;
}
.bb-needs__head .bb-h2 {
	max-width: 500px;
	margin: 15px auto 0;
	font-size: clamp(32px, 4vw, 43px);
	line-height: 0.98;
	letter-spacing: -0.045em;
}
.bb-needs__grid {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	width: 100%;
	margin: var(--section-head-gap) auto 0;
}
.bb-need-card {
	position: relative;
	min-width: 0;
	height: 360px;
	border: 1px solid rgba(255,255,255,0.09);
	border-radius: 18px;
	background-color: #0b0b0b;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(0,0,0,0.24);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.bb-need-card::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(4,4,6,0.16) 62%, rgba(4,4,6,0.94) 100%);
}
.bb-need-card:hover {
	transform: translateY(-6px);
	border-color: rgba(251,191,36,0.3);
	box-shadow: 0 25px 50px rgba(0,0,0,0.38);
}
.bb-need-card__content {
	position: absolute; z-index: 1;
	left: 15px; right: 15px; bottom: 17px;
}
.bb-need-card__content strong { display: block; color: #fff; font-size: 13px; line-height: 1.2; }
.bb-need-card__content small { display: block; margin-top: 7px; color: #73737b; font-size: 8px; }

@media (max-width: 767px) {
	.bb-needs__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bb-need-card { height: 330px; }
	.bb-need-card:last-child { grid-column: 1 / -1; width: calc(50% - 7px); justify-self: center; }
}

@media (max-width: 499px) {
	.bb-needs__head .bb-h2 { font-size: 34px; }
	.bb-needs__grid { grid-template-columns: 1fr; gap: 14px; margin-top: 34px; }
	.bb-need-card, .bb-need-card:last-child { grid-column: auto; width: 100%; height: 390px; }
}

.bb-cat-card {
	position: relative;
	height: 200px;
	border-radius: var(--radius-card);
	background-size: cover;
	background-position: center;
	background-color: var(--bg-surface);
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	padding: 16px;
}
.bb-cat-card::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
}
.bb-cat-card__name {
	position: relative; z-index: 1; font-weight: 700; font-size: 16px;
}

/* =========================================================
   PRODUCT CARDS
   ========================================================= */
.bb-wanted {
	position: relative;
	background:
		radial-gradient(circle at 20% 0%, rgba(118,65,11,0.07), transparent 30%),
		linear-gradient(100deg, #050505, #030712);
}
.bb-wanted__head { align-items: center; margin-bottom: var(--section-head-gap); }
.bb-wanted__head .eyebrow {
	padding: 5px 12px;
	border-color: rgba(251,191,36,0.1);
	background: rgba(19,18,14,0.72);
	color: #d5ad31;
	font-size: 8px;
}
.bb-wanted__head .bb-h2 {
	margin-top: 15px;
	font-size: clamp(36px, 4.2vw, 50px);
	letter-spacing: -0.04em;
}
.bb-wanted__all {
	min-height: 42px;
	padding: 11px 22px;
	background: rgba(15,17,23,0.84);
	border-color: rgba(255,255,255,0.08);
	color: #a5a6ad;
	font-size: 11px;
}
.bb-wanted__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}
.bb-wanted-card {
	min-width: 0;
	border: 1px solid rgba(255,255,255,0.12);
	border-top-color: rgba(251,191,36,0.2);
	border-radius: 22px;
	background: linear-gradient(160deg, #0b0c12, #07080d);
	overflow: hidden;
	/* Column flex so __footer can sit at the bottom. Without it the grid
	   stretched the card boxes but left the price rows at ragged heights
	   whenever a title wrapped to a different number of lines. */
	display: flex;
	flex-direction: column;
	box-shadow: 0 18px 45px rgba(0,0,0,0.22);
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.bb-wanted-card:hover {
	transform: translateY(-5px);
	border-color: rgba(251,191,36,0.3);
	box-shadow: 0 26px 56px rgba(0,0,0,0.38);
}
.bb-wanted-card__art {
	position: relative;
	display: block;
	aspect-ratio: 1.42 / 1;
	margin: 12px 12px 0;
	border-radius: 17px;
	background-size: cover;
	background-position: center 59%;
	overflow: hidden;
}
.bb-wanted-card__art::after {
	content: '';
	position: absolute; inset: 0;
	background: var(--img-scrim);
}
.bb-wanted-card__discount,
.bb-wanted-card__urgent {
	position: absolute; z-index: 1; left: 10px;
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 8px; font-weight: 800; text-transform: uppercase;
}
.bb-wanted-card__discount { top: 10px; color: #2b2306; background: #ffd447; }
.bb-wanted-card__urgent { top: 37px; color: #fff; background: #d93c50; }
.bb-wanted-card__content { display: flex; flex-direction: column; flex: 1; padding: 15px 18px 16px; }
.bb-wanted-card__rating { color: #dadbe0; font-size: 10px; font-weight: 600; }
.bb-wanted-card__rating > span { color: #ffc62f; margin-right: 3px; }
.bb-wanted-card__rating small { color: #666873; font-weight: 400; }
.bb-wanted-card h3 {
	min-height: 36px;
	margin: 10px 0 12px;
	font-size: 13px;
	line-height: 1.35;
	font-weight: 700;
}
.bb-wanted-card h3 a:hover { color: var(--gold-400); }
.bb-wanted-card__availability { display: flex; justify-content: space-between; align-items: center; }
.bb-wanted-card__availability span { color: #13c785; font-size: 9px; }
.bb-wanted-card.is-urgent .bb-wanted-card__availability span { color: #ff4964; }
.bb-wanted-card__availability small { color: #62636d; font-size: 8px; }
.bb-wanted-card__stock {
	height: 3px;
	margin-top: 10px;
	border-radius: 99px;
	background: #23242b;
	overflow: hidden;
}
.bb-wanted-card__stock i {
	display: block; height: 100%; border-radius: inherit;
	background: linear-gradient(90deg, #f6d343, #f37721);
}
.bb-wanted-card.is-urgent .bb-wanted-card__stock i { background: #ef4657; }
.bb-wanted-card__footer { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: 18px; }
.bb-wanted-card__footer del { display: block; color: #5f6069; font-size: 9px; }
.bb-wanted-card__footer strong { display: block; margin-top: 3px; color: #f9c533; font-size: 18px; line-height: 1; }
.bb-wanted-card__cart {
	display: grid; place-items: center; flex: 0 0 38px;
	width: 38px; height: 38px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ffd74d, #ff9b22);
	color: #211804;
	box-shadow: 0 8px 20px rgba(245,158,11,0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bb-wanted-card__cart:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 10px 24px rgba(245,158,11,0.3); }

@media (max-width: 999px) {
	.bb-wanted__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bb-wanted-card__art { aspect-ratio: 1.65 / 1; }
}

@media (max-width: 599px) {
	.bb-wanted__head { display: block; margin-bottom: 36px; }
	.bb-wanted__head .bb-h2 { font-size: 38px; }
	.bb-wanted__all { margin-top: 22px; }
	.bb-wanted__grid { grid-template-columns: 1fr; gap: 16px; }
	.bb-wanted-card__art { aspect-ratio: 1.52 / 1; }
	.bb-wanted-card h3 { min-height: 0; font-size: 14px; }
}

.bb-premium {
	background:
		radial-gradient(circle at 50% 5%, rgba(124,67,8,0.07), transparent 30%),
		#040405;
	overflow: hidden;
}
.bb-premium__head { text-align: center; }
.bb-premium__head .eyebrow {
	padding: 5px 12px;
	border-color: rgba(251,191,36,0.1);
	background: rgba(19,18,14,0.72);
	color: #d5ad31;
	font-size: 8px;
}
.bb-premium__head .bb-h2 {
	margin-top: 18px;
	font-size: clamp(38px, 4.5vw, 54px);
	line-height: 0.96;
	letter-spacing: -0.045em;
}
.bb-premium__slider { margin-top: var(--section-head-gap); }
.bb-premium__viewport {
	overflow-x: auto;
	/* `hidden` here clipped the cards' hover lift and their drop shadow.
	   Padding + negative margin gives that motion room without adding a
	   second scrollbar. */
	overflow-y: visible;
	margin-block: -18px;
	padding-block: 18px;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	overscroll-behavior-inline: contain;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.bb-premium__viewport::-webkit-scrollbar { display: none; }
.bb-premium__track { display: flex; gap: 20px; align-items: stretch; }
.bb-premium-card {
	flex: 0 0 calc((100% - 60px) / 4);
	scroll-snap-align: start;
	scroll-snap-stop: always;
	cursor: pointer;
}
/* Selected card. Sits alongside the existing .is-urgent state and reuses the
   hover treatment so selection reads as a stronger version of the same idea. */
.bb-premium-card.is-active {
	border-color: rgba(251,191,36,0.62);
	border-top-color: rgba(251,191,36,0.8);
	transform: translateY(-5px);
	box-shadow: 0 26px 56px rgba(0,0,0,0.4), 0 0 0 1px rgba(251,191,36,0.28), 0 0 34px rgba(251,191,36,0.12);
}
.bb-premium-card.is-active .bb-wanted-card__cart {
	background: var(--gold-gradient);
	border-color: transparent;
	color: #191104;
}
.bb-premium-card .bb-wanted-card__art { aspect-ratio: 1.35 / 1; }
.bb-premium__controls { display: flex; align-items: center; gap: 10px; margin-top: 40px; }
.bb-premium__arrow {
	display: grid; place-items: center;
	width: 40px; height: 40px; flex: 0 0 40px;
	border: 1px solid rgba(255,255,255,0.09); border-radius: 50%;
	background: #06070a; color: #92939b;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.bb-premium__arrow:hover:not(:disabled) { color: var(--gold-400); border-color: rgba(251,191,36,0.3); background: #0e0d09; }
.bb-premium__arrow:disabled { opacity: 0.3; cursor: default; }
.bb-premium__progress {
	position: relative;
	flex: 1;
	height: 2px;
	margin-left: 10px;
	background: rgba(255,255,255,0.07);
}
.bb-premium__progress i {
	position: absolute; top: 0; left: 0;
	height: 100%;
	background: linear-gradient(90deg, #b89024, #f17722);
	transform-origin: left center;
	transition: width 0.25s ease;
}

@media (max-width: 999px) {
	.bb-premium-card { flex-basis: calc((100% - 20px) / 2); }
	.bb-premium-card .bb-wanted-card__art { aspect-ratio: 1.55 / 1; }
}

@media (max-width: 599px) {
	.bb-premium__head .bb-h2 { font-size: 39px; }
	.bb-premium__slider { margin-top: 42px; }
	.bb-premium__track { gap: 14px; }
	.bb-premium-card { flex-basis: 88%; }
	.bb-premium-card .bb-wanted-card__art { aspect-ratio: 1.5 / 1; }
	.bb-premium__controls { margin-top: 28px; }
}

.bb-product-card {
	position: relative;
	background: var(--bg-surface);
	border: 1px solid var(--bg-border);
	border-radius: var(--radius-card);
	padding: 0 14px 16px;
	overflow: hidden;
}
.bb-product-card__img { margin: 0 -14px 12px; background: var(--bg-raised); }
.bb-product-card .bb-badge { position: absolute; top: 12px; left: 12px; }
.bb-product-card h3 { font-size: 14px; font-weight: 600; margin: 0 0 10px; line-height: 1.3; min-height: 36px; }
.bb-product-card__meta { display: flex; justify-content: space-between; align-items: center; }
.bb-rating { font-size: 12px; color: var(--gold-400); }
.price { font-weight: 700; font-size: 14px; }
.bb-add-btn {
	position: absolute; bottom: 16px; right: 14px;
	width: 30px; height: 30px; border-radius: 50%;
	background: var(--gold-gradient); color: #1A1305;
	display: flex; align-items: center; justify-content: center;
	font-weight: 700;
}

/* =========================================================
   COUNTDOWN
   ========================================================= */
.bb-countdown {
	background:
		radial-gradient(circle at 30% 30%, rgba(119,67,8,0.07), transparent 30%),
		linear-gradient(90deg, #050505, #030711);
}
.bb-countdown__card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
	align-items: center;
	gap: 48px;
	min-height: 310px;
	padding: 46px 62px;
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 32px;
	background:
		linear-gradient(90deg, rgba(6,6,7,0.98) 0%, rgba(6,6,7,0.79) 43%, rgba(4,6,10,0.25) 100%),
		url('../images/countdown-waves.webp') center / cover no-repeat;
	box-shadow: 0 28px 65px rgba(0,0,0,0.32);
	overflow: hidden;
}
.bb-countdown__card::after {
	content: '';
	position: absolute; inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(0,0,0,0.12));
}
.bb-countdown__copy, .bb-countdown__timer { position: relative; z-index: 1; }
.bb-countdown__copy .eyebrow {
	padding: 6px 12px;
	background: rgba(13,13,16,0.76);
	border-color: rgba(255,255,255,0.08);
	color: #f47a2e;
	font-size: 8px;
}
.bb-countdown__copy .bb-h2 {
	margin-top: 18px;
	font-size: clamp(34px, 3.8vw, 48px);
	letter-spacing: -0.045em;
}
.bb-countdown__copy p { max-width: 450px; margin: 20px 0 0; color: #85858e; font-size: 13px; line-height: 1.65; }
.bb-countdown__cta { margin-top: 28px; padding: 11px 20px; font-size: 11px; }
.bb-countdown__cta svg { transition: transform 0.2s ease; }
.bb-countdown__cta:hover svg { transform: translateX(3px); }
.bb-countdown__timer { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.bb-countdown__timer div {
	display: grid; place-content: center;
	min-width: 0; min-height: 112px;
	background: linear-gradient(145deg, rgba(17,17,26,0.94), rgba(8,9,15,0.9));
	border: 1px solid rgba(255,255,255,0.09); border-radius: 28px;
	padding: 16px 8px; text-align: center;
	box-shadow: inset 0 1px rgba(255,255,255,0.02), 0 14px 35px rgba(0,0,0,0.2);
}
.bb-countdown__timer span { display: block; font-family: var(--font-display); font-size: 38px; line-height: 1; font-weight: 800; color: #fff; }
.bb-countdown__timer small { display: block; margin-top: 12px; font-size: 7px; letter-spacing: 0.18em; color: #686873; text-transform: uppercase; }

@media (max-width: 999px) {
	.bb-countdown__card { grid-template-columns: 1fr; gap: 36px; padding: 44px; }
	.bb-countdown__copy { text-align: center; }
	.bb-countdown__copy p { margin-inline: auto; }
	.bb-countdown__timer { width: 100%; max-width: 520px; margin-inline: auto; }
}

@media (max-width: 599px) {
	.bb-countdown__card { gap: 30px; padding: 30px 16px 22px; border-radius: 22px; }
	.bb-countdown__copy .bb-h2 { font-size: 37px; }
	.bb-countdown__copy p { font-size: 12px; }
	.bb-countdown__cta { margin-top: 22px; }
	.bb-countdown__timer { gap: 7px; }
	.bb-countdown__timer div { min-height: 92px; border-radius: 20px; padding-inline: 3px; }
	.bb-countdown__timer span { font-size: 29px; }
	.bb-countdown__timer small { margin-top: 9px; font-size: 6px; }
}

/* =========================================================
   LOYALTY
   ========================================================= */
.bb-loyalty-section {
	position: relative;
	background:
		radial-gradient(circle at 20% 46%, rgba(121,68,8,0.09), transparent 30%),
		radial-gradient(circle at 88% 42%, rgba(7,42,91,0.12), transparent 32%),
		linear-gradient(90deg, #050505, #030711);
	overflow: hidden;
}
.bb-loyalty-section::after {
	content: '';
	position: absolute; left: 0; right: 0; bottom: 0;
	height: 45px;
	background: radial-gradient(circle, rgba(251,191,36,0.55) 0 1px, transparent 1.5px) 0 100% / 108px 38px repeat-x;
	opacity: 0.45;
	pointer-events: none;
}
.bb-loyalty { position: relative; z-index: 1; display: grid; gap: 52px; align-items: stretch; }
.bb-loyalty__img {
	position: relative;
	/* Fills the row rather than sitting at a fixed 460px next to a taller
	   text column, which left the two halves visibly out of alignment. */
	height: 100%;
	min-height: 460px;
	border-radius: 28px;
	background:
		var(--img-scrim),
		url('../images/category-rewards.webp') center / cover no-repeat;
	border: 1px solid rgba(255,255,255,0.1);
	box-shadow: 0 28px 60px rgba(0,0,0,0.32);
	overflow: hidden;
}
.bb-loyalty__credit {
	position: absolute; left: 18px; right: 18px; bottom: 18px;
	padding: 16px 18px;
	background: rgba(8,9,15,0.9); backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
	box-shadow: 0 16px 38px rgba(0,0,0,0.3);
}
.bb-loyalty__credit small { display: block; color: #777782; font-size: 8px; letter-spacing: 0.15em; text-transform: uppercase; }
.bb-loyalty__credit strong { display: block; margin-top: 7px; color: #f5c533; font-size: 17px; }
.bb-loyalty__credit > span { display: block; height: 4px; margin-top: 13px; border-radius: 99px; background: #25262d; overflow: hidden; }
.bb-loyalty__credit > span i { display: block; width: 78%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #f5d244, #f37821); }
.bb-loyalty__content .eyebrow {
	padding: 5px 12px;
	border-color: rgba(251,191,36,0.1);
	background: rgba(18,17,13,0.72);
	color: #d5ad31;
	font-size: 8px;
}
.bb-loyalty__content .bb-h2 {
	max-width: 510px;
	margin-top: 18px;
	font-size: clamp(38px, 4.3vw, 53px);
	line-height: 0.94;
	letter-spacing: -0.045em;
}
.bb-loyalty__content .bb-h2 .text-gold { display: block; }
.bb-loyalty__content > p { max-width: 600px; margin: 22px 0 0; color: #777781; font-size: 12px; line-height: 1.65; }
/* grid-auto-rows: 1fr makes Silver/Gold/Obsidian share one height. The old
   flex column with min-height: 88px only set a floor, so any tier whose meta
   text wrapped grew taller than its siblings. */
.bb-tiers { display: grid; grid-auto-rows: 1fr; gap: 12px; margin-top: var(--section-head-gap); }
.bb-tiers li {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 13px;
	min-height: 88px;
	background: linear-gradient(145deg, rgba(13,14,22,0.94), rgba(7,8,13,0.92));
	border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 14px 18px;
	color: var(--ink-muted);
}
.bb-tier-icon {
	display: grid; place-items: center;
	width: 34px; height: 34px;
	border: 1px solid rgba(251,191,36,0.12); border-radius: 50%;
	background: rgba(251,191,36,0.04); color: #d9ae2b;
}
.bb-tier-info { min-width: 0; }
.bb-tier-info strong { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 12px; }
.bb-tier-info em { padding: 3px 7px; border-radius: 999px; background: rgba(251,191,36,0.07); color: #e0b72f; font-size: 7px; font-style: normal; text-transform: uppercase; }
.bb-tier-info > small { display: block; margin-top: 4px; color: #6d6e78; font-size: 9px; }
.bb-tier-progress { display: block; height: 3px; margin-top: 15px; border-radius: 99px; background: #292a31; overflow: hidden; }
.bb-tier-progress i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #f3d13e, #f47420); }
.bb-tier-meta { align-self: stretch; display: flex; min-width: 120px; flex-direction: column; justify-content: space-between; text-align: right; }
.bb-tier-meta span { white-space: nowrap; color: #5d5e68; font-size: 7px; letter-spacing: 0.12em; text-transform: uppercase; }
.bb-tier-meta small { color: #92939b; font-size: 7px; }

@media (min-width: 900px) {
	.bb-loyalty { grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr); }
}

@media (max-width: 899px) {
	.bb-loyalty { max-width: 720px; margin-inline: auto; }
	.bb-loyalty__img { min-height: 520px; }
	.bb-loyalty__content { text-align: center; }
	.bb-loyalty__content .bb-h2, .bb-loyalty__content > p { margin-inline: auto; }
	.bb-tiers { text-align: left; }
}

@media (max-width: 599px) {
	.bb-loyalty { gap: 38px; }
	.bb-loyalty__img { min-height: 390px; border-radius: 22px; }
	.bb-loyalty__credit { left: 12px; right: 12px; bottom: 12px; }
	.bb-loyalty__content .bb-h2 { font-size: 39px; }
	.bb-tiers { margin-top: 36px; }
	.bb-tiers li { grid-template-columns: auto 1fr; border-radius: 19px; padding: 13px; }
	.bb-tier-meta { grid-column: 2; width: 100%; min-width: 0; margin-top: -5px; flex-direction: row; }
}

/* =========================================================
   TESTIMONIAL
   ========================================================= */
.bb-reviews-section {
	background:
		radial-gradient(circle at 18% 18%, rgba(120,70,10,0.08), transparent 30%),
		radial-gradient(circle at 90% 65%, rgba(7,45,100,0.12), transparent 34%),
		linear-gradient(90deg, #050505, #030711);
}
.bb-testimonial__head { text-align: center; }
.bb-testimonial__head .eyebrow {
	padding: 6px 14px;
	background: rgba(17,17,18,0.78);
	border-color: rgba(255,255,255,0.08);
	color: #d8ae2d;
	font-size: 8px;
}
.bb-testimonial__head .bb-h2 {
	margin-top: 22px;
	font-size: clamp(40px, 5vw, 58px);
	line-height: 0.96;
	letter-spacing: -0.045em;
}
.bb-testimonial__grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(330px, 0.9fr); gap: 20px; margin-top: var(--section-head-gap); }
.bb-testimonial__card, .bb-testimonial__score {
	min-height: 295px;
	border: 1px solid rgba(255,255,255,0.11);
	border-radius: 28px;
	background: linear-gradient(145deg, rgba(13,14,22,0.96), rgba(7,8,13,0.96));
	box-shadow: 0 24px 58px rgba(0,0,0,0.24);
}
.bb-testimonial__slider { display: grid; min-width: 0; }
.bb-testimonial__card {
	grid-area: 1 / 1;
	display: flex; flex-direction: column; margin: 0; padding: 38px 42px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
}
.bb-testimonial__card.is-active { opacity: 1; visibility: visible; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.bb-testimonial__card { transition: none; }
}
.bb-testimonial__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.bb-review-stars { display: inline-flex; gap: 4px; }
.bb-review-stars i {
	display: grid; place-items: center;
	width: 19px; height: 19px;
	border-radius: 2px;
	background: #19cda1; color: #07110e;
	font-size: 12px; font-style: normal;
}
.bb-verified-review { display: inline-flex; align-items: center; gap: 6px; color: #14c89d; font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.bb-testimonial__card > p { max-width: 720px; margin: 32px 0 0; color: #b1b2bc; font-size: clamp(18px, 2.2vw, 25px); line-height: 1.55; }
.bb-testimonial__footer { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 26px; margin-top: auto; padding-top: 28px; }
.bb-reviewer { display: flex; align-items: center; gap: 13px; }
.bb-reviewer__avatar {
	position: relative;
	display: grid; place-items: center;
	width: 44px; height: 44px;
	border: 1px solid rgba(251,191,36,0.28); border-radius: 50%;
	background: #151319; color: #e4ba36; font-size: 11px; font-weight: 700;
}
.bb-reviewer__avatar i {
	position: absolute; right: -3px; bottom: -1px;
	display: grid; place-items: center;
	width: 14px; height: 14px; border-radius: 50%;
	background: #041c17; border: 1px solid #12c596; color: #12c596; font-size: 8px; font-style: normal;
}
.bb-reviewer cite { font-style: normal; }
.bb-reviewer cite strong { display: block; color: #eeeef2; font-size: 11px; }
.bb-reviewer cite small { display: block; margin-top: 4px; color: #686973; font-size: 8px; }
.bb-review-media {
	position: relative;
	display: grid; place-items: center;
	width: 100px; height: 55px;
	border-radius: 20px;
	background-size: cover; background-position: center;
	overflow: hidden;
}
.bb-review-media::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.bb-review-media > span { position: relative; display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: rgba(251,191,36,0.86); color: #191104; font-size: 9px; }
.bb-review-media small { position: absolute; right: 7px; bottom: 5px; color: #d6d6da; font-size: 7px; }
.bb-review-pages { display: flex; gap: 7px; align-self: end; padding-bottom: 7px; }
.bb-review-pages button {
	width: 17px; height: 4px; padding: 0;
	border: 0; border-radius: 99px;
	background: #24252b;
	cursor: pointer;
	transition: width 0.3s ease, background 0.3s ease;
}
.bb-review-pages button:hover { background: #3a3b44; }
.bb-review-pages button.is-active { width: 28px; background: #f3c23b; }
.bb-testimonial__score {
	position: relative;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	padding: 30px;
	text-align: center;
	background:
		linear-gradient(rgba(6,8,13,0.72), rgba(6,8,13,0.82)),
		url('../images/countdown-waves.webp') center / cover no-repeat;
	overflow: hidden;
}
.bb-testimonial__score strong {
	display: block;
	font-family: var(--font-display);
	font-size: 56px;
	line-height: 1;
	background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bb-testimonial__score .bb-review-stars { margin-top: 18px; }
.bb-testimonial__score p { margin: 17px 0 0; color: #a0a0a8; font-size: 11px; }
.bb-testimonial__score > small { margin-top: 27px; color: #787983; font-size: 8px; letter-spacing: 0.24em; text-transform: uppercase; }

@media (max-width: 899px) {
	.bb-testimonial__grid { grid-template-columns: 1fr; max-width: 760px; margin: 54px auto 0; }
	.bb-testimonial__score { min-height: 260px; }
}

@media (max-width: 599px) {
	.bb-testimonial__head .bb-h2 { font-size: 40px; }
	.bb-testimonial__grid { margin-top: 40px; }
	.bb-testimonial__card, .bb-testimonial__score { border-radius: 21px; }
	.bb-testimonial__card { padding: 24px 20px; }
	.bb-testimonial__top { align-items: flex-start; }
	.bb-verified-review { max-width: 100px; justify-content: flex-end; text-align: right; font-size: 7px; }
	.bb-testimonial__card > p { margin-top: 26px; font-size: 18px; }
	.bb-testimonial__footer { grid-template-columns: 1fr auto; gap: 18px; }
	.bb-review-pages { grid-column: 1 / -1; justify-self: center; padding: 0; }
	.bb-review-media { width: 78px; height: 48px; }
	.bb-reviewer cite small { max-width: 145px; line-height: 1.4; }
}

/* =========================================================
   TRUST GRID
   ========================================================= */
.bb-trust-section {
	background:
		radial-gradient(circle at 22% 26%, rgba(117,62,8,0.07), transparent 30%),
		radial-gradient(circle at 86% 63%, rgba(6,43,98,0.11), transparent 34%),
		linear-gradient(90deg, #050505, #030711);
}
.bb-trust-section__head { text-align: center; }
.bb-trust-section__head .eyebrow {
	padding: 6px 14px;
	background: rgba(17,17,18,0.78);
	border-color: rgba(255,255,255,0.08);
	color: #d9af2d;
	font-size: 8px;
}
.bb-trust-section__head .bb-h2 {
	margin-top: 21px;
	font-size: clamp(40px, 5vw, 58px);
	line-height: 0.96;
	letter-spacing: -0.045em;
}
.bb-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: var(--section-head-gap);
}
.bb-trust-card {
	min-height: 175px;
	background: linear-gradient(145deg, rgba(13,14,22,0.95), rgba(7,8,13,0.94));
	border: 1px solid rgba(255,255,255,0.11);
	border-top-color: rgba(251,191,36,0.19);
	border-radius: 24px;
	padding: 27px;
	text-align: left;
	box-shadow: 0 18px 42px rgba(0,0,0,0.18);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.bb-trust-card:hover { transform: translateY(-4px); border-color: rgba(251,191,36,0.28); box-shadow: 0 24px 52px rgba(0,0,0,0.3); }
.bb-trust-card__icon {
	display: grid; place-items: center;
	width: 45px; height: 45px;
	border: 1px solid rgba(255,255,255,0.08); border-radius: 50%;
	background: rgba(255,255,255,0.025);
	color: #e2b42d;
}
.bb-trust-card h4 { margin: 25px 0 0; font-size: 15px; }
.bb-trust-card p { margin: 13px 0 0; font-size: 11px; color: #74757e; }

@media (max-width: 899px) {
	.bb-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 54px; }
}

@media (max-width: 549px) {
	.bb-trust-section__head .bb-h2 { font-size: 40px; }
	.bb-trust-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
	.bb-trust-card { min-height: 160px; padding: 24px; }
	.bb-trust-card h4 { margin-top: 20px; }
}

/* =========================================================
   STATS BAR
   ========================================================= */
.bb-stats-bar {
	background:
		radial-gradient(circle at 20% 55%, rgba(111,59,8,0.06), transparent 30%),
		linear-gradient(90deg, #050505, #030711);
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bb-stats-bar__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	min-height: 170px;
	align-items: center;
	padding: 30px 46px;
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 34px;
	background: linear-gradient(145deg, rgba(13,14,22,0.96), rgba(7,8,13,0.95));
	box-shadow: 0 24px 58px rgba(0,0,0,0.24);
	text-align: center;
}
.bb-stats-bar__grid strong {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(31px, 3.5vw, 46px);
	line-height: 1;
	font-weight: 700;
	background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bb-stats-bar__grid span { display: block; margin-top: 13px; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: #74757f; }

@media (max-width: 899px) {
	.bb-stats-bar__grid { grid-template-columns: repeat(3, 1fr); gap: 28px 12px; padding-block: 38px; }
	.bb-stats-bar__grid div:nth-child(4) { grid-column: 1 / 2; }
}

@media (max-width: 549px) {
	.bb-stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 10px; padding: 34px 12px; border-radius: 23px; }
	.bb-stats-bar__grid div:nth-child(4) { grid-column: auto; }
	.bb-stats-bar__grid div:last-child { grid-column: 1 / -1; }
	.bb-stats-bar__grid strong { font-size: 32px; }
	.bb-stats-bar__grid span { font-size: 7px; }
}

/* =========================================================
   FAQ
   ========================================================= */
.bb-faq-section {
	background:
		radial-gradient(circle at 18% 75%, rgba(117,61,8,0.06), transparent 28%),
		radial-gradient(circle at 88% 50%, rgba(6,40,91,0.1), transparent 32%),
		linear-gradient(90deg, #050505, #030711);
}
.bb-faq-section__head { text-align: center; }
.bb-faq-section__head .eyebrow {
	padding: 6px 13px;
	background: rgba(18,17,16,0.78);
	border-color: rgba(255,255,255,0.08);
	color: #d8ad2c;
	font-size: 8px;
}
.bb-faq-section__head .bb-h2 {
	margin-top: 21px;
	font-size: clamp(42px, 5vw, 58px);
	line-height: 0.95;
	letter-spacing: -0.045em;
}
.bb-faq { max-width: 720px; margin: var(--section-head-gap) auto 0; display: flex; flex-direction: column; gap: 14px; }
.bb-faq__item {
	background: linear-gradient(145deg, rgba(13,14,22,0.96), rgba(7,8,13,0.95));
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 28px;
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.bb-faq__item.is-open { border-color: rgba(255,255,255,0.14); box-shadow: 0 20px 48px rgba(0,0,0,0.2); }
.bb-faq__question {
	display: flex; align-items: center; justify-content: space-between; gap: 20px;
	width: 100%; min-height: 72px;
	padding: 20px 24px;
	border: 0; background: transparent; color: #e7e7eb;
	font-size: 13px; font-weight: 600; text-align: left;
}
.bb-faq__question i {
	position: relative; flex: 0 0 34px;
	width: 34px; height: 34px;
	border: 1px solid rgba(255,255,255,0.08); border-radius: 50%;
}
.bb-faq__question i::before,
.bb-faq__question i::after {
	content: '';
	position: absolute; top: 50%; left: 50%;
	width: 10px; height: 1.5px;
	border-radius: 2px; background: #d8ad2c;
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.bb-faq__question i::after { transform: translate(-50%, -50%) rotate(90deg); }
.bb-faq__item.is-open .bb-faq__question i::after { transform: translate(-50%, -50%) rotate(0); opacity: 0; }
.bb-faq__panel {
	display: grid;
	grid-template-rows: 0fr;
	opacity: 0;
	transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}
.bb-faq__panel > div { min-height: 0; overflow: hidden; }
.bb-faq__panel p { margin: 0; padding: 0 24px 24px; color: #777882; font-size: 12px; line-height: 1.7; }
.bb-faq__item.is-open .bb-faq__panel { grid-template-rows: 1fr; opacity: 1; }

@media (max-width: 599px) {
	.bb-faq-section__head .bb-h2 { font-size: 40px; }
	.bb-faq { margin-top: 42px; gap: 11px; }
	.bb-faq__item { border-radius: 21px; }
	.bb-faq__question { min-height: 66px; padding: 17px 16px; font-size: 12px; }
	.bb-faq__question i { flex-basis: 32px; width: 32px; height: 32px; }
	.bb-faq__panel p { padding: 0 16px 20px; font-size: 11px; }
}

/* =========================================================
   TRUSTED PARTNERS MARQUEE
   ========================================================= */
.bb-partners {
	border-bottom: 1px solid rgba(255,255,255,0.06);
	background:
		radial-gradient(circle at 35% 100%, rgba(116,61,8,0.08), transparent 35%),
		linear-gradient(90deg, #050505, #030711);
	overflow: hidden;
}
.bb-partners__head { text-align: center; margin-bottom: var(--section-head-gap); }
.bb-partners__head .bb-h2 { margin-top: 18px; }
.bb-partners__marquee {
	width: 100%;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.bb-partners__track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: bb-partners-scroll 34s linear infinite;
}
.bb-partners__marquee:hover .bb-partners__track { animation-play-state: paused; }
.bb-partners__group { display: flex; gap: 18px; padding-right: 18px; }
.bb-partners__group span {
	display: grid; place-items: center;
	width: 158px; height: 72px;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 28px;
	background: linear-gradient(145deg, rgba(16,16,19,0.84), rgba(9,9,11,0.78));
	color: #777882;
	font-size: 12px;
	white-space: nowrap;
	box-shadow: inset 0 1px rgba(255,255,255,0.015);
}
@keyframes bb-partners-scroll {
	to { transform: translateX(-50%); }
}

@media (max-width: 599px) {
	.bb-partners__head .bb-h2 { margin-top: 14px; }
	.bb-partners__group { gap: 12px; padding-right: 12px; }
	.bb-partners__group span { width: 132px; height: 62px; border-radius: 22px; font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
	.bb-partners__track { animation: none !important; }
	.bb-partners__marquee { overflow-x: auto; overflow-y: hidden; -webkit-mask-image: none; mask-image: none; }
	.bb-partners__group + .bb-partners__group { display: none; }
}

/* =========================================================
   NEWSLETTER
   ========================================================= */
.bb-newsletter {
	background:
		radial-gradient(circle at 20% 30%, rgba(112,60,8,0.07), transparent 30%),
		linear-gradient(90deg, #050505, #030711);
}
.bb-newsletter__card {
	position: relative;
	min-height: 320px;
	padding: 58px 30px;
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 32px;
	background:
		linear-gradient(rgba(5,6,9,0.6), rgba(5,6,9,0.72)),
		url('../images/countdown-waves.webp') center / cover no-repeat;
	box-shadow: 0 26px 65px rgba(0,0,0,0.3);
	text-align: center;
	overflow: hidden;
}
.bb-newsletter__card .bb-h2 {
	margin: 0;
	font-size: clamp(38px, 4.4vw, 51px);
	line-height: 0.96;
	letter-spacing: -0.045em;
}
.bb-newsletter__card p { margin: 22px 0 0; color: #8a8b94; font-size: 11px; }
.bb-newsletter__form {
	display: flex;
	gap: 10px;
	width: 100%; max-width: 430px;
	margin: 34px auto 0;
}
.bb-newsletter__form input {
	min-width: 0; flex: 1;
	background: rgba(15,15,19,0.78);
	border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-pill);
	padding: 13px 20px; color: var(--ink); font-size: 11px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bb-newsletter__form input:focus { border-color: rgba(251,191,36,0.5); box-shadow: 0 0 0 3px rgba(251,191,36,0.07); }
.bb-newsletter__form input::placeholder { color: #686973; }
.bb-newsletter__form .btn { flex: 0 0 auto; min-width: 106px; justify-content: center; padding: 12px 20px; }
.bb-newsletter .screen-reader-text {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (max-width: 599px) {
	.bb-newsletter__card { min-height: 0; padding: 44px 18px; border-radius: 23px; }
	.bb-newsletter__card .bb-h2 { font-size: 38px; }
	.bb-newsletter__card p { font-size: 10px; line-height: 1.6; }
	.bb-newsletter__form { flex-direction: column; margin-top: 28px; }
	.bb-newsletter__form input, .bb-newsletter__form .btn { width: 100%; min-height: 46px; }
}

/* =========================================================
   COMMUNITY FEED
   ========================================================= */
.bb-community-section {
	background:
		radial-gradient(circle at 78% 20%, rgba(5,43,99,0.1), transparent 30%),
		linear-gradient(90deg, #050505, #030711);
}
.bb-community-section__head { text-align: center; }
.bb-community-section__head .eyebrow {
	padding: 6px 14px;
	background: rgba(18,17,16,0.76);
	border-color: rgba(255,255,255,0.08);
	color: #d9ae2c;
	font-size: 8px;
}
.bb-community-section__head .bb-h2 {
	margin-top: 21px;
	font-size: clamp(42px, 5vw, 58px);
	line-height: 0.95;
	letter-spacing: -0.045em;
}
.bb-community-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; margin-top: var(--section-head-gap); }
.bb-community-item {
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: 22px;
	background-color: var(--bg-surface);
	background-size: cover;
	background-position: center;
	border: 1px solid rgba(255,255,255,0.1);
	overflow: hidden;
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.bb-community-item::after {
	content: '';
	position: absolute; inset: 0;
	background: var(--img-scrim);
}
.bb-community-item:hover { transform: translateY(-5px) scale(1.015); border-color: rgba(251,191,36,0.28); box-shadow: 0 22px 44px rgba(0,0,0,0.34); }

@media (max-width: 999px) {
	.bb-community-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 52px; }
}

@media (max-width: 599px) {
	.bb-community-section__head .bb-h2 { font-size: 40px; }
	.bb-community-grid {
		display: flex;
		gap: 12px;
		margin: 42px -20px 0;
		padding-inline: 20px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}
	.bb-community-grid::-webkit-scrollbar { display: none; }
	.bb-community-item { flex: 0 0 74vw; max-width: 290px; border-radius: 20px; scroll-snap-align: center; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.bb-footer {
	padding-top: 72px;
	background:
		radial-gradient(circle at 21% 58%, rgba(119,64,9,0.11), transparent 32%),
		radial-gradient(circle at 91% 45%, rgba(5,42,96,0.13), transparent 36%),
		linear-gradient(90deg, #060606, #030711);
	border-top: 1px solid rgba(255,255,255,0.07);
}
.bb-footer__top { display: grid; grid-template-columns: minmax(280px, 2.2fr) repeat(4, minmax(110px, 1fr)); gap: 48px; padding-bottom: 62px; }
.bb-footer__brand .bb-logo__text { font-size: 15px; }
.bb-footer__tagline { color: #777881; font-size: 11px; line-height: 1.7; margin: 28px 0 0; max-width: 390px; }
.bb-footer__socials { display: flex; gap: 10px; margin-top: 30px; }
.bb-footer__socials a {
	display: grid; place-items: center;
	width: 42px; height: 42px;
	border: 1px solid rgba(255,255,255,0.09); border-radius: 50%;
	color: #92939b;
	transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.bb-footer__socials a:hover { color: var(--gold-400); border-color: rgba(251,191,36,0.3); transform: translateY(-2px); }
.bb-footer__escrow {
	display: inline-flex; align-items: center; gap: 9px;
	margin-top: 28px; padding: 10px 16px;
	border: 1px solid rgba(255,255,255,0.08); border-radius: 999px;
	background: rgba(255,255,255,0.025); color: #777881; font-size: 10px;
}
.bb-footer__escrow svg { color: #13bf91; }
.bb-footer__col h3 {
	margin: 4px 0 25px;
	color: #d9ad2c;
	font-size: 9px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.bb-footer__col ul { display: flex; flex-direction: column; gap: 19px; }
.bb-footer__col a { color: #777881; font-size: 11px; transition: color 0.2s ease, padding-left 0.2s ease; }
.bb-footer__col a:hover { color: #fff; padding-left: 3px; }
.bb-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.07);
	padding-block: 28px;
	display: flex; align-items: center; justify-content: space-between; gap: 20px;
	font-size: 9px; color: #686973;
}
.bb-footer__bottom p { margin: 0; }
.bb-footer__payments { display: flex; align-items: center; gap: 9px; }
.bb-footer__payments span {
	display: grid; place-items: center;
	min-width: 43px; height: 27px; padding-inline: 10px;
	border: 1px solid rgba(255,255,255,0.07); border-radius: 999px;
	background: rgba(255,255,255,0.025); color: #777881; font-size: 7px;
}

@media (max-width: 999px) {
	.bb-footer__top { grid-template-columns: repeat(4, 1fr); gap: 44px 28px; }
	.bb-footer__brand { grid-column: 1 / -1; }
	.bb-footer__tagline { max-width: 480px; }
}

@media (max-width: 599px) {
	.bb-footer { padding-top: 52px; }
	.bb-footer__top { grid-template-columns: repeat(2, 1fr); gap: 42px 24px; padding-bottom: 46px; }
	.bb-footer__brand { grid-column: 1 / -1; }
	.bb-footer__tagline { margin-top: 22px; }
	.bb-footer__socials { margin-top: 24px; }
	.bb-footer__col h3 { margin-bottom: 19px; }
	.bb-footer__col ul { gap: 15px; }
	.bb-footer__bottom { flex-direction: column; align-items: flex-start; padding-block: 24px; }
	.bb-footer__payments { flex-wrap: wrap; }
}

/* =========================================================
   DESIGN SYSTEM CONSISTENCY
   ========================================================= */
.bb-featured__head .eyebrow,
.bb-needs__head .eyebrow,
.bb-wanted__head .eyebrow,
.bb-premium__head .eyebrow,
.bb-countdown__copy .eyebrow,
.bb-loyalty__content .eyebrow,
.bb-testimonial__head .eyebrow,
.bb-trust-section__head .eyebrow,
.bb-faq-section__head .eyebrow,
.bb-community-section__head .eyebrow {
	min-height: 26px;
	padding: 5px 12px;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.bb-featured__browse,
.bb-wanted__all,
.bb-countdown__cta,
.bb-newsletter__form .btn {
	min-height: 42px;
	font-size: 11px;
	font-weight: 700;
}

.bb-featured-card__badge,
.bb-wanted-card__discount,
.bb-wanted-card__urgent,
.bb-tier-info em {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: 0.08em;
}

.bb-icon-btn,
.bb-submenu-toggle,
.bb-premium__arrow,
.bb-featured-card__arrow,
.bb-trust-card__icon,
.bb-tier-icon,
.bb-faq__question i,
.bb-footer__socials a {
	border-color: var(--border-subtle);
	background-color: rgba(255,255,255,0.025);
}

.bb-wanted-card h3,
.bb-featured-card__body strong,
.bb-need-card__content strong,
.bb-trust-card h4,
.bb-faq__question {
	font-family: var(--font-display);
	font-weight: 700;
}
