/* nfth.ing - Colors: #F2F4F8, #22D3EE, #34D399, #6B7280, #4A5568 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #4A5568; background: #F2F4F8; overflow-x: hidden; }
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 20px; }
.sec { min-height: 80vh; display: flex; align-items: center; padding: 80px 40px; }
.sec--alt { background: #FFFFFF; }
.sec--foot { min-height: 20vh; justify-content: center; }
.wrap { max-width: 650px; width: 100%; margin: 0 auto; }
.title { font-size: clamp(3rem, 7vw, 6rem); font-weight: 700; color: #22D3EE; opacity: 0; animation: fi 1.2s ease .5s forwards; }
.sub { font-size: 1rem; font-weight: 300; color: #6B7280; margin-top: 12px; opacity: 0; animation: fi 1s ease 1.2s forwards; }
.heading { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #4A5568; margin-bottom: 20px; }
.text { font-size: 1rem; font-weight: 300; line-height: 1.8; color: #6B7280; margin-bottom: 24px; }
.metric { display: inline-flex; align-items: baseline; gap: 12px; background: #FFFFFF; padding: 16px 24px; border-radius: 8px; border: 1px solid rgba(34,211,238,0.2); }
.metric-val { font-family: 'Space Mono', monospace; font-size: 2rem; font-weight: 700; color: #34D399; }
.metric-label { font-size: 0.85rem; color: #6B7280; }
.foot { font-family: 'Space Mono', monospace; font-size: 0.75rem; color: #6B7280; opacity: 0.4; text-align: center; width: 100%; }
.rv { opacity: 0; transform: translateY(20px); transition: opacity 1s ease, transform 1s ease; }
.rv.vis { opacity: 1; transform: translateY(0); }
@keyframes fi { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
