/* ============================================================
   Hero Section — per HERO.md
   ============================================================ */

/* --- Wrapper & Layout --- */
.hero-wrapper {
	/* Scoped hero color tokens — anchored to main design system */
	--hero-accent: var(--accent);
	--hero-accent-hover: var(--accentHover);
	--hero-accent-purple: #6C5CE7;
	--hero-accent-yellow: #F5A623;
	--hero-text-dark: var(--ink);
	--hero-text-secondary: var(--inkMuted);

	background: #FFFFFF;
	padding: 80px 0;
	overflow: hidden;
}
.hero-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 64px;
}
.hero-left {
	flex: 0 0 calc(45% - 32px);
	max-width: calc(45% - 32px);
}
.hero-right {
	flex: 0 0 calc(55% - 32px);
	max-width: calc(55% - 32px);
	position: relative;
}

/* --- Badge --- */
.hero-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #FFFFFF;
	border: 1px solid #ECECF3;
	border-radius: 999px;
	padding: 8px 16px 8px 8px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.04);
	width: fit-content;
	margin-bottom: 24px;
}
.hero-badge-text {
	font-size: 14px;
	font-weight: 500;
	color: #1A1A2E;
	font-family: 'Inter', system-ui, sans-serif;
}

/* --- Headline --- */
.hero-title {
	font-family: 'Poppins', 'Inter', system-ui, sans-serif;
	font-size: 60px;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -1px;
	color: var(--hero-text-dark);
	margin: 0 0 20px;
	position: relative;
}
.hero-title .highlight {
	color: var(--hero-accent);
}
.hero-title .quote {
	color: var(--hero-text-dark);
}
.hero-title .sparkle-decor {
	position: absolute;
	top: -8px;
	right: -36px;
}

/* --- Subheadline --- */
.hero-desc {
	font-size: 19px;
	color: var(--hero-text-secondary);
	font-weight: 400;
	line-height: 1.5;
	margin: 0 0 32px;
	font-family: 'Inter', system-ui, sans-serif;
}

/* --- CTA Button --- */
.cta-btn-hero {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, var(--hero-accent), var(--hero-accent-purple));
	color: #FFFFFF;
	font-weight: 700;
	font-size: 18px;
	font-family: 'Inter', system-ui, sans-serif;
	padding: 18px 28px;
	border-radius: 999px;
	border: none;
	box-shadow: 0 12px 24px color-mix(in srgb, var(--hero-accent) 35%, transparent);
	cursor: pointer;
	text-decoration: none;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.cta-btn-hero:hover {
	box-shadow: 0 16px 32px color-mix(in srgb, var(--hero-accent) 45%, transparent);
	transform: translateY(-1px);
}

/* --- Features row --- */
.hero-features {
	display: flex;
	gap: 32px;
	margin: 40px 0 24px;
}
.hero-feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 120px;
}
.hero-feature-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}
.hero-feature-text {
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	line-height: 1.3;
	font-family: 'Inter', system-ui, sans-serif;
}

/* --- Disclaimer --- */
.hero-disclaimer {
	background: #F1F3F9;
	border-radius: 10px;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: #4B5563;
	font-family: 'Inter', system-ui, sans-serif;
	width: fit-content;
}

/* ===== HERO-RIGHT ===== */
.device-stack {
	position: relative;
	width: 100%;
	max-width: 600px;
	height: 600px;
	margin: 0 auto;
}
.decor-blob {
	width: 70%;
	height: 70%;
	background: #DCE4FF;
	opacity: 0.4;
	filter: blur(40px);
	border-radius: 50%;
	position: absolute;
	top: 10%;
	right: 0;
	pointer-events: none;
}
.decor-dots {
	position: absolute;
	top: 0;
	right: 0;
	pointer-events: none;
}
.sparkle-decor-el {
	position: absolute;
	pointer-events: none;
}
.device-laptop {
	position: absolute;
	top: 0;
	left: 0;
	width: 70%;
	z-index: 1;
}
.device-tablet {
	position: absolute;
	bottom: 0;
	right: 5%;
	width: 45%;
	z-index: 2;
	transform: rotate(-3deg);
}
.device-phone {
	position: absolute;
	top: 10%;
	right: 0;
	width: 22%;
	z-index: 3;
	transform: rotate(4deg);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.hero-inner {
		gap: 40px;
	}
	.hero-title {
		font-size: 48px;
	}
}
@media (max-width: 768px) {
    .hero-wrapper {
        padding: 40px 0;
}
	.hero-inner {
		flex-direction: column;
		gap: 40px;
	}
	.hero-left, .hero-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.hero-title {
		font-size: 36px;
	}
	.hero-desc {
		font-size: 17px;
	}
	.hero-features {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
	.device-stack {
		height: 400px;
	}
}
