/* ── HERO ── */
#wave-canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

#hero {
  position: relative;
  height: 100vh;
  background: var(--black);
  overflow: hidden;
}

.hero-left {
  position: absolute;
  top: 39%;
  left: 48px;
  transform: translateY(-50%);
  z-index: 3;
}

.hero-right {
  position: absolute;
  top: 41%;
  right: 48px;
  transform: translateY(-30%);
  text-align: right;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-sub {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-top: 20px;
  max-width: 320px;
  text-align: right;
}

.hero-bottom-text {
  position: absolute;
  bottom: 20px;
  left: 40px;
  right: 40px;
  text-align: center;
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.8;
  z-index: 3;
  margin: 0;
}

.hero-cta-bl {
  position: absolute;
  bottom: 30px;
  left: 70px;
  z-index: 3;
}

.hero-bottom-line {
  position: absolute;
  bottom: 96px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.hero-cube {
  position: absolute;
  bottom: 8px;
  right: 39px;
  width: 80px;
  height: 80px;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
}

.clip-wrap {
  overflow: hidden;
  line-height: 0.92;
}

.hw {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 108px);
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 0.88;
  display: block;
  will-change: transform;
}

/* Bottom bar */
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

.hero-center-text {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  max-width: 360px;
  line-height: 1.6;
}

