@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Geist+Mono:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");

::-webkit-scrollbar {
  display: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  font-family: "Bebas Neue";
  position: relative;
  width: 100%;
  height: 710vh;
  background-color: #0a0a0a;
  color: #ffffff;
  z-index: 1;
}

.about-hero {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}
.about-copy {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.copy-block {
  flex: 1;
}
.copy-block p {
  font-size: 2.4vw;
  font-weight: 450;
  letter-spacing: -0.025rem;
  line-height: 1.2;
  will-change: transform;
}
.copy-block p .word {
  will-change: transform;
}
.scroll-indicator {
  background-color: #2f2f2f;
  position: absolute;
  width: 10rem;
  height: 0.1rem;
  top: 2rem;
  right: 2rem;
  will-change: transform;
}
.scroll-indicator::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform-origin: left;
  transform: scale(var(--progress, 0));
  will-change: transform;
}
.potrait-container {
  width: 20vw;
  height: 50vh;
  overflow: hidden;
  border-radius: 1%;
  position: absolute;
  top: 80%;
  left: 50%;
  scale: 2;

  transform: translate(-30%, -50%);
}
.potrait-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.2);

  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 45%,
    rgba(0, 0, 0, 0.6) 65%,
    rgba(0, 0, 0, 0.2) 80%,
    rgba(0, 0, 0, 0) 100%
  );

  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 45%,
    rgba(0, 0, 0, 0.6) 65%,
    rgba(0, 0, 0, 0.2) 80%,
    rgba(0, 0, 0, 0) 100%
  );
}

.marquee {
  position: absolute;
  left: 0;
  bottom: 2rem;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  transform: rotate(-4deg);
  transform-origin: center;
  background-color: #fafaf0;
  opacity: 0.65;
}
.marquee-track {
  display: flex;
  gap: 0.75rem;
  will-change: transform;
}
.marquee-item {
  width: 10rem;
  height: 6rem;
  border-radius: 0.25rem;
  overflow: hidden;
}
.marquee-text {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: max-content;
  font-family: "bebas neue";
  font-weight: 900;
  font-size: clamp(3.5rem, 10vw, 6.1rem);
  line-height: 1;
  color: #0a0a0a;
  white-space: nowrap;
}
@media (max-width: 1000px) {
  .copy-block p {
    font-size: clamp(1.4rem, 5.8vw, 1.8rem);

    line-height: 1.3;
    text-align: center;
  }

  .about-copy {
    gap: 1.25rem;
    flex-direction: column;
  }
  .container {
    height: 420vh;
  }
  .potrait-container {
    width: 55vw;
    height: 40vh;
    scale: 1.4;
    top: 70%;
  }
}
