/* Hero Section */
			.hero {
				height: 100vh;
				display: flex;
				align-items: center;
				justify-content: flex-start;
				position: relative;
				background: none;
				padding-left: 0;
			}

			.hero-content {
				max-width: 1400px;
				margin: 0 auto;
				padding: 0 2rem;
				width: 100%;
				z-index: 10;
			}

			.hero h1 {
				font-size: 3.5rem;
				font-weight: 650;
				margin-bottom: 1.5rem;
				color: var(--color-primary);
				text-shadow: rgba(0, 0, 0, 0.5) 0 0 2rem;
				line-height: 1.2;
				letter-spacing: -1px;
				z-index: 10;
			}

			.hero-subtitle {
				font-size: 1.3rem;
				color: var(--color-primary);
				text-shadow: var(--shadow-lg) 2px 2px 5px;
				margin-bottom: 2.5rem;
				font-weight: 300;
				line-height: 1.4;
				max-width: 600px;
				z-index: 10;
			}

			.hero-tagline {
				font-size: 1rem;
				color: var(--color-primary);
				text-shadow: var(--shadow-lg) 2px 2px 5px;
				margin-bottom: 3rem;
				font-weight: 400;
				max-width: 500px;
				z-index: 10;
			}

			.cta-button {
				display: inline-block;
				padding: 0.8rem 2rem;
				background: var(--btn-bg);
				border: 1px solid var(--btn-border);
				border-radius: 8px;
				color: var(--color-primary);
				text-decoration: none;
				font-weight: 400;
				font-size: 0.95rem;
				letter-spacing: 0.5px;
				transition: all 0.3s ease;
				text-transform: uppercase;
				backdrop-filter: var(--backdrop-blur);
				-webkit-backdrop-filter: var(--backdrop-blur);
				z-index: 10;
				position: relative;
				overflow: hidden;
			}

			.cta-button:hover {
				background: var(--btn-bg-hover);
				border-color: var(--btn-border-hover);
				transform: scale(1.02);
			}

			.cta-button .mouse-glow {
				position: absolute;
				width: 200px;
				height: 200px;
				background: radial-gradient(
					circle,
					rgba(255, 255, 255, 0.2) 0%,
					rgba(255, 255, 255, 0.08) 40%,
					transparent 70%
				);
				border-radius: 50%;
				pointer-events: none;
				transform: translate(-50%, -50%);
				opacity: 0;
				transition: opacity 0.3s ease-out;
				z-index: 1;
				filter: blur(35px);
			}

			.hero-video {
				position: fixed;
				top: 0px;
				left: 0px;
				width: 100%;
				height: 100vh;
				z-index: -1;
				opacity: 100%;
				object-fit: cover;
				/* Optimize for seamless looping */
				will-change: auto;
				backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
			}

			.hero::before {
				content: '';
				position: absolute;
				inset: 0;
				background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
				z-index: 1;
			}