/* Booth Bingo Theme - Main Stylesheet */

/* CSS Variables */
:root {
	--primary-color: #1f2933;
	--secondary-color: #0b0d12;
	--accent-color: #facc15;
	--text-primary: #f8fafc;
	--text-secondary: #cbd5f5;
	--text-light: #94a3b8;
	--bg-primary: #0b0d12;
	--bg-secondary: #131821;
	--bg-dark: #000000;
	--border-color: rgba(148, 163, 184, 0.18);
	--success-color: #10b981;
	--error-color: #ef4444;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--border-radius: 0.75rem;
	--container-max-width: 1280px;
}

/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-primary);
	background-color: var(--bg-primary);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* Prevent text cursor on non-editable content */
	cursor: default;
	caret-color: transparent;
}

/* Only show text cursor on actual input/editable elements */
input,
textarea,
select,
[contenteditable="true"] {
	cursor: text;
	caret-color: auto;
}

/* Ensure buttons and links have pointer cursor */
button,
a,
[role="button"],
.btn {
	cursor: pointer;
}

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

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}

/* Page Container */
#page.site {
	position: relative;
}

/* Container */
.container {
	width: 100%;
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* Header */
.site-header {
	display: none;
}

/* Ensure countdown banner is always visible */
.countdown-banner {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.site-branding .site-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
}

.site-branding .site-title a {
	color: inherit;
}

.site-branding .custom-logo-link img {
	max-height: 50px;
	width: auto;
}

/* Hero logo placement */
.hero-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 1.5rem 0;
}
.hero-logo .custom-logo-link img {
	max-height: 128px;
	width: auto;
}
@media (min-width: 1024px) {
	.hero-logo .custom-logo-link img {
		max-height: 160px;
	}
}

/* Navigation */
.main-navigation {
	display: flex;
	align-items: center;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.menu-toggle-icon {
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: 24px;
}

.menu-toggle-icon span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--text-primary);
	transition: var(--transition);
	border-radius: 2px;
}

#primary-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
	margin: 0;
	padding: 0;
}

#primary-menu li a {
	color: var(--text-secondary);
	font-weight: 500;
	padding: 0.5rem 0;
	position: relative;
}

#primary-menu li a:hover {
	color: var(--accent-color);
}

#primary-menu li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent-color);
	transition: width 0.3s ease;
}

#primary-menu li a:hover::after {
	width: 100%;
}

/* Hero Section */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 32px;
	padding-bottom: 4rem;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	max-width: none;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	object-position: center center;
	pointer-events: none;
	filter: saturate(0.9) brightness(0.8);
}

.hero-gradient {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(11, 13, 18, 0.9) 0%, rgba(17, 24, 39, 0.8) 60%, rgba(250, 204, 21, 0.14) 100%);
	opacity: 0.6;
}

.hero-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		radial-gradient(circle at 25% 25%, rgba(250, 204, 21, 0.12) 0%, transparent 55%),
		radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.06) 0%, transparent 55%);
	animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(20px, 20px); }
}

.hero-content {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
}

.hero-text {
	color: var(--text-primary);
	text-align: center;
	width: 100%;
}

.hero-heading {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	line-height: 1.2; /* prevent descender clipping */
	margin-bottom: 1.5rem;
	padding-bottom: 0.1em; /* extra space for letters like g/j/y */
	color: #ffffff;
}

.hero-subheading {
	font-size: clamp(1.125rem, 2vw, 1.25rem);
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	line-height: 1.7;
}

.hero-cta-group {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.5rem;
	justify-content: center;
	align-items: center;
}

@media (min-width: 640px) {
	.hero-cta-group {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 1.25rem;
	}
}

.hero-commitment-note {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0.5rem;
	text-align: center;
}

.hero-commitment-note strong {
	color: var(--accent-color);
	font-weight: 600;
}

/* Commitment Button Styling */
.btn-commitment {
	position: relative;
	background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
	border: 2px solid rgba(250, 204, 21, 0.3);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(250, 204, 21, 0.1) inset;
	font-weight: 700;
	letter-spacing: 0.025em;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: auto !important;
	cursor: pointer;
	z-index: 10;
}

.btn-commitment:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(250, 204, 21, 0.2) inset;
	border-color: rgba(250, 204, 21, 0.5);
	background: linear-gradient(135deg, #111827 0%, #0a0d12 100%);
}

.btn-commitment:active {
	transform: translateY(0);
}

.btn-commitment-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background: linear-gradient(135deg, var(--accent-color) 0%, #f59e0b 100%);
	color: #000000;
	font-size: 0.625rem;
	font-weight: 700;
	padding: 0.25rem 0.5rem;
	border-radius: 0.375rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: 0 2px 8px rgba(250, 204, 21, 0.4);
	white-space: nowrap;
	animation: badgePulse 2s ease-in-out infinite;
	pointer-events: none;
	z-index: 11;
}

@keyframes badgePulse {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 2px 8px rgba(250, 204, 21, 0.4);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 3px 12px rgba(250, 204, 21, 0.6);
	}
}

@media (max-width: 639px) {
	.btn-commitment-badge {
		position: static;
		display: block;
		margin-top: 0.5rem;
		text-align: center;
		width: 100%;
	}
}

.btn-video-demo {
	background: rgba(255, 255, 255, 0.08);
	border: 2px solid rgba(255, 255, 255, 0.2);
	color: var(--text-primary);
	backdrop-filter: blur(10px);
}

.btn-video-demo:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.3);
	color: #ffffff;
	transform: translateY(-2px);
}

/* Video Modal */
.video-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.video-modal[aria-hidden="false"] {
	display: flex;
	opacity: 1;
}

.video-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(8px);
	cursor: pointer;
}

.video-modal-container {
	position: relative;
	width: 100%;
	max-width: 900px;
	max-height: 90vh;
	background: var(--bg-secondary);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-xl);
	border: 1px solid rgba(255, 255, 255, 0.1);
	overflow: hidden;
	transform: scale(0.95);
	transition: transform 0.3s ease;
	z-index: 1;
}

.video-modal[aria-hidden="false"] .video-modal-container {
	transform: scale(1);
}

.video-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: #ffffff;
	cursor: pointer;
	transition: var(--transition);
	z-index: 10;
	backdrop-filter: blur(10px);
}

.video-modal-close:hover {
	background: rgba(0, 0, 0, 0.9);
	border-color: rgba(255, 255, 255, 0.4);
	transform: rotate(90deg);
}

.video-modal-close svg {
	width: 20px;
	height: 20px;
}

.video-modal-content {
	padding: 2rem;
}

.video-modal-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	text-align: center;
}

.video-modal-player {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	background: #000000;
	border-radius: calc(var(--border-radius) * 0.75);
	overflow: hidden;
}

.video-modal-player iframe,
.video-modal-player video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.video-placeholder {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--text-light);
	text-align: center;
	font-size: 1.125rem;
}

.video-modal-cta {
	margin-top: 2rem;
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-video-buy-now {
	background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
	border: 2px solid rgba(250, 204, 21, 0.3);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(250, 204, 21, 0.1) inset;
	font-weight: 700;
	letter-spacing: 0.025em;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-video-buy-now:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(250, 204, 21, 0.2) inset;
	border-color: rgba(250, 204, 21, 0.5);
	background: linear-gradient(135deg, #111827 0%, #0a0d12 100%);
}

@media (max-width: 768px) {
	.video-modal-content {
		padding: 1.5rem;
	}
	
	.video-modal-title {
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	
	.video-modal-close {
		top: 0.5rem;
		right: 0.5rem;
		width: 36px;
		height: 36px;
	}
}

/* Pre-order Form */
.hero-form {
	position: relative;
}

.preorder-form-container {
	background: rgba(255, 255, 255, 0.06);
	border-radius: var(--border-radius);
	padding: 2.5rem;
	box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.form-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.5rem;
}

.form-subtitle {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2rem;
	font-size: 0.9375rem;
}

.preorder-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-input {
	padding: 0.875rem 1rem;
	border: 2px solid rgba(148, 163, 184, 0.15);
	border-radius: calc(var(--border-radius) * 0.75);
	font-size: 1rem;
	transition: var(--transition);
	background: rgba(255, 255, 255, 0.05);
	color: var(--text-primary);
}

.form-input:focus {
	outline: none;
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(255, 235, 59, 0.3);
}

.form-input::placeholder {
	color: var(--text-light);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 1.75rem;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	border-radius: calc(var(--border-radius) * 0.75);
	cursor: pointer;
	transition: var(--transition);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: #111827;
	color: #ffffff;
	border: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	background: #000000;
	color: #ffffff;
}

.btn-secondary {
	background: var(--bg-primary);
	color: var(--text-secondary);
	border: 2px solid rgba(148, 163, 184, 0.16);
}

.btn-secondary:hover {
	background: rgba(248, 250, 252, 0.08);
	color: var(--accent-color);
}

.btn-large {
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

.btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* CTA pulse (subtle) */
.btn-pulse {
	box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.0);
	animation: btnPulse 2.4s ease-in-out infinite;
}

@keyframes btnPulse {
	0% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.0); }
	50% { box-shadow: 0 0 0 10px rgba(250, 204, 21, 0.12); }
	100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.0); }
}

.btn-loader {
	position: absolute;
}

.spinner {
	width: 20px;
	height: 20px;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.form-message {
	margin-top: 0.5rem;
	padding: 0.75rem 1rem;
	border-radius: calc(var(--border-radius) * 0.75);
	font-size: 0.875rem;
	display: none;
}

.form-message.success {
	display: block;
	background: rgba(16, 185, 129, 0.1);
	color: var(--success-color);
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-message.error {
	display: block;
	background: rgba(239, 68, 68, 0.1);
	color: var(--error-color);
	border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Stripe Payment Form Styles */
.form-label {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	display: block;
}

.stripe-card-element {
	padding: 0.875rem 1rem;
	border: 2px solid rgba(148, 163, 184, 0.15);
	border-radius: calc(var(--border-radius) * 0.75);
	background: rgba(255, 255, 255, 0.05);
	transition: var(--transition);
}

.stripe-card-element:focus-within {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(255, 235, 59, 0.3);
}

.stripe-card-errors {
	margin-top: 0.5rem;
	padding: 0.5rem 0.75rem;
	border-radius: calc(var(--border-radius) * 0.5);
	font-size: 0.875rem;
	color: var(--error-color);
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.2);
	display: none;
}

.stripe-card-errors:not(:empty) {
	display: block;
}

#payment-section {
	margin-top: 1rem;
	animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Payment Structure Page */
.payment-structure-section {
	padding: 4rem 0 6rem;
	min-height: 80vh;
	background: var(--bg-primary);
}

/* Qualifying Form Section */
.qualifying-form-section {
	padding: 6rem 0;
	background: var(--bg-secondary);
	position: relative;
}

.qualifying-form-container {
	max-width: 700px;
	margin: 0 auto;
}

.qualifying-form-heading {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 700;
	text-align: center;
	color: #ffffff;
	margin-bottom: 1rem;
}

.qualifying-form-subtitle {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.8);
	text-align: center;
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

.qualifying-form {
	background: rgba(255, 255, 255, 0.06);
	border-radius: var(--border-radius);
	padding: 2.5rem;
	box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
	border: 1px solid rgba(255, 255, 255, 0.15);
	position: relative;
	min-height: 400px;
}

/* Multi-Step Form */
.form-step {
	display: none;
	flex-direction: column;
	gap: 1.5rem;
	animation: fadeIn 0.3s ease-in;
}

.form-step.active {
	display: flex;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.step-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid rgba(250, 204, 21, 0.3);
}

.step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--accent-color) 0%, #f59e0b 100%);
	color: #000000;
	font-weight: 700;
	font-size: 1.125rem;
	border-radius: 50%;
	flex-shrink: 0;
}

.step-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
}

.form-row {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 1rem;
}

.form-textarea {
	resize: vertical;
	min-height: 100px;
	font-family: inherit;
}

.form-radio-group {
	display: flex;
	gap: 1.5rem;
	margin-top: 0.5rem;
}

