*{margin:0;padding:0;box-sizing:border-box}:root{--bg-primary: #0a0a0a;--bg-secondary: #1a1a1a;--bg-tertiary: #2a2a2a;--text-primary: #ffffff;--text-secondary: #b3b3b3;--text-muted: #666666;--accent: #00ff88;--accent-dim: #00cc6a;--border: #333333;--border-light: #444444;--shadow: rgba(0, 0, 0, .5);--font-mono: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", sans-serif}body{font-family:var(--font-sans);background-color:var(--bg-primary);color:var(--text-primary);line-height:1.6;overflow-x:hidden}.app{min-height:100vh}.container{max-width:1200px;margin:0 auto;padding:0 2rem}.hero{min-height:100vh;display:flex;align-items:center;background:linear-gradient(135deg,var(--bg-primary) 0%,var(--bg-secondary) 100%);position:relative;overflow:hidden}.hero:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 20% 50%,rgba(0,255,136,.05) 0%,transparent 50%),radial-gradient(circle at 80% 20%,rgba(0,255,136,.03) 0%,transparent 50%),radial-gradient(circle at 40% 80%,rgba(0,255,136,.04) 0%,transparent 50%)}.hero-content{position:relative;z-index:1;max-width:800px}.hero-title{font-size:4.5rem;font-weight:900;margin-bottom:1rem;font-family:var(--font-mono);letter-spacing:-.02em}.accent{color:var(--accent);font-size:5rem}.hero-subtitle{font-size:1.5rem;color:var(--text-secondary);margin-bottom:1.5rem;font-weight:600}.hero-description{font-size:1.1rem;color:var(--text-muted);margin-bottom:3rem;max-width:600px}.hero-actions{display:flex;gap:1rem;margin-bottom:4rem}.btn{padding:1rem 2rem;border:none;border-radius:.5rem;font-size:1rem;font-weight:600;cursor:pointer;transition:all .3s ease;font-family:var(--font-sans);text-decoration:none;display:inline-flex;align-items:center;justify-content:center}.btn-primary{background:var(--accent);color:var(--bg-primary)}.btn-primary:hover{background:var(--accent-dim);transform:translateY(-2px);box-shadow:0 8px 25px #00ff884d}.btn-secondary{background:transparent;color:var(--text-primary);border:2px solid var(--border-light)}.btn-secondary:hover{background:var(--bg-secondary);border-color:var(--accent);transform:translateY(-2px)}.hero-stats{display:flex;gap:3rem}.stat{text-align:center}.stat-number{display:block;font-size:2rem;font-weight:800;color:var(--accent);margin-bottom:.5rem}.stat-label{color:var(--text-secondary);font-size:.9rem;font-weight:500}section{padding:6rem 0}.section-title{font-size:3rem;font-weight:800;text-align:center;margin-bottom:4rem;color:var(--text-primary)}.features{background:var(--bg-secondary)}.features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(350px,1fr));gap:2rem}.feature-card{background:var(--bg-tertiary);border:1px solid var(--border);border-radius:1rem;padding:2rem;transition:all .3s ease;position:relative;overflow:hidden}.feature-card:before{content:"";position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,var(--accent) 0%,transparent 100%)}.feature-card:hover{transform:translateY(-5px);border-color:var(--accent);box-shadow:0 20px 40px var(--shadow)}.feature-icon{font-size:2.5rem;margin-bottom:1rem}.feature-card h3{font-size:1.3rem;font-weight:700;margin-bottom:1rem;color:var(--text-primary)}.feature-card p{color:var(--text-secondary);line-height:1.6}.tech-stack{background:var(--bg-primary)}.tech-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem}.tech-item{text-align:center;padding:2rem;border:1px solid var(--border);border-radius:1rem;background:var(--bg-secondary);transition:all .3s ease}.tech-item:hover{border-color:var(--accent);transform:translateY(-3px)}.tech-logo{font-size:3rem;margin-bottom:1rem}.tech-item h3{font-size:1.2rem;font-weight:700;margin-bottom:.5rem;color:var(--text-primary)}.tech-item p{color:var(--text-secondary);font-size:.9rem}.contribute{background:var(--bg-secondary)}.contribute-subtitle{text-align:center;font-size:1.2rem;color:var(--text-secondary);margin-bottom:4rem;max-width:600px;margin-left:auto;margin-right:auto}.contribute-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;margin-bottom:3rem}.contribute-card{background:var(--bg-primary);border:1px solid var(--border);border-radius:1rem;padding:2rem;transition:all .3s ease}.contribute-card:hover{border-color:var(--accent);transform:translateY(-3px);box-shadow:0 15px 30px var(--shadow)}.contribute-card h3{font-size:1.3rem;font-weight:700;margin-bottom:1rem;color:var(--text-primary)}.contribute-card>p{color:var(--text-secondary);margin-bottom:1.5rem}.contribute-card ul{list-style:none}.contribute-card li{color:var(--text-muted);margin-bottom:.5rem;position:relative;padding-left:1rem}.contribute-card li:before{content:"▸";position:absolute;left:0;color:var(--accent);font-weight:700}.contribute-actions{text-align:center;display:flex;justify-content:center;gap:1rem}.getting-started{background:var(--bg-primary)}.setup-steps{max-width:800px;margin:0 auto}.step{display:flex;align-items:flex-start;gap:2rem;margin-bottom:3rem;position:relative}.step:not(:last-child):after{content:"";position:absolute;left:1.5rem;top:4rem;width:2px;height:3rem;background:var(--border)}.step-number{width:3rem;height:3rem;background:var(--accent);color:var(--bg-primary);border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:1.2rem;flex-shrink:0}.step-content{flex:1}.step-content h3{font-size:1.3rem;font-weight:700;margin-bottom:1rem;color:var(--text-primary)}.code-block{background:var(--bg-secondary);border:1px solid var(--border);border-radius:.5rem;padding:1rem 1.5rem;font-family:var(--font-mono);margin-top:1rem}.code-block code{color:var(--accent);font-size:.9rem}.footer{background:var(--bg-tertiary);border-top:1px solid var(--border);padding:4rem 0 2rem}.footer-content{display:grid;grid-template-columns:1fr 2fr;gap:4rem;margin-bottom:2rem}.footer-brand h3{font-family:var(--font-mono);font-size:1.5rem;font-weight:800;margin-bottom:.5rem;color:var(--accent)}.footer-brand p{color:var(--text-secondary)}.footer-links{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}.link-group h4{font-size:1rem;font-weight:700;margin-bottom:1rem;color:var(--text-primary)}.footer-link{display:block;color:var(--text-secondary);text-decoration:none;margin-bottom:.5rem;transition:color .3s ease}.footer-link:hover{color:var(--accent)}.footer-bottom{border-top:1px solid var(--border);padding-top:2rem;text-align:center}.footer-bottom p{color:var(--text-muted);font-size:.9rem}@media (max-width: 768px){.container{padding:0 1rem}.hero-title{font-size:3rem}.accent{font-size:3.5rem}.hero-subtitle{font-size:1.2rem}.hero-actions{flex-direction:column;align-items:stretch}.hero-stats{flex-direction:column;gap:1rem}.section-title{font-size:2.2rem}.features-grid,.contribute-grid{grid-template-columns:1fr}.tech-grid{grid-template-columns:repeat(2,1fr)}.footer-content{grid-template-columns:1fr;gap:2rem}.footer-links{grid-template-columns:1fr}.contribute-actions{flex-direction:column;align-items:stretch}.step{flex-direction:column;align-items:center;text-align:center}.step:not(:last-child):after{display:none}}@media (max-width: 480px){.hero-title{font-size:2.5rem}.accent{font-size:3rem}.tech-grid{grid-template-columns:1fr}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}.hero-content,.feature-card,.tech-item,.contribute-card,.step{animation:fadeInUp .8s ease-out}
