@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;background:#0a0a0f;color:#e0e0e0;overflow-x:hidden}
nav{position:fixed;top:0;width:100%;z-index:100;padding:1rem 2rem;display:flex;justify-content:space-between;align-items:center;background:rgba(10,10,15,0.9);backdrop-filter:blur(20px);border-bottom:1px solid #1e1e2e}
.logo{font-size:1.4rem;font-weight:700;background:linear-gradient(135deg,#6C3CE1,#3B82F6);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.nav-links{display:flex;gap:2rem;list-style:none}
.nav-links a{color:#888;text-decoration:none;font-size:.9rem;font-weight:500;transition:color .3s}
.nav-links a:hover{color:#fff}
.hero{min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:6rem 2rem 4rem;position:relative}
.hero::before{content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);width:600px;height:600px;background:radial-gradient(circle,rgba(108,60,225,.15) 0%,transparent 70%);pointer-events:none}
.badge{display:inline-block;padding:.4rem 1rem;border-radius:50px;border:1px solid #1e1e2e;font-size:.8rem;color:#888;margin-bottom:1.5rem;background:#12121a}
.hero h1{font-size:3.5rem;font-weight:800;line-height:1.1;margin-bottom:1.5rem;max-width:700px}
.hero h1 span{background:linear-gradient(135deg,#6C3CE1,#3B82F6);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.hero p{font-size:1.15rem;color:#888;max-width:550px;line-height:1.7;margin-bottom:2rem}
.cta-group{display:flex;gap:1rem;flex-wrap:wrap;justify-content:center}
.btn-primary{padding:.85rem 2rem;border-radius:12px;background:linear-gradient(135deg,#6C3CE1,#3B82F6);color:#fff;font-weight:600;text-decoration:none;font-size:.95rem;transition:transform .2s,box-shadow .3s;border:none;cursor:pointer}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 30px rgba(108,60,225,.3)}
.btn-secondary{padding:.85rem 2rem;border-radius:12px;background:#12121a;color:#e0e0e0;font-weight:600;text-decoration:none;font-size:.95rem;border:1px solid #1e1e2e;transition:border-color .3s}
.btn-secondary:hover{border-color:#6C3CE1}
.platforms-bar{padding:3rem 2rem;text-align:center;border-top:1px solid #1e1e2e;border-bottom:1px solid #1e1e2e}
.platforms-bar p{font-size:.8rem;color:#666;text-transform:uppercase;letter-spacing:2px;margin-bottom:1.5rem}
.platform-logos{display:flex;justify-content:center;gap:3rem;flex-wrap:wrap;align-items:center}
.platform-logos span{font-size:1.1rem;color:#555;font-weight:600;letter-spacing:1px}
section{padding:5rem 2rem;max-width:1100px;margin:0 auto}
.section-label{font-size:.78rem;text-transform:uppercase;letter-spacing:2px;color:#6C3CE1;font-weight:600;margin-bottom:.5rem}
.section-title{font-size:2.2rem;font-weight:700;margin-bottom:1rem}
.section-desc{color:#888;font-size:1.05rem;line-height:1.7;max-width:600px;margin-bottom:3rem}
.features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem}
.feature-card{background:#12121a;border:1px solid #1e1e2e;border-radius:16px;padding:2rem;transition:border-color .3s,transform .3s}
.feature-card:hover{border-color:#6C3CE1;transform:translateY(-4px)}
.feature-icon{width:48px;height:48px;border-radius:12px;background:rgba(108,60,225,.1);display:flex;align-items:center;justify-content:center;font-size:1.4rem;margin-bottom:1.2rem}
.feature-card h3{font-size:1.1rem;font-weight:600;margin-bottom:.6rem}
.feature-card p{color:#888;font-size:.9rem;line-height:1.6}
.steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:2rem;counter-reset:step}
.step{text-align:center;padding:2rem 1.5rem}
.step::before{counter-increment:step;content:counter(step);display:flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:50%;background:linear-gradient(135deg,#6C3CE1,#3B82F6);color:#fff;font-weight:700;font-size:1.2rem;margin:0 auto 1.2rem}
.step h3{font-size:1.05rem;margin-bottom:.5rem}
.step p{color:#888;font-size:.88rem;line-height:1.6}
.app-preview{text-align:center;padding:4rem 2rem}
.preview-wrapper{max-width:900px;margin:2rem auto 0;border-radius:16px;overflow:hidden;border:1px solid #1e1e2e;background:#12121a;box-shadow:0 20px 60px rgba(0,0,0,.5)}
.preview-topbar{display:flex;align-items:center;gap:6px;padding:12px 16px;background:#1a1a24;border-bottom:1px solid #1e1e2e}
.dot{width:10px;height:10px;border-radius:50%}
.dot.r{background:#ff5f57}.dot.y{background:#febc2e}.dot.g{background:#28c840}
.preview-body{padding:2rem;display:flex;gap:1.5rem;min-height:300px}
.preview-sidebar{width:180px;flex-shrink:0}
.preview-sidebar .item{padding:.5rem .8rem;border-radius:8px;font-size:.82rem;color:#666;margin-bottom:.3rem}
.preview-sidebar .item.active{background:rgba(108,60,225,.15);color:#6C3CE1}
.preview-main{flex:1;background:rgba(255,255,255,.02);border-radius:12px;padding:1.5rem;border:1px solid #1e1e2e}
.preview-main h4{font-size:1rem;margin-bottom:1rem}
.mock-input{background:rgba(255,255,255,.05);border:1px solid #1e1e2e;border-radius:8px;padding:.7rem 1rem;color:#666;font-size:.85rem;margin-bottom:.8rem;width:100%}
.mock-row{display:flex;align-items:center;gap:.6rem;margin-bottom:.6rem;font-size:.85rem;color:#888}
.toggle{width:36px;height:20px;border-radius:10px;background:#6C3CE1;position:relative;flex-shrink:0}
.toggle::after{content:'';width:16px;height:16px;border-radius:50%;background:#fff;position:absolute;top:2px;right:2px}
.faq-list{max-width:700px}
.faq-item{border-bottom:1px solid #1e1e2e;padding:1.5rem 0}
.faq-item h3{font-size:1rem;font-weight:600;margin-bottom:.5rem}
.faq-item p{color:#888;font-size:.9rem;line-height:1.6}
footer{border-top:1px solid #1e1e2e;padding:3rem 2rem}
.footer-inner{max-width:1100px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.footer-links{display:flex;gap:1.5rem}
.footer-links a{color:#888;text-decoration:none;font-size:.85rem}
.footer-links a:hover{color:#fff}
.footer-copy{color:#555;font-size:.8rem}
@media(max-width:768px){.hero h1{font-size:2.2rem}nav{padding:.8rem 1rem}.nav-links{gap:1rem}.preview-body{flex-direction:column}.preview-sidebar{width:100%;display:flex;gap:.5rem;flex-wrap:wrap}}