.radio-option {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	padding: 0.75rem 1.25rem;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: calc(var(--border-radius) * 0.75);
	background: rgba(255, 255, 255, 0.03);
	transition: var(--transition);
	flex: 1;
}

.radio-option:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(250, 204, 21, 0.4);
}

.radio-option input[type="radio"] {
	margin: 0;
	cursor: pointer;
	accent-color: var(--accent-color);
}

.radio-option input[type="radio"]:checked + .radio-label {
	color: var(--accent-color);
	font-weight: 600;
}

.radio-option:has(input[type="radio"]:checked) {
	border-color: var(--accent-color);
	background: rgba(250, 204, 21, 0.1);
}

.radio-label {
	color: var(--text-primary);
	font-weight: 500;
	transition: var(--transition);
}

.form-navigation {
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-top: 1rem;
}

.form-navigation .btn {
	flex: 1;
}

.btn-next-step,
.btn-prev-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.75rem;
}

.priority-waitlist-embed {
	margin: 2rem 0;
}

.form-label {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	display: block;
}

.form-help-text {
	display: block;
	margin-top: 0.375rem;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.6);
}

.form-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.form-input-prefix {
	position: absolute;
	left: 1rem;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
	pointer-events: none;
	z-index: 1;
}

.form-input-with-prefix {
	padding-left: 2.5rem;
}

/* Demo Gatekeeper Response */
.qualifying-response,
.demo-gatekeeper-response {
	background: rgba(255, 255, 255, 0.06);
	border-radius: var(--border-radius);
	padding: 3rem 2.5rem;
	box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
	border: 1px solid rgba(255, 255, 255, 0.15);
	text-align: center;
	animation: fadeInUp 0.5s ease-out;
}

.response-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.response-icon.success {
	background: rgba(16, 185, 129, 0.15);
	color: var(--success-color);
}

.response-icon.info {
	background: rgba(59, 130, 246, 0.15);
	color: #3b82f6;
}

.response-heading {
	font-size: 1.75rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1rem;
}

.response-text {
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	margin-bottom: 2rem;
}

.calendly-container {
	margin: 2rem 0;
}

.calendly-container iframe {
	width: 100%;
	height: 600px;
	border: none;
	border-radius: calc(var(--border-radius) * 0.5);
}

@media (max-width: 768px) {
	.qualifying-form-section,
	.demo-gatekeeper-section {
		padding: 4rem 0;
	}
	
	.qualifying-form,
	.demo-gatekeeper-form {
		padding: 2rem 1.5rem;
	}
	
	.qualifying-response,
	.demo-gatekeeper-response {
		padding: 2rem 1.5rem;
	}
	
	.form-row {
		grid-template-columns: 1fr;
	}
	
	.step-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}
	
	.form-navigation {
		flex-direction: column;
	}
	
	.form-navigation .btn {
		width: 100%;
	}
	
	.response-heading {
		font-size: 1.5rem;
	}
	
	.calendly-container iframe {
		height: 500px;
	}
}

.payment-back-link {
	margin-bottom: 2rem;
}

.btn-back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-secondary);
	font-size: 0.9375rem;
	font-weight: 500;
	text-decoration: none;
	transition: var(--transition);
	padding: 0.5rem 0;
}

.btn-back svg {
	width: 20px;
	height: 20px;
	transition: var(--transition);
}

.btn-back:hover {
	color: var(--accent-color);
}

.btn-back:hover svg {
	transform: translateX(-4px);
}

.payment-header {
	text-align: center;
	margin-bottom: 4rem;
}

.payment-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
}

.discount-banner {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
	padding: 0.75rem 2rem;
	border-radius: 50px;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
	}
	50% {
		transform: scale(1.02);
		box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
	}
}

.discount-badge {
	font-size: 1.25rem;
	font-weight: 800;
	color: #1f2937;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.discount-text {
	font-size: 0.875rem;
	color: #1f2937;
	font-weight: 600;
	margin: 0;
}

.payment-subtitle {
	font-size: 1.125rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto 2rem;
	line-height: 1.6;
}

/* Trust Indicators */
.trust-indicators {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2rem;
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-light);
	font-size: 0.875rem;
	font-weight: 500;
	transition: var(--transition);
}

.trust-item svg {
	color: var(--accent-color);
	flex-shrink: 0;
}

.trust-item:hover {
	color: var(--text-primary);
	transform: translateY(-2px);
}

.limited-time-offer-banner {
	margin: 2.5rem auto 3rem;
	max-width: 750px;
	animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.offer-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	background: linear-gradient(135deg, rgba(250, 204, 21, 0.2) 0%, rgba(250, 204, 21, 0.1) 100%);
	border: 2px solid var(--accent-color);
	border-radius: 16px;
	padding: 1.25rem 2rem;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 32px rgba(250, 204, 21, 0.25), 0 0 0 1px rgba(250, 204, 21, 0.1);
}

.offer-badge::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(250, 204, 21, 0.1), transparent);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%) translateY(-100%) rotate(45deg);
	}
	100% {
		transform: translateX(100%) translateY(100%) rotate(45deg);
	}
}

.offer-badge svg {
	flex-shrink: 0;
	color: var(--accent-color);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.1);
	}
}

.offer-text {
	font-size: 1.125rem;
	color: #ffffff;
	font-weight: 600;
	text-align: center;
	position: relative;
	z-index: 1;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.offer-text strong {
	color: var(--accent-color);
	font-weight: 900;
	font-size: 1.25rem;
	text-shadow: 0 2px 8px rgba(250, 204, 21, 0.5);
}

.pricing-tiers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
	gap: 2rem;
	margin-bottom: 4rem;
	justify-content: center;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
}

.pricing-tier-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
	border: 2px solid rgba(148, 163, 184, 0.2);
	border-radius: 16px;
	padding: 2.5rem;
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-tier-card:hover {
	border-color: var(--accent-color);
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(250, 204, 21, 0.25), 0 0 0 1px rgba(250, 204, 21, 0.1);
}

.pricing-tier-card.popular {
	border-color: var(--accent-color);
	background: linear-gradient(135deg, rgba(250, 204, 21, 0.15) 0%, rgba(250, 204, 21, 0.05) 100%);
	transform: scale(1.02);
	box-shadow: 0 8px 24px rgba(250, 204, 21, 0.3), 0 0 0 1px rgba(250, 204, 21, 0.2);
}

.pricing-tier-card.popular .tier-pricing {
	background: rgba(250, 204, 21, 0.12);
	border-color: rgba(250, 204, 21, 0.3);
}

.pricing-tier-card.popular .tier-price,
.pricing-tier-card.popular .discounted-price {
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.pricing-tier-card.popular::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(135deg, var(--accent-color), #f59e0b);
	border-radius: var(--border-radius);
	z-index: -1;
	opacity: 0.3;
}

.popular-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--accent-color) 0%, #f59e0b 100%);
	color: #1f2937;
	padding: 0.5rem 1.75rem;
	border-radius: 24px;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	box-shadow: 0 4px 12px rgba(250, 204, 21, 0.4);
}

.tier-header {
	margin-bottom: 1.5rem;
}

.tier-name {
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	letter-spacing: -0.02em;
}

.tier-description {
	font-size: 0.875rem;
	color: var(--text-light);
	margin: 0;
}

.tier-pricing {
	margin-bottom: 2rem;
	padding: 2.5rem 1.5rem 3rem;
	border-bottom: none;
	background: rgba(250, 204, 21, 0.08);
	border-radius: 12px;
	border: 2px solid rgba(250, 204, 21, 0.2);
	margin-left: -0.5rem;
	margin-right: -0.5rem;
	position: relative;
	overflow: visible;
}

.price-comparison {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 0;
	position: relative;
	width: 100%;
}

.original-price {
	font-size: 1.25rem;
	color: var(--text-light);
	text-decoration: line-through;
	opacity: 0.6;
	font-weight: 500;
	line-height: 1;
	margin: 0;
}

.discounted-price {
	font-size: 3rem;
	font-weight: 900;
	color: #ffffff;
	letter-spacing: -0.04em;
	line-height: 1;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	position: relative;
	display: inline-block;
	margin: 0;
}

.discounted-price::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120%;
	height: 120%;
	background: radial-gradient(circle, rgba(250, 204, 21, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	z-index: -1;
}

.price-comparison::after {
	content: '/event';
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-light);
	opacity: 0.8;
	white-space: nowrap;
	margin-top: 0.5rem;
}

.contact-price {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
}

.contact-text {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--accent-color);
	text-align: center;
	letter-spacing: -0.02em;
}

.savings-badge {
	display: inline-block;
	background: rgba(16, 185, 129, 0.2);
	color: #10b981;
	padding: 0.25rem 0.75rem;
	border-radius: 12px;
	font-size: 0.875rem;
	font-weight: 600;
}

.tier-features {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
	flex-grow: 1;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-size: 0.9375rem;
	color: var(--text-primary);
}

.feature-check {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: #10b981;
	margin-top: 2px;
}

.btn-select-tier {
	width: 100%;
	margin-top: auto;
}

.btn-select-tier.selected {
	background: var(--secondary-color);
	border-color: var(--secondary-color);
}

.btn-contact-us {
	width: 100%;
	margin-top: auto;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.contact-info-display {
	width: 100%;
	margin-top: auto;
	padding: 1.5rem;
	background: rgba(250, 204, 21, 0.1);
	border-radius: 12px;
	border: 2px solid rgba(250, 204, 21, 0.2);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-info-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	color: var(--text-primary);
}

.contact-info-item svg {
	flex-shrink: 0;
	color: var(--accent-color);
}

.contact-link {
	color: var(--accent-color);
	font-size: 1.125rem;
	font-weight: 600;
	text-decoration: none;
	cursor: default;
	user-select: text;
}

.payment-form-container,
/* Priority Waitlist Reservation Card */
.priority-waitlist-reservation-card {
	max-width: 700px;
	margin: 3rem auto 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
	border: 2px solid rgba(250, 204, 21, 0.2);
	border-radius: 20px;
	padding: 0;
	position: relative;
	overflow: hidden;
	box-shadow: 
		0 10px 40px rgba(0, 0, 0, 0.2),
		0 0 0 1px rgba(255, 255, 255, 0.1) inset,
		0 0 60px rgba(250, 204, 21, 0.1);
	backdrop-filter: blur(20px);
}

.priority-waitlist-reservation-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color) 0%, #f59e0b 50%, var(--accent-color) 100%);
	background-size: 200% 100%;
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.reservation-card-header {
	padding: 2.5rem 2.5rem 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(135deg, rgba(250, 204, 21, 0.05) 0%, rgba(250, 204, 21, 0.02) 100%);
}

.reservation-card-title {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 1rem;
	text-align: center;
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, #ffffff 0%, rgba(250, 204, 21, 0.9) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.reservation-card-intro {
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.85);
	text-align: center;
	line-height: 1.7;
	margin: 0;
	max-width: 580px;
	margin-left: auto;
	margin-right: auto;
}

.checkout-summary-container {
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 2.5rem;
	margin-top: 0;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 10;
	animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: none;
	box-shadow: none;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.checkout-summary-container[style*="display: none"] {
	display: none !important;
	visibility: hidden;
	opacity: 0;
}

.checkout-actions {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.checkout-actions .btn {
	flex: 1;
	min-width: 150px;
}

.price-display {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	position: relative;
}

.tier-price {
	font-size: 3rem;
	font-weight: 900;
	color: #ffffff;
	letter-spacing: -0.04em;
	line-height: 1;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	position: relative;
	display: inline-block;
}

.tier-price::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120%;
	height: 120%;
	background: radial-gradient(circle, rgba(250, 204, 21, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	z-index: -1;
}

/* Add period styling for better visual separation */
.tier-price::after {
	content: '/event';
	position: absolute;
	bottom: -1.5rem;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-light);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
}

.selected-tier-summary {
	text-align: center;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.summary-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: rgba(16, 185, 129, 0.15);
	border-radius: 50%;
	margin-bottom: 1rem;
	color: #10b981;
}

.summary-icon svg {
	width: 24px;
	height: 24px;
}

.selected-tier-summary h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

.summary-details {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
}

.summary-label {
	font-size: 0.9375rem;
	color: var(--text-light);
	font-weight: 500;
}

.summary-value {
	font-size: 1rem;
	color: var(--text-primary);
	font-weight: 600;
}

.summary-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
}

.qty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.06);
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	transition: var(--transition);
}

