:root {
  --fixed-width: 1480px;
  --hero-height: 620px;
  --video-render-width: 1421px;
  --coral: #ff6868;
  --ink: #3a4459;
  --font: "PingFang SC", "Microsoft YaHei", sans-serif;
  --radius-control: 4px;
  --radius-card: 8px;
  --radius-panel: 12px;
  --section-title-size: 36px;
  --section-subtitle-size: 15px;
  /* V10 section rhythm: reserve larger whitespace for ordinary content
     sections and a shorter rhythm for compact strips such as the notice bar. */
  --section-space-top: 112px;
  --section-space-bottom: 120px;
  --section-space-compact-top: 72px;
  --section-space-compact-bottom: 80px;
  --section-heading-gap: 56px;
  --experience-cta-background: linear-gradient(112deg, #fb5f65 0%, #ff8f80 100%);
  --experience-footer-background: #292b2f;
  --experience-footer-heading: #f2f2f3;
  --experience-footer-text: #92959b;
  --experience-footer-muted: #74777d;
  --experience-footer-line: #44464a;
}

/* XiaoFang floating assistant */
.xiaofang-idle {
  position: fixed;
  z-index: 960;
  right: max(22px, calc((100vw - var(--fixed-width)) / 2 - 160px));
  left: auto;
  bottom: 22px;
  width: 148px;
  height: 148px;
  overflow: visible;
  cursor: grab;
  touch-action: none;
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
  filter: none !important;
  animation: xiaofang-idle-enter 520ms cubic-bezier(.2, .85, .28, 1) both;
  transform-origin: center bottom;
}

.xiaofang-idle::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 24%;
  bottom: 7%;
  left: 24%;
  height: 14%;
  border-radius: 50%;
  background: rgba(55, 64, 80, .2);
  filter: blur(11px);
  opacity: .72;
  pointer-events: none;
  transform: translateZ(0);
  transition: opacity 160ms ease, transform 160ms ease;
}

.xiaofang-idle img,
.xiaofang-idle video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.xiaofang-idle video {
  opacity: 0;
  visibility: hidden;
}

.xiaofang-idle .xiaofang-sitting-animation {
  opacity: 0;
}

.xiaofang-idle .xiaofang-hiding-animation,
.xiaofang-idle .xiaofang-dragging-animation,
.xiaofang-idle .xiaofang-prone-idle-animation,
.xiaofang-idle .xiaofang-prone-animation {
  opacity: 0;
}

.xiaofang-idle .xiaofang-consult-hint {
  position: absolute;
  z-index: 4;
  top: calc(100% - 16px);
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 6px 10px;
  border: 1px solid rgba(255, 104, 104, .2);
  border-radius: 11px;
  color: #465166;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 9px 22px rgba(56, 68, 88, .13);
  font: 600 12px/1.25 var(--font);
  letter-spacing: .01em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 5px) scale(.96);
  transition: opacity 180ms ease, transform 220ms ease;
  animation: xiaofang-consult-reminder 9s ease-in-out 2s infinite;
}

.xiaofang-idle.is-dragging .xiaofang-consult-hint,
.xiaofang-idle.is-chat-open .xiaofang-consult-hint {
  opacity: 0;
  transform: translate(-50%, 5px) scale(.96);
  animation: none;
}

.xiaofang-idle.is-dragging {
  z-index: 10002;
  cursor: grabbing;
  animation: none;
  transform: translateX(0);
  transition: transform 160ms cubic-bezier(.22, 1, .36, 1);
  will-change: left, top;
}

.xiaofang-idle.is-dragging::after {
  opacity: .9;
  transform: translate3d(0, 4px, 0) scale(1.08);
}

.xiaofang-idle.is-dragging .xiaofang-idle-animation,
.xiaofang-idle.is-dragging .xiaofang-sitting-animation,
.xiaofang-idle.is-dragging .xiaofang-hiding-animation,
.xiaofang-idle.is-dragging .xiaofang-prone-idle-animation,
.xiaofang-idle.is-dragging .xiaofang-prone-animation {
  opacity: 0;
}

.xiaofang-idle.is-dragging .xiaofang-dragging-animation {
  opacity: 1;
}

.xiaofang-idle.is-dragging.is-edge-ready {
  transform: translateX(6px);
}

.hero > .xiaofang-idle.is-docked {
  position: absolute;
  z-index: 6;
  top: 237px;
  left: calc(50% + 340px);
  bottom: auto;
  width: 98px;
  height: 98px;
  cursor: grab;
  transform: translate3d(0, var(--xiaofang-platform-y, 0px), 0);
  animation: xiaofang-dock-in 480ms cubic-bezier(.2, .88, .3, 1.12) both;
}

.hero > .xiaofang-idle.is-docked::after {
  opacity: 0;
}

.xiaofang-idle.is-docked .xiaofang-idle-animation {
  opacity: 0;
}

.xiaofang-idle.is-docked .xiaofang-sitting-animation {
  opacity: 1;
}

/* The hide animation contains a vertical occlusion line at 52.2% of its
   canvas. Moving the remaining 47.8% beyond the viewport aligns that line
   with the real browser edge, so the viewport itself becomes the mask. */
.xiaofang-idle.is-edge-hidden {
  --xiaofang-edge-shift: 47.78%;
  --xiaofang-edge-extra-shift: 3px;
  position: fixed;
  z-index: 961;
  right: 0;
  left: auto;
  bottom: auto;
  cursor: ew-resize;
  transform: translateX(calc(var(--xiaofang-edge-shift) + var(--xiaofang-edge-extra-shift)));
  animation: xiaofang-edge-snap 360ms cubic-bezier(.16, .84, .26, 1) both;
}

.xiaofang-idle.is-edge-hidden::after {
  right: 34%;
  left: 10%;
  opacity: .58;
  transform: translate3d(-8px, 2px, 0);
}

.xiaofang-idle.is-edge-hidden .xiaofang-sitting-animation {
  opacity: 0;
}

.xiaofang-idle.is-edge-hidden.has-hiding-media .xiaofang-idle-animation {
  opacity: 0;
}

.xiaofang-idle.is-edge-hidden .xiaofang-hiding-animation {
  opacity: 1;
}

.xiaofang-idle.is-edge-hidden.is-edge-instant {
  animation: none;
  transform: translateX(calc(var(--xiaofang-edge-shift) + var(--xiaofang-edge-extra-shift)));
}

.xiaofang-idle:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 50%;
}

.xiaofang-speech[hidden],
.xiaofang-chat-pet-slot[hidden],
.xiaofang-chat[hidden] {
  display: none;
}

.xiaofang-speech {
  --xiaofang-speech-arrow-x: 50%;
  position: fixed;
  z-index: 11980;
  top: var(--xiaofang-speech-y, 0);
  left: var(--xiaofang-speech-x, 0);
  width: max-content;
  max-width: 238px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 104, 104, .18);
  border-radius: 11px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 10px 24px rgba(56, 68, 88, .13);
  color: #465166;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: .01em;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 13px));
  transform-origin: var(--xiaofang-speech-arrow-x) bottom;
  animation: xiaofang-speech-in 360ms cubic-bezier(.2, .88, .28, 1.08) both;
}

.xiaofang-speech::before,
.xiaofang-speech::after {
  content: "";
  position: absolute;
  left: var(--xiaofang-speech-arrow-x);
  width: 12px;
  height: 12px;
  transform: translateX(-50%) rotate(45deg);
}

.xiaofang-speech::before {
  z-index: -1;
  bottom: -7px;
  border-right: 1px solid rgba(255, 104, 104, .18);
  border-bottom: 1px solid rgba(255, 104, 104, .18);
  background: #fff;
}

.xiaofang-speech::after {
  bottom: -5px;
  background: #fff;
}

.xiaofang-speech.is-below {
  transform: translate(-50%, 13px);
  transform-origin: var(--xiaofang-speech-arrow-x) top;
  animation-name: xiaofang-speech-in-below;
}

.xiaofang-speech.is-below::before {
  top: -7px;
  bottom: auto;
  border: 1px solid rgba(255, 104, 104, .18);
  border-right: 0;
  border-bottom: 0;
}

.xiaofang-speech.is-below::after {
  top: -5px;
  bottom: auto;
}

.xiaofang-speech-text {
  display: block;
  font-weight: 500;
}

.xiaofang-chat {
  position: fixed;
  z-index: 12000;
  right: 16px;
  bottom: 22px;
  width: 330px;
  max-height: calc(100vh - 44px);
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(56, 68, 89, .09);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(42, 54, 74, .2);
  opacity: 0;
  clip-path: inset(0 0 0 100% round 14px);
  transform: translateX(12px) scale(.99);
  transform-origin: right bottom;
  transition:
    opacity 190ms ease,
    clip-path 280ms cubic-bezier(.22, 1, .36, 1),
    transform 230ms cubic-bezier(.2, .85, .28, 1.04);
}

.xiaofang-chat-pet-slot {
  position: fixed;
  z-index: 12010;
  right: 346px;
  bottom: 22px;
  width: 84px;
  height: 148px;
  overflow: hidden;
  pointer-events: none;
}

.xiaofang-chat.is-open {
  opacity: 1;
  clip-path: inset(0 0 0 0 round 14px);
  transform: translateX(0) scale(1);
}

.xiaofang-chat.is-closing {
  opacity: 0;
  clip-path: inset(0 100% 0 0 round 14px);
  transform: translateX(-12px) scale(.99);
  transition-duration: 250ms, 310ms, 290ms;
}

.xiaofang-chat-header {
  min-height: 60px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  background: linear-gradient(135deg, #ff7773, #ff6267);
}

.xiaofang-chat-avatar {
  width: 38px;
  height: 38px;
  overflow: hidden;
  flex: 0 0 38px;
  border: 2px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
}

.xiaofang-chat-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.22);
}

.xiaofang-chat-identity {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.xiaofang-chat-identity strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
}

.xiaofang-chat-identity small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .82);
  font-size: 10px;
}

.xiaofang-chat-identity i {
  width: 6px;
  height: 6px;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, .36);
  border-radius: 50%;
  background: #b9f7d0;
  box-sizing: content-box;
}

