/**
 * Bookina — Livecast-inspired marketing landing page
 */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

:root {
	--bn-bg: #080b12;
	--bn-bg-soft: #0f1420;
	--bn-surface: #ffffff;
	--bn-muted: #64748b;
	--bn-text: #334155;
	--bn-heading: #0f172a;
	--bn-accent: #6366f1;
	--bn-accent-2: #8b5cf6;
	--bn-accent-glow: rgba(99, 102, 241, 0.45);
	--bn-success: #10b981;
	--bn-border: #e2e8f0;
	--bn-radius: 16px;
	--bn-radius-lg: 24px;
	--bn-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
	--bn-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--bn-display: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.bn-landing {
	margin: 0;
	font-family: var(--bn-font);
	font-size: 16px;
	line-height: 1.7;
	color: var(--bn-text);
	background: var(--bn-surface);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

body.bn-menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, p { margin: 0; }

.bn-container {
	width: min(1240px, calc(100% - 40px));
	margin-inline: auto;
}

/* Buttons */
.bn-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.02em;
	padding: 14px 26px;
	border-radius: 999px;
	border: 2px solid transparent;
	transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
	white-space: nowrap;
}

.bn-btn:hover { transform: translateY(-2px); }

.bn-btn-lg { font-size: 15px; padding: 17px 32px; }

.bn-btn-primary {
	background: linear-gradient(135deg, var(--bn-accent) 0%, var(--bn-accent-2) 100%);
	color: #fff;
	box-shadow: 0 8px 32px var(--bn-accent-glow);
}

.bn-btn-primary:hover {
	box-shadow: 0 12px 40px rgba(99, 102, 241, 0.55);
}

.bn-btn-ghost {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.18);
}

.bn-btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }

.bn-btn-outline-dark {
	background: transparent;
	color: var(--bn-heading);
	border-color: var(--bn-border);
}

.bn-btn-outline-dark:hover {
	border-color: var(--bn-accent);
	color: var(--bn-accent);
}

.bn-btn-light {
	background: #fff;
	color: var(--bn-heading);
	box-shadow: var(--bn-shadow);
}

/* Announce */
.bn-announce {
	background: linear-gradient(90deg, #4f46e5, #7c3aed);
	color: #fff;
	text-align: center;
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 600;
}

.bn-announce a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Nav */
.bn-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(8, 11, 18, 0.82);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bn-nav.is-scrolled {
	background: rgba(8, 11, 18, 0.96);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.bn-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 0;
}

.bn-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-family: var(--bn-display);
	font-weight: 700;
	font-size: 1.2rem;
	letter-spacing: -0.02em;
}

.bn-logo-mark {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--bn-accent), var(--bn-accent-2));
	display: grid;
	place-items: center;
	font-size: 18px;
	font-weight: 800;
}

.bn-nav-links {
	display: flex;
	gap: 28px;
}

.bn-nav-links a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	font-weight: 600;
	transition: color 0.2s;
}

.bn-nav-links a:hover { color: #fff; }

.bn-nav-actions { display: flex; gap: 10px; align-items: center; }

.bn-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
}

.bn-nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
}

.bn-mobile-menu {
	display: none;
	flex-direction: column;
	gap: 12px;
	padding: 0 20px 20px;
	background: var(--bn-bg);
}

.bn-mobile-menu a { color: #fff; font-weight: 600; padding: 8px 0; }

/* Hero */
.bn-hero {
	position: relative;
	background: var(--bn-bg);
	color: #fff;
	padding: clamp(56px, 8vw, 100px) 0 clamp(72px, 10vw, 120px);
	overflow: hidden;
}

.bn-hero-glow {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.28) 0%, transparent 45%),
		radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.2) 0%, transparent 40%);
	pointer-events: none;
}

.bn-hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.bn-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #a5b4fc;
	margin-bottom: 18px;
}

.bn-hero-title {
	font-family: var(--bn-display);
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.025em;
	margin-bottom: 22px;
}

.bn-hero-title em {
	font-style: normal;
	background: linear-gradient(135deg, #a5b4fc, #c4b5fd);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.bn-hero-lead {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.72);
	max-width: 520px;
	margin-bottom: 32px;
	line-height: 1.75;
}

.bn-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 40px;
}

.bn-hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}