.qty-btn:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(250, 204, 21, 0.5);
}

.qty-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.qty-display {
	display: inline-block;
	min-width: 28px;
	text-align: center;
	margin: 0 10px;
	font-weight: 700;
}

.vendor-count-input {
	width: 110px;
	padding: 0.5rem 0.625rem;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-weight: 600;
	text-align: right;
}

.vendor-count-input:focus {
	outline: none;
	border-color: rgba(250, 204, 21, 0.8);
	box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.2);
}

.payment-security-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem;
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.2);
	border-radius: 8px;
	margin-bottom: 1.5rem;
	font-size: 0.875rem;
	color: var(--text-light);
}

.payment-security-note svg {
	color: #10b981;
	flex-shrink: 0;
}

.summary-details p {
	margin: 0;
	color: var(--text-primary);
	font-size: 1rem;
}

.summary-details strong {
	color: var(--text-primary);
}

.discount-applied {
	color: #10b981;
	font-weight: 600;
	font-size: 0.875rem;
}

/* Coupon Code Section */
.coupon-section {
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.coupon-input-wrapper {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.coupon-code-input {
	flex: 1;
	padding: 0.75rem 1rem;
	border: 2px solid rgba(148, 163, 184, 0.3);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--text-primary);
	font-size: 0.9375rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: var(--transition);
}

.coupon-code-input:focus {
	outline: none;
	border-color: var(--accent-color);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
}

.coupon-code-input::placeholder {
	color: var(--text-light);
	text-transform: none;
	letter-spacing: normal;
}

.btn-apply-coupon {
	flex-shrink: 0;
	padding: 0.75rem 1.5rem;
	min-width: auto;
	white-space: nowrap;
}

.coupon-message {
	font-size: 0.875rem;
	padding: 0.5rem 0;
	min-height: 1.5rem;
	display: none;
}

.coupon-message.success {
	color: #10b981;
	display: block;
}

.coupon-message.error {
	color: #ef4444;
	display: block;
}

.coupon-applied {
	background: rgba(16, 185, 129, 0.1);
	border: 2px solid rgba(16, 185, 129, 0.3);
	border-radius: 12px;
	padding: 1rem;
	margin-top: 1rem;
	animation: fadeInUp 0.3s ease-out;
}

.coupon-applied-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.coupon-applied-content svg {
	flex-shrink: 0;
	color: #10b981;
}

.coupon-applied-text {
	flex: 1;
	color: var(--text-primary);
	font-size: 0.9375rem;
	font-weight: 600;
}

.btn-remove-coupon {
	background: transparent;
	border: none;
	color: var(--text-light);
	cursor: pointer;
	padding: 0.25rem;
	border-radius: 4px;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-remove-coupon:hover {
	background: rgba(239, 68, 68, 0.1);
	color: #ef4444;
}

.coupon-price-breakdown {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9375rem;
}

.price-label {
	color: var(--text-light);
	font-weight: 500;
}

.price-value {
	color: var(--text-primary);
	font-weight: 600;
}

.discount-row .price-value {
	color: #10b981;
}

.discount-value {
	font-weight: 700;
}

.total-row {
	padding-top: 0.5rem;
	border-top: 1px solid rgba(16, 185, 129, 0.2);
	margin-top: 0.25rem;
}

.total-row .price-label {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text-primary);
}

.total-value {
	font-size: 1.25rem;
	font-weight: 700;
	color: #10b981;
}

.payment-form {
	margin-top: 1.5rem;
}

@media (max-width: 768px) {
	.pricing-tiers-grid {
		grid-template-columns: 1fr;
	}
	
	.pricing-tier-card.popular {
		transform: scale(1);
	}
	
	.discount-banner {
		flex-direction: column;
		gap: 0.5rem;
		padding: 1rem 1.5rem;
	}
	
	.payment-form-container,
	.checkout-summary-container {
		padding: 1.5rem;
		margin-top: 2rem;
		width: 100%;
	}
	
	.checkout-actions {
		flex-direction: column;
	}
	
	.checkout-actions .btn {
		width: 100%;
		min-width: auto;
	}
	
	.coupon-input-wrapper {
		flex-direction: column;
	}
	
	.btn-apply-coupon {
		width: 100%;
	}
	
	.coupon-applied-content {
		flex-wrap: wrap;
	}
	
	.priority-waitlist-reservation-card {
		margin-top: 2rem;
		border-radius: 16px;
	}
	
	.reservation-card-header {
		padding: 2rem 1.5rem 1.5rem;
	}
	
	.reservation-card-title {
		font-size: 1.75rem;
	}
	
	.reservation-card-intro {
		font-size: 1rem;
	}
	
	.checkout-summary-container {
		padding: 2rem 1.5rem;
	}
	
	.payment-structure-section {
		padding: 2rem 0 4rem;
	}
	
	.payment-header {
		margin-bottom: 2rem;
	}
}

/* Features Section */
.features-section {
	padding: 6rem 0;
	background: var(--bg-secondary);
	position: relative;
}

.section-heading {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	text-align: center;
	color: #ffffff;
	margin-bottom: 3rem;
	position: relative;
}

.section-heading::after {
	content: '';
	display: block;
	width: 80px;
	height: 3px;
	margin: 0.75rem auto 0;
	background: var(--accent-color);
	border-radius: 999px;
	opacity: 0.85;
}

.section--alt {
	background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

/* Subtle pattern utilities (overlay via ::before to preserve backgrounds) */
.features-section.bg-dots::before,
.features-section.bg-grid::before,
.features-section.bg-diagonal::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 1;
}

.features-section.bg-dots::before {
	background-image: radial-gradient(rgba(250, 204, 21, 0.06) 1px, transparent 1px);
	background-size: 18px 18px;
	background-position: center top;
}

.features-section.bg-grid::before {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 24px 24px, 24px 24px;
	background-position: center center;
}

.features-section.bg-diagonal::before {
	background-image: repeating-linear-gradient(45deg, rgba(250, 204, 21, 0.04) 0, rgba(250, 204, 21, 0.04) 2px, transparent 2px, transparent 12px);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.feature-card {
	background: rgba(255, 255, 255, 0.05);
	padding: 2.5rem;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-md);
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: var(--transition);
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
	border-color: rgba(255, 255, 255, 0.2);
}

.feature-card-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 1.5rem;
	color: var(--accent-color);
	background: rgba(250, 204, 21, 0.12);
	border-radius: calc(var(--border-radius) * 0.75);
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-card-icon svg {
	width: 32px;
	height: 32px;
}

.feature-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1rem;
}

.feature-card-description {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
}

/* Product Explanation Section */
.product-explanation-section {
	padding: 6rem 0;
	background: var(--bg-primary);
	position: relative;
}

.product-explanation-section .section-subtitle {
	text-align: center;
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.8);
	margin: -1rem auto 3rem;
	max-width: 700px;
	line-height: 1.7;
}

.product-apps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.product-app-card {
	background: rgba(255, 255, 255, 0.05);
	padding: 2.5rem;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-md);
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: var(--transition);
}

.product-app-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
	border-color: rgba(255, 255, 255, 0.2);
}

.product-app-header {
	text-align: center;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.product-app-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.25rem;
	color: var(--accent-color);
	background: rgba(250, 204, 21, 0.12);
	border-radius: calc(var(--border-radius) * 0.75);
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-app-icon svg {
	width: 32px;
	height: 32px;
}

.product-app-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.5rem;
}

.product-app-subtitle {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.7);
}

.product-app-features {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.product-app-feature {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

.product-app-feature svg {
	flex-shrink: 0;
	color: var(--accent-color);
	margin-top: 0.125rem;
}

.product-app-feature span {
	flex: 1;
}

/* Responsive: Product Explanation Section */
@media (max-width: 768px) {
	.product-apps-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.product-app-card {
		padding: 2rem;
	}

	.product-explanation-section {
		padding: 4rem 0;
	}
}

/* How It Works Section */
.how-it-works-section {
	padding: 6rem 0 3rem;
	background: var(--bg-secondary);
	position: relative;
}

/* Avoid “double padding” between adjacent sections */
.how-it-works-section + .features-section {
	padding-top: 3rem;
}

.how-it-works-section .section-subtitle {
	text-align: center;
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.8);
	margin: -1rem auto 3rem;
	max-width: 600px;
	line-height: 1.7;
}

.how-it-works-steps {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.how-step {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	background: rgba(255, 255, 255, 0.05);
	padding: 2rem;
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: var(--transition);
}

.how-step:hover {
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateX(5px);
	box-shadow: var(--shadow-md);
}

.how-step-number {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: var(--accent-color);
	color: var(--bg-primary);
	font-size: 1.5rem;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3);
}

.how-step-content {
	flex: 1;
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
}

.how-step-icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	color: var(--accent-color);
	background: rgba(250, 204, 21, 0.12);
	border-radius: calc(var(--border-radius) * 0.75);
	display: flex;
	align-items: center;
	justify-content: center;
}

.how-step-icon svg {
	width: 32px;
	height: 32px;
}

.how-step-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.75rem;
}

.how-step-description {
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	margin: 0;
}

.how-step-connector {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: -0.5rem 0;
	color: rgba(250, 204, 21, 0.4);
}

.how-step-connector svg {
	width: 24px;
	height: 24px;
}

/* Responsive: How It Works Section */
@media (max-width: 768px) {
	.how-it-works-section {
		padding: 4rem 0 2rem;
	}

	.how-it-works-section + .features-section {
		padding-top: 2rem;
	}

	.how-it-works-steps {
		gap: 1rem;
	}

	.how-step {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 1.5rem;
		padding: 1.5rem;
	}

	.how-step:hover {
		transform: translateY(-3px);
	}

	.how-step-content {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 1rem;
	}

	.how-step-connector {
		margin: -0.25rem 0;
		transform: rotate(90deg);
	}
}

/* FAQ Section */
.faq-section {
	padding: 6rem 0;
	background: var(--bg-secondary);
	position: relative;
}

.faq-section .section-subtitle {
	text-align: center;
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.8);
	margin: -1rem auto 3rem;
	max-width: 600px;
	line-height: 1.7;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq-item {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--border-radius);
	overflow: hidden;
	transition: var(--transition);
	position: relative;
}

.faq-item:hover {
	border-color: rgba(255, 255, 255, 0.2);
}

.faq-item[data-open="true"] {
	border-color: rgba(250, 204, 21, 0.4);
	background: rgba(255, 255, 255, 0.08);
}

.faq-question {
	width: 100%;
	padding: 1.5rem 2rem;
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 1.125rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	transition: var(--transition);
}

.faq-question:hover {
	color: var(--accent-color);
}

.faq-question span {
	flex: 1;
	line-height: 1.5;
}

.faq-icon {
	flex-shrink: 0;
	color: var(--accent-color);
	transition: transform 0.3s ease;
	width: 20px;
	height: 20px;
}

.faq-item[data-open="true"] .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 2rem;
}

.faq-item[data-open="true"] .faq-answer {
	padding: 0 2rem 3rem;
}

.faq-answer p {
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	margin: 0;
	padding-top: 0.5rem;
}

/* Responsive: FAQ Section */
@media (max-width: 768px) {
	.faq-section {
		padding: 4rem 0;
	}

	.faq-list {
		gap: 0.75rem;
	}

	.faq-question {
		padding: 1.25rem 1.5rem;
		font-size: 1rem;
		gap: 1rem;
	}

	.faq-answer {
		padding: 0 1.5rem;
	}

	.faq-item[data-open="true"] .faq-answer {
		padding: 0 1.5rem 2rem;
	}
}

/* App Preview Section */
.app-preview-section {
	padding: 6rem 0;
	background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.app-preview-section .section-subtitle {
	text-align: center;
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.8);
	margin: -1rem auto 3rem;
	max-width: 600px;
}

