
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--cornflower: #6495ED;
	--cornflower-dark: #4a7bd4;
	--cornflower-deeper: #3a6bc0;
	--soft-pink: #FECFFF;
	--gradient-mid: #B1B2F6;
	--white: #ffffff;
	--near-white: #fafbff;
	--text-primary: #1a1a2e;
	--text-secondary: #4a4a6a;
	--text-muted: #8888aa;
	--gradient-1: linear-gradient(135deg, #6495ED 0%, #7eb8ff 50%, #a8d4ff 100%);
	--gradient-2: linear-gradient(135deg, #FECFFF 0%, #fde8fc 50%, #fce4f8 100%);
	--gradient-hero: linear-gradient(160deg, #f0f4ff 0%, #FECFFF 30%, #e8f0fe 60%, #f5f0ff 100%);
	--shadow-sm: 0 2px 8px rgba(100, 149, 237, 0.08);
	--shadow-md: 0 8px 30px rgba(100, 149, 237, 0.12);
	--shadow-lg: 0 20px 60px rgba(100, 149, 237, 0.15);
	--shadow-xl: 0 30px 80px rgba(100, 149, 237, 0.2);
	--radius-sm: 12px;
	--radius-md: 20px;
	--radius-lg: 28px;
	--radius-xl: 40px;
	--gradient-3: linear-gradient(135deg, var(--cornflower) 0%, var(--soft-pink) 100%);
	/* Gradient: Starts with Cornflower, ends in Pink */
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--text-primary);
	background: var(--white);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


/* ============ LOCAL ============ */

.text-cornflower {
	color: var(--cornflower);
}

.bg-cornflower {
	background-color: var(--cornflower);
}

.bg-soft-pink {
	background-color: var(--soft-pink);
}

.bg-vibrant-gradient {
	background: linear-gradient(135deg, var(--cornflower) 0%, #a2c1f7 50%, var(--soft-pink) 100%);
}

.text-gradient-left-fade {
	background: linear-gradient(to left, transparent 0%, /* Right edge: fully faded */
	var(--cornflower) 15%, /* Adjust this % to control fade intensity */
	#b18dfc 45%, #f8c1d5 100% /* Left side: stays exactly the same */
	);
	-webkit-background-clip: text;
	background-clip: text; /* Added standard property for broader support */
	-webkit-text-fill-color: transparent;
}

.text-gradient-left {
	background: linear-gradient(to left, var(--cornflower), #b18dfc, #f8c1d5);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.text-gradient-right {
	background: linear-gradient(to right, var(--cornflower), #b18dfc, #f8c1d5);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.text-gradient-top {
	background: linear-gradient(to bottom, var(--soft-pink), var(--gradient-mid));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-gradient-bot {
	background: linear-gradient(to bottom, var(--gradient-mid), var(--cornflower));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ============ UTILITY ============ */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

	.reveal.visible {
		opacity: 1;
		transform: translateY(0);
	}

.reveal-delay-1 {
	transition-delay: 0.1s;
}

.reveal-delay-2 {
	transition-delay: 0.2s;
}

.reveal-delay-3 {
	transition-delay: 0.3s;
}

.reveal-delay-4 {
	transition-delay: 0.4s;
}

/* ============ NAVBAR ============ */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 16px 0;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

	.navbar.scrolled {
		background: rgba(255, 255, 255, 0.85);
		backdrop-filter: blur(20px) saturate(180%);
		-webkit-backdrop-filter: blur(20px) saturate(180%);
		border-bottom: 1px solid rgba(100, 149, 237, 0.08);
		padding: 10px 0;
	}

	.navbar .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

	.nav-logo img {
		height: 64px;
		width: auto;
		transition: transform 0.3s ease;
		filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
		animation: float 3s ease-in-out infinite;
	}

	.nav-logo:hover img {
		transform: scale(1.1) rotate(-5deg);
	}

.nav-logo-text {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 64px;
	font-weight: 700;
	color: var(--cornflower);
	letter-spacing: -0.5px;
}

.nav-links {
	display: flex;
	align-items: center; /*flex-start;  👈 Keeps all links top-aligned regardless of QR height */
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

	.nav-links a {
		text-decoration: none;
		color: var(--text-secondary);
		font-size: 14px;
		font-weight: 500;
		transition: color 0.3s ease;
		position: relative;
	}

		.nav-links a::after {
			content: '';
			position: absolute;
			bottom: -4px;
			left: 0;
			width: 0;
			height: 2px;
			background: var(--cornflower);
			border-radius: 2px;
			transition: width 0.3s ease;
		}

		.nav-links a:hover {
			color: var(--cornflower);
		}

			.nav-links a:hover::after {
				width: 100%;
			}

.nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 24px;
	background: var(--cornflower);
	color: white !important;
	border-radius: 50px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 15px rgba(100, 149, 237, 0.3);
}

	.nav-cta::after {
		display: none !important;
	}

	.nav-cta:hover {
		background: var(--cornflower-dark) !important;
		color: white !important;
		transform: translateY(-2px);
		box-shadow: 0 8px 25px rgba(100, 149, 237, 0.4);
	}

.mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 8px;
	background: none;
	border: none;
}

	.mobile-toggle span {
		width: 24px;
		height: 2px;
		background: var(--text-primary);
		border-radius: 2px;
		transition: all 0.3s ease;
	}

/* ============ HERO ============ */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	background: var(--gradient-hero);
	padding-top: 80px;
}

.hero-bg-orbs {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.4;
	animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
	width: 600px;
	height: 600px;
	background: var(--cornflower);
	top: -200px;
	right: -100px;
	animation-delay: 0s;
}

.orb-2 {
	width: 400px;
	height: 400px;
	background: var(--soft-pink);
	bottom: -100px;
	left: -100px;
	animation-delay: -7s;
}

.orb-3 {
	width: 300px;
	height: 300px;
	background: #c4b5fd;
	top: 50%;
	left: 50%;
	animation-delay: -14s;
}

@keyframes orbFloat {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}

	25% {
		transform: translate(30px, -40px) scale(1.05);
	}

	50% {
		transform: translate(-20px, 20px) scale(0.95);
	}

	75% {
		transform: translate(40px, 30px) scale(1.02);
	}
}

.hero-grid-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(100, 149, 237, 0.06) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-content {
	max-width: 600px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px 8px 8px;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	border-radius: 50px;
	border: 1px solid rgba(100, 149, 237, 0.15);
	margin-bottom: 28px;
	animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge-dot {
	width: 8px;
	height: 8px;
	background: #34d399;
	border-radius: 50%;
	animation: dotPulse 2s ease-in-out infinite;
	box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
}

@keyframes dotPulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.6;
		transform: scale(0.8);
	}
}

@keyframes badgePulse {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(100, 149, 237, 0.1);
	}

	50% {
		box-shadow: 0 0 0 8px rgba(100, 149, 237, 0);
	}
}

.hero-badge span {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-secondary);
	letter-spacing: 0.3px;
}

.hero-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(36px, 4vw, 64px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -2px;
	margin-bottom: 24px;
	color: var(--text-primary);
}

	.hero-title .highlight {
		background: linear-gradient(135deg, var(--cornflower) 0%, #8bb4f7 50%, var(--cornflower) 100%);
		background-size: 200% auto;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
		animation: gradientShift 4s ease-in-out infinite;
	}

@keyframes gradientShift {
	0%, 100% {
		background-position: 0% center;
	}

	50% {
		background-position: 200% center;
	}
}

.hero-subtitle {
	font-size: clamp(16px, 2vw, 20px);
	line-height: 1.7;
	color: var(--text-secondary);
	margin-bottom: 40px;
	max-width: 520px;
	font-weight: 400;
}

.hero-ctas {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 48px;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 32px;
	background: var(--cornflower);
	color: white;
	text-decoration: none;
	border-radius: 16px;
	font-weight: 700;
	font-size: 16px;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 8px 30px rgba(100, 149, 237, 0.35);
	position: relative;
	overflow: hidden;
}

	.btn-primary::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
		transform: translateX(-100%);
		transition: transform 0.6s ease;
	}

	.btn-primary:hover::before {
		transform: translateX(100%);
	}

	.btn-primary:hover {
		transform: translateY(-3px) scale(1.02);
		box-shadow: 0 15px 40px rgba(100, 149, 237, 0.45);
		background: var(--cornflower-dark);
	}

	.btn-primary svg {
		width: 20px;
		height: 20px;
		transition: transform 0.3s ease;
	}

	.btn-primary:hover svg {
		transform: translateX(4px);
	}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 28px;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(10px);
	color: var(--text-primary);
	text-decoration: none;
	border-radius: 16px;
	font-weight: 600;
	font-size: 16px;
	border: 1.5px solid rgba(100, 149, 237, 0.2);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

	.btn-secondary:hover {
		background: rgba(255, 255, 255, 0.9);
		border-color: var(--cornflower);
		transform: translateY(-2px);
		box-shadow: var(--shadow-md);
	}

.hero-stats {
	display: flex;
	gap: 40px;
}

.hero-stat {
	text-align: left;
}

.hero-stat-number {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: var(--cornflower);
	letter-spacing: -1px;
}

.hero-stat-label {
	font-size: 13px;
	color: var(--text-muted);
	font-weight: 500;
	margin-top: 2px;
}

/* Phone Mockup */
.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.phone-mockup {
	position: relative;
	width: 300px;
	height: 620px;
	background: #1a1a2e;
	border-radius: 44px;
	padding: 12px;
	box-shadow: var(--shadow-xl), inset 0 0 0 2px rgba(255,255,255,0.1);
	transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	animation: phoneFloat 6s ease-in-out infinite;
}

	.phone-mockup:hover {
		transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
	}

@keyframes phoneFloat {
	0%, 100% {
		transform: perspective(1200px) rotateY(-8deg) rotateX(3deg) translateY(0);
	}

	50% {
		transform: perspective(1200px) rotateY(-8deg) rotateX(3deg) translateY(-15px);
	}
}

.phone-notch {
	position: absolute;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 28px;
	background: #1a1a2e;
	border-radius: 0 0 18px 18px;
	z-index: 10;
}

.phone-screen {
	width: 100%;
	height: 100%;
	background: var(--near-white);
	border-radius: 34px;
	overflow: hidden;
	position: relative;
}

.phone-status-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 24px 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--text-primary);
}

