.hero-section {
  background-color: #f3f3f3;
}

.welwrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.welinfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 4.5rem 1rem 5rem;
  box-sizing: border-box;
  text-align: center;
}

.hero-title {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;

  background: linear-gradient(
    135deg,
    #3a3f6a 0%,
    #32279d 55%,
    #705ef4 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 624px;
  margin: 1rem 0 0;
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 400;
  color: #666666;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 1.75rem;
}

.hero-cta .btn {
  align-self: auto;
}

.work-section {
  background: linear-gradient(
    135deg,
    #0b0f1a 0%,
    #14122a 38%,
    #1b1333 68%,
    #0a0a12 100%
  );
}

.prowrap {
  width: 100%;
}

.fiftywrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  color: #ffffff;
}

.hlf {
  box-sizing: border-box;
  width: 50%;
  padding: 2.5rem 2rem;
}

.image-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  min-height: 520px;
}

.image-panel::before {
  content: "";
  position: absolute;
  left: 48%;
  top: 50%;
  width: min(42rem, 88%);
  aspect-ratio: 1.28 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.62;

  background:
    radial-gradient(
      ellipse at center,
      rgba(126, 110, 255, 0.16) 0%,
      rgba(93, 77, 214, 0.10) 34%,
      rgba(50, 39, 157, 0.05) 58%,
      rgba(10, 10, 18, 0) 78%
    ),
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1.2px
    );

  background-size:
    100% 100%,
    18px 18px;
  background-position:
    center,
    center;

  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 52%,
    rgba(0, 0, 0, 0.7) 68%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 52%,
    rgba(0, 0, 0, 0.7) 68%,
    rgba(0, 0, 0, 0) 100%
  );
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 36% 48%,
    rgba(88, 72, 235, 0.10),
    transparent 42%
  );
}

.image-panel img {
  position: relative;
  z-index: 1;
  display: block;
  max-width: min(100%, 580px);
  width: 100%;
  height: auto;
}

.text-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.text-panel h2 {
  max-width: 320px;
  margin: 0 0 1rem;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.text-panel p {
  max-width: 520px;
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.text-panel .btn {
  align-self: flex-start;
}

@media only screen and (max-width: 767px) {
  .welinfo {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem 1rem 2.75rem;
    text-align: left;
  }

  .hero-title,
  .hero-sub {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-sub {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .hero-cta {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 1.5rem;
  }

  .fiftywrap {
    flex-direction: column;
  }

  .hlf {
    width: 100%;
    padding: 1.5rem 1rem;
  }

  .image-panel {
    min-height: 360px;
    padding-bottom: 0.5rem;
  }

  .image-panel::before {
    left: 50%;
    width: min(34rem, 96%);
    background-size:
      100% 100%,
      16px 16px;
    opacity: 0.56;
  }

  .image-panel img {
    max-width: 100%;
  }

  .text-panel h2,
  .text-panel p {
    max-width: 100%;
  }
}