.xiaofang-chat-close {
  width: 31px;
  height: 31px;
  margin-left: auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.xiaofang-chat-close:hover {
  background: rgba(255, 255, 255, .22);
  transform: rotate(4deg);
}

.xiaofang-chat-close:focus-visible,
.xiaofang-chat-choices button:focus-visible,
.xiaofang-contact-actions a:focus-visible {
  outline: 2px solid rgba(255, 104, 104, .45);
  outline-offset: 2px;
}

.xiaofang-chat-close svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.xiaofang-chat-body {
  min-height: 154px;
  padding: 17px 16px 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 104, 104, .055), transparent 32%),
    #f7f8fa;
}

.xiaofang-chat-message {
  max-width: 94%;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.xiaofang-chat-message p {
  margin: 0;
  padding: 9px 11px;
  border-radius: 4px 11px 11px 11px;
  color: #566075;
  font-size: 12px;
  line-height: 1.55;
  background: #fff;
  box-shadow: 0 3px 9px rgba(56, 68, 89, .045);
}

.xiaofang-message-avatar {
  width: 23px;
  height: 23px;
  display: grid;
  flex: 0 0 23px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  background: linear-gradient(135deg, #ff7a74, #ff6368);
}

.xiaofang-contact-actions {
  margin-left: 31px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.xiaofang-contact-actions a {
  padding: 2px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 104, 104, .3);
  border-radius: 0;
  color: #f45f63;
  font-size: 11px;
  text-decoration: none;
  background: transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.xiaofang-contact-actions a:hover {
  border-color: currentColor;
  color: #e94f55;
}

.xiaofang-chat-footer {
  padding: 10px 16px 13px;
  border-top: 1px solid #eef0f3;
  background: #fff;
}

.xiaofang-chat-choices {
  display: flex;
  align-items: center;
  gap: 24px;
}

.xiaofang-chat-choices button {
  min-height: 32px;
  padding: 0 1px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: #596377;
  font: 500 13px/1 var(--font);
  background: #fff;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.xiaofang-chat-choices button:hover,
.xiaofang-chat-choices button.is-active {
  border-bottom-color: rgba(255, 104, 104, .65);
  color: #ef5c61;
  background: transparent;
  transform: none;
}

.xiaofang-chat-pet-slot > .xiaofang-idle.is-edge-hidden.is-chat-edge {
  position: absolute;
  z-index: 1;
  right: auto;
  bottom: auto;
  transform: translateX(47.78%);
  pointer-events: auto;
}

.xiaofang-idle.is-chat-returning {
  animation:
    xiaofang-chat-return var(--xiaofang-chat-return-duration, 560ms)
    cubic-bezier(.2, .82, .28, 1.04) both;
}

@keyframes xiaofang-speech-in {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-100% - 5px)) scale(.94);
  }

  to {
    opacity: 1;
    transform: translate(-50%, calc(-100% - 13px)) scale(1);
  }
}

@keyframes xiaofang-speech-in-below {
  from {
    opacity: 0;
    transform: translate(-50%, 5px) scale(.94);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 13px) scale(1);
  }
}

@keyframes xiaofang-chat-return {
  0% {
    opacity: .28;
    transform: translate3d(
      var(--xiaofang-chat-return-x, 20px),
      var(--xiaofang-chat-return-y, 0),
      0
    ) scale(.9);
  }

  68% {
    opacity: 1;
    transform: translate3d(
      var(--xiaofang-chat-return-mid-x, 6px),
      var(--xiaofang-chat-return-mid-y, -10px),
      0
    ) scale(1.025);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.hero.is-xiaofang-drag-over {
  box-shadow: inset 0 0 0 2px rgba(255, 104, 104, .3);
}

.advantages-pet-layer {
  overflow: visible;
}

.advantages-stage > .xiaofang-idle.is-advantage-perched,
.advantages-pet-layer > .xiaofang-idle.is-advantage-perched {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: 110px;
  height: 110px;
  animation: none;
  transform: translate3d(
    var(--xiaofang-advantage-x, 0),
    var(--xiaofang-advantage-y, 0),
    0
  ) rotate(var(--xiaofang-advantage-rotate, 0deg));
  transform-origin: 58% 85.6%;
  will-change: transform;
}

.xiaofang-idle.is-advantage-perched::after {
  opacity: 0;
}

.advantages-stage > .xiaofang-idle.is-advantage-perched {
  z-index: 5;
}

.advantages-pet-layer > .xiaofang-idle.is-advantage-perched {
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

.xiaofang-idle.is-advantage-perched .xiaofang-idle-animation,
.xiaofang-idle.is-advantage-perched .xiaofang-sitting-animation,
.xiaofang-idle.is-advantage-perched .xiaofang-dragging-animation,
.xiaofang-idle.is-advantage-perched .xiaofang-hiding-animation {
  opacity: 0;
}

.xiaofang-idle.is-advantage-perched.is-advantage-ready .xiaofang-prone-idle-animation,
.xiaofang-idle.is-advantage-perched.is-advantage-transitioning .xiaofang-prone-animation {
  opacity: 1;
}

.xiaofang-idle.is-advantage-transitioning {
  cursor: default;
  pointer-events: none;
}

/* Keep inactive transparent WebM layers out of Chromium's compositor. A
   state video becomes visible only after its first frame has decoded. */
.xiaofang-idle:not(.is-dragging):not(.is-docked):not(.is-edge-hidden):not(.is-advantage-perched):not(.is-flight-docked)
  .xiaofang-idle-animation[data-xiaofang-media-ready="true"],
.xiaofang-idle.is-dragging
  .xiaofang-dragging-animation[data-xiaofang-media-ready="true"],
.xiaofang-idle.is-docked
  .xiaofang-sitting-animation[data-xiaofang-media-ready="true"],
.xiaofang-idle.is-edge-hidden
  .xiaofang-hiding-animation[data-xiaofang-media-ready="true"],
.xiaofang-idle.is-advantage-perched.is-advantage-ready:not(.is-advantage-transitioning)
  .xiaofang-prone-idle-animation[data-xiaofang-media-ready="true"],
.xiaofang-idle.is-advantage-perched.is-advantage-transitioning
  .xiaofang-prone-animation[data-xiaofang-media-ready="true"],
.cloud-flight-pad > .xiaofang-idle.is-flight-docked
  .xiaofang-flying-animation[data-xiaofang-media-ready="true"] {
  opacity: 1;
  visibility: visible;
}

@keyframes xiaofang-idle-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes xiaofang-consult-reminder {
  0%, 17%, 63%, 100% {
    opacity: 0;
    transform: translate(-50%, 5px) scale(.96);
    box-shadow: 0 9px 22px rgba(56, 68, 88, .13);
  }

  24%, 55% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
    box-shadow: 0 9px 22px rgba(56, 68, 88, .13), 0 0 0 5px rgba(255, 104, 104, .07);
  }
}

@keyframes xiaofang-dock-in {
  from {
    opacity: .76;
    transform: translate3d(0, calc(var(--xiaofang-platform-y, 0px) - 12px), 0) scale(1.22);
  }

  to {
    opacity: 1;
    transform: translate3d(0, var(--xiaofang-platform-y, 0px), 0) scale(1);
  }
}

@keyframes xiaofang-edge-snap {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(var(--xiaofang-edge-shift) + var(--xiaofang-edge-extra-shift)));
  }
}

/* Some mobile Chromium builds decode the transparent WebM canvas as black.
   Use the existing transparent animated WebP on touch/mobile layouts so the
   video compositor is never involved there; desktop keeps the richer WebM
   state animations unchanged. */