.phone-app-header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 20px 16px;
}

	.phone-app-header img {
		width: 28px;
		height: 28px;
		border-radius: 7px;
	}

	.phone-app-header span {
		font-family: 'Space Grotesk', sans-serif;
		font-weight: 700;
		font-size: 18px;
		color: var(--text-primary);
	}

.phone-feed-label {
	padding: 0 20px;
	font-size: 11px;
	font-weight: 600;
	color: var(--cornflower);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 8px;
}

.phone-cards {
	padding: 0 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.phone-card {
	background: white;
	border-radius: 16px;
	padding: 14px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.04);
	border: 1px solid rgba(100, 149, 237, 0.06);
	animation: cardSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

	.phone-card:nth-child(1) {
		animation-delay: 0.3s;
	}

	.phone-card:nth-child(2) {
		animation-delay: 0.5s;
	}

	.phone-card:nth-child(3) {
		animation-delay: 0.7s;
	}

	.phone-card:nth-child(4) {
		animation-delay: 0.9s;
	}

@keyframes cardSlideIn {
	from {
		opacity: 0;
		transform: translateY(20px) scale(0.95);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.phone-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 8px;
}

.phone-card-title {
	font-size: 13px;
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1.3;
}

.phone-card-time {
	font-size: 10px;
	color: #34d399;
	font-weight: 600;
	background: rgba(52, 211, 153, 0.1);
	padding: 3px 8px;
	border-radius: 20px;
	white-space: nowrap;
}

.phone-card-company {
	font-size: 11px;
	color: var(--cornflower);
	font-weight: 600;
	margin-bottom: 4px;
}

.phone-card-meta {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.phone-card-tag {
	font-size: 9px;
	padding: 3px 8px;
	background: var(--soft-pink);
	color: var(--text-secondary);
	border-radius: 6px;
	font-weight: 500;
}

.phone-card-source {
	font-size: 9px;
	padding: 3px 8px;
	background: rgba(100, 149, 237, 0.08);
	color: var(--cornflower);
	border-radius: 6px;
	font-weight: 500;
}

/* Floating elements around phone */
.floating-badge {
	position: absolute;
	background: white;
	border-radius: 16px;
	padding: 12px 18px;
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-primary);
	animation: floatBadge 4s ease-in-out infinite;
	border: 1px solid rgba(100, 149, 237, 0.08);
}

.floating-badge-1 {
	top: 60px;
	right: -60px;
	animation-delay: 0s;
}

.floating-badge-2 {
	bottom: 120px;
	left: -40px;
	animation-delay: -2s;
}

.floating-badge-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

	.floating-badge-icon.green {
		background: rgba(52, 211, 153, 0.12);
	}

	.floating-badge-icon.blue {
		background: rgba(100, 149, 237, 0.12);
	}

@keyframes floatBadge {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

/* ============ LOGOS / TRUST BAR ============ */
.trust-bar {
	padding: 60px 0;
	background: white;
	border-bottom: 1px solid rgba(100, 149, 237, 0.06);
}

.trust-bar-label {
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 30px;
}

.trust-sites {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 48px;
	flex-wrap: wrap;
	opacity: 0.4;
}

.trust-site {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--text-primary);
	letter-spacing: -0.5px;
	transition: opacity 0.3s ease;
}

	.trust-site:hover {
		opacity: 1;
	}

/* ============ SECTION HEADERS ============ */
.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 64px;
}

.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 16px;
	background: rgba(100, 149, 237, 0.08);
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	color: var(--cornflower);
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}