.bn-stat strong {
	display: block;
	font-family: var(--bn-display);
	font-size: 1.625rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.bn-stat span {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 600;
}

.bn-hero-visual { position: relative; }

.bn-browser {
	background: #1a1f2e;
	border-radius: var(--bn-radius-lg);
	overflow: hidden;
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.bn-browser-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: #12161f;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bn-browser-bar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #334155;
}

.bn-browser-bar span:nth-child(1) { background: #ef4444; }
.bn-browser-bar span:nth-child(2) { background: #eab308; }
.bn-browser-bar span:nth-child(3) { background: #22c55e; }

.bn-browser-url {
	flex: 1;
	margin-left: 8px;
	padding: 6px 12px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 6px;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.45);
	text-align: center;
}

.bn-browser-body {
	max-height: 520px;
	overflow: hidden;
}

.bn-browser-body img {
	width: 100%;
	height: auto;
	transition: opacity 0.35s ease;
}

.bn-float {
	position: absolute;
	background: #fff;
	color: var(--bn-heading);
	border-radius: 14px;
	padding: 12px 16px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	animation: bn-float 4s ease-in-out infinite;
}

.bn-float strong { display: block; font-size: 14px; }
.bn-float span { color: var(--bn-muted); font-size: 12px; }

.bn-float-1 { bottom: -20px; left: -24px; }
.bn-float-2 { top: 40px; right: -20px; animation-delay: -2s; }

.bn-float-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: #ecfdf5;
	color: var(--bn-success);
	display: grid;
	place-items: center;
	font-weight: 800;
}

@keyframes bn-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* Trust strip */
.bn-trust {
	background: var(--bn-bg-soft);
	border-block: 1px solid rgba(255, 255, 255, 0.06);
	padding: 18px 0;
}

.bn-trust-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 32px;
}

/* Stars & hero rating */
.bn-stars {
	color: #fbbf24;
	font-size: 14px;
	letter-spacing: 0.12em;
	line-height: 1;
}

.bn-stars-lg {
	font-size: 20px;
	letter-spacing: 0.08em;
}

.bn-hero-rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
	font-weight: 500;
}

/* Problem → Solution */
.bn-problem {
	padding: clamp(64px, 9vw, 96px) 0;
	background: #fff;
}

.bn-problem-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 960px;
	margin-inline: auto;
}

.bn-problem-card {
	border-radius: var(--bn-radius-lg);
	padding: clamp(28px, 4vw, 40px);
	border: 1px solid var(--bn-border);
}

.bn-problem-before {
	background: #f8fafc;
}

.bn-problem-after {
	background: linear-gradient(145deg, #eef2ff 0%, #f5f3ff 100%);
	border-color: rgba(99, 102, 241, 0.25);
	box-shadow: 0 20px 60px rgba(99, 102, 241, 0.12);
}

.bn-problem-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding: 6px 12px;
	border-radius: 999px;
}

.bn-problem-before .bn-problem-label {
	background: #fee2e2;
	color: #b91c1c;
}

.bn-problem-after .bn-problem-label {
	background: #d1fae5;
	color: #047857;
}

.bn-problem-card ul {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: grid;
	gap: 12px;
}

.bn-problem-card li {
	position: relative;
	padding-left: 28px;
	font-size: 15px;
	color: var(--bn-text);
	line-height: 1.55;
}

.bn-problem-before li::before {
	content: "✕";
	position: absolute;
	left: 0;
	color: #ef4444;
	font-weight: 700;
}

.bn-problem-after li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--bn-success);
	font-weight: 700;
}

/* Launch steps */
.bn-steps {
	padding: clamp(64px, 9vw, 96px) 0;
	background: #f8fafc;
}

.bn-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.bn-step-card {
	background: #fff;
	border: 1px solid var(--bn-border);
	border-radius: var(--bn-radius-lg);
	padding: clamp(28px, 4vw, 36px);
	position: relative;
	transition: transform 0.25s, box-shadow 0.25s;
}

.bn-step-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--bn-shadow);
}

.bn-step-num {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--bn-accent), var(--bn-accent-2));
	color: #fff;
	font-family: var(--bn-display);
	font-size: 1.125rem;
	font-weight: 800;
	margin-bottom: 20px;
}

.bn-step-card h3 {
	font-family: var(--bn-display);
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--bn-heading);
	margin-bottom: 10px;
	letter-spacing: -0.01em;
}