@media (max-width: 760px), (hover: none) and (pointer: coarse) {
  .xiaofang-idle {
    background-color: transparent;
    background-image: url("../assets/xiaofang/xiaofang-idle.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  .xiaofang-idle video {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
}

@media (max-height: 720px) {
  .xiaofang-idle {
    width: 126px;
    height: 126px;
  }

  .xiaofang-chat {
    bottom: 16px;
    max-height: calc(100vh - 32px);
  }

  .xiaofang-chat-pet-slot {
    bottom: 16px;
    height: 126px;
  }

  .xiaofang-chat-body {
    min-height: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .xiaofang-idle {
    animation: none;
  }

  .xiaofang-idle.is-edge-hidden,
  .xiaofang-idle.is-edge-hidden.is-edge-instant {
    animation: none;
    transform: translateX(calc(var(--xiaofang-edge-shift) + var(--xiaofang-edge-extra-shift)));
  }

  .xiaofang-idle img,
  .xiaofang-idle video {
    transition: none;
  }

  .xiaofang-idle .xiaofang-consult-hint {
    animation: none;
  }

  .xiaofang-speech,
  .xiaofang-chat {
    animation: none;
    transition: none;
  }
}

/* Global experience ending theme: both About and Service share the same
   coral CTA and charcoal footer instead of page-specific pale overrides. */
.experience-page .experience-cta {
  color: #fff !important;
  border: 0 !important;
  background: var(--experience-cta-background) !important;
}

.experience-page .experience-cta-grid {
  opacity: .13 !important;
  background-image:
    linear-gradient(rgba(255, 255, 255, .6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .6) 1px, transparent 1px) !important;
}

.experience-page .experience-cta-inner > div:first-child > p,
.experience-page .experience-cta-inner h2 {
  color: #fff !important;
}

.experience-page .experience-cta-inner span {
  color: rgba(255, 255, 255, .72) !important;
}

.experience-page .experience-button-light {
  color: #ef5d61 !important;
  background: #fff !important;
  border-color: #fff !important;
}

.experience-page .experience-button-outline {
  color: #fff !important;
  border-color: rgba(255, 255, 255, .72) !important;
  background: transparent !important;
}

.experience-page .experience-button-outline:hover {
  color: #ef5d61 !important;
  border-color: #fff !important;
  background: #fff !important;
}

.experience-page .site-footer {
  color: var(--experience-footer-text) !important;
  background: var(--experience-footer-background) !important;
  border-top: 0 !important;
}

.experience-page .footer-column h2 {
  color: var(--experience-footer-heading) !important;
}

.experience-page .footer-column > a,
.experience-page .footer-contact-item {
  color: var(--experience-footer-text) !important;
}

.experience-page .footer-column > a:hover {
  color: #e6e7e9 !important;
}

.experience-page .footer-contact svg {
  stroke: #a7a9ad !important;
}

.experience-page .footer-qr {
  color: var(--experience-footer-muted) !important;
}

.experience-page .footer-qr-code {
  border-color: transparent !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 50%, transparent 50%) 0 0 / 18px 18px,
    linear-gradient(rgba(255, 255, 255, .035) 50%, transparent 50%) 0 0 / 18px 18px,
    #5b5d62 !important;
}

.experience-page .footer-qr-code::before,
.experience-page .footer-qr-code::after {
  border-color: rgba(255, 255, 255, .09) !important;
}

.experience-page .footer-legal {
  border-top-color: var(--experience-footer-line) !important;
  color: #70737a !important;
}

.experience-page .footer-legal i {
  background: #5d6065 !important;
}

/*
  The page is a fixed desktop canvas. When the viewport is narrower than
  1480px, the document scrolls horizontally instead of scaling the artwork.
*/
html,
body {
  min-width: var(--fixed-width);
  background: #fff;
}

html {
  overflow-x: auto;
}

body {
  color: var(--ink);
  font-family: var(--font);
  overflow-x: visible;
}

main,
.site-header,
.hero,
.highlights,
.platform {
  min-width: var(--fixed-width);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: rgba(255, 255, 255, .62);
  border-bottom: 1px solid rgba(255, 255, 255, .98);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  box-shadow: 0 1px 0 #fff, 0 8px 24px rgba(58, 68, 89, .05);
  isolation: isolate;
}

.nav-inner,
.hero-inner,
.content-width {
  width: var(--fixed-width) !important;
  max-width: none !important;
  margin-left: auto;
  margin-right: auto;
}

.nav-inner {
  height: 64px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 220px;
  align-items: center;
  gap: 0;
}

.brand {
  width: 173px;
  justify-self: start;
}

.primary-nav {
  display: flex !important;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  height: 64px;
}

.nav-item {
  position: relative;
  display: flex;
  height: 64px;
  align-items: stretch;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 64px;
  margin: 0;
  padding: 0;
  border: 0;
  color: #171d3b;
  background: transparent;
  font: 500 15px/1 var(--font);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 140ms ease;
}

/* Links and the product dropdown trigger must render as one typography set.
   Native button text otherwise looks subtly heavier on WebKit. */
.primary-nav .nav-link,
.primary-nav .nav-menu-trigger,
.primary-nav .nav-label {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.nav-link::after {
  display: none !important;
  content: none !important;
}

.nav-label {
  position: relative;
  display: inline-flex;
  height: 64px;
  align-items: center;
}

/* The underline follows only the text width, matching the reference menu. */
.nav-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition:
    transform 180ms cubic-bezier(.22, 1, .36, 1),
    opacity 80ms ease-out;
  will-change: transform;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-current,
.nav-item.is-current > .nav-link,
.nav-item.is-open > .nav-link {
  color: var(--coral);
}

.nav-link:hover .nav-label::after,
.nav-link:focus-visible .nav-label::after,
.nav-link.is-current .nav-label::after,
.nav-item.is-current > .nav-link .nav-label::after,
.nav-item.is-open > .nav-link .nav-label::after {
  opacity: 1;
  transform: scaleX(1);
}

/* While a dropdown is open, it becomes the sole visual focus. */
.primary-nav.has-open-menu .nav-entry.is-current:not(:hover),
.primary-nav.has-open-menu .nav-item.is-current:not(.is-open) > .nav-link {
  color: #171d3b;
}

.primary-nav.has-open-menu .nav-entry.is-current:not(:hover) .nav-label::after,
.primary-nav.has-open-menu .nav-item.is-current:not(.is-open) > .nav-link .nav-label::after {
  opacity: 0;
  transform: scaleX(0);
}

.primary-nav:has(.nav-link:hover) .nav-entry.is-current:not(:hover) .nav-label::after,
.primary-nav:has(.nav-link:hover) .nav-item.is-current:not(:hover) > .nav-link .nav-label::after {
  opacity: 0;
  transform: scaleX(0);
}

.nav-link:focus-visible,
.nav-dropdown-link:focus-visible,
.login:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.nav-chevron {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transform-origin: 60% 60%;
  transition: transform 170ms cubic-bezier(.22, 1, .36, 1);
}

.nav-item.is-open .nav-chevron {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  left: 50%;
  width: max-content;
  min-width: 132px;
  max-width: 190px;
  padding: 8px;
  border: 1px solid #eceff4;
  border-radius: 6px;
  background: rgba(255, 255, 255, .99);
  box-shadow:
    0 14px 34px rgba(31, 39, 68, .10),
    0 3px 10px rgba(31, 39, 68, .045);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -4px) scale(.98, .94);
  transform-origin: 50% 0;
  transition:
    opacity 90ms ease,
    visibility 0s linear 190ms,
    transform 170ms cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 10px;
}

.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
  transition-delay: 0s;
}

.nav-dropdown-list {
  clip-path: inset(0 42% 100% 42% round 4px);
  transition: clip-path 190ms cubic-bezier(.22, 1, .36, 1);
  will-change: clip-path;
}

.nav-item.is-open .nav-dropdown-list {
  clip-path: inset(0 round 4px);
}

#nav-product-menu {
  min-width: 160px;
}

.nav-dropdown-link {
  position: relative;
  z-index: 1;
  display: flex;
  height: 42px;
  padding: 0 16px;
  align-items: center;
  justify-content: flex-start;
  border-radius: 4px;
  color: #202642;
  font: 500 14px/1 var(--font);
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  overflow: hidden;
  isolation: isolate;
  transition: color 110ms ease;
}

.nav-dropdown-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 3px 6px;
  border-radius: 4px;
  background: rgba(255, 104, 104, .085);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: 50% 50%;
  transition:
    background-color 110ms ease,
    transform 160ms cubic-bezier(.22, 1, .36, 1);
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible,
.nav-dropdown-link.is-current {
  color: var(--coral);
}

.nav-dropdown-link:hover::before,
.nav-dropdown-link:focus-visible::before,
.nav-dropdown-link.is-current::before {
  transform: scaleX(1);
}

.nav-dropdown:has(.nav-dropdown-link:hover) .nav-dropdown-link.is-current:not(:hover),
.nav-dropdown:has(.nav-dropdown-link:focus-visible) .nav-dropdown-link.is-current:not(:focus-visible) {
  color: #202642;
}

.nav-dropdown:has(.nav-dropdown-link:hover) .nav-dropdown-link.is-current:not(:hover)::before,
.nav-dropdown:has(.nav-dropdown-link:focus-visible) .nav-dropdown-link.is-current:not(:focus-visible)::before {
  transform: scaleX(0);
}

.nav-dropdown-link:active::before {
  background: rgba(255, 104, 104, .13);
  transform: scaleX(.96);
}

@media (prefers-reduced-motion: reduce) {
  .nav-label::after,
  .nav-chevron,
  .nav-dropdown,
  .nav-dropdown-list,
  .nav-dropdown-link,
  .nav-dropdown-link::before {
    transition: none;
  }
}

.nav-actions {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  justify-self: stretch;
}

.menu-toggle {
  display: none !important;
}

