@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Space+Mono:wght@400;700&display=swap");*{margin:0;padding:0;box-sizing:border-box}:root{--primary:#5b4cf5;--primary-light:#a8a0ff;--bg:#0a0a0a;--text:#f5f5f5;--text-muted:#888}body{font-family:DM Sans,-apple-system,BlinkMacSystemFont,sans-serif;background:var(--bg);color:var(--text);overflow-x:hidden;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.container{min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative;padding:2rem}.content{text-align:center;position:relative;z-index:2;opacity:0;transform:translateY(30px);transition:opacity 1s cubic-bezier(.16,1,.3,1),transform 1s cubic-bezier(.16,1,.3,1)}.content.visible{opacity:1;transform:translateY(0)}.logo-container{display:flex;align-items:center;justify-content:center;gap:1.5rem;margin-bottom:4rem}.logo-icon{width:80px;height:80px;color:var(--primary);filter:drop-shadow(0 0 20px rgba(91,76,245,.3));animation:float 6s ease-in-out infinite}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-10px)}}.logo-text{font-size:clamp(3rem,8vw,5rem);font-weight:700;font-family:Space Mono,monospace;letter-spacing:-.03em;background:linear-gradient(135deg,var(--primary) 0,var(--primary-light) 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.message{max-width:600px;margin:0 auto}.tagline{font-size:clamp(1.5rem,4vw,2.5rem);font-weight:500;margin-bottom:1.5rem;line-height:1.2;letter-spacing:-.02em}.description{font-size:1.125rem;color:var(--text-muted);line-height:1.7;font-weight:400}.particles{position:fixed;top:0;left:0;width:100%;height:100%;pointer-events:none;z-index:1;overflow:hidden}.particle{position:absolute;width:4px;height:4px;background:var(--primary);border-radius:50%;opacity:0;animation:particle-float linear infinite}@keyframes particle-float{0%{opacity:0;transform:translateY(0) scale(0)}10%{opacity:.6;transform:translateY(-20px) scale(1)}90%{opacity:.6;transform:translateY(-80vh) scale(1)}to{opacity:0;transform:translateY(-100vh) scale(0)}}.footer{position:fixed;bottom:2rem;left:0;right:0;text-align:center;z-index:2}.footer p{font-size:.875rem;color:var(--text-muted);font-weight:400}@media (max-width:768px){.logo-container{flex-direction:column;gap:1rem;margin-bottom:3rem}.logo-icon{width:60px;height:60px}.container{padding:1.5rem}}