:root {
  --bg: #f3f1ec;
  --fg: #000000;
  --edge: 28px;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow: hidden;
}

/* 3D particle stage */
#stage {
  position: fixed;
  inset: 0;
  z-index: 1;
  cursor: grab;
  touch-action: none;
}
#stage:active { cursor: grabbing; }
#stage canvas { display: block; }

/* center wordmark, over the particles */
.center {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--edge);
  z-index: 2;
  pointer-events: none;
}
.wordmark {
  font-size: clamp(1.6rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fg);
}
.role {
  margin-top: 0.9em;
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--fg);
}

@media (max-width: 600px) { :root { --edge: 18px; } }
