/* Muvail marketing layout v2 — isolated final cascade. */
body.home-page,
body.features-page {
  --mv2-text: #f1efe8;
  --mv2-muted: rgba(241, 239, 232, 0.68);
  --mv2-line: rgba(255, 255, 255, 0.09);
  --mv2-panel: #11161e;
  --mv2-panel-2: #151b24;
  --mv2-gold: #dfbd63;
}

/* Keep the hero halo soft in dark, low-contrast displays. Using a radial
   falloff before the blur avoids the visible rings produced by blurring a
   single flat translucent ellipse. */
body.home-page {
  background:
    radial-gradient(
      circle at 50% -20%,
      rgba(65, 83, 118, 0.14) 0%,
      rgba(65, 83, 118, 0.122) 10%,
      rgba(65, 83, 118, 0.094) 19%,
      rgba(65, 83, 118, 0.061) 26%,
      rgba(65, 83, 118, 0.03) 31%,
      rgba(65, 83, 118, 0.01) 34%,
      rgba(65, 83, 118, 0) 35%
    ),
    linear-gradient(180deg, #080a0e 0%, var(--ink) 55%, #090b10 100%);
}

body.home-page .ambient span {
  opacity: 1;
  filter: blur(82px);
}

body.home-page .ambient__sun {
  background: radial-gradient(
    circle at center,
    rgba(231, 197, 107, 0.115) 0%,
    rgba(231, 197, 107, 0.105) 18%,
    rgba(231, 197, 107, 0.084) 36%,
    rgba(231, 197, 107, 0.057) 54%,
    rgba(231, 197, 107, 0.031) 70%,
    rgba(231, 197, 107, 0.011) 84%,
    rgba(231, 197, 107, 0) 100%
  );
}

body.home-page .ambient__blue {
  background: radial-gradient(
    circle at center,
    rgba(74, 113, 163, 0.128) 0%,
    rgba(74, 113, 163, 0.115) 18%,
    rgba(74, 113, 163, 0.092) 36%,
    rgba(74, 113, 163, 0.062) 54%,
    rgba(74, 113, 163, 0.033) 70%,
    rgba(74, 113, 163, 0.012) 84%,
    rgba(74, 113, 163, 0) 100%
  );
}

body.home-page .ambient__violet {
  background: radial-gradient(
    ellipse at center,
    rgba(136, 119, 165, 0.068) 0%,
    rgba(136, 119, 165, 0.057) 24%,
    rgba(136, 119, 165, 0.036) 48%,
    rgba(136, 119, 165, 0.015) 72%,
    rgba(136, 119, 165, 0) 100%
  );
}

/* Dark gradients expose the small number of displayable near-black tones.
   A masked, sub-pixel noise pass dithers those tones without reading as grain. */
body.home-page .ambient::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 50%;
  width: min(1380px, 100%);
  height: 470px;
  pointer-events: none;
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 144 144' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='d'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23d)' opacity='.55'/%3E%3C/svg%3E");
  background-size: 144px 144px;
  opacity: 0.075;
  mix-blend-mode: soft-light;
  -webkit-mask-image: radial-gradient(ellipse at 50% 38%, #000 0%, rgba(0, 0, 0, 0.92) 44%, rgba(0, 0, 0, 0.34) 70%, transparent 88%);
  mask-image: radial-gradient(ellipse at 50% 38%, #000 0%, rgba(0, 0, 0, 0.92) 44%, rgba(0, 0, 0, 0.34) 70%, transparent 88%);
}

body.home-page .home-values__intro h2,
body.home-page .platform-showcase__heading h2,
body.features-page .section-heading h2,
body.features-page .materials h2,
body.features-page .themes h2,
body.features-page .languages h2,
body.features-page .download h2 {
  max-width: 720px;
  font-size: clamp(2.65rem, 4.25vw, 4.05rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

body.home-page .hero {
  padding-top: 154px;
  padding-bottom: 18px;
}

body.home-page .hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 405px;
  left: 50%;
  width: min(1040px, calc(100vw - 96px));
  height: 550px;
  border-radius: 50%;
  transform: translateX(-50%);
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 144 144' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='d'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.74' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23d)' opacity='.14'/%3E%3C/svg%3E"),
    radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0.98) 0%,
      rgba(0, 0, 0, 0.92) 18%,
      rgba(0, 0, 0, 0.78) 38%,
      rgba(0, 0, 0, 0.54) 58%,
      rgba(0, 0, 0, 0.28) 74%,
      rgba(0, 0, 0, 0.1) 88%,
      rgba(0, 0, 0, 0) 100%
    );
  background-size: 144px 144px, 100% 100%;
  background-blend-mode: soft-light, normal;
  pointer-events: none;
}

body.home-page .hero > * {
  position: relative;
  z-index: 1;
}

body.home-page .hero__content {
  margin-bottom: 0;
}

body.home-page .hero-brand-lockup {
  min-height: 150px;
  margin-bottom: 0;
}

body.home-page .hero-brand-lockup > img {
  flex-basis: 138px;
  width: 138px !important;
  height: 138px !important;
}

body.home-page .hero-brand-lockup > div {
  min-height: 138px;
}

body.home-page .hero-demo-copy {
  order: 2;
  z-index: 2;
  width: min(100% - 40px, 760px);
  margin: 64px auto 14px;
  text-align: center;
}

body.home-page .hero-demo-claim {
  margin: 0;
  color: #d7b45d;
  background: linear-gradient(105deg, #f2dc91 0%, #d7b45d 58%, #b9c4c6 124%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Microsoft YaHei UI", "PingFang SC", sans-serif;
  font-size: clamp(1.92rem, 2.9vw, 2.45rem);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.012em;
  line-height: 1.15;
}

body.home-page .hero-demo-support {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.42em;
  margin: 15px 0 0;
  color: rgba(196, 201, 210, 0.72);
  font-size: clamp(0.82rem, 1.05vw, 0.94rem);
  font-weight: 540;
  letter-spacing: 0.025em;
  line-height: 1.55;
}

body.home-page .hero-demo-support__separator {
  color: rgba(215, 180, 93, 0.62);
}

body.home-page .hero__stage {
  order: 3;
  z-index: 1;
  width: 100%;
  max-width: none;
}

body.home-page .cinema-frame {
  --demo-subtitle-color: #eeeae1;
  --demo-subtitle-translation-color: rgba(238, 234, 225, 0.78);
  box-shadow: 0 18px 34px -26px rgba(0, 0, 0, 0.68);
}

body.home-page .cinema-scene {
  --demo-pointer-x: 50%;
  --demo-pointer-y: 50%;
  transition: box-shadow 240ms ease;
}

body.home-page .cinema-scene::after {
  content: "";
  position: absolute;
  z-index: 4;
  width: 58px;
  height: 58px;
  left: var(--demo-pointer-x);
  top: var(--demo-pointer-y);
  opacity: 0;
  border: 1px solid rgba(215, 180, 93, 0.62);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(168, 133, 59, 0.14);
  transform: translate(-50%, -50%) scale(0.42);
  pointer-events: none;
}

body.home-page .cinema-frame.is-hover-guidance .cinema-scene {
  box-shadow: inset 0 0 0 1px rgba(215, 180, 93, 0.24), inset 0 0 34px rgba(168, 133, 59, 0.055);
}

body.home-page .cinema-frame.is-hover-guidance .cinema-scene::after {
  animation: demo-pointer-ripple 900ms ease-out both;
}

body.home-page .cinema-frame.is-hover-guidance[data-mode="both"] .mask-layer--original {
  animation: demo-mask-hint-original 900ms ease-in-out both;
}

body.home-page .cinema-frame.is-hover-guidance[data-mode="both"] .mask-layer--translation {
  animation: demo-mask-hint-translation 900ms ease-in-out both;
}

@keyframes demo-pointer-ripple {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.42); }
  24% { opacity: 0.58; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes demo-mask-hint-original {
  0%, 100% { transform: translateY(0); }
  46% { transform: translateY(-4px); }
}

@keyframes demo-mask-hint-translation {
  0%, 100% { transform: translateY(0); }
  46% { transform: translateY(4px); }
}

body.home-page .demo-autoplay-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 6px 11px;
  color: rgba(244, 241, 234, 0.92);
  border: 1px solid rgba(224, 192, 108, 0.58);
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(224, 192, 108, 0.15), rgba(215, 180, 93, 0.07));
  box-shadow: inset 0 1px 0 rgba(255, 244, 204, 0.1), 0 7px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(210, 174, 82, 0.11);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body.home-page .demo-autoplay-badge:hover,
body.home-page .demo-autoplay-badge:focus-visible {
  color: #fff8e7;
  border-color: rgba(230, 198, 111, 0.7);
  background: linear-gradient(180deg, rgba(215, 180, 93, 0.19), rgba(215, 180, 93, 0.09));
  box-shadow: inset 0 1px 0 rgba(255, 244, 204, 0.12), 0 8px 24px rgba(0, 0, 0, 0.24), 0 0 24px rgba(198, 162, 78, 0.13);
  transform: translateY(-1px);
}

body.home-page .demo-autoplay-badge:focus-visible {
  outline: 1px solid rgba(215, 180, 93, 0.48);
  outline-offset: 2px;
}

body.home-page .demo-autoplay-badge__dot {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e1c468;
  box-shadow: 0 0 0 0 rgba(225, 196, 104, 0.28), 0 0 10px rgba(225, 196, 104, 0.42);
  animation: demo-entry-pulse 1.8s ease-in-out infinite;
}

body.home-page .demo-autoplay-badge__tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 7px;
  color: #f1d980;
  border: 1px solid rgba(225, 195, 109, 0.42);
  border-radius: 999px;
  background: rgba(225, 195, 109, 0.15);
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.05em;
}

body.home-page .cinema-frame.is-entry-intro:not(.is-interactive) .demo-autoplay-badge {
  animation: demo-entry-intro 1.15s ease-in-out 3;
}

@keyframes demo-entry-intro {
  0%, 100% {
    border-color: rgba(224, 192, 108, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 244, 204, 0.1), 0 7px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(210, 174, 82, 0.11);
    transform: translateY(0) scale(1);
  }
  50% {
    border-color: rgba(236, 207, 126, 0.86);
    box-shadow: inset 0 1px 0 rgba(255, 244, 204, 0.16), 0 9px 26px rgba(0, 0, 0, 0.25), 0 0 0 4px rgba(198, 162, 78, 0.08), 0 0 30px rgba(198, 162, 78, 0.18);
    transform: translateY(-1px) scale(1.025);
  }
}

@keyframes demo-entry-pulse {
  0%, 100% { opacity: 0.56; box-shadow: 0 0 0 0 rgba(198, 162, 78, 0.08), 0 0 6px rgba(198, 162, 78, 0.2); }
  50% { opacity: 1; box-shadow: 0 0 0 4px rgba(198, 162, 78, 0.08), 0 0 10px rgba(198, 162, 78, 0.32); }
}

body.home-page .demo-autoplay-badge__active {
  display: none;
  align-items: center;
  gap: 8px;
}

body.home-page .cinema-frame.is-interactive .demo-autoplay-badge__idle {
  display: none;
}

body.home-page .cinema-frame.is-interactive .demo-autoplay-badge__active {
  display: inline-flex;
}

body.home-page .cinema-frame.is-interactive .demo-autoplay-badge {
  color: rgba(236, 255, 245, 0.88);
  border-color: rgba(98, 217, 150, 0.32);
  background: rgba(98, 217, 150, 0.055);
  box-shadow: inset 0 1px 0 rgba(223, 255, 237, 0.06), 0 7px 20px rgba(0, 0, 0, 0.18), 0 0 20px rgba(98, 217, 150, 0.07);
}

body.home-page .cinema-frame.is-interactive .demo-autoplay-badge__tag {
  display: none;
}

body.home-page .cinema-frame.is-interactive .demo-autoplay-badge__dot {
  background: #62d996;
  box-shadow: 0 0 0 0 rgba(98, 217, 150, 0.18), 0 0 9px rgba(98, 217, 150, 0.36);
  animation: demo-active-pulse 1.45s ease-in-out infinite;
}

body.home-page .cinema-frame.has-seen-interaction:not(.is-interactive) .demo-autoplay-badge {
  color: rgba(244, 241, 234, 0.7);
  border-color: rgba(224, 192, 108, 0.38);
  background: rgba(215, 180, 93, 0.03);
  box-shadow: 0 0 14px rgba(198, 162, 78, 0.055);
}

body.home-page .cinema-frame.has-seen-interaction:not(.is-interactive) .demo-autoplay-badge__tag {
  color: rgba(241, 217, 128, 0.9);
  border-color: rgba(225, 195, 109, 0.3);
  background: rgba(225, 195, 109, 0.1);
}

body.home-page .cinema-frame.has-seen-interaction:not(.is-interactive) .demo-autoplay-badge__dot {
  opacity: 0.92;
  animation: none;
}

@keyframes demo-active-pulse {
  0%, 100% { opacity: 0.58; box-shadow: 0 0 0 0 rgba(98, 217, 150, 0.06), 0 0 7px rgba(98, 217, 150, 0.24); }
  50% { opacity: 1; box-shadow: 0 0 0 4px rgba(98, 217, 150, 0.08), 0 0 12px rgba(98, 217, 150, 0.42); }
}

body.home-page .cinema-frame.is-interaction-feedback .demo-autoplay-badge {
  animation: demo-entry-confirm 620ms ease-out both;
}

@keyframes demo-entry-confirm {
  0% { background: rgba(98, 217, 150, 0); }
  28% { background: rgba(98, 217, 150, 0.075); }
  100% { background: rgba(98, 217, 150, 0); }
}

body.home-page .cinema-frame__bar .session-label {
  min-width: 0;
  gap: 6px;
}

body.home-page .cinema-frame__bar .session-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62d996;
  box-shadow: 0 0 0 0 rgba(98, 217, 150, 0.2), 0 0 12px rgba(98, 217, 150, 0.5);
  animation: demo-session-live-pulse 1.45s ease-in-out infinite;
}

@keyframes demo-session-live-pulse {
  0%, 100% { opacity: 0.48; box-shadow: 0 0 0 0 rgba(98, 217, 150, 0.04), 0 0 8px rgba(98, 217, 150, 0.26); }
  50% { opacity: 1; box-shadow: 0 0 0 5px rgba(98, 217, 150, 0.1), 0 0 16px rgba(98, 217, 150, 0.58); }
}

body.home-page .cinema-frame__bar .session-timer {
  flex: 0 0 auto;
  margin-left: auto;
  gap: 0;
}

body.home-page .demo-autoplay-badge__keys {
  display: inline-flex;
  gap: 4px;
}

