:root {
    --bg: #090c10;
    --yellow: #ffcc00;
    --navy: #0f172a;
    --text: #f8fafc;
    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); overflow: hidden; height: 100vh; }

canvas#solarCanvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 1; opacity: 0.5; }

.nav { position: fixed; top: 0; width: 100%; padding: 2.5rem 4rem; display: flex; justify-content: space-between; align-items: center; z-index: 10; border-bottom: 1px solid rgba(255,204,0,0.2); }
.logo { font-family: var(--font-head); font-size: 1.4rem; color: var(--yellow); }
.grid-status { font-size: 0.85rem; color: var(--yellow); border: 1px solid var(--yellow); padding: 6px 14px; border-radius: 100px; }

.hero { position: relative; z-index: 5; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 2rem; }
h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.15; margin-bottom: 1.5rem; color: var(--yellow); text-shadow: 0 0 20px rgba(255,204,0,0.4); max-width: 850px; }
p { font-size: 1.2rem; color: #94a3b8; max-width: 600px; }