.bn-step-card p {
	font-size: 15px;
	color: var(--bn-muted);
	line-height: 1.65;
}

.bn-step-card code {
	font-size: 13px;
	background: #f1f5f9;
	padding: 2px 6px;
	border-radius: 4px;
	color: var(--bn-heading);
}

/* Mid-page CTA */
.bn-mid-cta {
	background: var(--bn-bg);
	color: #fff;
	padding: clamp(48px, 7vw, 72px) 0;
}

.bn-mid-cta-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.bn-mid-cta-copy {
	max-width: 560px;
}

.bn-mid-cta-copy .bn-stars {
	margin-bottom: 12px;
}

.bn-mid-cta-copy h2 {
	font-family: var(--bn-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
	margin-bottom: 10px;
}

.bn-mid-cta-copy p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 1rem;
}

.bn-mid-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.bn-mid-cta .bn-btn-ghost {
	border-color: rgba(255, 255, 255, 0.25);
	color: #fff;
}

.bn-mid-cta .bn-btn-ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.4);
}

/* Testimonials */
.bn-reviews {
	padding: clamp(72px, 10vw, 108px) 0;
	background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
	color: #fff;
}

.bn-reviews-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 48px;
}

.bn-reviews-head h2 {
	font-family: var(--bn-display);
	font-size: clamp(1.875rem, 3.5vw, 2.75rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin-bottom: 12px;
}

.bn-reviews-head p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 1.0625rem;
	max-width: 520px;
}

.bn-reviews-score {
	text-align: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--bn-radius-lg);
	padding: 24px 32px;
	min-width: 180px;
}

.bn-score-big {
	font-family: var(--bn-display);
	font-size: 3rem;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 8px;
	background: linear-gradient(135deg, #fde68a, #fbbf24);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.bn-reviews-score > span:last-child {
	display: block;
	margin-top: 8px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 600;
}

.bn-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.bn-review-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--bn-radius-lg);
	padding: clamp(24px, 3vw, 32px);
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: transform 0.25s, background 0.25s;
}

.bn-review-card:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.08);
}

.bn-review-card blockquote {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
	flex: 1;
}

.bn-review-author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bn-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--bn-accent), var(--bn-accent-2));
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
}

.bn-review-author strong {
	display: block;
	font-size: 14px;
	color: #fff;
	margin-bottom: 2px;
}

.bn-review-author span {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

/* Comparison */
.bn-compare-section {
	padding: clamp(64px, 9vw, 96px) 0;
	background: #fff;
}

.bn-compare-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 960px;
	margin: 0 auto 40px;
}

.bn-compare-card {
	border-radius: var(--bn-radius-lg);
	padding: clamp(28px, 4vw, 40px);
	border: 1px solid var(--bn-border);
}

.bn-compare-them {
	background: #f8fafc;
}

.bn-compare-us {
	background: linear-gradient(145deg, #eef2ff 0%, #faf5ff 100%);
	border-color: rgba(99, 102, 241, 0.3);
	box-shadow: 0 24px 64px rgba(99, 102, 241, 0.15);
	position: relative;
}

.bn-compare-badge {
	position: absolute;
	top: -12px;
	right: 24px;
	background: linear-gradient(135deg, var(--bn-accent), var(--bn-accent-2));
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 999px;
}

.bn-compare-card h3 {
	font-family: var(--bn-display);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--bn-heading);
	margin-bottom: 20px;
	letter-spacing: -0.01em;
}

.bn-compare-card ul {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	display: grid;
	gap: 10px;
}

.bn-compare-card li {
	font-size: 15px;
	color: var(--bn-text);
	padding-left: 22px;
	position: relative;
	line-height: 1.5;
}

.bn-compare-them li::before {
	content: "—";
	position: absolute;
	left: 0;
	color: var(--bn-muted);
}

.bn-compare-us li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--bn-success);
	font-weight: 700;
}

.bn-compare-total {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--bn-heading);
	margin-bottom: 20px;
}

.bn-compare-them .bn-compare-total em {
	font-style: normal;
	color: var(--bn-muted);
	font-weight: 500;
	font-size: 14px;
}

.bn-compare-us .bn-btn {
	width: 100%;
	justify-content: center;
}

.bn-trust-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 20px;
}

