.app{min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative;padding:2rem 1.5rem}.bg-grid{position:fixed;top:0;right:0;bottom:0;left:0;background-image:linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);background-size:60px 60px;pointer-events:none;z-index:0}.bg-glow{position:fixed;top:0;right:0;bottom:0;left:0;background:var(--gradient-glow);pointer-events:none;z-index:0}.bg-orb{position:fixed;border-radius:50%;filter:blur(100px);opacity:.3;pointer-events:none;z-index:0}.bg-orb--blue{width:500px;height:500px;background:var(--accent-blue);top:-150px;right:-100px;animation:float-orb 12s ease-in-out infinite alternate}.bg-orb--purple{width:400px;height:400px;background:var(--accent-purple);bottom:-100px;left:-80px;animation:float-orb 15s ease-in-out infinite alternate-reverse}.bg-orb--cyan{width:300px;height:300px;background:var(--accent-cyan);top:50%;left:50%;transform:translate(-50%,-50%);opacity:.12;animation:float-orb 18s ease-in-out infinite alternate}@keyframes float-orb{0%{transform:translate(0) scale(1)}50%{transform:translate(30px,-40px) scale(1.1)}to{transform:translate(-20px,20px) scale(.95)}}.content{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;text-align:center;max-width:680px;width:100%;animation:fadeInUp 1s ease-out}@keyframes fadeInUp{0%{opacity:0;transform:translateY(40px)}to{opacity:1;transform:translateY(0)}}.logo-container{margin-bottom:2.5rem;animation:fadeInUp .8s ease-out}.logo{width:120px;height:120px;border-radius:28px;object-fit:contain;filter:drop-shadow(0 0 40px rgba(59,130,246,.25));transition:transform .4s ease,filter .4s ease}.logo:hover{transform:scale(1.08) rotate(-2deg);filter:drop-shadow(0 0 60px rgba(139,92,246,.35))}.badge{display:inline-flex;align-items:center;gap:.5rem;padding:.45rem 1.1rem;border-radius:100px;background:#3b82f614;border:1px solid rgba(59,130,246,.2);font-size:.8rem;font-weight:500;color:var(--accent-blue);letter-spacing:.03em;margin-bottom:2rem;animation:fadeInUp 1s ease-out .15s both}.badge__dot{width:7px;height:7px;border-radius:50%;background:var(--accent-blue);animation:pulse-dot 2s ease-in-out infinite}@keyframes pulse-dot{0%,to{opacity:1;box-shadow:0 0 #3b82f680}50%{opacity:.6;box-shadow:0 0 0 6px #3b82f600}}.heading{font-size:clamp(2rem,5vw,3.2rem);font-weight:800;line-height:1.15;margin-bottom:1.25rem;letter-spacing:-.03em;animation:fadeInUp 1s ease-out .3s both}.heading__gradient{background:var(--gradient-main);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.description{font-size:1.05rem;line-height:1.7;color:var(--text-secondary);max-width:520px;margin-bottom:2.5rem;animation:fadeInUp 1s ease-out .45s both}.progress-section{width:100%;max-width:400px;margin-bottom:2.5rem;animation:fadeInUp 1s ease-out .6s both}.progress-label{display:flex;justify-content:space-between;font-size:.78rem;color:var(--text-muted);margin-bottom:.6rem;font-weight:500;text-transform:uppercase;letter-spacing:.08em}.progress-bar{width:100%;height:5px;background:#ffffff0f;border-radius:100px;overflow:hidden}.progress-bar__fill{height:100%;width:68%;background:var(--gradient-main);border-radius:100px;animation:progressGrow 2s ease-out 1s both;position:relative}.progress-bar__fill:after{content:"";position:absolute;right:0;top:-2px;width:12px;height:12px;border-radius:50%;background:#fff;box-shadow:0 0 12px #3b82f699;transform:translate(50%);opacity:0;animation:showDot .3s ease-out 3s both}@keyframes progressGrow{0%{width:0}to{width:68%}}@keyframes showDot{to{opacity:1}}.features{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;width:100%;margin-bottom:2.5rem;animation:fadeInUp 1s ease-out .75s both}.feature-card{background:var(--bg-card);border:1px solid var(--border-color);border-radius:16px;padding:1.5rem 1rem;transition:all .35s ease;cursor:default}.feature-card:hover{background:#ffffff0d;border-color:#ffffff1f;transform:translateY(-4px);box-shadow:0 12px 40px #0000004d}.feature-card__icon{font-size:1.8rem;margin-bottom:.75rem;display:block}.feature-card__title{font-size:.82rem;font-weight:600;color:var(--text-primary);margin-bottom:.3rem}.feature-card__desc{font-size:.72rem;color:var(--text-muted);line-height:1.5}.contact{display:flex;align-items:center;gap:.75rem;padding:.85rem 1.5rem;border-radius:14px;background:var(--bg-card);border:1px solid var(--border-color);font-size:.88rem;color:var(--text-secondary);transition:all .3s ease;animation:fadeInUp 1s ease-out .9s both;text-decoration:none}.contact:hover{background:#ffffff0d;border-color:#3b82f64d;color:var(--text-primary);transform:translateY(-2px)}.contact__icon{font-size:1.1rem}.contact__email{font-weight:500;color:var(--accent-blue)}.footer{position:relative;z-index:1;margin-top:auto;padding:1.5rem;text-align:center;font-size:.75rem;color:var(--text-muted);letter-spacing:.02em}.particles{position:fixed;top:0;right:0;bottom:0;left:0;pointer-events:none;z-index:0;overflow:hidden}.particle{position:absolute;width:2px;height:2px;background:#ffffff26;border-radius:50%;animation:drift linear infinite}@keyframes drift{0%{transform:translateY(100vh) translate(0);opacity:0}10%{opacity:1}90%{opacity:1}to{transform:translateY(-10vh) translate(50px);opacity:0}}@media (max-width: 640px){.features{grid-template-columns:1fr;gap:.75rem}.feature-card{display:flex;align-items:center;gap:1rem;padding:1.2rem 1.25rem;text-align:left}.feature-card__icon{margin-bottom:0;font-size:1.5rem;flex-shrink:0}.feature-card__body{display:flex;flex-direction:column}.logo{width:90px;height:90px;border-radius:22px}.content{max-width:100%}}:root{--bg-primary: #0a0a0f;--bg-secondary: #12121a;--bg-card: rgba(255, 255, 255, .03);--border-color: rgba(255, 255, 255, .06);--text-primary: #f0f0f5;--text-secondary: rgba(240, 240, 245, .6);--text-muted: rgba(240, 240, 245, .35);--accent-blue: #3b82f6;--accent-purple: #8b5cf6;--accent-cyan: #06b6d4;--gradient-main: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);--gradient-glow: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, .15) 0%, transparent 60%)}*{margin:0;padding:0;box-sizing:border-box}html{font-size:16px;scroll-behavior:smooth}body{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;background-color:var(--bg-primary);color:var(--text-primary);min-height:100vh;overflow-x:hidden;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#root{min-height:100vh;display:flex;flex-direction:column}
