/* Hero Section Components */
.hero {
	text-align: center;
	margin-bottom: 2rem;
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
}

.hero-content p {
	font-size: 1.8rem;
	line-height: 1.6;
}

.hero-subtitle {
	font-size: 2.2rem !important;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: var(--spacing-md);
}

.hero-description {
	font-size: 1.8rem !important;
	color: var(--text-muted);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero-status {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

.status-badge {
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-sm);
	background: rgba(255, 105, 180, 0.1);
	border: 1px solid rgba(255, 105, 180, 0.3);
	border-radius: var(--border-radius-xl);
	padding: 1rem 2rem;
	font-weight: 600;
	color: var(--primary);
}

.status-indicator {
	width: 8px;
	height: 8px;
	background: var(--primary);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

.feature-highlight {
	display: inline-block;
	background: var(--primary);
	color: white;
	padding: 0.4rem 1.4rem;
	border-radius: var(--border-radius-lg);
	font-size: 1.4rem;
	font-weight: 600;
	margin-top: var(--spacing-md);
}