.bn-trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--bn-text);
	background: #f1f5f9;
	padding: 10px 18px;
	border-radius: 999px;
}

.bn-trust-badge span {
	color: var(--bn-success);
	font-weight: 800;
}

/* Pricing */
.bn-pricing {
	padding: clamp(64px, 9vw, 96px) 0;
	background: #f8fafc;
}

.bn-pricing-card {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(32px, 5vw, 56px);
	align-items: center;
	background: #fff;
	border: 1px solid var(--bn-border);
	border-radius: var(--bn-radius-lg);
	padding: clamp(32px, 5vw, 56px);
	box-shadow: var(--bn-shadow);
}

.bn-pricing-copy h2 {
	font-family: var(--bn-display);
	font-size: clamp(1.625rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--bn-heading);
	line-height: 1.25;
	letter-spacing: -0.02em;
	margin-bottom: 16px;
}

.bn-pricing-copy > p {
	color: var(--bn-muted);
	font-size: 1.0625rem;
	margin-bottom: 24px;
	line-height: 1.7;
}

.bn-pricing-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 20px;
}

.bn-pricing-list li {
	font-size: 14px;
	font-weight: 600;
	color: var(--bn-text);
	padding-left: 22px;
	position: relative;
}

.bn-pricing-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--bn-success);
	font-weight: 800;
}

.bn-pricing-stars {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	font-size: 13px;
	color: var(--bn-muted);
	font-weight: 600;
}

.bn-pricing-box {
	background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 100%);
	color: #fff;
	border-radius: var(--bn-radius-lg);
	padding: clamp(28px, 4vw, 40px);
	text-align: center;
}

.bn-pricing-label {
	display: block;
	font-family: var(--bn-display);
	font-size: 1.75rem;
	font-weight: 800;
	margin-bottom: 6px;
	letter-spacing: -0.02em;
}

.bn-pricing-tagline {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 24px;
}

.bn-pricing-includes {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: grid;
	gap: 10px;
	text-align: left;
}

.bn-pricing-includes li {
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
	padding-left: 22px;
	position: relative;
}

.bn-pricing-includes li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #34d399;
	font-weight: 800;
}

.bn-pricing-box .bn-btn {
	width: 100%;
	justify-content: center;
}

.bn-pricing-note {
	margin-top: 16px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
	font-weight: 600;
}

/* ROI band */
.bn-roi {
	padding: clamp(56px, 8vw, 80px) 0;
	background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
	color: #fff;
	text-align: center;
}

.bn-roi-inner h2 {
	font-family: var(--bn-display);
	font-size: clamp(1.625rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
	margin-bottom: 14px;
	max-width: 720px;
	margin-inline: auto;
}

.bn-roi-inner > p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.0625rem;
	max-width: 600px;
	margin: 0 auto 28px;
}

.bn-roi-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

.bn-roi .bn-btn-ghost {
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}

.bn-roi .bn-btn-ghost:hover {
	background: rgba(255, 255, 255, 0.1);
}

.bn-trust-inner span {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-transform: none;
	color: rgba(255, 255, 255, 0.55);
}

/* Section heads */
.bn-section-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 48px;
}

.bn-section-head h2 {
	font-family: var(--bn-display);
	font-size: clamp(1.875rem, 3.5vw, 2.75rem);
	font-weight: 700;
	color: var(--bn-heading);
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin-bottom: 16px;
}

.bn-section-head p {
	color: var(--bn-muted);
	font-size: 1.0625rem;
}

