/**
 * Features Hero Section
 *
 * Hero section styling for the features page with animated blob background.
 *
 * @package AgenticWP
 */

.features-hero {
	position: relative;
	background: linear-gradient(
		to bottom,
		#fefcfb 0%,
		#fefcfb calc(100% - 120px),
		transparent 100%
	);
	padding: 8vw 5vw 5vw;
	overflow: visible; /* Allow blob background to extend beyond */
	text-align: center;
}

/* Animated blob background container - extends both directions */
.features-hero-background {
	top: -120px; /* Extend into previous section for seamless blend */
	bottom: -120px; /* Extend into next section for seamless blend */
	filter: url('#features-hero-plasma');
}

/* Blob color customization for features hero section */
.features-hero-background .blob {
	background: radial-gradient(
		circle,
		#ffc0cb 0%,
		rgba(255, 192, 203, 0.1) 100%
	);
}

/* Blob animations with unique timings */
#features-hero-blob-1 {
	animation: blob-float-1 22s ease-in-out infinite;
}

#features-hero-blob-2 {
	animation: blob-float-2 28s ease-in-out infinite 5s;
}

#features-hero-blob-3 {
	animation: blob-float-3 25s ease-in-out infinite 10s;
}

#features-hero-blob-4 {
	animation: blob-float-4 24s ease-in-out infinite 3s;
}

#features-hero-blob-5 {
	animation: blob-float-5 30s ease-in-out infinite 7s;
}

/* Hero content styling */
.features-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.features-hero h1 {
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1.1;
	margin: 0 0 20px;
	letter-spacing: -0.02em;
	font-weight: 700;
	color: var(--ink);
}

.features-hero h1 .accent {
	background: linear-gradient(135deg, #EC4899, #831843);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: #831843;
}

.features-hero p {
	margin: 0;
	font-size: clamp(16px, 2.5vw, 20px);
	line-height: 1.6;
	color: var(--ink);
}

.features-hero-download {
	margin-top: 28px;
}

/* Responsive: Tablet */
@media (max-width: 940px) {
	.features-hero {
		padding: 60px 5vw;
	}

	.features-hero h1 {
		font-size: clamp(28px, 5vw, 48px);
	}

	.features-hero p {
		font-size: clamp(15px, 2.5vw, 18px);
	}
}

/* Responsive: Mobile */
@media (max-width: 680px) {
	.features-hero {
		padding: 50px 5vw;
	}

	.features-hero h1 {
		font-size: clamp(26px, 5vw, 40px);
		margin-bottom: 16px;
	}

	.features-hero p {
		font-size: clamp(14px, 2.5vw, 16px);
	}
}

/* Accessibility: Reduced Motion */
/* Blob animations handled by shared blob-background.css */
