/* monopole.design */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #fffdf0; color: #000000; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.7; }
.hero { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 3rem 2rem; }
.hero-box { border: 3px solid #000; padding: 3rem; text-align: center; background: #fffdf0; max-width: 560px; }
.yellow-shadow { box-shadow: 6px 6px 0 #fbbf24; }
.blue-shadow { box-shadow: 6px 6px 0 #60a5fa; }
.pink-shadow { box-shadow: 6px 6px 0 #f472b6; }
.brand { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 5vw, 3rem); text-transform: uppercase; letter-spacing: 0.03em; text-decoration: underline; text-decoration-thickness: 4px; text-underline-offset: 6px; }
.hero-text { font-size: 0.9rem; color: #000; margin-top: 0.75rem; }
.projects { max-width: 560px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.project-block { border: 3px solid #000; padding: 1.5rem; background: #fffdf0; position: relative; }
.sticker { font-family: 'Fira Code', monospace; font-size: 0.55rem; background: #000; color: #fff; padding: 2px 8px; position: absolute; top: -1px; right: 12px; letter-spacing: 0.1em; }
.project-title { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.2rem; text-transform: uppercase; margin-bottom: 0.3rem; text-decoration: underline; text-decoration-thickness: 4px; text-underline-offset: 4px; }
.project-text { font-size: 0.8rem; color: #333; }
.actions { max-width: 560px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.raw-button { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 0.85rem; border: 3px solid #000; padding: 14px 40px; box-shadow: 4px 4px 0 #000; background: #fffdf0; cursor: pointer; text-transform: uppercase; letter-spacing: 0.05em; }
.end { text-align: center; padding: 3rem 2rem; }
.thick-rule { border: none; border-top: 3px solid #000; width: 80px; margin: 0 auto 1rem; }
.footer-brand { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 0.7rem; color: #000; letter-spacing: 0.05em; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