.section-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -1.5px;
	margin-bottom: 16px;
}

.section-subtitle {
	font-size: 18px;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* ============ WHY SHUFFLE / FEATURES ============ */
.features {
	background: var(--gradient-3);
	padding: 120px 0;
	position: relative;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.feature-card {
	background: var(--near-white);
	border-radius: var(--radius-lg);
	padding: 36px 30px;
	border: 1px solid rgba(100, 149, 237, 0.06);
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
}

	.feature-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 3px;
		background: var(--gradient-1);
		opacity: 0;
		transition: opacity 0.4s ease;
	}

	.feature-card:hover {
		transform: translateY(-8px);
		box-shadow: var(--shadow-lg);
		border-color: rgba(100, 149, 237, 0.15);
	}

		.feature-card:hover::before {
			opacity: 1;
		}

.feature-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 26px;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-icon {
	transform: scale(1.1) rotate(-5deg);
}

.feature-icon.blue {
	background: rgba(100, 149, 237, 0.1);
}

.feature-icon.pink {
	background: rgba(254, 207, 255, 0.5);
}

.feature-icon.green {
	background: rgba(52, 211, 153, 0.1);
}

.feature-icon.purple {
	background: rgba(168, 85, 247, 0.1);
}

.feature-icon.orange {
	background: rgba(251, 146, 60, 0.1);
}

.feature-icon.teal {
	background: rgba(20, 184, 166, 0.1);
}

.feature-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 10px;
	letter-spacing: -0.3px;
}

