:root {
  --shell-width: 1300px;
  --ink: #171c2a;
  --deep-blue: #06155f;
  --page-bg: #ffffff;
  --footer-bg: #101728;
  --card-shadow: 0 18px 42px rgba(38, 95, 160, 0.13);
  --shadow-blue: 0 14px 30px rgba(57, 92, 255, 0.13);
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  scrollbar-color: #5365ff #eaf7ff;
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 1300px;
  color: var(--ink);
  background: var(--page-bg);
  font-family:
    "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #eaf7ff;
}

::-webkit-scrollbar-thumb {
  border: 2px solid #eaf7ff;
  border-radius: 999px;
  background: linear-gradient(180deg, #5365ff 0%, #28c9e8 100%);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #4658ef 0%, #17afd9 100%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, #5365ff 0%, #28c9e8 55%, #9b5cff 100%);
  box-shadow: 0 0 18px rgba(58, 117, 255, 0.38);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  transition: transform 0.08s linear;
}

.site-page {
  min-height: 100vh;
  overflow-x: hidden;
}

.shell {
  width: var(--shell-width);
  margin: 0 auto;
}

.hero-section {
  position: relative;
  height: 1190px;
  overflow: hidden;
  background: #e8f8ff url("023.jpg") center top / cover no-repeat;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 88px;
  transition:
    background-color 0.28s ease,
    box-shadow 0.28s ease,
    backdrop-filter 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(33, 61, 145, 0.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.22);
  backdrop-filter: blur(16px) saturate(1.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.brand {
  width: 228px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn,
.primary-cta {
  --button-c1: #0cc7b6;
  --button-c2: #008cff;
  --button-c3: #5f61ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(
    90deg,
    var(--button-c1),
    var(--button-c2),
    var(--button-c3),
    var(--button-c1)
  );
  background-size: 300% 100%;
  box-shadow: 0 10px 20px rgba(0, 142, 255, 0.22);
  animation: button-gradient-flow 4s linear infinite;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  will-change: transform;
}

.nav-btn:hover,
.nav-btn:focus-visible,
.primary-cta:hover,
.primary-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 142, 255, 0.3);
  outline: none;
}

.nav-btn:active,
.primary-cta:active {
  transform: translateY(1px);
}

.nav-btn {
  height: 40px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 15px;
}

.nav-btn-register {
  --button-c1: #0ac7b8;
  --button-c2: #09aee3;
  --button-c3: #0ac7b8;
  min-width: 100px;
}

.nav-btn-register:hover,
.nav-btn-register:focus-visible {
  --button-c1: #06aaa0;
  --button-c2: #078fc4;
  --button-c3: #059a93;
}

.nav-btn-download {
  --button-c1: #008cff;
  --button-c2: #366dff;
  --button-c3: #685dff;
  min-width: 110px;
}

.nav-btn-download:hover,
.nav-btn-download:focus-visible {
  --button-c1: #0074dc;
  --button-c2: #2759df;
  --button-c3: #574ade;
}

.primary-cta {
  --button-c1: #0cc7b6;
  --button-c2: #008cff;
  --button-c3: #665dff;
  width: 255px;
  height: 64px;
  border-radius: 999px;
  font-size: 24px;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  --button-c1: #08ada2;
  --button-c2: #0075df;
  --button-c3: #574bdc;
}

.hero-inner {
  position: absolute;
  top: 270px;
  left: 50%;
  z-index: 2;
  display: block;
  width: var(--shell-width);
  transform: translateX(-50%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 820px;
}

.hero-copy h1 {
  width: 708px;
  margin: 0;
  opacity: 0;
  animation: hero-copy-slide-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.08s
    forwards;
}

.hero-kicker {
  margin: 34px 0 0;
  color: #202633;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
  opacity: 0;
  animation: hero-copy-slide-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.28s
    forwards;
}

.hero-desc {
  margin: 38px 0 0;
  color: #4c5a73;
  font-size: 20px;
  line-height: 1.9;
  opacity: 0;
  animation: hero-copy-slide-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.48s
    forwards;
}

.hero-copy .primary-cta {
  margin-top: 48px;
}

.hero-art {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  width: 100%;
  height: 520px;
  pointer-events: none;
}

.hero-hand {
  position: absolute;
  top: -108px;
  left: 820px;
  z-index: 1111;
  opacity: 0;
  animation: hero-hand-slide-in 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.72s
    forwards;
}

.hero-ai {
  position: absolute;
  top: 0px;
  left: 787px;
  /* 1. 直接设定好最终的实际宽度 */
  width: 200px;
  z-index: 1000;

  /* 2. 初始状态：完全透明且缩小到0 */
  opacity: 0;
  transform: scale(0);

  /* 3. 动画结束后保持最终状态 */
  animation: hero-ai-slide-in 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.9s
    forwards;
}

.hero-ai-shine {
  position: absolute;
  top: -15px;
  left: 787px;
  z-index: 1001;
  width: 200px;
  opacity: 0;
  pointer-events: none;
  filter: brightness(2.45) saturate(1.22)
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.85));
  mix-blend-mode: screen;
  clip-path: polygon(-56% 0, -12% 0, 13% 100%, -31% 100%);
  animation: hero-ai-light-sweep 4s ease-in-out 2s infinite;
}

.feature-nav {
  position: absolute;
  top: 748px;
  left: 50%;
  z-index: 3;
  display: grid;
  width: var(--shell-width);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  transform: translateX(-50%);
}

.feature-card {
  min-width: 0;
  height: 170px;
  padding: 25px 14px 16px;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: scale(1.05);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}

.feature-card img {
  width: 66px;
  height: 66px;
  margin: 0 auto 0;
  object-fit: contain;
}