body.home-page .demo-autoplay-badge kbd {
  display: inline-flex;
  min-width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #241f14;
  border: 1px solid rgba(218, 190, 112, 0.44);
  border-radius: 6px;
  background: linear-gradient(180deg, #c8aa58, #9f8038);
  box-shadow: 0 1px 0 rgba(82, 57, 16, 0.62), 0 0 8px rgba(168, 133, 59, 0.09);
  font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
}

body.home-page .demo-autoplay-badge__mobile {
  display: none;
}

body.home-page .cinema-controls {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

body.home-page .demo-autoplay-badge {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

body.home-page .demo-tabs {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}

body.home-page .demo-play {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

@media (max-width: 980px) {
  body.home-page .cinema-controls {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  body.home-page .demo-tabs {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  body.home-page .demo-play {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  body.home-page .demo-autoplay-badge {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    justify-content: center;
    margin-top: -4px;
    white-space: normal;
    text-align: center;
  }

  body.home-page .demo-autoplay-badge__keys,
  body.home-page .demo-autoplay-badge__desktop {
    display: none;
  }

  body.home-page .demo-autoplay-badge__mobile {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .cinema-frame__bar .session-live-dot {
    animation: none;
    opacity: 0.8;
  }

  body.home-page .demo-autoplay-badge__dot,
  body.home-page .cinema-frame.is-entry-intro .demo-autoplay-badge,
  body.home-page .cinema-frame.is-interactive .demo-autoplay-badge__dot,
  body.home-page .cinema-frame.is-interaction-feedback .demo-autoplay-badge,
  body.home-page .cinema-frame.is-hover-guidance .cinema-scene::after,
  body.home-page .cinema-frame.is-hover-guidance .mask-layer {
    animation: none;
  }
}

html[data-lang="en"] body.home-page .hero-demo-claim {
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 650;
  letter-spacing: -0.025em;
}

body.home-page .cinema-scene {
  min-height: 470px;
}

body.home-page .subtitle-line {
  color: var(--demo-subtitle-color);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.58);
}

body.home-page .subtitle-line--translation {
  color: var(--demo-subtitle-translation-color);
}

body.home-page .home-promise {
  display: block;
  margin-top: clamp(28px, 3vw, 42px);
  text-align: left;
}

body.home-page .home-promise__laurels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: clamp(22px, 2.6vw, 44px);
  margin-top: 0;
}

body.home-page .laurel-award {
  min-width: 0;
  margin: 0;
}

body.home-page .laurel-award__content {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  min-height: 112px;
  color: #e2e4e8;
  text-align: center;
}

body.home-page .laurel-award__content > div {
  position: relative;
  z-index: 1;
  min-width: 0;
}

body.home-page .laurel-award__content strong {
  display: block;
  margin-bottom: 9px;
  color: #d56115;
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

body.home-page .laurel-award__content p {
  margin: 0;
  color: rgba(231, 233, 238, 0.74);
  font-size: clamp(0.68rem, 0.82vw, 0.78rem);
  line-height: 1.45;
}

html[data-lang="zh"] body.home-page .laurel-award__content p {
  color: #ce99d9;
  background: linear-gradient(105deg, #e899c6 0%, #aa88df 54%, #d995dc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.home-page .laurel-award__content p::before {
  content: "“";
}

body.home-page .laurel-award__content p::after {
  content: "”";
}

body.home-page .laurel-award__branch {
  position: relative;
  display: block;
  width: 48px;
  height: 102px;
  overflow: hidden;
}

body.home-page .laurel-award__branch img {
  position: absolute;
  top: 0;
  width: 211px;
  max-width: none;
  height: 102px;
  filter: brightness(0.84) saturate(0.78);
}

body.home-page .laurel-award__branch--left img {
  left: 0;
}

body.home-page .laurel-award__branch--right img {
  right: 0;
}

body.home-page .platform-mark {
  display: block;
  flex: 0 0 32px;
  width: 32px;
  height: 34px;
  color: inherit;
  background: currentColor;
  opacity: 0.82;
  transform: none;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.24));
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

body.home-page .platform-mark--windows {
  -webkit-mask-image: url("assets/windows-system.svg?v=20260726-1");
  mask-image: url("assets/windows-system.svg?v=20260726-1");
}

body.home-page .platform-mark--mac {
  -webkit-mask-image: url("assets/macos-system.svg?v=20260726-1");
  mask-image: url("assets/macos-system.svg?v=20260726-1");
}

body.home-page .platform-mark--windows i,
body.home-page .platform-mark--mac::before,
body.home-page .platform-mark--mac::after {
  display: none;
  content: none;
}

body.home-page .platform-switch button.is-active .platform-mark {
  color: #eee9df;
  opacity: 1;
  filter:
    drop-shadow(0 5px 12px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 12px rgba(213, 177, 84, 0.12));
}

body.home-page .platform-switch button > span:last-child {
  display: flex;
  align-items: center;
  min-height: 34px;
  text-align: left;
}

body.home-page .platform-switch strong {
  line-height: 1;
}

body.home-page .platform-switch,
body.home-page .platform-switch button {
  border-radius: 999px;
}

body.home-page .platform-switch {
  width: min(450px, 100%);
  gap: 3px;
  padding: 3px;
  border-color: rgba(255, 255, 255, 0.075);
  background: rgba(12, 15, 21, 0.7);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.14);
}

body.home-page .platform-switch button {
  min-height: 46px;
  gap: 11px;
  padding: 5px 16px;
}

body.home-page .platform-switch button.is-active {
  border-color: transparent;
  color: #fffdf8;
  background: linear-gradient(135deg, rgba(53, 59, 68, 0.96), rgba(35, 40, 48, 0.96));
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.16);
}

body.home-page .platform-media-group__cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

body.home-page .platform-feature-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 18px 10px 20px;
  color: rgba(235, 236, 239, 0.9);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  border: 1px solid rgba(128, 137, 151, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(211, 177, 88, 0.09), transparent 48%),
    rgba(20, 24, 31, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

body.home-page .platform-feature-link span[aria-hidden="true"] {
  color: #d5b35d;
  font-size: 1.02rem;
}

body.home-page .platform-feature-link:hover {
  color: #fff;
  border-color: rgba(213, 179, 93, 0.46);
  background:
    radial-gradient(circle at 100% 0%, rgba(211, 177, 88, 0.15), transparent 50%),
    rgba(24, 28, 36, 0.9);
  transform: translateY(-1px);
}

body.home-page .home-values {
  padding-top: 64px;
}

body.home-page .home-values__intro {
  padding-bottom: 30px;
}

body.home-page .demo-download-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(306px, calc(100% - 48px));
  min-height: 52px;
  margin: 24px auto 0;
  padding: 0 24px;
  color: #1d1a12;
  border: 1px solid rgba(255, 235, 170, 0.48);
  border-radius: 999px;
  background: linear-gradient(135deg, #f2dc91 0%, #d7b45d 58%, #b9c4c6 124%);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.62),
    0 16px 42px rgba(183, 139, 45, 0.22),
    0 0 28px rgba(223, 189, 99, 0.1);
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

body.home-page .demo-download-cta img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  opacity: 0.92;
}

body.home-page .demo-download-cta:hover {
  color: #17140d;
  border-color: rgba(255, 240, 190, 0.72);
  background: linear-gradient(135deg, #f7e5a7 0%, #dfbf6c 58%, #c7d0d1 124%);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.72),
    0 20px 54px rgba(183, 139, 45, 0.3),
    0 0 34px rgba(223, 189, 99, 0.15);
  transform: translateY(-2px);
}

body.home-page .demo-download-cta:focus-visible {
  outline: 2px solid rgba(213, 197, 154, 0.88);
  outline-offset: 4px;
}

body.home-page .home-values__composition {
  align-items: stretch;
}

body.home-page .value-mark {
  border-color: var(--mv2-line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 55%),
    var(--mv2-panel);
}

body.home-page .value-mark strong {
  color: var(--mv2-text);
}

body.home-page .value-mark p {
  color: var(--mv2-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

body.home-page .platform-showcase {
  position: relative;
  padding-top: clamp(180px, 18.5vw, 236px);
}

body.home-page .platform-showcase::before {
  content: none;
}

body.home-page .platform-view {
  border-color: var(--mv2-line);
  background: #0e131a;
}

body.home-page .platform-panel__header strong {
  max-width: 680px;
  font-size: clamp(1.85rem, 2.25vw, 2.3rem);
  line-height: 1.08;
}

body.home-page .platform-media-slot {
  overflow: hidden;
  border-color: var(--mv2-line);
  background:
    radial-gradient(circle at 76% 25%, rgba(222, 171, 89, 0.13), transparent 23%),
    linear-gradient(145deg, #172131, #0b1017 72%);
}

body.home-page .platform-media-slot--image .platform-media-placeholder {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 100%;
  padding: 0;
}

body.home-page .platform-media-slot--image .platform-media-placeholder::before,
body.home-page .platform-media-slot--image .platform-media-placeholder::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  width: auto;
  height: 34px;
  border: 1px solid rgba(150, 177, 211, 0.28);
  border-radius: 9px;
  background: rgba(13, 19, 28, 0.88);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transform: none;
}

body.home-page .platform-media-slot--image .platform-media-placeholder::before {
  top: 30%;
}

body.home-page .platform-media-slot--image .platform-media-placeholder::after {
  top: calc(30% + 44px);
  border-color: rgba(223, 189, 99, 0.28);
}

body.home-page .platform-media-placeholder > span {
  position: absolute;
  left: 18px;
  top: 16px;
}

body.home-page .platform-media-placeholder > strong {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 40px;
  width: auto;
  margin: 0;
  text-align: left;
  white-space: normal;
}

body.home-page .platform-media-placeholder > small {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  width: auto;
  text-align: left;
  white-space: normal;
}

body.home-page .platform-media-placeholder > span,
body.home-page .platform-media-placeholder > strong,
body.home-page .platform-media-placeholder > small {
  z-index: 2;
}

.product-mask b > span {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}

body.features-page .feature-steps {
  padding-top: 106px;
}

body.features-page .step {
  border-color: var(--mv2-line);
}

body.features-page .step__body h3,
body.features-page .feature-story h3 {
  color: var(--mv2-text);
}

body.features-page .step__body p,
body.features-page .feature-story p,
body.features-page .section-heading--split > p {
  color: var(--mv2-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

body.home-page .home-values__intro > p,
body.home-page .platform-showcase__heading > p,
body.home-page .platform-panel__header > p,
body.features-page .materials__copy > p,
body.features-page .themes .section-heading--split > p,
body.features-page .desktop-fit .section-heading--split > p,
body.features-page .languages__copy > p {
  color: var(--mv2-muted);
}

body.home-page .section-kicker,
body.features-page .section-kicker {
  color: rgba(241, 239, 232, 0.62);
}

body.features-page .feature-story {
  border-color: var(--mv2-line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 55%),
    var(--mv2-panel);
}

body.features-page .languages {
  display: grid !important;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr) !important;
  align-items: center;
  gap: 58px;
  min-height: 0;
  padding: 42px !important;
}

body.features-page .language-menu-preview {
  width: 100%;
}

body.features-page .languages__copy {
  min-width: 0;
}

@media (max-width: 1180px) {
  body.home-page .hero,
  body.home-page .section-shell,
  body.features-page .section-shell {
    width: min(100% - 48px, 1080px);
  }

  body.home-page .home-values__intro,
  body.home-page .platform-showcase__heading,
  body.home-page .platform-panel__header,
  body.features-page .section-heading--split,
  body.features-page .materials__inner {
    gap: 30px 44px;
  }

  body.home-page .hero__stage {
    width: 100%;
    max-width: none;
  }

  body.home-page .cinema-scene {
    min-height: 440px;
  }

  body.home-page .home-promise__laurels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 56px;
  }

}

@media (max-width: 900px) {
  body.home-page .home-values__intro,
  body.home-page .platform-showcase__heading,
  body.home-page .platform-panel__header,
  body.features-page .section-heading--split,
  body.features-page .materials__inner,
  body.features-page .languages {
    grid-template-columns: 1fr !important;
  }

  body.home-page .home-values__composition,
  body.home-page .platform-media-grid {
    grid-template-columns: 1fr;
  }

  body.home-page .value-mark--lead {
    grid-template-columns: 1fr;
  }

  body.features-page .step {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  body.features-page .step__visual {
    grid-column: 2;
  }

  body.features-page .language-menu-preview {
    max-width: 420px;
  }
}

@media (max-width: 620px) {
  body.home-page .hero,
  body.home-page .section-shell,
  body.features-page .section-shell {
    width: min(100% - 24px, 100%);
  }

  body.home-page .hero__stage {
    width: 100%;
  }

  body.home-page .hero {
    padding-top: 124px;
    padding-bottom: 12px;
  }

  body.home-page .hero::before {
    top: 312px;
    width: calc(100vw - 56px);
    height: 360px;
    filter: none;
  }

  body.home-page .hero-brand-lockup {
    min-height: 104px;
  }

  body.home-page .hero-brand-lockup > img {
    flex-basis: 86px;
    width: 86px !important;
    height: 86px !important;
  }

  body.home-page .hero-brand-lockup > div {
    min-height: 86px;
  }

  body.home-page .hero-demo-copy {
    width: calc(100% - 28px);
    margin-top: 50px;
    margin-bottom: 10px;
  }

  body.home-page .hero-demo-claim {
    font-size: 1.55rem;
    letter-spacing: 0.01em;
  }

  body.home-page .hero-demo-support {
    margin-top: 11px;
    gap: 0.36em;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
  }

  body.home-page .home-promise {
    margin-top: 32px;
  }

  body.home-page .platform-showcase::before {
    top: 24px;
    width: min(280px, 68%);
  }

  body.home-page .home-promise__laurels {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 0;
  }

  body.home-page .laurel-award {
    width: 100%;
    max-width: 330px;
    margin-inline: auto;
  }

  body.home-page .laurel-award__content {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    min-height: 114px;
  }

  body.home-page .demo-download-cta {
    width: min(274px, calc(100% - 32px));
    min-height: 50px;
    margin-top: 18px;
  }

  body.home-page .cinema-scene {
    min-height: 320px;
  }

  body.home-page .home-promise h2,
  body.home-page .home-values__intro h2,
  body.home-page .platform-showcase__heading h2,
  body.features-page .section-heading h2,
  body.features-page .materials h2,
  body.features-page .themes h2,
  body.features-page .languages h2,
  body.features-page .download h2 {
    font-size: clamp(2.05rem, 10.5vw, 2.55rem);
    line-height: 1.04;
  }

  body.home-page .value-mark {
    padding: 20px;
  }

  body.features-page .feature-steps {
    padding-top: 86px;
  }

  body.features-page .step {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }

  body.features-page .step__rail {
    display: none;
  }

  body.features-page .step__visual {
    grid-column: 1;
    min-height: 190px;
  }

  body.features-page .languages {
    padding: 22px 16px !important;
  }

  .language-dock__toggle {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 50%;
  }

  .language-dock__toggle > svg:first-child {
    width: 18px;
    height: 18px;
  }

  .language-dock__current,
  .language-dock__chevron {
    display: none;
  }
}

/* Replaceable visual modules: keep the designed fallback visible until a real
   product image is supplied through the site editor. */
.module-media-slot {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.module-media-slot > img {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.module-media-slot > img[hidden] {
  display: none;
}

.module-media-slot > .module-media-placeholder {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  color: inherit;
  text-align: inherit;
  background: transparent;
}

body.home-page .module-media-slot > .module-media-placeholder > span,
body.home-page .module-media-slot > .module-media-placeholder > strong,
body.home-page .module-media-slot > .module-media-placeholder > small {
  position: static;
  inset: auto;
  width: auto;
  max-width: none;
  margin: 0;
  text-align: inherit;
  white-space: normal;
}

body.home-page .product-scene.module-media-slot,
body.home-page .layer-control-visual.module-media-slot,
body.home-page .context-menu-visual.module-media-slot,
body.home-page .restore-visual.module-media-slot {
  padding: 0;
}

body.home-page .product-scene > .module-media-placeholder {
  padding: 24px;
}

body.home-page .product-scene > .module-media-placeholder > p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 92px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

body.home-page .product-scene > .module-media-placeholder > .product-mask {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 38px;
  z-index: 3;
}

body.home-page .layer-control-visual > .module-media-placeholder {
  display: grid;
  gap: 9px;
  padding: 42px 18px 18px;
}

body.home-page .context-menu-visual > .module-media-placeholder {
  display: grid;
  gap: 2px;
  padding: 9px;
}

body.home-page .context-menu-visual > .module-media-placeholder > span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  border-radius: 8px;
}

body.home-page .context-menu-visual > .module-media-placeholder > span.is-active {
  color: #f5e7b7;
  background: rgba(223, 189, 99, 0.13);
}

body.home-page .restore-visual > .module-media-placeholder {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 6px 8px;
  padding: 18px;
}

body.home-page .restore-visual > .module-media-placeholder > span {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

body.home-page .restore-visual > .module-media-placeholder > span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dfbd63;
}

body.features-page .step__visual > .module-media-placeholder {
  overflow: hidden;
  border-radius: inherit;
}

body.features-page .select-visual > .module-media-placeholder,
body.features-page .resize-visual > .module-media-placeholder {
  display: grid;
  place-items: center;
}

body.features-page .switch-visual > .module-media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

body.features-page .switch-visual > .module-media-placeholder > div {
  display: flex;
  gap: 7px;
}

body.features-page .shortcut-strip.module-media-slot {
  min-height: 158px;
}

body.features-page .shortcut-strip > .module-media-placeholder {
  display: grid;
  gap: 8px;
}

body.features-page .shortcut-strip > .module-media-placeholder > span {
  display: grid;
  grid-template-columns: 36px 12px 36px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 6px 9px;
  color: rgba(244, 241, 234, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(7, 10, 15, 0.38);
}

body.features-page .merge-stage > .module-media-placeholder > i,
body.features-page .merge-stage > .module-media-placeholder > span {
  position: absolute;
  top: 12px;
  width: 42%;
  height: 46px;
  border: 1px solid rgba(137, 167, 204, 0.34);
  border-radius: 13px;
  background: rgba(137, 167, 204, 0.08);
}

body.features-page .merge-stage > .module-media-placeholder > i:first-child { left: 0; }
body.features-page .merge-stage > .module-media-placeholder > i:nth-child(2) { right: 0; }
body.features-page .merge-stage > .module-media-placeholder > b {
  position: absolute;
  left: 50%;
  top: 21px;
  color: var(--editorial-gold);
  transform: translateX(-50%);
}
body.features-page .merge-stage > .module-media-placeholder > span {
  left: 16%;
  right: 16%;
  top: 74px;
  width: auto;
  height: 32px;
}

body.features-page .display-stage > .module-media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

body.features-page .display-stage > .module-media-placeholder > i {
  position: relative;
  width: 42%;
  height: 82px;
  border: 2px solid rgba(255, 255, 255, 0.17);
  border-radius: 11px;
  background: #0d131c;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

body.features-page .display-stage > .module-media-placeholder > i::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 34px;
  height: 8px;
  border-radius: 0 0 7px 7px;
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(-50%);
}

body.features-page .display-stage > .module-media-placeholder > b {
  color: var(--editorial-gold);
  font-size: 1.2rem;
}

body.features-page .surface-stack > .module-media-placeholder > span {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 70%;
  min-height: 72px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(24, 31, 42, 0.94);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

body.features-page .surface-stack > .module-media-placeholder > span:nth-child(1) { left: 0; top: 0; transform: rotate(-4deg); }
body.features-page .surface-stack > .module-media-placeholder > span:nth-child(2) { right: 0; top: 54px; z-index: 2; transform: rotate(3deg); }
body.features-page .surface-stack > .module-media-placeholder > span:nth-child(3) { left: 10%; bottom: 0; z-index: 3; transform: rotate(-1deg); }

body.features-page .material-stage > .module-media-placeholder,
body.features-page .palette-preview > .module-media-placeholder,
body.features-page .language-menu-preview > .module-media-placeholder {
  overflow: hidden;
  border-radius: inherit;
}

body.features-page .desktop-fit__media {
  aspect-ratio: 16 / 7;
  margin: 36px 0 22px;
  border: 1px solid var(--mv2-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 24%, rgba(222, 171, 89, 0.16), transparent 26%),
    linear-gradient(145deg, #172131, #0b1017 72%);
}

body.features-page .module-media-placeholder--reserved {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;
  padding: clamp(22px, 4vw, 48px);
}

body.features-page .module-media-placeholder--reserved > span {
  color: var(--editorial-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

body.features-page .module-media-placeholder--reserved > strong {
  max-width: 620px;
  color: var(--mv2-text);
  font-size: clamp(1.25rem, 2.4vw, 2.2rem);
}

body.features-page .module-media-placeholder--reserved > small {
  color: var(--mv2-muted);
}

body.features-page .language-menu-preview > .module-media-placeholder {
  padding: 22px;
}

body.features-page .language-menu-preview > .module-media-placeholder > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.64);
  border-radius: 9px;
}

body.features-page .language-menu-preview > .module-media-placeholder > span.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
}

@media (max-width: 720px) {
  body.features-page .desktop-fit__media {
    aspect-ratio: 4 / 3;
  }
}

/* Homepage and feature-page polish — hierarchy, spacing, and product-faithful diagrams. */
body.home-page .home-promise {
  margin-top: clamp(72px, 7vw, 102px);
}

body.home-page .platform-panel {
  padding-bottom: clamp(34px, 3.6vw, 46px);
}

body.home-page .platform-media-group__header em {
  display: none;
}

body.home-page .compatibility-showcase__eyebrow {
  margin-bottom: 22px;
  transform: translateY(-8px);
}

body.features-page .feature-v3-hero__title {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 1.8vw, 24px);
}

body.features-page .feature-v3-hero__title > img {
  display: block;
  width: clamp(48px, 5vw, 66px);
  height: auto;
  flex: 0 0 auto;
  opacity: 0.84;
}

body.features-page .feature-v3-hero__title h1 {
  margin: 0;
}

body.features-page .feature-v3-heading {
  display: block;
  margin-bottom: clamp(38px, 4.5vw, 54px);
  padding-top: clamp(10px, 1.3vw, 16px);
  padding-bottom: 25px;
  border-bottom: 0;
}

body.features-page .feature-v3-heading > div {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 23px);
}

body.features-page .feature-v3-heading__index {
  flex: 0 0 auto;
  font-size: clamp(0.9rem, 1.25vw, 1.08rem);
  letter-spacing: 0.09em;
}

body.features-page .feature-v3-heading h2 {
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  line-height: 1;
}

body.features-page .feature-v3-heading > p {
  display: none;
}

body.features-page .feature-v3-subtitle-line {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

body.features-page .feature-v3-selection {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

body.features-page .feature-v3-grid--operations .feature-v3-card__visual > img.feature-v3-pointer {
  inset: 55% 22% auto auto;
  display: block;
  width: 18px;
  height: 24px;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.72)) drop-shadow(0 0 4px rgba(94, 157, 221, 0.42));
  transform: none;
}

body.features-page .feature-v3-card__visual--reveal > span.is-clear {
  border-color: rgba(140, 166, 187, 0.58);
  background: rgba(140, 166, 187, 0.09);
}

body.features-page .feature-v3-card__visual--reveal > span.is-clear i {
  background: rgba(140, 166, 187, 0.3);
}

body.features-page .feature-v3-card__visual--layers > span {
  padding-right: 18px;
}

@media (max-width: 720px) {
  body.home-page .home-promise {
    margin-top: 48px;
  }

  body.home-page .platform-panel {
    padding-bottom: 30px;
  }

  body.home-page .compatibility-showcase__eyebrow {
    margin-bottom: 18px;
    transform: translateY(-5px);
  }

  body.features-page .feature-v3-hero__title {
    grid-column: 1;
    gap: 13px;
  }

  body.features-page .feature-v3-hero__title > img {
    width: 44px;
  }

  body.features-page .feature-v3-heading h2 {
    font-size: clamp(2.15rem, 11vw, 2.85rem);
  }

  body.features-page .feature-v3-heading__index {
    font-size: 0.86rem;
  }
}

/* Homepage platform galleries: editable media, native dragging, and deliberate spacing. */
body.home-page .platform-view {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(174, 143, 72, 0.06), transparent 30%),
    linear-gradient(160deg, #10161f 0%, #0b1017 72%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 30px 80px rgba(0, 0, 0, 0.22);
}

body.home-page .platform-panel {
  padding: clamp(24px, 2.8vw, 36px);
}

body.home-page .platform-media-group {
  min-width: 0;
}

body.home-page .platform-media-group--videos {
  margin-top: clamp(34px, 4.2vw, 52px);
  padding-top: clamp(28px, 3.6vw, 42px);
  border-top: 1px solid rgba(151, 158, 169, 0.13);
}

body.home-page .platform-media-group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-inline: 2px;
}

body.home-page .platform-media-group__header > div {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

body.home-page .platform-media-group__header > div > span {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #11161e;
  border: 0;
  border-radius: 50%;
  background: #8f7134;
  box-shadow: 0 4px 12px rgba(82, 59, 21, 0.13);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

body.home-page .platform-media-group__header > div > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

body.home-page .platform-media-group__header strong {
  color: rgba(243, 241, 235, 0.9);
  font-size: clamp(0.98rem, 1.35vw, 1.16rem);
  font-weight: 650;
  line-height: 1.2;
}

body.home-page .platform-media-group__header small {
  display: none;
}

body.home-page .platform-media-group__header em {
  color: rgba(220, 220, 216, 0.12);
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  font-style: normal;
  font-weight: 720;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

body.home-page .platform-media-rail {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0;
  scroll-behavior: auto;
  scroll-snap-type: none;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  will-change: scroll-position;
}

body.home-page .platform-media-rail:focus-visible {
  outline: 1px solid rgba(201, 171, 96, 0.5);
  outline-offset: 5px;
  border-radius: 18px;
}

body.home-page .platform-media-rail::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body.home-page .platform-media-rail::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

body.home-page .platform-media-rail::-webkit-scrollbar-thumb {
  min-width: 110px;
  border: 2px solid #0f151d;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(143, 106, 34, 0.92), rgba(181, 143, 62, 0.88));
}

body.home-page .platform-media-rail::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(90deg, rgba(164, 124, 40, 0.98), rgba(199, 161, 76, 0.96));
}

body.home-page .platform-media-scrollbar {
  position: relative;
  width: 100%;
  height: 10px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  touch-action: none;
}

body.home-page .platform-media-scrollbar i {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  min-width: 74px;
  height: 100%;
  border: 2px solid #0f151d;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(143, 106, 34, 0.92), rgba(181, 143, 62, 0.88));
  box-shadow: inset 0 1px rgba(255, 236, 177, 0.18);
  will-change: width, transform;
}

body.home-page .platform-media-scrollbar:hover i,
body.home-page .platform-media-scrollbar.is-dragging i {
  background: linear-gradient(90deg, rgba(164, 124, 40, 0.98), rgba(199, 161, 76, 0.96));
}

body.home-page .platform-media-scrollbar:focus-visible {
  outline: 1px solid rgba(201, 171, 96, 0.58);
  outline-offset: 4px;
}

body.home-page .platform-media-scrollbar.is-disabled {
  opacity: 0.28;
  pointer-events: none;
}

body.home-page .platform-media-track {
  display: flex;
  gap: 18px;
  min-width: 100%;
}

body.home-page .platform-media-card {
  flex: 0 0 auto;
  min-width: 0;
  scroll-snap-align: none;
}

body.home-page .platform-media-rail--images .platform-media-card {
  flex-basis: calc((100% - 18px) / 2);
}

body.home-page .platform-media-rail--videos .platform-media-card {
  flex-basis: calc((100% - 36px) / 3);
  min-width: 276px;
}

body.home-page .platform-media-slot,
body.home-page .platform-media-card--hero .platform-media-slot {
  border-color: rgba(149, 166, 188, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 20%, rgba(209, 162, 80, 0.14), transparent 26%),
    linear-gradient(145deg, #172230 0%, #0b1119 76%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 16px 44px rgba(0, 0, 0, 0.18);
}

body.home-page .platform-media-card--image .platform-media-slot {
  aspect-ratio: 21 / 9;
}

body.home-page .platform-media-card--video .platform-media-slot,
body.home-page .platform-media-card--hero .platform-media-slot {
  aspect-ratio: 16 / 9;
}

body.home-page .platform-media-slot img,
body.home-page .platform-media-slot video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.home-page .platform-media-group--videos .platform-media-slot {
  overflow: hidden;
}

body.home-page .platform-media-group--videos .platform-media-slot > video {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

body.home-page .platform-media-group--videos .platform-video-poster {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  cursor: default;
}

body.home-page .platform-media-group--videos .platform-media-slot:hover .platform-video-poster {
  transform: none;
  filter: none;
}

body.home-page .platform-media-group--videos .platform-media-slot.has-video .platform-video-poster {
  display: none;
}

body.home-page .platform-media-slot img {
  cursor: zoom-in;
  transition: transform 220ms ease, filter 220ms ease;
}

body.home-page .platform-media-slot:hover img {
  transform: scale(1.012);
  filter: brightness(1.025);
}

body.home-page .platform-media-slot img:focus-visible {
  outline: 2px solid rgba(214, 181, 98, 0.92);
  outline-offset: -4px;
}

body.home-page .platform-media-group .platform-media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 6px;
  padding: 22px;
  text-align: left;
  background:
    linear-gradient(180deg, transparent 38%, rgba(4, 8, 13, 0.68) 100%),
    linear-gradient(132deg, transparent 0 49%, rgba(255, 255, 255, 0.025) 49% 50%, transparent 50%),
    radial-gradient(circle at 78% 24%, rgba(209, 162, 80, 0.1), transparent 30%);
}

body.home-page .platform-media-group .platform-media-placeholder[hidden] {
  display: none !important;
}

body.home-page .platform-media-card--image .platform-media-placeholder::before,
body.home-page .platform-media-card--image .platform-media-placeholder::after {
  content: none;
}

body.home-page .platform-media-group .platform-media-placeholder > span,
body.home-page .platform-media-group .platform-media-placeholder > strong,
body.home-page .platform-media-group .platform-media-placeholder > small {
  position: static;
  width: auto;
  margin: 0;
  text-align: left;
}

body.home-page .platform-media-group .platform-media-placeholder > strong {
  color: rgba(242, 240, 234, 0.83);
  font-size: clamp(0.98rem, 1.55vw, 1.24rem);
  line-height: 1.25;
}

body.home-page .platform-media-group .platform-media-placeholder > small {
  color: rgba(211, 214, 220, 0.42);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

body.home-page .platform-media-group .platform-video-toggle {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  width: 100%;
  height: 100%;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: inherit;
  color: #231f16;
  background: transparent;
  cursor: pointer;
}

body.home-page .platform-media-group .platform-video-toggle:disabled {
  cursor: default;
}

body.home-page .platform-media-group .platform-play {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(213, 183, 109, 0.5);
  border-radius: 50%;
  background: linear-gradient(145deg, #e5cc82, #ac8942);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

body.home-page .platform-media-group .platform-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
  transform: translate(-38%, -50%);
}

body.home-page .platform-media-slot--video.has-video .platform-video-toggle {
  opacity: 1;
  transition: opacity 180ms ease;
}

body.home-page .platform-media-slot--video.is-playing .platform-video-toggle {
  opacity: 0;
}

body.home-page .platform-media-slot--video.is-playing:hover .platform-video-toggle,
body.home-page .platform-media-slot--video.is-playing .platform-video-toggle:focus-visible {
  opacity: 1;
}

body.home-page .platform-media-slot--video .platform-video-toggle:focus-visible {
  outline: 2px solid rgba(238, 206, 119, 0.92);
  outline-offset: -4px;
}

body.home-page .platform-media-card figcaption {
  min-height: 44px;
  padding: 11px 4px 0;
}

body.home-page .platform-media-card figcaption strong {
  overflow: hidden;
  color: rgba(238, 237, 232, 0.78);
  font-size: 0.92rem;
  font-weight: 560;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.home-page .platform-media-card figcaption > span {
  flex: 0 0 auto;
  color: rgba(186, 190, 199, 0.34);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

html.platform-lightbox-open,
html.platform-lightbox-open body,
html.platform-video-lightbox-open,
html.platform-video-lightbox-open body {
  overflow: hidden;
}

.platform-lightbox[hidden] {
  display: none !important;
}

.platform-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: grid;
  place-items: center;
  padding: 36px 76px;
}

.platform-lightbox__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: rgba(1, 3, 7, 0.9);
  backdrop-filter: blur(14px);
  cursor: zoom-out;
}

.platform-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1500px, 92vw);
  max-height: 92vh;
}

.platform-lightbox__dialog:focus {
  outline: none;
}

.platform-lightbox figure {
  display: grid;
  gap: 14px;
  margin: 0;
}

.platform-lightbox figure > img {
  display: block;
  width: 100%;
  max-height: calc(92vh - 62px);
  object-fit: contain;
  border: 1px solid rgba(177, 184, 196, 0.24);
  border-radius: 18px;
  background: #05070a;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.62);
}

.platform-lightbox figcaption {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 42px;
  padding: 2px 90px 0;
  color: rgba(233, 232, 227, 0.82);
  font-size: clamp(1.18rem, 1.55vw, 1.52rem);
  text-align: center;
}

.platform-lightbox figcaption strong {
  width: 100%;
  font-weight: 580;
  text-align: center;
}

.platform-lightbox figcaption span {
  position: absolute;
  top: 50%;
  right: 0;
  color: rgba(211, 214, 220, 0.52);
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  transform: translateY(-50%);
}

.platform-lightbox__close,
.platform-lightbox__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  color: rgba(245, 243, 237, 0.9);
  border: 0;
  background: rgba(12, 16, 23, 0.82);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  box-sizing: border-box;
  transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.platform-lightbox__nav[hidden] {
  display: none !important;
}

.platform-lightbox__close {
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
}

.platform-lightbox__nav {
  top: 50%;
  width: 48px;
  height: 68px;
  padding: 0;
  border-radius: 24px;
  appearance: none;
  font-size: 0;
  line-height: 1;
  transform: translateY(-50%);
}

.platform-lightbox__nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 22px;
  background: currentColor;
  clip-path: polygon(100% 0, 100% 24%, 38% 50%, 100% 76%, 100% 100%, 0 59%, 0 41%);
}

.platform-lightbox__nav--previous {
  left: -64px;
}

.platform-lightbox__nav--previous::before {
  transform: translate(-50%, -50%);
}

.platform-lightbox__nav--next {
  right: -64px;
}

.platform-lightbox__nav--next::before {
  transform: translate(-50%, -50%) scaleX(-1);
}

.platform-lightbox__close:hover,
.platform-lightbox__close:focus-visible,
.platform-lightbox__nav:hover,
.platform-lightbox__nav:focus-visible {
  color: #fff;
  background: rgba(25, 27, 30, 0.94);
  box-shadow:
    inset 0 0 0 5px rgba(216, 181, 93, 0.76),
    0 14px 42px rgba(0, 0, 0, 0.35);
  outline: none;
}

.platform-video-lightbox[hidden] {
  display: none !important;
}

.platform-video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1620;
  display: grid;
  place-items: center;
  padding: 36px 76px;
}

.platform-video-lightbox__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: rgba(1, 3, 7, 0.92);
  backdrop-filter: blur(14px);
  cursor: zoom-out;
}

.platform-video-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1500px, 92vw, 156vh);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(177, 184, 196, 0.24);
  border-radius: 20px;
  background: #05070a;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.68);
}

.platform-video-lightbox__dialog:focus {
  outline: none;
}

.platform-video-lightbox__dialog > video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #05070a;
}

.platform-video-lightbox__watermark {
  position: absolute;
  top: clamp(64px, 13%, 108px);
  right: clamp(18px, 2.5vw, 34px);
  z-index: 2;
  padding: 10px 17px 11px;
  color: rgba(255, 236, 178, 0.96);
  border: 1px solid rgba(255, 232, 164, 0.2);
  border-radius: 10px;
  background: rgba(8, 10, 13, 0.42);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(7px);
  font-size: clamp(1.65rem, 2.4vw, 2.4rem);
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.78);
  white-space: nowrap;
  pointer-events: none;
}

.platform-video-lightbox__watermark.is-left {
  right: auto;
  left: clamp(18px, 2.5vw, 34px);
}

.platform-video-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: rgba(245, 243, 237, 0.92);
  border: 0;
  border-radius: 50%;
  background: rgba(12, 16, 23, 0.82);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  box-sizing: border-box;
  font-size: 1.7rem;
  line-height: 1;
  transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.platform-video-lightbox__close:hover,
.platform-video-lightbox__close:focus-visible {
  color: #fff;
  background: rgba(25, 27, 30, 0.94);
  box-shadow:
    inset 0 0 0 5px rgba(216, 181, 93, 0.76),
    0 14px 42px rgba(0, 0, 0, 0.35);
  outline: none;
}

@media (max-width: 720px) {
  .platform-video-lightbox {
    padding: 12px;
  }

  .platform-video-lightbox__dialog {
    width: calc(100vw - 24px);
    max-height: 78vh;
    border-radius: 14px;
  }

  .platform-video-lightbox__close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
  }

  .platform-video-lightbox__watermark {
    top: 13%;
    right: 12px;
    padding: 7px 12px 8px;
    border-radius: 8px;
    font-size: clamp(1.18rem, 5.8vw, 1.55rem);
  }

  .platform-video-lightbox__watermark.is-left {
    right: auto;
    left: 12px;
  }
}

@media (max-width: 900px) {
  body.home-page .platform-showcase {
    padding-top: 104px;
  }

  body.home-page .platform-showcase::before {
    top: 50px;
  }

  body.home-page .platform-media-rail--images .platform-media-card {
    flex-basis: 76%;
    min-width: 330px;
  }

  body.home-page .platform-media-rail--videos .platform-media-card {
    flex-basis: 58%;
    min-width: 300px;
  }
}

@media (max-width: 620px) {
  body.home-page .platform-showcase {
    padding-top: 92px;
  }

  body.home-page .platform-showcase::before {
    top: 43px;
    width: min(310px, 76%);
  }

  body.home-page .platform-panel {
    padding: 16px;
  }

  body.home-page .platform-media-group--videos {
    margin-top: 28px;
    padding-top: 26px;
  }

  body.home-page .platform-media-group__header {
    align-items: flex-end;
    margin-bottom: 14px;
  }

  body.home-page .platform-media-group__header em {
    font-size: 2rem;
  }

  body.home-page .platform-media-track {
    gap: 12px;
  }

  body.home-page .platform-media-rail--images .platform-media-card,
  body.home-page .platform-media-rail--videos .platform-media-card {
    flex-basis: 88%;
    min-width: 250px;
  }

  body.home-page .platform-media-rail--videos .platform-media-track {
    grid-template-columns: minmax(0, 1fr);
  }

  body.home-page .platform-media-rail--videos .platform-media-card {
    min-width: 0;
  }

  body.home-page .platform-media-group .platform-media-placeholder {
    padding: 18px;
  }

  body.home-page .platform-media-slot,
  body.home-page .platform-media-card--hero .platform-media-slot {
    border-radius: 15px;
  }

  .platform-lightbox {
    padding: 18px 14px 28px;
  }

  .platform-lightbox__dialog {
    width: 100%;
  }

  .platform-lightbox figure > img {
    max-height: calc(100vh - 92px);
    border-radius: 12px;
  }

  .platform-lightbox figcaption {
    min-height: 38px;
    padding-inline: 50px;
    font-size: 1rem;
  }

  .platform-lightbox figcaption span {
    font-size: 0.68rem;
  }

  .platform-lightbox__nav {
    top: auto;
    bottom: 46px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 0;
    transform: none;
  }

  .platform-lightbox__nav--previous {
    left: 12px;
  }

  .platform-lightbox__nav--next {
    right: 12px;
  }
}

/* The animated canvas owns every star; the page background stays star-free. */
body.home-page,
body.features-page,
body.content-page,
body.commerce-page {
  background-color: #07090d;
  background-image:
    radial-gradient(circle at 50% -20%, rgba(65, 83, 118, 0.14), transparent 35%),
    linear-gradient(180deg, #080a0e 0%, #07090d 55%, #090b10 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center;
  background-size: 100% 680px, 100% 100%;
}

body.content-page::before,
body.content-page::after,
body.commerce-page::before,
body.commerce-page::after {
  content: none;
  display: none;
}

body.home-page main {
  position: relative;
  isolation: isolate;
}

body.features-page > .site-header,
body.features-page > main,
body.features-page > .site-footer,
body.content-page > .site-header,
body.content-page > main,
body.content-page > .site-footer,
body.commerce-page > .site-header,
body.commerce-page > main,
body.commerce-page > .site-footer {
  position: relative;
  z-index: 1;
}

/* Secondary pages keep the same pinned navigation behavior as the homepage. */
body.features-page > .site-header,
body.content-page > .site-header,
body.commerce-page > .site-header {
  position: fixed;
  z-index: 100;
  top: max(14px, env(safe-area-inset-top));
}

body.home-page > main,
body.home-page > .site-footer {
  position: relative;
  z-index: 1;
}

.ambient-meteor-canvas {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .ambient-meteor-canvas {
    display: none;
  }
}

body.home-page .compatibility-showcase {
  position: relative;
  width: min(100%, 1180px);
  margin: clamp(88px, 9vw, 132px) auto 0;
  padding: clamp(46px, 5.2vw, 72px) clamp(20px, 3.7vw, 46px) 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% -8%, rgba(196, 156, 72, 0.085), transparent 28%),
    linear-gradient(180deg, rgba(15, 20, 28, 0.88) 0%, rgba(9, 12, 17, 0.74) 54%, rgba(7, 9, 13, 0) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 -32px 90px rgba(0, 0, 0, 0.18);
}

body.home-page .compatibility-showcase__intro {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  max-width: 790px;
  margin: 0 auto clamp(38px, 4.8vw, 62px);
  text-align: center;
}

body.home-page .compatibility-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: #a98945;
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.16em;
}

body.home-page .compatibility-showcase__eyebrow::before,
body.home-page .compatibility-showcase__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181, 145, 67, 0.72));
}

body.home-page .compatibility-showcase__eyebrow::after {
  transform: scaleX(-1);
}

body.home-page .compatibility-showcase h2 {
  max-width: 760px;
  margin: 0;
  color: #d7b45d;
  background: linear-gradient(105deg, #f2dc91 0%, #d7b45d 58%, #b9c4c6 124%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Microsoft YaHei UI", "PingFang SC", sans-serif;
  font-size: clamp(1.92rem, 2.9vw, 2.45rem);
  font-weight: 600;
  letter-spacing: 0.012em;
  line-height: 1.15;
}

body.home-page .compatibility-showcase__intro p {
  max-width: 680px;
  margin: 22px auto 0;
  color: #969ca7;
  font-size: clamp(0.86rem, 1.2vw, 0.98rem);
  font-weight: 560;
  line-height: 1.85;
}

body.home-page .compatibility-logo-field {
  position: relative;
  height: clamp(440px, 45vw, 545px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 62%, rgba(0, 0, 0, 0.82) 75%, rgba(0, 0, 0, 0.26) 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 62%, rgba(0, 0, 0, 0.82) 75%, rgba(0, 0, 0, 0.26) 90%, transparent 100%);
}

body.home-page .compatibility-logo-field::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: auto -2px -2px;
  height: 38%;
  background: linear-gradient(
    180deg,
    rgba(9, 11, 16, 0) 0%,
    rgba(9, 11, 16, 0.1) 18%,
    rgba(9, 11, 16, 0.38) 48%,
    rgba(9, 11, 16, 0.74) 76%,
    #090b10 100%
  );
  pointer-events: none;
}

body.home-page .compatibility-logo-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 15px);
  margin: 0;
  padding: 0 2px;
  list-style: none;
}

