.hxnl-page {
  padding: 90px 0 64px;
  background:
    radial-gradient(
      circle at 12% -8%,
      rgba(88, 124, 255, 0.18) 0,
      rgba(88, 124, 255, 0) 44%
    ),
    radial-gradient(
      circle at 90% 12%,
      rgba(30, 213, 191, 0.18) 0,
      rgba(30, 213, 191, 0) 46%
    ),
    linear-gradient(180deg, #f3f8ff 0%, #f8fbff 42%, #ffffff 100%);
}

.hxnl-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.hxnl-hero {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 24px;
}

.hxnl-hero-content {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #0b5c52;
  background-image:
    linear-gradient(128deg, #063a35 0%, #0b6b5f 48%, #18a88f 100%),
    radial-gradient(
      circle at 82% 22%,
      rgba(140, 255, 228, 0.28) 0%,
      rgba(140, 255, 228, 0) 42%
    ),
    radial-gradient(
      circle at 12% 68%,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0) 38%
    );
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0;
  box-shadow: 0 16px 36px rgba(8, 58, 50, 0.22);
  animation: hxnl-fade-up 0.7s ease both;
}

.hxnl-hero-inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 118px 100px 122px;
}

.hxnl-hero-content::before,
.hxnl-hero-content::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hxnl-hero-content::before {
  inset: -15% -5%;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(180, 255, 235, 0.35) 0%,
      rgba(180, 255, 235, 0) 24%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0) 20%
    );
  animation: hxnl-glow-drift 10s ease-in-out infinite;
}

.hxnl-hero-content > * {
  position: relative;
  z-index: 2;
}

.hxnl-title {
  margin: 0;
  font-size: 60px;
  line-height: 1.25;
  font-weight: 700;
  color: #f8fffd;
  position: relative;
  padding-left: 18px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(4, 40, 34, 0.28);
  animation: hxnl-slide-in 0.75s ease both;
}

.hxnl-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 60px;
  border-radius: 6px;
  background: linear-gradient(180deg, #ffffff, #8ef5dc);
}

.hxnl-intro {
  margin-top: 20px;
  max-width: 960px;
  color: rgba(241, 255, 251, 0.96);
  line-height: 1.9;
  font-size: 20px;
  word-break: break-word;
  text-shadow: 0 1px 4px rgba(4, 36, 30, 0.22);
  animation: hxnl-fade-up 0.9s ease both;
}

.hxnl-intro p {
  color: inherit;
}

.hxnl-intro p:last-child {
  margin-bottom: 0;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hxnl-title {
    background-image: linear-gradient(
      100deg,
      #ffffff 0%,
      #b8f5e8 38%,
      #ffffff 55%,
      #d4fff4 78%,
      #ffffff 100%
    );
    background-size: 220% 100%;
    animation:
      hxnl-slide-in 0.75s ease both,
      hxnl-text-shine 7s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hxnl-intro {
    background: none;
    -webkit-text-fill-color: initial;
  }
}

.hxnl-image-box {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dce6f8;
  background: #f7f9fc;
  box-shadow: 0 14px 30px rgba(25, 56, 129, 0.12);
}

.hxnl-image-box img {
  width: 100%;
  display: block;
}

.hxnl-empty {
  color: #7a869f;
  text-align: center;
  padding: 60px 16px;
  font-size: 16px;
}

@media (max-width: 1199px) {
  .hxnl-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .hxnl-page {
    padding: 60px 0 48px;
  }

  .hxnl-wrap {
    padding: 0 12px;
  }

  .hxnl-hero-content {
    padding: 0;
  }

  .hxnl-hero-inner {
    padding: 22px 16px 44px;
  }

  .hxnl-title {
    font-size: 24px;
    padding-left: 13px;
  }

  .hxnl-title::before {
    top: 6px;
    width: 5px;
    height: 26px;
  }

  .hxnl-intro {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.8;
  }

  .hxnl-image-box {
    margin-top: 16px;
    border-radius: 12px;
  }
}

@keyframes hxnl-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hxnl-slide-in {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hxnl-glow-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translate3d(1.5%, -1.2%, 0) scale(1.03);
    opacity: 1;
  }
}

@keyframes hxnl-text-shine {
  from {
    background-position: 0% 0;
  }
  to {
    background-position: 220% 0;
  }
}
