Layer multiple elements with different clip-paths. Use opacity to create depth and complexity.
/* Layer multiple elements with different clip-paths */
.layer1 {
clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
opacity: 0.7;
}
.layer2 {
clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
opacity: 0.7;
}