.feature-desc {
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-secondary);
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
	padding: 120px 0;
	background: linear-gradient(180deg, var(--near-white) 0%, white 100%);
	position: relative;
}

.steps-container {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 900px;
	margin: 0 auto;
	position: relative;
}

.steps-line {
	position: absolute;
	left: 40px;
	top: 40px;
	bottom: 40px;
	width: 2px;
	background: linear-gradient(180deg, var(--cornflower), rgba(100, 149, 237, 0.1));
}

.step {
	display: flex;
	gap: 32px;
	align-items: flex-start;
	padding: 32px 0;
	position: relative;
}

.step-number {
	width: 80px;
	height: 80px;
	min-width: 80px;
	border-radius: 50%;
	background: white;
	border: 2px solid rgba(100, 149, 237, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 28px;
	font-weight: 800;
	color: var(--cornflower);
	position: relative;
	z-index: 2;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step:hover .step-number {
	background: var(--cornflower);
	color: white;
	border-color: var(--cornflower);
	transform: scale(1.1);
	box-shadow: 0 8px 30px rgba(100, 149, 237, 0.3);
}

.step-content {
	padding-top: 16px;
}

.step-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: -0.5px;
}

.step-desc {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-secondary);
	max-width: 600px;
}

/* ============ LIVE FEED DEMO ============ */
.live-feed-section {
	padding: 120px 0;
	background: white;
	overflow: hidden;
}

.feed-demo-container {
	max-width: 500px;
	margin: 8px auto;
	perspective: 1000px;
}

#feedStack {
	position: relative;
	width: 320px;
	height: 600px;
	overflow: hidden; /* Clips cards sliding in/out */
}

.cards-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px; /* Space between cards */
	transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
	will-change: transform;
}

.feed-card-demo {
	flex-shrink: 0; /* Prevents squishing during animation */
	height: 580px; /* Consistent card height for smooth math */
	background: white;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	box-sizing: border-box;
	/* Only transition content fade if desired */
	transition: opacity 0.4s ease;
}



/* Header & Logo */
.feed-card-header-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
}

.feed-card-demo-title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #374151;
	line-height: 1.4;
	flex: 1;
}