.app-preview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	margin-top: 4rem;
}

.app-preview-item {
	text-align: center;
}

.app-preview-mockup {
	margin-bottom: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mockup-device {
	width: 200px;
	height: 400px;
	background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
	border-radius: 30px;
	padding: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
	position: relative;
	transition: var(--transition);
}

.mockup-device::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 2px;
}

.mockup-device--tablet {
	width: 280px;
	height: 380px;
	border-radius: 20px;
}

.app-preview-item:hover .mockup-device {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15) inset, 0 0 40px rgba(250, 204, 21, 0.1);
}

.mockup-screen {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #0f1117 0%, #1a1d24 100%);
	border-radius: 22px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.mockup-placeholder {
	padding: 2rem 1rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.mockup-icon {
	width: 60px;
	height: 60px;
	color: var(--accent-color);
	opacity: 0.8;
}

.mockup-label {
	font-size: 0.875rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.mockup-description {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	line-height: 1.4;
}

.app-preview-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1rem;
}

.app-preview-description {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	max-width: 350px;
	margin: 0 auto;
}

/* Inline CTAs */
.cta-inline {
	margin-top: 3rem;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* CTA Section */
.cta-section {
	padding: 6rem 0;
	background: linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(11, 13, 18, 0.98));
	color: var(--text-primary);
	text-align: center;
}

.cta-heading {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	margin-bottom: 1rem;
	color: #ffffff;
}

.cta-text {
	font-size: 1.25rem;
	margin-bottom: 2.5rem;
	color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-secondary {
	background: var(--accent-color);
	color: #111827;
	border-color: var(--accent-color);
}

.cta-section .btn-secondary:hover {
	background: rgba(250, 204, 21, 0.85);
	color: #0b0d12;
}

/* Footer */
/* ── Footer ── */
.bb-footer {
	background: #080a0f;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	color: rgba(248, 250, 252, 0.6);
	font-size: 0.9rem;
}

.bb-footer__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	padding-top: 4rem;
	padding-bottom: 3rem;
}

@media (min-width: 768px) {
	.bb-footer__inner {
		grid-template-columns: 1.4fr 2fr;
		gap: 4rem;
	}
}

/* Brand */
.bb-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.bb-footer__logo {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	text-decoration: none;
	width: fit-content;
}

.bb-footer__logo-wordmark {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text-primary);
	letter-spacing: -0.02em;
}

.bb-footer__logo-img {
	max-height: 40px;
	width: auto;
	display: block;
}

.bb-footer__tagline {
	margin: 0;
	line-height: 1.6;
	max-width: 260px;
}

.bb-footer__social {
	display: flex;
	gap: 0.75rem;
	margin-top: 0.25rem;
}

.bb-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(248, 250, 252, 0.65);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	text-decoration: none;
}

.bb-footer__social-link:hover {
	background: rgba(250, 204, 21, 0.12);
	border-color: rgba(250, 204, 21, 0.35);
	color: var(--accent-color);
}

/* Nav */
.bb-footer__nav {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

@media (max-width: 480px) {
	.bb-footer__nav {
		grid-template-columns: repeat(2, 1fr);
	}
}

.bb-footer__nav-heading {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-primary);
	margin: 0 0 1rem;
}

.bb-footer__nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.bb-footer__nav-link {
	color: rgba(248, 250, 252, 0.55);
	text-decoration: none;
	transition: color 0.2s ease;
	font-size: 0.875rem;
}

.bb-footer__nav-link:hover {
	color: var(--accent-color);
}

/* Bottom bar */
.bb-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 1.25rem 0;
}

.bb-footer__bottom-inner {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	align-items: center;
	text-align: center;
}

@media (min-width: 640px) {
	.bb-footer__bottom-inner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

.bb-footer__copy,
.bb-footer__made-with {
	margin: 0;
	font-size: 0.8125rem;
	color: rgba(248, 250, 252, 0.35);
}

/* Legacy — kept for other pages that may use .site-footer */
.site-footer {
	background: var(--bg-dark);
	color: rgba(248, 250, 252, 0.72);
	padding: 3rem 0;
}

.footer-content {
	display: flex;
	justify-content: center;
	align-items: center;
}

.site-copyright {
	margin: 0;
	font-size: 0.875rem;
}

/* Animations */
.animate-fade-in {
	animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
	animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Screen Reader Text */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

/* Countdown Banner */
.countdown-banner {
	background: #ffffff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	padding: 1.5rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: none;
	will-change: auto;
	contain: layout style paint;
}

.countdown-banner[style*="position: absolute"] {
	position: absolute !important;
}

.countdown-banner-content {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 3rem !important;
	flex-wrap: nowrap !important;
}

.countdown-banner-text {
	display: inline-flex !important;
	align-items: center !important;
	gap: 0.625rem !important;
	color: #111827 !important;
	font-size: 1rem !important;
	font-weight: 600 !important;
	white-space: nowrap !important;
	text-shadow: none !important;
	letter-spacing: -0.01em !important;
}

.countdown-banner-icon {
	font-size: 1.375rem;
	display: inline-block;
}

.countdown-banner-text strong {
	color: #111827 !important;
	font-weight: 700;
}

.countdown-banner-timer {
	display: inline-flex !important;
	align-items: baseline !important;
	gap: 1.5rem !important;
	flex-wrap: nowrap !important;
}

.countdown-unit-box {
	display: inline-flex !important;
	flex-direction: row !important;
	align-items: baseline !important;
	justify-content: center !important;
	gap: 0.375rem !important;
}

.countdown-number {
	font-size: 2.5rem !important;
	font-weight: 700 !important;
	color: #111827 !important;
	line-height: 1 !important;
	text-shadow: none !important;
	font-variant-numeric: tabular-nums !important;
	display: inline-block !important;
	letter-spacing: -0.02em !important;
}

.countdown-label {
	font-size: 0.8125rem !important;
	color: #6b7280 !important;
	text-transform: lowercase !important;
	letter-spacing: 0 !important;
	font-weight: 500 !important;
	display: inline-block !important;
}

.countdown-separator {
	display: none;
}

.countdown-banner-cta {
	display: inline-block !important;
	background: #111827 !important;
	color: #ffffff !important;
	padding: 0.75rem 1.75rem !important;
	border-radius: 8px !important;
	font-weight: 600 !important;
	font-size: 0.9375rem !important;
	text-transform: capitalize !important;
	letter-spacing: -0.01em !important;
	transition: all 0.2s ease !important;
	white-space: nowrap !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12) !important;
	text-decoration: none !important;
	border: none !important;
}

.countdown-banner-cta:hover {
	background: #000000 !important;
	color: #ffffff !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16) !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.countdown-banner-content {
		gap: 2rem !important;
	}

	.countdown-banner-text {
		font-size: 0.9375rem !important;
	}

	.countdown-banner-timer {
		gap: 1rem !important;
	}

	.countdown-number {
		font-size: 2rem !important;
	}

	.countdown-label {
		font-size: 0.75rem !important;
	}

	.countdown-banner-cta {
		padding: 0.625rem 1.5rem !important;
		font-size: 0.875rem !important;
	}
}

@media (max-width: 768px) {
	.countdown-banner {
		padding: 1.25rem 0;
	}

	.countdown-banner-content {
		flex-direction: column !important;
		gap: 1rem !important;
	}

	.countdown-banner-text {
		display: none !important;
	}

	.countdown-banner-timer {
		gap: 1rem !important;
	}

	.countdown-number {
		font-size: 1.75rem !important;
	}

	.countdown-label {
		font-size: 0.6875rem !important;
	}

	.countdown-banner-cta {
		width: auto !important;
		padding: 0.625rem 1.5rem !important;
	}

	.menu-toggle {
		display: block;
	}

	#primary-menu {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background: var(--bg-secondary);
		flex-direction: column;
		padding: 1.5rem;
		gap: 1rem;
		box-shadow: var(--shadow-lg);
		border-top: 1px solid var(--border-color);
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: var(--transition);
	}

	#primary-menu.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.hero-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.hero-section {
		padding-top: 56px;
	}

	.preorder-form-container {
		padding: 2rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.app-preview-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.mockup-device {
		width: 180px;
		height: 360px;
	}

	.mockup-device--tablet {
		width: 260px;
		height: 350px;
	}

	.footer-content {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	/* Payment Structure Mobile Styles */
	.trust-indicators {
		flex-direction: column;
		gap: 1rem;
		margin-top: 2rem;
		padding-top: 1.5rem;
	}

	.trust-item {
		font-size: 0.8125rem;
	}

	.pricing-tiers-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.pricing-tier-card {
		padding: 2rem;
	}

	.pricing-tier-card.popular {
		transform: scale(1);
	}

	.tier-price,
	.discounted-price {
		font-size: 2.5rem;
	}
	
	.original-price {
		font-size: 1.125rem;
	}
	
	.price-comparison {
		gap: 0.5rem;
	}
	
	.price-comparison::after {
		font-size: 0.75rem;
		margin-top: 0.25rem;
	}
	
	.limited-time-offer-banner {
		margin: 2rem auto 2.5rem;
		padding: 0 1rem;
	}
	
	.offer-badge {
		padding: 1rem 1.5rem;
		flex-direction: column;
		gap: 0.5rem;
	}
	
	.offer-text {
		font-size: 1rem;
	}
	
	.offer-text strong {
		font-size: 1.125rem;
		display: block;
		margin-bottom: 0.25rem;
	}
	
	.tier-pricing {
		padding: 2rem 1rem 2.5rem;
		margin-left: 0;
		margin-right: 0;
	}

	.priority-waitlist-reservation-card {
		margin-top: 1.5rem;
		border-radius: 16px;
	}
	
	.reservation-card-header {
		padding: 1.5rem 1.25rem 1.25rem;
	}
	
	.reservation-card-title {
		font-size: 1.5rem;
	}
	
	.reservation-card-intro {
		font-size: 0.9375rem;
	}
	
	.checkout-summary-container {
		padding: 1.5rem 1.25rem;
		margin-top: 0;
	}

	.summary-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.25rem;
	}

	.checkout-actions {
		flex-direction: column;
	}

	.checkout-actions .btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.countdown-banner {
		padding: 1rem 0;
	}

	.countdown-banner-text {
		font-size: 0.8125rem !important;
	}

	.countdown-banner-timer {
		gap: 0.75rem !important;
	}

	.countdown-unit-box {
		gap: 0.25rem !important;
	}

	.countdown-number {
		font-size: 1.5rem !important;
	}

	.countdown-label {
		font-size: 0.625rem !important;
	}

	.container {
		padding: 0 1rem;
	}

	.hero-content {
		max-width: 100%;
	}
	
	.hero-heading {
		font-size: 2rem;
	}

	.hero-subheading {
		font-size: 1rem;
	}
	
	.hero-cta-group {
		flex-direction: column;
		width: 100%;
	}
	
	.hero-commitment-note {
		text-align: center;
		justify-content: center;
	}

	.preorder-form-container {
		padding: 1.5rem;
	}

	.features-section,
	.cta-section {
		padding: 4rem 0;
	}
}

/* ========================================
   Interactive Bingo Demo
   ======================================== */

.bingo-demo-section {
	padding: 5rem 0;
	background: linear-gradient(180deg, #4b5563 0%, #374151 50%, #1f2937 100%);
	position: relative;
}

.bingo-demo-section::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.4;
	background-image: radial-gradient(rgba(250, 204, 21, 0.08) 1px, transparent 1px);
	background-size: 20px 20px;
	background-position: center center;
}

.bingo-demo-section.section--alt {
	background: linear-gradient(180deg, #4b5563 0%, #374151 50%, #1f2937 100%) !important;
}

.bingo-demo-section .container {
	position: relative;
	z-index: 1;
}

.bingo-demo-section .section-heading {
	margin-bottom: 1rem;
	color: #ffffff;
	position: relative;
	z-index: 1;
}

.bingo-demo-section .section-subtitle {
	text-align: center;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	margin: 0 auto 1rem;
	max-width: 600px;
	position: relative;
	z-index: 1;
}

.demo-disclaimer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	max-width: 700px;
	margin: 0 auto 3rem;
	padding: 1rem 1.5rem;
	background: rgba(250, 204, 21, 0.15);
	border-left: 4px solid var(--accent-color);
	border-radius: 0.5rem;
	position: relative;
	z-index: 1;
}

