.hero .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-copy {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-cards {
  width: 40%;
  display: flex;
  gap: 1rem;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.about-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-dark);
  color: var(--accent);
  clip-path: polygon(0% 50%, 100% 50%, 100% 50%, 0% 50%);
  will-change: clip-path;
}

.about-header h1 {
  font-family: "Osgard Pro";
  font-size: 25vw;
  letter-spacing: -0.02em;
  line-height: 80%;
  margin-top: 2rem;
  transform: scale(0.75);
  opacity: 0;
  will-change: transform, opacity;
}

@media (max-width: 900px) {
  .hero-footer {
    flex-direction: column;
    gap: 4rem;
  }

  .hero-copy,
  .hero-cards {
    width: 100%;
  }
}

#canvas3d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