.feed-card-demo-logo {
	width: 48px;
	height: 48px;
	font-size:40px;
	border: 1px solid #D1D5DB;
	padding:0;
	border-radius: 4px;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.logo-icon.blue {
	color: rgba(100, 149, 237, 1);
}

.logo-icon.pink {
	color: rgba(254, 207, 255, 1);
}

.logo-icon.green {
	color: rgba(52, 211, 153, 1);
}

.logo-icon.purple {
	color: rgba(168, 85, 247, 1);
}

.logo-icon.orange {
	color: rgba(251, 146, 60, 1);
}

.logo-icon.teal {
	color: rgba(20, 184, 166, 1);
}

/* Metadata (Location/Time) */
.feed-card-row {
	margin-top: 16px;
}

.feed-card-metadata-row {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 18px;
}

.feed-card-location-badge {
	background: #F0FFFF; /* Azure */
	border: 1px solid #E5E7EB;
	border-radius: 4px;
	padding: 2px 4px 2px 1px;
	font-size: 13px;
	font-weight: 500;
	color: #374151;
	display: flex;
	align-items: center;
	gap: 4px;
	flex: 1;
}



.feed-card-time-badge {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 500;
	color: #374151;
}

.feed-card-demo-time {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 500;
	color: #374151;
}
/* Generic Row Styles for icons */
.feed-card-detail-row,
.feed-card-company-row,
.feed-card-url-row {
	display: flex;
	align-items: flex-start;
	margin-top: 16px;
}

.feed-card-url-row {
	margin-top: 8px;
}

.feed-card-demo-text {
	margin: 0;
	padding-left: 12px;
	font-size: 13px;
	line-height: 18px;
	color: #374151;
	display: inline;
}

.feed-card-demo-company {
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	padding-left: 12px;
}

.feed-card-demo-link {
	font-size: 13px;
	color: blue;
	text-decoration: underline;
	padding-left: 12px;
}
/* Features / Tags */
.feed-card-demo-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.feed-card-demo-tag {
	background: rgba(252, 231, 243, 0.25); /* 0x40FCE7F3 */
	border: 1px solid #F9A8D4;
	border-radius: 4px;
	padding: 2px 6px;
	font-size: 11px;
	color: black;
	display: flex;
	align-items: center;
	gap: 4px;
}
/* Icons (using CSS circles/shapes to represent material icons) */
.icon-loc::before {
	content: '📍';
	color: red;
	font-size: 12px;
}

.icon-time::before {
	content: '🕒';
	color: #87CEFA;
	font-size: 12px;
}

.icon-desc::before {
	content: '📄';
	color: #FA8072;
	font-size: 14px;
}

.icon-company::before {
	content: '🏢';
	color: #8FBC8F;
	font-size: 14px;
}

.icon-link::before {
	content: '🔗';
	color: blue;
	font-size: 14px;
}

.icon-star::before {
	content: '★';
	color: orange;
	font-size: 12px;
}
/* Action Button */
.feed-card-view-btn {
	display: block;
	width: fit-content; /* Shrinks to button's natural width */
	margin-left: auto; /* This is what actually pushes it right */
	margin-top: 32px;
	background: white;
	color: royalblue;
	border: 1px solid royalblue;
	border-radius: 8px;
	padding: 8px 24px;
	font-weight: bold;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
	.feed-card-view-btn:hover {
		background: royalblue;
		color: white;
	}

/* ============ PRIVACY SECTION ============ */
.privacy-section {
	padding: 120px 0;
	background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.privacy-bg-grid {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 30px 30px;
	pointer-events: none;
}

.privacy-section .section-tag {
	background: rgba(100, 149, 237, 0.2);
}

.privacy-section .section-title {
	color: white;
}

.privacy-section .section-subtitle {
	color: rgba(255, 255, 255, 0.6);
}

.privacy-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.privacy-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: var(--radius-lg);
	padding: 36px 28px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

	.privacy-card:hover {
		background: rgba(255, 255, 255, 0.1);
		border-color: rgba(100, 149, 237, 0.3);
		transform: translateY(-6px);
	}

.privacy-icon {
	font-size: 32px;
	margin-bottom: 18px;
}

.privacy-card-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
	color: white;
}

.privacy-card-desc {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.5);
}
/* ============ SPEED SECTION ============ */
.speed-section {
	padding: 120px 0;
	background: white;
}

.speed-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.speed-visual {
	position: relative;
}

.speed-meter {
	background: var(--near-white);
	border-radius: var(--radius-xl);
	padding: 48px;
	border: 1px solid rgba(100, 149, 237, 0.06);
}

.speed-meter-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 32px;
}

.speed-comparison {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.speed-item {
	display: flex;
	align-items: center;
	gap: 16px;
}

.speed-item-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-secondary);
	width: 100px;
	text-align: right;
	flex-shrink: 0;
}

