.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2rem;
	position: relative;
}

.hero-container {
	max-width: 1200px;
	width: 100%;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 4rem;
	align-items: center;
}

.hero-content {
	z-index: 2;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.8rem;
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 100px;
	font-size: 0.8rem;
	color: var(--accent-primary);
	margin-bottom: 1.5rem;
	animation: fadeInDown 0.8s ease forwards;
}

.status-dot {
	width: 6px;
	height: 6px;
	background: var(--accent-primary);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

h1 {
	font-size: 4.5rem;
	line-height: 1.1;
	font-weight: 800;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
	animation: fadeInUp 0.8s ease 0.2s forwards;
	opacity: 0;
}

.gradient-text {
	background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.highlight {
	background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-desc {
	font-size: 1.25rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 2.5rem;
	max-width: 500px;
	animation: fadeInUp 0.8s ease 0.4s forwards;
	opacity: 0;
}

.action-group {
	display: flex;
	gap: 1rem;
	animation: fadeInUp 0.8s ease 0.6s forwards;
	opacity: 0;
}

.btn {
	padding: 1rem 2rem;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-size: 1rem;
}

.btn-primary {
	background: var(--text-main);
	color: var(--bg-dark);
	border: 1px solid var(--text-main);
}

.btn-primary:hover {
	background: transparent;
	color: var(--text-main);
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-glass {
	background: rgba(255, 255, 255, 0.03);
	color: var(--text-main);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(10px);
}

.btn-glass:hover {
	/*
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
	*/
	background: var(--text-main);
	color: var(--bg-dark);
	border: 1px solid var(--text-main);
	background: transparent;
	color: var(--text-main);
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero-links {
    margin-top: 1rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center; /* zentriert unter dem Text */
    flex-wrap: wrap;
}

.hero-link {
    font-size: 0.9rem;
    color: var(--accent-primary);
    text-decoration: underline;
    transition: color 0.3s;
}

.hero-link:hover {
    color: var(--accent-secondary);
}

/* ==========================
   MOBILE HERO FIX
   ========================== */
@media (max-width: 768px) {

	.hero {
		padding: 3.5rem 1rem 1rem 1rem; /* Navbar + kleiner Padding */
		overflow-x: hidden; /* verhindert Scroll */
	}

	.hero-container {
		grid-template-columns: 1fr; /* 1 Spalte */
		text-align: center;
		gap: 1rem; /* kleiner Gap */
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.hero-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		max-width: 100%;
	}

	.hero-visual {
		height: 300px;
		width: 100%;
		max-width: 100%;
		perspective: 800px;
		transform: none !important;
	}

	h1 {
		font-size: 2rem;
		line-height: 1.2;
	}

	.hero-desc {
		max-width: 100%;
		width: 100%;
		font-size: 1rem;
	}

	.action-group {
		flex-direction: column;
		gap: 0.8rem;
		width: 100%;
	}
}