*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Work Sans', sans-serif; font-weight: 400; background: #FFFFFF; color: #555555; overflow-x: hidden; }

.hero { min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; padding: 60px 24px; }
.hero-title { font-family: 'Josefin Sans', sans-serif; font-weight: 700; font-size: 72px; text-transform: uppercase; letter-spacing: 0.08em; color: #000000; text-align: center; z-index: 2; }
.memphis-shapes { position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; }
.shape.visible { opacity: 1; }
.shape-circle { top: 15%; left: 10%; }
.shape-square { top: 20%; right: 15%; }
.shape-triangle { bottom: 25%; left: 20%; }
.shape-diamond { bottom: 15%; right: 10%; }
.shape-zigzag { top: 50%; left: 50%; transform: translate(-50%, -50%); }

.blocks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; padding: 24px; }
.block { background: #FFFFFF; border: 3px solid #000000; padding: 32px; position: relative; opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease; }
.block.revealed { opacity: 1; transform: translateY(0); }
.block:hover { transform: translateY(-8px); box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.12); }
.block.revealed:hover { transform: translateY(-8px); }
.block-wide { grid-column: span 2; }
.block-tall { grid-row: span 2; }
.block-dark { background: #000000; color: #E5E5EA; border-color: #000000; }
.block-accent { background: #FFCC00; border-color: #000000; }

.block-header { display: flex; justify-content: space-between; margin-bottom: 20px; }
.block-label { font-family: 'Fira Code', monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: #555555; }
.block-label.light { color: #E5E5EA; }
.block-title { font-family: 'Josefin Sans', sans-serif; font-weight: 700; font-size: 28px; text-transform: uppercase; color: #000000; margin-bottom: 12px; letter-spacing: 0.02em; }
.block-dark .block-title { color: #FFFFFF; }
.block-body { font-family: 'Work Sans', sans-serif; font-weight: 400; font-size: 15px; line-height: 1.7; color: #555555; }
.block-body.light { color: #E5E5EA; }
.block-decoration { margin-top: 24px; }

.tall-illustration { flex: 1; display: flex; align-items: center; justify-content: center; padding: 16px 0; }
.tall-illustration svg { max-height: 300px; }

.palette-swatches { display: flex; gap: 12px; margin-bottom: 16px; }
.palette-swatch { width: 48px; height: 48px; border-radius: 0; }

.footer-content { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-text { font-family: 'Josefin Sans', sans-serif; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: #E5E5EA; }
.footer-divider { font-family: 'Fira Code', monospace; font-size: 14px; color: #555555; }

@media (max-width: 768px) {
    .hero-title { font-size: 40px; }
    .block-wide { grid-column: span 1; }
    .block-tall { grid-row: span 1; }
    .block-title { font-size: 22px; }
}