.demo-disclaimer svg {
	flex-shrink: 0;
	color: var(--accent-color);
}

.demo-disclaimer span {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9375rem;
	line-height: 1.5;
	font-weight: 500;
}

.bingo-demo-container {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}

.bingo-card {
	background: #1f2937;
	border-radius: 1rem;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
	padding: 2rem;
	max-width: 600px;
	width: 100%;
}

.bingo-header {
	text-align: center;
	margin-bottom: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bingo-header .custom-logo-link {
	display: inline-block;
	max-width: 160px;
	pointer-events: none;
	cursor: default;
}

.bingo-header .custom-logo {
	width: 100%;
	height: auto;
	max-height: 65px;
	object-fit: contain;
}

.bingo-header-text {
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: 0.5rem;
	color: var(--accent-color);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.bingo-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.bingo-cell {
	aspect-ratio: 1;
	background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
	border: 2px solid #e5e7eb;
	border-radius: 0.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	padding: 0.5rem;
}

.bingo-cell::before {
	content: '';
	position: absolute;
	top: 0.375rem;
	right: 0.375rem;
	width: 1.25rem;
	height: 1.25rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cpath d='M7 7h3v3H7zM14 7h3v3h-3zM7 14h3v3H7z'/%3E%3C/svg%3E");
	opacity: 0.4;
	transition: opacity 0.3s ease;
}

.bingo-cell:hover::before {
	opacity: 0.7;
}

.bingo-cell.marked::before {
	opacity: 0;
}

.bingo-cell:hover:not(.marked):not(.free) {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	border-color: var(--accent-color);
	transform: scale(1.05);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.bingo-cell.free {
	background: linear-gradient(135deg, var(--accent-color) 0%, #f59e0b 100%);
	color: #1f2937;
	border-color: var(--accent-color);
	cursor: default;
	font-weight: 700;
	font-size: 1rem;
}

.bingo-cell-number {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 0.25rem;
}

.bingo-cell-label {
	font-size: 0.75rem;
	color: #6b7280;
	text-align: center;
	line-height: 1.2;
}

.bingo-cell.marked {
	background: linear-gradient(135deg, var(--accent-color) 0%, #f59e0b 100%);
	border-color: var(--accent-color);
	animation: markCell 0.3s ease;
}

.bingo-cell.marked .bingo-cell-number,
.bingo-cell.marked .bingo-cell-label {
	color: #1f2937;
	font-weight: 700;
}

.bingo-cell.marked::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 3rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 900;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	animation: stampIn 0.3s ease;
}

@keyframes markCell {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(0.95);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes stampIn {
	0% {
		transform: translate(-50%, -50%) scale(0) rotate(-10deg);
		opacity: 0;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.2) rotate(5deg);
	}
	100% {
		transform: translate(-50%, -50%) scale(1) rotate(0deg);
		opacity: 1;
	}
}

.bingo-reset-btn {
	width: 100%;
	padding: 1rem;
	background: var(--accent-color);
	color: #1f2937;
	border: none;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.bingo-reset-btn:hover {
	background: #fbbf24;
	transform: translateY(-2px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.bingo-reset-btn:active {
	transform: translateY(0);
}

.bingo-progress {
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: #111827;
	border-radius: 0.5rem;
}

.progress-text {
	text-align: center;
	font-size: 1rem;
	font-weight: 600;
	color: #e5e7eb;
	margin-bottom: 0.5rem;
}

.progress-text span {
	color: var(--accent-color);
	font-size: 1.25rem;
}

.progress-bar-container {
	width: 100%;
	height: 0.75rem;
	background: #374151;
	border-radius: 0.375rem;
	overflow: hidden;
}

.progress-bar-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--accent-color) 0%, #fbbf24 100%);
	border-radius: 0.375rem;
	transition: width 0.5s ease;
	width: 4%;
}

/* Scanning Overlay */
.scan-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.85);
	z-index: 10000;
	justify-content: center;
	align-items: center;
	animation: fadeIn 0.2s ease;
}

.scan-overlay.active {
	display: flex;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.scan-modal {
	background: white;
	border-radius: 1rem;
	padding: 2rem;
	max-width: 400px;
	width: 90%;
	text-align: center;
}

.scan-animation {
	margin-bottom: 1.5rem;
}

.qr-code-visual {
	width: 200px;
	height: 200px;
	margin: 0 auto;
	background: white;
	border: 3px solid #e5e7eb;
	border-radius: 0.5rem;
	position: relative;
	overflow: hidden;
}

.qr-grid {
	width: 100%;
	height: 100%;
	background-image: 
		repeating-linear-gradient(0deg, #1f2937 0px, #1f2937 8px, transparent 8px, transparent 16px),
		repeating-linear-gradient(90deg, #1f2937 0px, #1f2937 8px, transparent 8px, transparent 16px);
	opacity: 0.9;
}

.scan-line {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
	box-shadow: 0 0 10px var(--accent-color);
	animation: scan 1.5s ease-in-out infinite;
}

@keyframes scan {
	0%, 100% { top: 0; }
	50% { top: calc(100% - 3px); }
}

.scan-text {
	font-size: 1.25rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: 1rem;
}

.scan-success {
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.scan-success.active {
	display: flex;
	animation: successPop 0.4s ease;
}

@keyframes successPop {
	0% { transform: scale(0); opacity: 0; }
	50% { transform: scale(1.1); }
	100% { transform: scale(1); opacity: 1; }
}

.scan-success svg {
	color: #10b981;
}

.success-text {
	font-size: 1.5rem;
	font-weight: 700;
	color: #10b981;
}

/* Bingo Celebration */
.bingo-celebration-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	z-index: 10001;
	justify-content: center;
	align-items: center;
	animation: fadeIn 0.3s ease;
}

.bingo-celebration-overlay.active {
	display: flex;
}

.confetti-container {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	pointer-events: none;
}

.confetti {
	position: absolute;
	width: 10px;
	height: 10px;
	background: var(--accent-color);
	opacity: 0;
	animation: confettiFall 3s ease-out forwards;
}

@keyframes confettiFall {
	0% {
		opacity: 1;
		transform: translateY(-100vh) rotate(0deg);
	}
	100% {
		opacity: 0;
		transform: translateY(100vh) rotate(720deg);
	}
}

.bingo-celebration-content {
	text-align: center;
	z-index: 1;
	animation: celebrationBounce 0.6s ease;
}

@keyframes celebrationBounce {
	0% {
		transform: scale(0) rotate(-10deg);
		opacity: 0;
	}
	50% {
		transform: scale(1.1) rotate(5deg);
	}
	100% {
		transform: scale(1) rotate(0deg);
		opacity: 1;
	}
}

.bingo-celebration-icon {
	font-size: 8rem;
	margin-bottom: 1rem;
	animation: iconPulse 1s ease infinite;
}

@keyframes iconPulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
}

.bingo-celebration-title {
	font-size: 5rem;
	font-weight: 900;
	color: var(--accent-color);
	text-shadow: 0 0 20px rgba(251, 191, 36, 0.8),
	             0 0 40px rgba(251, 191, 36, 0.6),
	             0 0 60px rgba(251, 191, 36, 0.4);
	margin-bottom: 1rem;
	letter-spacing: 0.5rem;
	animation: titleGlow 1.5s ease infinite;
}

@keyframes titleGlow {
	0%, 100% {
		text-shadow: 0 0 20px rgba(251, 191, 36, 0.8),
		             0 0 40px rgba(251, 191, 36, 0.6),
		             0 0 60px rgba(251, 191, 36, 0.4);
	}
	50% {
		text-shadow: 0 0 30px rgba(251, 191, 36, 1),
		             0 0 60px rgba(251, 191, 36, 0.8),
		             0 0 90px rgba(251, 191, 36, 0.6);
	}
}

.bingo-celebration-text {
	font-size: 1.5rem;
	color: white;
	margin-bottom: 2rem;
	font-weight: 600;
}

.bingo-continue-btn {
	background: var(--accent-color);
	color: #1f2937;
	border: none;
	padding: 1rem 2rem;
	font-size: 1.125rem;
	font-weight: 700;
	border-radius: 0.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.bingo-continue-btn:hover {
	background: #fbbf24;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.4);
}

.bingo-continue-btn:active {
	transform: translateY(0);
}

.bingo-demo-note {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
	padding: 1.5rem;
	background: rgba(250, 204, 21, 0.15);
	border-radius: 0.75rem;
	border-left: 4px solid var(--accent-color);
}

.bingo-demo-note p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.bingo-card {
		padding: 1.5rem;
	}
	
	.bingo-header .custom-logo-link {
		max-width: 130px;
	}
	
	.bingo-header .custom-logo {
		max-height: 50px;
	}
	
	.bingo-header-text {
		font-size: 2.5rem;
		letter-spacing: 0.4rem;
	}
	
	.bingo-grid {
		gap: 0.375rem;
	}
	
	.bingo-cell::before {
		width: 1rem;
		height: 1rem;
		top: 0.25rem;
		right: 0.25rem;
	}
	
	.bingo-cell-number {
		font-size: 1rem;
	}
	
	.bingo-cell-label {
		font-size: 0.625rem;
	}
	
	.bingo-cell.marked::after {
		font-size: 2.5rem;
	}
	
	.bingo-demo-section .section-subtitle {
		font-size: 1rem;
		padding: 0 1rem;
	}
	
	.demo-disclaimer {
		padding: 0.875rem 1rem;
		margin: 0 1rem 2rem;
	}
	
	.demo-disclaimer span {
		font-size: 0.875rem;
	}
	
	.qr-code-visual {
		width: 160px;
		height: 160px;
	}
	
	.scan-modal {
		padding: 1.5rem;
	}
	
	.bingo-celebration-icon {
		font-size: 6rem;
	}
	
	.bingo-celebration-title {
		font-size: 4rem;
		letter-spacing: 0.4rem;
	}
	
	.bingo-celebration-text {
		font-size: 1.25rem;
	}
}

@media (max-width: 480px) {
	.bingo-card {
		padding: 1rem;
	}
	
	.bingo-header .custom-logo-link {
		max-width: 100px;
	}
	
	.bingo-header .custom-logo {
		max-height: 40px;
	}
	
	.bingo-header-text {
		font-size: 2rem;
		letter-spacing: 0.3rem;
	}
	
	.bingo-grid {
		gap: 0.25rem;
	}
	
	.bingo-cell {
		padding: 0.25rem;
	}
	
	.bingo-cell::before {
		width: 0.75rem;
		height: 0.75rem;
		top: 0.2rem;
		right: 0.2rem;
	}
	
	.bingo-cell-number {
		font-size: 0.875rem;
	}
	
	.bingo-cell-label {
		font-size: 0.5rem;
	}
	
	.bingo-cell.free {
		font-size: 0.875rem;
	}
	
	.bingo-cell.marked::after {
		font-size: 2rem;
	}
	
	.qr-code-visual {
		width: 140px;
		height: 140px;
	}
	
	.scan-modal {
		padding: 1rem;
	}
	
	.scan-text {
		font-size: 1rem;
	}
	
	.success-text {
		font-size: 1.25rem;
	}
	
	.bingo-celebration-icon {
		font-size: 4rem;
	}
	
	.bingo-celebration-title {
		font-size: 3rem;
		letter-spacing: 0.3rem;
	}
	
	.bingo-celebration-text {
		font-size: 1rem;
		padding: 0 1rem;
	}
	
	.bingo-continue-btn {
		padding: 0.875rem 1.5rem;
		font-size: 1rem;
	}
	
	.demo-disclaimer {
		flex-direction: column;
		text-align: center;
		padding: 0.75rem 1rem;
	}
	
	.demo-disclaimer span {
		font-size: 0.8125rem;
	}
}

/* ========================================
   Hero Trust Note
   ======================================== */
.hero-trust-note {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
}

.hero-trust-note strong {
	color: var(--accent-color);
	font-weight: 600;
}

/* ========================================
   Video Modal Enhanced CTAs
   ======================================== */
.video-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.video-placeholder-icon {
	color: rgba(255, 255, 255, 0.3);
	animation: pulse 2s ease-in-out infinite;
}

.video-placeholder-text {
	font-size: 1.25rem;
	color: var(--text-secondary);
	font-weight: 600;
}

.video-placeholder-subtext {
	font-size: 0.875rem;
	color: var(--text-light);
	max-width: 400px;
	text-align: center;
}

@keyframes pulse {
	0%, 100% { opacity: 0.3; transform: scale(1); }
	50% { opacity: 0.6; transform: scale(1.05); }
}

.video-modal-ctas {
	margin-top: 2rem;
	text-align: center;
}

.video-modal-ctas-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1.25rem;
}

.video-modal-ctas-grid {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 640px) {
	.video-modal-ctas-grid {
		flex-direction: row;
		justify-content: center;
		gap: 1.25rem;
	}
}

.video-cta-preorder,
.video-cta-demo {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	padding: 1rem 2rem !important;
}

.btn-badge {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

.btn-badge s {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: line-through;
	margin-left: 0.5rem;
}

.btn-subtext {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 400;
}

.video-modal-note {
	margin-top: 1.25rem;
	font-size: 0.875rem;
	color: var(--text-light);
}

.video-modal-note a {
	color: var(--accent-color);
	text-decoration: underline;
}

.video-modal-note a:hover {
	color: #fde047;
}

/* ========================================
   Book Demo Section
   ======================================== */
.book-demo-section {
	padding: 5rem 0;
	background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.book-demo-container {
	max-width: 600px;
	margin: 0 auto;
}

.book-demo-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.book-demo-heading {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
}

.book-demo-subtitle {
	font-size: 1.0625rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* ========================================
   Qualifying Form (Multi-Step)
   ======================================== */
.qualifying-form {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 2rem;
}

.form-step {
	display: none;
}

.form-step.active {
	display: block;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.step-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	background: var(--accent-color);
	color: #000;
	font-weight: 700;
	font-size: 0.875rem;
	border-radius: 50%;
}

.step-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

@media (max-width: 480px) {
	.form-row {
		grid-template-columns: 1fr;
	}
}

.form-navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-top: 1.5rem;
}

.form-navigation .btn-prev-step {
	padding: 0.75rem 1.25rem;
}

.form-radio-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 0.5rem;
}

@media (max-width: 560px) {
	.form-radio-cards {
		grid-template-columns: 1fr;
	}
}

.radio-card {
	position: relative;
	cursor: pointer;
}

.radio-card input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.radio-card-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 1.25rem;
	background: rgba(255, 255, 255, 0.03);
	border: 2px solid var(--border-color);
	border-radius: var(--border-radius);
	text-align: center;
	transition: var(--transition);
}

.radio-card input:checked + .radio-card-content {
	border-color: var(--accent-color);
	background: rgba(250, 204, 21, 0.05);
}

.radio-card:hover .radio-card-content {
	border-color: rgba(250, 204, 21, 0.5);
	background: rgba(255, 255, 255, 0.05);
}

.radio-card-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	color: var(--text-secondary);
	transition: var(--transition);
}

.radio-card input:checked + .radio-card-content .radio-card-icon {
	background: rgba(250, 204, 21, 0.15);
	color: var(--accent-color);
}

.radio-card-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
}

.radio-card-description {
	font-size: 0.8125rem;
	color: var(--text-light);
	line-height: 1.4;
}

/* Textarea styling */
.form-textarea {
	min-height: 80px;
	resize: vertical;
	font-family: inherit;
}

/* Select dropdown styling for dark theme */
select.form-input {
	background-color: var(--bg-secondary);
	color: var(--text-primary);
	border: 1px solid var(--border-color);
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23cbd5f5' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
}

select.form-input:focus {
	border-color: var(--accent-color);
	outline: none;
	box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
}

select.form-input option {
	background-color: var(--bg-secondary);
	color: var(--text-primary);
	padding: 0.5rem;
}

/* Qualifying Response Sections */
.qualifying-response {
	text-align: center;
	padding: 2rem;
}

.response-icon {
	margin-bottom: 1.5rem;
}

.response-icon svg {
	color: var(--success-color);
}

.response-heading {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
}

.response-text {
	font-size: 1rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.calendly-container {
	margin-bottom: 1.5rem;
}

.google-calendar-booking {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding: 2rem 1rem;
}

.btn-calendar-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125rem;
	padding: 1rem 2.5rem;
}

.calendar-booking-note {
	font-size: 0.875rem;
	color: var(--text-light);
	margin: 0;
}

.demo-booked-confirm {
	margin-top: 0.5rem;
	animation: fadeIn 0.4s ease;
}

.btn-booked-confirm {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Demo Booked page icon — calendar variant of the success icon */
.demo-booked-icon {
	background: linear-gradient(135deg, rgba(250, 204, 21, 0.15), rgba(250, 204, 21, 0.05));
	border: 2px solid rgba(250, 204, 21, 0.4);
	color: var(--accent-color, #facc15);
}

.info-response-cta {
	background: rgba(250, 204, 21, 0.05);
	border: 1px solid rgba(250, 204, 21, 0.2);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.info-response-cta p {
	color: var(--text-secondary);
	margin-bottom: 1rem;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
	padding: 5rem 0;
	background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.pricing-header {
	text-align: center;
	margin-bottom: 3rem;
}

.pricing-subtitle {
	font-size: 1.125rem;
	color: var(--text-secondary);
	margin-bottom: 1.25rem;
}

.pricing-launch-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(250, 204, 21, 0.1);
	border: 1px solid rgba(250, 204, 21, 0.3);
	padding: 0.625rem 1.25rem;
	border-radius: 2rem;
	color: var(--text-primary);
	font-size: 0.9375rem;
}

.pricing-launch-badge svg {
	color: var(--accent-color);
}

.pricing-launch-badge strong {
	color: var(--accent-color);
}

/* Pricing Cards Grid */
.pricing-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 420px));
	justify-content: center;
	gap: 2rem;
	max-width: 900px;
	margin: 0 auto 3rem;
}

/* Pricing Card */
.pricing-card {
	position: relative;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	transition: var(--transition);
}

.pricing-card:hover {
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card--featured {
	border-color: var(--accent-color);
	background: linear-gradient(180deg, rgba(250, 204, 21, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.pricing-card--featured:hover {
	border-color: var(--accent-color);
}

.pricing-card-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--accent-color) 0%, #f59e0b 100%);
	color: #000;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.375rem 1rem;
	border-radius: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.pricing-card-header {
	margin-bottom: 1.5rem;
}

.pricing-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.pricing-card-description {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.5;
}

.pricing-card-price {
	margin-bottom: 1.5rem;
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.price-original {
	font-size: 1.25rem;
	color: var(--text-light);
	text-decoration: line-through;
}

.price-amount {
	font-size: 3rem;
	font-weight: 800;
	color: var(--text-primary);
	line-height: 1;
}

.price-period {
	font-size: 1rem;
	color: var(--text-light);
}

.pricing-card-features {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
	flex-grow: 1;
}

.pricing-card-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.625rem 0;
	font-size: 0.9375rem;
	color: var(--text-secondary);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card-features li:last-child {
	border-bottom: none;
}

.pricing-card-features li svg {
	flex-shrink: 0;
	color: var(--success-color);
	margin-top: 0.125rem;
}

.pricing-card .btn-select-tier {
	width: 100%;
	justify-content: center;
}

.pricing-card-note {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-top: 1rem;
	padding: 0.75rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0.5rem;
	font-size: 0.8125rem;
	color: var(--text-light);
	line-height: 1.4;
}

.pricing-card-note svg {
	flex-shrink: 0;
	margin-top: 0.125rem;
	color: var(--accent-color);
}

.beta-access-note {
	margin-top: 1rem;
	padding: 1rem;
	background: rgba(250, 204, 21, 0.08);
	border: 1px solid rgba(250, 204, 21, 0.2);
	border-radius: 0.5rem;
}

.beta-access-note strong {
	display: block;
	color: var(--accent-color);
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
}

.beta-access-note p {
	font-size: 0.8125rem;
	color: var(--text-secondary);
	line-height: 1.5;
	margin: 0;
}

/* Checkout Summary Container */
.checkout-summary-container {
	max-width: 600px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 2rem;
	animation: fadeIn 0.3s ease;
}

.selected-tier-summary {
	text-align: center;
	margin-bottom: 1.5rem;
}

.selected-tier-summary .summary-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: rgba(16, 185, 129, 0.1);
	border-radius: 50%;
	margin: 0 auto 1rem;
}

.selected-tier-summary .summary-icon svg {
	color: var(--success-color);
}

.selected-tier-summary h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.summary-details {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.02);
	border-radius: 0.5rem;
}

.summary-label {
	color: var(--text-light);
}

.summary-value {
	color: var(--text-primary);
	font-weight: 600;
}

.summary-price {
	color: var(--accent-color);
	font-size: 1.25rem;
}

.payment-security-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	background: rgba(16, 185, 129, 0.05);
	border: 1px solid rgba(16, 185, 129, 0.2);
	border-radius: 0.5rem;
	margin-bottom: 1.5rem;
	font-size: 0.8125rem;
	color: var(--text-secondary);
}

.payment-security-note svg {
	color: var(--success-color);
	flex-shrink: 0;
}

.customer-info-form {
	margin-bottom: 1.5rem;
}

.event-details {
	margin-bottom: 1.5rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--border-radius);
}

.event-details-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.event-details-grid {
	display: grid;
	gap: 1rem;
}

.event-details-note {
	font-size: 0.8125rem;
	color: var(--text-light);
	margin-top: 1rem;
}

/* Post-Payment Note */
.post-payment-note {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	background: linear-gradient(135deg, rgba(250, 204, 21, 0.1) 0%, rgba(250, 204, 21, 0.05) 100%);
	border: 1px solid rgba(250, 204, 21, 0.3);
	border-radius: 0.75rem;
}

.post-payment-note-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
}

.post-payment-note-content {
	flex: 1;
}

.post-payment-note-content strong {
	display: block;
	color: var(--text-primary);
	font-size: 0.9375rem;
	margin-bottom: 0.25rem;
}

.post-payment-note-content p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.5;
}