.bn-section-head.light h2 { color: #fff; }
.bn-section-head.light p { color: rgba(255, 255, 255, 0.65); }

/* Split headline — Livecast style */
.bn-split-head {
	text-align: center;
	padding: clamp(64px, 9vw, 100px) 0 48px;
}

.bn-split-head .line {
	display: block;
	font-family: var(--bn-display);
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 700;
	text-transform: none;
	letter-spacing: -0.02em;
	line-height: 1.25;
	color: var(--bn-heading);
}

.bn-split-head .line.accent {
	background: linear-gradient(135deg, var(--bn-accent), var(--bn-accent-2));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.bn-split-head p {
	margin-top: 20px;
	color: var(--bn-muted);
	max-width: 560px;
	margin-inline: auto;
}

/* Featured demos carousel — full width */
.bn-featured {
	padding-bottom: 24px;
	background: #f8fafc;
	overflow: hidden;
}

.bn-featured-carousel {
	--fc-gap: 20px;
	--fc-gutter: clamp(16px, 2.5vw, 40px);
	--fc-visible: 4;
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-bottom: 56px;
}

.bn-featured-carousel-viewport {
	overflow: hidden;
	width: 100%;
}

.bn-featured-carousel-track {
	display: flex;
	gap: var(--fc-gap);
	padding-left: var(--fc-gutter);
	padding-right: var(--fc-gutter);
	will-change: transform;
	transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.bn-featured-card {
	flex: 0 0 calc(
		(100vw - (var(--fc-gutter) * 2) - (var(--fc-gap) * (var(--fc-visible) - 1)))
		/ var(--fc-visible)
	);
	background: #fff;
	border-radius: var(--bn-radius-lg);
	overflow: hidden;
	border: 1px solid var(--bn-border);
	box-shadow: var(--bn-shadow);
	transition: transform 0.25s, box-shadow 0.25s;
	text-decoration: none;
	color: inherit;
}

.bn-featured-arrow {
	position: absolute;
	top: calc(50% - 28px);
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.96);
	color: var(--bn-heading);
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.18);
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.bn-featured-arrow:hover {
	transform: scale(1.06);
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.22);
}

.bn-featured-arrow.is-prev {
	left: clamp(12px, 2vw, 28px);
}

.bn-featured-arrow.is-next {
	right: clamp(12px, 2vw, 28px);
}

.bn-featured-dots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	max-width: min(960px, calc(100vw - 48px));
	margin: 20px auto 0;
	padding: 0 24px;
}

.bn-featured-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #cbd5e1;
	cursor: pointer;
	transition: transform 0.2s, background 0.2s;
}

.bn-featured-dot.is-active {
	background: var(--bn-accent);
	transform: scale(1.25);
}

.bn-featured-dot:hover {
	background: var(--bn-accent-2);
}

.bn-featured-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 32px 80px rgba(15, 23, 42, 0.16);
}

.bn-featured-img {
	position: relative;
	height: clamp(320px, 28vw, 480px);
	overflow: hidden;
	background: #0f172a;
}

.bn-featured-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.bn-featured-open {
	position: absolute;
	inset: auto 16px 16px 16px;
	background: rgba(15, 23, 42, 0.88);
	color: #fff;
	text-align: center;
	padding: 12px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.25s, transform 0.25s;
}

.bn-featured-card:hover .bn-featured-open {
	opacity: 1;
	transform: translateY(0);
}

.bn-featured-meta {
	padding: 20px 22px 24px;
}

.bn-featured-meta span {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--bn-accent);
}

.bn-featured-meta h3 {
	font-family: var(--bn-display);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--bn-heading);
	margin: 6px 0 4px;
	letter-spacing: -0.01em;
}

.bn-featured-meta p {
	font-size: 14px;
	color: var(--bn-muted);
}

/* Demo gallery */
.bn-demos {
	padding: clamp(48px, 7vw, 80px) 0 clamp(72px, 9vw, 100px);
	background: #fff;
}

.bn-demo-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}

.bn-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.bn-filter {
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	color: var(--bn-muted);
	background: #f1f5f9;
	transition: background 0.2s, color 0.2s;
}

.bn-filter.is-active,
.bn-filter:hover {
	background: var(--bn-heading);
	color: #fff;
}

.bn-search {
	flex: 1;
	min-width: 200px;
	max-width: 280px;
	padding: 10px 16px;
	border: 1px solid var(--bn-border);
	border-radius: 999px;
	font: inherit;
	font-size: 14px;
}

.bn-demo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}

.bn-demo-card {
	background: #fff;
	border-radius: var(--bn-radius);
	overflow: hidden;
	border: 1px solid var(--bn-border);
	transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
	animation: bn-fade-up 0.5s ease both;
}

.bn-demo-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--bn-shadow);
	border-color: #c7d2fe;
}

.bn-demo-card.has-screenshot .bn-demo-card-img {
	aspect-ratio: 16 / 11;
}

.bn-demo-card-img {
	position: relative;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: #0f172a;
}

.bn-demo-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 0.4s;
}

.bn-demo-card.has-screenshot .bn-demo-card-img img {
	object-fit: cover;
	object-position: top center;
}

