/* mosun.xyz */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #ffffff; color: #000000; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.6; }
.yellow-block { background: #fbbf24; }
.red-block { background: #ef4444; color: #ffffff; }
.blue-block { background: #3b82f6; color: #ffffff; }
.dot-overlay { position: absolute; inset: 0; background: radial-gradient(circle, rgba(0,0,0,0.08) 1px, transparent 1px); background-size: 8px 8px; pointer-events: none; }
.hero { min-height: 60vh; display: flex; align-items: center; justify-content: center; position: relative; padding: 2rem; }
.brand { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: clamp(2.5rem, 8vw, 5rem); text-transform: uppercase; -webkit-text-stroke: 3px #000000; color: transparent; position: relative; z-index: 1; }
.content { position: relative; padding: 4rem 2rem; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.speech-bubble { background: #ffffff; color: #000000; border: 3px solid #000000; border-radius: 20px; padding: 1.5rem; max-width: 400px; position: relative; z-index: 1; }
.speech-bubble::after { content: ''; position: absolute; bottom: -12px; left: 30px; width: 0; height: 0; border-left: 12px solid transparent; border-right: 12px solid transparent; border-top: 12px solid #000000; }
.bubble-text { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 0.8rem; }
.block-title { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: clamp(1.5rem, 4vw, 2.5rem); text-transform: uppercase; position: relative; z-index: 1; }
.block-title.large-title { font-size: clamp(1.8rem, 5vw, 3rem); }
.end-block { background: #ffffff; text-align: center; padding: 3rem 2rem; }
.footer-brand { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 0.8rem; -webkit-text-stroke: 2px #000; color: transparent; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
