/* miris.one */
* { 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: 80vh; display: flex; align-items: center; justify-content: center; position: relative; }
.ghost-one { position: absolute; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(20rem, 40vw, 40rem); color: rgba(0,0,0,0.04); line-height: 1; pointer-events: none; }
.brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(4rem, 12vw, 8rem); color: #000000; line-height: 1; position: relative; z-index: 1; }
.dot-separator { width: 6px; height: 6px; border-radius: 50%; background: #000000; margin: 2rem auto; }
.links { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; padding: 1rem 2rem; }
.link-block { display: block; width: 300px; max-width: 100%; border: 1px solid #000000; padding: 14px 32px; text-align: center; text-decoration: none; color: #000000; font-size: 0.9rem; transition: all 0.2s; }
.link-block:hover { background: #000000; color: #ffffff; }
.identity { text-align: center; padding: 6rem 2rem; }
.identity-text { font-size: 1rem; color: #666666; }
.end { text-align: center; padding: 4rem 2rem; }
.rule { border: none; border-top: 1px solid #000000; width: 60px; margin: 0 auto 1.5rem; }
.footer-text { font-size: 0.85rem; color: #666666; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
