/* mujun.io */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: linear-gradient(135deg, #0f172a, #1e1b4b); color: #e2e8f0; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.7; min-height: 100vh; }
.hero { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 3rem 2rem; position: relative; }
.glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(129,140,248,0.15), transparent); pointer-events: none; }
.glass { background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; }
.hero-panel { padding: 2.5rem; text-align: center; max-width: 480px; position: relative; z-index: 1; }
.api-badge { font-family: 'Fira Code', monospace; font-size: 0.55rem; background: rgba(129,140,248,0.2); color: #818cf8; padding: 3px 10px; border-radius: 4px; display: inline-block; margin-bottom: 1rem; }
.brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3rem); }
.tagline { font-size: 0.85rem; color: #94a3b8; margin-top: 0.3rem; }
.code-snippet { background: rgba(0,0,0,0.3); padding: 8px 16px; border-radius: 6px; margin-top: 1rem; display: inline-block; }
.snippet-text { font-family: 'Fira Code', monospace; font-size: 0.7rem; color: #818cf8; }
.features { max-width: 520px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.feature-panel { padding: 1.25rem; }
.feature-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; }
.pink { color: #f472b6; }
.feature-text { font-size: 0.8rem; color: #94a3b8; }
.api-section { max-width: 520px; margin: 0 auto; padding: 2rem 1.5rem; }
.api-block { background: #1e293b; border-radius: 8px; padding: 1.5rem; }
.api-text { font-family: 'Fira Code', monospace; font-size: 0.7rem; color: #e2e8f0; white-space: pre; line-height: 1.7; }
.keyword { color: #818cf8; }
.comment { color: #64748b; }
.string { color: #f472b6; }
.num { color: #34d399; }
.close { text-align: center; padding: 3rem 2rem; }
.footer-brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.65rem; color: #334155; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
