:root {
  --bg: #000;
  --text: #fff;
  --muted: #c8cbd6;
  --cyan: #00caf4;
  --violet: #ad46ff;
  --pink: #f4359e;
  --green: #05df72;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", "Noto Sans SC", sans-serif;
}

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

.site-shell {
  background:
    radial-gradient(circle at 10% 75%, rgba(0, 202, 244, 0.35), transparent 24%),
    radial-gradient(circle at 72% 77%, rgba(173, 70, 255, 0.3), transparent 24%),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.018) 0,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 6px
    ),
    #000;
}

.container {
  width: min(1260px, calc(100vw - 80px));
  margin: 0 auto;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  height: 100px;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  box-shadow: none;
  transition:
    background 300ms ease,
    border-color 300ms ease,
    backdrop-filter 300ms ease,
    box-shadow 300ms ease;
}

.navbar::after {
  content: none;
}

.navbar.navbar-hero {
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  box-shadow: none;
}

.navbar.navbar-hero::after {
  content: none;
}

.nav-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .brand,
.navbar .menu {
  transition:
    opacity 300ms ease,
    transform 300ms ease,
    max-width 300ms ease,
    margin 300ms ease;
}

.navbar.navbar-compact .nav-inner {
  justify-content: flex-end;
}

.navbar.navbar-compact .brand,
.navbar.navbar-compact .menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-width: 0;
  margin: 0;
  overflow: hidden;
  transform: translateY(-4px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.brand-image {
  width: 164px;
  height: 40px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.brand.small {
  font-size: 14px;
}

.brand-logo {
  width: 26px;
  height: 26px;
  position: relative;
  display: block;
}

.logo-slice {
  position: absolute;
  overflow: hidden;
}

.logo-slice.s1 {
  top: 23.91%;
  right: 35.54%;
  bottom: 19.56%;
  left: 20.11%;
}

.logo-slice.s2 {
  top: 23.91%;
  right: 0;
  bottom: 19.56%;
  left: 55.65%;
}

.logo-slice.s3 {
  top: 23.91%;
  right: 55.65%;
  bottom: 19.56%;
  left: 0;
}

.logo-slice img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.menu {
  font-size: 16px;
}

.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu-list li {
  display: inline-flex;
}

.menu .active a {
  color: var(--cyan);
}

.menu .is-active a {
  color: var(--cyan);
}

.menu a:hover {
  color: var(--cyan);
}

.nav-cta {
  position: relative;
  overflow: hidden;
  width: 120px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--cyan);
  background: linear-gradient(
    90deg,
    rgba(0, 202, 244, 0.22),
    rgba(173, 70, 255, 0.22),
    rgba(244, 53, 158, 0.22)
  );
  background-size: 140% 100%;
  background-position: 0% 50%;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(-10px);
  box-shadow: 0 0 0 rgba(0, 202, 244, 0);
  transition:
    opacity 360ms ease-in-out,
    transform 360ms ease-in-out,
    background-position 360ms ease-in-out,
    border-color 360ms ease-in-out,
    box-shadow 360ms ease-in-out,
    filter 360ms ease-in-out;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.14) 50%,
    rgba(255, 255, 255, 0.08) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-140%);
  opacity: 0;
  transition:
    transform 360ms ease-in-out,
    opacity 360ms ease-in-out;
  pointer-events: none;
}

.nav-cta.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.nav-cta.is-scrolled {
  border-color: rgba(0, 202, 244, 0.92);
  background: linear-gradient(
    90deg,
    rgba(0, 202, 244, 0.28),
    rgba(173, 70, 255, 0.3),
    rgba(244, 53, 158, 0.3)
  );
  box-shadow:
    0 0 12px rgba(173, 70, 255, 0.16),
    0 0 24px rgba(0, 202, 244, 0.12);
}

.nav-cta:hover {
  transform: translateY(0) scale(1.03);
  border-color: rgba(0, 202, 244, 1);
  background-position: 100% 50%;
  box-shadow:
    0 0 14px rgba(173, 70, 255, 0.2),
    0 0 28px rgba(0, 202, 244, 0.16);
  filter: brightness(1.05) saturate(1.06);
}

.nav-cta:hover::before {
  transform: translateX(140%);
  opacity: 1;
}

.nav-cta:active {
  transform: translateY(0) scale(0.96);
}

.nav-cta span {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, var(--cyan), var(--violet) 48.077%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 16px;
}

#fullpage .section {
  position: relative;
}

#fullpage > .section:not(.fp-auto-height) {
  min-height: 980px;
}

.section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  min-height: 980px;
  overflow: hidden;
  background: #02030b;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}

.hero-aurora canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 320px;
  background: radial-gradient(
    120% 120% at 50% 100%,
    rgba(0, 0, 0, 0.26) 0%,
    rgba(0, 0, 0, 0.18) 30%,
    rgba(0, 0, 0, 0.08) 58%,
    rgba(0, 0, 0, 0) 88%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 196px;
  text-align: center;
}

