:root {
    --bg: #050d1a;
    --gold: #d4af37;
    --navy: #0b1e38;
    --white: #f8fafc;
    --font-head: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--white); font-family: var(--font-body); overflow: hidden; height: 100vh; }

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

.nav { position: fixed; top: 0; width: 100%; padding: 2.5rem 4rem; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(212,175,55,0.2); z-index: 10; }
.logo { font-family: var(--font-head); font-size: 1.4rem; color: var(--gold); }
.tag { font-size: 0.8rem; letter-spacing: 3px; color: #888; }

.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; color: var(--white); margin-bottom: 1.5rem; max-width: 850px; }
p { font-size: 1.2rem; color: #94a3b8; max-width: 600px; font-weight: 300; }