.login {
  display: inline-flex;
  width: 68px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #ff7a72, #f45f62);
  font: 500 14px/1 var(--font);
  cursor: pointer;
  box-shadow: 0 7px 16px rgba(244, 95, 98, .18);
  transition: filter 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.login:hover {
  filter: saturate(1.08) brightness(1.02);
  transform: translateY(-1px);
  box-shadow: 0 9px 18px rgba(244, 95, 98, .23);
}

/* Target Cursor: the system pointer stays visible; coral corners only appear near actions. */
.target-cursor-effect {
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  opacity: 0;
  pointer-events: none;
  transform-origin: center;
  will-change: transform, width, height, opacity;
}

.target-cursor-corner {
  position: absolute;
  width: 11px;
  height: 11px;
  border-color: var(--coral);
  border-style: solid;
  border-width: 0;
  will-change: transform;
}

.target-cursor-effect.is-on-solid.is-locking .target-cursor-corner {
  animation:
    target-cursor-focus-snap 460ms cubic-bezier(.18, .9, .2, 1.22) both,
    target-cursor-color-flash 180ms ease-out both;
}

.target-cursor-corner.corner-tl {
  top: 0;
  left: 0;
  --snap-x: 7px;
  --snap-y: 7px;
  --overshoot-x: -3px;
  --overshoot-y: -3px;
  --settle-x: 1px;
  --settle-y: 1px;
  --breathe-x: -1.5px;
  --breathe-y: -1.5px;
  --breathe-rotate: -2deg;
  transform-origin: top left;
  border-top-width: 2px;
  border-left-width: 2px;
}

.target-cursor-corner.corner-tr {
  top: 0;
  right: 0;
  --snap-x: -7px;
  --snap-y: 7px;
  --overshoot-x: 3px;
  --overshoot-y: -3px;
  --settle-x: -1px;
  --settle-y: 1px;
  --breathe-x: 1.5px;
  --breathe-y: -1.5px;
  --breathe-rotate: 2deg;
  transform-origin: top right;
  border-top-width: 2px;
  border-right-width: 2px;
}

.target-cursor-corner.corner-br {
  right: 0;
  bottom: 0;
  --snap-x: -7px;
  --snap-y: -7px;
  --overshoot-x: 3px;
  --overshoot-y: 3px;
  --settle-x: -1px;
  --settle-y: -1px;
  --breathe-x: 1.5px;
  --breathe-y: 1.5px;
  --breathe-rotate: -2deg;
  transform-origin: bottom right;
  border-right-width: 2px;
  border-bottom-width: 2px;
}

.target-cursor-corner.corner-bl {
  bottom: 0;
  left: 0;
  --snap-x: 7px;
  --snap-y: -7px;
  --overshoot-x: -3px;
  --overshoot-y: 3px;
  --settle-x: 1px;
  --settle-y: -1px;
  --breathe-x: -1.5px;
  --breathe-y: 1.5px;
  --breathe-rotate: 2deg;
  transform-origin: bottom left;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.target-cursor-effect.is-locking .target-cursor-corner {
  animation: target-cursor-focus-snap 460ms cubic-bezier(.18, .9, .2, 1.22) both;
}

.target-cursor-effect.is-locked:not(.is-locking) .target-cursor-corner {
  animation: target-cursor-focus-breathe 1.35s ease-in-out infinite;
}

@keyframes target-cursor-focus-snap {
  0% {
    opacity: .35;
    transform: translate(var(--snap-x), var(--snap-y)) scale(.72);
  }
  43% {
    opacity: 1;
    transform: translate(var(--overshoot-x), var(--overshoot-y)) scale(1.16);
  }
  70% {
    transform: translate(var(--settle-x), var(--settle-y)) scale(.95);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes target-cursor-focus-breathe {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate(var(--breathe-x), var(--breathe-y)) rotate(var(--breathe-rotate)) scale(1.045);
  }
}

@keyframes target-cursor-color-flash {
  0%,
  32% {
    border-color: #fff;
  }
  100% {
    border-color: var(--coral);
  }
}

@media (hover: none), (pointer: coarse) {
  .target-cursor-effect {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .target-cursor-effect.is-locking .target-cursor-corner,
  .target-cursor-effect.is-locked:not(.is-locking) .target-cursor-corner {
    animation: none;
  }
}

/* Fixed 1480 × 620 video canvas. Its right edge is the same edge as the nav. */
.hero {
  position: relative;
  height: var(--hero-height);
  overflow: hidden;
  background: #fff;
}

/* Very soft ambient color fields at the two sides of the hero. */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 78px;
  width: 520px;
  height: 500px;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(72px);
  opacity: .48;
}

.hero::before {
  left: -190px;
  background: radial-gradient(ellipse at center, rgba(255, 117, 145, .22) 0%, rgba(255, 117, 145, .08) 46%, transparent 74%);
}

.hero::after {
  right: -170px;
  background: radial-gradient(ellipse at center, rgba(255, 193, 66, .18) 0%, rgba(255, 193, 66, .06) 44%, transparent 74%);
}

.hero-media-frame {
  position: absolute;
  z-index: 1;
  top: 0;
  right: max(0px, calc((100% - var(--fixed-width)) / 2));
  width: var(--fixed-width);
  height: var(--hero-height);
  overflow: hidden;
  background: #fff;
}

.hero-media-frame .hero-video {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  display: block;
  width: var(--video-render-width);
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: right center;
  filter: saturate(1.16) contrast(1.08);
  background: #fff;
  transform: translateX(144px);
  opacity: 1;
  transition: none;
}

.hero-media-frame .hero-video-secondary {
  z-index: 2;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease-out;
  will-change: opacity;
}

.hero-media-frame .hero-video-secondary.is-active {
  opacity: 1;
}

/* Peer-to-peer hotspot switches hide the old layer in one frame so two
   full-canvas videos are never cross-faded on top of each other. */
.hero-media-frame .hero-video-secondary.is-instant-hidden {
  opacity: 0;
  transition: none;
}

/* Stable 1480 × 620 hit area for the left GPU group in the rendered video. */
.gpu-interaction-zone {
  position: absolute;
  z-index: 3;
  top: 300px;
  left: 785px;
  width: 285px;
  height: 205px;
  pointer-events: none;
}

/* Expanded central server-room hit area.  It keeps an 8px safety gutter from
   the GPU, cabinet and panel zones so adjacent animations never cross-fire. */
.server-room-interaction-zone {
  position: absolute;
  z-index: 3;
  top: 160px;
  left: 1078px;
  width: 238px;
  height: 277px;
  pointer-events: none;
}

/* Right-side rack.  It is separated horizontally from the server-room zone. */
.cabinet-interaction-zone {
  position: absolute;
  z-index: 3;
  top: 92px;
  left: 1324px;
  width: 151px;
  height: 253px;
  pointer-events: none;
}

/* Bottom control panel.  Its top edge starts below the server-room zone and
   its left edge stays 8px clear of the GPU zone. */
.panel-interaction-zone {
  position: absolute;
  z-index: 3;
  top: 445px;
  left: 1078px;
  width: 397px;
  height: 160px;
  pointer-events: none;
}

/* Overlay is constrained to the same canvas, so outer white stays pure white. */
.hero-overlay {
  position: absolute;
  z-index: 3;
  top: 0;
  right: max(0px, calc((100% - var(--fixed-width)) / 2));
  left: auto;
  width: var(--fixed-width);
  height: var(--hero-height);
  background:
    linear-gradient(90deg, rgba(255, 250, 249, .34) 0%, rgba(255, 250, 249, .12) 33%, rgba(255, 250, 249, .02) 66%, transparent 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .03), transparent 30%, rgba(255, 255, 255, .06));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 4;
  height: var(--hero-height);
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 680px;
  margin-top: 24px;
}

/* Three cards use exactly the same 1480px canvas as the header. */
.highlights {
  position: relative;
  z-index: 4;
  margin-top: -110px;
  background: transparent;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  overflow: visible;
}

.tilt-card-shell {
  position: relative;
  z-index: 1;
  min-width: 0;
  height: 151px;
  perspective: 920px;
  perspective-origin: 50% 50%;
}

.tilt-card-shell.is-tilting {
  z-index: 5;
}

.highlight-card {
  width: 100%;
  height: 151px;
  min-height: 151px;
  padding: 30px 35px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 6px 14px rgba(44, 57, 76, .14);
  transform:
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    scale3d(var(--tilt-scale, 1), var(--tilt-scale, 1), 1);
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
  transition: box-shadow 280ms ease;
}

.tilt-card-shell.is-hovered .highlight-card {
  box-shadow: 0 18px 36px rgba(42, 54, 73, .18);
}

.highlight-card img {
  width: 70px;
  height: 70px;
  transform: translateZ(34px);
  backface-visibility: hidden;
  will-change: transform, filter;
  transition: filter 280ms ease;
}

.highlight-card > div {
  transform: translateZ(18px);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.tilt-card-shell.is-hovered .highlight-card img {
  filter: drop-shadow(0 6px 8px rgba(255, 104, 104, .12));
}

.highlight-card h2 {
  margin: 0 0 11px;
  color: #404b60;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
  white-space: nowrap;
  transform: translateZ(7px);
  backface-visibility: hidden;
  transition: text-shadow 280ms ease;
}

.tilt-card-shell.is-hovered .highlight-card h2 {
  text-shadow: 0 4px 8px rgba(42, 54, 73, .08);
}

.highlight-card p {
  margin: 0;
  color: #9aa1ae;
  font-size: 16px;
  line-height: 1.4;
  white-space: nowrap;
  transform: translateZ(2px);
  backface-visibility: hidden;
}

/* Compact announcement and news strip below the three hero cards. */
.home-notice {
  position: relative;
  z-index: 3;
  padding: 22px 0 0;
  background: #fff;
}

.home-notice-bar {
  position: relative;
  min-height: 58px;
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr) 96px;
  align-items: center;
  border: 1px solid rgba(105, 115, 134, .18);
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
}

.home-notice-heading {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 18px;
  border-right: 0;
  color: #465166;
  white-space: nowrap;
}

.home-notice-heading strong {
  font-size: 14px;
  font-weight: 650;
}

.home-notice-list {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.home-notice-type {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ff6868;
  font-size: 12px;
  white-space: nowrap;
}

.home-notice-channel {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 127px;
  transform: translateY(-50%);
  pointer-events: none;
}

.home-notice-list[data-announcement-feed] {
  position: relative;
  height: 34px;
  display: block;
  overflow: hidden;
}

.home-notice-track {
  width: 100%;
  will-change: transform;
}

.home-notice-slide {
  width: 100%;
  height: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.home-notice-item {
  min-width: 0;
  height: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  color: #697386;
  text-decoration: none;
}

.home-notice-list > .home-notice-item:first-child,
.home-notice-slide > .home-notice-item:first-child {
  padding-left: 58px;
}

.footer-column a[aria-disabled="true"] {
  cursor: default;
  pointer-events: none;
}

.home-notice-item + .home-notice-item {
  border-left: 0;
}

.home-notice-title {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 180ms ease;
}

.home-notice-item time {
  color: #a7adb7;
  font-size: 12px;
  white-space: nowrap;
}

.home-notice-item:hover .home-notice-title {
  color: #ff6868;
}

.home-notice-more {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-left: 0;
  color: #929aa7;
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.home-notice-more span {
  color: #ff6868;
  font-size: 15px;
  transition: transform 180ms ease;
}

.home-notice-more:hover {
  color: #ff6868;
}

.home-notice-more:hover span {
  transform: translateX(3px);
}

.license-result-image {
  display: block;
  width: min(100%, 260px);
  max-height: 120px;
  margin-top: 14px;
  object-fit: contain;
  object-position: left center;
}

.home-notice + .product-advantages {
  padding-top: 74px;
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .tilt-card-shell {
    perspective: none;
  }

  .highlight-card {
    transform: none !important;
    will-change: auto;
    transition: none;
  }

  .highlight-card img,
  .highlight-card > div,
  .highlight-card h2,
  .highlight-card p {
    transform: none;
  }
}

.platform {
  background: #fff;
}

/*
  Keep the same fixed desktop composition even when a very narrow viewport
  triggers the base stylesheet's mobile media query. The page scrolls instead.
*/
@media (max-width: 1479px) {
  .site-header,
  .hero,
  .highlights,
  .home-notice,
  .platform,
  main {
    min-width: var(--fixed-width);
  }

  .nav-inner,
  .hero-inner,
  .content-width,
  .highlight-grid {
    width: var(--fixed-width) !important;
    max-width: none !important;
  }

  .site-header,
  .nav-inner {
    height: 64px;
  }

  .primary-nav,
  .nav-actions {
    display: flex !important;
  }

  .primary-nav {
    flex-direction: row;
    gap: 40px;
    height: 64px;
  }

  .nav-link {
    height: 64px;
    font-size: 15px;
  }

  .menu-toggle {
    display: none !important;
  }

  .hero {
    height: var(--hero-height);
  }

  .hero-media-frame,
  .hero-overlay {
    right: 0;
    width: var(--fixed-width);
    max-width: none;
  }

  .hero-media-frame .hero-video {
    width: var(--video-render-width);
    max-width: none;
    object-fit: contain;
    object-position: right center;
    right: 0;
    transform: translateX(144px);
  }

  .hero-inner {
    height: var(--hero-height);
    padding-top: 0;
    align-items: center;
  }

  .hero-copy {
    width: 680px;
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .hero-copy p {
    margin-bottom: 40px;
    font-size: 17px;
  }

  .hero-cta {
    width: 192px;
    height: 60px;
    font-size: 19px;
  }

  .highlights {
    margin-top: -110px;
  }

  .highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .highlight-card {
    height: 151px;
    min-height: 151px;
    padding: 30px 35px;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 24px;
  }

  .highlight-card img {
    width: 70px;
    height: 70px;
  }

  .highlight-card h2 {
    font-size: 21px;
    white-space: nowrap;
  }

  .highlight-card p {
    font-size: 16px;
    white-space: nowrap;
  }

  .platform {
    padding-top: 67px;
    padding-bottom: 110px;
  }

  .section-heading h2 {
    font-size: 36px;
    margin: 0 15px;
  }

  .heading-decor {
    font-size: 27px;
  }

  .section-heading p {
    font-size: 16px;
    line-height: normal;
  }

  .platform-showcase {
    grid-template-columns: 1.06fr 1fr;
    gap: 105px;
    margin-top: 80px;
  }

  .showcase-window {
    height: 290px;
  }

  .platform-copy h3 {
    margin-top: 38px;
    font-size: 24px;
  }

  .tabs {
    gap: 0;
  }

  .tab {
    font-size: 24px;
  }
}

/* Product advantages: interactive section below the hero. */
.product-advantages {
  min-width: var(--fixed-width);
  padding: 92px 0 84px;
  overflow: hidden;
  scroll-margin-top: 64px;
  background: #fff;
}

.advantages-heading {
  margin-bottom: 64px;
  text-align: center;
}

.advantages-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.advantages-title-row h2 {
  margin: 0;
  color: #354056;
  font-size: var(--section-title-size);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .04em;
}

.advantages-dots {
  width: 72px;
  height: 24px;
  flex: 0 0 72px;
  background-image: radial-gradient(circle, #aeb4bf 2.35px, transparent 2.8px);
  background-position: center;
  background-size: 11px 9px;
  opacity: .9;
}

.advantages-dots-left {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 72%);
  mask-image: linear-gradient(90deg, transparent, #000 72%);
}

.advantages-dots-right {
  -webkit-mask-image: linear-gradient(90deg, #000 28%, transparent);
  mask-image: linear-gradient(90deg, #000 28%, transparent);
}

.advantages-heading > p {
  margin: 24px 0 0;
  color: #9ba2ae;
  font-size: var(--section-subtitle-size);
  font-weight: 400;
  letter-spacing: .02em;
}

.advantages-layout {
  width: 100%;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 530px 910px;
  align-items: start;
  gap: 0;
}

.advantages-list {
  position: relative;
  z-index: 2;
  height: 740px;
  padding: 40px 30px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.advantage-item {
  position: relative;
  z-index: 3;
  width: 100%;
  flex: 0 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-panel);
  background: transparent;
  transition: border-radius 260ms cubic-bezier(.22, 1, .36, 1);
}

.advantage-item.is-active {
  z-index: 2;
  width: calc(100% + 31px);
  overflow: visible;
  border-radius: var(--radius-panel) 0 0 var(--radius-panel);
  background: #f7f8fa;
  box-shadow: none;
}

/* The selected item joins the large stage through two circular white cuts,
   reproducing the concave tab shape in the reference. */
.advantage-item.is-active::before,
.advantage-item.is-active::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.advantage-item.is-active::before {
  top: -24px;
  background: radial-gradient(circle at 0 0, #fff 0 23px, #f7f8fa 24px);
}

.advantage-item.is-active::after {
  bottom: -24px;
  background: radial-gradient(circle at 0 100%, #fff 0 23px, #f7f8fa 24px);
}

.advantage-trigger {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 88px;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.advantage-trigger:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: -5px;
  border-radius: var(--radius-card);
}

.advantage-item.is-active .advantage-trigger {
  padding-top: 26px;
  padding-bottom: 6px;
  align-items: start;
}

.advantage-icon {
  position: relative;
  width: 56px;
  height: 56px;
  display: block;
  flex: 0 0 56px;
  border-radius: 8px;
  transform: translateZ(0);
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
}

.advantage-item:not(.is-active):hover .advantage-icon,
.advantage-item:not(.is-active):focus-within .advantage-icon {
  transform: translate3d(2px, -2px, 0) rotate(-2deg) scale(1.035);
}

.advantage-item:not(.is-active):hover .advantage-icon-default,
.advantage-item:not(.is-active):focus-within .advantage-icon-default {
  opacity: 0;
  transform: scale(.88) rotate(5deg);
}

.advantage-item:not(.is-active):hover .advantage-icon-active,
.advantage-item:not(.is-active):focus-within .advantage-icon-active {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.advantage-icon img {
  position: absolute;
  inset: 0;
  width: 56px;
  height: 56px;
  display: block;
  transition:
    opacity 260ms ease,
    transform 460ms cubic-bezier(.22, 1, .36, 1);
}

.advantage-icon-active {
  opacity: 0;
  transform: scale(.82) rotate(-7deg);
}

.advantage-item.is-active .advantage-icon-default {
  opacity: 0;
  transform: scale(.88) rotate(5deg);
}

.advantage-item.is-active .advantage-icon-active {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.advantage-summary {
  min-width: 0;
  display: block;
}

.advantage-summary strong {
  display: block;
  margin: 0 0 8px;
  color: #3b465b;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  transition:
    color 260ms ease,
    transform 420ms cubic-bezier(.22, 1, .36, 1);
}

.advantage-summary > span {
  display: block;
  max-height: 24px;
  overflow: hidden;
  color: #a3a9b4;
  font-size: 14px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height 240ms ease,
    opacity 220ms ease,
    transform 320ms ease;
}

.advantage-item.is-active .advantage-summary strong {
  color: #333e54;
  transform: translateX(2px);
}

.advantage-item.is-active .advantage-summary > span {
  max-height: 0;
  opacity: 0;
  transform: translateY(-5px);
}

.advantage-detail {
  position: relative;
  z-index: 1;
  height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    height 480ms cubic-bezier(.22, 1, .36, 1),
    margin-top 480ms cubic-bezier(.22, 1, .36, 1),
    opacity 260ms ease;
}

.advantage-item.is-active .advantage-detail {
  height: 120px;
  margin-top: -28px;
  opacity: 1;
}

.advantage-detail > div {
  height: 120px;
  overflow: hidden;
}

.advantage-detail p {
  margin: 0;
  padding: 0 34px 0 100px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  color: #8f97a5;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  transform: translateY(12px);
  transition: transform 520ms cubic-bezier(.22, 1, .36, 1);
}

.advantage-item.is-active .advantage-detail p {
  transform: translateY(0);
}

.advantages-stage {
  --stage-pointer-x: 70%;
  --stage-pointer-y: 34%;
  position: relative;
  z-index: 1;
  width: 910px;
  height: 740px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-panel);
  background: #f7f8fa;
  isolation: isolate;
  outline: none;
  transition: border-radius 360ms cubic-bezier(.22, 1, .36, 1);
}

.advantages-stage.is-first-active {
  border-top-left-radius: var(--radius-panel);
}

.advantages-stage.is-last-active {
  border-bottom-left-radius: var(--radius-panel);
}

.advantages-stage::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background: radial-gradient(
    circle 180px at var(--stage-pointer-x) var(--stage-pointer-y),
    rgba(255, 104, 104, .075),
    rgba(255, 104, 104, .022) 42%,
    transparent 72%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.advantages-stage.is-exploring::before {
  opacity: 1;
}

.advantages-stage.is-pet-drag-over {
  box-shadow: inset 0 0 0 2px rgba(255, 104, 104, .28);
}

.advantages-stage.is-pet-drag-over::before {
  opacity: 1;
}

.advantages-stage:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 104, 104, .24);
}

.advantages-visual-stack {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.advantages-illustration {
  width: 910px;
  height: 740px;
  display: block;
  overflow: visible;
}

.advantage-layer {
  pointer-events: none;
}

.advantage-visual {
  --advantage-base-y: 0px;
  transform: translateY(var(--advantage-base-y));
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, filter;
  transition:
    transform 620ms cubic-bezier(.22, 1, .36, 1),
    filter 220ms ease;
}

.advantage-visual.is-active {
  --advantage-base-y: var(--lift-y);
  transform: translateY(var(--advantage-base-y));
}

.advantage-visual.is-pet-drop-target {
  filter: drop-shadow(0 12px 15px rgba(255, 104, 104, .2));
}

.advantage-visual.is-cursor-shaking .advantage-panel,
.advantage-visual.is-cursor-shaking .advantage-layer-texture {
  transform-box: fill-box;
  transform-origin: center;
  animation: advantage-card-shiver 300ms cubic-bezier(.36, .07, .19, .97) both;
}

@keyframes advantage-card-shiver {
  0%, 100% { transform: translate3d(0, 0, 0); }
  20% { transform: translate3d(-4px, -1px, 0); }
  40% { transform: translate3d(4px, 1px, 0); }
  60% { transform: translate3d(-2.5px, 0, 0); }
  80% { transform: translate3d(1.5px, 0, 0); }
}

.advantage-visual.is-pet-block-controlled {
  transform: translateY(var(--pet-block-motion-y, 0px));
  transition: filter 220ms ease;
}

.advantage-visual.is-pet-landing-impact {
  animation: advantage-pet-landing-impact 300ms cubic-bezier(.2, .78, .28, 1) both;
}

@keyframes advantage-pet-landing-impact {
  0%, 100% {
    transform: translateY(var(--advantage-base-y));
  }

  28% {
    transform: translateY(calc(var(--advantage-base-y) + 10px));
  }

  56% {
    transform: translateY(calc(var(--advantage-base-y) - 3px));
  }

  78% {
    transform: translateY(calc(var(--advantage-base-y) + 1.5px));
  }
}

.advantage-panel {
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  transition:
    opacity 180ms ease,
    filter 280ms ease;
}

.advantage-panel-blank {
  opacity: 1;
  filter: blur(.6px);
}

.advantage-visual.is-active .advantage-panel-blank {
  opacity: 0;
}

.advantage-visual.is-active .advantage-panel-selected {
  opacity: 1;
  filter: url(#advantage-panel-shadow);
  transition-delay: 45ms;
}

.advantage-panel-theme-outline {
  opacity: 0;
  transition: opacity 90ms ease;
}

.advantage-visual.is-cursor-target:not(.is-active) .advantage-panel-theme-outline-blank,
.advantage-visual.is-cursor-target.is-active .advantage-panel-theme-outline-selected {
  opacity: 1;
}

.advantage-layer-texture {
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  transition: opacity 160ms ease;
}

.advantage-visual.is-active .advantage-layer-texture {
  opacity: 1;
  transition-duration: 260ms;
  transition-delay: 70ms;
}

.advantage-cursor {
  display: none;
  --reticle-width: 34px;
  --reticle-height: 34px;
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
  width: var(--reticle-width);
  height: var(--reticle-height);
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0) translate3d(-50%, -50%, 0);
  will-change: transform, opacity;
  transition:
    width 170ms cubic-bezier(.22, 1, .36, 1),
    height 170ms cubic-bezier(.22, 1, .36, 1),
    opacity 80ms ease;
}

.advantage-cursor.is-visible {
  opacity: 1;
}

.advantage-cursor.is-suppressed {
  opacity: 0;
}

.advantage-reticle {
  position: absolute;
  inset: 0;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, .98))
    drop-shadow(0 3px 7px rgba(255, 104, 104, .34));
  transform: skewY(0) scale(1);
  transform-origin: center;
  transition: transform 170ms cubic-bezier(.22, 1, .36, 1);
}

.advantage-reticle::before,
.advantage-reticle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  background: #ff6868;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .92);
  transform: translate(-50%, -50%);
}

.advantage-reticle::before {
  width: 18px;
  height: 1px;
}

.advantage-reticle::after {
  width: 1px;
  height: 18px;
}

.advantage-cursor.is-target-locked .advantage-reticle {
  transform: skewY(29.7deg) scale(1);
}

.advantage-reticle i {
  position: absolute;
  width: 11px;
  height: 11px;
  border-color: #ff6868;
  border-style: solid;
  border-width: 0;
}

.advantage-reticle .corner-tl {
  top: 0;
  left: 0;
  border-top-width: 2px;
  border-left-width: 2px;
}

.advantage-reticle .corner-tr {
  top: 0;
  right: 0;
  border-top-width: 2px;
  border-right-width: 2px;
}

.advantage-reticle .corner-br {
  right: 0;
  bottom: 0;
  border-right-width: 2px;
  border-bottom-width: 2px;
}

.advantage-reticle .corner-bl {
  bottom: 0;
  left: 0;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.advantage-reticle b {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #ff6868;
  box-shadow: 0 0 0 1px #ff6868;
  transform: translate(-50%, -50%);
}

.advantage-cursor.is-visible.is-locking .advantage-reticle {
  animation: advantage-reticle-lock 220ms cubic-bezier(.2, .88, .3, 1.08) both;
}

.advantage-cursor.is-visible.is-locking .advantage-reticle .corner-tl {
  animation: advantage-aim-tl 1.2s ease-in-out 220ms infinite;
}

.advantage-cursor.is-visible.is-locking .advantage-reticle .corner-tr {
  animation: advantage-aim-tr 1.2s ease-in-out 220ms infinite;
}

.advantage-cursor.is-visible.is-locking .advantage-reticle .corner-br {
  animation: advantage-aim-br 1.2s ease-in-out 220ms infinite;
}

.advantage-cursor.is-visible.is-locking .advantage-reticle .corner-bl {
  animation: advantage-aim-bl 1.2s ease-in-out 220ms infinite;
}

.advantage-cursor.is-visible.is-locking .advantage-reticle b {
  animation: advantage-aim-center 1.2s ease-in-out 220ms infinite;
}

.advantage-cursor-bubble {
  position: absolute;
  top: 50%;
  left: calc(100% + 14px);
  min-width: 112px;
  padding: 10px 14px;
  border-radius: var(--radius-card);
  color: #fff;
  background: #ff6868;
  box-shadow: 0 10px 24px rgba(255, 104, 104, .24);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .02em;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-50%) translateX(-8px) scale(.94);
  transform-origin: left center;
  transition:
    opacity 100ms ease,
    transform 180ms cubic-bezier(.22, 1, .36, 1);
}

.advantage-cursor-bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: #ff6868;
  transform: translateY(-50%) rotate(45deg);
}

.advantage-cursor.is-visible.is-target-locked .advantage-cursor-bubble {
  opacity: 1;
  transform: translateY(-50%) translateX(0) scale(1);
}

.advantage-cursor.is-flipped .advantage-cursor-bubble {
  right: calc(100% + 14px);
  left: auto;
  transform-origin: right center;
}

.advantage-cursor.is-flipped .advantage-cursor-bubble::before {
  right: -6px;
  left: auto;
}

@keyframes advantage-reticle-lock {
  0% {
    opacity: .35;
    transform: skewY(29.7deg) scale(.08);
  }
  68% {
    opacity: 1;
    transform: skewY(29.7deg) scale(1.025);
  }
  100% {
    opacity: 1;
    transform: skewY(29.7deg) scale(1);
  }
}

@keyframes advantage-aim-tl {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(3px, 3px); }
}

@keyframes advantage-aim-tr {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-3px, 3px); }
}

@keyframes advantage-aim-br {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-3px, -3px); }
}

@keyframes advantage-aim-bl {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(3px, -3px); }
}

@keyframes advantage-aim-center {
  0%, 100% {
    box-shadow: 0 0 0 1px #f16662, 0 0 0 0 rgba(241, 102, 98, .24);
    transform: translate(-50%, -50%) scale(.9);
  }
  50% {
    box-shadow: 0 0 0 1px #f16662, 0 0 0 7px rgba(241, 102, 98, 0);
    transform: translate(-50%, -50%) scale(1.12);
  }
}

/* Three-platform business chain. */
.platform-chain {
  min-width: var(--fixed-width);
  padding: 82px 0 126px;
  overflow: hidden;
  scroll-margin-top: 64px;
  border-top: 1px solid #f1f3f6;
  background:
    radial-gradient(circle at 14% 44%, rgba(255, 104, 104, .045), transparent 28%),
    linear-gradient(180deg, #fbfcfd 0%, #fff 74%);
}

.platform-chain-heading {
  margin-bottom: 64px;
  text-align: center;
}

.platform-chain-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.platform-chain-title-row h2 {
  margin: 0;
  color: #354056;
  font-size: var(--section-title-size);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .04em;
}

.platform-chain-dots {
  width: 72px;
  height: 24px;
  flex: 0 0 72px;
  background-image: radial-gradient(circle, #adb4c0 2.35px, transparent 2.8px);
  background-position: center;
  background-size: 11px 9px;
  opacity: .88;
}

.platform-chain-dots-left {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 74%);
  mask-image: linear-gradient(90deg, transparent, #000 74%);
}

.platform-chain-dots-right {
  -webkit-mask-image: linear-gradient(90deg, #000 26%, transparent);
  mask-image: linear-gradient(90deg, #000 26%, transparent);
}

.platform-chain-heading > p {
  margin: 24px 0 0;
  color: #969eab;
  font-size: var(--section-subtitle-size);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: .015em;
}

.platform-chain-showcase {
  display: grid;
  grid-template-columns: 685px 685px;
  align-items: stretch;
  gap: 110px;
}

.platform-chain-artwork {
  min-width: 0;
  height: 493px;
  display: grid;
  align-items: center;
}

.platform-chain-artwork-shell {
  position: relative;
  width: 685px;
  max-width: 100%;
  aspect-ratio: 685 / 380;
  isolation: isolate;
}

.platform-chain-shot {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: 42px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #d8dde5;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 22px 42px rgba(44, 52, 70, .1);
  opacity: 0;
  visibility: hidden;
  transform: scale(.985);
  transition:
    opacity 220ms ease,
    visibility 0s linear 260ms,
    transform 360ms cubic-bezier(.22, 1, .36, 1);
}

.platform-chain-shot.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 70ms, 0s, 70ms;
}

.platform-chain-shot-bar {
  min-width: 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #d8dde5;
  color: #a0a9b7;
  background: #fafbfc;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .02em;
}

.platform-chain-shot-dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
}

.platform-chain-shot-dots i {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: #cfd5df;
}

.platform-chain-shot-dots i:first-child {
  background: #ff7b78;
}

.platform-chain-shot-body {
  min-height: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #f3f5f8;
}

.platform-chain-shot-body img {
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.platform-chain-screen {
  position: absolute;
  z-index: 2;
  top: 164px;
  left: 311px;
  width: 322px;
  height: 223px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .97), rgba(247, 249, 252, .96));
  box-shadow: inset 0 0 0 1px rgba(215, 220, 229, .42);
}

.platform-chain-screen-panel {
  position: absolute;
  inset: 0;
  padding: 17px 18px;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(12px, 7px, 0) scale(.985);
  transition:
    opacity 220ms ease,
    visibility 0s linear 260ms,
    transform 380ms cubic-bezier(.22, 1, .36, 1);
}

.platform-chain-screen-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 70ms, 0s, 70ms;
}

.platform-screen-head {
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #657086;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .02em;
}

.platform-screen-head > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.platform-screen-head > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6868;
  box-shadow: 0 0 0 4px rgba(255, 104, 104, .1);
}

.platform-screen-head > b {
  padding: 4px 7px;
  border-radius: 7px;
  color: #67a877;
  background: #eef8f1;
  font-size: 9px;
  font-weight: 650;
}

.platform-cloud-metrics {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1.28fr;
  gap: 9px;
}

.platform-cloud-metrics > span {
  min-height: 62px;
  padding: 11px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #edf0f4;
  border-radius: 9px;
  background: rgba(255, 255, 255, .9);
}

.platform-cloud-metrics small {
  color: #9ba4b2;
  font-size: 9px;
}

.platform-cloud-metrics strong {
  color: #3f4b61;
  font-size: 18px;
  line-height: 1;
}

.platform-screen-bars {
  margin-top: 12px;
  display: grid;
  gap: 7px;
}

.platform-screen-bars > span {
  height: 7px;
  overflow: hidden;
  border-radius: 10px;
  background: #edf0f4;
}

.platform-screen-bars i {
  width: var(--bar-width);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff6868, #ff9e80);
  transform-origin: left center;
}

.platform-chain-screen-panel.is-active .platform-screen-bars i {
  animation: platform-chain-bar-grow 620ms cubic-bezier(.22, 1, .36, 1) both;
}

.platform-business-flow {
  position: relative;
  isolation: isolate;
  margin-top: 21px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.platform-business-flow::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 20px;
  right: 27px;
  left: 27px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 104, 104, .2), #ff8b76, rgba(255, 104, 104, .2));
}

