*{margin:0;padding:0;box-sizing:border-box}:root{--primary-color: #00d4ff;--secondary-color: #ff6b35;--accent-color: #7c3aed;--dark-bg: #0a0a0f;--darker-bg: #050508;--light-text: #ffffff;--gray-text: #a0a0a0;--card-bg: rgba(255, 255, 255, .05);--border-color: rgba(255, 255, 255, .1);--gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);--gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #f093fb 100%)}body{font-family:Inter,sans-serif;background:var(--dark-bg);color:var(--light-text);line-height:1.6;overflow-x:hidden}.container{min-height:100vh}.hero{position:relative;height:100vh;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden}.hero-background{position:absolute;top:0;left:0;width:100%;height:100%;background:radial-gradient(circle at 20% 80%,rgba(0,212,255,.3) 0%,transparent 50%),radial-gradient(circle at 80% 20%,rgba(124,58,237,.3) 0%,transparent 50%),radial-gradient(circle at 40% 40%,rgba(255,107,53,.2) 0%,transparent 50%);animation:backgroundShift 20s ease-in-out infinite}@keyframes backgroundShift{0%,to{transform:scale(1) rotate(0)}50%{transform:scale(1.1) rotate(2deg)}}.hero-content{position:relative;z-index:2;max-width:1200px;padding:0 2rem}.hero-title{font-family:Orbitron,monospace;font-size:clamp(3rem,8vw,8rem);font-weight:900;line-height:.9;margin-bottom:1rem;text-transform:uppercase;letter-spacing:-.02em}.title-line{display:block;position:relative}.gradient-text{background:var(--gradient-primary);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;animation:gradientShift 3s ease-in-out infinite}@keyframes gradientShift{0%,to{filter:hue-rotate(0deg)}50%{filter:hue-rotate(30deg)}}.hero-subtitle{font-size:clamp(1.2rem,3vw,2rem);font-weight:300;color:var(--gray-text);margin-bottom:3rem;max-width:800px;margin-left:auto;margin-right:auto}.hero-cta{display:flex;gap:1.5rem;justify-content:center;flex-wrap:wrap}.cta-button{padding:1rem 2.5rem;border:none;border-radius:50px;font-size:1.1rem;font-weight:600;cursor:pointer;transition:all .3s ease;text-transform:uppercase;letter-spacing:.5px;position:relative;overflow:hidden;text-decoration:none;display:inline-block}.cta-button.primary{background:var(--gradient-primary);color:#fff}.cta-button.secondary{background:transparent;color:var(--light-text);border:2px solid var(--primary-color)}.cta-button:hover{transform:translateY(-2px);box-shadow:0 10px 30px #00d4ff4d}.cta-button.large{padding:1.25rem 3rem;font-size:1.2rem}.hero-scroll{position:absolute;bottom:2rem;left:50%;transform:translate(-50%)}.scroll-indicator{width:2px;height:60px;background:var(--gradient-primary);border-radius:2px;animation:scrollPulse 2s ease-in-out infinite}@keyframes scrollPulse{0%,to{opacity:.3;transform:scaleY(1)}50%{opacity:1;transform:scaleY(1.2)}}.gallery{padding:8rem 2rem;background:var(--darker-bg)}.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(400px,1fr));gap:2rem;max-width:1400px;margin:0 auto}.gallery-item{position:relative;border-radius:20px;overflow:hidden;aspect-ratio:16/10;cursor:pointer;transition:all .4s ease}.gallery-item:hover{transform:translateY(-10px);box-shadow:0 20px 60px #0006}.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}.gallery-item:hover img{transform:scale(1.1)}.gallery-overlay{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(transparent,#000c);padding:2rem;transform:translateY(100%);transition:transform .4s ease}.gallery-item:hover .gallery-overlay{transform:translateY(0)}.gallery-overlay h3{font-size:1.5rem;font-weight:700;margin-bottom:.5rem;color:var(--primary-color)}.gallery-overlay p{color:var(--gray-text);font-size:1rem}.content{padding:8rem 2rem;background:var(--dark-bg)}.content-wrapper{max-width:1200px;margin:0 auto}.intro{text-align:center;margin-bottom:6rem}.section-title{font-family:Orbitron,monospace;font-size:clamp(2rem,5vw,3.5rem);font-weight:700;margin-bottom:2rem;background:var(--gradient-primary);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.intro-text{font-size:1.3rem;color:var(--gray-text);max-width:900px;margin:0 auto;line-height:1.8}.features{display:grid;grid-template-columns:repeat(auto-fit,minmax(350px,1fr));gap:3rem;margin-bottom:6rem}.feature-card{background:var(--card-bg);border:1px solid var(--border-color);border-radius:20px;padding:3rem;transition:all .4s ease;position:relative;overflow:hidden}.feature-card:before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:var(--gradient-primary);transform:scaleX(0);transition:transform .4s ease}.feature-card:hover:before{transform:scaleX(1)}.feature-card:hover{transform:translateY(-5px);background:#ffffff14;border-color:var(--primary-color)}.feature-icon{font-size:3rem;margin-bottom:1.5rem;display:block}.feature-card h3{font-size:1.5rem;font-weight:700;margin-bottom:1rem;color:var(--light-text)}.feature-card p{color:var(--gray-text);margin-bottom:2rem;line-height:1.7}.feature-list{list-style:none}.feature-list li{color:var(--gray-text);margin-bottom:.8rem;padding-left:1.5rem;position:relative}.feature-list li:before{content:"→";position:absolute;left:0;color:var(--primary-color);font-weight:700}.cta-section{text-align:center;padding:4rem;background:var(--card-bg);border-radius:30px;border:1px solid var(--border-color);position:relative;overflow:hidden}.cta-section:before{content:"";position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:conic-gradient(from 0deg,transparent,var(--primary-color),transparent);animation:rotate 20s linear infinite;opacity:.1}@keyframes rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.cta-section h2{font-family:Orbitron,monospace;font-size:2.5rem;margin-bottom:1rem;position:relative;z-index:2}.cta-section p{font-size:1.2rem;color:var(--gray-text);margin-bottom:3rem;position:relative;z-index:2}.cta-buttons{display:flex;gap:2rem;justify-content:center;flex-wrap:wrap;position:relative;z-index:2}.footer{background:var(--darker-bg);padding:4rem 2rem 2rem;border-top:1px solid var(--border-color)}.footer-content{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:3rem;text-align:center}.footer-brand h3{font-family:Orbitron,monospace;font-size:1.5rem;margin-bottom:1rem;color:var(--primary-color)}.footer-brand p{color:var(--gray-text)}.footer-contact h4{font-size:1.3rem;margin-bottom:1rem;color:var(--light-text)}.footer-contact p{color:var(--gray-text);margin-bottom:2rem}.contact-button{background:var(--gradient-secondary);color:#fff;border:none;padding:1rem 2rem;border-radius:50px;font-weight:600;cursor:pointer;transition:all .3s ease;text-decoration:none;display:inline-block}.contact-button:hover{transform:translateY(-2px);box-shadow:0 10px 30px #ff6b354d}.copyright-footer{background:var(--darker-bg);padding:1.5rem 2rem;border-top:1px solid var(--border-color);text-align:center}.copyright-footer p{color:var(--gray-text);font-size:.9rem;max-width:1200px;margin:0 auto;line-height:1.5}.copyright-footer a{color:var(--primary-color);text-decoration:none;transition:color .3s ease}.copyright-footer a:hover{color:var(--light-text)}@media (max-width: 768px){.hero-cta{flex-direction:column;align-items:center}.cta-button{width:100%;max-width:300px}.gallery-grid{grid-template-columns:1fr;gap:1.5rem}.features{grid-template-columns:1fr;gap:2rem}.feature-card{padding:2rem}.cta-buttons{flex-direction:column;align-items:center}.cta-section{padding:2rem}.copyright-footer p{font-size:.8rem}}
