:root {
  --bg: #07080d;
  --fg: #efefef;
  --muted: #8b8fa3;
  --primary: #3c4ffd;
  --primary-light: #a1b8ff;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow: hidden;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 0 24px;
}

.hero h1 {
  font-size: clamp(48px, 10vw, 128px);
  font-weight: 200;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .tagline {
  font-size: clamp(16px, 2.4vw, 28px);
  font-weight: 300;
  margin: 0 0 32px;
  color: var(--fg);
  opacity: 0.85;
}

.hero .status {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

footer {
  position: fixed;
  bottom: 16px;
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
