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

html {
  background: #0b0c0e;
}

body {
  background: transparent;
  color: #f4f1e8;
  font-family: system-ui;
  overflow: hidden;
}

.wrapper {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 1.5rem 3rem;
  box-sizing: border-box;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  position: relative;
  z-index: 2;
}

.subtitle {
  opacity: 0.7;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(60px, 12vw, 180px);
  font-weight: 600;
}

.canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

/* floating shapes */
.shape {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff6ec7, #6ee7ff);
  opacity: 0.9;
}