:root { --neon-cyan: #00f9ff; --quantum-purple: #b026ff; --drone-green: #2dff00; --profit-gold: #ffd700; --cyber-pink: #ff00ff; --void-black: #0a0a0f; --dark-nexus: #050510; --matrix-green: #00ff41; --arcane-blue: #00f3ff; --red-alert: #ff4141; --hologram-border: rgba(176, 38, 255, 0.4); --panel-bg: rgba(10, 15, 25, 0.95); --grid-alpha: rgba(176, 38, 255, 0.1); --deep-space: #020218; --nebula-purple: rgba(157, 78, 221, 0.15); } html { scroll-behavior: smooth; overflow-x: hidden; } body { background-color: var(--dark-nexus); color: white; font-family: 'Space Grotesk', 'Space Mono', monospace; overflow-x: hidden; position: relative; background: radial-gradient(ellipse at top, var(--deep-space) 0%, var(--void-black) 70%); } .quantum-canvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -100; pointer-events: none; background: radial-gradient(circle at 10% 90%, rgba(176, 38, 255, 0.15) 0%, transparent 40%), radial-gradient(circle at 90% 10%, rgba(0, 249, 255, 0.1) 0%, transparent 40%), linear-gradient(180deg, var(--void-black) 0%, var(--deep-space) 100%); overflow: hidden; } .quantum-grid-3d { position: absolute; width: 300%; height: 300%; background-image: linear-gradient(90deg, var(--grid-alpha) 1px, transparent 1px), linear-gradient(var(--grid-alpha) 1px, transparent 1px); background-size: 80px 80px; animation: grid-scroll-3d 120s linear infinite; transform: perspective(1200px) rotateX(70deg) translateY(-100px); opacity: 0.3; } @keyframes grid-scroll-3d { 0% { transform: perspective(1200px) rotateX(70deg) translateY(-100px) translateZ(0); } 100% { transform: perspective(1200px) rotateX(70deg) translateY(-100px) translateZ(200px); } } .quantum-particles { position: absolute; width: 100%; height: 100%; } .quantum-particle { position: absolute; width: 2px; height: 2px; background: var(--neon-cyan); border-radius: 50%; box-shadow: 0 0 8px var(--neon-cyan); animation: quantum-orbit 20s infinite linear; opacity: 0.8; } @keyframes quantum-orbit { 0% { transform: rotate(0deg) translateX(calc(20vw * var(--orbit-size, 1))) rotate(0deg) scale(var(--particle-scale, 1)); } 100% { transform: rotate(360deg) translateX(calc(20vw * var(--orbit-size, 1))) rotate(-360deg) scale(var(--particle-scale, 1)); } } .data-streams { position: absolute; width: 100%; height: 100%; } .data-stream { position: absolute; width: 1px; height: 200px; background: linear-gradient(to bottom, transparent, var(--neon-cyan), var(--quantum-purple), transparent); animation: data-stream-fall 8s linear infinite; filter: blur(0.5px); opacity: 0.7; } @keyframes data-stream-fall { 0% { transform: translateY(-200px) translateX(var(--stream-offset, 0)); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(100vh) translateX(calc(var(--stream-offset, 0) + 100px)); opacity: 0; } } .hero-section { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 120px; overflow: hidden; background: radial-gradient(circle at 50% 0%, rgba(176, 38, 255, 0.05) 0%, transparent 50%); } .hero-content { position: relative; z-index: 10; } .quantum-badge { display: inline-flex; align-items: center; padding: 12px 24px; background: rgba(0, 249, 255, 0.1); border: 1px solid rgba(0, 249, 255, 0.3); border-radius: 30px; font-size: 0.9rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 30px; backdrop-filter: blur(10px); animation: badge-pulse 3s infinite; } @keyframes badge-pulse { 0%, 100% { box-shadow: 0 0 20px rgba(0, 249, 255, 0.1); } 50% { box-shadow: 0 0 30px rgba(0, 249, 255, 0.3); } } .hero-title { font-size: clamp(3.5rem, 8vw, 6rem); font-weight: 900; line-height: 1; margin-bottom: 30px; letter-spacing: -1.5px; background: linear-gradient(135deg, var(--neon-cyan), var(--quantum-purple), var(--cyber-pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; position: relative; } .hero-title::after { content: ''; position: absolute; bottom: -15px; left: 0; width: 100px; height: 4px; background: linear-gradient(90deg, var(--neon-cyan), transparent); border-radius: 2px; } .hero-subtitle { font-size: 1.3rem; line-height: 1.6; color: rgba(255, 255, 255, 0.8); margin-bottom: 40px; max-width: 600px; font-weight: 300; } .quantum-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 40px 0; } .stat-card { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 25px; backdrop-filter: blur(10px); transition: all 0.3s ease; position: relative; overflow: hidden; } .stat-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.02), transparent); transform: translateX(-100%); transition: transform 0.6s ease; } .stat-card:hover::before { transform: translateX(100%); } .stat-card:hover { border-color: var(--neon-cyan); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 249, 255, 0.2); } .stat-value { font-size: 2.5rem; font-weight: 800; background: linear-gradient(45deg, var(--neon-cyan), var(--quantum-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 5px; } .stat-label { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); text-transform: uppercase; letter-spacing: 1px; } .quantum-terminal { background: rgba(0, 0, 0, 0.7); border: 2px solid var(--matrix-green); border-radius: 20px; padding: 30px; font-family: 'Fira Code', monospace; position: relative; overflow: hidden; backdrop-filter: blur(15px); margin: 40px 0; } .terminal-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 15px; margin-bottom: 20px; border-bottom: 1px solid rgba(0, 255, 65, 0.3); } .terminal-title { color: var(--matrix-green); font-weight: 600; font-size: 1.1rem; } .terminal-status { display: flex; align-items: center; gap: 8px; color: #00ff88; font-size: 0.9rem; } .status-indicator { width: 8px; height: 8px; background: #00ff88; border-radius: 50%; animation: status-pulse 1.5s infinite; } @keyframes status-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } } .terminal-line { color: rgba(0, 255, 65, 0.9); margin-bottom: 10px; font-size: 0.95rem; line-height: 1.5; display: flex; align-items: center; gap: 10px; } .line-prefix { color: var(--neon-cyan); font-weight: 600; } .quantum-button-group { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 40px; } .quantum-btn { position: relative; padding: 18px 40px; background: linear-gradient(135deg, rgba(0, 249, 255, 0.1), rgba(176, 38, 255, 0.1)); border: 1px solid rgba(0, 249, 255, 0.3); border-radius: 15px; color: white; font-weight: 600; font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); overflow: hidden; backdrop-filter: blur(10px); display: inline-flex; align-items: center; gap: 10px; text-decoration: none; } .quantum-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); transition: left 0.7s ease; } .quantum-btn:hover::before { left: 100%; } .quantum-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 249, 255, 0.3); border-color: var(--neon-cyan); background: linear-gradient(135deg, rgba(0, 249, 255, 0.2), rgba(176, 38, 255, 0.2)); color: white; text-decoration: none; } .quantum-btn.primary { background: linear-gradient(135deg, var(--neon-cyan), var(--quantum-purple)); border: none; color: black; font-weight: 700; } .section-wrapper { padding: 100px 0; position: relative; } .section-wrapper::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 50% 50%, rgba(176, 38, 255, 0.03) 0%, transparent 50%); pointer-events: none; } .section-header { text-align: center; margin-bottom: 60px; position: relative; } .section-title { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 20px; background: linear-gradient(135deg, var(--neon-cyan), var(--quantum-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; position: relative; display: inline-block; } .section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: linear-gradient(90deg, var(--neon-cyan), var(--quantum-purple)); border-radius: 2px; } .section-subtitle { font-size: 1.1rem; color: rgba(255, 255, 255, 0.7); max-width: 700px; margin: 0 auto; line-height: 1.6; } .drones-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; } .drone-card { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 25px; padding: 30px; position: relative; overflow: hidden; transition: all 0.4s ease; backdrop-filter: blur(10px); } .drone-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient( 45deg, transparent, rgba(0, 249, 255, 0.05), transparent ); transform: rotate(45deg); transition: transform 0.6s ease; } .drone-card:hover::before { transform: rotate(45deg) translate(50%, 50%); } .drone-card:hover { transform: translateY(-10px); border-color: var(--neon-cyan); box-shadow: 0 20px 50px rgba(0, 249, 255, 0.15); } .drone-icon { font-size: 2.5rem; margin-bottom: 20px; color: var(--neon-cyan); } .drone-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; color: white; } .drone-role { display: inline-block; padding: 5px 15px; background: rgba(0, 249, 255, 0.1); border-radius: 20px; font-size: 0.8rem; color: var(--neon-cyan); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; } .drone-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin: 25px 0; } .spec-item { text-align: center; padding: 15px; background: rgba(255, 255, 255, 0.03); border-radius: 15px; transition: all 0.3s ease; } .spec-item:hover { background: rgba(0, 249, 255, 0.1); transform: translateY(-3px); } .spec-label { font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; } .spec-value { font-size: 1.2rem; font-weight: 600; color: white; } .drone-status { display: flex; align-items: center; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); } .status-text { font-size: 0.9rem; color: rgba(0, 255, 65, 0.9); } .packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 40px; } .package-card { background: rgba(255, 255, 255, 0.05); border: 2px solid rgba(176, 38, 255, 0.3); border-radius: 30px; padding: 40px 30px; position: relative; overflow: hidden; transition: all 0.4s ease; backdrop-filter: blur(10px); } .package-card:hover { border-color: var(--neon-cyan); transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0, 249, 255, 0.2); } .package-badge { position: absolute; top: 20px; right: 20px; padding: 8px 20px; background: linear-gradient(135deg, var(--quantum-purple), var(--cyber-pink)); border-radius: 20px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; } .package-icon { font-size: 3rem; margin-bottom: 20px; color: var(--neon-cyan); } .package-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 15px; color: white; } .package-description { color: rgba(255, 255, 255, 0.7); margin-bottom: 30px; line-height: 1.6; } .yield-display { background: rgba(0, 0, 0, 0.3); border-radius: 20px; padding: 30px; text-align: center; margin: 30px 0; border: 1px solid rgba(176, 38, 255, 0.2); } .yield-value { font-size: 3.5rem; font-weight: 800; background: linear-gradient(135deg, var(--quantum-purple), var(--neon-cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 10px; } .yield-label { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); text-transform: uppercase; letter-spacing: 1px; } .package-details { margin: 30px 0; } .detail-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.8); } .detail-item:last-child { border-bottom: none; } .detail-item strong { color: var(--neon-cyan); font-weight: 600; } .calculator-wrapper { background: rgba(0, 0, 0, 0.5); border: 2px solid var(--profit-gold); border-radius: 30px; padding: 50px; position: relative; overflow: hidden; backdrop-filter: blur(20px); } .calculator-header { text-align: center; margin-bottom: 40px; } .calculator-title { font-size: 2.5rem; font-weight: 700; color: var(--profit-gold); margin-bottom: 15px; } .calculator-controls { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 40px; } .control-group { margin-bottom: 25px; } .control-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; color: white; font-size: 1.1rem; font-weight: 600; } .control-value { font-size: 1.5rem; color: var(--neon-cyan); font-weight: 700; } .result-display { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 40px; } .result-value { background: linear-gradient(135deg, var(--profit-gold), var(--neon-cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; } .feature-card { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 30px; transition: all 0.3s ease; backdrop-filter: blur(10px); } .feature-card:hover { border-color: var(--neon-cyan); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 249, 255, 0.15); } .feature-icon { font-size: 2.5rem; margin-bottom: 20px; color: var(--neon-cyan); } .feature-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 15px; color: white; } .feature-description { color: rgba(255, 255, 255, 0.7); line-height: 1.6; } .live-feed-container { background: rgba(0, 0, 0, 0.5); border: 2px solid rgba(0, 255, 65, 0.3); border-radius: 25px; padding: 30px; height: 500px; overflow: hidden; position: relative; backdrop-filter: blur(15px); } .feed-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid rgba(0, 255, 65, 0.3); } .feed-title { color: var(--matrix-green); font-size: 1.3rem; font-weight: 600; } .feed-messages { height: calc(100% - 60px); overflow-y: auto; padding-right: 10px; } .feed-message { color: rgba(0, 255, 65, 0.9); padding: 15px; margin-bottom: 10px; background: rgba(0, 255, 65, 0.05); border-left: 3px solid var(--profit-gold); border-radius: 0 10px 10px 0; animation: message-appear 0.3s ease; } @keyframes message-appear { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } } .cta-section { background: linear-gradient( 135deg, rgba(0, 243, 255, 0.1) 0%, rgba(157, 78, 221, 0.1) 100% ); border-top: 1px solid rgba(0, 243, 255, 0.2); border-bottom: 1px solid rgba(0, 243, 255, 0.2); padding: 100px 0; position: relative; overflow: hidden; } .cta-content { text-align: center; position: relative; z-index: 10; } .cta-title { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 30px; background: linear-gradient(135deg, var(--neon-cyan), var(--quantum-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .cta-stats { display: flex; justify-content: center; gap: 40px; margin: 40px 0; flex-wrap: wrap; } .cta-stat { text-align: center; } .cta-stat-value { font-size: 2.5rem; font-weight: 800; color: var(--neon-cyan); margin-bottom: 10px; text-shadow: 0 0 20px rgba(0, 249, 255, 0.5); } .cta-stat-label { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; } .quantum-footer { background: rgba(10, 15, 25, 0.9); border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 40px 0; text-align: center; backdrop-filter: blur(20px); } .footer-text { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; letter-spacing: 0.5px; } .float-animation { animation: float 6s ease-in-out infinite; } @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } } .glow-animation { animation: glow 2s ease-in-out infinite alternate; } @keyframes glow { from { box-shadow: 0 0 20px rgba(0, 249, 255, 0.3); } to { box-shadow: 0 0 40px rgba(0, 249, 255, 0.6); } } .loading-pulse { display: inline-block; width: 10px; height: 10px; background: var(--neon-cyan); border-radius: 50%; animation: loading-pulse 1.5s infinite; margin: 0 5px; } @keyframes loading-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.2); opacity: 0.7; } } .gradient-text { background: linear-gradient(135deg, var(--neon-cyan), var(--quantum-purple), var(--cyber-pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } @media (max-width: 1200px) { .drones-grid, .packages-grid, .features-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); } .quantum-stats { grid-template-columns: repeat(2, 1fr); } .calculator-controls { grid-template-columns: 1fr; } } @media (max-width: 992px) { .hero-section { padding-top: 100px; text-align: center; } .hero-title::after { left: 50%; transform: translateX(-50%); } .quantum-button-group { justify-content: center; } .section-wrapper { padding: 80px 0; } .calculator-wrapper { padding: 30px; } } @media (max-width: 768px) { .hero-title { font-size: clamp(2.5rem, 6vw, 4rem); } .section-title { font-size: clamp(2rem, 4vw, 2.8rem); } .quantum-stats { grid-template-columns: 1fr; gap: 15px; } .stat-card { padding: 20px; } .stat-value { font-size: 2rem; } .drones-grid, .packages-grid { grid-template-columns: 1fr; } .quantum-terminal { padding: 20px; } .cta-stats { gap: 30px; } .cta-stat-value { font-size: 2rem; } .yield-value { font-size: 2.8rem; } } @media (max-width: 576px) { .hero-title { font-size: 2.5rem; } .quantum-btn { padding: 15px 30px; font-size: 0.9rem; } .section-wrapper { padding: 60px 0; } .drone-card, .package-card { padding: 20px; } .calculator-wrapper { padding: 20px; } .calculator-title { font-size: 2rem; } .live-feed-container { padding: 20px; height: 400px; } .cta-title { font-size: 2rem; } } @media (max-width: 400px) { .hero-title { font-size: 2rem; } .quantum-badge { padding: 8px 16px; font-size: 0.8rem; } .drone-specs { grid-template-columns: 1fr; } .quantum-button-group { flex-direction: column; } .quantum-btn { width: 100%; justify-content: center; } } ::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.3); } ::-webkit-scrollbar-thumb { background: linear-gradient(135deg, var(--neon-cyan), var(--quantum-purple)); border-radius: 5px; } ::-webkit-scrollbar-thumb:hover { background: linear-gradient(135deg, var(--quantum-purple), var(--cyber-pink)); }