.feature-card h2 {
  margin: 0;
  color: var(--deep-blue);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.feature-card p {
  margin: 10px 0 0;
  color: #263668;
  font-size: 13px;
  line-height: 1.35;
}

.features-section {
  padding: 116px 0 0;
  background: #fff;
}

.section-heading {
  text-align: center;
}

.section-heading h2,
.advantage-heading h2 {
  margin: 0;
  color: #202532;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.25;
}

.section-heading p,
.advantage-heading p {
  margin: 16px 0 0;
  color: #9aa2b3;
  font-size: 17px;
  line-height: 1.6;
}

.feature-pairs {
  margin-top: 76px;
}

.feature-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 15px;
  align-items: start;
  margin-bottom: 126px;
}

.feature-pair img {
  width: 100%;
  aspect-ratio: 1440 / 1120;
  border-radius: 20px;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(-300px, 0, 0);
  transition:
    opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}

.feature-pair img:nth-of-type(2) {
  transform: translate3d(300px, 0, 0);
  transition-delay: 90ms;
}

.feature-pair.is-revealed img {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.pair-cta {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 22px;
}

.advantage-section {
  height: 724px;
  margin-top: 40px;
  padding: 78px 0 0;
  color: #fff;
  background: linear-gradient(105deg, #27c2d6 0%, #348eed 54%, #5368ff 100%);
}

.advantage-heading {
  text-align: center;
}

.advantage-heading h2,
.advantage-heading p {
  color: #fff;
}

.advantage-heading h2 {
  font-size: 40px;
  line-height: 50px;
}

.advantage-heading p {
  margin-top: 7px;
  font-size: 15px;
  line-height: 24px;
  opacity: 0.92;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 1300px;
  margin: 42px auto 0;
}

.advantage-grid article {
  display: flex;
  height: 210px;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 36px rgba(25, 76, 150, 0.1);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  will-change: transform;
}

.advantage-grid article:hover,
.advantage-grid article:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.advantage-grid img {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  object-fit: contain;
}

.advantage-grid h3 {
  margin: 0 0 12px;
  color: var(--deep-blue);
  font-size: 22px;
  font-weight: 900;
  line-height: 30px;
}

.advantage-grid p {
  margin: 0;
  color: #8e98ad;
  font-size: 13px;
  line-height: 28px;
}

.site-footer {
  min-height: 340px;
  padding-bottom: 28px;
  background: var(--footer-bg);
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 430px 430px 295px;
  column-gap: 30px;
  padding-top: 74px;
}

.footer-brand img {
  width: 270px;
  height: auto;
}

.footer-brand p {
  width: 360px;
  margin: 26px 0 0;
  color: #7280a1;
  font-size: 15px;
  line-height: 29px;
}

.footer-products h2,
.footer-contact h2 {
  margin: 0 0 21px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 13px;
  color: #7381a1;
  font-size: 15px;
  line-height: 20px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
}

.contact-row img {
  width: 110px;
  height: 110px;
  margin-right: 25px;
  border-radius: 8px;
}

.contact-row p {
  margin: 6px 0 0;
  color: #7381a1;
  font-size: 15px;
  line-height: 29px;
}

.footer-record {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: var(--shell-width);
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(188, 199, 229, 0.22);
  color: #b8c3df;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
}

.footer-record a {
  color: inherit;
  text-decoration: none;
}

.footer-record a:hover,
.footer-record a:focus-visible {
  color: #fff;
  outline: none;
}

.motion-reveal {
  --reveal-y: 36px;
  --reveal-scale: 0.985;
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
  font-size: 16px;
}

.motion-reveal.is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.advantage-heading p.motion-reveal.is-revealed {
  opacity: 0.92;
}

.hero-copy .primary-cta.motion-reveal {
  --reveal-y: 22px;
  --reveal-scale: 0.995;
}

.pair-cta.motion-reveal {
  --reveal-y: 24px;
  --reveal-scale: 0.99;
}

.feature-card.motion-reveal,
.features-section .section-heading.motion-reveal,
.advantage-grid article.motion-reveal {
  --reveal-y: 30px;
  --reveal-scale: 0.965;
}

.advantage-heading > .motion-reveal,
.footer-brand.motion-reveal,
.footer-products.motion-reveal,
.footer-contact.motion-reveal {
  --reveal-y: 28px;
}

.feature-card.motion-reveal.is-revealed:hover,
.feature-card.motion-reveal.is-revealed:focus-within {
  transform: translateY(-4px);
}

.primary-cta.motion-reveal.is-revealed:hover,
.primary-cta.motion-reveal.is-revealed:focus-visible {
  transform: translateY(-2px);
}

.primary-cta.motion-reveal.is-revealed:active {
  transform: translateY(1px);
}

.advantage-grid article.motion-reveal.is-revealed:hover,
.advantage-grid article.motion-reveal.is-revealed:focus-within {
  transform: translateY(-2px);
}

@keyframes hero-copy-slide-in {
  from {
    opacity: 0;
    transform: translateX(-300px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero-hand-slide-in {
  from {
    opacity: 0;
    transform: translate(220px, 168px);
  }

  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes hero-ai-light-sweep {
  0%,
  44% {
    opacity: 0;
    clip-path: polygon(-56% 0, -12% 0, 13% 100%, -31% 100%);
  }

  50% {
    opacity: 0.95;
  }

  62%,
  100% {
    opacity: 0;
    clip-path: polygon(88% 0, 132% 0, 157% 100%, 113% 100%);
  }
}

@keyframes button-gradient-flow {
  to {
    background-position: 300% 0;
  }
}

@keyframes hero-ai-slide-in {
  to {
    opacity: 1;
    /* 4. 最终状态：正常大小显示 */
    transform: scale(1);
  }
}
