/* namu.systems */
/* Colors: #00B8A9, #9B5DE5, #E8E8EC, #0E1820, #FFD166 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #E8E8EC; background: #0E1820; overflow-x: hidden; }
.panel { min-height: 100vh; display: flex; align-items: center; padding: 80px 40px; position: relative; }
.panel--hero { background: #0E1820; justify-content: center; }
.panel--alt { background: #121E28; }
.panel--footer { min-height: 30vh; justify-content: center; }
.panel__content { max-width: 700px; width: 100%; }
.panel__content--center { text-align: center; }
.hero-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; letter-spacing: -0.02em; color: #00B8A9; opacity: 0; animation: fadeIn 1.2s ease 0.5s forwards; }
.hero-sub { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 300; color: #E8E8EC; opacity: 0.5; margin-top: 12px; opacity: 0; animation: fadeIn 1s ease 1.2s forwards; }
.sys-label { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: #9B5DE5; letter-spacing: 0.1em; display: block; margin-bottom: 12px; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; color: #00B8A9; margin-bottom: 20px; letter-spacing: -0.02em; }
.body-text { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 300; line-height: 1.8; color: #E8E8EC; opacity: 0.8; margin-bottom: 24px; }
.code-block { font-family: 'Space Mono', monospace; font-size: 0.85rem; line-height: 1.8; background: rgba(0,184,169,0.06); border: 1px solid rgba(0,184,169,0.15); border-radius: 4px; padding: 20px; color: #FFD166; }
.code-key { color: #9B5DE5; }
.footer-text { font-family: 'Space Mono', monospace; font-size: 0.75rem; color: #E8E8EC; opacity: 0.3; text-align: center; width: 100%; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 1s ease, transform 1s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 600px) { .panel { padding: 60px 20px; } }
