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

body {
  background: #060610;
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
}

canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.content {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.03em;
  user-select: none;
}

.dot {
  color: #00d4aa;
}

p {
  margin-top: 1rem;
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.taglines {
  position: fixed;
  top: calc(50% + 8rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  pointer-events: none;
}

.taglines span {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
}