.hero-pill {
  width: fit-content;
  height: 40px;
  margin: 0 auto 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.hero-pill i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 4.2vw, 80px);
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--cyan), var(--violet) 48.077%, var(--pink));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: title-gradient-flow 3.6s ease-in-out infinite;
  transition: filter 260ms ease;
}

.hero h1:hover span {
  filter: brightness(1.18);
}

@keyframes title-gradient-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  width: min(988px, 100%);
  margin: 26px auto 0;
  color: #d4d8e3;
  font-size: 20px;
  line-height: 36px;
}

.hero-actions {
  margin-top: 72px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.hero-scroll-indicator {
  width: 24px;
  height: 40px;
  margin: 0;
  position: absolute;
  left: 50%;
  bottom: 56px;
  margin-left: -12px;
  z-index: 3;
  border-radius: 12.5px;
  border: 2px solid rgba(173, 70, 255, 0.95);
  background: #000;
  box-shadow:
    0 4px 4px rgba(0, 0, 0, 0.25),
    0 0 6px 2px rgba(173, 70, 255, 0.6),
    inset 0 0 6px 2px rgba(173, 70, 255, 0.6);
  display: block;
  opacity: 1;
  transition:
    opacity 320ms ease,
    transform 320ms ease;
  animation: scroll-breathe 2.4s ease-in-out infinite;
}

.hero-scroll-indicator::after {
  content: none;
}

.hero-scroll-indicator.is-faded {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
}

.hero-scroll-wheel {
  position: absolute;
  left: 50%;
  top: 20%;
  width: 4px;
  height: 10px;
  margin-left: -2px;
  border-radius: 6px;
  background: #ad46ff;
  box-shadow: 0 0 6px 2px rgba(173, 70, 255, 0.6);
  transform: translateY(0);
  animation: scroll-wheel-breathe 1.8s ease-in-out infinite;
}

@keyframes scroll-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 4px 4px rgba(0, 0, 0, 0.25),
      0 0 6px 2px rgba(173, 70, 255, 0.55),
      inset 0 0 6px 2px rgba(173, 70, 255, 0.55);
  }
  50% {
    transform: translateY(8px) scale(1.06);
    box-shadow:
      0 6px 10px rgba(0, 0, 0, 0.32),
      0 0 12px 4px rgba(173, 70, 255, 0.75),
      inset 0 0 9px 3px rgba(173, 70, 255, 0.72);
  }
}

@keyframes scroll-wheel-breathe {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.72;
  }
  50% {
    transform: translateY(9px);
    opacity: 1;
  }
}

.btn {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: grid;
  place-items: center;
  text-align: center;
  isolation: isolate;
  transform: scale(1);
  transition:
    transform 180ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.btn-primary {
  width: 180px;
  height: 50px;
  border: 1px solid var(--cyan);
  background: linear-gradient(
    90deg,
    rgba(0, 202, 244, 0.2),
    rgba(173, 70, 255, 0.2) 48.077%,
    rgba(244, 53, 158, 0.2)
  );
  box-shadow: 0 0 10px 0 rgba(181, 68, 244, 0.95);
}

.btn-secondary {
  width: 140px;
  height: 50px;
  border: 1px solid rgba(0, 202, 244, 0.6);
  background: linear-gradient(
    90deg,
    rgba(0, 202, 244, 0.2),
    rgba(173, 70, 255, 0.2) 48.077%,
    rgba(244, 53, 158, 0.2)
  );
  box-shadow: 0 0 10px 0 rgba(181, 68, 244, 0.95);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, var(--cyan), var(--violet), var(--pink), var(--cyan));
  background-size: 240% 100%;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.68;
  animation: cta-border-flow 3.2s linear infinite;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.24);
}

.btn:hover {
  transform: scale(1.05);
  filter: brightness(1.12);
  box-shadow: 0 0 18px 2px rgba(181, 68, 244, 0.9);
}

.btn:active {
  transform: scale(0.96);
}

.btn > span:not(.btn-ripple) {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, var(--cyan), var(--violet) 48.077%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 20px;
  line-height: 20px;
}

.btn-ripple {
  position: absolute;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72) 0%, rgba(0, 202, 244, 0.32) 42%, rgba(173, 70, 255, 0) 72%);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: cta-ripple 620ms ease-out forwards;
}

@keyframes cta-border-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 240% 50%;
  }
}

@keyframes cta-ripple {
  0% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 span,
  .hero-scroll-indicator,
  .hero-scroll-wheel,
  .nav-cta,
  .nav-cta::before,
  .btn::before,
  .btn-ripple {
    animation-duration: 1ms;
    animation-iteration-count: 1;
  }

  .btn,
  .nav-cta,
  .hero-scroll-indicator,
  .feature-card,
  .feature-icon,
  .feature-icon img {
    transition-duration: 1ms;
    transition-delay: 0ms;
  }

  .features.reveal-ready .feature-card {
    opacity: 1;
    transform: none;
  }
}

.features {
  background: rgba(0, 0, 0, 0.4);
}

.features .container,
.scene .container {
  padding-top: 145px;
}

.features h2,
.scene h2,
.cta h2 {
  margin: 0;
  text-align: center;
  font-size: 50px;
  line-height: 50px;
  font-weight: 700;
}

