@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;500;700;900&display=swap');

:root { --bg: #020617; --blue: #3b82f6; --accent: #2dd4bf; }

body { margin: 0; background: var(--bg); color: white; font-family: 'Space Grotesk', sans-serif; overflow-x: hidden; }

canvas#bg { position: fixed; top: 0; left: 0; z-index: -1; }

.glass { background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 2rem; }

nav { position: fixed; top: 0; width: 100%; z-index: 100; padding: 1.5rem 3rem; display: flex; justify-content: space-between; align-items: center; box-sizing: border-box; background: rgba(2, 6, 23, 0.8); }

.nav-links a { color: white; text-decoration: none; font-size: 11px; font-weight: 700; text-transform: uppercase; margin-left: 2rem; letter-spacing: 0.1em; }

.btn-glow { background: linear-gradient(45deg, var(--blue), var(--accent)); color: #000; font-weight: 900; padding: 10px 25px; border-radius: 50px; text-decoration: none; font-size: 12px; transition: 0.3s; }

.btn-glow:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }

section { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 120px 20px; text-align: center; }
