.hero {
  position: relative;
  width: 100%;
  height: 520px;
  background: #f8fafc;
  overflow: hidden;
}

.canvas {
  position: absolute;
  left: 80px;
  top: 60px;
  width: 620px;
  height: 400px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
}

.sidebar {
  position: absolute;
  right: 60px;
  top: 60px;
  width: 200px;
  height: 400px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.widget {
  width: 100%;
  height: 72px;
  background: #fff;
  border: 2px solid #38bdf8;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.canvas .widget {
  position: absolute;
}

.cursor {
  position: absolute;
  font-size: 26px;
  pointer-events: none;
  z-index: 10;
}

.resize-handle {
  position: absolute;
  width: 14px;
  height: 14px;
  right: 12px;
  bottom: 12px;
  border-right: 2px solid #38bdf8;
  border-bottom: 2px solid #38bdf8;
  opacity: 0;
}