.features h2 span,
.scene h2 span,
.cta h2 span {
  background: linear-gradient(90deg, var(--cyan), var(--violet) 48.077%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-desc {
  margin: 20px 0 0;
  color: #d4d8e3;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
}

.feature-grid {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(3, 400px);
  gap: 30px;
  justify-content: center;
}

.feature-card {
  position: relative;
  width: 400px;
  min-height: 248px;
  border-radius: 40px;
  border: 2px solid rgba(0, 202, 244, 0.2);
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
  padding: 30px;
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
  transition-delay: var(--feature-delay, 0ms);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    220px circle at var(--x, 50%) var(--y, 50%),
    rgba(0, 202, 244, 0.22) 0%,
    rgba(0, 202, 244, 0.14) 16%,
    rgba(173, 70, 255, 0.1) 34%,
    rgba(244, 53, 158, 0.05) 52%,
    rgba(255, 255, 255, 0) 72%
  );
  transition: opacity 180ms ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    200px ellipse at var(--x, 50%) var(--y, 50%),
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.08) 24%,
    rgba(173, 70, 255, 0.05) 46%,
    rgba(255, 255, 255, 0) 68%
  );
  mix-blend-mode: screen;
  transition: opacity 180ms ease;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 202, 244, 0.6);
  box-shadow: 0 14px 30px rgba(173, 70, 255, 0.08);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover::after {
  opacity: 1;
}

.features.reveal-ready .feature-card {
  opacity: 0;
  transform: translateY(30px);
}

.features.reveal-ready .feature-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  transform: rotate(0) scale(1);
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 260ms ease,
    filter 260ms ease;
  will-change: transform;
}

.feature-card:hover .feature-icon {
  transform: rotate(5deg) scale(1.1);
  filter: brightness(1.12);
  box-shadow: 0 10px 26px rgba(173, 70, 255, 0.24);
}

.feature-icon img {
  width: 20px;
  height: 20px;
  transition: transform 260ms ease;
}

.feature-card:hover .feature-icon img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .feature-card::before,
  .feature-card::after,
  .feature-icon,
  .feature-icon img {
    transition-duration: 1ms;
    transition-delay: 0ms;
  }

  .features.reveal-ready .feature-card {
    opacity: 1;
    transform: none;
  }
}

