/* namu.land */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0a140a; color: #c8d8b8; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.7; }
.hero { min-height: 80vh; display: flex; align-items: center; justify-content: center; position: relative; padding: 4rem 2rem; }
.forest-lines { position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 20px, #1a3a1a 20px, #1a3a1a 22px); opacity: 0.4; pointer-events: none; }
.hero-content { text-align: center; position: relative; z-index: 1; }
.brand { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: clamp(2rem, 5vw, 3.5rem); }
.tagline { font-size: 0.85rem; color: #4a8a4a; margin-top: 0.3rem; }
.coord { font-family: 'Fira Code', monospace; font-size: 0.55rem; color: #2d5a2d; display: block; margin-top: 0.5rem; }
.features { max-width: 520px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.feature-panel { background: #0f1f0f; padding: 1.5rem; border-left: 2px solid #2d5a2d; }
.feature-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; color: #4a8a4a; margin-bottom: 0.5rem; }
.feature-text { font-size: 0.8rem; color: #88aa88; }
.tree-count { font-family: 'Fira Code', monospace; font-size: 0.6rem; color: #22c55e; display: block; margin-top: 0.5rem; }
.canopy { display: flex; justify-content: center; padding: 4rem 2rem; }
.canopy-view { position: relative; width: 250px; height: 250px; }
.canopy-circle { position: absolute; border-radius: 50%; opacity: 0.7; }
.c1 { width: 100px; height: 100px; background: #2d5a2d; top: 10%; left: 10%; }
.c2 { width: 80px; height: 80px; background: #4a8a4a; top: 30%; right: 15%; }
.c3 { width: 120px; height: 120px; background: #1a3a1a; bottom: 10%; left: 25%; }
.c4 { width: 60px; height: 60px; background: #2d5a2d; top: 5%; right: 30%; }
.c5 { width: 90px; height: 90px; background: #4a8a4a; bottom: 20%; right: 5%; opacity: 0.5; }
.roots { text-align: center; padding: 3rem 2rem; }
.growth-bar { width: 100px; height: 4px; background: #1a3a1a; margin: 0 auto 1.5rem; border-radius: 2px; overflow: hidden; }
.growth-fill { width: 75%; height: 100%; background: #22c55e; border-radius: 2px; }
.footer-brand { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.65rem; color: #1a3a1a; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
