/* muhan.dev - Colors: #308050, #E04040, #D0D4D8, #40E070, #60A0E0 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0C0C14; color: #D0D4D8; font-family: 'Inter', sans-serif; }
#hero { min-height: 50vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem; }
.title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(2.5rem, 5vw, 4rem); color: #40E070; margin-bottom: 1rem; }
.sub { font-size: 1rem; color: #D0D4D8; max-width: 450px; line-height: 1.6; }
#content { max-width: 800px; margin: 0 auto; padding: 3rem 2rem; }
.card { margin-bottom: 2rem; padding: 2rem; border-left: 3px solid #308050; background: rgba(48,128,80,0.05); opacity: 0; transform: translateY(15px); transition: opacity 0.6s ease, transform 0.6s ease; }
.card.visible { opacity: 1; transform: translateY(0); }
.tag { font-family: 'Space Mono', monospace; font-size: 0.65rem; color: #60A0E0; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 0.5rem; }
.heading { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.5rem; color: #D0D4D8; margin-bottom: 0.75rem; }
.text { font-size: 1rem; line-height: 1.8; color: #308050; }