.box-purple {
  background: linear-gradient(-45deg, #4d83ff 0%, #9b3cff 100%);
}

.box-cyan {
  background: linear-gradient(-45deg, #00b4df 0%, #2385ff 100%);
}

.feature-card h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  transform: scale(0.62);
  transform-origin: left top;
  width: 160%;
}

.feature-card p {
  margin: 8px 0 0;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
}

.modules {
  position: relative;
  overflow: hidden;
  background: #000000;
}

.module-bg-layer {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1920px;
  height: 980px;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.module-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
  filter: none;
  z-index: 1;
}

.module-blob-left {
  width: 586px;
  height: 586px;
  left: -106px;
  top: 202px;
  background: linear-gradient(270deg, #00caf4 0%, #05df72 100%);
}

.module-blob-right {
  width: 372px;
  height: 372px;
  right: 135px;
  top: 451px;
  background: linear-gradient(90deg, #f4359e 0%, #ad46ff 51.923%, #00caf4 100%);
}

.module-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1920px;
  height: 980px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  pointer-events: none;
  z-index: 2;
}

.modules .container {
  position: relative;
  z-index: 3;
  padding-top: 200px;
}

.module-carousel {
  position: relative;
  width: 100%;
}

.module-viewport {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -56px;
  margin-bottom: -56px;
  padding-top: 56px;
  padding-bottom: 56px;
  overflow: hidden;
  min-height: 540px;
}

.module-track {
  display: flex;
  width: 100vw;
  min-height: inherit;
  transition: transform 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.module-slide {
  --module-accent: #ad46ff;
  --module-pill-bg: rgba(173, 70, 255, 0.4);
  --module-title-gradient: linear-gradient(90deg, #00caf4 0%, #ad46ff 48.077%, #f4359e 100%);
  flex: 0 0 100vw;
  display: flex;
  justify-content: center;
}

.module-slide.is-active {
  display: flex;
}

.module-slide-inner {
  width: min(1260px, calc(100vw - 80px));
  display: grid;
  grid-template-columns: 590px 630px;
  gap: 40px;
  align-items: center;
}

.module-slide.module-theme-green {
  --module-accent: #05df72;
  --module-pill-bg: rgba(0, 136, 68, 0.4);
  --module-title-gradient: linear-gradient(270deg, #00caf4 0%, #05df72 100%);
}

.module-tag {
  width: fit-content;
  height: 40px;
  margin: 0 0 34px;
  border-radius: 21px;
  border: 1px solid var(--module-accent);
  color: var(--module-accent);
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.module-tag i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--module-accent);
}

.module-left h2 {
  margin: 0;
  background: var(--module-title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 60px;
  line-height: 60px;
}

.module-desc {
  margin: 20px 0 42px;
  color: #ccc;
  font-size: 20px;
  line-height: 40px;
}

.module-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.module-list li {
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  line-height: 16px;
  padding: 4px 8px 4px 0;
  cursor: default;
  transition:
    color 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.module-list li.is-code-active,
.module-list li:hover,
.module-list li:focus-visible {
  color: var(--module-accent);
  background: linear-gradient(90deg, color-mix(in srgb, var(--module-accent) 16%, transparent), transparent);
  transform: translateX(6px);
  outline: none;
}

.module-list-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--module-accent);
  background: var(--module-pill-bg);
  display: grid;
  place-items: center;
  flex: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.module-list li.is-code-active .module-list-icon,
.module-list li:hover .module-list-icon,
.module-list li:focus-visible .module-list-icon {
  transform: scale(1.08);
  filter: brightness(1.14);
  box-shadow: 0 0 18px color-mix(in srgb, var(--module-accent) 44%, transparent);
}

.module-list-icon img {
  width: 20px;
  height: 20px;
}

.module-right {
  width: 630px;
  height: 540px;
  border-radius: 40px;
  border: 2px solid var(--cyan);
  background: linear-gradient(
    90deg,
    rgba(244, 53, 158, 0.2),
    rgba(173, 70, 255, 0.2) 51.923%,
    rgba(0, 202, 244, 0.2)
  );
  box-shadow:
    0 0 24px 0 rgba(173, 70, 255, 0.24),
    0 0 8px 0 rgba(0, 202, 244, 0.12);
  padding: 20px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
  animation: module-frame-breathe 3.6s ease-in-out infinite;
}

.module-right::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.13), transparent 18%),
    linear-gradient(120deg, var(--module-accent), var(--cyan), var(--pink), var(--module-accent));
  background-size: 100% 100%, 220% 100%;
  opacity: 0.22;
  filter: blur(12px);
  transition:
    opacity 220ms ease,
    filter 220ms ease;
  animation: module-frame-flow 4.2s linear infinite;
}

.module-right.is-near,
.module-right:hover {
  border-color: color-mix(in srgb, var(--module-accent) 45%, var(--cyan));
  box-shadow:
    0 0 38px 4px rgba(173, 70, 255, 0.34),
    0 0 13px 1px rgba(0, 202, 244, 0.18);
  transform: translateY(-2px);
}

.module-right.is-near::before,
.module-right:hover::before {
  opacity: 0.42;
  filter: blur(16px);
}

.code-window {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #0b111d;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.code-window-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 8, 18, 0.86);
}

.code-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.code-dot.red {
  background: #ff4d5f;
}

.code-dot.yellow {
  background: #ffb84d;
}

.code-dot.green {
  background: #05df72;
}

.code-title {
  margin-left: 8px;
  color: #7f8aa3;
  font-size: 14px;
  font-weight: 700;
}

.module-code {
  height: calc(100% - 38px);
  margin: 0;
  padding: 24px 24px 28px;
  color: #dce8ff;
  font-family: "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.55;
  overflow: hidden;
  white-space: pre-wrap;
}

.module-code-line {
  width: fit-content;
  max-width: 100%;
  min-height: 21px;
  border-radius: 6px;
  padding: 0 8px;
  margin-left: -8px;
  position: relative;
  opacity: 0;
  transition:
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.module-code-line.is-visible {
  opacity: 0.9;
}

.module-code-text {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  vertical-align: top;
  white-space: pre;
}

.module-code-line.is-visible .module-code-text {
  animation: module-line-type 520ms steps(var(--chars, 24), end) forwards;
  animation-delay: var(--line-delay, 0ms);
}

.module-code-caret {
  display: inline-block;
  width: 7px;
  height: 1em;
  margin-left: 2px;
  vertical-align: -0.14em;
  background: var(--module-accent);
  box-shadow: 0 0 8px var(--module-accent);
  opacity: 0;
  animation:
    module-cursor-blink 760ms steps(1) infinite,
    module-line-cursor 520ms steps(1) forwards;
  animation-delay: var(--line-delay, 0ms), var(--line-delay, 0ms);
}

.module-code-line.is-highlighted {
  color: #fff;
  background: linear-gradient(90deg, color-mix(in srgb, var(--module-accent) 24%, transparent), transparent 86%);
  box-shadow: inset 3px 0 0 var(--module-accent);
}

.module-code-line.is-highlighted::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  animation: module-code-scan 1.6s ease-in-out infinite;
}

.module-code-cursor {
  display: inline-block;
  width: 7px;
  height: 1em;
  margin-left: 2px;
  vertical-align: -0.14em;
  background: var(--module-accent);
  box-shadow: 0 0 10px var(--module-accent);
  animation: module-cursor-blink 760ms steps(1) infinite;
}

@keyframes module-frame-breathe {
  0%,
  100% {
    box-shadow:
      0 0 22px 0 rgba(173, 70, 255, 0.22),
      0 0 7px 0 rgba(0, 202, 244, 0.1);
  }
  50% {
    box-shadow:
      0 0 36px 3px rgba(173, 70, 255, 0.32),
      0 0 12px 1px rgba(0, 202, 244, 0.16);
  }
}

@keyframes module-line-type {
  from {
    max-width: 0;
  }
  to {
    max-width: calc(var(--chars, 24) * 0.62em);
  }
}

@keyframes module-line-cursor {
  0%,
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes module-frame-flow {
  0% {
    background-position: 0 0, 0% 50%;
  }
  100% {
    background-position: 0 0, 220% 50%;
  }
}

@keyframes module-code-scan {
  0%,
  100% {
    transform: translateX(-65%);
    opacity: 0;
  }
  45%,
  60% {
    opacity: 1;
  }
  100% {
    transform: translateX(65%);
  }
}

@keyframes module-cursor-blink {
  0%,
  48% {
    opacity: 1;
  }
  49%,
  100% {
    opacity: 0;
  }
}

.module-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.scene .container {
  position: relative;
  z-index: 2;
  padding-top: 220px;
}

.scene-grid {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(3, 400px);
  gap: 30px;
  justify-content: center;
}

.scene-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 260px;
  border-radius: 40px;
  border: 0;
  background: transparent;
  padding: 40px 38px 34px;
  text-align: center;
}

.scene-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid #00caf4;
  background: linear-gradient(
    90deg,
    rgba(244, 53, 158, 0.2),
    rgba(173, 70, 255, 0.2) 51.923%,
    rgba(0, 202, 244, 0.2)
  );
  opacity: 0.2;
  transition: opacity 300ms ease;
  pointer-events: none;
  z-index: 0;
}

.scene-card:hover::before,
.scene-card:focus-within::before {
  opacity: 1;
}

.scene-card > * {
  position: relative;
  z-index: 1;
}

.scene-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  border-radius: 30px;
  border: 1px solid var(--icon-border, currentColor);
  box-shadow: 0 0 6px 1px var(--icon-glow, rgba(255, 255, 255, 0.35));
  display: grid;
  place-items: center;
  position: relative;
}