body.home-page .compatibility-app {
  position: relative;
  display: grid;
  min-width: 0;
  aspect-ratio: 1;
  place-items: center;
  padding: 18% 12% 13%;
  overflow: hidden;
  color: rgba(213, 216, 223, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: clamp(16px, 1.7vw, 22px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 58%),
    rgba(15, 20, 28, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 13px 28px rgba(0, 0, 0, 0.16);
  transform: none;
}

body.home-page .compatibility-app::before {
  content: "";
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: var(--app-color);
  opacity: 0;
  filter: blur(23px);
}

body.home-page .compatibility-app svg,
body.home-page .compatibility-app__wordmark {
  position: absolute;
  z-index: 1;
  top: 40%;
  left: 50%;
  display: block;
  width: clamp(36px, 4vw, 50px);
  height: clamp(36px, 4vw, 50px);
  color: inherit;
  fill: currentColor;
  filter: grayscale(0.72) saturate(0.55);
  transform: translate(-50%, -50%);
  transform-origin: center;
}

body.home-page .compatibility-app__wordmark {
  display: grid;
  width: auto;
  max-width: 88%;
  place-items: center;
  color: inherit;
  font-size: clamp(0.94rem, 1.4vw, 1.18rem);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

body.home-page .compatibility-app > span:last-child {
  position: absolute;
  z-index: 1;
  right: 8px;
  bottom: 11px;
  left: 8px;
  overflow: hidden;
  color: rgba(222, 224, 229, 0.34);
  font-size: clamp(0.56rem, 0.68vw, 0.68rem);
  font-weight: 520;
  line-height: 1.18;
  letter-spacing: 0.004em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.home-page .compatibility-showcase__note {
  position: absolute;
  z-index: 5;
  right: 28px;
  bottom: 13px;
  left: 28px;
  margin: 0;
  color: rgba(185, 190, 200, 0.38);
  font-size: clamp(0.78rem, 0.86vw, 0.84rem);
  line-height: 1.5;
  text-align: center;
}

body.home-page .compatibility-showcase__expand {
  display: none;
}

html[data-lang="zh"] body.home-page .compatibility-logo-field {
  height: auto;
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}

html[data-lang="zh"] body.home-page .compatibility-showcase {
  padding-bottom: clamp(46px, 5.2vw, 72px);
}

html[data-lang="zh"] body.home-page .compatibility-logo-field::after {
  display: block;
}

html[data-lang="zh"] body.home-page .compatibility-showcase.is-expanded .compatibility-logo-field::after {
  display: none;
}

html[data-lang="zh"] body.home-page .compatibility-app[data-compatibility-overflow] {
  display: none;
}

html[data-lang="zh"] body.home-page .compatibility-showcase.is-expanded .compatibility-app[data-compatibility-overflow] {
  display: grid;
}

html[data-lang="zh"] body.home-page .compatibility-showcase__expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 28px auto 0;
  padding: 0 22px;
  color: rgba(219, 196, 137, 0.78);
  border: 1px solid rgba(205, 171, 92, 0.22);
  border-radius: 999px;
  background: rgba(17, 21, 28, 0.62);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 620;
  letter-spacing: 0.035em;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

html[data-lang="zh"] body.home-page .compatibility-showcase__expand:hover {
  color: #ead9a9;
  border-color: rgba(222, 188, 104, 0.42);
  background: rgba(24, 28, 35, 0.78);
}

html[data-lang="zh"] body.home-page .compatibility-showcase__expand:focus-visible {
  outline: 2px solid rgba(213, 197, 154, 0.78);
  outline-offset: 4px;
}

html[data-lang="zh"] body.home-page .compatibility-showcase__note {
  position: static;
  margin: 22px 28px 0;
}

body.home-page .compatibility-showcase + .platform-showcase__cta {
  margin-top: clamp(22px, 3vw, 34px);
}

@media (max-width: 980px) {
  body.home-page .compatibility-logo-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  body.home-page .compatibility-logo-field {
    height: 500px;
  }
}

@media (max-width: 720px) {
  body.home-page .compatibility-showcase {
    width: 100%;
    margin-top: 78px;
    padding: 40px 14px;
    border-radius: 26px 26px 0 0;
  }

  body.home-page .compatibility-showcase__intro {
    margin-bottom: 34px;
  }

  body.home-page .compatibility-showcase__intro p {
    margin-top: 17px;
    line-height: 1.75;
  }

  body.home-page .compatibility-logo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  html[data-lang="zh"] body.home-page .compatibility-showcase:not(.is-expanded) .compatibility-app:nth-child(n + 21) {
    display: none;
  }

  body.home-page .compatibility-logo-field {
    height: 440px;
  }

  body.home-page .compatibility-app {
    padding: 18% 10% 13%;
    border-radius: 14px;
  }

  body.home-page .compatibility-app svg {
    width: 27px;
    height: 27px;
  }

  body.home-page .compatibility-app > span:last-child {
    display: none;
  }

  body.home-page .compatibility-showcase__note {
    right: 14px;
    left: 14px;
    font-size: 0.56rem;
  }

  html[data-lang="zh"] body.home-page .compatibility-showcase__note {
    margin: 18px 12px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .compatibility-app,
  body.home-page .compatibility-app::before,
  body.home-page .compatibility-app svg,
  body.home-page .compatibility-app__wordmark {
    transition: none;
  }
}

/* Features v3 — concise, layered product overview. */
body.features-page .feature-v3 {
  position: relative;
  overflow: clip;
  padding-bottom: clamp(84px, 10vw, 142px);
}

body.features-page .feature-v3::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 64px;
  left: 50%;
  width: min(1120px, 92vw);
  height: 610px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 15%, rgba(189, 143, 58, 0.1), transparent 35%),
    radial-gradient(ellipse at center, rgba(24, 31, 43, 0.9), rgba(7, 9, 13, 0) 70%);
  filter: blur(20px);
  transform: translateX(-50%);
  pointer-events: none;
}

body.features-page .feature-v3 .section-shell {
  width: min(1180px, calc(100% - 48px));
}

body.features-page .feature-v3-hero {
  display: grid;
  min-height: 520px;
  place-items: center;
  align-content: center;
  padding-top: 150px;
  padding-bottom: 86px;
  text-align: center;
}

body.features-page .feature-v3-hero__line {
  width: 34px;
  height: 1px;
  margin-bottom: 28px;
  background: #a88336;
}

body.features-page .feature-v3-hero h1 {
  margin: 0;
  color: rgba(245, 243, 237, 0.98);
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 680;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

body.features-page .feature-v3-hero > p {
  margin: 28px 0 0;
  color: rgba(203, 207, 215, 0.58);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  letter-spacing: 0.1em;
}

body.features-page .feature-v3-nav {
  display: inline-flex;
  gap: 4px;
  margin-top: 58px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 999px;
  background: rgba(15, 19, 26, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
}

body.features-page .feature-v3-nav a {
  min-width: 98px;
  padding: 11px 22px;
  color: rgba(217, 220, 226, 0.62);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 520;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

body.features-page .feature-v3-nav a:hover,
body.features-page .feature-v3-nav a:focus-visible {
  color: #eceae4;
  background: rgba(255, 255, 255, 0.055);
}

body.features-page .feature-v3-section {
  padding-top: clamp(82px, 10vw, 132px);
}

body.features-page .feature-v3-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 58px);
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.features-page .feature-v3-heading > div {
  display: flex;
  gap: 19px;
  align-items: baseline;
}

body.features-page .feature-v3-heading__index {
  color: #a78337;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
}

body.features-page .feature-v3-heading h2 {
  margin: 0;
  color: rgba(244, 242, 236, 0.97);
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

body.features-page .feature-v3-heading > p {
  margin: 0;
  color: rgba(198, 202, 211, 0.55);
  font-size: clamp(0.9rem, 1.25vw, 1rem);
  line-height: 1.8;
}

body.features-page .feature-v3-grid {
  display: grid;
  gap: 16px;
}

body.features-page .feature-v3-grid--operations {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.features-page .feature-v3-card {
  position: relative;
  min-width: 0;
  min-height: 390px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.032), transparent 50%),
    rgba(15, 20, 28, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 20px 45px rgba(0, 0, 0, 0.12);
}

body.features-page .feature-v3-card--wide {
  grid-column: span 2;
  min-height: 440px;
  padding: 28px;
}

body.features-page .feature-v3-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
}

body.features-page .feature-v3-card__top > span {
  color: rgba(197, 157, 74, 0.82);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

body.features-page .feature-v3-grid--operations .feature-v3-step-index,
body.features-page .feature-v3-grid--appearance .feature-v3-step-index {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #11161e;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  border: 0;
  border-radius: 50%;
  background: #8f7134;
  box-shadow: 0 4px 12px rgba(82, 59, 21, 0.13);
}

body.features-page .feature-v3-card__top kbd {
  padding: 8px 11px;
  color: rgba(224, 224, 222, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

body.features-page .feature-v3-card__top > strong {
  color: rgba(226, 205, 153, 0.68);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

body.features-page .feature-v3-card h3 {
  position: relative;
  z-index: 2;
  margin: 25px 0 0;
  color: rgba(241, 239, 233, 0.94);
  font-size: clamp(1.3rem, 1.8vw, 1.62rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

body.features-page .feature-v3-card__shortcut {
  display: inline-flex;
  min-width: 58px;
  height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: rgba(218, 220, 222, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  font-family: inherit;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

body.features-page .feature-v3-card p {
  position: relative;
  z-index: 2;
  margin: 10px 0 0;
  color: rgba(206, 211, 220, 0.68);
  font-size: 0.94rem;
  line-height: 1.65;
}

body.features-page .feature-v3-grid--operations .feature-v3-card p,
body.features-page .feature-v3-grid--appearance .feature-v3-card p {
  white-space: nowrap;
}

body.features-page .feature-v3-grid--appearance .feature-v3-card p {
  color: rgba(206, 211, 220, 0.7);
  font-size: 0.96rem;
  line-height: 1.5;
}

body.features-page .feature-v3-card__visual {
  position: relative;
  height: 210px;
  margin: 21px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 20px;
  background:
    radial-gradient(circle at 78% 24%, rgba(210, 151, 70, 0.2), transparent 25%),
    linear-gradient(145deg, #172235, #0b1119 64%);
}

body.features-page .feature-v3-card:not(.feature-v3-card--wide) .feature-v3-card__visual {
  height: 188px;
}

body.features-page .feature-v3-card__visual::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 56%;
  background:
    linear-gradient(145deg, transparent 32%, rgba(6, 10, 16, 0.85) 33% 58%, transparent 59%),
    linear-gradient(215deg, transparent 35%, rgba(9, 14, 22, 0.88) 36% 64%, transparent 65%);
  opacity: 0.76;
}

body.features-page .feature-v3-subtitle-line,
body.features-page .feature-v3-selection {
  position: absolute;
  z-index: 2;
  right: 14%;
  bottom: 27%;
  left: 14%;
  height: 27px;
  border-radius: 7px;
}

body.features-page .feature-v3-subtitle-line {
  background: rgba(223, 225, 229, 0.26);
}

body.features-page .feature-v3-selection {
  inset: auto 11% 21% 11%;
  height: 46px;
  border: 1px dashed rgba(175, 198, 226, 0.8);
}

body.features-page .feature-v3-selection b {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a9c1dd;
}

body.features-page .feature-v3-selection b:nth-child(1) { top: -3px; left: -3px; }
body.features-page .feature-v3-selection b:nth-child(2) { top: -3px; right: -3px; }
body.features-page .feature-v3-selection b:nth-child(3) { right: -3px; bottom: -3px; }
body.features-page .feature-v3-selection b:nth-child(4) { bottom: -3px; left: -3px; }

body.features-page .feature-v3-pointer {
  position: absolute;
  z-index: 3;
  right: 24%;
  bottom: 17%;
  width: 0;
  height: 0;
  border-top: 12px solid rgba(244, 244, 242, 0.9);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  filter: drop-shadow(0 0 6px rgba(79, 151, 226, 0.7));
  transform: rotate(-32deg);
}

body.features-page .feature-v3-card__visual--restore {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

body.features-page .feature-v3-card__visual--restore > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 34%;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(7, 10, 15, 0.4);
}

body.features-page .feature-v3-card__visual--restore > span i {
  height: 22px;
  border: 1px solid rgba(199, 207, 219, 0.18);
  border-radius: 7px;
  opacity: 0.25;
}

body.features-page .feature-v3-card__visual--restore > span.is-restored i {
  border-color: rgba(208, 166, 75, 0.5);
  background: rgba(20, 24, 32, 0.78);
  opacity: 1;
}

body.features-page .feature-v3-card__visual--restore > b,
body.features-page .feature-v3-card__visual--merge > b {
  position: relative;
  z-index: 2;
  color: rgba(208, 176, 103, 0.65);
  font-size: 1rem;
}

body.features-page .feature-v3-card__visual--layers,
body.features-page .feature-v3-card__visual--reveal {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 23px;
}

body.features-page .feature-v3-card__visual--layers > span,
body.features-page .feature-v3-card__visual--reveal > span {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  align-items: center;
  height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  background: rgba(13, 18, 26, 0.72);
}

body.features-page .feature-v3-card__visual--layers b {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: #17140c;
  border-radius: 50%;
  background: #d0ad5b;
  font-size: 0.6rem;
}

body.features-page .feature-v3-card__visual--layers > span + span b {
  background: #8ca6bb;
}

body.features-page .feature-v3-card__visual--layers i,
body.features-page .feature-v3-card__visual--reveal i {
  height: 5px;
  border-radius: 999px;
  background: rgba(215, 217, 221, 0.25);
}

body.features-page .feature-v3-card__visual--reveal > span.is-clear {
  border-style: dashed;
  background: rgba(19, 24, 32, 0.28);
}

body.features-page .feature-v3-card__visual--reveal > span.is-clear i {
  width: 63%;
  background: rgba(215, 217, 221, 0.1);
}

body.features-page .feature-v3-card__visual--merge {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

body.features-page .feature-v3-card__visual--merge > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 32%;
  gap: 8px;
}

body.features-page .feature-v3-card__visual--merge > span i {
  display: block;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  background: rgba(13, 18, 26, 0.74);
}

body.features-page .feature-v3-card__visual--merge > span.is-merged {
  gap: 0;
}

body.features-page .feature-v3-card__visual--merge > span.is-merged i:first-child {
  border-radius: 9px 9px 0 0;
}

body.features-page .feature-v3-card__visual--merge > span.is-merged i:last-child {
  margin-top: -1px;
  border-radius: 0 0 9px 9px;
}

body.features-page .feature-v3-adjust-mask {
  position: absolute;
  z-index: 2;
  top: 34%;
  left: 11%;
  width: 56%;
  height: 44px;
  border: 1px dashed rgba(168, 194, 220, 0.7);
  border-radius: 9px;
  background: rgba(16, 21, 29, 0.54);
}

body.features-page .feature-v3-adjust-mask i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #adbed1;
}

body.features-page .feature-v3-adjust-mask i:nth-child(1) { top: -3px; left: -3px; }
body.features-page .feature-v3-adjust-mask i:nth-child(2) { top: -3px; right: -3px; }
body.features-page .feature-v3-adjust-mask i:nth-child(3) { right: -3px; bottom: -3px; }
body.features-page .feature-v3-adjust-mask i:nth-child(4) { bottom: -3px; left: -3px; }

body.features-page .feature-v3-adjust-menu {
  position: absolute;
  z-index: 3;
  top: 26%;
  right: 9%;
  display: grid;
  width: 34%;
  gap: 8px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(48, 49, 55, 0.92);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.38);
}

body.features-page .feature-v3-adjust-menu i {
  height: 7px;
  border-radius: 999px;
  background: rgba(231, 232, 234, 0.28);
}

body.features-page .feature-v3-adjust-menu i:nth-child(2) { width: 78%; }
body.features-page .feature-v3-adjust-menu i:nth-child(3) { width: 58%; }
body.features-page .feature-v3-adjust-menu i:nth-child(4) { width: 82%; }
body.features-page .feature-v3-adjust-menu i:nth-child(5) { width: 56%; }
body.features-page .feature-v3-adjust-menu i:nth-child(6) { width: 42%; }

body.features-page .feature-v3-band {
  margin-top: clamp(96px, 12vw, 164px);
  padding-bottom: clamp(88px, 10vw, 132px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 50% 0, rgba(169, 127, 50, 0.075), transparent 36%),
    rgba(10, 13, 18, 0.68);
}

body.features-page .feature-v3-grid--appearance {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  grid-template-rows: 382px 218px;
}

body.features-page .feature-v3-grid--appearance .feature-v3-card--material {
  grid-row: span 2;
  min-height: 616px;
}

body.features-page .feature-v3-grid--appearance .feature-v3-card--palette {
  min-height: 382px;
  padding: 26px 28px 30px;
}

body.features-page .feature-v3-grid--appearance .feature-v3-card--personal {
  min-height: 218px;
  padding: 22px 26px 28px;
}

body.features-page .feature-v3-grid--appearance .feature-v3-card--personal .feature-v3-switches {
  gap: 8px;
  margin-top: 0;
  padding: 10px 14px;
}

body.features-page .feature-v3-grid--appearance .feature-v3-card--personal h3 {
  margin-top: 18px;
}

body.features-page .feature-v3-grid--appearance .feature-v3-card--personal p {
  margin-top: 8px;
}

body.features-page .feature-v3-grid--appearance .feature-v3-card__top {
  position: absolute;
  right: 24px;
  bottom: 24px;
  min-height: 0;
}

body.features-page .feature-v3-materials {
  position: relative;
  display: flex;
  height: 400px;
  align-items: center;
  justify-content: center;
  margin: 24px 0 0;
}

body.features-page .feature-v3-materials::before {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 166, 79, 0.6), rgba(223, 166, 79, 0.09) 45%, transparent 70%);
  filter: blur(8px);
}

body.features-page .feature-v3-materials span {
  position: absolute;
  width: min(64%, 320px);
  height: 108px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}

body.features-page .feature-v3-materials .is-black {
  z-index: 1;
  background: #030405;
  transform: translate(-15%, -52%) rotate(-7deg);
}

body.features-page .feature-v3-materials .is-clear {
  z-index: 3;
  background: rgba(179, 190, 204, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 24px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

body.features-page .feature-v3-materials .is-dark {
  z-index: 2;
  background: rgba(10, 14, 20, 0.74);
  transform: translate(15%, 52%) rotate(7deg);
}

body.features-page .feature-v3-palette {
  display: grid;
  gap: 14px;
  min-height: 214px;
  align-content: center;
  margin-top: 10px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 18%, rgba(216, 190, 120, 0.075), transparent 32%),
    rgba(5, 8, 12, 0.28);
}

body.features-page .feature-v3-palette__group {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}

body.features-page .feature-v3-palette__group + .feature-v3-palette__group {
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

body.features-page .feature-v3-palette__group > span {
  display: flex;
  min-height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: rgba(232, 212, 153, 0.74);
  text-align: center;
  line-height: 1;
  transform: translateX(6px);
}

body.features-page .feature-v3-palette__group > span b {
  font-size: 1.34rem;
  font-weight: 700;
}

body.features-page .feature-v3-palette__group > span small {
  color: rgba(229, 232, 238, 0.66);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

body.features-page .feature-v3-palette__group > div {
  display: grid;
  min-width: 0;
  align-items: center;
}

body.features-page .feature-v3-palette__group--dual > div {
  grid-template-columns: repeat(6, minmax(30px, 1fr));
  gap: 13px 18px;
}

body.features-page .feature-v3-palette__group--unified > div {
  grid-template-columns: repeat(7, minmax(18px, 1fr));
  gap: 12px 18px;
}

body.features-page .feature-v3-palette__group i {
  display: block;
  height: 15px;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
}

body.features-page .feature-v3-palette__group--dual i {
  position: relative;
  width: 36px;
  height: 23px;
  justify-self: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.features-page .feature-v3-palette__group--dual i::before,
body.features-page .feature-v3-palette__group--dual i::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.22);
}

body.features-page .feature-v3-palette__group--dual i::before {
  left: 0;
  z-index: 1;
  background: var(--pair-a);
}

body.features-page .feature-v3-palette__group--dual i::after {
  right: 0;
  z-index: 2;
  background: var(--pair-b);
}

body.features-page .feature-v3-palette__group--dual i:nth-child(1) { --pair-a: #2563eb; --pair-b: #ea580c; }
body.features-page .feature-v3-palette__group--dual i:nth-child(2) { --pair-a: #e3a8a5; --pair-b: #9db3c5; }
body.features-page .feature-v3-palette__group--dual i:nth-child(3) { --pair-a: #ede3d2; --pair-b: #1c734b; }
body.features-page .feature-v3-palette__group--dual i:nth-child(4) { --pair-a: #aa6875; --pair-b: #f4eedc; }
body.features-page .feature-v3-palette__group--dual i:nth-child(5) { --pair-a: #e8d27d; --pair-b: #355f78; }
body.features-page .feature-v3-palette__group--dual i:nth-child(6) { --pair-a: #ff770f; --pair-b: #000010; }
body.features-page .feature-v3-palette__group--dual i:nth-child(7) { --pair-a: #b5db8a; --pair-b: #feffaf; }
body.features-page .feature-v3-palette__group--dual i:nth-child(8) { --pair-a: #fff4cc; --pair-b: #ffbe00; }
body.features-page .feature-v3-palette__group--dual i:nth-child(9) { --pair-a: #f2e6b3; --pair-b: #4b2e21; }
body.features-page .feature-v3-palette__group--dual i:nth-child(10) { --pair-a: #aef9f5; --pair-b: #40b8f6; }
body.features-page .feature-v3-palette__group--dual i:nth-child(11) { --pair-a: #fce39d; --pair-b: #40b8f6; }
body.features-page .feature-v3-palette__group--dual i:nth-child(12) { --pair-a: #0145f2; --pair-b: #edf1f5; }
body.features-page .feature-v3-palette__group--dual i:nth-child(13) { --pair-a: #a0d2ff; --pair-b: #3c3c3c; }
body.features-page .feature-v3-palette__group--dual i:nth-child(14) { --pair-a: #6478ff; --pair-b: #ffdafd; }
body.features-page .feature-v3-palette__group--dual i:nth-child(15) { --pair-a: #b481f1; --pair-b: #f9eccd; }
body.features-page .feature-v3-palette__group--dual i:nth-child(16) { --pair-a: #f5f2e9; --pair-b: #86908a; }
body.features-page .feature-v3-palette__group--dual i:nth-child(17) { --pair-a: #e3e3e5; --pair-b: #707899; }
body.features-page .feature-v3-palette__group--dual i:nth-child(18) { --pair-a: #d8be78; --pair-b: #526f87; }

body.features-page .feature-v3-palette__group--unified i {
  width: 100%;
  max-width: 19px;
  justify-self: center;
  aspect-ratio: 1;
  height: auto;
}

body.features-page .feature-v3-palette__group--unified i:nth-child(1) { background: #484b50; }
body.features-page .feature-v3-palette__group--unified i:nth-child(2) { background: #d1d0cc; }
body.features-page .feature-v3-palette__group--unified i:nth-child(3) { background: #7e91a0; }
body.features-page .feature-v3-palette__group--unified i:nth-child(4) { background: #879783; }
body.features-page .feature-v3-palette__group--unified i:nth-child(5) { background: #7f958d; }
body.features-page .feature-v3-palette__group--unified i:nth-child(6) { background: #ad8b91; }
body.features-page .feature-v3-palette__group--unified i:nth-child(7) { background: #a07e70; }
body.features-page .feature-v3-palette__group--unified i:nth-child(8) { background: #918aa2; }
body.features-page .feature-v3-palette__group--unified i:nth-child(9) { background: #b19f82; }
body.features-page .feature-v3-palette__group--unified i:nth-child(10) { background: #6f8e91; }
body.features-page .feature-v3-palette__group--unified i:nth-child(11) { background: #3e6fa5; }
body.features-page .feature-v3-palette__group--unified i:nth-child(12) { background: #c79a3b; }
body.features-page .feature-v3-palette__group--unified i:nth-child(13) { background: #a9534d; }
body.features-page .feature-v3-palette__group--unified i:nth-child(14) { background: #2f755b; }

body.features-page .feature-v3-switches {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(7, 10, 14, 0.28);
}

body.features-page .feature-v3-switches > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.features-page .feature-v3-switches i {
  width: 42%;
  height: 7px;
  border-radius: 999px;
  background: rgba(222, 224, 228, 0.2);
}

body.features-page .feature-v3-switches b {
  position: relative;
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: rgba(183, 142, 58, 0.3);
}

body.features-page .feature-v3-switches b::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c9a04c;
}

body.features-page .feature-v3-system-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.features-page .feature-v3-system-item {
  position: relative;
  display: grid;
  min-height: 178px;
  grid-template-columns: 58px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 8%, rgba(196, 151, 65, 0.06), transparent 34%),
    linear-gradient(145deg, rgba(17, 22, 30, 0.86), rgba(11, 15, 21, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 18px 45px rgba(0, 0, 0, 0.12);
}

body.features-page .feature-v3-system-item__icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: rgba(211, 173, 87, 0.82);
  border: 1px solid rgba(208, 169, 83, 0.24);
  border-radius: 18px;
  background: rgba(174, 132, 48, 0.07);
  font-size: 1rem;
}

body.features-page .feature-v3-system-item h3 {
  margin: 0;
  color: rgba(241, 239, 233, 0.92);
  font-size: 1.2rem;
  font-weight: 590;
}

body.features-page .feature-v3-system-item p {
  margin: 8px 0 0;
  color: rgba(206, 211, 220, 0.68);
  font-size: 0.94rem;
  line-height: 1.55;
  white-space: nowrap;
}

body.features-page .feature-v3-system-item > b {
  align-self: start;
  color: rgba(255, 255, 255, 0.09);
  font-size: 2.8rem;
  line-height: 1;
}

body.features-page .feature-v3-system-item__icon--display {
  display: grid;
  grid-template-columns: 19px 16px;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

body.features-page .feature-v3-system-item__icon--display i {
  width: 19px;
  height: 15px;
  border: 1px solid currentColor;
  border-radius: 3px;
}

body.features-page .feature-v3-system-item__icon--display i:last-child {
  width: 16px;
  height: 12px;
  margin: 0;
}

body.features-page .feature-v3-system-item__icon--memory i {
  width: 23px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 5px;
}

body.features-page .feature-v3-system-item__icon--memory i::before,
body.features-page .feature-v3-system-item__icon--memory i::after {
  content: "";
  position: absolute;
  left: 18px;
  width: 20px;
  height: 1px;
  background: currentColor;
}

body.features-page .feature-v3-system-item__icon--memory i::before { top: 25px; }
body.features-page .feature-v3-system-item__icon--memory i::after { top: 32px; width: 14px; }

body.features-page .feature-v3-system-item__icon--local i {
  width: 25px;
  height: 19px;
  border: 1px solid currentColor;
  border-radius: 4px;
}

body.features-page .feature-v3-system-item__icon--local i::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 12px;
  height: 12px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: #11161e;
}

body.features-page .feature-v3-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(90px, 12vw, 150px);
  padding: 36px 24px 12px;
  text-align: center;
}

body.features-page .feature-v3-footer p {
  margin: 0;
  color: rgba(243, 241, 234, 0.94);
  font-size: 0.92rem;
  font-weight: 620;
  letter-spacing: -0.015em;
  line-height: 1.3;
  font-family: inherit;
}

body.features-page .feature-v3-footer__prompt {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75em;
  white-space: nowrap;
}

body.features-page .feature-v3-footer__download {
  display: inline-flex;
  min-width: 236px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 28px;
  color: #1d1a12;
  border: 1px solid rgba(255, 243, 191, 0.72);
  border-radius: 999px;
  background: linear-gradient(135deg, #f2dc91 0%, #d7b45d 58%, #b9c4c6 124%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 14px 38px rgba(202, 161, 70, 0.17);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

body.features-page .feature-v3-footer__download:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 18px 44px rgba(202, 161, 70, 0.24);
}

body.features-page .feature-v3-footer__download img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
  opacity: 0.78;
}

body.features-page .feature-v3-footer__trial {
  display: inline-flex;
  align-items: baseline;
  margin: 0;
  color: rgba(207, 211, 218, 0.72);
  font-size: 0.92rem;
  font-family: inherit;
  font-weight: 620;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

@media (max-width: 980px) {
  body.features-page .feature-v3-grid--operations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.features-page .feature-v3-card--wide {
    grid-column: span 1;
  }

  body.features-page .feature-v3-grid--appearance {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  body.features-page .feature-v3-grid--appearance .feature-v3-card--material {
    grid-column: span 2;
    grid-row: auto;
    min-height: 500px;
  }

  body.features-page .feature-v3-materials {
    height: 310px;
  }
}

@media (max-width: 720px) {
  body.features-page .feature-v3 .section-shell {
    width: min(100% - 28px, 1180px);
  }

  body.features-page .feature-v3-hero {
    min-height: 420px;
    padding-top: 116px;
    padding-bottom: 58px;
  }

  body.features-page .feature-v3-hero h1 {
    font-size: clamp(4.2rem, 24vw, 6rem);
  }

  body.features-page .feature-v3-hero > p {
    margin-top: 21px;
    font-size: 0.92rem;
  }

  body.features-page .feature-v3-nav {
    width: 100%;
    margin-top: 42px;
  }

  body.features-page .feature-v3-nav a {
    flex: 1;
    min-width: 0;
    padding: 10px 8px;
  }

  body.features-page .feature-v3-section {
    padding-top: 72px;
  }

  body.features-page .feature-v3-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 21px;
  }

  body.features-page .feature-v3-heading h2 {
    font-size: 3.1rem;
  }

  body.features-page .feature-v3-heading > p {
    max-width: 310px;
    font-size: 0.82rem;
  }

  body.features-page .feature-v3-grid--operations,
  body.features-page .feature-v3-grid--appearance,
  body.features-page .feature-v3-system-list {
    grid-template-columns: 1fr;
  }

  body.features-page .feature-v3-card,
  body.features-page .feature-v3-card--wide {
    min-height: 370px;
    padding: 20px;
    border-radius: 22px;
  }

  body.features-page .feature-v3-card__visual,
  body.features-page .feature-v3-card:not(.feature-v3-card--wide) .feature-v3-card__visual {
    height: 195px;
  }

  body.features-page .feature-v3-grid--appearance .feature-v3-card--material {
    grid-column: auto;
    min-height: 450px;
  }

  body.features-page .feature-v3-grid--appearance .feature-v3-card:not(.feature-v3-card--material) {
    min-height: 300px;
  }

  body.features-page .feature-v3-materials {
    height: 250px;
  }

  body.features-page .feature-v3-palette__group--dual > div {
    grid-template-columns: repeat(6, minmax(18px, 1fr));
  }

  body.features-page .feature-v3-palette__group--unified > div {
    grid-template-columns: repeat(7, minmax(16px, 1fr));
  }

  body.features-page .feature-v3-system-list {
    border-radius: 22px;
  }

  body.features-page .feature-v3-system-item {
    min-height: 150px;
    grid-template-columns: 50px 1fr auto;
    gap: 15px;
    padding: 23px 20px;
  }

  body.features-page .feature-v3-system-item__icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  body.features-page .feature-v3-system-item > b {
    font-size: 2rem;
  }

  body.features-page .feature-v3-footer {
    align-items: center;
    gap: 18px;
    padding: 24px;
  }

  body.features-page .feature-v3-footer__download {
    width: min(280px, 100%);
  }

  body.features-page .feature-v3-system-item p {
    font-size: clamp(0.78rem, 2.2vw, 0.9rem);
  }
}

/* Features v3.2 — centered entry, restrained navigation, varied content rhythm. */
body.features-page .feature-v3-hero {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto;
  min-height: 440px;
  place-items: center;
  align-content: center;
  padding-top: 148px;
  padding-bottom: 72px;
  text-align: center;
}

body.features-page .feature-v3-hero__line {
  grid-column: 1;
  width: 46px;
  margin-bottom: 22px;
}

body.features-page .feature-v3-hero h1 {
  grid-column: 1;
  font-size: clamp(3.35rem, 5.2vw, 4.75rem);
  letter-spacing: -0.055em;
}

body.features-page .feature-v3-hero > p {
  grid-column: 1;
  margin-top: 18px;
}

body.features-page .feature-v3-nav {
  grid-column: 1;
  grid-row: auto;
  display: flex;
  justify-self: center;
  width: auto;
  margin: 34px auto 0;
  padding: 5px;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 999px;
  background: rgba(15, 19, 26, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
}

body.features-page .feature-v3-nav a {
  display: block;
  min-width: 88px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  font-size: 0.9rem;
  text-align: center;
}

body.features-page .feature-v3-nav a + a {
  border-top: 0;
}

body.features-page .feature-v3-nav a::before {
  content: none !important;
}

body.features-page .feature-v3-nav a:hover,
body.features-page .feature-v3-nav a:focus-visible {
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.055);
}

@media (min-width: 981px) {
  body.features-page .feature-v3-grid--operations {
    grid-template-columns: repeat(14, minmax(0, 1fr));
    grid-template-rows: 230px 100px 200px;
    align-items: stretch;
    gap: 16px;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card {
    display: flex;
    min-height: 0;
    margin-top: 0;
    padding: 18px;
    flex-direction: column;
    border-radius: 24px;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card .feature-v3-card__visual {
    order: 1;
    height: auto;
    min-height: 70px;
    margin: 0 0 16px;
    flex: 1 1 auto;
    border-radius: 14px;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card__top {
    display: contents;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card__top > span {
    position: absolute;
    right: 18px;
    bottom: 16px;
    font-size: 0.88rem;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card h3 {
    display: flex;
    order: 2;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding-right: 54px;
    font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card p {
    order: 3;
    margin-top: 7px;
    padding-right: 42px;
    color: rgba(206, 211, 220, 0.7);
    font-size: clamp(0.82rem, 0.9vw, 0.9rem);
    line-height: 1.4;
    white-space: nowrap;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(1) {
    grid-column: 1 / 9;
    grid-row: 1;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(2) {
    grid-column: 9 / 15;
    grid-row: 1 / 3;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(3) {
    grid-column: 1 / 5;
    grid-row: 2 / 4;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(4) {
    grid-column: 5 / 9;
    grid-row: 2 / 4;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(5) {
    grid-column: 9 / 12;
    grid-row: 3;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(6) {
    grid-column: 12 / 15;
    grid-row: 3;
  }
}

body.features-page .feature-v3-grid--operations .feature-v3-card__visual {
  border-color: rgba(166, 183, 211, 0.1);
  background:
    radial-gradient(circle at 82% 18%, rgba(180, 136, 57, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(24, 34, 50, 0.96), rgba(10, 15, 23, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    inset 0 -24px 48px rgba(0, 0, 0, 0.08);
}

body.features-page .feature-v3-grid--operations .feature-v3-card__visual::before {
  display: none !important;
}

body.features-page .feature-v3-grid--operations .feature-v3-card__visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 8, 14, 0.08), rgba(4, 8, 14, 0.45)),
    radial-gradient(circle at 70% 26%, rgba(199, 151, 70, 0.07), transparent 34%);
}

body.features-page .feature-v3-grid--operations .feature-v3-card__visual > img {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  opacity: 0.62;
  filter: saturate(0.76) contrast(1.05) brightness(0.72);
  transform: scale(1.01);
}

body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(2) .feature-v3-card__visual > img {
  object-position: 62% 47%;
}

body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(3) .feature-v3-card__visual > img {
  object-position: 37% 50%;
}

body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(4) .feature-v3-card__visual > img {
  object-position: 66% 48%;
}

body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(5) .feature-v3-card__visual > img {
  object-position: 45% 50%;
}

body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(6) .feature-v3-card__visual > img {
  object-position: 72% 46%;
}

@media (max-width: 980px) {
  body.features-page .feature-v3-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  body.features-page .feature-v3-hero h1 {
    font-size: clamp(3.45rem, 7.6vw, 4.75rem);
  }
}

@media (max-width: 720px) {
  body.home-page .platform-media-rail--videos .platform-media-track {
    grid-template-columns: minmax(0, 1fr);
  }

  body.features-page .feature-v3-hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 405px;
    place-items: center;
    align-content: center;
    row-gap: 0;
    padding-top: 112px;
    padding-bottom: 50px;
    text-align: center;
  }

  body.features-page .feature-v3-hero__line,
  body.features-page .feature-v3-hero h1,
  body.features-page .feature-v3-hero > p,
  body.features-page .feature-v3-nav {
    grid-column: 1;
    grid-row: auto;
  }

  body.features-page .feature-v3-hero__line {
    width: 32px;
    margin-bottom: 22px;
  }

  body.features-page .feature-v3-hero h1 {
    font-size: clamp(3.3rem, 16vw, 4rem);
  }

  body.features-page .feature-v3-nav {
    display: flex;
    width: 100%;
    margin-top: 38px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 999px;
    background: rgba(15, 19, 26, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(18px);
  }

  body.features-page .feature-v3-nav a {
    display: block;
    padding: 10px 8px;
    border: 0;
    border-radius: 999px;
    text-align: center;
  }

  body.features-page .feature-v3-nav a::before {
    content: none !important;
  }

  body.features-page .feature-v3-nav a + a {
    border-top: 0;
  }

  body.features-page .feature-v3-nav a:hover,
  body.features-page .feature-v3-nav a:focus-visible {
    padding-left: 8px;
    background: rgba(255, 255, 255, 0.055);
  }
}

/* Final visual pass: keep these rules after every generated-page layout layer. */
body.home-page .home-promise {
  margin-top: clamp(48px, 5vw, 72px);
}

body.home-page .platform-panel {
  padding-bottom: clamp(34px, 3.6vw, 46px);
}

body.home-page .platform-media-group__header em {
  display: none;
}

body.home-page .compatibility-showcase__eyebrow {
  margin-bottom: 22px;
  transform: translateY(-8px);
}

body.features-page .feature-v3-hero__title {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 1.8vw, 24px);
}

body.features-page .feature-v3-hero__title > img {
  display: block;
  width: clamp(48px, 5vw, 66px);
  height: auto;
  flex: 0 0 auto;
  opacity: 0.84;
}

body.features-page .feature-v3-hero__title h1 {
  margin: 0;
}

body.features-page .feature-v3-band {
  border-top: 0;
  border-bottom: 0;
  background: transparent;
}

body.features-page .feature-v3-heading {
  display: block;
  margin-bottom: clamp(38px, 4.5vw, 54px);
  padding-top: clamp(10px, 1.3vw, 16px);
  padding-bottom: 25px;
}

body.features-page .feature-v3-heading > div {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.55vw, 20px);
}

body.features-page .feature-v3-heading__index {
  flex: 0 0 auto;
  font-size: clamp(0.96rem, 1.3vw, 1.12rem);
  letter-spacing: 0.08em;
}

body.features-page .feature-v3-heading h2 {
  font-size: clamp(2.2rem, 3.55vw, 3.15rem);
  line-height: 1;
}

body.features-page .feature-v3-heading > p {
  display: none;
}

body.features-page .feature-v3-subtitle-line,
body.features-page .feature-v3-selection {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

body.features-page .feature-v3-grid--operations .feature-v3-card__visual > img.feature-v3-pointer {
  inset: 52% 21% auto auto;
  display: block;
  width: 24px;
  height: 31px;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.72)) drop-shadow(0 0 4px rgba(94, 157, 221, 0.42));
  transform: none;
}

body.features-page .feature-v3-card__visual--layers > span {
  padding-right: 18px;
}

body.features-page .feature-v3-card__visual--reveal > span.is-clear {
  border-color: rgba(140, 166, 187, 0.62);
  background: rgba(140, 166, 187, 0.11);
}

body.features-page .feature-v3-card__visual--reveal > span.is-clear i {
  background: rgba(140, 166, 187, 0.34);
}

body.home-page .site-header .brand__name small,
body.features-page .site-header .brand__name small,
body.content-page .site-header .brand__name small,
body.commerce-page .site-header .brand__name small {
  color: #a98232;
}

body.home-page .platform-panel {
  background: none;
}

/* A soft downward cast anchors the floating navigation without a hard edge. */
.site-header::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: calc(var(--header-h) - 4px);
  left: 50%;
  width: min(1180px, 88vw);
  height: 112px;
  pointer-events: none;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 38%, transparent 76%);
  filter: blur(13px);
  opacity: 0.84;
}

.site-header .header-shell {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  body.features-page > .site-header,
  body.content-page > .site-header,
  body.commerce-page > .site-header {
    top: max(8px, env(safe-area-inset-top));
  }

  body.home-page .home-promise {
    margin-top: 48px;
  }

  body.home-page .platform-panel {
    padding-bottom: 30px;
  }

  body.home-page .compatibility-showcase__eyebrow {
    margin-bottom: 18px;
    transform: translateY(-5px);
  }

  body.features-page .feature-v3-hero__title {
    grid-column: 1;
    gap: 13px;
  }

  body.features-page .feature-v3-hero__title > img {
    width: 44px;
  }

  body.features-page .feature-v3-heading h2 {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  body.features-page .feature-v3-heading__index {
    font-size: 0.88rem;
  }
}

/* Features v3.3 — tighter entry rhythm and corrected operation-card geometry. */
body.features-page .feature-v3-hero {
  min-height: 390px;
  padding-top: 128px;
  padding-bottom: 46px;
}

body.features-page .feature-v3-hero__line {
  display: none;
}

body.features-page .feature-v3-hero__title {
  gap: clamp(13px, 1.5vw, 19px);
}

body.features-page .feature-v3-hero__title > img {
  width: clamp(43px, 4.2vw, 56px);
  filter: brightness(0) saturate(100%) invert(55%) sepia(38%) saturate(934%) hue-rotate(3deg) brightness(91%) contrast(86%);
}

body.features-page .feature-v3-hero__title h1 {
  font-size: clamp(2.75rem, 4.3vw, 3.8rem);
  letter-spacing: -0.045em;
}

body.features-page .feature-v3-nav {
  margin-top: 28px;
}

body.features-page #operations.feature-v3-section {
  padding-top: clamp(36px, 4.5vw, 58px);
}

body.features-page .feature-v3-heading__index {
  font-size: clamp(1.16rem, 1.45vw, 1.38rem);
}

body.features-page .feature-v3-card__top > span {
  font-size: 1.08rem;
}

body.features-page .feature-v3-card__top > strong {
  font-size: 0.96rem;
}

body.features-page .feature-v3-system-item > b {
  font-size: 3.15rem;
}

body.features-page .feature-v3-grid--appearance .feature-v3-card--material {
  display: flex;
  flex-direction: column;
}

body.features-page .feature-v3-grid--appearance .feature-v3-card--material .feature-v3-materials {
  flex: 1 1 auto;
  height: auto;
  min-height: 292px;
}

body.features-page .feature-v3-grid--appearance .feature-v3-card--material h3 {
  margin-top: auto;
}

body.features-page .feature-v3-grid--appearance .feature-v3-card--material p {
  margin-bottom: 0;
}

body.features-page .feature-v3-adjust-mask {
  top: 47%;
  left: 6%;
  width: 80%;
  height: 54px;
  border-color: rgba(153, 190, 226, 0.88);
  background: rgba(12, 18, 29, 0.45);
}

body.features-page .feature-v3-adjust-menu {
  top: 13%;
  right: 6%;
  width: 34%;
  gap: 7px;
  padding: 12px;
  border-radius: 12px;
}

body.features-page .feature-v3-adjust-menu i {
  height: 6px;
}

body.features-page .feature-v3-adjust-pointer {
  position: absolute !important;
  z-index: 4 !important;
  top: 46% !important;
  left: 55% !important;
  right: auto !important;
  bottom: auto !important;
  inset: 46% auto auto 55% !important;
  display: block !important;
  width: 31px !important;
  height: 40px !important;
  object-fit: contain !important;
  opacity: 1 !important;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.88)) !important;
  transform: none !important;
}

/* Keep the night-scene background subdued while making each interaction legible. */
body.features-page .feature-v3-subtitle-line {
  background: rgba(232, 233, 235, 0.46);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

body.features-page .feature-v3-selection {
  border-color: rgba(185, 211, 239, 0.96);
  background: rgba(13, 20, 31, 0.24);
}

body.features-page .feature-v3-selection b,
body.features-page .feature-v3-adjust-mask i {
  background: #c2d7ee;
  box-shadow: 0 0 4px rgba(115, 173, 230, 0.28);
}

body.features-page .feature-v3-card__visual--restore > span {
  border-color: rgba(220, 225, 233, 0.2);
  background: rgba(9, 13, 20, 0.58);
}

body.features-page .feature-v3-card__visual--restore > span i {
  border-color: rgba(209, 217, 228, 0.38);
  background: rgba(18, 24, 33, 0.54);
  opacity: 0.62;
}

body.features-page .feature-v3-card__visual--restore > span.is-restored i {
  border-color: rgba(221, 179, 82, 0.78);
  background: rgba(25, 29, 38, 0.9);
}

body.features-page .feature-v3-card__visual--restore > b,
body.features-page .feature-v3-card__visual--merge > b {
  color: rgba(225, 188, 98, 0.9);
}

body.features-page .feature-v3-card__visual--merge > span i,
body.features-page .feature-v3-card__visual--layers > span,
body.features-page .feature-v3-card__visual--reveal > span {
  border-color: rgba(214, 220, 229, 0.3);
  background: rgba(17, 23, 32, 0.86);
}

body.features-page .feature-v3-card__visual--layers i,
body.features-page .feature-v3-card__visual--reveal i {
  background: rgba(225, 228, 233, 0.42);
}

body.features-page .feature-v3-card__visual--reveal > span.is-clear {
  border-color: rgba(151, 190, 229, 0.86);
  background: rgba(20, 28, 40, 0.48);
}

body.features-page .feature-v3-card__visual--reveal > span.is-clear i {
  background: rgba(161, 190, 219, 0.38);
}

body.features-page .feature-v3-adjust-mask {
  border-color: rgba(174, 207, 240, 0.96);
  background: rgba(15, 24, 37, 0.6);
}

body.features-page .feature-v3-adjust-menu {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(58, 59, 65, 0.96);
}

body.features-page .feature-v3-adjust-menu i {
  background: rgba(238, 239, 241, 0.46);
}

@media (min-width: 981px) {
  body.features-page .feature-v3-grid--operations {
    grid-template-rows: 230px 100px 220px;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card__top > span {
    right: 17px;
    bottom: 13px;
    font-size: 0.9rem;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(5),
  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(6) {
    padding: 14px 16px;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(5) .feature-v3-card__visual,
  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(6) .feature-v3-card__visual {
    min-height: 0;
    height: 119px;
    margin-bottom: 16px;
    flex: 0 0 119px;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(5) h3,
  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(6) h3 {
    min-height: 26px;
    gap: 8px;
    padding-right: 0;
    flex-wrap: nowrap;
    font-size: clamp(1.16rem, 1.35vw, 1.34rem);
    white-space: nowrap;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(5) p,
  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(6) p {
    min-height: 18px;
    margin-top: 5px;
    padding-right: 35px;
    color: rgba(206, 211, 220, 0.72);
    font-size: 0.82rem;
    line-height: 1.35;
    white-space: nowrap;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(5) .feature-v3-card__top > span,
  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(6) .feature-v3-card__top > span {
    right: 15px;
    bottom: 12px;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(5) .feature-v3-card__shortcut,
  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(6) .feature-v3-card__shortcut {
    min-width: 54px;
    height: 26px;
    padding: 0 8px;
    flex: 0 0 auto;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(5) .feature-v3-card__visual--layers,
  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(6) .feature-v3-card__visual--reveal {
    gap: 6px;
    padding: 9px 12px;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(5) .feature-v3-card__visual--layers > span,
  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(6) .feature-v3-card__visual--reveal > span {
    grid-template-columns: 24px 1fr;
    gap: 8px;
    height: 32px;
    padding: 0 9px;
    border-radius: 9px;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(5) .feature-v3-card__visual--layers > span {
    grid-template-columns: 20px 1fr;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-card:nth-child(5) .feature-v3-card__visual--layers b {
    width: 18px;
    height: 18px;
    font-size: 0.5rem;
  }
}

body.home-page .platform-media-rail--videos {
  overflow: visible;
}

body.home-page .platform-media-rail--videos .platform-media-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.home-page .platform-media-rail--videos .platform-media-card {
  min-width: 0;
}

@media (max-width: 720px) {
  body.features-page .feature-v3-hero {
    min-height: 350px;
    padding-top: 104px;
    padding-bottom: 38px;
  }

  body.features-page .feature-v3-hero__title > img {
    width: 39px;
  }

  body.features-page .feature-v3-hero__title h1 {
    font-size: clamp(2.55rem, 13vw, 3.15rem);
  }

  body.features-page #operations.feature-v3-section {
    padding-top: 34px;
  }

  body.features-page .feature-v3-heading__index {
    font-size: 1.04rem;
  }

  body.features-page .feature-v3-card__top > span {
    font-size: 1rem;
  }

  body.features-page .feature-v3-grid--operations .feature-v3-step-index {
    width: 30px;
    height: 30px;
    font-size: 0.84rem;
  }

  body.features-page .feature-v3-grid--appearance .feature-v3-step-index {
    width: 30px;
    height: 30px;
    font-size: 0.84rem;
  }
}

body.features-page .feature-v3-heading {
  border-bottom: 0;
}

/* Features v3.4 — enter directly into content and use one consistent brand marker. */
body.features-page #operations.feature-v3-section {
  padding-top: clamp(126px, 11vw, 164px);
}

body.features-page .feature-v3-heading > div {
  align-items: center;
}

body.features-page .feature-v3-heading__mark {
  display: block;
  width: clamp(2.2rem, 3.55vw, 3.15rem);
  height: clamp(2.2rem, 3.55vw, 3.15rem);
  flex: 0 0 clamp(2.2rem, 3.55vw, 3.15rem);
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(55%) sepia(38%) saturate(934%) hue-rotate(3deg) brightness(91%) contrast(86%);
}

@media (max-width: 720px) {
  body.features-page #operations.feature-v3-section {
    padding-top: 104px;
  }
}

/* Keep all primary feature-section titles in the same restrained display scale. */
body.features-page .feature-v3-heading h2 {
  font-size: clamp(1.92rem, 2.9vw, 2.45rem);
  font-weight: 600;
  letter-spacing: 0.012em;
  line-height: 1.15;
}

body.features-page .feature-v3-heading__mark {
  width: clamp(1.92rem, 2.9vw, 2.45rem);
  height: clamp(1.92rem, 2.9vw, 2.45rem);
  flex-basis: clamp(1.92rem, 2.9vw, 2.45rem);
}

@media (min-width: 901px) {
  body.home-page .home-promise {
    margin-top: clamp(80px, 8vw, 112px);
  }

  body.home-page .platform-showcase {
    padding-top: clamp(144px, 13vw, 176px);
  }
}

/* Keep the Latin name in the same restrained sans-serif system as the Chinese mark. */
html[data-lang="zh"] body .site-header .brand__name small {
  color: #d6cdb8;
  background: none;
  -webkit-text-fill-color: currentColor;
  font-family: var(--muvail-site-font) !important;
  font-size: 11px;
  font-synthesis: none;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-rendering: geometricPrecision;
}

/* Homepage typography uses one clean sans-serif system. */
html[data-lang="zh"] body.home-page .site-header .brand__name strong,
html[data-lang="zh"] body.home-page .site-header .nav a,
html[data-lang="zh"] body.home-page .site-header .header-pro-link,
html[data-lang="zh"] body.home-page .site-header .button,
html[data-lang="zh"] body.home-page .hero-demo-claim,
html[data-lang="zh"] body.home-page .hero-demo-support {
  font-family: var(--muvail-site-font) !important;
}

html[data-lang="zh"] body.home-page .site-header .brand__name strong {
  font-weight: 600;
  letter-spacing: -0.025em;
}

html[data-lang="zh"] body.home-page .site-header .nav a,
html[data-lang="zh"] body.home-page .site-header .header-pro-link,
html[data-lang="zh"] body.home-page .site-header .button {
  font-weight: 560;
  letter-spacing: 0.015em;
}

html[data-lang="zh"] body.home-page .hero-demo-claim {
  font-weight: 560;
  letter-spacing: 0.025em;
}

html[data-lang="zh"] body.home-page .hero-demo-support {
  font-weight: 400;
  letter-spacing: 0.035em;
}

/* Reduce the soft, oversized rounding without changing any glow, gradient,
   backdrop, shadow, or motion treatment. */
body.home-page .header-shell {
  border-radius: 14px;
}

body.home-page .brand img,
body.home-page .nav a,
body.home-page .language-toggle,
body.home-page .header-pro-link,
body.home-page .button,
body.home-page .demo-download-cta {
  border-radius: 7px;
}

body.home-page .hero-brand-lockup > img {
  border-radius: 10px;
}

body.home-page .hero-brand-lockup {
  min-height: 76px;
}

body.home-page .hero-brand-lockup > img {
  flex-basis: 68px;
  width: 68px !important;
  height: 68px !important;
}

body.home-page .hero-brand-lockup > div {
  min-height: 68px;
}

body.home-page .hero-brand-lockup__name {
  font-size: clamp(3rem, 4.2vw, 4rem);
  line-height: 1;
}

body.home-page .cinema-frame,
body.home-page .platform-view,
body.home-page .compatibility-showcase {
  border-radius: 14px;
}

body.home-page .demo-context-menu,
body.home-page .demo-arrow-cue,
body.home-page .platform-switch,
body.home-page .platform-media-card,
body.home-page .platform-media-slot,
body.home-page .platform-video-poster {
  border-radius: 8px;
}

body.home-page .platform-switch button,
body.home-page .platform-video-toggle,
body.home-page .compatibility-showcase__expand {
  border-radius: 6px;
}

@media (max-width: 760px) {
  body.home-page .header-shell,
  body.home-page .cinema-frame,
  body.home-page .platform-view,
  body.home-page .compatibility-showcase {
    border-radius: 10px;
  }

  body.home-page .hero-brand-lockup {
    min-height: 58px;
  }

  body.home-page .hero-brand-lockup > img {
    flex-basis: 52px;
    width: 52px !important;
    height: 52px !important;
  }

  body.home-page .hero-brand-lockup > div {
    min-height: 52px;
  }

  body.home-page .hero-brand-lockup__name {
    font-size: clamp(2.35rem, 10.5vw, 2.75rem);
  }
}

/* Light product direction — one restrained final layer for the homepage. */
body.home-page {
  --mv2-text: #171a1f;
  --mv2-muted: #626a74;
  --mv2-line: rgba(21, 27, 35, 0.14);
  --mv2-panel: #ffffff;
  --mv2-panel-2: #eef0f2;
  --mv2-gold: #9a7528;
  color: var(--mv2-text);
  background: #f3f4f5;
}

body.home-page .ambient,
body.home-page .grain,
body.home-page .ambient-meteor-canvas,
body.home-page .hero::before,
body.home-page .site-header::after {
  display: none !important;
}

body.home-page .reveal,
body.home-page .reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

body.home-page > .site-header {
  top: max(14px, env(safe-area-inset-top));
}

body.home-page .header-shell {
  width: min(1180px, calc(100vw - 40px));
  min-height: 64px;
  padding: 8px 10px 8px 14px;
  border: 1px solid var(--mv2-line);
  border-radius: 10px;
  background: rgba(250, 251, 252, 0.96);
  box-shadow: none;
  backdrop-filter: none;
}

body.home-page .site-header.is-scrolled .header-shell {
  background: rgba(250, 251, 252, 0.98);
  border-color: var(--mv2-line);
  box-shadow: 0 12px 34px rgba(29, 35, 43, 0.12);
}

body.home-page .brand img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  box-shadow: 0 6px 18px rgba(29, 35, 43, 0.16);
}

body.home-page .brand__name strong {
  color: #1a1d22;
  font-size: 0.98rem;
  font-weight: 620;
}

html[data-lang="zh"] body.home-page .site-header .brand__name small {
  color: #737a84;
  font-size: 9px;
  font-weight: 560;
  letter-spacing: 0.12em;
}

body.home-page .nav a,
body.home-page .language-toggle,
body.home-page .header-pro-link,
body.home-page .button {
  border-radius: 6px;
  box-shadow: none;
}

body.home-page .nav a,
body.home-page .language-toggle,
body.home-page .header-pro-link {
  color: #4f5660;
}

body.home-page .header-pro-link > span {
  color: #4f5660;
  background: none;
  -webkit-text-fill-color: currentColor;
}

body.home-page .nav a[aria-current="page"] {
  color: #171a1f;
  background: #e7e9ec;
}

body.home-page .language-toggle,
body.home-page .menu-toggle {
  border-color: var(--mv2-line);
  background: #ffffff;
}

body.home-page .menu-toggle span:not(.sr-only) {
  background: #252a31;
}

body.home-page .mobile-nav {
  color: #30363e;
  border-color: var(--mv2-line);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(29, 35, 43, 0.12);
}

body.home-page .mobile-nav a {
  color: #30363e;
  border-color: rgba(21, 27, 35, 0.1);
}

body.home-page .language-dock__toggle {
  color: #30363e;
  border-color: var(--mv2-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(29, 35, 43, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.home-page .language-dock__toggle:hover,
body.home-page .language-dock.is-open .language-dock__toggle {
  color: #171a1f;
  border-color: rgba(21, 27, 35, 0.24);
  background: #ffffff;
}

body.home-page .language-menu {
  color: #252a31;
  border-color: var(--mv2-line);
  background: #ffffff;
  box-shadow: 0 20px 54px rgba(29, 35, 43, 0.16);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.home-page .language-menu__option {
  color: #30363e;
}

body.home-page .language-menu__option:hover:not(:disabled),
body.home-page .language-menu__option:focus-visible,
body.home-page .language-menu__option[aria-checked="true"] {
  color: #171a1f;
  background: #eef0f2;
}

body.home-page .language-menu__divider {
  background: rgba(21, 27, 35, 0.1);
}

body.home-page .button--primary {
  color: #17150f;
  border-color: #c5a34c;
  background: #c5a34c;
}

body.home-page .hero {
  display: block;
  padding: clamp(138px, 13vw, 168px) 0 28px;
}

body.home-page .hero__content,
body.home-page .hero-demo-intro,
body.home-page .hero__stage {
  width: min(1180px, calc(100vw - 40px));
  margin-right: auto;
  margin-left: auto;
}

body.home-page .hero__content {
  max-width: 1180px;
  text-align: left;
}

body.home-page .hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: #555d67;
  font-size: 0.76rem;
  font-weight: 560;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body.home-page .hero-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  flex: 0 0 auto;
  background: #a98232;
}

body.home-page .hero__content h1 {
  max-width: 1040px;
  margin: 0;
  color: #171a1f;
  font-size: clamp(3rem, 4.8vw, 4.5rem);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

body.home-page .hero-summary {
  max-width: 690px;
  margin: 28px 0 0;
  color: #59616b;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

body.home-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

body.home-page .hero-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid var(--mv2-line);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

body.home-page .hero-action img {
  width: 18px;
  height: 18px;
}

body.home-page .hero-action--primary {
  color: #17150f;
  border-color: #c5a34c;
  background: #c5a34c;
}

body.home-page .hero-action--secondary {
  color: #252a31;
  background: #ffffff;
}

body.home-page .hero-action--secondary:hover,
body.home-page .hero-action--secondary:focus-visible {
  border-color: rgba(21, 27, 35, 0.3);
  background: #f8f9fa;
}

body.home-page .hero-meta {
  margin: 18px 0 0;
  color: #747c86;
  font-size: 0.78rem;
  letter-spacing: 0.025em;
}

body.home-page .hero-demo-intro {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(56px, 6vw, 72px);
  padding-top: 20px;
  border-top: 1px solid var(--mv2-line);
}

body.home-page .hero-demo-intro p {
  max-width: 560px;
  margin: 0;
  color: #626a74;
  font-size: 0.88rem;
  line-height: 1.65;
  text-align: right;
}

body.home-page .hero__stage {
  margin-top: 18px;
}

body.home-page .cinema-frame {
  --demo-subtitle-color: #20252b;
  --demo-subtitle-translation-color: #76591e;
  overflow: hidden;
  border: 1px solid var(--mv2-line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 22px 46px -34px rgba(29, 35, 43, 0.32);
}

body.home-page .cinema-frame::before {
  box-shadow: inset 0 0 54px rgba(54, 63, 74, 0.07);
}

body.home-page .cinema-frame__bar,
body.home-page .cinema-controls {
  color: #626a74;
  background: #f7f8f9;
}

body.home-page .cinema-frame__bar {
  border-bottom-color: var(--mv2-line);
}

body.home-page .cinema-controls {
  border-top-color: var(--mv2-line);
}

body.home-page .cinema-scene {
  background: #eef3f9;
}

body.home-page .scene-vignette {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 58%, rgba(193, 205, 219, 0.08));
}

body.home-page .scene-grain {
  display: none;
}

body.home-page .subtitle-line {
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.92);
}

body.home-page .mask-layer {
  border-width: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(229, 238, 247, 0.34));
  box-shadow: 0 10px 26px rgba(77, 95, 116, 0.12), inset 0 0 0 0.5px rgba(126, 144, 164, 0.22), inset 0 1px rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px) saturate(115%) brightness(1.04);
  -webkit-backdrop-filter: blur(22px) saturate(115%) brightness(1.04);
  transition: opacity 220ms ease, transform 220ms var(--ease), background 420ms ease, border-color 420ms ease, border-radius 520ms var(--ease), box-shadow 420ms ease, backdrop-filter 420ms ease;
}

body.home-page .mask-layer::after {
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04) 52%, rgba(204, 219, 234, 0.14));
  transform: none;
  animation: none;
}

body.home-page .subtitle-area {
  --demo-mask-layer-height: 46px;
}

body.home-page .cinema-frame[data-mask-layout="merged"][data-mode="both"] .subtitle-area::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--demo-mask-layer-height) * 2);
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(229, 238, 247, 0.34));
  box-shadow: 0 10px 26px rgba(77, 95, 116, 0.12), inset 0 0 0 0.5px rgba(126, 144, 164, 0.22), inset 0 1px rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px) saturate(115%) brightness(1.04);
  -webkit-backdrop-filter: blur(22px) saturate(115%) brightness(1.04);
  pointer-events: none;
}

body.home-page .cinema-frame[data-mask-layout="merged"][data-mode="both"] .subtitle-area::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: calc(var(--demo-mask-layer-height) - 0.5px);
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(112, 124, 139, 0.26);
  box-shadow: 0 1px rgba(255, 255, 255, 0.58);
  pointer-events: none;
}

body.home-page .cinema-frame[data-mask-layout="merged"][data-mode="both"] .mask-layer {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: none;
}

body.home-page .cinema-frame[data-mask-layout="merged"][data-mode="both"] .mask-layer::after {
  display: none;
}

/* A merged mask switches visible halves atomically; the retained half must never
   re-enter through the base glass transition after an ArrowUp/ArrowDown toggle. */
body.home-page .cinema-frame[data-mask-layout="merged"] .mask-layer {
  transition: none;
}

body.home-page .cinema-frame[data-mask-layout="merged"][data-mode="both"][data-phase="masks-merged"] .subtitle-area::after {
  animation: demo-merge-panel 680ms var(--ease) both;
}

body.home-page .cinema-frame[data-mask-layout="merged"][data-mode="both"][data-phase="masks-merged"] .subtitle-area::before {
  animation: demo-merge-divider 680ms ease 180ms both;
}

@keyframes demo-merge-panel {
  0% { opacity: 0; transform: scaleY(0.64); }
  55% { opacity: 1; transform: scaleY(1.025); }
  100% { opacity: 1; transform: scaleY(1); }
}

@keyframes demo-merge-divider {
  0%, 35% { opacity: 0; transform: scaleX(0.7); }
  100% { opacity: 1; transform: scaleX(1); }
}

@media (max-width: 640px) {
  body.home-page .subtitle-area {
    --demo-mask-layer-height: 38px;
  }
}

body.home-page .mask-layer span {
  color: #5e6670;
  border-color: rgba(21, 27, 35, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

body.home-page .demo-tabs button,
body.home-page .demo-play {
  color: #626a74;
}

body.home-page .demo-tabs button:hover,
body.home-page .demo-tabs button.is-active,
body.home-page .demo-play {
  color: #252a31;
  border-color: var(--mv2-line);
  background: #ffffff;
}

body.home-page .demo-tabs button.is-active {
  color: #76591e;
}

body.home-page .demo-context-menu,
body.home-page .demo-arrow-cue,
body.home-page .demo-shortcut {
  color: #30363e;
  border-color: rgba(21, 27, 35, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(29, 35, 43, 0.16);
}

body.home-page .demo-context-menu__title {
  color: #7a828c;
}

body.home-page .demo-context-menu__item {
  color: #30363e;
}

body.home-page .demo-context-menu__item:hover,
body.home-page .demo-context-menu__item:focus-visible {
  color: #171a1f;
  background: #eef1f4;
  box-shadow: inset 0 0 0 1px rgba(92, 116, 146, 0.18);
}

body.home-page .demo-shortcut kbd {
  color: #30363e;
  border-color: rgba(21, 27, 35, 0.16);
  border-bottom-color: rgba(21, 27, 35, 0.28);
  background: #f1f3f5;
  box-shadow: 0 2px 0 rgba(29, 35, 43, 0.16);
}

body.home-page .demo-autoplay-badge,
body.home-page .demo-autoplay-badge__dot,
body.home-page .cinema-frame__bar .session-live-dot {
  animation: none !important;
}

body.home-page .demo-autoplay-badge {
  color: #30363e;
  border-color: rgba(154, 117, 40, 0.28);
  border-radius: 6px;
  background: #faf8f1;
  box-shadow: none;
}

body.home-page .demo-autoplay-badge:hover,
body.home-page .demo-autoplay-badge:focus-visible,
body.home-page .cinema-frame.is-interactive .demo-autoplay-badge,
body.home-page .cinema-frame.has-seen-interaction:not(.is-interactive) .demo-autoplay-badge {
  color: #30363e;
  border-color: rgba(154, 117, 40, 0.34);
  background: #faf8f1;
  box-shadow: none;
}

body.home-page .cinema-frame.has-seen-interaction:not(.is-interactive) .demo-autoplay-badge__tag {
  color: #76591e;
  border-color: rgba(154, 117, 40, 0.26);
  background: rgba(197, 163, 76, 0.12);
}

body.home-page .demo-autoplay-badge__tag {
  color: #76591e;
  border-color: rgba(154, 117, 40, 0.26);
  background: rgba(197, 163, 76, 0.12);
  border-radius: 4px;
}

body.home-page .demo-autoplay-badge kbd {
  color: #30363e;
  border-color: rgba(21, 27, 35, 0.14);
  background: #ffffff;
}

body.home-page .home-promise {
  margin-top: clamp(96px, 9vw, 124px);
}

body.home-page .home-promise__intro {
  max-width: 760px;
  margin-bottom: 48px;
}

body.home-page .section-kicker {
  color: #ad9248;
  font-size: 0.7rem;
  font-weight: 620;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.home-page .home-promise__intro h2,
body.home-page .platform-showcase__heading h2,
body.home-page .compatibility-showcase h2 {
  max-width: 820px;
  margin: 16px 0 0;
  color: #171a1f;
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: clamp(1.9rem, 3.15vw, 2.85rem);
  font-weight: 580;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

body.home-page .home-promise__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--mv2-line);
  border-bottom: 1px solid var(--mv2-line);
}

body.home-page .home-promise__facts article {
  min-width: 0;
  padding: 28px 24px 30px 0;
}

body.home-page .home-promise__facts article + article {
  padding-left: 24px;
  border-left: 1px solid var(--mv2-line);
}

body.home-page .home-promise__facts article > span {
  display: block;
  margin-bottom: 28px;
  color: #8a919a;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

body.home-page .home-promise__facts strong {
  display: block;
  color: #20242a;
  font-size: 1.02rem;
  font-weight: 600;
}

body.home-page .home-promise__facts p {
  margin: 10px 0 0;
  color: #626a74;
  font-size: 0.86rem;
  line-height: 1.7;
}

body.home-page .platform-showcase {
  padding-top: clamp(96px, 9vw, 124px);
}

body.home-page .platform-showcase__heading {
  max-width: 860px;
  margin: 0 0 44px;
  text-align: left;
}

body.home-page .platform-showcase__heading > p,
body.home-page .compatibility-showcase__intro p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #626a74;
  font-size: 0.94rem;
  line-height: 1.75;
}

body.home-page .platform-switch {
  width: auto;
  margin: 0 0 18px;
  padding: 3px;
  border-radius: 8px;
  border: 1px solid var(--mv2-line);
  background: #e8eaed;
  box-shadow: none;
}

body.home-page .platform-switch button,
body.home-page .platform-switch button.is-active {
  min-height: 42px;
  border-radius: 5px;
  box-shadow: none;
}

body.home-page .platform-switch button {
  color: #646c76;
}

body.home-page .platform-switch button.is-active {
  color: #171a1f;
  background: #ffffff;
}

body.home-page .platform-switch button .platform-mark,
body.home-page .platform-switch button.is-active .platform-mark {
  color: #8b6b28;
  filter: none;
}

body.home-page .platform-view,
body.home-page .compatibility-showcase {
  border: 1px solid var(--mv2-line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: none;
}

body.home-page .platform-media-card,
body.home-page .platform-media-slot,
body.home-page .platform-video-poster,
body.home-page .platform-feature-link,
body.home-page .compatibility-app {
  border-radius: 8px;
  box-shadow: none;
}

body.home-page .compatibility-showcase {
  margin-top: clamp(68px, 7vw, 92px);
  padding-top: clamp(42px, 4.8vw, 60px);
  background: #ffffff;
}

body.home-page .compatibility-showcase__intro {
  justify-items: start;
  max-width: 820px;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

body.home-page .compatibility-logo-field,
html[data-lang="zh"] body.home-page .compatibility-logo-field {
  height: auto;
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}

body.home-page .compatibility-logo-field::after,
html[data-lang="zh"] body.home-page .compatibility-logo-field::after {
  display: none;
}

body.home-page .compatibility-app[data-compatibility-overflow] {
  display: none;
}

body.home-page .compatibility-showcase.is-expanded .compatibility-app[data-compatibility-overflow] {
  display: grid;
}

body.home-page .compatibility-showcase__eyebrow,
body.home-page .compatibility-showcase__eyebrow::before,
body.home-page .compatibility-showcase__eyebrow::after {
  display: none;
}

body.home-page .compatibility-app {
  color: #555d67;
  border-color: rgba(21, 27, 35, 0.11);
  background: #f1f3f5;
}

body.home-page .compatibility-app > span:last-child {
  color: #777f89;
}

body.home-page .compatibility-showcase__note {
  color: #8b929b;
}

body.home-page .platform-view {
  background: #ffffff;
}

body.home-page .platform-media-group--videos {
  border-top-color: var(--mv2-line);
}

body.home-page .platform-media-group__header strong,
body.home-page .platform-media-card figcaption strong {
  color: #252a31;
}

body.home-page .platform-media-card figcaption > span {
  color: #8a919a;
}

body.home-page .platform-feature-link {
  color: #252a31;
  border-color: var(--mv2-line);
  background: #f2f4f6;
}

body.home-page .platform-feature-link:hover {
  color: #171a1f;
  border-color: rgba(154, 117, 40, 0.45);
  background: #eceff2;
}

body.home-page .platform-media-scrollbar {
  background: #e2e5e8;
}

body.home-page > .site-footer {
  color: #30363e;
  border-top-color: var(--mv2-line);
  background: #eceef0;
}

body.home-page .brand--footer .brand__name strong,
body.home-page .footer__links strong,
body.home-page .footer-account-link {
  color: #252a31;
}

body.home-page .brand--footer .brand__name small,
body.home-page .footer__links a,
body.home-page .footer__links button,
body.home-page .footer__bottom {
  color: #6b737d;
}

body.home-page .footer__bottom {
  border-top-color: var(--mv2-line);
}

body.home-page .footer__links a:hover,
body.home-page .footer__links button:hover,
body.home-page .footer-account-link:hover {
  color: #171a1f;
}

body.home-page .compatibility-app::before {
  display: none;
}

body.home-page .compatibility-showcase__expand,
html[data-lang="zh"] body.home-page .compatibility-showcase__expand {
  display: inline-flex;
  color: #74591f;
  border-color: rgba(154, 117, 40, 0.32);
  background: #faf8f1;
  border-radius: 6px;
  box-shadow: none;
}

@media (max-width: 900px) {
  body.home-page .hero-demo-intro {
    display: block;
  }

  body.home-page .hero-demo-intro p {
    margin-top: 10px;
    text-align: left;
  }

  body.home-page .home-promise__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .home-promise__facts article:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 620px) {
  body.home-page .header-shell,
  body.home-page .hero__content,
  body.home-page .hero-demo-intro,
  body.home-page .hero__stage {
    width: min(100% - 24px, 1180px);
  }

  body.home-page .hero {
    padding-top: 132px;
  }

  body.home-page .hero__content h1 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  body.home-page .hero-summary {
    margin-top: 22px;
    font-size: 0.96rem;
  }

  body.home-page .hero-action {
    flex: 1 1 150px;
  }

  body.home-page .home-promise__facts {
    grid-template-columns: 1fr;
  }

  body.home-page .home-promise__facts article,
  body.home-page .home-promise__facts article + article {
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid var(--mv2-line);
  }

  body.home-page .home-promise__facts article:first-child {
    border-top: 0;
  }

  body.home-page .home-promise__facts article > span {
    margin-bottom: 18px;
  }

  body.home-page .platform-showcase__heading,
  body.home-page .compatibility-showcase__intro {
    text-align: left;
  }
}

@media (max-width: 460px) {
  body.home-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.home-page .hero-action {
    width: 100%;
  }
}

/* 2026-08-29 restrained light system — preserve the established page layouts. */
body.features-page,
body.content-page,
body.commerce-page {
  --site-accent: #c5a34c;
  --site-accent-text: #765a1d;
  --site-ink: #171a1f;
  --site-muted: #68707a;
  --site-line: rgba(21, 27, 35, 0.13);
  --site-surface: #ffffff;
  --site-surface-soft: #eceff2;
  color: var(--site-ink);
  background: #f3f4f5;
  background-image: none;
}

body.features-page .ambient,
body.content-page .ambient,
body.commerce-page .ambient,
body.features-page .site-grain,
body.content-page .site-grain,
body.commerce-page .site-grain,
body.features-page .grain,
body.content-page .grain,
body.commerce-page .grain,
body.features-page .ambient-meteor-canvas,
body.content-page .ambient-meteor-canvas,
body.commerce-page .ambient-meteor-canvas,
body.features-page::before,
body.features-page::after,
body.content-page::before,
body.content-page::after,
body.commerce-page::before,
body.commerce-page::after,
body.features-page .feature-v3::before {
  display: none !important;
  content: none !important;
}

body.features-page > .site-header,
body.content-page > .site-header,
body.commerce-page > .site-header {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  z-index: 100;
  padding-top: 0;
  background: none;
}

body.features-page .header-shell,
body.content-page .header-shell,
body.commerce-page .header-shell {
  width: min(1180px, calc(100vw - 40px));
  min-height: 64px;
  padding: 8px 10px 8px 14px;
  border: 1px solid var(--site-line);
  border-radius: 10px;
  background: rgba(250, 251, 252, 0.96);
  box-shadow: none;
  backdrop-filter: none;
}

body.features-page .site-header.is-scrolled .header-shell,
body.content-page .site-header.is-scrolled .header-shell,
body.commerce-page .site-header.is-scrolled .header-shell {
  border-color: var(--site-line);
  background: rgba(250, 251, 252, 0.98);
  box-shadow: 0 12px 34px rgba(29, 35, 43, 0.12);
}

body.features-page .brand img,
body.content-page .brand img,
body.commerce-page .brand img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  box-shadow: 0 6px 18px rgba(29, 35, 43, 0.16);
}

body.features-page .site-header::after,
body.content-page .site-header::after,
body.commerce-page .site-header::after {
  display: none;
}

body.features-page .site-header .brand__name strong,
body.content-page .site-header .brand__name strong,
body.commerce-page .site-header .brand__name strong,
body.features-page .site-header .nav a,
body.content-page .site-header .nav a,
body.commerce-page .site-header .nav a,
body.features-page .site-header .header-pro-link,
body.content-page .site-header .header-pro-link,
body.commerce-page .site-header .header-pro-link,
body.features-page .site-header .language-menu__trigger,
body.content-page .site-header .language-menu__trigger,
body.commerce-page .site-header .language-menu__trigger {
  color: #4f5660;
}

body.features-page .site-header .brand__name strong,
body.content-page .site-header .brand__name strong,
body.commerce-page .site-header .brand__name strong {
  color: var(--site-ink);
  font-size: 0.98rem;
  font-weight: 620;
}

html[data-lang="zh"] body.features-page .site-header .brand__name small,
html[data-lang="zh"] body.content-page .site-header .brand__name small,
html[data-lang="zh"] body.commerce-page .site-header .brand__name small {
  color: #7d838c;
  font-size: 9px;
  font-weight: 560;
  letter-spacing: 0.12em;
}

body.features-page .site-header .nav a[aria-current="page"],
body.content-page .site-header .nav a[aria-current="page"],
body.commerce-page .site-header .nav a[aria-current="page"] {
  color: var(--site-ink);
  border-radius: 6px;
  background: #e7e9ec;
  box-shadow: none;
}

body.features-page .site-header .button--primary,
body.content-page .site-header .button--primary,
body.commerce-page .site-header .button--primary,
body.features-page .feature-v3-footer__download {
  color: #17150f;
  border-color: var(--site-accent);
  border-radius: 7px;
  background: var(--site-accent);
  box-shadow: none;
}

body.features-page .language-menu__list,
body.content-page .language-menu__list,
body.commerce-page .language-menu__list,
body.features-page .mobile-nav,
body.content-page .mobile-nav,
body.commerce-page .mobile-nav {
  color: var(--site-ink);
  border-color: var(--site-line);
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(21, 27, 35, 0.08);
}

body.features-page .menu-toggle,
body.content-page .menu-toggle,
body.commerce-page .menu-toggle {
  border-color: var(--site-line);
  background: #ffffff;
}

body.features-page .menu-toggle span:not(.sr-only),
body.content-page .menu-toggle span:not(.sr-only),
body.commerce-page .menu-toggle span:not(.sr-only) {
  background: #252a31;
}

body.features-page .language-dock__toggle,
body.content-page .language-dock__toggle,
body.commerce-page .language-dock__toggle {
  color: #30363e;
  border-color: var(--site-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(29, 35, 43, 0.1);
  backdrop-filter: none;
}

body.features-page .language-dock__toggle:hover,
body.features-page .language-dock.is-open .language-dock__toggle,
body.content-page .language-dock__toggle:hover,
body.content-page .language-dock.is-open .language-dock__toggle,
body.commerce-page .language-dock__toggle:hover,
body.commerce-page .language-dock.is-open .language-dock__toggle {
  color: var(--site-ink);
  border-color: rgba(21, 27, 35, 0.24);
  background: #ffffff;
}

body.features-page .language-menu,
body.content-page .language-menu,
body.commerce-page .language-menu {
  color: #252a31;
  border-color: var(--site-line);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(29, 35, 43, 0.14);
  backdrop-filter: none;
}

body.features-page .language-menu__option,
body.content-page .language-menu__option,
body.commerce-page .language-menu__option {
  color: #30363e;
}

/* Homepage accent cleanup: one yellow and an unoutlined media slider. */
body.home-page .platform-switch button .platform-mark,
body.home-page .platform-switch button.is-active .platform-mark {
  color: #c5a34c;
}

body.home-page .platform-media-scrollbar i,
body.home-page .platform-media-scrollbar:hover i,
body.home-page .platform-media-scrollbar.is-dragging i {
  border: 0;
  background: #c5a34c;
  box-shadow: none;
}

body.home-page .platform-media-rail::-webkit-scrollbar-thumb {
  border: 0;
  background: #c5a34c;
}

/* Feature page: original grid, light surfaces, and real light imagery. */
body.features-page .feature-v3-heading {
  border-color: var(--site-line);
}

body.features-page .feature-v3-heading h2,
body.features-page .feature-v3-card h3,
body.features-page .feature-v3-system-item h3,
body.features-page .feature-v3-footer p {
  color: var(--site-ink);
}

body.features-page .feature-v3-heading__icon {
  display: block;
  width: clamp(2.35rem, 3.4vw, 3rem);
  height: clamp(2.35rem, 3.4vw, 3rem);
  flex: 0 0 clamp(2.35rem, 3.4vw, 3rem);
  overflow: visible;
  color: var(--site-accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.features-page .feature-v3-heading__icon circle {
  fill: #f3f4f5;
}

body.features-page .feature-v3-card,
body.features-page .feature-v3-system-item,
body.features-page .feature-v3-footer {
  color: var(--site-ink);
  border: 1px solid var(--site-line);
  border-radius: 12px;
  background: var(--site-surface);
  box-shadow: none;
}

body.features-page .feature-v3-card p,
body.features-page .feature-v3-system-item p,
body.features-page .feature-v3-footer__trial {
  color: var(--site-muted);
}

body.features-page .feature-v3-grid--operations .feature-v3-card p,
body.features-page .feature-v3-grid--appearance .feature-v3-card p {
  color: var(--site-muted);
  white-space: normal;
  text-wrap: pretty;
}

body.features-page .feature-v3-grid--appearance {
  grid-template-rows: minmax(450px, auto) minmax(218px, auto);
}

body.features-page .feature-v3-grid--appearance .feature-v3-card--material {
  min-height: 684px;
}

body.features-page .feature-v3-grid--appearance .feature-v3-card--palette {
  min-height: 450px;
}

body.features-page .feature-v3-band {
  border-color: var(--site-line);
  background: #eceff2;
}

body.features-page .feature-v3-grid--operations .feature-v3-step-index,
body.features-page .feature-v3-grid--appearance .feature-v3-step-index,
body.features-page .feature-v3-system-item__icon {
  color: #17150f;
  border: 0;
  background: var(--site-accent);
  box-shadow: none;
}

body.features-page .feature-v3-system-item__icon--shortcut {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
}

body.features-page .feature-v3-card__shortcut {
  color: #5f6670;
  border-color: var(--site-line);
  border-radius: 5px;
  background: #eef0f2;
}

body.features-page .feature-v3-grid--operations .feature-v3-card__visual {
  border: 1px solid rgba(21, 27, 35, 0.12);
  border-radius: 10px;
  background: #e7edf3;
  box-shadow: none;
}

body.features-page .feature-v3-grid--operations .feature-v3-card__visual::before,
body.features-page .feature-v3-grid--operations .feature-v3-card__visual::after {
  display: none;
}

body.features-page .feature-v3-grid--operations .feature-v3-card__visual > img:not(.feature-v3-adjust-pointer) {
  filter: none;
  opacity: 1;
}

body.features-page .feature-v3-subtitle-line,
body.features-page .feature-v3-adjust-mask,
body.features-page .feature-v3-card__visual--restore > span,
body.features-page .feature-v3-card__visual--merge > span,
body.features-page .feature-v3-card__visual--layers > span,
body.features-page .feature-v3-card__visual--reveal > span {
  border-color: rgba(79, 91, 106, 0.26);
  background: rgba(250, 252, 254, 0.7);
  box-shadow: 0 5px 14px rgba(31, 42, 54, 0.08);
  backdrop-filter: blur(12px);
}

body.features-page .feature-v3-card__visual--merge > span {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.features-page .feature-v3-selection {
  border-color: #7894b1;
}

body.features-page .feature-v3-selection b {
  border-color: #7894b1;
  background: #f7fbff;
}

body.features-page .feature-v3-card__visual--restore > span i,
body.features-page .feature-v3-card__visual--merge > span i,
body.features-page .feature-v3-card__visual--layers i,
body.features-page .feature-v3-card__visual--reveal i,
body.features-page .feature-v3-adjust-mask i,
body.features-page .feature-v3-adjust-menu i {
  background: #8b949f;
}

body.features-page .feature-v3-card__visual--restore > b,
body.features-page .feature-v3-card__visual--merge > b,
body.features-page .feature-v3-card__visual--layers b {
  color: var(--site-accent);
}

body.features-page .feature-v3-adjust-menu {
  border: 1px solid rgba(21, 27, 35, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(31, 42, 54, 0.12);
  backdrop-filter: blur(14px);
}

body.features-page .feature-v3-materials::before {
  z-index: 0;
  width: min(78%, 390px);
  height: 238px;
  border: 1px solid rgba(21, 27, 35, 0.1);
  border-radius: 12px;
  background: url("/assets/features/operations-scene-light.png") center / cover no-repeat;
  box-shadow: 0 12px 28px rgba(31, 42, 54, 0.08);
  filter: none;
}

body.features-page .feature-v3-materials span {
  width: min(58%, 292px);
  height: 86px;
  border: 1px solid rgba(21, 27, 35, 0.16);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(31, 42, 54, 0.08);
}

body.features-page .feature-v3-materials .is-black {
  z-index: 1;
  transform: translate(-20%, -78%) rotate(-5deg);
}

body.features-page .feature-v3-materials .is-white {
  z-index: 2;
  background: #ffffff;
  transform: translate(20%, -28%) rotate(5deg);
}

body.features-page .feature-v3-materials .is-clear {
  z-index: 4;
  background: rgba(255, 255, 255, 0.28);
  transform: translate(-20%, 28%) rotate(-4deg);
  backdrop-filter: blur(16px) saturate(1.12);
}

body.features-page .feature-v3-materials .is-dark {
  z-index: 3;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(20, 27, 37, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(11, 15, 21, 0.12),
    0 10px 24px rgba(31, 42, 54, 0.12);
  transform: translate(20%, 78%) rotate(5deg);
  -webkit-backdrop-filter: blur(7px) brightness(0.78) saturate(0.9);
  backdrop-filter: blur(7px) brightness(0.78) saturate(0.9);
}

body.features-page .feature-v3-palette,
body.features-page .feature-v3-switches {
  border: 1px solid var(--site-line);
  border-radius: 10px;
  background: #f4f6f8;
  box-shadow: none;
}

body.features-page .feature-v3-palette__group + .feature-v3-palette__group {
  border-top-color: var(--site-line);
}

body.features-page .feature-v3-palette__group > span,
body.features-page .feature-v3-palette__group > span small {
  color: #626a74;
}

body.features-page .feature-v3-palette__group--dual > div,
body.features-page .feature-v3-palette__group--unified > div {
  grid-template-columns: repeat(5, minmax(24px, 1fr));
  gap: 10px 14px;
}

body.features-page .feature-v3-palette__group--dual i:nth-child(19) { --pair-a: #efb1b0; --pair-b: #9cb4c5; }
body.features-page .feature-v3-palette__group--dual i:nth-child(20) { --pair-a: #4b83c1; --pair-b: #d8ad4b; }
body.features-page .feature-v3-palette__group--unified i:nth-child(15) { background: #ede9db; }
body.features-page .feature-v3-palette__group--unified i:nth-child(16) { background: #c9d5e2; }
body.features-page .feature-v3-palette__group--unified i:nth-child(17) { background: #e2b7cc; }
body.features-page .feature-v3-palette__group--unified i:nth-child(18) { background: #e3d96d; }
body.features-page .feature-v3-palette__group--unified i:nth-child(19) { background: #9bddd7; }
body.features-page .feature-v3-palette__group--unified i:nth-child(20) { background: #7fd2aa; }

body.features-page .feature-v3-palette__group i,
body.features-page .feature-v3-palette__group--dual i::before,
body.features-page .feature-v3-palette__group--dual i::after {
  box-shadow: none;
}

body.features-page .feature-v3-switches i {
  background: #c9ced4;
}

body.features-page .feature-v3-switches b {
  background: rgba(197, 163, 76, 0.32);
}

body.features-page .feature-v3-switches b::after {
  background: var(--site-accent);
}

/* Editorial, guide, legal, and changelog pages. */
body.content-page .content-hero {
  border-color: var(--site-line);
}

body.content-page .content-hero h1,
body.content-page .content-article h2,
body.content-page .content-article h3,
body.content-page .not-found h1 {
  color: var(--site-ink);
  font-family: var(--muvail-site-font), Inter, sans-serif;
}

body.content-page .content-hero h1,
body.content-page .not-found h1 {
  font-size: clamp(46px, 6vw, 68px);
  font-weight: 620;
  line-height: 1.05;
  letter-spacing: -0.038em;
}

body.content-page .content-hero p,
body.content-page .content-article p,
body.content-page .content-article li,
body.content-page .not-found p {
  color: var(--site-muted);
}

body.content-page .guide-step,
body.content-page .release-card,
body.content-page .content-note {
  border: 1px solid var(--site-line);
  border-radius: 10px;
  background: var(--site-surface);
  box-shadow: none;
}

body.content-page .guide-step::before {
  color: #17150f;
  background: var(--site-accent);
}

body.content-page .release-badge,
body.content-page .content-article a,
body.content-page .not-found strong {
  color: var(--site-accent-text);
}

body.content-page .content-article code {
  color: #3d454f;
  border-color: var(--site-line);
  background: #e9ecef;
}

/* Purchase, status, refund, recovery, and account surfaces. */
body.commerce-page .commerce-copy h1,
body.commerce-page .status-panel h1,
body.commerce-page .account-intro h1,
body.commerce-page .purchase-card h2,
body.commerce-page .refund-policy h2,
body.commerce-page .management-panel h2 {
  color: var(--site-ink);
  font-family: var(--muvail-site-font), Inter, sans-serif;
}

body.commerce-page .commerce-lead,
body.commerce-page .commerce-trust li,
body.commerce-page .status-panel > p,
body.commerce-page .account-intro p,
body.commerce-page .refund-policy p,
body.commerce-page .refund-policy aside,
body.commerce-page .management-panel p,
body.commerce-page .management-device span,
body.commerce-page .management-device small,
body.commerce-page .commerce-secondary p,
body.commerce-page .commerce-secondary a {
  color: var(--site-muted);
}

body.commerce-page .purchase-card,
body.commerce-page .status-panel,
body.commerce-page .management-panel,
body.commerce-page .commerce-secondary article,
body.commerce-page .refund-policy article,
body.commerce-page .refund-policy aside,
body.commerce-page .management-device,
body.commerce-page .license-result {
  color: var(--site-ink);
  border: 1px solid var(--site-line);
  border-radius: 12px;
  background: var(--site-surface);
  box-shadow: none;
}

body.commerce-page .purchase-card::before,
body.commerce-page .status-panel::before,
body.commerce-page .management-panel::before {
  display: none;
}

body.commerce-page .purchase-card__head {
  border-color: var(--site-line);
}

body.commerce-page .purchase-price strong,
body.commerce-page .commerce-kicker,
body.commerce-page .refund-policy a {
  color: var(--site-accent-text);
}

body.commerce-page .field-label,
body.commerce-page .plan-option,
body.commerce-page .provider-option {
  color: #3f4650;
}

body.commerce-page .field-label input,
body.commerce-page .plan-option,
body.commerce-page .provider-option {
  color: var(--site-ink);
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: #f7f8f9;
  box-shadow: none;
}

body.commerce-page .field-label input:focus,
body.commerce-page .plan-option:has(input:checked),
body.commerce-page .provider-option:has(input:checked) {
  border-color: var(--site-accent);
  background: #fbf8ef;
  box-shadow: 0 0 0 3px rgba(197, 163, 76, 0.12);
}

body.commerce-page .plan-option.is-unavailable {
  color: #7d838c;
  background: #f1f3f5;
  cursor: not-allowed;
}

body.commerce-page .purchase-submit {
  color: #17150f;
  border-radius: 8px;
  background: var(--site-accent);
  box-shadow: none;
}

body.commerce-page .purchase-submit:disabled {
  color: #8b9198;
  background: #dfe2e5;
}

body.commerce-page .status-panel__icon,
body.commerce-page .commerce-trust i {
  color: var(--site-accent-text);
  border-color: rgba(197, 163, 76, 0.34);
  border-radius: 10px;
  background: #fbf8ef;
  box-shadow: none;
}

body.commerce-page .qr-dialog {
  border-radius: 12px;
}

body.commerce-page .commerce-copy h1 {
  font-size: clamp(46px, 4.6vw, 64px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.038em;
}

body.commerce-page.account-page .management-panel [data-management-request-panel] > p,
body.commerce-page.account-page .management-panel [data-management-link-panel] > p {
  color: var(--site-muted);
}

body.features-page > .site-footer,
body.content-page > .site-footer,
body.commerce-page > .site-footer {
  color: #30363e;
  border-top-color: var(--site-line);
  background: #eceef0;
}

body.features-page > .site-footer a,
body.content-page > .site-footer a,
body.commerce-page > .site-footer a,
body.features-page > .site-footer button,
body.content-page > .site-footer button,
body.commerce-page > .site-footer button {
  color: #626a74;
}

@media (max-width: 980px) {
  body.features-page .feature-v3-grid--appearance {
    grid-template-rows: auto;
  }

  body.features-page .feature-v3-grid--appearance .feature-v3-card--material {
    min-height: 500px;
  }
}

@media (max-width: 720px) {
  body.features-page > .site-header,
  body.content-page > .site-header,
  body.commerce-page > .site-header {
    top: max(8px, env(safe-area-inset-top));
  }

  body.features-page .feature-v3-materials span {
    width: min(66%, 268px);
  }

  body.features-page .feature-v3-palette__group {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
  }

  body.features-page .feature-v3-grid--appearance {
    grid-template-rows: auto;
  }

  body.features-page .feature-v3-grid--appearance .feature-v3-card--material,
  body.features-page .feature-v3-grid--appearance .feature-v3-card--palette {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  body.features-page .header-shell,
  body.content-page .header-shell,
  body.commerce-page .header-shell {
    width: min(100% - 24px, 1180px);
  }
}

/* Shared public chrome: update this block once to keep every public page aligned. */
body:is(.home-page, .features-page, .content-page, .commerce-page) > .site-header {
  position: fixed;
  z-index: 100;
  top: max(14px, env(safe-area-inset-top));
  right: 0;
  left: 0;
  width: 100%;
  padding-right: max(16px, env(safe-area-inset-right));
  padding-left: max(16px, env(safe-area-inset-left));
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .header-shell {
  position: relative;
  width: min(1180px, calc(100vw - 40px));
  height: 76px;
  min-height: 76px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(21, 27, 35, 0.13);
  border-radius: 10px;
  background: rgba(250, 251, 252, 0.96);
  box-shadow: none;
  backdrop-filter: none;
}

@media (min-width: 1081px) {
  body:is(.home-page, .features-page, .content-page, .commerce-page) .site-header .nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .site-header.is-scrolled .header-shell {
  border-color: rgba(21, 27, 35, 0.13);
  background: rgba(250, 251, 252, 0.98);
  box-shadow: 0 12px 34px rgba(29, 35, 43, 0.12);
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .brand img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  box-shadow: 0 6px 18px rgba(29, 35, 43, 0.16);
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .site-header .brand {
  width: 126px;
}

html[data-lang="zh"] body:is(.home-page, .features-page, .content-page, .commerce-page) .site-header .brand__name strong {
  color: #1a1d22;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

html[data-lang="zh"] body:is(.home-page, .features-page, .content-page, .commerce-page) .site-header .brand__name small {
  color: #737a84;
  font-size: 9px;
  font-weight: 560;
  letter-spacing: 0.12em;
}

html[data-lang="zh"] body:is(.home-page, .features-page, .content-page, .commerce-page) .site-header .brand__name strong,
html[data-lang="zh"] body:is(.home-page, .features-page, .content-page, .commerce-page) .site-header .nav a,
html[data-lang="zh"] body:is(.home-page, .features-page, .content-page, .commerce-page) .site-header .header-pro-link,
html[data-lang="zh"] body:is(.home-page, .features-page, .content-page, .commerce-page) .site-header .button {
  font-family: var(--muvail-site-font) !important;
  font-weight: 560;
  letter-spacing: 0.015em;
}

/* The download picker belongs to the same light public system as its pages. */
body:is(.home-page, .features-page, .content-page, .commerce-page) .download-picker {
  color: #171a1f;
  border: 1px solid rgba(21, 27, 35, 0.16);
  border-radius: 12px;
  background: transparent;
  box-shadow: 0 28px 80px rgba(29, 35, 43, 0.22);
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .download-picker::backdrop {
  background: rgba(38, 43, 50, 0.28);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .download-picker__surface {
  border-radius: inherit;
  background: #f8f9fa;
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .download-picker__surface::before {
  display: none;
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .download-picker__close {
  color: #626a74;
  border-color: rgba(21, 27, 35, 0.14);
  border-radius: 8px;
  background: #ffffff;
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .download-picker__close:hover {
  color: #171a1f;
  border-color: rgba(21, 27, 35, 0.28);
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .download-picker__heading h2 {
  color: #171a1f;
  font-weight: 600;
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .download-picker__option {
  color: #252a31;
  border-color: rgba(21, 27, 35, 0.13);
  border-radius: 9px;
  background: #ffffff;
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .download-picker__option:hover {
  color: #171a1f;
  border-color: #c5a34c;
  background: #fbf8ef;
  transform: none;
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .download-picker__platform-icon {
  border-color: rgba(21, 27, 35, 0.12);
  border-radius: 7px;
  background: #f1f3f5;
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .download-picker__platform-icon img {
  filter: brightness(0) saturate(100%);
  opacity: 0.78;
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .download-picker__option-copy small {
  color: #737a84;
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .download-picker__arrow {
  color: #c5a34c;
}

/* Final editorial polish: stronger hierarchy without changing the page structure. */
body:is(.home-page, .features-page, .content-page, .commerce-page) .site-header .header-pro-link,
body:is(.home-page, .features-page, .content-page, .commerce-page) .site-header .header-pro-link > span {
  color: #4f5660;
  background: none;
  -webkit-text-fill-color: currentColor;
}

body.commerce-page .site-header .header-pro-link[aria-current="page"] {
  color: #171a1f;
  border-radius: 6px;
  background: #e7e9ec;
}

body.commerce-page .commerce-kicker {
  gap: 10px;
  letter-spacing: 0.08em;
}

body.commerce-page .commerce-kicker::before {
  width: 20px;
  height: 1px;
  border-radius: 1px;
  background: var(--site-accent);
  box-shadow: none;
}

body.commerce-page .commerce-copy h1 {
  max-width: 560px;
  font-size: clamp(44px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.032em;
}

body.commerce-page .purchase-price strong {
  font-size: clamp(26px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

body.content-page .release-card__head h2 {
  color: var(--site-ink);
  font-family: var(--muvail-site-font), Inter, sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 620px) {
  body.commerce-page .commerce-copy h1 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -0.025em;
  }

  body.commerce-page .commerce-lead {
    margin-top: 22px;
  }

  body.commerce-page .commerce-trust {
    margin-top: 30px;
  }

}

@media (max-width: 1080px) {
  body:is(.home-page, .features-page, .content-page, .commerce-page) .mobile-nav {
    width: min(520px, calc(100% - 24px));
    border-radius: 10px;
    box-shadow: 0 16px 36px rgba(29, 35, 43, 0.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.home-page:has(.mobile-nav.is-open) .hero-actions {
    visibility: hidden;
  }
}

body.commerce-page .status-panel h1 {
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.032em;
}

@media (max-width: 620px) {
  body.commerce-page .status-panel h1 {
    font-size: 36px;
  }
}

/* Homepage mask field: product-shaped atmosphere, kept behind the message. */
body.home-page .hero {
  overflow: clip;
  isolation: isolate;
}

body.home-page .hero-mask-field {
  position: absolute;
  z-index: 0;
  top: 86px;
  right: 0;
  left: 0;
  height: 520px;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 13%, #000 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 13%, #000 80%, transparent 100%);
}

body.home-page .hero-mask-field::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 58%;
  width: min(760px, 72vw);
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(221, 195, 126, 0.06), rgba(221, 195, 126, 0) 68%);
}

body.home-page .hero-mask-lockup {
  position: absolute;
  z-index: 2;
  top: 96px;
  left: max(20px, calc((100% - 1180px) / 2));
  width: 300px;
  height: 96px;
}

body.home-page .hero-mask-lockup__word {
  position: absolute;
  top: -2px;
  right: 0;
  left: 0;
  color: #171a1f;
  font-family: var(--muvail-site-font), Inter, sans-serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: left;
  white-space: nowrap;
}

body.home-page .hero-mask-lockup__word b {
  margin-left: 10px;
  font-size: 0.62em;
  font-weight: 650;
  letter-spacing: 0.08em;
  vertical-align: 0.12em;
}

body.home-page .hero-mask-lockup__glass {
  position: absolute;
  z-index: 1;
  top: 28px;
  right: -18px;
  left: -18px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: linear-gradient(104deg, rgba(255, 255, 255, 0.24), rgba(226, 202, 139, 0.28) 54%, rgba(185, 143, 45, 0.44));
  box-shadow:
    inset 0 0 0 1px rgba(169, 130, 48, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 44px rgba(128, 96, 29, 0.1);
  -webkit-backdrop-filter: blur(5px) saturate(106%);
  backdrop-filter: blur(5px) saturate(106%);
}

body.home-page .hero-mask-bar {
  --bar-rotation: -1deg;
  --bar-shift: 18px;
  --bar-blur: 0px;
  position: absolute;
  height: 38px;
  border: 1px solid rgba(169, 130, 48, 0.24);
  border-radius: 8px;
  background: linear-gradient(
    104deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(229, 207, 150, 0.34) 30%,
    rgba(185, 143, 45, 0.8) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 18px 42px rgba(128, 96, 29, 0.1);
  opacity: 0.28;
  filter: blur(var(--bar-blur));
  -webkit-backdrop-filter: blur(16px) saturate(112%);
  backdrop-filter: blur(16px) saturate(112%);
  transform: translate3d(0, 0, 0) rotate(var(--bar-rotation));
  animation: hero-mask-drift 16s ease-in-out infinite alternate;
}

body.home-page .hero-mask-bar--1 {
  display: none;
}

body.home-page .hero-mask-bar--2 {
  display: none;
}

body.home-page .hero-mask-bar--3 {
  top: 140px;
  left: 45%;
  width: 260px;
  height: 34px;
  opacity: 0.24;
  --bar-blur: 1.2px;
  --bar-shift: 14px;
}

body.home-page .hero-mask-bar--4 {
  top: 224px;
  right: -3%;
  width: 240px;
  height: 34px;
  opacity: 0.68;
  --bar-rotation: 1.2deg;
  --bar-shift: -18px;
}

body.home-page .hero-mask-bar--5 {
  top: 286px;
  left: 4%;
  width: 190px;
  height: 32px;
  opacity: 0.13;
  --bar-blur: 2.8px;
  --bar-shift: 20px;
}

body.home-page .hero-mask-bar--6 {
  top: 342px;
  left: 56%;
  width: 350px;
  height: 44px;
  opacity: 0.4;
  --bar-rotation: -0.6deg;
  --bar-blur: 0.8px;
  --bar-shift: -22px;
}

body.home-page .hero-mask-bar--7 {
  top: 418px;
  left: 31%;
  width: 250px;
  height: 36px;
  opacity: 0.14;
  --bar-rotation: 0.8deg;
  --bar-blur: 2px;
}

@keyframes hero-mask-drift {
  to {
    transform: translate3d(var(--bar-shift), -6px, 0) rotate(var(--bar-rotation));
  }
}

@media (max-width: 620px) {
  body.home-page .hero-mask-field {
    top: 92px;
    height: 430px;
    opacity: 0.62;
  }

  body.home-page .hero-mask-lockup {
    display: none;
  }

  body.home-page .hero-mask-bar--1,
  body.home-page .hero-mask-bar--3,
  body.home-page .hero-mask-bar--5,
  body.home-page .hero-mask-bar--6,
  body.home-page .hero-mask-bar--7 {
    display: none;
  }

  body.home-page .hero-mask-bar--2 {
    display: block;
    top: 10px;
    right: -88px;
    width: 190px;
  }

  body.home-page .hero-mask-bar--4 {
    top: 196px;
    right: -126px;
    width: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .hero-mask-bar {
    animation: none;
  }
}

body:is(.home-page, .features-page, .content-page, .commerce-page) > .site-footer {
  color: #30363e;
  border-top-color: rgba(21, 27, 35, 0.13);
  background: #eceef0;
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .brand--footer .brand__name strong,
body:is(.home-page, .features-page, .content-page, .commerce-page) .footer__links strong,
body:is(.home-page, .features-page, .content-page, .commerce-page) .footer-account-link {
  color: #252a31;
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .brand--footer .brand__name small,
body:is(.home-page, .features-page, .content-page, .commerce-page) .footer__links a,
body:is(.home-page, .features-page, .content-page, .commerce-page) .footer__links button,
body:is(.home-page, .features-page, .content-page, .commerce-page) .footer__bottom {
  color: #6b737d;
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .footer__bottom {
  border-top-color: rgba(21, 27, 35, 0.13);
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .footer__links a:hover,
body:is(.home-page, .features-page, .content-page, .commerce-page) .footer__links button:hover,
body:is(.home-page, .features-page, .content-page, .commerce-page) .footer-account-link:hover {
  color: #171a1f;
}

body:is(.home-page, .features-page, .content-page, .commerce-page) .footer-account-link::after {
  color: #c5a34c;
}

@media (max-width: 620px) {
  body:is(.home-page, .features-page, .content-page, .commerce-page) .header-shell {
    width: min(100% - 24px, 1180px);
  }
}
