:root {
    --bg: #06120a;
    --moss: #65a30d;
    --emerald: #10b981;
    --text: #ecfdf5;
    --font: 'Plus Jakarta Sans', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--text); font-family: var(--font); overflow: hidden; height: 100vh; }

.nav { padding: 2.5rem 4rem; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(101,163,13,0.2); }
.logo { font-size: 1.4rem; font-weight: 700; color: var(--moss); }
.humidity { font-size: 0.85rem; color: #a3e635; }

.hero { height: calc(100vh - 90px); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 2rem; }
h1 { font-size: 3.5rem; font-weight: 700; color: var(--moss); margin-bottom: 1.5rem; max-width: 850px; line-height: 1.15; }
p { font-size: 1.2rem; color: #a7f3d0; max-width: 600px; font-weight: 300; }