.speed-bar-container {
	flex: 1;
	height: 36px;
	background: rgba(100, 149, 237, 0.05);
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.speed-bar {
	height: 100%;
	border-radius: 10px;
	display: flex;
	align-items: center;
	padding-left: 14px;
	font-size: 12px;
	font-weight: 700;
	color: white;
	transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
	width: 0;
}

	.speed-bar.animated {
		/* widths set inline */
	}

	.speed-bar.shuffle {
		background: var(--gradient-1);
		box-shadow: 0 4px 15px rgba(100, 149, 237, 0.3);
	}

	.speed-bar.other {
		background: linear-gradient(135deg, #d1d5db, #9ca3af);
	}

.speed-content h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 800;
	letter-spacing: -1px;
	margin-bottom: 16px;
	line-height: 1.15;
}

.speed-content p {
	font-size: 17px;
	line-height: 1.7;
	color: var(--text-secondary);
	margin-bottom: 32px;
}

.speed-features {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.speed-feature-item {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 15px;
	font-weight: 500;
	color: var(--text-secondary);
}

.speed-feature-check {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: rgba(100, 149, 237, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cornflower);
	font-size: 14px;
	flex-shrink: 0;
}
/* ============ TESTIMONIAL / SOCIAL PROOF ============ */
.social-proof {
	padding: 120px 0;
	background: var(--near-white);
}

.proof-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.proof-card {
	background: white;
	border-radius: var(--radius-lg);
	padding: 32px;
	border: 1px solid rgba(100, 149, 237, 0.06);
	transition: all 0.4s ease;
}

	.proof-card:hover {
		transform: translateY(-4px);
		box-shadow: var(--shadow-md);
	}

.proof-stars {
	display: flex;
	gap: 2px;
	margin-bottom: 16px;
}

.proof-star {
	color: #fbbf24;
	font-size: 16px;
}

.proof-text {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-secondary);
	margin-bottom: 20px;
	font-style: italic;
}

.proof-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.proof-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--gradient-1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 14px;
}

.proof-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-primary);
}

.proof-role {
	font-size: 12px;
	color: var(--text-muted);
}
/* ============ CTA SECTION ============ */
.cta-section {
	padding: 120px 0;
	background: white;
	position: relative;
	overflow: hidden;
}

.cta-container {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

.cta-bg-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.15;
	pointer-events: none;
}

.cta-bg-glow-1 {
	background: var(--cornflower);
	top: -200px;
	left: -100px;
}

.cta-bg-glow-2 {
	background: #f9a8d4;
	bottom: -200px;
	right: -100px;
}

.cta-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(36px, 5vw, 60px);
	font-weight: 800;
	letter-spacing: -2px;
	margin-bottom: 20px;
	line-height: 1.1;
}