.scene-icon::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  box-shadow: inset 0 0 6px 1px var(--icon-glow, rgba(255, 255, 255, 0.35));
  opacity: 1;
}

.scene-icon img {
  width: 24px;
  height: 24px;
}

.scene-icon.cyan {
  color: #00caf4;
  --icon-border: rgba(0, 202, 244, 0.4);
  --icon-glow: rgba(0, 202, 244, 0.4);
  background: rgba(0, 202, 244, 0.12);
}

.scene-icon.violet {
  color: #ad46ff;
  --icon-border: rgba(173, 70, 255, 0.8);
  --icon-glow: rgba(173, 70, 255, 0.4);
  background: rgba(173, 70, 255, 0.12);
}

.scene-icon.pink {
  color: #f4359e;
  --icon-border: rgba(244, 53, 158, 0.4);
  --icon-glow: rgba(244, 53, 158, 0.4);
  background: rgba(244, 53, 158, 0.12);
}

.scene-card h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  transform: scale(0.62);
  transform-origin: center top;
  width: 160%;
  margin-left: -30%;
}

.scene-card p {
  margin: 8px auto 0;
  width: 324px;
  max-width: 100%;
  font-size: 16px;
  line-height: 26px;
}

.scene {
  position: relative;
  overflow: hidden;
  background: #000000;
}

.scene .section-bg {
  z-index: 0;
  display: none;
}

.scene .section-bg img {
  filter: saturate(1.12) brightness(1.08);
}

.scene-mask {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1920px;
  height: 980px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.scene::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1920px;
  height: 980px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(529.5px 150px at 980.5px 418px, rgba(0, 202, 244, 0.8) 0%, rgba(0, 202, 244, 0.8) 100%, transparent 100%),
    radial-gradient(564.5px 96.5px at 996.5px 648.5px, rgba(173, 70, 255, 0.8) 0%, rgba(173, 70, 255, 0.8) 100%, transparent 100%);
}

.cta {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: #000000;
  --cta-glow-x: 0px;
  --cta-glow-y: 0px;
}

#fullpage > .section.cta:not(.fp-auto-height) {
  min-height: 0;
  height: 100vh;
  overflow: hidden;
}