.bn-demo-card:hover .bn-demo-card-img img {
	transform: scale(1.04);
}

.bn-demo-overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.25s;
}

.bn-demo-overlay span {
	background: #fff;
	color: var(--bn-heading);
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
}

.bn-demo-card:hover .bn-demo-overlay { opacity: 1; }

.bn-demo-card-body { padding: 18px 20px 22px; }

.bn-demo-cat {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--bn-accent);
}

.bn-demo-card-body h3 {
	font-family: var(--bn-display);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--bn-heading);
	margin: 6px 0 4px;
	letter-spacing: -0.01em;
}

.bn-demo-card-body p {
	font-size: 14px;
	color: var(--bn-muted);
}

.bn-demo-empty {
	text-align: center;
	padding: 48px;
	color: var(--bn-muted);
}

@keyframes bn-fade-up {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Feature bands */
.bn-band-dark {
	background: var(--bn-bg);
	color: #fff;
	padding: clamp(64px, 9vw, 100px) 0;
}

.bn-band-light {
	background: #f8fafc;
	padding: clamp(64px, 9vw, 100px) 0;
}

.bn-showcase {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.bn-showcase.reverse .bn-showcase-copy { order: 2; }
.bn-showcase.reverse .bn-showcase-visual { order: 1; }

.bn-showcase-copy h2 {
	font-family: var(--bn-display);
	font-size: clamp(1.625rem, 2.8vw, 2.25rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
	margin-bottom: 16px;
}

.bn-band-dark .bn-showcase-copy h2 { color: #fff; }
.bn-band-dark .bn-showcase-copy p { color: rgba(255, 255, 255, 0.65); }

.bn-checklist {
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
	display: grid;
	gap: 12px;
}

.bn-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
}

.bn-band-dark .bn-checklist li { color: rgba(255, 255, 255, 0.8); }

.bn-checklist li::before {
	content: "✓";
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(99, 102, 241, 0.25);
	color: #a5b4fc;
	display: grid;
	place-items: center;
	font-size: 11px;
	font-weight: 800;
}

.bn-shot-frame {
	border-radius: var(--bn-radius-lg);
	overflow: hidden;
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.bn-shot-frame img {
	width: 100%;
	height: auto;
}

/* Capability grid */
.bn-cap-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.bn-cap-card {
	background: #fff;
	border: 1px solid var(--bn-border);
	border-radius: var(--bn-radius);
	padding: 28px 24px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.bn-cap-card:hover {
	border-color: #c7d2fe;
	box-shadow: var(--bn-shadow);
}

.bn-cap-icon {
	font-size: 28px;
	margin-bottom: 14px;
}

.bn-cap-card h3 {
	font-family: var(--bn-display);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--bn-heading);
	margin-bottom: 8px;
	letter-spacing: -0.01em;
}

.bn-cap-card p {
	font-size: 14px;
	color: var(--bn-muted);
	line-height: 1.6;
}

/* Stats band */
.bn-stats-band {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 48px;
}

.bn-stat-card {
	text-align: center;
	padding: 28px 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--bn-radius);
}

.bn-stat-card strong {
	display: block;
	font-family: var(--bn-display);
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	line-height: 1;
	margin-bottom: 8px;
	letter-spacing: -0.02em;
}

.bn-stat-card span {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 600;
}

/* Included bundle */
.bn-bundle-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.bn-bundle-item {
	background: #fff;
	border: 1px solid var(--bn-border);
	border-radius: var(--bn-radius);
	padding: 22px 18px;
	text-align: center;
}

.bn-bundle-item strong {
	display: block;
	font-size: 14px;
	color: var(--bn-heading);
	margin-bottom: 4px;
}

.bn-bundle-item span {
	font-size: 12px;
	color: var(--bn-muted);
}

.bn-bundle-val {
	display: block;
	font-family: var(--bn-display);
	font-size: 2.5rem !important;
	font-weight: 800;
	color: var(--bn-accent);
	margin-bottom: 8px;
}

/* FAQ */
.bn-faq { padding: clamp(64px, 9vw, 100px) 0; }

.bn-faq-list {
	max-width: 760px;
	margin: 0 auto;
	display: grid;
	gap: 12px;
}

.bn-faq-item {
	border: 1px solid var(--bn-border);
	border-radius: var(--bn-radius);
	overflow: hidden;
	background: #fff;
}

.bn-faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	text-align: left;
	font-family: var(--bn-display);
	font-size: 1rem;
	font-weight: 600;
	color: var(--bn-heading);
	letter-spacing: -0.01em;
	line-height: 1.45;
}

.bn-faq-q::after {
	content: "+";
	font-size: 1.5rem;
	color: var(--bn-accent);
	flex-shrink: 0;
	transition: transform 0.2s;
}

.bn-faq-item.is-open .bn-faq-q::after { transform: rotate(45deg); }

.bn-faq-a {
	display: none;
	padding: 0 24px 20px;
	color: var(--bn-muted);
	font-size: 15px;
	line-height: 1.7;
}

.bn-faq-item.is-open .bn-faq-a { display: block; }

/* CTA */
.bn-cta {
	background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #6366f1 100%);
	color: #fff;
	text-align: center;
	padding: clamp(64px, 9vw, 96px) 24px;
}

.bn-cta h2 {
	font-family: var(--bn-display);
	font-size: clamp(1.875rem, 3.5vw, 2.75rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin-bottom: 16px;
}

.bn-cta p {
	max-width: 560px;
	margin: 0 auto 32px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.0625rem;
}

.bn-cta-note {
	margin-top: 20px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
}

/* Footer */
.bn-footer {
	background: var(--bn-bg);
	color: rgba(255, 255, 255, 0.55);
	padding: 48px 0 32px;
	font-size: 14px;
}

.bn-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.bn-footer-brand .bn-logo { margin-bottom: 12px; }

.bn-footer h4 {
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.bn-footer-links {
	display: grid;
	gap: 10px;
}

.bn-footer-links a:hover { color: #fff; }

.bn-footer-bottom {
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	font-size: 13px;
}

/* Sticky CTA */
.bn-sticky-cta {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%) translateY(120%);
	z-index: 90;
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--bn-heading);
	color: #fff;
	padding: 12px 12px 12px 24px;
	border-radius: 999px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
	transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bn-sticky-cta.is-visible { transform: translateX(-50%) translateY(0); }

.bn-sticky-cta span { font-size: 14px; font-weight: 600; }

/* Reveal */
[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
	.bn-hero-grid,
	.bn-showcase,
	.bn-cap-grid,
	.bn-problem-grid,
	.bn-compare-cards,
	.bn-pricing-card { grid-template-columns: 1fr; }

	.bn-steps-grid,
	.bn-reviews-grid { grid-template-columns: repeat(2, 1fr); }

	.bn-pricing-list { grid-template-columns: 1fr; }

	.bn-showcase.reverse .bn-showcase-copy,
	.bn-showcase.reverse .bn-showcase-visual { order: unset; }

	.bn-stats-band,
	.bn-bundle-grid { grid-template-columns: repeat(2, 1fr); }

	.bn-footer-grid { grid-template-columns: 1fr 1fr; }

	.bn-reviews-head { flex-direction: column; align-items: flex-start; }

	.bn-reviews-score { align-self: stretch; }
}

@media (max-width: 768px) {
	.bn-nav-links,
	.bn-nav-actions { display: none; }

	.bn-nav-toggle { display: flex; }

	.bn-mobile-menu:not([hidden]) { display: flex; }

	.bn-demo-toolbar { flex-direction: column; align-items: stretch; }

	.bn-search { max-width: none; }

	.bn-stats-band,
	.bn-bundle-grid,
	.bn-steps-grid,
	.bn-reviews-grid { grid-template-columns: 1fr; }

	.bn-mid-cta-inner { flex-direction: column; align-items: flex-start; }

	.bn-mid-cta-actions { width: 100%; }

	.bn-mid-cta-actions .bn-btn { flex: 1; min-width: 140px; }

	.bn-trust-badges { gap: 8px; }

	.bn-trust-badge { font-size: 13px; padding: 8px 14px; }

	.bn-featured-carousel {
		--fc-visible: 1;
	}

	.bn-featured-card {
		flex: 0 0 calc(100vw - (var(--fc-gutter) * 2));
	}

	.bn-featured-arrow {
		width: 42px;
		height: 42px;
		top: calc(50% - 36px);
	}

	.bn-footer-grid { grid-template-columns: 1fr; }

	.bn-float { display: none; }

	.bn-sticky-cta span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
	html { scroll-behavior: auto; }
}
