/* mosoon.org */
/* Colors: #3050A0, #F0F0E8, #D0D0C8, #383838, #E03030 */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: #F0F0E8; color: #383838; 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; background: #3050A0; }
.hero-title { font-family: 'Work Sans', sans-serif; font-weight: 700; font-size: clamp(2rem, 5vw, 4rem); color: #F0F0E8; margin-bottom: 1rem; }
.hero-sub { font-family: 'Inter', sans-serif; font-size: 1rem; color: #D0D0C8; max-width: 500px; line-height: 1.6; }

#content { max-width: 800px; margin: 0 auto; padding: 3rem 2rem; }

.content-block { margin-bottom: 3rem; padding: 2rem; border-left: 3px solid #3050A0; opacity: 0; transform: translateY(15px); transition: opacity 0.6s ease, transform 0.6s ease; }
.content-block.visible { opacity: 1; transform: translateY(0); }
.content-block.accent { border-left-color: #E03030; background: rgba(224,48,48,0.03); }

.block-title { font-family: 'Work Sans', sans-serif; font-weight: 700; font-size: clamp(1.3rem, 2.5vw, 2rem); color: #383838; margin-bottom: 0.75rem; }
.block-body { font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.8; color: #383838; }