.platform-business-flow > span {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
}

.platform-business-flow i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 104, 104, .18);
  border-radius: 12px;
  color: #f16662;
  background: #fff6f4;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.platform-business-flow small {
  color: #8f98a7;
  font-size: 9px;
}

.platform-chain-screen-panel.is-active .platform-business-flow > span {
  animation: platform-chain-flow-in 460ms cubic-bezier(.22, 1, .36, 1) both;
}

.platform-chain-screen-panel.is-active .platform-business-flow > span:nth-child(2) { animation-delay: 45ms; }
.platform-chain-screen-panel.is-active .platform-business-flow > span:nth-child(3) { animation-delay: 90ms; }
.platform-chain-screen-panel.is-active .platform-business-flow > span:nth-child(4) { animation-delay: 135ms; }

.platform-business-summary {
  margin-top: 17px;
  padding: 10px 12px;
  display: flex;
  align-items: baseline;
  gap: 7px;
  border-radius: 9px;
  color: #929baa;
  background: #f1f3f6;
  font-size: 9px;
}

.platform-business-summary strong {
  margin-left: auto;
  color: #3f4b61;
  font-size: 17px;
}

.platform-business-summary small {
  font-size: 8px;
}

.platform-dcim-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.platform-dcim-grid > span {
  position: relative;
  height: 48px;
  border: 1px solid #e7ebf0;
  border-radius: 7px;
  background:
    repeating-linear-gradient(180deg, #dce2e9 0 2px, transparent 2px 7px),
    linear-gradient(145deg, #fff, #f5f7fa);
  background-position: center;
  background-size: 24px 28px, auto;
  background-repeat: no-repeat;
}

.platform-dcim-grid > span i {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #49bd73;
  box-shadow: 0 0 0 3px rgba(73, 189, 115, .1);
}

.platform-dcim-grid > span.is-warning i {
  background: #ffaf45;
  box-shadow: 0 0 0 3px rgba(255, 175, 69, .13);
}

.platform-chain-screen-panel.is-active .platform-dcim-grid > span i {
  animation: platform-chain-status-pulse 1.4s ease-in-out infinite;
}

.platform-dcim-energy {
  margin-top: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  color: #8f98a7;
  font-size: 9px;
}

.platform-dcim-energy > b {
  height: 6px;
  overflow: hidden;
  border-radius: 8px;
  background: #e8ecf1;
}

.platform-dcim-energy > b i {
  width: 72%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #48b976, #95d39c);
}

.platform-dcim-energy strong {
  color: #465167;
  font-size: 11px;
}

.platform-chain-scanline {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 42px;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 104, 104, .07), transparent);
  transform: translateY(-42px);
}

