.home-hero {
  background: linear-gradient(180deg, #080a08 0%, #060906 62%, #07110b 100%);
}

.home-hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transform-origin: 50% 50%;
  will-change: transform, opacity, filter;
}

.home-hero-canvas {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.home-hero .hero-shade {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 10, 8, 0.22) 0%, rgba(8, 10, 8, 0.02) 36%, rgba(8, 10, 8, 0.06) 68%, rgba(8, 10, 8, 0.28) 100%),
    linear-gradient(90deg, rgba(8, 10, 8, 0.08), rgba(8, 10, 8, 0), rgba(8, 10, 8, 0.08));
}

.home-hero .home-hero-shell {
  position: relative;
  z-index: 3;
  justify-content: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.home-hero .home-hero-copy {
  display: flex;
  width: min(100%, 900px);
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-hero .home-hero-kicker {
  display: block;
  width: 100%;
  margin: 0 0 22px;
  color: #4ade80;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0 !important;
  text-align: center;
}

.home-hero .hero-title {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  font-size: 80px;
  font-family: "Noto Sans SC", "HarmonyOS Sans SC", "PingFang SC", sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0 !important;
  text-align: center;
  text-wrap: pretty;
  filter: drop-shadow(0 3px 18px rgba(0, 0, 0, 0.72));
}

.home-hero .hero-title-line {
  display: block;
  width: 100%;
  overflow: hidden;
  padding-bottom: 0.05em;
  margin-bottom: -0.05em;
  text-align: center;
}

.home-hero .hero-title-line > span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 12%, #d6ded8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  will-change: transform, opacity, filter;
}

.home-hero .hero-title-line > .accent {
  color: transparent;
  background: linear-gradient(105deg, #a1ffc1 0%, #00ff66 48%, #35dca2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-hero .home-hero-subtitle {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
  color: rgba(242, 245, 242, 0.9);
  font-size: 18px !important;
  font-weight: 500;
  line-height: 1.65;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.95);
}

.home-hero .home-hero-description {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 14px;
  color: rgba(167, 176, 170, 0.78);
  font-size: 15px !important;
  font-weight: 400;
  line-height: 1.75;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.92), 0 1px 3px rgba(0, 0, 0, 0.95);
}

.home-hero .home-hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.home-hero .home-hero-actions .btn {
  min-height: 46px;
  border-radius: 3px;
  transition: border-color 220ms ease, background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.home-hero .home-hero-actions .btn-primary {
  border: 1px solid #00ff66;
  background: #00ff66;
  color: #041008;
  box-shadow: none;
}

.home-hero .home-hero-actions .btn-primary:hover {
  border-color: #61ff9f;
  background: #61ff9f;
  transform: translateY(-2px);
}

.home-hero .home-hero-actions .btn-dark {
  border: 1px solid rgba(242, 245, 242, 0.3);
  background: rgba(8, 10, 8, 0.38);
  color: #f2f5f2;
}

.home-hero .home-hero-actions .btn-dark:hover {
  border-color: rgba(74, 222, 128, 0.72);
  background: rgba(74, 222, 128, 0.08);
  transform: translateY(-2px);
}

.home-hero .home-hero-actions .btn:focus-visible {
  outline: 2px solid #f2f5f2;
  outline-offset: 4px;
}

.home-hero .home-hero-rule {
  background: rgba(0, 255, 102, 0.34);
}

@media (max-width: 1199px) {
  .home-hero .hero-title {
    max-width: 760px;
    font-size: 60px;
  }

  .home-hero .home-hero-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .home-hero .home-hero-shell {
    align-items: center;
    padding-top: 96px;
    padding-bottom: 54px;
  }

  .home-hero .home-hero-visual {
    opacity: 0.94;
  }

  .home-hero .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 10, 8, 0.2) 0%, rgba(8, 10, 8, 0.03) 34%, rgba(8, 10, 8, 0.08) 70%, rgba(8, 10, 8, 0.3) 100%),
      linear-gradient(90deg, rgba(8, 10, 8, 0.08), rgba(8, 10, 8, 0), rgba(8, 10, 8, 0.08));
  }

  .home-hero .home-hero-copy {
    max-width: 620px;
  }

  .home-hero .home-hero-kicker {
    margin-bottom: 16px;
  }

  .home-hero .hero-title {
    max-width: 620px;
    font-size: 48px;
    line-height: 1.04;
  }

  .home-hero .home-hero-subtitle {
    margin-top: 22px;
    font-size: 17px !important;
    line-height: 1.6;
  }

  .home-hero .home-hero-description {
    max-width: 520px;
    margin-top: 12px;
    line-height: 1.68;
  }

  .home-hero .home-hero-actions {
    margin-top: 28px;
  }
}

@media (max-width: 480px) {
  .home-hero .hero-title {
    font-size: 40px;
  }

  .home-hero .home-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .home-hero .home-hero-actions .btn {
    width: 100%;
    min-width: 0;
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-visual,
  .home-hero .home-hero-copy,
  .home-hero .home-hero-actions .btn {
    transform: none !important;
    transition: none !important;
  }
}
