/* monopole.tech */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #e8ecf1; color: #2d3748; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.7; }
.hero { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 3rem 2rem; }
.neo-raised { background: #e8ecf1; box-shadow: 8px 8px 16px #c8ccd1, -8px -8px 16px #ffffff; border-radius: 12px; }
.neo-inset { background: #dde1e6; box-shadow: inset 4px 4px 8px #c8ccd1, inset -4px -4px 8px #ffffff; border-radius: 8px; }
.hero-panel { padding: 2.5rem; text-align: center; max-width: 480px; }
.brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.5rem); color: #2d3748; }
.tech-badge { font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; color: #6366f1; background: #e8ecf1; box-shadow: 4px 4px 8px #c8ccd1, -4px -4px 8px #ffffff; border-radius: 20px; padding: 4px 14px; display: inline-block; margin-top: 0.5rem; letter-spacing: 0.1em; }
.tagline { font-size: 0.85rem; color: #64748b; margin-top: 0.75rem; }
.features { max-width: 560px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.tile { padding: 1.5rem; }
.tile-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }
.tile-text { font-size: 0.8rem; color: #64748b; }
.metrics { max-width: 560px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.metric { padding: 1.25rem; text-align: center; flex: 1; min-width: 130px; }
.metric-value { font-family: 'JetBrains Mono', monospace; font-size: 1.3rem; color: #6366f1; display: block; }
.metric-label { font-size: 0.65rem; color: #64748b; }
.toggles { display: flex; justify-content: center; gap: 0.75rem; padding: 2rem; }
.toggle { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.7rem; background: #e8ecf1; box-shadow: 4px 4px 8px #c8ccd1, -4px -4px 8px #ffffff; border-radius: 20px; padding: 8px 20px; color: #64748b; }
.toggle.active { color: #6366f1; box-shadow: inset 3px 3px 6px #c8ccd1, inset -3px -3px 6px #ffffff; }
.footer { text-align: center; padding: 3rem 2rem; }
.footer-brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.65rem; color: #a0aec0; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
