:root {
  --bg: #E8E4DA;
  --icon: #C9C5BC;
  --ink: #1A1A1A;
}

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

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
}

#field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
  pointer-events: none;
}

.stage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.brand {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: clamp(56px, 12vw, 180px);
  letter-spacing: -0.04em;
  color: var(--ink);
  user-select: none;
  line-height: 1;
}