.platform-chain-artwork:hover .platform-chain-scanline {
  animation: platform-chain-scan 1.2s ease-out both;
}

.platform-chain-visual-meta {
  position: relative;
  width: 685px;
  height: 34px;
  margin-top: 18px;
}

.platform-chain-visual-meta > span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  opacity: 0;
  visibility: hidden;
  color: #9aa2af;
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    visibility 0s linear 260ms,
    transform 360ms cubic-bezier(.22, 1, .36, 1);
}

.platform-chain-visual-meta > span.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 80ms, 0s, 80ms;
}

.platform-chain-visual-meta b {
  color: #f16662;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.platform-chain-visual-meta b::after {
  content: "";
  width: 30px;
  height: 1px;
  display: inline-block;
  margin-left: 11px;
  vertical-align: 4px;
  background: rgba(241, 102, 98, .36);
}

.platform-chain-visual-meta i {
  color: #697489;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .02em;
}

.platform-chain-content {
  width: 685px;
  min-width: 685px;
  height: 493px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 74px 419px;
  gap: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.platform-chain-tabs {
  --indicator-x: 0px;
  --indicator-w: 108px;
  position: relative;
  height: 74px;
  min-height: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid #e1e5eb;
  border-radius: 0;
  background: transparent;
}

.platform-chain-tab {
  position: relative;
  height: auto;
  min-height: 0;
  padding: 0 4px 18px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #98a2b3;
  font: inherit;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(.22, 1, .36, 1);
}

.platform-chain-tab::before {
  display: none;
}

.platform-chain-tab span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .015em;
  white-space: nowrap;
}

