/* namu.systems */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: linear-gradient(to bottom, #e0f2fe, #bfdbfe); color: #1e293b; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.6; min-height: 100vh; }
.gradient-line { height: 3px; background: linear-gradient(to right, #3b82f6, #22c55e); }
.hero { text-align: center; padding: 4rem 2rem 2rem; }
.brand { font-family: 'Sora', sans-serif; font-weight: 600; font-size: clamp(2rem, 5vw, 3rem); }
.badge { display: inline-block; border-radius: 9999px; background: #3b82f6; color: #ffffff; font-size: 0.6rem; padding: 4px 16px; margin-top: 0.75rem; }
.status-indicator { font-family: 'Fira Code', monospace; font-size: 0.6rem; color: #22c55e; margin-top: 0.75rem; display: flex; align-items: center; justify-content: center; gap: 0.3rem; }
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.features { max-width: 520px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.glossy-panel { background: #ffffff; border-radius: 16px; box-shadow: 0 4px 20px rgba(148,163,184,0.2); padding: 1.5rem; }
.panel-title { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.95rem; margin-bottom: 0.3rem; }
.panel-text { font-size: 0.8rem; color: #94a3b8; }
.branch-diagram { text-align: center; padding: 2rem; }
.branch-line { width: 2px; height: 30px; background: #3b82f6; margin: 0 auto; }
.node { display: inline-block; font-family: 'Fira Code', monospace; font-size: 0.65rem; padding: 6px 14px; border: 1px solid #e2e8f0; border-radius: 8px; background: #ffffff; margin: 0 0.5rem; }
.node.active { border-color: #22c55e; color: #22c55e; }
.node-row { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.stats-bar { max-width: 520px; margin: 0 auto; padding: 1.5rem; background: rgba(255,255,255,0.7); backdrop-filter: blur(10px); border-radius: 12px; display: flex; justify-content: space-around; }
.stat { text-align: center; }
.stat-val { font-family: 'Fira Code', monospace; font-size: 1.2rem; font-weight: 600; color: #1e293b; display: block; }
.stat-label { font-size: 0.6rem; color: #94a3b8; }
.footer { text-align: center; padding: 3rem 2rem; }
.footer-brand { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.65rem; color: #bfdbfe; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