/* Terms Checkbox */
.terms-checkbox-container {
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: rgba(250, 204, 21, 0.05);
	border: 1px solid rgba(250, 204, 21, 0.2);
	border-radius: 0.5rem;
}

.terms-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
}

.terms-checkbox {
	width: 1.25rem;
	height: 1.25rem;
	margin-top: 0.125rem;
	accent-color: var(--accent-color);
	cursor: pointer;
}

.terms-checkbox-text {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.5;
}

.terms-checkbox-text a {
	color: var(--accent-color);
	text-decoration: underline;
}

.terms-checkbox-text a:hover {
	color: #f59e0b;
}

.terms-checkbox-note {
	margin-top: 0.5rem;
	margin-left: 2rem;
	font-size: 0.75rem;
	color: var(--text-light);
}

.terms-checkbox-error {
	border-color: var(--error-color);
	background: rgba(239, 68, 68, 0.1);
}

.terms-checkbox-error .terms-checkbox-text {
	color: var(--error-color);
}

.checkout-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 480px) {
	.checkout-buttons {
		flex-direction: row;
		justify-content: space-between;
	}
}

.checkout-buttons .btn-change-tier {
	padding: 0.75rem 1.25rem;
}

.checkout-buttons .btn-proceed-checkout {
	flex-grow: 1;
}

/* Pricing Guarantee */
.pricing-guarantee {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	max-width: 600px;
	margin: 0 auto;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
}

.pricing-guarantee svg {
	color: var(--accent-color);
	flex-shrink: 0;
	margin-top: 0.125rem;
}