.platform-chain-tab:hover {
  color: #667085;
  background: transparent;
}

.platform-chain-tab.is-active {
  color: #f16662;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.platform-chain-tab.is-active span {
  font-weight: 600;
}

.platform-chain-tab:focus-visible {
  outline: 2px solid rgba(255, 104, 104, .72);
  outline-offset: -2px;
  border-radius: var(--radius-control);
}

.platform-chain-indicator {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: var(--indicator-w);
  height: 2px;
  display: block;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, #ff6868, #ff8f78);
  transform: translateX(var(--indicator-x));
  transition:
    width 300ms cubic-bezier(.22, 1, .36, 1),
    transform 300ms cubic-bezier(.22, 1, .36, 1);
}

.platform-chain-panels {
  height: 419px;
  min-height: 0;
  display: grid;
}

.platform-chain-panel {
  grid-area: 1 / 1;
  min-width: 0;
  min-height: 0;
  height: 419px;
  padding: 32px 0;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: 108px 211px;
  row-gap: 36px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 220ms ease,
    visibility 0s linear 300ms,
    transform 360ms cubic-bezier(.22, 1, .36, 1);
}

.platform-chain-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 80ms, 0s, 80ms;
}

.platform-chain-summary {
  min-width: 0;
  height: 108px;
}

.platform-chain-panel h3 {
  margin: 0;
  min-height: 0;
  padding: 0;
  display: block;
  border: 0;
  border-radius: 0;
  color: #344054;
  background: transparent;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0;
}

.platform-chain-description {
  width: 100%;
  max-width: none;
  min-height: 72px;
  margin: 8px 0 0;
  color: #667085;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: .01em;
  text-align: justify;
  text-align-last: left;
}

.platform-chain-tags {
  height: 211px;
  min-height: 0;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 49px);
  row-gap: 32px;
  column-gap: 16px;
  align-self: stretch;
  list-style: none;
}

.platform-chain-tags li {
  min-height: 0;
  padding: 0 10px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius-control);
  color: #475467;
  background: #f2f4f7;
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  opacity: 0;
  transform: translateY(7px);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    opacity 240ms ease,
    transform 320ms cubic-bezier(.22, 1, .36, 1);
}

.platform-chain-panel.is-active .platform-chain-tags li {
  opacity: 1;
  transform: translateY(0);
  transition-delay:
    0s,
    0s,
    calc(100ms + var(--tag-delay, 0ms)),
    calc(100ms + var(--tag-delay, 0ms));
}

.platform-chain-tags li:hover {
  color: #e45f5c;
  background: #ffeceb;
}

/* Customer feedback. */
.customer-feedback {
  min-width: var(--fixed-width);
  padding: 88px 0 116px;
  overflow: hidden;
  scroll-margin-top: 64px;
  border-top: 0;
  background: #fff;
}

.feedback-heading {
  margin-bottom: 64px;
  text-align: center;
}

.feedback-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.feedback-title-row h2 {
  margin: 0;
  color: #354056;
  font-size: var(--section-title-size);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .04em;
}