.cta .section-bg {
  display: none;
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.cta::before {
  left: 50%;
  top: 0;
  width: 1920px;
  height: 980px;
  transform: translate(calc(-50% + var(--cta-glow-x, 0px)), var(--cta-glow-y, 0px));
  transform-origin: 50% 50%;
  z-index: 0;
  background:
    radial-gradient(150px 150px at 601px 374px, rgba(0, 202, 244, 1) 0%, rgba(0, 202, 244, 1) 100%, transparent 100%),
    radial-gradient(141px 141px at 1268px 551px, rgba(173, 70, 255, 1) 0%, rgba(173, 70, 255, 1) 100%, transparent 100%);
}

.cta::after {
  left: 50%;
  top: 0;
  width: 1920px;
  height: 980px;
  transform: translateX(-50%);
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
}

.cta-mask {
  display: none;
}

.cta-shell {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.cta-inner {
  height: 100vh;
  flex: 0 0 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 3;
  opacity: 1;
  filter: none;
  transform: none;
}

.cta p {
  margin-top: 20px;
  color: #eef2ff;
  font-size: 14px;
  line-height: 20px;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.cta h2,
.cta h2 span,
.cta .hero-actions,
.cta .btn,
.cta .btn span {
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

.cta h2 {
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.24);
}

.cta .hero-actions {
  margin-top: 60px;
  margin-bottom: 0;
  transform: none;
}

.cta .btn {
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: 0 0 10px 0 rgba(181, 68, 244, 1);
}

.cta .btn::before {
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  opacity: 1;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--pink) 100%);
  background-size: 100% 100%;
  animation: none;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.cta .btn::after {
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(0, 202, 244, 0.2) 0%,
    rgba(173, 70, 255, 0.2) 48.077%,
    rgba(244, 53, 158, 0.2) 100%
  );
}

.cta .btn:hover {
  filter: none;
  box-shadow: 0 0 10px 0 rgba(181, 68, 244, 1);
}

.cta .btn:hover::before {
  opacity: 0;
  animation: none;
}

.cta .btn:hover::after {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--violet) 48.077%, var(--pink) 100%);
}

.cta .btn > span:not(.btn-ripple) {
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
}

.cta .btn:hover > span:not(.btn-ripple) {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: #ffffff;
}

.cta .btn-secondary::before {
  content: none;
}

.hero .btn::before,
.cta .btn::before,
.hero .btn:hover::before,
.cta .btn:hover::before {
  animation: none;
}

.frame128-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 40;
  height: 100px;
  overflow: visible;
  background: transparent;
  border: 0;
}

.frame128-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 220;
  height: 100px;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(2, 6, 23, 0.25),
    rgba(2, 6, 23, 0.05),
    transparent
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 0;
}

.frame128-footer-inner {
  position: relative;
  z-index: 230;
  width: min(1920px, 100vw);
  height: 100%;
  margin: 0 auto;
}

.frame128-footer-brand {
  position: absolute;
  left: 330px;
  top: 37px;
  display: block;
  width: 107px;
  height: 26px;
}

.frame128-footer-logo {
  display: block;
  width: 107px;
  height: 26px;
  object-fit: contain;
  object-position: left center;
}

.frame128-footer-nav {
  position: absolute;
  inset: 0;
}

.frame128-footer-nav a,
.frame128-footer-copy {
  position: absolute;
  top: 43px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
}

.frame128-footer-nav a:nth-child(1) {
  left: 720px;
}

.frame128-footer-nav a:nth-child(2) {
  left: 828px;
}

.frame128-footer-nav a:nth-child(3) {
  left: 936px;
}

.frame128-footer-nav a:nth-child(4) {
  left: 1044px;
}

.frame128-footer-nav a:nth-child(5) {
  left: 1152px;
}

.frame128-footer-copy {
  left: 1376px;
}

.footer-sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease-out;
}

.footer-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 160;
  height: min(746px, 100vh);
  padding-bottom: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  border: 0;
  box-shadow: none;
  transform: translateY(100%);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.frame128-footer.is-sheet-open .footer-sheet-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.frame128-footer.is-sheet-open .footer-sheet {
  transform: translateY(0);
}

.footer-sheet-frame {
  position: relative;
  width: min(1920px, 100vw);
  height: 100%;
  margin: 0 auto;
  padding: 150px 330px 120px;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr) 218px;
  gap: 92px;
  align-items: start;
}