.cta-subtitle {
	font-size: 19px;
	color: var(--text-secondary);
	line-height: 1.7;
	max-width: 600px;
	margin: 0 auto 48px;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.download-btn {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 18px 36px;
	background: var(--text-primary);
	color: white;
	text-decoration: none;
	border-radius: 18px;
	font-weight: 700;
	font-size: 16px;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 8px 30px rgba(26, 26, 46, 0.2);
}

	.download-btn:hover {
		transform: translateY(-4px) scale(1.03);
		box-shadow: 0 15px 45px rgba(26, 26, 46, 0.3);
	}

	.download-btn svg {
		width: 28px;
		height: 28px;
	}

.download-btn-info {
	text-align: left;
}

.download-btn-small {
	font-size: 11px;
	font-weight: 500;
	opacity: 0.7;
	display: block;
	line-height: 1.2;
}

.download-btn-large {
	font-size: 16px;
	font-weight: 700;
	display: block;
	line-height: 1.2;
}

.cta-tagline {
	font-size: 15px;
	color: var(--text-muted);
	font-weight: 500;
}

	.cta-tagline strong {
		color: var(--cornflower);
	}
/* ============ FOOTER ============ */
.footer {
	padding: 60px 0 40px;
	background: var(--near-white);
	border-top: 1px solid rgba(100, 149, 237, 0.06);
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

	.footer-logo img {
		height: 32px;
		width: auto;
	}

.footer-logo-text {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--text-primary);
}

.footer-copy {
	font-size: 13px;
	color: var(--text-muted);
}

.footer-links {
	display: flex;
	gap: 24px;
}

	.footer-links a {
		font-size: 13px;
		color: var(--text-muted);
		text-decoration: none;
		transition: color 0.3s ease;
	}

		.footer-links a:hover {
			color: var(--cornflower);
		}
/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
	.hero .container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-content {
		max-width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.hero-subtitle {
		max-width: 100%;
	}

	.hero-ctas {
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
	}

	.hero-visual {
		order: -1;
	}

	.phone-mockup {
		transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
		width: 260px;
		height: 540px;
	}

		.phone-mockup:hover {
			transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
		}

	@keyframes phoneFloat {
		0%, 100% {
			transform: translateY(0);
		}

		50% {
			transform: translateY(-10px);
		}
	}

	.floating-badge {
		display: none;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.speed-grid {
		grid-template-columns: 1fr;
	}

	.privacy-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.proof-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.mobile-toggle {
		display: flex;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.privacy-grid {
		grid-template-columns: 1fr;
	}

	.steps-line {
		display: none;
	}

	.step {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.step-content {
		padding-top: 0;
	}

	.hero-stats {
		gap: 24px;
	}

	.feed-card-demo {
		width: 340px;
	}

	.download-btn {
		padding: 16px 28px;
	}
}

@media (max-width: 480px) {
	.hero-ctas {
		flex-direction: column;
		width: 100%;
	}

	.btn-primary, .btn-secondary {
		width: 100%;
		justify-content: center;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.download-btn {
		width: 100%;
		max-width: 320px;
		justify-content: center;
	}

	.feed-card-demo {
		width: 300px;
	}
}
/* ============ ANIMATIONS ============ */
@keyframes spin-slow {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}
}

.pulse-ring {
	position: absolute;
	border-radius: 50%;
	border: 2px solid rgba(100, 149, 237, 0.2);
	animation: pulseRing 3s ease-out infinite;
}

@keyframes pulseRing {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}
/* Custom scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--near-white);
}

::-webkit-scrollbar-thumb {
	background: rgba(100, 149, 237, 0.3);
	border-radius: 4px;
}

	::-webkit-scrollbar-thumb:hover {
		background: rgba(100, 149, 237, 0.5);
	}
/* Selection color */
::selection {
	background: rgba(100, 149, 237, 0.2);
	color: var(--text-primary);
}

/* ── QR Code Wrapper ── */
.qr-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin: 36px auto 40px;
}

/* Outer glowing card frame */
.qr-frame {
	position: relative;
	padding: 18px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 0 40px rgba(108, 99, 255, 0.15), 0 0 80px rgba(108, 99, 255, 0.06), inset 0 0 20px rgba(255, 255, 255, 0.03);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}
.qr-frame-sml {
	position: relative;
	padding: 8px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	box-shadow: 0 0 20px rgba(108, 99, 255, 0.15), 0 0 40px rgba(108, 99, 255, 0.06), inset 0 0 10px rgba(255, 255, 255, 0.03);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

	.qr-frame:hover {
		transform: translateY(-4px) scale(1.02);
		box-shadow: 0 0 50px rgba(108, 99, 255, 0.3), 0 0 100px rgba(108, 99, 255, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.05);
	}


/* Anchor for absolute dropdown positioning */
.nav-download-trigger {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Dropdown container (replaces .qr-wrapper in this context) */
.nav-qr-dropdown {
	position: absolute;
	top: calc(100% + 16px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 999;
	/* Inherits your exact layout styles */
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reveal on hover & keyboard focus */
.nav-download-trigger:hover .nav-qr-dropdown,
.nav-download-trigger:focus-within .nav-qr-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}

/* ── YOUR EXACT QR STYLES (preserved) ── */
.qr-frame {
	position: relative;
	padding: 18px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 0 40px rgba(108, 99, 255, 0.15), 0 0 80px rgba(108, 99, 255, 0.06), inset 0 0 20px rgba(255, 255, 255, 0.03);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

	.qr-frame:hover {
		transform: translateY(-4px) scale(1.02);
		box-shadow: 0 0 50px rgba(108, 99, 255, 0.3), 0 0 100px rgba(108, 99, 255, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.05);
	}

.qr-image {
	display: block;
	width: 200px;
	height: 200px;
	border-radius: 12px;
	object-fit: contain;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}
.qr-image-sml {
	display: block;
	width: 160px;
	height: 160px;
	border-radius: 12px;
	object-fit: contain;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.qr-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	letter-spacing: 0.5px;
	color: var(--cornflower-dark, rgba(255, 255, 255, 0.6)); /* Fallback added for safety */
	font-weight: 500;
}


/* ── Responsive tweaks ── */
/* Optional: Scale down slightly on very narrow viewports to prevent overflow */
@media (max-width: 480px) {
	.qr-image {
		width: 140px;
		height: 140px;
	}

	.qr-wrapper {
		margin: 28px auto 32px;
	}
}



/* Hide dropdown on mobile when hamburger menu is active */
@media (max-width: 768px) {
	.nav-qr-dropdown {
		display: none;
	}
}

/* Hide dropdown on mobile when hamburger menu is active */
@media (max-width: 768px) {
	.nav-qr-dropdown { display: none; }
}

/* ── HERO QR CODE (Exact CTA-style glass/glow) ── */
.hero-qr-wrapper {
	/* position: absolute;
	top: -260px; Sits in the blank space above the phone 
	left: 40%;
	visibility: visible;*/
	top: 64px;
	left: 50%;
	position: relative;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	z-index: 5;
	animation: qrFloatHero 4s ease-in-out infinite;
	transform: translateX(-50%);
	display: flex;
}

@keyframes qrFloatHero {
	0%, 100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(-8px);
	}
}

.hero-qr-frame {
	position: relative;
	padding: 12px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.2); /* Bumped slightly for visibility on light hero bg */
	border: 1px solid rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	box-shadow: 0 0 20px rgba(100, 149, 237, 0.15), 0 0 40px rgba(100, 149, 237, 0.06), inset 0 0 10px rgba(255, 255, 255, 0.03);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

	.hero-qr-frame:hover {
		transform: translateY(-4px) scale(1.02);
		box-shadow: 0 0 50px rgba(100, 149, 237, 0.3), 0 0 100px rgba(100, 149, 237, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.05);
	}

.hero-qr-image {
	display: block;
	width: 160px;
	height: 160px;
	border-radius: 8px;
	object-fit: contain;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.hero-qr-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	letter-spacing: 0.5px;
	color: var(--cornflower);
	font-weight: 600;
}

/* ── Responsive Scaling ── */
@media (max-width: 1024px) {
	.hero-qr-image {
		width: 130px;
		height: 130px;
	}

	.hero-qr-wrapper {
		top: -115px;
	}
}

@media (max-width: 768px) {
	.hero-qr-image {
		width: 110px;
		height: 110px;
	}

	.hero-qr-wrapper {
		top: -100px;
	}
}

@media (max-width: 480px) {
	.hero-qr-image {
		width: 90px;
		height: 90px;
	}

	.hero-qr-frame {
		padding: 14px;
		border-radius: 16px;
	}

	.hero-qr-wrapper {
		top: -85px;
	}
}


/* ============ FAQ SECTION ============ */
.faq-section {
	padding: 120px 0;
	background: linear-gradient(180deg, var(--near-white) 0%, #ffffff 100%);
}

.faq-list {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.faq-card {
	background: var(--white);
	border-radius: var(--radius-md);
	border: 1px solid rgba(100, 149, 237, 0.08);
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: var(--shadow-sm);
}

	.faq-card:hover {
		border-color: rgba(100, 149, 237, 0.18);
		box-shadow: var(--shadow-md);
	}

	.faq-card.is-open {
		border-color: rgba(100, 149, 237, 0.2);
		box-shadow: var(--shadow-md), 0 0 0 1px rgba(100, 149, 237, 0.06);
	}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 28px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--text-primary);
	transition: color 0.3s ease;
}

	.faq-question:hover {
		color: var(--cornflower-dark);
	}

.faq-card.is-open .faq-question {
	color: var(--cornflower);
}

.faq-question-text {
	flex: 1;
}

.faq-icon {
	width: 32px;
	height: 32px;
	min-width: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(100, 149, 237, 0.08);
	font-size: 20px;
	font-weight: 300;
	color: var(--cornflower);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	line-height: 1;
}

.faq-card.is-open .faq-icon {
	background: var(--cornflower);
	color: var(--white);
	transform: rotate(45deg);
}

.faq-answer-wrapper {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
	opacity: 0;
}

.faq-card.is-open .faq-answer-wrapper {
	max-height: 400px;
	opacity: 1;
}

.faq-answer {
	padding: 0 28px 24px;
	font-size: 15px;
	line-height: 1.75;
	color: var(--text-secondary);
	border-top: 1px solid rgba(100, 149, 237, 0.06);
	padding-top: 18px;
}

/* Staggered reveal for each card */
.faq-card {
	opacity: 0;
	transform: translateY(20px);
}

	.faq-card.visible {
		opacity: 1;
		transform: translateY(0);
		transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	}


/* Stop Start */
.text-stop, .text-start {
	opacity: 0;
	position: relative;
	display: inline-block;
	color: var(--cornflower);
}

	.text-stop span, .text-start span {
		display: inline-block;
		opacity: 0;
		transform: translateX(-8px);
		filter: blur(3px);
		animation: fadeSlideIn 0.7s ease forwards;
		vertical-align: baseline;
		padding-bottom: 4px;
	}

@keyframes fadeSlideIn {
	to {
		opacity: 1;
		transform: translateX(0);
		filter: blur(0);
	}
}

.text-stop-gradient {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to left, transparent 0%, /* Right edge: fully faded */
	var(--cornflower) 1%, /* Adjust this % to control fade intensity */
	#b18dfc 8%, #f8c1d5 100% /* Left side: stays exactly the same */
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	clip-path: inset(0 var(--reveal, 100%) 0 0);
	/* transition duration set in JS */
}
.text-stop-gradient-dep {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to left, transparent 0%, /* Right edge: fully faded */
	var(--cornflower) 15%, /* Adjust this % to control fade intensity */
	#b18dfc 45%, #f8c1d5 100% /* Left side: stays exactly the same */
	);
	-webkit-background-clip: text;
	background-clip: text; /* Added standard property for broader support */
	color: transparent;
	clip-path: inset(0 var(--reveal, 100%) 0 0);
}
