
.hero {
	position: relative;
	padding: 80px 0 60px;
	background: linear-gradient(145deg, #0e0e0e 0%, #0b0b0b 100%);
	border-bottom: 1px solid #2a2a2a;
}

.hero .container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.hero-content h1 {
	margin: 0 0 1.2rem;
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-weight: 700;
	font-size: 3.8rem;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: #f5f5f5;
}

.hero-content p {
	max-width: 500px;
	margin: 0 0 2.5rem;
	color: #b0b0b0;
	font-family: 'Inter', sans-serif;
	font-size: 1.2rem;
	line-height: 1.6;
}

.hero .accent-text { color: #a855f7; }

.hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-buttons a {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-decoration: none;
	text-transform: uppercase;
	transition: 0.25s cubic-bezier(0.2, 0, 0, 1);
	cursor: pointer;
}

.hero-buttons .btn-primary {
	padding: 0.8rem 2rem;
	background: #a855f7;
	border: 0;
	border-radius: 6px;
	color: #0b0b0b;
}

.hero-buttons .btn-primary:hover,
.hero-buttons .btn-primary:focus-visible {
	background: #c084fc;
	box-shadow: 0 8px 20px rgba(168, 85, 247, 0.35);
	transform: translateY(-2px);
}

.hero-buttons .btn-outline {
	padding: 0.8rem 2rem;
	background: transparent;
	border: 1px solid #2a2a2a;
	border-radius: 6px;
	color: #f5f5f5;
}

.hero-buttons .btn-outline:hover,
.hero-buttons .btn-outline:focus-visible {
	background: rgba(168, 85, 247, 0.08);
	border-color: #a855f7;
	color: #a855f7;
}

.hero-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 500px;
	aspect-ratio: 1 / 1;
	background: radial-gradient(circle at 30% 30%, #2a1a2a, #0b0b0b);
	border: 1px solid #2a2a2a;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
	color: #777777;
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
	text-align: center;
}

.hero-placeholder i {
	margin-bottom: 1rem;
	color: #a855f7;
	font-size: 4rem;
	opacity: 0.7;
}

@media (max-width: 1024px) {
	.hero-grid { grid-template-columns: 1fr; }
	.hero-placeholder { margin: 0 auto; }
}

@media (max-width: 768px) {
	.hero-content h1 { font-size: 2.6rem; }
}

@media (max-width: 480px) {
	.hero-buttons { gap: 10px; flex-wrap: nowrap; }
	.hero-buttons a { padding: 0.6rem 0.9rem; font-size: 0.75rem; }
}
