html, body {
  margin: 0;
  min-height: 100%;
  background: #07050d;
  color: #f5f1ff;
  font-family: Inter, system-ui, sans-serif;
}

#hex-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 24px;
}

.eyebrow {
  color: #9f86ff;
  letter-spacing: 0.22em;
  font-weight: 700;
}

h1 {
  font-size: clamp(64px, 12vw, 140px);
  margin: 0;
}

.subtitle {
  font-size: 22px;
  color: #c8bee9;
}

article {
  background: rgba(15, 12, 25, 0.68);
  border: 1px solid rgba(150, 120, 255, 0.22);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(12px);
}

/* Prevent selecting/dragging background on mobile */
@media (hover: none) and (pointer: coarse) {
  #hex-bg {
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
  }
}