.feedback-dots {
  width: 72px;
  height: 24px;
  flex: 0 0 72px;
  background-image: radial-gradient(circle, #adb4c0 2.35px, transparent 2.8px);
  background-position: center;
  background-size: 11px 9px;
  opacity: .88;
}

.feedback-dots-left {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 74%);
  mask-image: linear-gradient(90deg, transparent, #000 74%);
}

.feedback-dots-right {
  -webkit-mask-image: linear-gradient(90deg, #000 26%, transparent);
  mask-image: linear-gradient(90deg, #000 26%, transparent);
}

.feedback-heading > p {
  margin: 24px 0 0;
  color: #969eab;
  font-size: var(--section-subtitle-size);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: .015em;
}

.feedback-stage {
  position: relative;
}

.feedback-viewport {
  position: relative;
  max-height: 820px;
  overflow: hidden;
  transition: max-height 680ms cubic-bezier(.22, 1, .36, 1);
  will-change: max-height;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feedback-card {
  height: 260px;
  padding: 28px 30px 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid #dfe3e8;
  border-radius: var(--radius-card);
  background: #fff;
  transition:
    border-color 180ms ease,
    transform 300ms cubic-bezier(.22, 1, .36, 1);
}

.feedback-card:hover {
  border-color: rgba(255, 104, 104, .34);
  transform: translateY(-2px);
}

.feedback-card blockquote,
.feedback-card blockquote p {
  margin: 0;
}

.feedback-card blockquote p {
  display: -webkit-box;
  overflow: hidden;
  color: #465166;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: .01em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.feedback-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.feedback-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  overflow: hidden;
  border-radius: 50%;
  background-image: url("../assets/img/customer-avatars.svg");
  background-repeat: no-repeat;
  background-size: 500% 300%;
  box-shadow: 0 0 0 1px rgba(70, 81, 102, .08);
}

.avatar-01 { background-position: 0 0; }
.avatar-02 { background-position: 25% 0; }
.avatar-03 { background-position: 50% 0; }
.avatar-04 { background-position: 75% 0; }
.avatar-05 { background-position: 100% 0; }
.avatar-06 { background-position: 0 50%; }
.avatar-07 { background-position: 25% 50%; }
.avatar-08 { background-position: 50% 50%; }
.avatar-09 { background-position: 75% 50%; }
.avatar-10 { background-position: 100% 50%; }
.avatar-11 { background-position: 0 100%; }
.avatar-12 { background-position: 25% 100%; }
.avatar-13 { background-position: 50% 100%; }
.avatar-14 { background-position: 75% 100%; }
.avatar-15 { background-position: 100% 100%; }

.feedback-author-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.feedback-author-copy strong {
  color: #465166;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.feedback-author-copy small {
  overflow: hidden;
  color: #a1a7b1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feedback-fade {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 260px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, .5) 48%,
    rgba(255, 255, 255, .94) 78%,
    #fff 100%
  );
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.feedback-more {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 24px;
  width: 188px;
  height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: var(--radius-control);
  color: #fff;
  background: linear-gradient(135deg, #ff7770, #f45f62);
  font: 600 16px/1 var(--font);
  letter-spacing: .03em;
  cursor: pointer;
  transform: translateX(-50%);
  transition:
    opacity 180ms ease,
    visibility 0s linear 180ms,
    background-color 180ms ease;
}

.feedback-more i {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.feedback-more:hover {
  background: linear-gradient(135deg, #ff6965, #ed555b);
}

.feedback-more:focus-visible {
  outline: 2px solid rgba(255, 104, 104, .54);
  outline-offset: 4px;
}

.feedback-stage.is-expanded .feedback-fade,
.feedback-stage.is-expanded .feedback-more {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* About and footer. */
.about-us {
  min-width: var(--fixed-width);
  padding: 58px 0 29px;
  overflow: hidden;
  scroll-margin-top: 64px;
  border-top: 0;
  background: #fff;
}

.about-heading {
  margin-bottom: 50px;
  text-align: center;
}

.about-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.about-title-row h2 {
  margin: 0;
  color: #354056;
  font-size: var(--section-title-size);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .04em;
}

.about-dots {
  width: 72px;
  height: 24px;
  flex: 0 0 72px;
  background-image: radial-gradient(circle, #adb4c0 2.35px, transparent 2.8px);
  background-position: center;
  background-size: 11px 9px;
  opacity: .88;
}

.about-dots-left {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 74%);
  mask-image: linear-gradient(90deg, transparent, #000 74%);
}

.about-dots-right {
  -webkit-mask-image: linear-gradient(90deg, #000 26%, transparent);
  mask-image: linear-gradient(90deg, #000 26%, transparent);
}

.about-heading > p {
  margin: 24px 0 0;
  color: #969eab;
  font-size: var(--section-subtitle-size);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: .015em;
}

.about-showcase {
  width: 100%;
  min-height: 467px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 685px 685px;
  justify-content: start;
  align-items: start;
  gap: 110px;
}

.about-copy {
  height: 467px;
  padding: 30px 0 0;
  display: flex;
  flex-direction: column;
  align-self: start;
}

.about-copy > p {
  margin: 0;
  color: #465166;
  font-size: 20px;
  font-weight: 600;
  line-height: 2.75;
  letter-spacing: .018em;
  text-align: left;
}

.about-copy > p span {
  display: block;
  white-space: nowrap;
}

.about-cta {
  position: relative;
  width: 246px;
  height: 58px;
  margin-top: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  color: #fff;
  background: #f66562;
  box-shadow: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .025em;
  text-decoration: none;
  transition: transform 240ms cubic-bezier(.22, 1, .36, 1), box-shadow 240ms ease;
}

.about-cta span {
  position: relative;
  z-index: 1;
}

.about-cta i {
  position: absolute;
  top: -30%;
  left: -55%;
  width: 48%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transform: skewX(-20deg);
  transition: left 500ms ease;
}

.about-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(244, 95, 98, .25);
}

.about-cta:hover i {
  left: 118%;
}

.about-cta:focus-visible {
  outline: 2px solid rgba(255, 104, 104, .54);
  outline-offset: 4px;
}

.about-visual {
  width: 685px;
  height: 467px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about-visual img {
  width: 685px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 34px rgba(44, 52, 68, .035));
}

.site-footer {
  min-width: var(--fixed-width);
  color: #888b91;
  background: #292b2f;
}

.footer-inner {
  padding: 50px 0 0;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 160px 145px 145px 170px 250px 140px;
  justify-content: space-between;
  align-items: start;
  gap: 30px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h2 {
  margin: 0 0 24px;
  color: #f2f2f3;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .025em;
}

.footer-column > a,
.footer-contact-item {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  color: #92959b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.footer-column > a:hover {
  color: #e6e7e9;
}

.footer-column > a:focus-visible {
  outline: 1px solid rgba(255, 255, 255, .55);
  outline-offset: 3px;
}

.footer-contact h2 {
  margin-bottom: 20px;
}

.footer-contact > a,
.footer-contact-item {
  gap: 12px;
}

.footer-contact svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  overflow: visible;
  fill: none;
  stroke: #a7a9ad;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact a:last-child svg {
  fill: none;
}

.footer-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #74777d;
  text-align: center;
}

.footer-qr-code {
  position: relative;
  width: 126px;
  height: 126px;
  margin: 0 0 14px;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 50%, transparent 50%) 0 0 / 18px 18px,
    linear-gradient(rgba(255, 255, 255, .035) 50%, transparent 50%) 0 0 / 18px 18px,
    #5b5d62;
}

.footer-qr-code::before,
.footer-qr-code::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 5px solid rgba(255, 255, 255, .09);
}

.footer-qr-code::before {
  top: 15px;
  left: 15px;
}

.footer-qr-code::after {
  right: 15px;
  bottom: 15px;
}

.footer-qr strong,
.footer-qr span {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
}

.footer-legal {
  min-height: 58px;
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #44464a;
  color: #70737a;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-beian-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-beian-icon {
  width: 14px;
  height: 15px;
  flex: 0 0 14px;
  object-fit: contain;
}

.footer-legal a:hover {
  color: #b9bbc0;
}

.footer-legal i {
  width: 1px;
  height: 12px;
  margin: 0 8px;
  background: #5d6065;
}

@keyframes platform-chain-bar-grow {
  from { transform: scaleX(.08); opacity: .35; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes platform-chain-flow-in {
  from { opacity: 0; transform: translateY(6px) scale(.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes platform-chain-status-pulse {
  0%, 100% { transform: scale(.86); opacity: .7; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes platform-chain-scan {
  0% { opacity: 0; transform: translateY(-42px); }
  18% { opacity: 1; }
  82% { opacity: .7; }
  100% { opacity: 0; transform: translateY(223px); }
}

/* Scroll depth: staggered entrances and a few safe parallax shells.
   The header deliberately has no progress line: the text underline is the
   navigation's single active/hover indicator. */

.scroll-motion-layer {
  transform: translate3d(0, var(--scroll-parallax-y, 0px), 0);
  will-change: transform;
}

.hero::before {
  transform: translate3d(0, var(--hero-ambient-left-y, 0px), 0);
  will-change: transform;
}

.hero::after {
  transform: translate3d(0, var(--hero-ambient-right-y, 0px), 0);
  will-change: transform;
}

.scroll-motion-ready .scroll-reveal {
  --scroll-reveal-y: 22px;
  opacity: 0;
  translate: 0 var(--scroll-reveal-y);
}

.scroll-motion-ready .scroll-reveal.scroll-reveal-fade {
  --scroll-reveal-y: 0px;
}

.scroll-motion-ready .scroll-reveal.is-scroll-visible {
  animation: scroll-motion-reveal-in 720ms cubic-bezier(.2, .78, .24, 1) var(--scroll-reveal-delay, 0ms) both;
}

.scroll-motion-ready .scroll-reveal:is(
  .advantages-heading,
  .platform-chain-heading,
  .feedback-heading,
  .about-heading
):not(.is-scroll-visible) :is(
  .advantages-dots,
  .platform-chain-dots,
  .feedback-dots,
  .about-dots
) {
  opacity: 0;
  transform: scaleX(.24);
}

.scroll-motion-ready .scroll-reveal.is-scroll-visible :is(
  .advantages-dots,
  .platform-chain-dots,
  .feedback-dots,
  .about-dots
) {
  animation: scroll-motion-dots-open 600ms cubic-bezier(.22, 1, .36, 1) 170ms both;
}

:is(
  .advantages-dots-left,
  .platform-chain-dots-left,
  .feedback-dots-left,
  .about-dots-left
) {
  transform-origin: 100% 50%;
}

:is(
  .advantages-dots-right,
  .platform-chain-dots-right,
  .feedback-dots-right,
  .about-dots-right
) {
  transform-origin: 0 50%;
}

@keyframes scroll-motion-reveal-in {
  from {
    opacity: 0;
    translate: 0 var(--scroll-reveal-y);
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes scroll-motion-dots-open {
  from {
    opacity: 0;
    transform: scaleX(.24);
  }

  to {
    opacity: .9;
    transform: scaleX(1);
  }
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (hover: hover) and (pointer: fine) {
  .advantages-stage {
    cursor: default;
  }

  .advantages-stage.is-cursor-over-target {
    cursor: pointer;
  }
}

@media (max-width: 1480px), (max-height: 900px) {
  .advantage-item.is-active .advantage-detail,
  .advantage-detail > div {
    height: 104px;
  }

  .advantage-detail p {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-motion-layer,
  .hero::before,
  .hero::after {
    transform: none !important;
    will-change: auto;
  }

  .scroll-motion-ready .scroll-reveal,
  .scroll-motion-ready .scroll-reveal.is-scroll-visible,
  .scroll-motion-ready .scroll-reveal.is-scroll-visible :is(
    .advantages-dots,
    .platform-chain-dots,
    .feedback-dots,
    .about-dots
  ) {
    opacity: 1 !important;
    translate: 0 0 !important;
    transform: none !important;
    animation: none !important;
  }

  .platform-chain *,
  .platform-chain *::before,
  .platform-chain *::after {
    animation: none !important;
    transition-duration: 1ms !important;
  }

  .feedback-viewport,
  .feedback-card,
  .feedback-fade,
  .feedback-more {
    transition-duration: 1ms !important;
  }

  .advantage-item,
  .advantage-icon img,
  .advantage-summary strong,
  .advantage-summary > span,
  .advantage-detail,
  .advantage-detail p,
  .advantage-visual,
  .advantage-panel,
  .advantage-layer-texture,
  .advantage-cursor,
  .advantage-cursor-bubble,
  .advantages-stage::before {
    transition-duration: 1ms !important;
  }

  .advantage-cursor.is-visible .advantage-reticle,
  .advantage-cursor.is-visible .advantage-reticle i,
  .advantage-cursor.is-visible .advantage-reticle b {
    animation: none;
  }
}

/* -------------------------------------------------------------------------
   V10 section rhythm

   The hero, highlight cards, notice strip, floating assistant and footer are
   composition-led areas. Everything between them follows one repeatable
   vertical cadence so a heading never appears to drift away from the
   previous block. Keep this cascade last: it is intentionally a small,
   reversible layer over the earlier visual experiments.
   ------------------------------------------------------------------------- */
.product-advantages,
.platform-chain,
.customer-feedback {
  padding-top: var(--section-space-top);
  padding-bottom: 0;
}

/* The product-advantages heading is a slightly shorter header block than
   the other homepage headings, so add the small visual compensation here. */
.product-advantages {
  padding-top: 120px;
}

.advantages-heading,
.platform-chain-heading,
.feedback-heading {
  margin-bottom: var(--section-heading-gap);
}

/* The notice is a compact information strip, so the first full section
   starts on the compact rhythm instead of doubling the whitespace. */
.home-notice + .product-advantages {
  padding-top: 120px;
}

.about-us {
  padding: var(--section-space-top) 0 96px;
}

.about-heading {
  margin-bottom: var(--section-heading-gap);
}

@media (max-width: 760px) {
  .product-advantages,
  .platform-chain,
  .customer-feedback {
    padding-top: 76px;
    padding-bottom: 0;
  }

  .about-us {
    padding-top: 76px;
    padding-bottom: 84px;
  }

  .home-notice + .product-advantages {
    padding-top: 76px;
  }

  .advantages-heading,
  .platform-chain-heading,
  .feedback-heading,
  .about-heading {
    margin-bottom: 40px;
  }
}
