/**
 * Hero Section Styles
 * Remote Madam Design System
 */

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
	position: relative;
	background-color: var(--bg);
	padding: 100px 0 80px;
	min-height: 90vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 60px;
}

.hero__inner {
	display: grid;
	grid-template-columns: 48% 52%;
	gap: 40px;
	align-items: center;
}

/* ============================================
   HERO CONTENT
   ============================================ */

.hero__content {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUp 0.8s ease forwards;
}

.hero__label {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 24px;
}

.hero__heading {
	font-size: 72px;
	font-weight: 800;
	font-family: var(--font-heading);
	line-height: 1;
	color: var(--text);
	margin: 0 0 24px;
	letter-spacing: -2px;
}

.hero__heading--highlight {
	color: var(--primary);
}

.hero__description {
	font-size: 20px;
	font-weight: 400;
	color: #B8B8B8;
	line-height: 1.8;
	max-width: 560px;
	margin: 0 0 40px;
}

/* ============================================
   HERO ACTIONS
   ============================================ */

.hero__actions {
	display: flex;
	gap: 16px;
	margin-bottom: 50px;
}

.hero__actions .btn {
	transition: transform var(--transition), box-shadow var(--transition);
}

.hero__actions .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(245, 93, 174, 0.3);
}

.hero__actions .btn--secondary:hover {
	box-shadow: 0 8px 24px rgba(108, 99, 255, 0.3);
}

/* ============================================
   HERO STATS
   ============================================ */

.hero__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	padding: 28px 20px;
	background: #111111;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__stat {
	text-align: left;
}

.hero__stat-value {
	font-size: var(--font-size-3xl);
	font-weight: var(--font-weight-bold);
	font-family: var(--font-heading);
	color: var(--text);
	margin-bottom: var(--spacing-1);
}

.hero__stat-label {
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-normal);
	color: var(--text-muted);
}

/* ============================================
   HERO VISUAL
   ============================================ */

.hero__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 700px;
}

.hero__glow {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.hero__glow--pink {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(245, 93, 174, 0.4) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.hero__glow--purple {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(108, 99, 255, 0.25) 0%, transparent 75%);
	top: 25%;
	right: 5%;
	filter: blur(40px);
}

.hero__glow--blur-1 {
	width: 200px;
	height: 200px;
	background: rgba(245, 93, 174, 0.2);
	filter: blur(60px);
	top: 20%;
	left: 20%;
}

.hero__glow--blur-2 {
	width: 250px;
	height: 250px;
	background: rgba(108, 99, 255, 0.15);
	filter: blur(80px);
	bottom: 20%;
	right: 20%;
}

.hero__image {
	width: 100%;
	max-width: 640px;
	height: auto;
	position: relative;
	z-index: 10;
	transform: translateY(30px) translateX(20px);
}

.hero__placeholder {
	width: 400px;
	height: 500px;
	background-color: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-size: var(--font-size-sm);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
	.hero__inner {
		gap: var(--spacing-8);
	}

	.hero__heading {
		font-size: var(--font-size-5xl);
	}

	.hero__stats {
		gap: var(--spacing-4);
	}

	.hero__stat-value {
		font-size: var(--font-size-2xl);
	}

	.hero__visual {
		min-height: 400px;
	}

	.hero__glow--pink {
		width: 300px;
		height: 300px;
	}

	.hero__glow--purple {
		width: 250px;
		height: 250px;
	}
}

@media (max-width: 768px) {
	.hero {
		padding: 100px 0 60px;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		gap: var(--spacing-10);
	}

	.hero__content {
		text-align: center;
	}

	.hero__heading {
		font-size: var(--font-size-4xl);
	}

	.hero__description {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.hero__actions {
		justify-content: center;
		flex-direction: column;
	}

	.hero__actions .btn {
		width: 100%;
		max-width: 300px;
	}

	.hero__stats {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-6);
		text-align: center;
	}

	.hero__visual {
		min-height: 350px;
		order: -1;
	}

	.hero__glow--pink {
		width: 250px;
		height: 250px;
	}

	.hero__glow--purple {
		width: 200px;
		height: 200px;
	}

	.hero__placeholder {
		width: 100%;
		max-width: 350px;
		height: 400px;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 80px 0 40px;
	}

	.hero__heading {
		font-size: var(--font-size-3xl);
	}

	.hero__description {
		font-size: var(--font-size-base);
	}

	.hero__stats {
		gap: var(--spacing-4);
	}

	.hero__stat-value {
		font-size: var(--font-size-xl);
	}

	.hero__stat-label {
		font-size: var(--font-size-xs);
	}

	.hero__visual {
		min-height: 300px;
	}
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
	.hero__content,
	.hero__image {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.hero__actions .btn {
		transition: none;
	}
}
