.home-showcase {
  --hs-bg: #18a7e6;
  --hs-text: #ffffff;
  --hs-max: 1384px;

  background: var(--hs-bg);
  color: var(--hs-text);
  position: relative;
  overflow: visible;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.home-showcase__container {
  max-width: var(--hs-max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.home-showcase__grid {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  position: relative;
}

.home-showcase__content {
  position: relative;
  z-index: 2;
  margin: 0 auto 0 0;
  max-width: 540px;
  top: -110px;
}

.home-showcase__subtitle {
  display: inline-block;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 10px;
}

.home-showcase__title {
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 20px 0;
  font-weight: 700;
  color: var(--hs-text);
}

.home-showcase__description {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  max-width: 520px;
  color: var(--hs-text);
}

.home-showcase__art {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.home-showcase__art-img {
  width: 100%;
  max-width: 1225px;
  height: auto;
  display: block;
}


/* SVG overlay positioned over the illustration */
.home-showcase__svg {
  width: 100%;
  max-width: 1245px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.home-showcase__svg img {
  width: 100%;
  height: auto;
  display: block;
}

/* Bottom image overlapping both sections */
.home-showcase__bottom {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 90%);
  z-index: 4;
  pointer-events: none;
}

.home-showcase__bottom-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.home-showcase__bottom-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  outline: 1px dashed rgba(255, 255, 255, 0.35);
}

/* Scroll hint arrow below the text content */
.home-showcase__scroll-hint {
  position: absolute;
  right: 0;
  bottom: 180px;
}

.home-showcase__scroll-line {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
}

.home-showcase__scroll-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .home-showcase {
    min-height: auto;
    padding: 60px 0;
  }

  .home-showcase__container {
    padding: 60px 20px 140px;
  }

  .home-showcase__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-showcase__content {
    max-width: none;
    text-align: center;
    top: 20px;
  }

  .home-showcase__description {
    max-width: none;
  }

  .home-showcase__art {
    justify-content: center;
  }

  .home-showcase__bottom {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 40px auto 0;
    width: min(500px, 90%);
  }

  .home-showcase__scroll-hint {
    margin: 24px auto 0;
  }
}

@media (max-width: 768px) {
  .home-showcase__container {
    padding: 40px 20px 100px;
  }

  .home-showcase__title {
    font-size: clamp(28px, 6vw, 40px);
    margin-bottom: 16px;
  }

  .home-showcase__description {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .home-showcase__bottom {
    width: 100%;
    margin-top: 30px;
  }
}


