:root{--primary:#00ff41;--primary-dark:#00cc33;--primary-dim:#1a3d1a;--secondary:#39ff14;--background:#0a0b09;--surface:#12150f;--surface-light:#1e2418;--text:#e8f5e0;--text-muted:#8a9a7a;--accent:#00ff41;--mal-color:#f0ebe0;--vector-color:#39ff14;--grid-color:rgba(0,255,65,0.03);--grid-line:rgba(60,80,40,0.22);--brown:#3d2b1f;--brown-light:#5c4033}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;background:var(--background);color:var(--text);line-height:1.6;min-height:100vh;position:relative}
body::before{content:'';position:fixed;top:0;left:0;right:0;bottom:0;background-image:linear-gradient(var(--grid-line) 1px,transparent 1px),linear-gradient(90deg,var(--grid-line) 1px,transparent 1px);background-size:50px 50px;pointer-events:none;z-index:0}
body::after{content:'';position:fixed;top:0;left:0;right:0;bottom:0;background:radial-gradient(ellipse at center,transparent 0%,var(--background) 70%);pointer-events:none;z-index:0}
.nav{position:fixed;top:0;left:0;right:0;z-index:100;padding:1rem 2rem;background:rgba(10,12,9,0.95);backdrop-filter:blur(10px);border-bottom:1px solid var(--surface-light)}
.nav-container{max-width:1200px;margin:0 auto;display:flex;justify-content:space-between;align-items:center}
.logo{font-family:'Inter',system-ui,sans-serif;font-size:1.5rem;font-weight:700;text-decoration:none;display:flex;align-items:center;gap:0.5rem;letter-spacing:0.02em}
.logo-text{display:flex}
.logo-mal{color:var(--mal-color)}
.logo-vector{color:var(--vector-color)}
.logo-icon{width:32px;height:32px;display:flex;align-items:center;justify-content:center}
.logo-icon svg{width:100%;height:100%}
.nav-links{display:flex;gap:1.25rem;list-style:none}
.nav-links a{color:var(--text-muted);text-decoration:none;font-weight:500;transition:color 0.2s;font-size:0.9rem}
.nav-links a:hover{color:var(--primary)}
.nav-cta{display:flex;gap:0.75rem}
.btn{padding:0.75rem 1.5rem;border-radius:4px;font-weight:600;text-decoration:none;transition:all 0.2s;cursor:pointer;border:none;font-size:1rem;font-family:inherit}
.btn-primary{background:var(--primary);color:var(--background)}
.btn-primary:hover{background:var(--secondary);box-shadow:0 0 20px rgba(0,255,65,0.3)}
.btn-secondary{background:transparent;color:var(--primary);border:1px solid var(--primary-dim)}
.btn-secondary:hover{background:var(--primary-dim);border-color:var(--primary)}
.btn-large{padding:1rem 2rem;font-size:1.1rem}
.hero{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:6rem 2rem 4rem;position:relative;overflow:hidden;z-index:1}
.hero::before{content:'';position:absolute;top:20%;left:50%;transform:translateX(-50%);width:600px;height:600px;background:radial-gradient(circle,rgba(0,255,65,0.08) 0%,transparent 70%);pointer-events:none}
.hero-content{max-width:800px;text-align:center;position:relative;z-index:1}
.hero-badge{display:inline-flex;align-items:center;gap:0.5rem;padding:0.5rem 1rem;background:transparent;border-radius:2px;font-size:0.875rem;color:var(--text-muted);margin-bottom:2rem;letter-spacing:0.03em}
.hero-badge-dot{width:12px;height:12px;background:var(--primary);border-radius:50%;animation:pulse 3s infinite ease-in-out}
@keyframes pulse{0%,100%{opacity:0.6;box-shadow:0 0 0 0 rgba(0,255,65,0.15)}50%{opacity:0.4;box-shadow:0 0 0 12px rgba(0,255,65,0)}}
.hero h1{font-family:'Space Grotesk',system-ui,sans-serif;font-size:clamp(2.5rem,5vw,4rem);font-weight:700;line-height:1.1;margin-bottom:1.5rem}
.hero h1 .highlight{color:var(--primary)}
.hero p{font-size:1.25rem;color:var(--text-muted);margin-bottom:2.5rem;max-width:600px;margin-left:auto;margin-right:auto}
.hero-buttons{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.features{padding:6rem 2rem;background:var(--surface);position:relative;z-index:1}
.container{max-width:1200px;margin:0 auto}
.section-header{text-align:center;margin-bottom:4rem}
.section-header h2{font-family:'Space Grotesk',system-ui,sans-serif;font-size:2.5rem;margin-bottom:1rem}
.section-header p{color:var(--text-muted);font-size:1.1rem;max-width:600px;margin:0 auto}
.features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem}
.feature-card{background:var(--background);padding:2rem;border-radius:8px;border:1px solid var(--surface-light);transition:all 0.3s}
.feature-card:hover{border-color:var(--primary-dim);box-shadow:0 0 30px rgba(0,255,65,0.05)}
.feature-icon{width:48px;height:48px;background:var(--surface);border:1px solid var(--primary-dim);border-radius:8px;display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem}
.feature-icon svg{width:24px;height:24px;stroke:var(--primary);fill:none;stroke-width:2}
.feature-card h3{font-family:'Space Grotesk',system-ui,sans-serif;font-size:1.25rem;margin-bottom:0.75rem;color:var(--text)}
.feature-card p{color:var(--text-muted)}
.pricing{padding:6rem 2rem;position:relative;z-index:1}
.pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:2rem;max-width:1000px;margin:0 auto}
.pricing-card{background:var(--surface);padding:2.5rem;border-radius:8px;border:1px solid var(--surface-light);position:relative}
.pricing-card.featured{border-color:var(--primary-dim);box-shadow:0 0 40px rgba(0,255,65,0.1)}
.pricing-card.featured::before{content:'Most Popular';position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--primary);color:var(--background);padding:0.25rem 1rem;border-radius:4px;font-size:0.75rem;font-weight:600}
.pricing-card h3{font-family:'Space Grotesk',system-ui,sans-serif;font-size:1.5rem;margin-bottom:0.5rem}
.pricing-card .price{font-size:3rem;font-weight:700;margin:1rem 0;color:var(--primary)}
.pricing-card .price span{font-size:1rem;color:var(--text-muted);font-weight:400}
.pricing-card .description{color:var(--text-muted);margin-bottom:2rem}
.pricing-features{list-style:none;margin-bottom:2rem}
.pricing-features li{padding:0.5rem 0;display:flex;align-items:center;gap:0.75rem;color:var(--text-muted)}
.pricing-features li svg{width:16px;height:16px;stroke:var(--primary);flex-shrink:0}
.cta{padding:6rem 2rem;background:var(--surface);text-align:center;position:relative;z-index:1;border-top:1px solid var(--primary-dim);border-bottom:1px solid var(--primary-dim)}
.cta h2{font-family:'Space Grotesk',system-ui,sans-serif;font-size:2.5rem;margin-bottom:1rem}
.cta p{font-size:1.1rem;color:var(--text-muted);margin-bottom:2rem;max-width:600px;margin-left:auto;margin-right:auto}
.footer{padding:4rem 2rem 2rem;background:var(--background);position:relative;z-index:1}
.footer-content{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:3rem;margin-bottom:3rem}
.footer-brand p{color:var(--text-muted);margin-top:1rem}
.footer-heading{margin-bottom:1rem;font-weight:600;color:var(--text)}
.footer-links ul{list-style:none}
.footer-links a{color:var(--text-muted);text-decoration:none;display:block;padding:0.25rem 0;transition:color 0.2s}
.footer-links a:hover{color:var(--primary)}
.footer-bottom{text-align:center;padding-top:2rem;border-top:1px solid var(--surface-light);color:var(--text-muted);font-size:0.875rem}
.code-block{background:var(--background);border:1px solid var(--surface-light);border-radius:8px;padding:1.5rem;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;font-size:0.875rem;overflow-x:auto}
.how-it-works{padding:6rem 2rem;position:relative;z-index:1}
.steps-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem}
.step-card{text-align:center;padding:2rem}
.step-number{width:64px;height:64px;background:var(--surface);border:2px solid var(--primary-dim);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.5rem;font-weight:700;margin:0 auto 1.5rem;color:var(--primary);font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace}
.step-card h3{font-family:'Space Grotesk',system-ui,sans-serif;font-size:1.5rem;margin-bottom:1rem}
.step-card p{color:var(--text-muted)}
.metrics{padding:6rem 2rem;background:var(--surface);position:relative;z-index:1}
.mci-display{display:grid;grid-template-columns:1fr 2fr;gap:4rem;align-items:center;max-width:900px;margin:0 auto;background:var(--background);padding:3rem;border-radius:8px;border:1px solid var(--surface-light)}
.mci-score{text-align:center}
.mci-value{display:block;font-size:5rem;font-weight:700;color:var(--primary);line-height:1;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace}
.mci-label{display:block;color:var(--text-muted);font-size:1rem;margin-top:0.5rem}
.mci-breakdown{display:flex;flex-direction:column;gap:1.25rem}
.mci-metric{display:grid;grid-template-columns:120px 1fr 80px;align-items:center;gap:1rem}
.metric-label{color:var(--text-muted);font-size:0.875rem}
.metric-bar{height:8px;background:var(--surface-light);border-radius:2px;overflow:hidden}
.metric-fill{height:100%;background:var(--primary);border-radius:2px;transition:width 0.5s ease;box-shadow:0 0 10px rgba(0,255,65,0.3)}
.metric-value{text-align:right;font-weight:600;font-size:0.875rem;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;color:var(--primary)}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:0.5rem;z-index:101}
.hamburger span{width:24px;height:2px;background:var(--primary);transition:all 0.3s}
.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
.mobile-menu{display:none;position:absolute;top:100%;left:0;right:0;background:rgba(10,12,9,0.98);border-bottom:1px solid var(--surface-light);padding:1.5rem 2rem;flex-direction:column;gap:1.5rem}
.mobile-menu.open{display:flex}
.mobile-nav-links{list-style:none;display:flex;flex-direction:column;gap:1rem}
.mobile-nav-links a{color:var(--text-muted);text-decoration:none;font-weight:500;font-size:1.1rem;transition:color 0.2s}
.mobile-nav-links a:hover{color:var(--primary)}
.mobile-cta{display:flex;gap:1rem;flex-direction:row}
.mobile-cta .btn{flex:1;text-align:center}
@media(max-width:900px){.nav-links,.nav-cta{display:none}.hamburger{display:flex}}
@media(max-width:768px){.hero{padding:5rem 1rem 3rem}.hero-buttons{flex-direction:column}.pricing-card.featured{transform:none}.footer-content{grid-template-columns:1fr}.mci-display{grid-template-columns:1fr;gap:2rem;padding:2rem}.mci-value{font-size:4rem}.mci-metric{grid-template-columns:1fr;gap:0.5rem}.metric-value{text-align:left}}
