/* Hero Section Styles */
.hero {position: relative; height: 100vh; height: 100dvh; display: flex; align-items: center; justify-content: center; text-align: center; background: #1a1f36; overflow: hidden;}
.hero-video {position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; opacity: 1;}
.hero-overlay {position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, var(--video-overlay-opacity)); z-index: 2;}
.hero-container {color: white; padding: 2rem; z-index: 3;}
.hero-logo-container {margin: 0 auto 3rem; display: flex; justify-content: center;}
.hero-logo {height: 80px; width: auto; filter: brightness(0) invert(1); opacity: 0.9;}
.typewriter-container {height: 60px; display: flex; align-items: center; justify-content: center;}
.typewriter {font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 300; border-right: 3px solid white; padding-right: 5px; animation: blink 1s infinite;}
.hero-description {font-size: clamp(1rem, 2.5vw, 1.2rem); font-weight: 300; opacity: 0.8; max-width: 622px; margin: 0.5rem auto; line-height: 1.6;}
.hero-cta {margin-top: 2.5rem;}
.cta-button {display: inline-block; padding: 1rem 2rem; border: 2px solid white; color: white; text-decoration: none; font-weight: 500; font-size: 1.1rem; transition: all 0.3s ease; background: transparent;}
.cta-button:hover {background-color: white; color: #1a1f36; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);}

/* Scroll Indicator */
.scroll-indicator {position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); opacity: 0.6; z-index: 3; animation: bounce 2s infinite;}
.scroll-arrow {display: block; width: 24px; height: 24px; border: 2px solid white; border-top: none; border-left: none; transform: rotate(45deg); text-decoration: none;}

/* Animations */
@keyframes blink {0%, 50% {border-color: white;} 51%, 100% {border-color: transparent;}}
@keyframes bounce {0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);} 40% {transform: translateX(-50%) translateY(-10px);} 60% {transform: translateX(-50%) translateY(-5px);}}