/* mosoon.org */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #fdf8f0; color: #2d2418; font-family: 'Lato', sans-serif; font-weight: 400; line-height: 1.8; }
.hero { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; padding: 2rem; }
.orange-circle { position: absolute; width: 200px; height: 200px; border-radius: 50%; background: #e07840; opacity: 0.15; pointer-events: none; }
.brand { font-family: 'Lora', serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3rem); position: relative; z-index: 1; }
.tagline { font-size: 0.9rem; color: #c05c2e; margin-top: 0.5rem; position: relative; z-index: 1; }
.founded { font-size: 0.65rem; color: #999; margin-top: 0.75rem; position: relative; z-index: 1; }
.accent-line { height: 2px; background: #e07840; max-width: 60px; margin: 0 auto; }
.issues { max-width: 600px; margin: 0 auto; padding: 3rem 2rem; }
.issue-block { background: #f7f0e5; padding: 2rem; }
.issue-title { font-family: 'Lora', serif; font-weight: 700; font-size: 1.2rem; margin-bottom: 1rem; }
.contradiction { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.label { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #e07840; display: block; margin-bottom: 0.3rem; }
.text { font-size: 0.85rem; color: #555; }
.impact { max-width: 600px; margin: 0 auto; padding: 2rem; display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.impact-item { text-align: center; }
.impact-number { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 2rem; color: #e07840; display: block; }
.impact-label { font-size: 0.65rem; color: #888; }
.join { text-align: center; padding: 4rem 2rem; }
.join-text { font-family: 'Lora', serif; font-weight: 700; font-size: 1rem; color: #2d2418; }
.footer-brand { font-size: 0.6rem; color: #c4b99a; display: block; margin-top: 0.75rem; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 500px) { .contradiction { grid-template-columns: 1fr; } }