.pricing-guarantee-text strong {
	display: block;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.pricing-guarantee-text p {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.5;
	margin: 0;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
	padding: 4rem 0;
	background: var(--bg-primary);
	border-top: 1px solid var(--border-color);
}

.contact-info {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.contact-methods {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}

.contact-method {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-secondary);
	padding: 0.75rem 1.25rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-color);
	border-radius: 0.5rem;
	transition: var(--transition);
}

.contact-method:hover {
	color: var(--accent-color);
	border-color: rgba(250, 204, 21, 0.3);
	background: rgba(250, 204, 21, 0.05);
}

.contact-method svg {
	flex-shrink: 0;
}

/* ========================================
   App Preview Section
   ======================================== */
.app-preview-section {
	padding: 5rem 0;
}

.app-preview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.app-preview-item {
	text-align: center;
}

.app-preview-mockup {
	margin-bottom: 1.5rem;
}

.mockup-device {
	position: relative;
	width: 200px;
	height: 400px;
	margin: 0 auto;
	background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
	border-radius: 2rem;
	padding: 0.5rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.mockup-device--tablet {
	width: 320px;
	height: 240px;
	border-radius: 1rem;
}

.mockup-screen {
	width: 100%;
	height: 100%;
	background: var(--bg-primary);
	border-radius: 1.5rem;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mockup-device--tablet .mockup-screen {
	border-radius: 0.5rem;
}

.mockup-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.app-preview-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.app-preview-description {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.6;
	max-width: 300px;
	margin: 0 auto;
}

/* ========================================
   Success & Confirmation Pages
   ======================================== */
.success-page-section {
	min-height: calc(100vh - 80px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 1.5rem;
	background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
	position: relative;
	overflow: hidden;
}

.success-page-section .container {
	display: flex;
	justify-content: center;
	width: 100%;
}

.success-page-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse at top, rgba(250, 204, 21, 0.08) 0%, transparent 50%);
	pointer-events: none;
}

.success-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
}

.success-icon {
	width: 100px;
	height: 100px;
	margin: 0 auto 2rem;
	background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: white;
	box-shadow: 0 10px 40px -10px rgba(16, 185, 129, 0.5);
	animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
	0%, 100% { transform: scale(1); box-shadow: 0 10px 40px -10px rgba(16, 185, 129, 0.5); }
	50% { transform: scale(1.05); box-shadow: 0 15px 50px -10px rgba(16, 185, 129, 0.6); }
}

.success-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
	letter-spacing: -0.02em;
}

.success-subtitle {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 2.5rem;
}

.success-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-color);
	border-radius: 1rem;
	padding: 2rem;
	margin-bottom: 2rem;
	text-align: left;
	backdrop-filter: blur(10px);
}

.success-card h2 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	text-align: center;
}

.success-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.success-list li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	background: rgba(250, 204, 21, 0.03);
	border: 1px solid rgba(250, 204, 21, 0.1);
	border-radius: 0.75rem;
	transition: var(--transition);
}

.success-list li:hover {
	border-color: rgba(250, 204, 21, 0.2);
	background: rgba(250, 204, 21, 0.05);
}

.success-list li::before {
	content: '→';
	color: var(--accent-color);
	font-weight: 700;
	font-size: 1.25rem;
	flex-shrink: 0;
	margin-top: 0.1rem;
}

.success-list li strong {
	display: block;
	color: var(--text-primary);
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.success-list li p {
	color: var(--text-secondary);
	font-size: 0.9375rem;
	margin: 0;
	line-height: 1.5;
}

.success-list li code {
	background: rgba(250, 204, 21, 0.1);
	color: var(--accent-color);
	padding: 0.2rem 0.5rem;
	border-radius: 0.25rem;
	font-family: 'SF Mono', Monaco, Consolas, monospace;
	font-size: 0.875rem;
}

.success-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.success-actions .btn {
	min-width: 200px;
}

.success-footer {
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-color);
}

.success-footer p {
	color: var(--text-secondary);
	font-size: 0.9375rem;
	margin: 0;
}

.success-footer a {
	color: var(--accent-color);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.success-footer a:hover {
	color: var(--text-primary);
}

/* Responsive adjustments */
@media (max-width: 640px) {
	.success-page-section {
		padding: 2rem 1rem;
	}
	
	.success-icon {
		width: 80px;
		height: 80px;
		font-size: 2.5rem;
	}
	
	.success-title {
		font-size: 1.75rem;
	}
	
	.success-subtitle {
		font-size: 1rem;
	}
	
	.success-card {
		padding: 1.5rem;
	}
	
	.success-actions {
		flex-direction: column;
	}
	
	.success-actions .btn {
		width: 100%;
	}
}

/* ================================================================
   INTERACTIVE ANIMATIONS & MOTION
   ================================================================ */

/* Custom property for animated gradient border */
@property --bb-border-angle {
	syntax: '<angle>';
	inherits: false;
	initial-value: 0deg;
}

/* --- Scroll Progress Bar --- */
#bb-scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0%;
	background: linear-gradient(90deg, var(--accent-color), #fbbf24);
	z-index: 9999;
	pointer-events: none;
	border-radius: 0 2px 2px 0;
	box-shadow: 0 0 10px rgba(250, 204, 21, 0.5);
	transition: width 0.1s linear;
}

/* --- Hero: Ensure content is above grain layer --- */
.hero-section .container {
	position: relative;
	z-index: 1;
}

/* --- Hero: Noise Grain Overlay --- */
.hero-section::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0.04;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 180px 180px;
}

/* --- Hero: Floating Bingo Grid Ghost --- */
.hero-bingo-ghost {
	position: absolute;
	top: 50%;
	right: -60px;
	transform: translateY(-50%) rotate(12deg);
	width: 300px;
	height: 300px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(5, 1fr);
	gap: 5px;
	opacity: 0.045;
	animation: bbGhostFloat 22s ease-in-out infinite;
	pointer-events: none;
	z-index: 0;
}

.hero-bingo-ghost-cell {
	border: 1px solid var(--accent-color);
	border-radius: 3px;
}

@keyframes bbGhostFloat {
	0%,  100% { transform: translateY(-50%) rotate(12deg); }
	33%        { transform: translateY(-54%) rotate(14.5deg) translateX(8px); }
	66%        { transform: translateY(-46%) rotate(10deg) translateX(-6px); }
}

@media (max-width: 900px) {
	.hero-bingo-ghost { display: none; }
}

/* --- Scroll-Reveal Stagger --- */
.bb-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity  0.55s cubic-bezier(0.4, 0, 0.2, 1) calc(var(--bb-stagger, 0) * 65ms),
		transform 0.55s cubic-bezier(0.4, 0, 0.2, 1) calc(var(--bb-stagger, 0) * 65ms);
}

.bb-reveal.bb-revealed {
	opacity: 1;
	transform: translateY(0);
}

/* --- 3D Card Tilt: neutralise CSS hover transform so JS owns it --- */
.bb-tilt-card {
	transform-style: preserve-3d;
	will-change: transform;
}

.bb-tilt-card:hover {
	transform: none;
}

/* --- Animated Gradient Border on Cards (background-clip technique) --- */
.product-app-card:hover {
	border-color: transparent;
	background:
		rgba(255, 255, 255, 0.05) padding-box,
		conic-gradient(
			from var(--bb-border-angle, 0deg),
			transparent 20%,
			rgba(250, 204, 21, 0.75) 50%,
			transparent 80%
		) border-box;
	animation: bbBorderSpin 2.5s linear infinite;
}

.pricing-card:not(.pricing-card--featured):hover {
	border-color: transparent;
	background:
		rgba(255, 255, 255, 0.03) padding-box,
		conic-gradient(
			from var(--bb-border-angle, 0deg),
			transparent 20%,
			rgba(250, 204, 21, 0.75) 50%,
			transparent 80%
		) border-box;
	animation: bbBorderSpin 2.5s linear infinite;
}

@keyframes bbBorderSpin {
	to { --bb-border-angle: 360deg; }
}

/* --- How It Works: SVG Connector Stroke-Draw --- */
.how-step-connector svg.bb-draw path {
	animation: bbStrokeDraw 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes bbStrokeDraw {
	to { stroke-dashoffset: 0; }
}

/* --- Bingo Cell Particles --- */
.bb-particle {
	position: fixed;
	width: 6px;
	height: 6px;
	background: var(--accent-color);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	animation: bbParticleBurst 0.45s ease-out forwards;
}

@keyframes bbParticleBurst {
	0%   { opacity: 1;   transform: translate(-50%, -50%) translate(0, 0) scale(1); }
	100% { opacity: 0;   transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) scale(0.2); }
}

/* --- Reduced Motion Overrides --- */
@media (prefers-reduced-motion: reduce) {
	.bb-reveal,
	.bb-reveal.bb-revealed {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

	.hero-bingo-ghost {
		animation: none !important;
	}

	.product-app-card:hover,
	.pricing-card:not(.pricing-card--featured):hover {
		animation: none !important;
	}

	#bb-scroll-progress {
		transition: none !important;
	}
}

/* ================================================================
   NEXT-LEVEL INTERACTIVITY
   ================================================================ */

/* --- Cursor Spotlight on Dark Sections --- */
.how-it-works-section,
.features-section,
.faq-section,
.product-explanation-section,
.feature-bingo-section {
	position: relative;
}

.how-it-works-section::before,
.features-section::before,
.faq-section::before,
.product-explanation-section::before,
.feature-bingo-section::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background: radial-gradient(
		circle 320px at var(--sl-x, -999px) var(--sl-y, -999px),
		rgba(250, 204, 21, 0.055) 0%,
		transparent 70%
	);
}

.how-it-works-section > .container,
.features-section > .container,
.faq-section > .container,
.product-explanation-section > .container,
.feature-bingo-section > .container {
	position: relative;
	z-index: 1;
}

/* --- Split-Text Word Reveal --- */
.bb-wm {
	display: inline-block;
	overflow: hidden;
	vertical-align: bottom;
	line-height: inherit;
}

.bb-w {
	display: inline-block;
	transform: translateY(110%);
	transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1) calc(var(--wi, 0) * 85ms);
	line-height: inherit;
}

.bb-heading-revealed .bb-w {
	transform: translateY(0);
}

/* --- Feature Bingo Section --- */
.feature-bingo-section {
	padding: 6rem 0;
	background: var(--bg-secondary);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	text-align: center;
}

.feature-bingo-section .section-heading {
	margin-bottom: 1rem;
}

.feature-bingo-section .section-subtitle {
	text-align: center;
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.65);
	margin: 0 auto 2.5rem;
	max-width: 520px;
	line-height: 1.7;
}

.feature-bingo-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 6px;
	max-width: 660px;
	margin: 0 auto 1.5rem;
}

.fb-cell {
	position: relative;
	aspect-ratio: 1;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.35rem;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
	user-select: none;
	/* overflow must stay visible so the tooltip can render above the cell */
}

.fb-cell:hover {
	border-color: rgba(250, 204, 21, 0.4);
	background: rgba(250, 204, 21, 0.07);
	transform: scale(1.05);
}

.fb-cell--free {
	background: rgba(250, 204, 21, 0.1);
	border-color: rgba(250, 204, 21, 0.35);
	cursor: default;
}

.fb-cell--free:hover {
	transform: none;
}

.fb-cell--marked {
	background: rgba(250, 204, 21, 0.1);
	border-color: rgba(250, 204, 21, 0.45);
	animation: fbCellMark 0.28s ease;
}

.fb-cell--marked:hover {
	transform: none;
}

.fb-cell--win {
	background: rgba(250, 204, 21, 0.18);
	border-color: var(--accent-color);
	box-shadow: 0 0 14px rgba(250, 204, 21, 0.25);
}

@keyframes fbCellMark {
	0%   { transform: scale(1); }
	35%  { transform: scale(0.92); }
	70%  { transform: scale(1.07); }
	100% { transform: scale(1); }
}

.fb-cell-label {
	font-size: 0.6rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	line-height: 1.25;
	pointer-events: none;
	position: relative;
	z-index: 1;
}

.fb-cell--marked .fb-cell-label,
.fb-cell--free .fb-cell-label {
	color: var(--accent-color);
}

.fb-cell--free .fb-cell-label {
	font-size: 0.72rem;
}

