/**
 * Mozart Hero — Premium Product Section
 *
 * Glassmorphism (dark):
 *   background: rgba(0, 0, 0, 0.61)
 *   box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1)
 *   backdrop-filter: blur(11px)
 *   border: 1px solid rgba(0, 0, 0, 0.3)
 *
 * Border radius: 0 (always)
 */

/* ------------------------------------------------
   Section
   ------------------------------------------------ */

.stg-mozart {
	position: relative;
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #050507;
}

/* ------------------------------------------------
   Background Video
   ------------------------------------------------ */

.stg-mozart__video-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.stg-mozart__video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	object-fit: cover;
	opacity: 0.35;
}

/* Dark overlay on video */
.stg-mozart__video-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(5, 5, 7, 0.6) 0%,
		rgba(5, 5, 7, 0.3) 40%,
		rgba(5, 5, 7, 0.5) 70%,
		rgba(5, 5, 7, 0.85) 100%
	);
}

/* ------------------------------------------------
   Content Layout
   ------------------------------------------------ */

.stg-mozart__inner {
	position: relative;
	z-index: 3;
	max-width: 1220px;
	width: 100%;
	margin: 0 auto;
	padding: 140px 24px 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 56px;
}

/* ------------------------------------------------
   Header — Badge, Logo, Title, CTAs
   ------------------------------------------------ */

.stg-mozart__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 24px;
	max-width: 740px;
}

/* Badge */
.stg-mozart__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #FFF;
	background: rgba(0, 0, 0, 0.61);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(11px);
	-webkit-backdrop-filter: blur(11px);
	border: 1px solid rgba(100, 140, 255, 0.1);
	border-radius: 0;
	padding: 10px 22px;
}

.stg-mozart__badge-dot {
	width: 5px;
	height: 5px;
	background: rgba(130, 170, 255, 0.8);
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(130, 170, 255, 0.4);
	animation: mozart-dot-glow 2.5s ease-in-out infinite;
}

@keyframes mozart-dot-glow {
	0%, 100% { opacity: 0.4; box-shadow: 0 0 4px rgba(130, 170, 255, 0.2); }
	50%      { opacity: 1;   box-shadow: 0 0 12px rgba(130, 170, 255, 0.6); }
}

/* Brand name — glassmorphism text */
.stg-mozart__brand {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: clamp(64px, 12vw, 140px);
	line-height: 1;
	letter-spacing: -0.04em;
	margin: 0;
	color: transparent;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.0) 0%,
		rgba(255, 255, 255, 0.01) 25%,
		rgba(255, 255, 255, 0.035) 55%,
		rgba(255, 255, 255, 0.07) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
}

/* Title */
.stg-mozart__title {
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
	font-size: clamp(26px, 3.8vw, 48px);
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: #FFFFFF;
	text-transform: uppercase;
	margin: 0;
}

/* Subtitle */
.stg-mozart__subtitle {
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 400;
	font-size: clamp(15px, 1.2vw, 17px);
	line-height: 1.7;
	color: #B9B9B9;
	margin: 0;
	max-width: 540px;
}

/* CTAs */
.stg-mozart__ctas {
	display: flex;
	gap: 16px;
	margin-top: 8px;
}

.stg-mozart__cta {
	font-family: 'Helvetica', sans-serif;
	font-weight: 600;
	font-size: 13px;
	padding: 15px 40px;
	text-decoration: none;
	border-radius: 0;
	transition: all 0.3s ease;
	white-space: nowrap;
	text-transform: uppercase;
}

.stg-mozart__cta--solid {
	background: #FFFFFF;
	color: #050507;
	border: 1px solid #FFFFFF;
}

.stg-mozart__cta--solid:hover {
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}

.stg-mozart__cta--glass {
	background: rgba(0, 0, 0, 0.61);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(11px);
	-webkit-backdrop-filter: blur(11px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.7);
}

.stg-mozart__cta--glass:hover {
	border-color: rgba(255, 255, 255, 0.15);
	color: #FFFFFF;
	background: rgba(0, 0, 0, 0.75);
}

/* ------------------------------------------------
   Glass Panel — Stats + Modules
   ------------------------------------------------ */

.stg-mozart__panel {
	width: 100%;
	max-width: 900px;
}

.stg-mozart__panel-glass {
	background: rgba(29, 29, 29, 0.39);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(13.4px);
	-webkit-backdrop-filter: blur(13.4px);
	border: 1px solid rgba(29, 29, 29, 0.41);
	padding: 40px 48px;
	display: flex;
	flex-direction: column;
	gap: 28px;
	position: relative;
	overflow: hidden;
}

/* Shimmer sweep */
.stg-mozart__panel-glass::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.015) 50%,
		transparent 100%
	);
	animation: mozart-panel-shimmer 10s ease-in-out infinite;
}

@keyframes mozart-panel-shimmer {
	0%, 100% { left: -60%; }
	50%      { left: 100%; }
}

/* Stats row */
.stg-mozart__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.stg-mozart__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 12px 0;
	position: relative;
}

.stg-mozart__stat:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background: rgba(255, 255, 255, 0.06);
}

.stg-mozart__stat-value {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: clamp(28px, 3vw, 38px);
	letter-spacing: -0.02em;
	color: #FFFFFF;
	line-height: 1;
}

.stg-mozart__stat-label {
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 400;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
	text-align: center;
}

/* Divider */
.stg-mozart__divider {
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.06) 20%,
		rgba(255, 255, 255, 0.06) 80%,
		transparent 100%
	);
}

/* Module pills */
.stg-mozart__modules {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.stg-mozart__module {
	font-family: 'Helvetica', sans-serif;
	font-weight: 700;
	font-size: 10px;
	letter-spacing: 0.01em;
	color:#fff;
	background: rgba(0, 0, 0, 0.34);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(13.4px);
	-webkit-backdrop-filter: blur(13.4px);
	border: 1px solid rgba(0, 0, 0, 0.41);
	padding: 8px 18px;
	transition: all 0.3s ease;
	text-transform: uppercase;
}

.stg-mozart__module:hover {
	color: rgba(255, 255, 255, 0.8);
	border-color: rgba(140, 170, 255, 0.15);
	background: rgba(255, 255, 255, 0.05);
}

/* ------------------------------------------------
   Responsive — Tablet
   ------------------------------------------------ */

@media (max-width: 1024px) {
	.stg-mozart__panel-glass {
		padding: 32px 36px;
	}
}

/* ------------------------------------------------
   Responsive — Mobile
   ------------------------------------------------ */

@media (max-width: 767px) {
	.stg-mozart__inner {
		padding: 120px 20px 80px;
		gap: 40px;
	}

	.stg-mozart__header {
		gap: 20px;
	}

	.stg-mozart__ctas {
		flex-direction: column;
		width: 100%;
		gap: 12px;
	}

	.stg-mozart__cta {
		text-align: center;
		width: 100%;
		padding: 14px 32px;
	}

	.stg-mozart__stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 0;
	}

	.stg-mozart__stat:nth-child(2)::after {
		display: none;
	}

	.stg-mozart__panel-glass {
		padding: 28px 20px;
	}

	.stg-mozart__module {
		font-size: 11px;
		padding: 7px 14px;
	}
}

/* ------------------------------------------------
   Reduced Motion
   ------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
	.stg-mozart__badge-dot,
	.stg-mozart__panel-glass::before {
		animation: none;
	}

	.stg-mozart__video {
		display: none;
	}
}
