.hero {
  background-color: rgb(255 255 255);
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  gap: 1rem;

  background:
  linear-gradient(180deg, #FFFF 0%, #FFF0 25%, #FFFF 80%) 0 0 / 100dvw 100dvh,
  conic-gradient(from 90deg at 1px 1px, rgba(155, 154, 154, 0) 90deg, #E8E8E8 0) center -1px / 60px 60px;
}

@media (min-width: 1024px) {
  .hero-wrapper{
    flex-direction: row;
    justify-content: space-between;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .hero-content{
    max-width: 60%;
  }
}

.hero-content h1 {
  /*max-w-2xl*/
  max-width: 42rem;
  /*text-4xl*/
  font-size: 2.25rem;
  line-height: 2.5rem;
  /*font-extrabold*/
  font-weight: 800;
  /*tracking-tight*/
  letter-spacing: -0.025em;
  /*leading-none*/
  line-height: 1;
  /*mb-4*/
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-content h1 {
    /*md:text-5xl*/
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  .hero-content h1 {
    /*xl:text-6xl*/
    font-size: 3.75rem;
    line-height: 1;
  }
}

.hero-content h1 span {
  color: var(--primary-color);
}

.subtext {
  /*font-light*/
  font-weight: 300;
  color: rgb(107 114 128);
  /*max-w-2xl*/
  max-width: 42rem;
}

@media (min-width: 1024px) {
  .subtext {
    /*lg:text-xl*/
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 768px) {
  .subtext {
    /*md:text-lg*/
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.benefits {
  list-style: none;
  padding: 0;
}

.benefits li {
  display: flex;
  color: rgb(107 114 128);
  font-size: 1.1rem;
  margin: 8px 0;
  align-items: center;
  gap: 10px;
}

.benefits li:before {
  content: "";
  margin-top: 4px;
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border: 3px solid  rgb(var(--lighter-primary-color-rgb));
  border-radius: 50%;
  flex-shrink: 0;
}

.cta-btn {
  display: flex;
  max-width: 250px;
  background-color: var(--primary-color);
  color: white;
  font-size: 1.2rem;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
}

.cta-btn:hover {
  background-color: var(--darker-primary-color);
}

.users {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.user-avatars {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.user-avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: -20px;
  border: 2px solid white;
}

.user-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgb(var(--lighter-primary-color-rgb)/.8);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 9999px;
}

.hero-image-container {
  display: none;
  position: relative;
}

@media (min-width: 768px) {
  .hero-image-container {
    display: flex;
    flex-grow: 1;
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 500px;
}

.pencil {
  position: absolute;
  bottom: -5px;
  right: 10px;
  width: 200px;
}

.things {
  position: absolute;
  left: -20px;
  bottom: -30px;
  height: 200px;
  width: 200px;
}