.fb-cell-check {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	opacity: 0;
	transform: scale(0) rotate(-15deg);
	transition:
		opacity 0.22s ease,
		transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
	pointer-events: none;
	color: var(--accent-color);
}

.fb-cell--marked .fb-cell-check,
.fb-cell--free .fb-cell-check {
	opacity: 0.3;
	transform: scale(1) rotate(0deg);
}

.fb-cell--win .fb-cell-check {
	opacity: 0.45;
}

/* Win banner */
.feature-bingo-win-banner {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	flex-wrap: wrap;
	padding: 1rem 1.5rem;
	background: rgba(250, 204, 21, 0.07);
	border: 1px solid rgba(250, 204, 21, 0.25);
	border-radius: var(--border-radius);
	max-width: 660px;
	margin: 0 auto 1.5rem;
	animation: fbBannerIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.feature-bingo-win-banner.visible {
	display: flex;
}

@keyframes fbBannerIn {
	from { opacity: 0; transform: translateY(8px) scale(0.97); }
	to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.feature-bingo-win-banner p {
	color: var(--accent-color);
	font-weight: 700;
	font-size: 1rem;
	margin: 0;
}

.feature-bingo-reset {
	background: none;
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.35);
	font-size: 0.78rem;
	padding: 0.4rem 1rem;
	border-radius: 0.375rem;
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease;
	display: block;
	margin: 0 auto;
}

.feature-bingo-reset:hover {
	border-color: rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 700px) {
	.feature-bingo-grid {
		gap: 4px;
	}

	.fb-cell-label {
		font-size: 0.5rem;
	}

	.feature-bingo-section {
		padding: 4rem 0;
	}
}

@media (max-width: 480px) {
	.feature-bingo-grid {
		gap: 3px;
		max-width: 100%;
	}

	.fb-cell-label {
		font-size: 0.44rem;
	}

	.fb-cell-check {
		font-size: 1.1rem;
	}
}

/* Touch devices: disable hover-only effects */
@media (hover: none) {
	/* No tooltips on touch — hover fires on tap and sticks */
	.fb-tooltip {
		display: none !important;
	}

	/* No scale on tap for bingo cells — feels jumpy */
	.fb-cell:hover {
		transform: none;
	}

	/* No card tilt or gradient border spin on touch */
	.product-app-card:hover,
	.pricing-card:not(.pricing-card--featured):hover {
		animation: none;
		border-color: rgba(255, 255, 255, 0.12);
		background: rgba(255, 255, 255, 0.05);
	}
}

/* ================================================================
   ROUND 3 ANIMATIONS
   ================================================================ */

/* --- Logo Pop --- */
.hero-logo {
	transform: scale(0.88);
	opacity: 0;
	transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.hero-logo.bb-logo-popped {
	transform: scale(1);
	opacity: 1;
}

/* --- Hero Scan Line --- */
#bb-scan-line {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, var(--accent-color) 20%, rgba(250,204,21,0.8) 50%, var(--accent-color) 80%, transparent 100%);
	pointer-events: none;
	z-index: 2;
	opacity: 0;
	box-shadow: 0 0 12px rgba(250, 204, 21, 0.6);
	animation: bbScanLine 1.4s cubic-bezier(0.4, 0, 0.6, 1) 0.2s forwards;
}

@keyframes bbScanLine {
	0%   { top: 0;    opacity: 0; }
	8%   { opacity: 1; }
	92%  { opacity: 1; }
	100% { top: 100%; opacity: 0; }
}

/* --- Hero QR Silhouette --- */
.hero-qr-silhouette {
	position: absolute;
	bottom: -40px;
	left: -30px;
	width: 260px;
	height: 260px;
	opacity: 0.028;
	pointer-events: none;
	z-index: 0;
	animation: bbQrFloat 28s ease-in-out infinite;
}

@keyframes bbQrFloat {
	0%,  100% { transform: rotate(-6deg) scale(1); }
	40%        { transform: rotate(-3deg) scale(1.04) translateY(-12px); }
	70%        { transform: rotate(-8deg) scale(0.97) translateY(6px); }
}

@media (max-width: 900px) {
	.hero-qr-silhouette { display: none; }
}

/* --- Hero Subheading Typewriter --- */
.hero-subheading {
	/* override the CSS animation so JS drives visibility */
}

.hero-subheading.bb-typewriter-ready {
	opacity: 1 !important;
	animation: none !important;
}

/* cursor blink while typing */
.bb-type-cursor {
	display: inline-block;
	width: 2px;
	height: 1em;
	background: var(--accent-color);
	margin-left: 2px;
	vertical-align: text-bottom;
	animation: bbBlink 0.7s step-end infinite;
}

@keyframes bbBlink {
	0%, 100% { opacity: 1; }
	50%       { opacity: 0; }
}

/* --- FAQ Left Border Slide --- */
.faq-item {
	--faq-border-h: 0%;
}

.faq-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	height: var(--faq-border-h, 0%);
	background: var(--accent-color);
	border-radius: 0 2px 2px 0;
	transition: height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

.faq-item[data-open="true"]::before {
	height: 100%;
}

/* --- Feature Bingo Cell Tooltip --- */
.fb-cell {
	/* already has position: relative */
}

.fb-cell:hover {
	z-index: 10;
}

.fb-tooltip {
	position: absolute;
	bottom: calc(100% + 7px);
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	background: #111827;
	color: rgba(255,255,255,0.92);
	font-size: 0.7rem;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	text-align: center;
	padding: 0.35rem 0.65rem;
	border-radius: 5px;
	border: 1px solid rgba(250,204,21,0.25);
	pointer-events: none;
	z-index: 100;
	opacity: 0;
	transition: opacity 0.18s ease, transform 0.18s ease;
	box-shadow: 0 4px 14px rgba(0,0,0,0.5);
}

.fb-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: #1f2937;
}

.fb-cell:hover .fb-tooltip {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

/* hide tooltip on marked/free cells */
.fb-cell--marked .fb-tooltip,
.fb-cell--free .fb-tooltip {
	display: none;
}

/* --- Pricing Card Attention Pulse --- */
@keyframes bbCardPulse {
	0%   { box-shadow: 0 0 0   0px rgba(250,204,21,0),    0 20px 40px rgba(0,0,0,0.2); }
	50%  { box-shadow: 0 0 28px 8px rgba(250,204,21,0.22), 0 20px 40px rgba(0,0,0,0.2); }
	100% { box-shadow: 0 0 0   0px rgba(250,204,21,0),    0 20px 40px rgba(0,0,0,0.2); }
}

.pricing-card--featured.bb-pulse {
	animation: bbCardPulse 1.8s ease-in-out 2;
}

/* --- Reduced Motion: Round 3 --- */
@media (prefers-reduced-motion: reduce) {
	#bb-scan-line,
	.hero-qr-silhouette,
	.bb-type-cursor {
		display: none !important;
	}

	.hero-logo {
		transform: none !important;
		opacity: 1 !important;
		transition: none !important;
	}

	/* Ensure subheading is always visible (JS also handles this but belt-and-suspenders) */
	#bb-hero-subheading {
		opacity: 1 !important;
	}

	.hero-subheading.bb-typewriter-ready {
		animation: none !important;
	}

	.pricing-card--featured.bb-pulse {
		animation: none !important;
	}
}

/* --- Reduced Motion: Next-Level --- */
@media (prefers-reduced-motion: reduce) {
	.bb-wm {
		display: inline !important;
		overflow: visible !important;
	}

	.bb-w {
		transform: none !important;
		transition: none !important;
	}
}

/* ============================================================
   Ambassador Program – Application Page
   ============================================================ */

.ambassador-apply-section {
	min-height: calc(100vh - 80px);
	padding: 5rem 0 6rem;
	background: linear-gradient(160deg, var(--bg-primary) 0%, var(--bg-secondary) 60%, var(--bg-primary) 100%);
	position: relative;
	overflow: hidden;
}

.ambassador-apply-section::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: radial-gradient(ellipse at top center, rgba(250, 204, 21, 0.07) 0%, transparent 55%);
	pointer-events: none;
}

.ambassador-apply-section .container {
	position: relative;
	z-index: 1;
}

/* Hero */
.ambassador-apply-hero {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 4rem;
}

.ambassador-apply-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(250, 204, 21, 0.12);
	border: 1px solid rgba(250, 204, 21, 0.3);
	color: var(--accent-color);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.4rem 1.1rem;
	border-radius: 2rem;
	margin-bottom: 1.25rem;
}

.ambassador-apply-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	color: var(--text-primary);
	letter-spacing: -0.03em;
	line-height: 1.15;
	margin-bottom: 1rem;
}

.ambassador-apply-subtitle {
	font-size: 1.125rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* Benefits Strip */
.ambassador-benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 900px;
	margin: 0 auto 4rem;
}

.ambassador-benefit {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 1.75rem 1.5rem;
	text-align: center;
	transition: var(--transition);
}

.ambassador-benefit:hover {
	border-color: rgba(250, 204, 21, 0.3);
	background: rgba(250, 204, 21, 0.04);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.ambassador-benefit-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 1rem;
	background: rgba(250, 204, 21, 0.1);
	border: 1px solid rgba(250, 204, 21, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
}

.ambassador-benefit h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.ambassador-benefit p {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Form Card */
.ambassador-apply-form-wrap {
	max-width: 640px;
	margin: 0 auto 4rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-color);
	border-radius: calc(var(--border-radius) * 1.5);
	padding: 2.5rem;
	backdrop-filter: blur(10px);
}

.ambassador-apply-form-title {
	font-size: 1.625rem;
	font-weight: 800;
	color: var(--text-primary);
	letter-spacing: -0.02em;
	margin-bottom: 0.375rem;
}

.ambassador-apply-form-subtitle {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

/* Success / Error banners */
.ambassador-apply-success,
.ambassador-apply-error {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	border-radius: var(--border-radius);
	margin-bottom: 1.5rem;
	font-size: 0.9375rem;
}

.ambassador-apply-success {
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.3);
	color: #6ee7b7;
}

.ambassador-apply-success svg {
	flex-shrink: 0;
	margin-top: 0.1rem;
	color: var(--success-color);
}

.ambassador-apply-success strong {
	display: block;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.ambassador-apply-success p {
	color: var(--text-secondary);
	margin: 0;
}

.ambassador-apply-error {
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.3);
	color: #fca5a5;
}

/* Form layout */
.ambassador-apply-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.ambassador-apply-form .form-row--two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.ambassador-apply-form .form-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
	letter-spacing: 0.01em;
}

.ambassador-apply-form .form-label .required {
	color: var(--accent-color);
	margin-left: 0.2rem;
}

.ambassador-apply-form .form-textarea {
	resize: vertical;
	min-height: 110px;
	line-height: 1.6;
}

.ambassador-apply-submit {
	width: 100%;
	margin-top: 0.5rem;
	background: var(--accent-color);
	color: #0b0d12;
	font-size: 1.0625rem;
	font-weight: 700;
}

.ambassador-apply-submit:hover {
	background: #f59e0b;
	color: #000;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(250, 204, 21, 0.35);
}

/* FAQ */
.ambassador-faq {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.ambassador-faq-title {
	font-size: 1.625rem;
	font-weight: 800;
	color: var(--text-primary);
	letter-spacing: -0.02em;
	margin-bottom: 2rem;
}

.ambassador-faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	text-align: left;
}

.ambassador-faq-item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	transition: var(--transition);
}

.ambassador-faq-item:hover {
	border-color: rgba(250, 204, 21, 0.2);
	background: rgba(250, 204, 21, 0.03);
}

.ambassador-faq-item h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.ambassador-faq-item p {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.ambassador-benefits {
		grid-template-columns: 1fr;
		max-width: 480px;
	}

	.ambassador-apply-form-wrap {
		padding: 1.75rem 1.25rem;
	}

	.ambassador-apply-form .form-row--two-col {
		grid-template-columns: 1fr;
	}

	.ambassador-faq-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.ambassador-apply-section {
		padding: 3rem 0 4rem;
	}

	.ambassador-apply-title {
		font-size: 1.75rem;
	}
}
