/* mosun.xyz */
/* Colors: #40D0E0, #FFFFFF, #80D0D0, #141028, #E040A0 */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: #141028; color: #FFFFFF; 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(2rem, 5vw, 4rem); color: #FFFFFF; margin-bottom: 1rem; }
.subtitle { font-size: 1rem; color: #80D0D0; max-width: 500px; line-height: 1.6; }
#content { max-width: 800px; margin: 0 auto; padding: 3rem 2rem; }
.card { margin-bottom: 2rem; padding: 2rem; border-left: 3px solid #40D0E0; background: rgba(64,208,224,0.05); opacity: 0; transform: translateY(15px); transition: opacity 0.6s ease, transform 0.6s ease; }
.card.visible { opacity: 1; transform: translateY(0); }
.card-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.5rem; color: #FFFFFF; margin-bottom: 0.75rem; }
.card-text { font-size: 1rem; line-height: 1.8; color: #80D0D0; }
