/* opensource.bar */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0a0a0a; color: #e5e5e5; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.6; }
.hero { text-align: center; padding: 5rem 2rem 3rem; border: 1px solid #22c55e; box-shadow: 0 0 10px rgba(34, 197, 94, 0.2); margin: 1rem; }
.oss-label { font-family: 'Fira Code', monospace; font-size: 0.6rem; color: #22c55e; text-shadow: 0 0 10px rgba(34, 197, 94, 0.4); letter-spacing: 0.2em; display: block; margin-bottom: 0.5rem; }
.brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem); text-shadow: 0 0 10px rgba(34, 197, 94, 0.4), 0 0 30px rgba(34, 197, 94, 0.2); }
.tagline { font-size: 0.8rem; color: #e5e5e5; opacity: 0.6; margin-top: 0.5rem; }
.projects { max-width: 500px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.project-card { background: #141414; padding: 1.25rem; }
.green-border { border-left: 3px solid #22c55e; }
.cyan-border { border-left: 3px solid #06b6d4; }
.magenta-border { border-left: 3px solid #d946ef; }
.badge { font-family: 'Fira Code', monospace; font-size: 0.5rem; text-transform: uppercase; letter-spacing: 0.1em; }
.badge.green { color: #22c55e; }
.badge.cyan { color: #06b6d4; }
.badge.magenta { color: #d946ef; }
.project-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; margin: 0.3rem 0; }
.project-desc { font-size: 0.75rem; opacity: 0.7; }
.contrib-pill { display: inline-block; font-family: 'Fira Code', monospace; font-size: 0.55rem; padding: 3px 10px; border-radius: 9999px; margin-top: 0.75rem; }
.contrib-pill.green { border: 1px solid #22c55e; color: #22c55e; }
.contrib-pill.cyan { border: 1px solid #06b6d4; color: #06b6d4; }
.contrib-pill.magenta { border: 1px solid #d946ef; color: #d946ef; }
.stats { display: flex; justify-content: center; gap: 2rem; padding: 2rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Fira Code', monospace; font-size: 1.5rem; display: block; }
.stat-num.green { color: #22c55e; text-shadow: 0 0 10px rgba(34, 197, 94, 0.3); }
.stat-num.cyan { color: #06b6d4; text-shadow: 0 0 10px rgba(6, 182, 212, 0.3); }
.stat-num.magenta { color: #d946ef; text-shadow: 0 0 10px rgba(217, 70, 239, 0.3); }
.stat-label { font-size: 0.6rem; color: #e5e5e5; opacity: 0.5; text-transform: uppercase; letter-spacing: 0.1em; }
.activity { max-width: 500px; margin: 0 auto; padding: 1rem 1.5rem; }
.terminal-panel { background: #141414; border: 1px solid #2a2a2a; padding: 1rem 1.25rem; }
.feed-entry { font-family: 'Fira Code', monospace; font-size: 0.65rem; margin-bottom: 0.4rem; }
.prompt { color: #22c55e; }
.author.green { color: #22c55e; }
.author.cyan { color: #06b6d4; }
.author.magenta { color: #d946ef; }
.last-call { text-align: center; padding: 3rem 2rem 4rem; }
.closing { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; color: #22c55e; text-shadow: 0 0 10px rgba(34, 197, 94, 0.3); }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