.footer-sheet-company h3 {
  margin: 0 0 80px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.footer-sheet-company p,
.footer-sheet-col a,
.footer-sheet-highlight p {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.footer-sheet-company p + p,
.footer-sheet-col a + a {
  margin-top: 48px;
}

.footer-sheet-social {
  display: flex;
  gap: 80px;
  margin-top: 80px;
}

.footer-sheet-social a {
  position: relative;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: none;
}

.footer-sheet-social img {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-sheet-social a[aria-label="知乎"] {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

.footer-sheet-social a[aria-label="知乎"] img {
  width: 14px;
  height: 16px;
}

.footer-sheet-social a[aria-label="哔哩哔哩"] img {
  width: 20px;
  height: 20px;
}

.footer-sheet-social a[aria-label="微信"] img {
  width: 20px;
  height: 16px;
}

.footer-sheet-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 34px;
}

.footer-sheet-col {
  display: flex;
  flex-direction: column;
}

.footer-sheet-col h4 {
  margin: 0 0 80px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.footer-sheet-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-sheet-qr {
  width: 218px;
  height: 218px;
  border-radius: 40px;
  border: 2px solid var(--cyan);
  background: #fff;
  box-shadow: 0 0 10px 10px rgba(173, 70, 255, 0.2);
}

.footer-sheet-highlight p {
  margin-top: 68px;
  text-align: center;
}

@keyframes cta-bg-drift {
  0% {
    transform: scale(1.06) translate3d(-1.5%, -1%, 0);
  }
  100% {
    transform: scale(1.1) translate3d(1.5%, 1.2%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .module-right,
  .module-right::before,
  .module-code-line.is-highlighted::after,
  .module-code-cursor,
  .cta .section-bg,
  .cta::before,
  .cta::after {
    animation-duration: 1ms;
    animation-iteration-count: 1;
  }

  .module-right,
  .module-list li,
  .module-list-icon,
  .cta .btn,
  .cta .btn::before {
    transition-duration: 1ms;
  }
}

.cta-footer-wrap,
.footer-screen {
  display: none;
}

.site-mega-footer {
  width: 100%;
  margin-top: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  overflow: hidden;
}

.site-mega-footer-frame {
  width: min(1920px, 100vw);
  min-height: 746px;
  margin: 0 auto;
  padding: 150px 330px 120px;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr) 218px;
  gap: 92px;
  align-items: start;
  box-sizing: border-box;
}

.site-mega-footer-company h3 {
  margin: 0 0 44px;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

.site-mega-footer-company p,
.site-mega-footer-col a,
.site-mega-footer-qr p {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}

.site-mega-footer-company p + p {
  margin-top: 28px;
}

.site-mega-footer-social {
  display: flex;
  gap: 80px;
  margin-top: 80px;
}

.site-mega-footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: none;
}

.site-mega-footer-social img {
  width: 100%;
  height: 100%;
  display: block;
}

.site-mega-footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 34px;
}

.site-mega-footer-col {
  display: flex;
  flex-direction: column;
}

.site-mega-footer-col h4 {
  margin: 0 0 44px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
}

.site-mega-footer-col a + a {
  margin-top: 28px;
}

.site-mega-footer-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-mega-footer-qr-shell {
  width: 218px;
  height: 218px;
  border-radius: 40px;
  border: 2px solid var(--cyan);
  background: linear-gradient(90deg, rgba(244, 53, 158, 0.2), rgba(173, 70, 255, 0.2) 51.923%, rgba(0, 202, 244, 0.2));
  box-shadow: 0 0 10px 10px rgba(173, 70, 255, 0.2);
  padding: 6px;
  box-sizing: border-box;
}

.site-mega-footer-qr-inner {
  width: 100%;
  height: 100%;
  border-radius: 37px;
  background: #fff;
}

.site-mega-footer-qr p {
  margin-top: 68px;
  text-align: center;
}

.footer-main {
  position: relative;
  width: 100vw;
  height: 746px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  overflow: hidden;
}

.footer-frame {
  position: relative;
  width: min(1920px, 100vw);
  height: 100%;
  margin: 0 auto;
}

.footer-company,
.footer-links-col,
.footer-qr {
  position: absolute;
}

.footer-company {
  left: 330px;
  top: 150px;
  width: 370px;
}

.footer-company h4,
.footer-links-col h4 {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.footer-company h4 {
  font-size: 20px;
  font-weight: 600;
}

.footer-company p,
.footer-links-col a,
.footer-qr p {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  white-space: nowrap;
}

.footer-company p:first-of-type,
.footer-links-col a:first-of-type {
  margin-top: 80px;
}

.footer-company p + p,
.footer-links-col a + a {
  margin-top: 48px;
}

.footer-links-col {
  top: 151px;
}

.footer-col-product {
  left: 761px;
  width: 110px;
}

.footer-col-explore {
  left: 905px;
  width: 110px;
}

.footer-col-support {
  left: 1049px;
  width: 130px;
}

.footer-col-service {
  left: 1209px;
  width: 170px;
}

.social-row {
  display: flex;
  gap: 80px;
  margin-top: 80px;
}

.social-item {
  position: relative;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: none;
}

.social-item img {
  display: block;
  width: 100%;
  height: 100%;
}

.social-item-zhihu {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

.social-item-zhihu img {
  width: 14px;
  height: 16px;
}

.social-base,
.social-glyph {
  position: absolute;
  inset: 0;
  display: block;
}

.social-glyph {
  display: grid;
  place-items: center;
}

.social-item-wechat .social-glyph img {
  width: 20px;
  height: 16px;
}

.social-item-bili .social-glyph img {
  width: 20px;
  height: 20px;
}

.qr-shell {
  width: 218px;
  height: 218px;
  border-radius: 40px;
  border: 2px solid var(--cyan);
  background: linear-gradient(
    90deg,
    rgba(244, 53, 158, 0.2),
    rgba(173, 70, 255, 0.2) 51.923%,
    rgba(0, 202, 244, 0.2)
  );
  box-shadow: 0 0 10px 10px rgba(173, 70, 255, 0.2);
  padding: 6px;
  margin: 0;
}

.qr-inner {
  width: 100%;
  height: 100%;
  border-radius: 37px;
  background: #fff;
}

.footer-qr {
  left: 1372px;
  top: 150px;
  width: 218px;
}

.footer-qr p {
  margin-top: 68px;
  text-align: center;
}

.footer-screen .footer-bar {
  display: none;
}

.mid-bar,
.footer-bar {
  height: 100px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
  flex: none;
}

.frame42-bar {
  position: relative;
  overflow: hidden;
  width: min(1920px, 100vw);
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.frame42-inner {
  position: relative;
  width: min(1920px, 100vw);
  height: 100%;
  margin: 0 auto;
}

.frame42-brand {
  position: absolute;
  left: 330px;
  top: 37px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
}

.frame42-brand .brand-logo {
  width: 26px;
  height: 26px;
  flex: none;
}

.frame42-brand .brand-image {
  width: 107px;
  height: 26px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.frame42-nav {
  position: absolute;
  inset: 0;
}

.frame42-nav a {
  position: absolute;
  top: 43px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
}

.frame42-nav a:nth-child(1) {
  left: 720px;
}

.frame42-nav a:nth-child(2) {
  left: 828px;
}

.frame42-nav a:nth-child(3) {
  left: 936px;
}

.frame42-nav a:nth-child(4) {
  left: 1044px;
}

.frame42-nav a:nth-child(5) {
  left: 1152px;
}

.frame42-copy {
  position: absolute;
  left: 1376px;
  top: 43px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
}

.bar-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 12px;
}

.bar-links {
  display: flex;
  gap: 56px;
  white-space: nowrap;
}

.copyright {
  justify-self: end;
}

.fp-watermark {
  display: none !important;
}


@media (max-width: 1360px) {
  .menu {
    display: none;
  }

  .feature-grid,
  .scene-grid {
    grid-template-columns: repeat(2, minmax(320px, 400px));
  }

  .module-carousel {
    width: 100%;
  }

  .module-slide-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .module-viewport {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: 920px;
  }

  .module-right {
    width: min(100%, 630px);
    margin: 0 auto;
  }

  .bar-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    height: auto;
    padding: 14px 0;
  }

  .mid-bar,
  .footer-bar {
    height: auto;
  }
}

@media (max-width: 900px) {
  .navbar {
    position: sticky;
    height: 72px;
  }

  .nav-inner {
    height: 72px;
  }

  .container {
    width: calc(100vw - 32px);
  }

  .nav-cta {
    width: 92px;
    height: 34px;
  }

  .nav-cta span {
    font-size: 14px;
  }

  #fullpage .section:not(.fp-auto-height) {
    min-height: 100vh !important;
  }

  .hero-inner,
  .features .container,
  .modules .container,
  .scene .container,
  .cta-inner {
    padding-top: 110px;
    padding-bottom: 80px;
  }

  .cta-inner {
    height: 100vh;
    flex: 0 0 100vh;
    padding-top: 0;
    padding-bottom: 0;
    transform: none;
  }

  .hero h1 {
    white-space: normal;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 28px;
  }

  .hero-actions {
    margin-top: 44px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero-scroll-indicator {
    width: 24px;
    height: 40px;
    bottom: 36px;
  }

  .module-carousel {
    width: 100%;
  }

  .module-slide-inner {
    width: calc(100vw - 32px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .module-viewport {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: 820px;
  }

  .module-blob-left {
    left: -170px;
    top: 180px;
  }

  .module-blob-right {
    right: -120px;
    top: 520px;
  }

  .module-tag {
    max-width: 100%;
    font-size: 13px;
    height: auto;
    line-height: 18px;
    padding: 10px 14px;
  }

  .module-left h2 {
    font-size: 48px;
    line-height: 1.08;
  }

  .module-desc {
    margin: 18px 0 30px;
    font-size: 17px;
    line-height: 30px;
  }

  .module-list {
    gap: 12px;
  }

  .module-list li {
    font-size: 14px;
  }

  .module-list-icon {
    width: 34px;
    height: 34px;
  }

  .module-list-icon img {
    width: 18px;
    height: 18px;
  }

  .module-right {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 63 / 54;
    padding: 14px;
  }

  .feature-grid,
  .scene-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .feature-card,
  .scene-card {
    width: 100%;
  }

  .scene-card p {
    width: 100%;
  }

  .bar-links {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-mega-footer-frame {
    width: calc(100vw - 40px);
    min-height: auto;
    padding: 72px 0 64px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .site-mega-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-mega-footer-social {
    gap: 44px;
    margin-top: 44px;
  }

  .site-mega-footer-qr {
    justify-self: center;
  }
}

@media (max-width: 900px) {
  .site-mega-footer-frame {
    width: calc(100vw - 32px);
    padding: 48px 0 56px;
    gap: 32px;
  }

  .site-mega-footer-company h3 {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .site-mega-footer-company p,
  .site-mega-footer-col a,
  .site-mega-footer-col h4,
  .site-mega-footer-qr p {
    font-size: 16px;
  }

  .site-mega-footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-mega-footer-col h4 {
    margin-bottom: 20px;
  }

  .site-mega-footer-col a + a,
  .site-mega-footer-company p + p {
    margin-top: 14px;
  }

  .site-mega-footer-social {
    gap: 28px;
    margin-top: 28px;
  }

  .site-mega-footer-qr-shell {
    width: 168px;
    height: 168px;
    border-radius: 28px;
  }

  .site-mega-footer-qr-inner {
    border-radius: 24px;
  }

  .site-mega-footer-qr p {
    margin-top: 28px;
  }
}
