@import"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";:root{--slate-dark: #1a1f2c;--slate-medium: #252b3b;--charcoal: #343a40;--off-white: #f8f9fa;--text-muted: #adb5bd;--accent-blue: #4a90d9;--accent-green: #2ecc71}*{box-sizing:border-box;margin:0;padding:0}body{color:var(--off-white);font-family:Inter,-apple-system,BlinkMacSystemFont,sans-serif;margin:0;display:flex;flex-direction:column;min-height:100vh;background:linear-gradient(180deg,var(--slate-dark) 0%,#12151c 100%);line-height:1.6}html{scroll-behavior:smooth}header{position:fixed;top:0;left:0;width:100%;padding:1rem 2rem;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid var(--charcoal);background:#1a1f2cf2;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);z-index:100}.header-left{display:flex;align-items:center;gap:1.5rem;z-index:2}.header-center{position:absolute;left:50%;transform:translate(-50%);pointer-events:none;white-space:nowrap}.brand-title{font-family:Inter,sans-serif;font-weight:800;font-size:1.25rem;letter-spacing:2px;color:var(--off-white);text-transform:uppercase;text-shadow:0 0 10px rgba(74,144,217,.2)}.logo-icon-link{display:flex;align-items:center;text-decoration:none;transition:opacity .2s ease}.logo-icon-link:hover{opacity:.85}.logo-icon{height:40px;width:auto;filter:drop-shadow(0 0 5px rgba(74,144,217,.3))}.header-nav{display:flex;gap:1.5rem}.nav-link{font-size:.875rem;font-weight:500;color:var(--text-muted);text-decoration:none;padding:.5rem 0;border-bottom:2px solid transparent;transition:color .2s ease,border-color .2s ease}.nav-link:hover{color:var(--off-white);border-bottom-color:var(--accent-blue)}.header-right{display:flex;align-items:center;gap:.5rem;z-index:2}.status-light{display:inline-block;width:6px;height:6px;background-color:#dc3545;border-radius:50%}.status-indicator{font-size:.7rem;color:var(--text-muted);letter-spacing:.5px;text-transform:uppercase}main{flex:1;display:flex;flex-direction:column;align-items:center;padding:6rem 2rem 4rem;max-width:1200px;margin:0 auto;width:100%}.hero-section{text-align:center;margin-bottom:5rem;padding-top:4rem;max-width:800px}.hero-headline{font-size:clamp(2.25rem,5vw,3.5rem);margin:0 0 1.5rem;letter-spacing:-1px;font-weight:700;color:var(--off-white);line-height:1.15}.hero-subheadline{color:var(--text-muted);font-size:1.15rem;margin:0 0 2.5rem;font-weight:400;line-height:1.6}.hero-cta{display:inline-block;text-decoration:none;color:var(--off-white);font-size:.95rem;font-weight:600;letter-spacing:.5px;padding:14px 32px;border:1px solid var(--accent-blue);border-radius:6px;background:#4a90d926;transition:all .2s ease}.hero-cta:hover{background:var(--accent-blue);color:#fff;transform:translateY(-1px)}.product-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem;width:100%;max-width:1000px;margin:0 auto}.product-card{background:var(--slate-medium);border:1px solid var(--charcoal);border-radius:8px;padding:2rem;display:flex;flex-direction:column;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}.product-card:hover{transform:translateY(-2px);box-shadow:0 8px 24px #0000004d;border-color:#4a5568}.product-icon{width:40px;height:40px;margin-bottom:1rem;color:var(--text-muted);opacity:.8;transition:opacity .2s ease,color .2s ease}.product-icon svg{width:100%;height:100%}.product-card:hover .product-icon{opacity:1;color:var(--off-white)}.product-card.featured .product-icon{color:var(--accent-blue)}.product-card h3{font-size:1.25rem;font-weight:600;margin:0 0 .5rem;color:var(--off-white)}.product-card .product-status{font-size:.75rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;margin-bottom:1rem}.product-card p{font-size:.95rem;color:var(--text-muted);margin:0 0 1.5rem;flex-grow:1;line-height:1.5}.buy-button{display:inline-block;text-decoration:none;color:var(--off-white);font-size:.875rem;font-weight:600;letter-spacing:.5px;padding:12px 24px;border:1px solid var(--accent-blue);border-radius:6px;background:#4a90d91a;text-align:center;transition:all .2s ease;cursor:pointer}.buy-button:hover{background:var(--accent-blue);color:#fff}.buy-button.coming-soon{border-color:var(--charcoal);background:transparent;color:var(--text-muted);cursor:default}.buy-button.coming-soon:hover{background:transparent;color:var(--text-muted)}.product-card.featured{border-color:var(--accent-blue);position:relative}.product-card.featured:before{content:"FEATURED";position:absolute;top:-10px;left:20px;background:var(--accent-blue);color:#fff;font-size:.65rem;font-weight:700;letter-spacing:1px;padding:4px 10px;border-radius:3px}footer{width:100%;padding:2rem;text-align:center;font-size:.8rem;border-top:1px solid var(--charcoal);background:#1a1f2ccc;color:var(--text-muted)}.footer-content{max-width:1200px;margin:0 auto;display:flex;flex-direction:column;gap:1rem}.footer-links{display:flex;justify-content:center;gap:2rem;flex-wrap:wrap}.footer-links a{color:var(--text-muted);text-decoration:none;transition:color .2s ease}.footer-links a:hover{color:var(--off-white)}.footer-copyright{color:var(--text-muted);font-size:.75rem}@media(max-width:768px){header{padding:.75rem 1rem;display:grid;grid-template-columns:1fr auto;grid-template-areas:"brand status" "nav nav";gap:.75rem 0;height:auto}.header-left{width:100%;justify-content:center;grid-area:nav;padding-top:.25rem;border-top:1px solid rgba(255,255,255,.05)}.logo-icon-link{display:none}.header-center{position:static;transform:none;grid-area:brand;justify-self:start;align-self:center;margin:0}.brand-title{font-size:1.1rem}.header-nav{gap:1.5rem;width:100%;justify-content:center}.nav-link{padding:.5rem 1rem}.header-right{position:static;grid-area:status;justify-self:end;align-self:center;margin:0}main{padding:8.5rem 1.25rem 3rem}.hero-section{padding-top:1rem;margin-bottom:2.5rem}.hero-headline{font-size:2rem;line-height:1.2}.hero-subheadline{font-size:1rem}.hero-cta{width:100%;text-align:center}.product-grid{grid-template-columns:1fr;gap:1.5rem}.footer-links{flex-direction:column;gap:1.25rem;padding:1rem 0}.footer-links a,.footer-links span{padding:.5rem;display:block}.legal-page{padding-top:8rem;padding-left:1.25rem;padding-right:1.25rem}.legal-content h1{font-size:1.75rem}}#bgParticles,#headerDust{display:none}.legal-page{padding-top:6rem;padding-bottom:4rem;text-align:left}.legal-content{max-width:800px;margin:0 auto}.legal-content h1{font-size:2rem;font-weight:700;margin-bottom:.5rem;color:var(--off-white)}.legal-content .last-updated{font-size:.85rem;color:var(--text-muted);margin-bottom:2.5rem;padding-bottom:1.5rem;border-bottom:1px solid var(--charcoal)}.legal-content section{margin-bottom:2rem}.legal-content h2{font-size:1.25rem;font-weight:600;color:var(--off-white);margin-bottom:.75rem}.legal-content h3{font-size:1rem;font-weight:600;color:var(--off-white);margin-top:1rem;margin-bottom:.5rem}.legal-content p{color:var(--text-muted);margin-bottom:.75rem;line-height:1.7}.legal-content ul{color:var(--text-muted);margin-left:1.5rem;margin-bottom:1rem}.legal-content li{margin-bottom:.5rem;line-height:1.6}.legal-content strong{color:var(--off-white)}
