/* munju.im */
* { 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; }
.hero { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4rem 2rem; }
.brand { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: clamp(4rem, 12vw, 8rem); letter-spacing: 0.05em; text-align: center; }
.tld { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: clamp(1.5rem, 4vw, 2.5rem); color: #888888; }
.thin-line { width: 60px; height: 1px; background: #000000; margin-top: 2rem; }
.dot-sep { text-align: center; font-size: 0.5rem; padding: 2rem 0; color: #000000; }
.dot-sep.small { padding: 1rem 0; }
.attributes { max-width: 400px; margin: 0 auto; padding: 0 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.identity-block { border: 1px solid #000000; padding: 16px 40px; text-align: center; font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 0.85rem; letter-spacing: 0.05em; cursor: pointer; transition: background 0.3s ease, color 0.3s ease; }
.identity-block.inverted { background: #000000; color: #ffffff; }
.contact { text-align: center; padding: 2rem; }
.contact-link { color: #000000; font-size: 0.8rem; text-decoration: underline; cursor: pointer; transition: background 0.3s ease, color 0.3s ease; display: inline-block; padding: 4px 8px; }
.contact-link.inverted { background: #000000; color: #ffffff; }
.end { text-align: center; padding: 3rem 2rem; }
.end .thin-line { margin: 0 auto 1.5rem; }
.footer-brand { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 0.65rem; color: #888888; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
