*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #050507;
  color: #fff;
  font-family: 'Share Tech Mono', monospace;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

.container {
  position: relative;
  z-index: 10;
  text-align: center;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-svg {
  width: clamp(80px, 12vw, 130px);
  height: auto;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 20px rgba(180, 210, 240, 0.15));
}

canvas#title {
  z-index: 11;
  max-width: 90vw;
}

.tagline {
  font-family: 'Share Tech Mono', monospace;
  font-weight: 400;
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.6rem;
}

.tagline span {
  color: rgba(255, 255, 255, 0.35);
}

.coming-soon {
  margin-top: 3rem;
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}
