* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #000;
  --panel: rgba(7, 11, 18, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7f8fb;
  --muted: rgba(247, 248, 251, 0.56);
  --blue: #0b4fba;
  --blue-soft: #87bcff;
  --gold: #c6a15a;
  --gold-dark: #8e641f;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ease-content: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ease-menu: cubic-bezier(0.65, 0, 0.35, 1);
  --motion-ease-flip: cubic-bezier(0.33, 1, 0.68, 1);
  --motion-quick: 250ms;
  --motion-fade: 300ms;
  --motion-short: 500ms;
  --motion-long: 1200ms;
  --motion-editorial: 1600ms;
  --motion-hero: 1800ms;
  --font-harmony:
    "HarmonyOS Sans SC", "HarmonyOS Sans", "PingFang SC", "Microsoft YaHei",
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-title: var(--font-harmony);
  --font-body: var(--font-harmony);
  --font-main: var(--font-harmony);
  --weight-title: 400;
  --weight-body: 300;
}

html,
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
}

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: var(--weight-body);
}

@font-face {
  font-family: "HarmonyOS Sans SC";
  src: url("./assets/fonts/harmonyos-sans-sc-light-subset.woff2")
    format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HarmonyOS Sans SC";
  src: url("./assets/fonts/harmonyos-sans-sc-regular-subset.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HarmonyOS Sans SC";
  src: url("./assets/fonts/harmonyos-sans-sc-medium-subset.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HarmonyOS Sans SC";
  src: url("./assets/fonts/harmonyos-sans-sc-bold-subset.woff2")
    format("woff2");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

#app {
  min-height: 100vh;
  background: var(--bg);
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.immersive-page {
  position: relative;
  width: 100%;
  height: calc(var(--screen-count, 1) * 100vh);
  min-height: calc(var(--screen-count, 1) * 100vh);
  background: var(--bg);
}

.screen-stack {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.stack-screen {
  position: absolute;
  inset: 0;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
  transform: translate3d(0, 100%, 0);
  opacity: 0;
  transition: none;
  will-change: transform, opacity;
}

.stack-screen.is-first {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.stack-screen::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow: none;
  content: "";
}

.screen-crop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.screen-image {
  position: absolute;
  display: block;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
  transform: translateZ(0);
}

.home-screen {
  background: #000;
}

.home-bg-stage,
.home-ui-stage {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
}

.home-bg-stage {
  z-index: 1;
  overflow: hidden;
  background: #000;
  pointer-events: none;
}

.home-ui-stage {
  z-index: 4;
  overflow: visible;
  transition: opacity 560ms var(--ease);
  pointer-events: none;
}

.sketch-screen .home-ui-stage {
  overflow: hidden;
}

.stack-screen.is-past .home-ui-stage {
  opacity: 0;
}

.stack-screen.is-shrink-reveal-entering {
  clip-path: inset(var(--shrink-reveal-mask-top, 0%) 0 0 0);
  will-change: clip-path;
}

.stack-screen.is-grow-reveal-entering {
  clip-path: inset(var(--grow-reveal-mask-top, 0%) 0 0 0);
  transform-origin: center center;
  will-change: clip-path, transform;
}

.system-reveal-bg-layer,
.system-reveal-ui-layer {
  position: absolute;
  inset: 0;
  transform-origin: center center;
}

.stack-screen.is-system-reveal-entering,
.stack-screen.is-system-reveal-exiting {
  transition: none;
}

.stack-screen.is-system-reveal-entering::after,
.stack-screen.is-system-reveal-exiting::after {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) var(--system-reveal-band-start, 100%),
      rgba(238, 246, 255, 0.055) var(--system-reveal-band-peak, 100%),
      rgba(255, 255, 255, 0) var(--system-reveal-band-end, 100%),
      rgba(255, 255, 255, 0) 100%
    );
}

.stack-screen.is-system-reveal-entering,
.stack-screen.is-system-reveal-exiting {
  -webkit-mask-image:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) var(--system-reveal-clip-start, 100%),
      rgba(0, 0, 0, 0.22) var(--system-reveal-feather-soft, 100%),
      rgba(0, 0, 0, 0.72) var(--system-reveal-feather-mid, 100%),
      rgba(0, 0, 0, 1) var(--system-reveal-clip-top, 100%),
      rgba(0, 0, 0, 1) 100%
    );
  mask-image:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) var(--system-reveal-clip-start, 100%),
      rgba(0, 0, 0, 0.22) var(--system-reveal-feather-soft, 100%),
      rgba(0, 0, 0, 0.72) var(--system-reveal-feather-mid, 100%),
      rgba(0, 0, 0, 1) var(--system-reveal-clip-top, 100%),
      rgba(0, 0, 0, 1) 100%
    );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  will-change: clip-path, mask-image;
}

.stack-screen.is-system-reveal-entering .home-ui-stage :is([data-system-reveal-role="icon"], svg, .support-social-text-icon, .footer-social-text-icon),
.stack-screen.is-system-reveal-exiting .home-ui-stage :is([data-system-reveal-role="icon"], svg, .support-social-text-icon, .footer-social-text-icon) {
  transform: scale(var(--system-reveal-icon-scale, 1));
  transform-origin: center center;
  will-change: transform;
}

.stack-screen.is-system-reveal-entering .home-ui-stage :is([data-system-reveal-role="text"], [data-system-reveal-role="visual"], h1, h2, h3, h4, h5, h6, p, strong, em, dt, dd, label, li, time),
.stack-screen.is-system-reveal-exiting .home-ui-stage :is([data-system-reveal-role="text"], [data-system-reveal-role="visual"], h1, h2, h3, h4, h5, h6, p, strong, em, dt, dd, label, li, time) {
  transform: scale(var(--system-reveal-text-scale, 1));
  transform-origin: center center;
  will-change: transform;
}

.stack-screen.is-system-reveal-covered .home-bg-stage,
.stack-screen.is-system-reveal-covered .home-ui-stage {
  opacity: var(--system-cover-opacity, 1);
  will-change: opacity;
}

@keyframes footer-entry-replay {
  from {
    opacity: 0;
    transform: var(--footer-entry-transform, var(--entry-transform, translate3d(0, 58px, 0)));
  }

  to {
    opacity: 1;
    transform: var(--entry-active-transform, translate3d(0, 0, 0));
  }
}

.shared-footer-screen.is-footer-entry-playing .home-ui-stage > .home-el,
.home-screen-footer.is-footer-entry-playing .home-ui-stage > .home-el,
.shared-footer-screen.is-product-footer-revealing .home-ui-stage > .home-el {
  opacity: 0;
  transform: var(--footer-entry-transform, var(--entry-transform, translate3d(0, 58px, 0)));
  animation: footer-entry-replay 900ms var(--motion-ease-content) both;
  animation-delay: var(--footer-motion-delay, var(--motion-delay, 140ms));
  will-change: transform, opacity;
}

.stack-screen.is-shrink-reveal-entering .home-bg-stage > .sketch-layer,
.stack-screen.is-shrink-reveal-entering .home-bg-stage > .home-image,
.stack-screen.is-shrink-reveal-entering .home-bg-stage > .home-bg-fill,
.stack-screen.is-shrink-reveal-entering .home-bg-stage > .philosophy-code-bg,
.stack-screen.is-shrink-reveal-entering .home-bg-stage > .community-stories-bg-shade {
  transform: translate3d(0, var(--shrink-reveal-bg-y, 0px), 0) scale(var(--shrink-reveal-bg-scale, 1));
  transform-origin: center center;
  will-change: transform;
}


.home-bg-fill {
  position: absolute;
  inset: 0;
  background: #000;
}

.home-bg-deep-blue {
  background:
    linear-gradient(180deg, #001d3f 0%, #000 31%),
    #000;
}

.home-bg-transparent {
  background: transparent;
}

.home-el {
  position: absolute;
  left: calc(var(--mx, var(--x)) * 1px);
  top: calc(var(--my, var(--y)) * 1px);
  width: calc(var(--mw, var(--w)) * 1px);
  height: calc(var(--mh, var(--h)) * 1px);
}

.home-ui-stage > .home-el {
  opacity: 0;
  transform: var(--entry-transform, translate3d(0, 58px, 0));
  transition:
    transform var(--motion-hero) var(--motion-ease-content),
    opacity var(--motion-short) linear;
  transition-delay: var(--motion-delay, 140ms);
}

.stack-screen.is-active .home-ui-stage > .home-el {
  opacity: 1;
  transform: var(--entry-active-transform, translate3d(0, 0, 0));
}

.stack-screen.is-past .home-ui-stage > .home-el {
  opacity: 0;
  transform: var(--entry-past-transform, translate3d(0, -32px, 0));
}

.sketch-screen .home-ui-stage > .home-el,
.stack-screen.is-active.sketch-screen .home-ui-stage > .home-el,
.stack-screen.is-past.sketch-screen .home-ui-stage > .home-el {
  opacity: var(--sketch-opacity, 1);
  transform: translate3d(0, 0, 0);
  transition: none;
}

.home-image,
.home-logo img,
.home-card-image,
.footer-socials img {
  display: block;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
}

.home-image {
  width: calc(var(--mw, var(--w)) * 1px);
  height: calc(var(--mh, var(--h)) * 1px);
  object-fit: fill;
  transform: rotate(var(--rotate, 0deg));
  transform-origin: center;
}

.home-cover-bg {
  object-fit: cover;
}

.home-logo {
  display: block;
  z-index: 20;
  pointer-events: auto;
}

.home-logo img {
  width: 121px;
  height: 25px;
}

.home-persistent-logo {
  position: fixed;
  z-index: 31;
  top: var(--home-logo-top, 32px);
  left: 50%;
  width: var(--home-logo-width, 121px);
  height: var(--home-logo-height, 25px);
  transform: translateX(-50%);
  pointer-events: auto;
}

.home-persistent-logo img {
  display: block;
  width: 100%;
  height: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

.home-text {
  margin: 0;
  color: var(--color);
  font-family: var(--font-main);
  font-size: calc(var(--mfs, var(--fs)) * 1px);
  font-weight: var(--weight);
  line-height: calc(var(--mlh, var(--lh)) * 1px);
  letter-spacing: 0;
  text-align: var(--align);
  white-space: pre-line;
  word-break: keep-all;
  overflow-wrap: normal;
  cursor: text;
  pointer-events: auto;
  user-select: text;
}

.sketch-layer {
  opacity: var(--sketch-opacity, 1);
}

.sketch-bitmap {
  display: block;
  object-fit: fill;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
}

.sketch-design-reference {
  display: block;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.home-ui-stage > .sketch-design-reference,
.stack-screen.is-active .home-ui-stage > .sketch-design-reference,
.stack-screen.is-past .home-ui-stage > .sketch-design-reference {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: none;
}

.sketch-mask {
  display: block;
  overflow: hidden;
  border-radius: var(--sketch-radius, 0);
  pointer-events: none;
}

.sketch-mask img {
  position: absolute;
  display: block;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
}

.sketch-shape {
  display: block;
  border: var(--sketch-border-width, 0) solid var(--sketch-border, transparent);
  border-radius: var(--sketch-radius, 0);
  background: var(--sketch-fill, transparent);
  pointer-events: none;
}

.sketch-shape-oval {
  border-radius: 50%;
}

.sketch-path {
  display: block;
  overflow: visible;
  pointer-events: none;
}

.sketch-source-rule {
  display: block;
  pointer-events: none;
}

.sketch-text {
  margin: 0;
  color: var(--color);
  font-family: var(--font-main);
  font-size: calc(var(--mfs, var(--fs)) * 1px);
  font-weight: var(--weight);
  line-height: calc(var(--mlh, var(--lh)) * 1px);
  letter-spacing: 0;
  text-align: var(--align);
  white-space: pre-line;
  word-break: keep-all;
  overflow-wrap: normal;
  cursor: text;
  pointer-events: auto;
  user-select: text;
}

.sketch-text-single-line {
  white-space: nowrap;
}

.sketch-text-multiline {
  white-space: pre-line;
  word-break: normal;
  overflow-wrap: break-word;
}

.sketch-screen-morning-hero .home-bg-stage > .sketch-layer,
.scene-template-hero .home-bg-stage > .home-image {
  z-index: 1;
}

.product-page-bg {
  background: #000;
}

.immersive-page[data-route="products"] {
  position: relative;
  height: auto;
  min-height: 100vh;
  background: #000;
  isolation: isolate;
}

.immersive-page[data-route="products"]::before {
  content: none;
}

.immersive-page[data-route="products"] .product-page-bg {
  background: transparent;
}

.immersive-page[data-route="products"] .screen-stack {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  min-height: 100vh;
  overflow: visible;
  background: transparent;
}

.product-content-shell {
  position: relative;
  z-index: 1;
  background: transparent;
  isolation: isolate;
}

.product-content-background {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: url("./assets/backgrounds/products/product-page-resource7-20260603.webp?v=product-bg-resource7-20260603") center center / cover no-repeat;
  pointer-events: none;
  transform: translate3d(0, var(--product-bg-push-y, 0px), 0);
  will-change: transform;
}

.product-content-background::before {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 500ms var(--motion-ease-content);
  content: "";
}

.product-content-shell.is-product-bg-dimmed .product-content-background::before {
  opacity: 1;
}

.product-content-shell::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 20px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
  content: "";
  pointer-events: none;
}

.immersive-page[data-route="products"] .stack-screen {
  position: relative;
  inset: auto;
  display: block;
  height: auto;
  min-height: 100vh;
  background: transparent;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.immersive-page[data-route="products"] .home-screen,
.immersive-page[data-route="products"] .home-bg-stage {
  background: transparent;
}

.immersive-page[data-route="products"] .stack-screen .home-ui-stage {
  opacity: 1 !important;
}

.immersive-page[data-route="products"] .motion-image-card .motion-image-surface {
  opacity: 1 !important;
  clip-path: inset(0 0 0 0);
  filter: none !important;
}

.immersive-page[data-route="products"] .shared-footer-screen {
  --product-footer-reveal: 0;
  --product-footer-scale: 1.1;
  --product-footer-y: 92px;
  --product-footer-opacity: 1;
  z-index: 20 !important;
  min-height: 100vh;
  background: #000;
  clip-path: none;
  will-change: auto;
  overscroll-behavior-y: auto;
}

.immersive-page[data-route="products"] .shared-footer-screen .home-bg-stage,
.immersive-page[data-route="products"] .shared-footer-screen .home-ui-stage {
  opacity: 1 !important;
  transform-origin: 0 0;
  transition: none;
  will-change: auto;
}

.immersive-page[data-route="products"] .shared-footer-screen .home-ui-stage > .home-el {
  opacity: 1 !important;
  transform: var(--entry-active-transform, translate3d(0, 0, 0)) !important;
}

.immersive-page[data-route="products"] .shared-footer-screen.is-product-footer-revealed .home-bg-stage,
.immersive-page[data-route="products"] .shared-footer-screen.is-product-footer-revealed .home-ui-stage {
  will-change: auto;
}

.product-library-screen {
  position: relative;
  min-height: 0 !important;
  overflow: visible;
  color: rgba(238, 246, 255, 0.96);
}

.product-library-screen-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
  pointer-events: none;
}

.product-library-content {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 88px));
  margin: 0 auto;
  padding: 150px 0 300px;
}

.product-library {
  scroll-margin-top: 118px;
}

.product-library-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 34px;
}

.product-library-heading h2 {
  margin: 0;
  color: rgba(238, 246, 255, 0.96);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: 0;
  white-space: nowrap;
}

.product-library-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.product-library-filter {
  height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(210, 232, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(238, 246, 255, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  line-height: 38px;
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    color 220ms var(--ease);
}

.product-library-filter:hover,
.product-library-filter:focus-visible,
.product-library-filter.is-active {
  border-color: rgba(238, 246, 255, 0.78);
  background: rgba(238, 246, 255, 0.12);
  color: rgba(255, 255, 255, 0.96);
}

.product-library-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 26px 22px;
}

.product-library-card[hidden] {
  display: none !important;
}

.product-library-card {
  display: grid;
  min-width: 0;
  gap: 14px;
}

.product-library-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(210, 232, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.product-library-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms var(--motion-ease-content);
}

.product-library-card:hover .product-library-card-image img {
  transform: scale(1.04);
}

.product-library-card h3 {
  display: -webkit-box;
  min-height: 44px;
  margin: 0;
  overflow: hidden;
  color: rgba(238, 246, 255, 0.78);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-family-screen .home-ui-stage {
  overflow: visible;
}

.immersive-page[data-route="products"] .product-family-screen {
  height: auto;
  min-height: calc(var(--section-height, var(--stage-height, 960)) * 1px);
  overflow: visible;
}

.immersive-page[data-route="products"] .product-family-screen + .product-family-screen {
  margin-top: -220px;
}

.product-family-hover-zone {
  z-index: 1;
  pointer-events: auto;
}

.product-family-rule {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.product-family-image {
  z-index: 2;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.36);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --image-shift-x: 0px;
  --image-shift-y: 0px;
  --image-scale: 1;
  --image-light-x: 50%;
  --image-light-y: 50%;
  --image-side-x: 0;
  --image-side-y: -1;
  --image-rim-opacity: 0;
  --surface-entry-y: 0px;
  --surface-entry-scale: 1;
  overflow: visible;
  transform-style: preserve-3d;
  pointer-events: auto;
}

.product-family-image .motion-image-surface {
  z-index: 1;
  overflow: hidden;
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    box-shadow var(--motion-fade) linear,
    filter var(--motion-fade) linear;
}

.product-family-image .motion-image-surface::before {
  display: block;
  padding: 2px;
  background:
    radial-gradient(
      ellipse 140px 28px at var(--image-light-x) var(--image-light-y),
      rgba(255, 255, 255, 0.92) 0%,
      rgba(225, 243, 255, 0.56) 26%,
      rgba(160, 211, 255, 0.2) 52%,
      rgba(255, 255, 255, 0) 72%
    ),
    radial-gradient(
      ellipse 2px 46% at
        calc(50% + var(--image-side-x) * 50%)
        calc(50% + var(--image-side-y) * 50%),
      rgba(255, 255, 255, 0.98) 0%,
      rgba(220, 242, 255, 0.64) 34%,
      rgba(141, 201, 255, 0.22) 62%,
      rgba(255, 255, 255, 0) 100%
    );
  filter:
    brightness(1.16)
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.36))
    drop-shadow(0 0 10px rgba(120, 184, 255, 0.28));
  opacity: calc(var(--image-rim-opacity, 0) * 0.86);
  mix-blend-mode: screen;
}

.product-family-image .motion-image-surface::after {
  display: none;
}

.product-family-image.motion-image-card.is-image-hovered .motion-image-surface,
.product-family-image.motion-image-card:focus-visible .motion-image-surface {
  filter: saturate(1.03) brightness(1.035);
  box-shadow: inset 0 0 0 1px rgba(225, 243, 255, 0.18);
}

.product-family-image.motion-image-card.is-image-hovered .home-card-image,
.product-family-image.motion-image-card:hover .home-card-image {
  --image-scale: 1.045;
}

.product-family-card-title,
.product-family-heading {
  white-space: nowrap;
}

.product-family-card-title,
.product-family-copy,
.product-family-cta {
  z-index: 3;
}

.product-family-intro,
.product-family-copy {
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.stack-screen.product-family-screen.sketch-screen .home-ui-stage > .product-family-copy {
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms var(--motion-ease-content);
}

.stack-screen.product-family-screen.sketch-screen .home-ui-stage > .product-family-cta {
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 520ms var(--motion-ease-content),
    transform 520ms var(--motion-ease-content);
}

.stack-screen.product-family-screen.sketch-screen[data-active-product="charmingBlue"] .home-ui-stage > .product-family-copy[data-product-key="charmingBlue"],
.stack-screen.product-family-screen.sketch-screen[data-active-product="jadeDawn"] .home-ui-stage > .product-family-copy[data-product-key="jadeDawn"],
.stack-screen.product-family-screen.sketch-screen[data-active-product="whiteShirt"] .home-ui-stage > .product-family-copy[data-product-key="whiteShirt"],
.stack-screen.product-family-screen.sketch-screen[data-active-product="snowSea"] .home-ui-stage > .product-family-copy[data-product-key="snowSea"],
.stack-screen.product-family-screen.sketch-screen[data-active-product="iceGlacier"] .home-ui-stage > .product-family-copy[data-product-key="iceGlacier"],
.stack-screen.product-family-screen.sketch-screen[data-active-product="sunnyCoast"] .home-ui-stage > .product-family-copy[data-product-key="sunnyCoast"],
.stack-screen.product-family-screen.sketch-screen[data-active-product="charmingBlue"] .home-ui-stage > .product-family-cta[data-product-key="charmingBlue"],
.stack-screen.product-family-screen.sketch-screen[data-active-product="jadeDawn"] .home-ui-stage > .product-family-cta[data-product-key="jadeDawn"],
.stack-screen.product-family-screen.sketch-screen[data-active-product="whiteShirt"] .home-ui-stage > .product-family-cta[data-product-key="whiteShirt"],
.stack-screen.product-family-screen.sketch-screen[data-active-product="snowSea"] .home-ui-stage > .product-family-cta[data-product-key="snowSea"],
.stack-screen.product-family-screen.sketch-screen[data-active-product="iceGlacier"] .home-ui-stage > .product-family-cta[data-product-key="iceGlacier"],
.stack-screen.product-family-screen.sketch-screen[data-active-product="sunnyCoast"] .home-ui-stage > .product-family-cta[data-product-key="sunnyCoast"] {
  opacity: 1;
  pointer-events: auto;
}

.product-family-cta {
  color: #fff;
}

.product-scene-card {
  pointer-events: auto;
  background: #0b0b0b;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --image-shift-x: 0px;
  --image-shift-y: 0px;
  --image-scale: 1;
  --image-light-x: 50%;
  --image-light-y: 50%;
  --image-side-x: 0;
  --image-side-y: -1;
  --image-rim-opacity: 0;
  --surface-entry-y: 0px;
  --surface-entry-scale: 1;
  transform-style: preserve-3d;
}

.product-scene-card .motion-image-surface {
  opacity: 1;
  filter: none;
}

.product-scene-card.motion-image-card.is-image-hovered .home-card-image,
.product-scene-card.motion-image-card:hover .home-card-image {
  --image-scale: 1.04;
}

.immersive-page[data-route="products"] .product-scene-cards-screen {
  height: 860px;
  min-height: 860px;
  overflow: visible;
  overscroll-behavior: auto;
}

.product-scene-rail-shell {
  overflow: hidden;
  padding: 0 0 18px;
  opacity: 1;
  transform: none;
  transition: none;
  scrollbar-width: none;
  pointer-events: auto;
  overscroll-behavior: auto;
}

.product-scene-rail-shell::-webkit-scrollbar {
  display: none;
}

.product-scene-rail-track {
  display: grid;
  width: 1400px;
  grid-template-columns: repeat(4, 326px);
  gap: 32px;
  transform: none;
  transition: none;
  will-change: auto;
}

.product-scene-rail-card {
  display: grid;
  width: 326px;
  grid-template-rows: 380px auto auto;
  align-content: start;
  background: transparent;
  text-decoration: none;
  outline: none;
}

.product-scene-rail-image {
  position: relative;
  display: block;
  width: 326px;
  height: 380px;
  overflow: hidden;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
}

.product-scene-rail-card h3 {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 32px;
  font-weight: 500;
  line-height: 43px;
  letter-spacing: 0;
}

.product-scene-rail-detail {
  display: grid;
  width: 230px;
  gap: 18px;
  margin-top: 4px;
  opacity: 0;
  transform: translate3d(0, -8px, 0);
  transition:
    opacity 360ms var(--ease),
    transform 460ms var(--motion-ease-content);
  pointer-events: none;
}

.product-scene-rail-card.is-hovered .product-scene-rail-detail,
.product-scene-rail-card:focus-within .product-scene-rail-detail,
.product-scene-rail-card.is-image-hovered .product-scene-rail-detail {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.product-scene-rail-detail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
}

.product-scene-rail-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

.product-scene-rail-detail-link,
.product-scene-rail-plus {
  display: flex;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94);
  color: #333;
  text-decoration: none;
}

.product-scene-rail-detail-link {
  width: 134px;
  gap: 14px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.product-scene-rail-detail-link svg {
  display: block;
  width: 14px;
  height: 4px;
  overflow: visible;
}

.product-scene-rail-detail-link path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.product-scene-rail-plus {
  position: relative;
  width: 32px;
}

.product-scene-rail-plus::before,
.product-scene-rail-plus::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.product-scene-rail-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.offline-store-screen .home-ui-stage {
  overflow: visible;
}

.offline-store-bg-mark {
  position: absolute;
  right: -140px;
  bottom: -96px;
  width: 760px;
  height: 860px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(142, 194, 255, 0.09)),
    rgba(255, 255, 255, 0.035);
  opacity: 0.78;
  transform: rotate(-5deg);
  -webkit-mask: url("./assets/icons/product-diamond.svg") center / contain no-repeat;
  mask: url("./assets/icons/product-diamond.svg") center / contain no-repeat;
}

.offline-store-shell {
  display: grid;
  grid-template-columns: 536px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 64px;
  color: rgba(255, 255, 255, 0.9);
  pointer-events: auto;
}

.offline-store-heading {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  gap: 12px;
  align-content: start;
}

.offline-store-heading span {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.08em;
}

.offline-store-heading h2 {
  margin: 0;
}

.offline-store-heading h2 {
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-title);
  font-size: 52px;
  font-weight: 400;
  line-height: 68px;
}

.offline-store-rule {
  display: block;
  width: 208px;
  height: 4px;
  margin-top: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.08));
}

.offline-store-search {
  display: grid;
  grid-column: 1;
  grid-row: 2;
  grid-template-columns: minmax(0, 1fr) 96px 120px;
  gap: 10px;
  margin-top: 30px;
}

.offline-store-search input,
.offline-store-search button {
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 300;
  outline: none;
}

.offline-store-search input {
  min-width: 0;
  padding: 0 20px;
}

.offline-store-search input::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.offline-store-search button {
  padding: 0 18px;
  cursor: pointer;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    transform 260ms var(--motion-ease-content);
}

.offline-store-search button:hover,
.offline-store-search button:focus-visible {
  border-color: rgba(151, 205, 255, 0.7);
  background: rgba(14, 87, 164, 0.28);
  color: #fff;
  transform: translate3d(0, -1px, 0);
}

.offline-store-results {
  display: grid;
  align-content: start;
  grid-auto-rows: max-content;
  grid-column: 1;
  grid-row: 3;
  gap: 12px;
  max-height: 526px;
  margin-top: 24px;
  padding-right: 22px;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: rgba(222, 239, 255, 0.5) rgba(255, 255, 255, 0.08);
}

.offline-store-results::-webkit-scrollbar {
  width: 4px;
}

.offline-store-results::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.offline-store-results::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(222, 239, 255, 0.5);
}

.offline-store-card {
  position: relative;
  z-index: 0;
  isolation: isolate;
  box-sizing: border-box;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 146px;
  padding: 13px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(6, 9, 14, 0.82);
  transition:
    border-color 220ms ease,
    box-shadow 260ms ease,
    background 220ms ease,
    transform 260ms var(--motion-ease-content);
}

.offline-store-card.has-navigation {
  align-content: space-evenly;
  gap: 24px;
  width: 100%;
  min-height: 246px;
  padding: 24px 18px 28px;
}

.offline-store-card.is-placeholder {
  align-content: center;
}

.offline-store-card.has-navigation .offline-store-card-main em {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: clip;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.offline-store-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(58, 157, 255, 0.34), rgba(58, 157, 255, 0.12) 34%, transparent 70%);
  opacity: 0;
  transform: scale(0.98);
  transition:
    opacity 260ms ease,
    transform 260ms var(--motion-ease-content);
  pointer-events: none;
}

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

.offline-store-card.is-active,
.offline-store-card:hover,
.offline-store-card:focus-within {
  border-color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(90deg, rgba(4, 16, 32, 0.94), rgba(0, 57, 112, 0.38) 54%, rgba(0, 102, 196, 0.5)),
    rgba(5, 12, 24, 0.92);
  box-shadow:
    0 0 0 1px rgba(42, 153, 255, 0.42),
    inset 0 0 30px rgba(42, 153, 255, 0.22),
    inset 0 0 80px rgba(42, 153, 255, 0.12);
  transform: translate3d(4px, 0, 0);
}

.offline-store-card.is-active::before,
.offline-store-card:hover::before,
.offline-store-card:focus-within::before {
  opacity: 1;
  transform: scale(1);
}

.offline-store-card button {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.offline-store-card-mark {
  display: grid;
  width: 24px;
  height: 28px;
  place-items: start center;
  padding-top: 3px;
}

.offline-store-card-mark img {
  display: block;
  width: 13px;
  height: 20px;
  object-fit: contain;
  opacity: 0.94;
}

.offline-store-card-main {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.offline-store-card-main strong,
.offline-store-card-main em,
.offline-store-card-main span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offline-store-card-main strong {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 400;
  line-height: 27px;
}

.offline-store-card-main em {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-style: normal;
  font-size: 17px;
  font-weight: 300;
  line-height: 24px;
}

.offline-store-card-main em,
.offline-store-card-main span {
  font-style: normal;
  font-weight: 300;
}

.offline-store-card-main span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 19px;
}

.offline-store-card-nav {
  position: relative;
  width: 200px;
  height: 48px;
  margin-left: 38px;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 23px;
}

.offline-store-card-nav:hover,
.offline-store-card-nav:focus-visible {
  color: rgba(255, 255, 255, 1);
}

.offline-store-card-nav .saza-pill-frame-outer {
  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.34))
    drop-shadow(0 0 42px rgba(255, 255, 255, 0.2));
  animation: breathing-halo 3s ease-in-out infinite;
}

.offline-store-card-nav .saza-pill-text {
  height: 23px;
  padding-right: 30px;
}

.offline-store-empty {
  display: grid;
  gap: 8px;
  min-height: 160px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.offline-store-empty strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.offline-store-empty span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  line-height: 22px;
}

.offline-store-map-panel {
  position: relative;
  grid-column: 2;
  grid-row: 2 / 4;
  width: 92%;
  min-height: 548px;
  margin-top: 30px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(151, 205, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 20%, rgba(12, 76, 152, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.008)),
    #020407;
}

.offline-store-map-panel::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 44%, rgba(0, 0, 0, 0.42));
  content: "";
}

.offline-store-map {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.offline-store-map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(151, 205, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 205, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 54% 46%, #000 0%, transparent 75%);
}

.offline-store-map-pulse {
  position: absolute;
  inset: 132px 160px;
  border: 1px solid rgba(126, 190, 255, 0.18);
  border-radius: 50%;
  filter: drop-shadow(0 0 48px rgba(69, 160, 255, 0.16));
}

.offline-store-map-pulse::before,
.offline-store-map-pulse::after {
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(126, 190, 255, 0.12);
  border-radius: inherit;
  content: "";
}

.offline-store-map-pulse::after {
  inset: 31%;
}

.offline-store-map-marker,
.offline-store-amap-marker {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(175, 220, 255, 0.68);
  border-radius: 50%;
  background: rgba(2, 20, 44, 0.86);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transform: translate3d(-50%, -50%, 0);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 260ms var(--motion-ease-content);
}

.offline-store-amap-marker {
  position: static;
  transform: none;
}

.offline-store-leaflet-icon {
  border: 0;
  background: transparent;
}

.offline-store-leaflet-marker {
  position: relative;
  transform: none;
}

.offline-store-map-marker::after,
.offline-store-amap-marker::after {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(78, 167, 255, 0.18);
  border-radius: inherit;
  content: "";
}

.offline-store-map-marker.is-active,
.offline-store-map-marker:hover,
.offline-store-amap-marker.is-active,
.offline-store-amap-marker:hover {
  border-color: rgba(255, 255, 255, 0.96);
  background: rgba(0, 96, 190, 0.92);
  box-shadow:
    0 0 0 6px rgba(32, 140, 255, 0.14),
    0 0 42px rgba(80, 174, 255, 0.46);
  transform: translate3d(-50%, -50%, 0) scale(1.12);
}

.offline-store-amap-marker.is-active,
.offline-store-amap-marker:hover {
  transform: scale(1.12);
}

.offline-store-leaflet-marker.is-active,
.offline-store-leaflet-marker:hover {
  transform: scale(1.12);
}

.offline-store-map-marker.is-user,
.offline-store-amap-marker.is-user {
  width: 18px;
  height: 18px;
  border-color: rgba(255, 255, 255, 0.96);
  background: #fff;
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.16),
    0 0 32px rgba(151, 205, 255, 0.62);
}

.offline-store-map .leaflet-container {
  background: #020407;
  color: rgba(255, 255, 255, 0.82);
  font-family: inherit;
}

.offline-store-map .leaflet-tile {
  filter: grayscale(0.18) saturate(0.86) brightness(0.66) contrast(1.18) hue-rotate(176deg);
}

.offline-store-map .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid rgba(151, 205, 255, 0.22);
  border-radius: 6px;
  background: rgba(2, 20, 44, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.offline-store-map .leaflet-control-zoom a {
  border: 0;
  background: rgba(4, 24, 48, 0.78);
  color: rgba(255, 255, 255, 0.86);
}

.offline-store-map .leaflet-control-zoom a:hover,
.offline-store-map .leaflet-control-zoom a:focus-visible {
  background: rgba(0, 96, 190, 0.88);
  color: #fff;
}

.offline-store-map .leaflet-control-attribution {
  background: rgba(0, 0, 0, 0.54);
  color: rgba(255, 255, 255, 0.58);
}

.offline-store-map .leaflet-control-attribution a {
  color: rgba(175, 220, 255, 0.82);
}

.offline-store-map-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
}

.offline-store-map-caption span {
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-title);
  font-size: 18px;
  line-height: 26px;
}

.offline-store-map-caption a {
  display: grid;
  min-width: 96px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.offline-store-map-caption a:hover,
.offline-store-map-caption a:focus-visible {
  border-color: rgba(151, 205, 255, 0.72);
  background: rgba(19, 94, 170, 0.34);
  color: #fff;
}

.scene-template-hero,
.scene-template-hero .home-bg-stage {
  background: #000;
}

.scene-template-hero-bg {
  object-position: var(--scene-hero-position, center center);
  filter: saturate(0.96) contrast(1.05);
}

.scene-template-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 70%, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.12) 46%, rgba(0, 0, 0, 0.56) 100%);
}

.scene-template-focus-hero .scene-template-hero-overlay {
  background:
    radial-gradient(circle at 50% 76%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.12) 34%, rgba(0, 0, 0, 0.05) 62%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(52, 34, 6, 0.02) 0%, rgba(49, 29, 0, 0.04) 50%, rgba(45, 24, 0, 0.26) 100%);
}

.scene-template-hero-title,
.scene-template-hero-subtitle,
.scene-template-hero-cta {
  z-index: 4;
  letter-spacing: 0;
  text-align: center;
}

.scene-template-hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  color: #fff;
  font-size: 60px;
  font-weight: 400;
  line-height: 79px;
  white-space: nowrap;
}

.scene-template-hero-title-icon {
  display: block;
  position: relative;
  width: 0.561em;
  height: 0.918em;
  flex: 0 0 0.561em;
  overflow: hidden;
  opacity: 0.96;
}

.scene-template-hero-title-icon img {
  position: absolute;
  top: -0.335em;
  left: 50%;
  display: block;
  width: auto;
  height: 1.391em;
  max-width: none;
  object-fit: contain;
  transform: translateX(-50%);
}

.scene-template-hero-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  white-space: normal;
}

.scene-template-hero-cta {
  z-index: 4;
}

.scene-template-focus-hero .scene-template-hero-title,
.scene-template-focus-hero .scene-template-hero-subtitle,
.scene-template-focus-hero .scene-template-hero-cta {
  text-shadow: 0 2px 18px rgba(68, 35, 0, 0.38);
}

.morning-pain-screen,
.morning-pain-bg {
  background: #000;
}

.morning-dual-rings {
  pointer-events: auto;
  --morning-ring-ease: cubic-bezier(0.18, 0.78, 0.24, 1);
}

.morning-ring {
  position: absolute;
  top: 127px;
  width: 564px;
  height: 721px;
  color: #fff;
  outline: none;
}

.morning-ring-left {
  left: 430px;
  --morning-ring-intro-x: 248px;
  --morning-ring-intro-y: 0px;
}

.morning-ring-right {
  left: 926px;
  --morning-ring-intro-x: -248px;
  --morning-ring-intro-y: 0px;
}

.morning-ring-shell {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  text-align: center;
  opacity: 0.42;
  transition:
    opacity 420ms var(--morning-ring-ease),
    border-color 420ms var(--morning-ring-ease),
    box-shadow 420ms var(--morning-ring-ease),
    transform 420ms var(--morning-ring-ease);
  will-change: opacity, box-shadow, transform;
}

.morning-ring-kicker,
.morning-ring h2,
.morning-ring-dash,
.morning-ring-copy {
  margin: 0;
  letter-spacing: 0;
}

.morning-ring-kicker {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.54);
  transition:
    color 320ms var(--morning-ring-ease),
    opacity 320ms var(--morning-ring-ease);
}

.morning-ring h2 {
  margin-top: 10px;
  font-size: 32px;
  font-weight: 400;
  line-height: 43px;
  color: rgba(255, 255, 255, 0.52);
  transition:
    color 320ms var(--morning-ring-ease),
    opacity 320ms var(--morning-ring-ease);
}

.morning-ring-dash {
  display: block;
  width: 44px;
  height: 4px;
  margin-top: 29px;
  background: rgba(255, 255, 255, 0.8);
  clip-path: polygon(8% 0, 100% 0, 93% 100%, 0 100%);
  opacity: 0.22;
  transition:
    opacity 320ms var(--morning-ring-ease),
    background-color 320ms var(--morning-ring-ease);
}

.morning-ring-copy {
  max-width: 360px;
  margin-top: 56px;
  color: rgba(221, 221, 221, 0.94);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  opacity: 0;
  transition: opacity 320ms var(--morning-ring-ease);
  will-change: opacity;
}

.morning-dual-rings[data-visual-stage="1"] .morning-ring-left .morning-ring-shell,
.morning-dual-rings[data-visual-stage="2"] .morning-ring-left .morning-ring-shell,
.morning-dual-rings[data-visual-stage="3"] .morning-ring-right .morning-ring-shell,
.morning-dual-rings[data-visual-stage="4"] .morning-ring-right .morning-ring-shell {
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 0 22px rgba(255, 255, 255, 0.18),
    0 0 74px rgba(255, 255, 255, 0.08);
  opacity: 1;
  animation: morning-ring-breathe 2.8s ease-in-out infinite;
}

.morning-dual-rings[data-visual-stage="2"] .morning-ring-left :is(.morning-ring-kicker, h2),
.morning-dual-rings[data-visual-stage="4"] .morning-ring-right :is(.morning-ring-kicker, h2) {
  color: rgba(255, 255, 255, 0.96);
}

.morning-dual-rings[data-visual-stage="2"] .morning-ring-left .morning-ring-dash,
.morning-dual-rings[data-visual-stage="4"] .morning-ring-right .morning-ring-dash {
  opacity: 0.84;
}

.morning-dual-rings[data-visual-stage="2"] .morning-ring-left .morning-ring-copy,
.morning-dual-rings[data-visual-stage="4"] .morning-ring-right .morning-ring-copy {
  opacity: 1;
}

.morning-dual-rings.is-intro-pending .morning-ring {
  transform: translate3d(var(--morning-ring-intro-x, 0), var(--morning-ring-intro-y, 0), 0);
}

.morning-dual-rings.is-intro-pending .morning-ring :is(.morning-ring-kicker, h2) {
  opacity: 0;
}

.morning-dual-rings.is-intro-playing .morning-ring {
  animation: morning-ring-intro-split 1000ms cubic-bezier(0.16, 0.84, 0.26, 1) both;
}

.morning-dual-rings.is-intro-playing .morning-ring :is(.morning-ring-kicker, h2) {
  animation: morning-ring-title-intro 500ms cubic-bezier(0.18, 0.78, 0.24, 1) both;
  animation-delay: 1000ms;
}

@keyframes morning-ring-breathe {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 22px rgba(255, 255, 255, 0.18),
      0 0 74px rgba(255, 255, 255, 0.08);
  }

  50% {
    transform: scale(1.012);
    box-shadow:
      0 0 30px rgba(255, 255, 255, 0.24),
      0 0 96px rgba(255, 255, 255, 0.12);
  }
}

@keyframes morning-ring-intro-split {
  0% {
    transform: translate3d(var(--morning-ring-intro-x, 0), var(--morning-ring-intro-y, 0), 0);
  }

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

@keyframes morning-ring-title-intro {
  0%,
  58% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.morning-product-screen,
.morning-product-bg {
  background: #000;
}

.morning-product-gallery {
  pointer-events: auto;
}

.morning-product-heading {
  position: absolute;
  left: 260px;
  top: 111px;
  width: 128px;
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  line-height: 43px;
  letter-spacing: 0;
  text-align: center;
}

.morning-product-thumbs {
  position: absolute;
  left: 260px;
  top: 356px;
  width: 148px;
  height: 326px;
  overflow: hidden;
}

.morning-product-thumb-track {
  position: absolute;
  left: 0;
  top: 0;
  width: 119px;
  height: 100%;
  transform: translate3d(0, calc(var(--morning-thumb-window, 0) * -116px), 0);
  transition: transform 720ms var(--motion-ease-content);
  will-change: transform;
}

.morning-product-thumb {
  position: absolute;
  left: 0;
  top: calc(var(--thumb-index, 0) * 116px);
  width: 119px;
  height: 94px;
  padding: 0;
  border: 0;
  background: #111;
  opacity: 0.68;
  cursor: pointer;
  transform: scale(1);
  transform-origin: center;
  transition:
    opacity 720ms var(--ease),
    transform 720ms var(--motion-ease-content);
  will-change: transform, opacity;
}

.morning-product-thumb::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
  opacity: 1;
  transition: opacity 720ms var(--ease);
  content: "";
}

.morning-product-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.morning-product-gallery[data-active-index="0"] .thumb-0,
.morning-product-gallery[data-active-index="1"] .thumb-1,
.morning-product-gallery[data-active-index="2"] .thumb-2 {
  opacity: 1;
  transform: scale(1.1);
  z-index: 2;
}

.morning-product-gallery[data-active-index="0"] .thumb-0::after,
.morning-product-gallery[data-active-index="1"] .thumb-1::after,
.morning-product-gallery[data-active-index="2"] .thumb-2::after {
  opacity: 0;
}

.morning-product-diamond {
  position: absolute;
  left: 135px;
  top: calc(var(--morning-thumb-local-index, 0) * 116px + 34px);
  display: block;
  width: 14px;
  height: 22px;
  object-fit: contain;
  transition: top 720ms var(--motion-ease-content);
  user-select: none;
  -webkit-user-drag: none;
}

.morning-product-actions {
  position: absolute;
  left: 260px;
  top: 721px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.morning-product-detail-link,
.morning-product-plus {
  display: flex;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #333;
  text-decoration: none;
}

.morning-product-detail-link {
  width: 134px;
  gap: 14px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}

.morning-product-detail-arrow {
  display: block;
  width: 14px;
  height: 4px;
  overflow: visible;
}

.morning-product-detail-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.morning-product-plus {
  position: relative;
  width: 32px;
}

.morning-product-plus::before,
.morning-product-plus::after {
  position: absolute;
  left: 9px;
  top: 15px;
  width: 14px;
  height: 1px;
  background: #333;
  content: "";
}

.morning-product-plus::after {
  transform: rotate(90deg);
}

.morning-product-main-viewport {
  position: absolute;
  left: 696px;
  top: 111px;
  width: 964px;
  height: 790px;
  overflow: hidden;
  background: #000;
}

.morning-product-track {
  display: flex;
  flex-direction: column;
  transform: translate3d(0, calc(var(--morning-product-index, 0) * -666px), 0);
  transition: transform 980ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.morning-product-slide {
  position: relative;
  width: 964px;
  height: 666px;
  flex: 0 0 666px;
  background: #000;
}

.morning-product-card {
  position: absolute;
  left: 0;
  top: 0;
  width: 964px;
  height: 602px;
  overflow: hidden;
  background: #061829;
}

.morning-product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: var(--product-fit, cover);
  object-position: var(--product-position, center center);
  user-select: none;
  -webkit-user-drag: none;
}

.morning-product-badge {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 89px;
  height: 55px;
  user-select: none;
  -webkit-user-drag: none;
}

.morning-product-pill {
  position: absolute;
  left: 16px;
  bottom: 16px;
  min-width: 124px;
  height: 43px;
  padding: 0 24px;
  border: 1px solid rgba(253, 252, 252, 0.95);
  background: rgba(51, 51, 51, 0.5);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 43px;
  text-align: center;
  box-sizing: border-box;
}

.morning-product-slide-meta {
  position: absolute;
  left: 0;
  top: 610px;
  width: 964px;
  height: 44px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #ddd;
}

.morning-product-slide-meta p,
.morning-product-slide-meta span {
  margin: 0;
  letter-spacing: 0;
}

.morning-product-slide-meta p {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
}

.morning-product-slide-meta span {
  padding-top: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
}

.sketch-screen-morning-hero .home-bg-stage::before,
.sketch-screen-morning-hero .home-bg-stage::after,
.scene-template-hero .home-bg-stage::before,
.scene-template-hero .home-bg-stage::after {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.sketch-screen-morning-hero .home-bg-stage::before,
.scene-template-hero .home-bg-stage::before {
  inset: -34% -48%;
  opacity: 0;
  background:
    linear-gradient(
      112deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 241, 214, 0.035) 39%,
      rgba(255, 255, 255, 0.22) 46%,
      rgba(255, 231, 196, 0.07) 52%,
      rgba(255, 255, 255, 0) 64%
    );
  filter: blur(11px);
  mix-blend-mode: screen;
  transform: translate3d(-46%, 24%, 0) rotate(-5deg);
  will-change: transform, opacity;
}

.sketch-screen-morning-hero .home-bg-stage::after,
.scene-template-hero .home-bg-stage::after {
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(ellipse 420px 92px at 38% 62%, rgba(255, 244, 218, 0.16) 0%, rgba(255, 224, 180, 0.045) 42%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(ellipse 300px 68px at 73% 72%, rgba(255, 255, 244, 0.1) 0%, rgba(255, 234, 200, 0.03) 44%, rgba(255, 255, 255, 0) 76%);
  filter: blur(18px);
  mix-blend-mode: screen;
  transform: translate3d(-8%, 4%, 0);
  will-change: transform, opacity;
}

.stack-screen.is-active.sketch-screen-morning-hero .home-bg-stage::before,
.stack-screen.is-active.scene-template-hero .home-bg-stage::before {
  opacity: 1;
  animation: morning-flow-sweep 7.4s cubic-bezier(0.45, 0, 0.28, 1) infinite;
}

.stack-screen.is-active.sketch-screen-morning-hero .home-bg-stage::after,
.stack-screen.is-active.scene-template-hero .home-bg-stage::after {
  opacity: 1;
  animation: morning-flow-bloom 8.8s ease-in-out infinite;
}

@keyframes morning-flow-sweep {
  0% {
    opacity: 0;
    transform: translate3d(-52%, 28%, 0) rotate(-5deg);
  }
  16% {
    opacity: 0.5;
  }
  46% {
    opacity: 0.56;
  }
  68% {
    opacity: 0;
    transform: translate3d(48%, -20%, 0) rotate(-5deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(48%, -20%, 0) rotate(-5deg);
  }
}

@keyframes morning-flow-bloom {
  0%,
  100% {
    opacity: 0.1;
    transform: translate3d(-7%, 4%, 0) scale(0.96);
  }
  42% {
    opacity: 0.36;
    transform: translate3d(5%, -1%, 0) scale(1.04);
  }
  72% {
    opacity: 0.16;
    transform: translate3d(11%, -4%, 0) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stack-screen.is-active.sketch-screen-morning-hero .home-bg-stage::before,
  .stack-screen.is-active.sketch-screen-morning-hero .home-bg-stage::after,
  .stack-screen.is-active.scene-template-hero .home-bg-stage::before,
  .stack-screen.is-active.scene-template-hero .home-bg-stage::after {
    animation: none;
  }
}

.philosophy-code-hero .home-bg-stage {
  overflow: hidden;
  pointer-events: auto;
}

.philosophy-code-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(10, 12, 13, 0.7) 38%, rgba(1, 1, 2, 0.96) 100%),
    radial-gradient(ellipse 1120px 520px at 50% 62%, rgba(72, 80, 86, 0.36) 0%, rgba(32, 36, 40, 0.24) 38%, rgba(5, 6, 7, 0) 72%),
    radial-gradient(ellipse 1520px 780px at 50% 100%, rgba(36, 42, 48, 0.5) 0%, rgba(12, 14, 16, 0.45) 32%, rgba(0, 0, 0, 0) 72%),
    #050606;
}

.philosophy-code-bg::before,
.philosophy-code-bg::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.philosophy-code-bg::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.56) 0%, transparent 20%, transparent 78%, rgba(0, 0, 0, 0.72) 100%);
}

.philosophy-code-bg::after {
  background:
    radial-gradient(ellipse 720px 430px at 50% 53%, rgba(150, 156, 168, 0.14), transparent 68%),
    radial-gradient(ellipse 640px 250px at 50% 102%, rgba(156, 160, 168, 0.11), transparent 66%);
  mix-blend-mode: screen;
  opacity: 0.46;
}

.philosophy-orbit-svg {
  position: absolute;
  inset: -20px -116px -72px -116px;
  width: calc(100% + 232px);
  height: calc(100% + 92px);
  display: block;
}

.philosophy-orbit-line,
.philosophy-orbit-hit {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.philosophy-orbit-line {
  stroke: url("#philosophyOrbitStroke");
  stroke-width: 1;
  stroke-opacity: 0.5;
  opacity: 0.42;
  transition:
    opacity 420ms var(--motion-ease-content),
    stroke-opacity 420ms var(--motion-ease-content),
    filter 420ms var(--motion-ease-content);
  animation: philosophyArcBreath 7200ms linear infinite;
}

.philosophy-orbit-hit {
  stroke: rgba(255, 255, 255, 0.001);
  stroke-width: 44;
  pointer-events: stroke;
}

.philosophy-orbit-arc:hover .philosophy-orbit-line,
.philosophy-orbit-arc.is-proximity .philosophy-orbit-line {
  opacity: 0.9;
  filter: drop-shadow(0 0 7px rgba(218, 226, 238, 0.32));
  animation: philosophyArcBreathStrong 2200ms linear infinite;
}

.philosophy-orbit-arc.arc-1 .philosophy-orbit-line {
  stroke-width: 1;
  opacity: 0.2;
  animation-delay: -4800ms;
}

.philosophy-orbit-arc.arc-2 .philosophy-orbit-line {
  stroke-width: 1;
  opacity: 0.3;
  animation-delay: -5400ms;
}

.philosophy-orbit-arc.arc-3 .philosophy-orbit-line {
  stroke-width: 1;
  opacity: 0.44;
  animation-delay: -6000ms;
}

.philosophy-orbit-arc.arc-4 .philosophy-orbit-line {
  stroke-width: 2;
  opacity: 0.54;
  animation-delay: -6600ms;
}

.philosophy-orbit-arc.arc-5 .philosophy-orbit-line {
  stroke-width: 3;
  opacity: 0.46;
  animation-delay: 0ms;
}

@keyframes philosophyArcBreath {
  0%,
  100% {
    stroke-opacity: 0.36;
  }

  12.5% {
    stroke-opacity: 0.5;
  }

  25% {
    stroke-opacity: 0.72;
  }

  37.5% {
    stroke-opacity: 0.9;
  }

  50% {
    stroke-opacity: 1;
  }

  62.5% {
    stroke-opacity: 0.9;
  }

  75% {
    stroke-opacity: 0.72;
  }

  87.5% {
    stroke-opacity: 0.5;
  }
}

@keyframes philosophyArcBreathStrong {
  0%,
  100% {
    stroke-opacity: 0.66;
  }

  25%,
  75% {
    stroke-opacity: 0.84;
  }

  50% {
    stroke-opacity: 1;
  }
}

.home-hero-title {
  font-family: var(--font-main);
  white-space: nowrap;
}

.home-hero-copy,
.footer-cta-title,
.footer-cta-copy,
.scene-heading,
.scene-title,
.scene-subtitle,
.product-title,
.philosophy-title,
.philosophy-item,
.community-title,
.footer-title,
.footer-list {
  white-space: nowrap;
}

.saza-pill-button {
  display: grid;
  place-items: center;
  overflow: visible;
  color: #fff;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  text-decoration: none;
  pointer-events: auto;
  transition:
    color var(--motion-fade) linear,
    transform var(--motion-quick) var(--motion-ease-content);
}

.saza-pill-button:hover {
  transform: translateY(-1px);
}

.saza-pill-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.saza-pill-frame-inner {
  z-index: 0;
}

.saza-pill-frame-outer {
  z-index: 0;
  transform-origin: center center;
  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.34))
    drop-shadow(0 0 42px rgba(255, 255, 255, 0.2));
  animation: breathing-halo 3s ease-in-out infinite;
  will-change: filter, opacity, transform;
}

.saza-pill-text {
  position: relative;
  z-index: 1;
  display: block;
  height: 23px;
  overflow: hidden;
  padding-right: 30px;
}

.saza-pill-text-static,
.saza-pill-text-hover {
  display: block;
  transition:
    transform var(--motion-fade) var(--motion-ease-content),
    opacity var(--motion-fade) linear;
}

.saza-pill-text-hover {
  opacity: 0;
  transform: translateY(105%);
}

.saza-pill-button:hover .saza-pill-text-static {
  opacity: 0;
  transform: translateY(-105%);
}

.saza-pill-button:hover .saza-pill-text-hover {
  opacity: 1;
  transform: translateY(-100%);
}

@keyframes breathing-halo {
  0%,
  100% {
    opacity: 0.98;
    transform: scale(1);
    filter:
      drop-shadow(0 0 18px rgba(255, 255, 255, 0.34))
      drop-shadow(0 0 42px rgba(255, 255, 255, 0.2));
  }

  50% {
    opacity: 1;
    transform: scale(1.015);
    filter:
      drop-shadow(0 0 30px rgba(255, 255, 255, 0.62))
      drop-shadow(0 0 72px rgba(255, 255, 255, 0.32));
  }
}

.home-nav-texture {
  opacity: 1;
  object-position: center 42%;
  filter: blur(1px) brightness(0.68);
  transform: scale(1.006) rotate(var(--rotate, 0deg));
}

.home-nav-footer-wordmark-copy {
  z-index: 1;
  overflow: visible;
}

.home-nav-mark-model {
  overflow: visible;
  opacity: 1;
  transform-style: preserve-3d;
  pointer-events: none;
  --logo-glow-x: 50%;
  --logo-glow-y: 50%;
  --logo-light-x: 50%;
  --logo-light-y: -18%;
  --logo-side-x: 0;
  --logo-side-y: -1;
}

.menu-mark-model {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.menu-mark-model {
  z-index: 8;
  opacity: 0;
  filter: none;
  transition: opacity 220ms linear;
}

.home-nav-mark-model.is-model-ready {
  opacity: 1;
}

.home-nav-mark-model.is-model-ready .menu-mark-model {
  opacity: 1;
}

.home-nav-list {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 400;
  line-height: 38px;
  white-space: nowrap;
  text-decoration: none;
  pointer-events: auto;
  opacity: 0;
  transform: translate3d(0, 62px, 0);
  transition:
    color var(--motion-fade) linear,
    opacity var(--motion-short) linear,
    transform var(--motion-long) var(--motion-ease-menu);
  transition-delay: var(--motion-delay, 180ms);
  will-change: transform, opacity;
}

.home-nav-link > span:first-child {
  display: block;
  width: 100%;
  text-align: right;
}

.home-nav-link.is-submenu-trigger > span:first-child {
  width: calc(100% - 38px);
}

.home-nav-link:hover {
  color: rgba(255, 255, 255, 0.78);
}

.site-menu.is-open .home-nav-link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-menu.is-open.is-nav-submenu-open .home-nav-link {
  transform: translate3d(-164px, 0, 0);
  transition-delay: 0ms;
}

.site-menu.is-open.is-nav-submenu-open .home-nav-link.is-nav-expanded {
  color: #fff;
}

.home-nav-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3 L14 10 L7 17' fill='none' stroke='white' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3 L14 10 L7 17' fill='none' stroke='white' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
  transform: translateY(calc(-50% + 1px));
  transition:
    transform var(--motion-short) var(--motion-ease-out),
    opacity var(--motion-short) linear;
}

.home-nav-arrow::before,
.home-nav-arrow::after {
  content: "";
  display: none;
}

.home-nav-link:hover .home-nav-arrow,
.home-nav-link:focus-visible .home-nav-arrow,
.home-nav-link.is-nav-expanded .home-nav-arrow {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 13 L10 7 L16 13' fill='none' stroke='white' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 13 L10 7 L16 13' fill='none' stroke='white' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: translateY(-50%);
}

.site-menu .menu-ui-stage > .home-nav-submenu {
  z-index: 12;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(28px, 0, 0);
  transition:
    opacity 360ms linear,
    transform 680ms var(--motion-ease-menu);
  transition-delay: 0ms;
}

.site-menu.is-open.is-nav-submenu-open .home-nav-submenu.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0ms;
}

.site-menu .menu-ui-stage > .home-nav-submenu:not(.is-active),
.site-menu .menu-ui-stage > .home-nav-submenu:not(.is-active) * {
  pointer-events: none !important;
}

.home-nav-subitem {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  color: #fff;
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: 300;
  line-height: 36px;
  white-space: nowrap;
  text-decoration: none;
  opacity: 0;
  transform: translate3d(24px, 0, 0);
  transition:
    color var(--motion-fade) linear,
    opacity 420ms linear,
    transform 680ms var(--motion-ease-menu);
  transition-delay: 0ms;
}

.home-nav-scenes-submenu .home-nav-subitem {
  min-height: 36px;
  align-items: center;
  gap: 16px;
}

.home-nav-subitem-icon {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
  opacity: 0.94;
}

.site-menu.is-open.is-nav-submenu-open .home-nav-submenu.is-active .home-nav-subitem {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 40ms;
}

.home-nav-subitem:hover,
.home-nav-subitem:focus-visible {
  color: rgba(255, 255, 255, 0.78);
}

.glow-values-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
  pointer-events: auto;
}

.glow-card {
  position: relative;
  height: 136px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    #111;
  color: #fff;
  transition:
    height var(--motion-long) var(--motion-ease-menu),
    border-color 360ms ease,
    background-color 360ms ease,
    box-shadow var(--motion-short) ease;
  will-change: height;
}

.glow-card::before,
.glow-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.glow-card::before {
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 42%);
  opacity: 0.32;
}

.glow-card::after {
  top: 0;
  height: 1px;
  border-radius: 18px 18px 0 0;
  background: rgba(255, 255, 255, 0.08);
}

.glow-card.is-active {
  height: 456px;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026)),
    #101010;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.035);
}

.glow-card-light {
  position: absolute;
  z-index: 4;
  top: -2px;
  left: 0;
  width: 236px;
  height: 5px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(198, 161, 90, 0.4) 18%, #fff 48%, rgba(133, 199, 255, 0.68) 72%, transparent 100%);
  box-shadow:
    0 0 12px rgba(255, 241, 203, 0.9),
    0 0 28px rgba(77, 163, 255, 0.5);
  opacity: 0;
  transition: opacity 160ms ease;
  will-change: transform, opacity;
  pointer-events: none;
}

.glow-card.is-active .glow-card-light {
  opacity: 1;
}

.glow-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 34px;
  height: 136px;
  padding: 0 44px;
}

.glow-card-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
}

.glow-card-icon svg {
  display: block;
  width: 58px;
  height: 58px;
  overflow: visible;
}

.glow-card-icon path,
.glow-card-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.glow-card h3 {
  margin: 0;
  font-family: var(--font-main);
  font-size: 31px;
  font-weight: 300;
  line-height: 1.22;
  white-space: nowrap;
}

.glow-card p {
  position: absolute;
  z-index: 2;
  left: 44px;
  right: 44px;
  bottom: 72px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.42;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity var(--motion-fade) linear,
    transform var(--motion-editorial) var(--motion-ease-content);
}

.glow-card.is-active p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 130ms;
}

.community-benefits-screen .home-ui-stage {
  overflow: visible;
}

.community-benefits-bg {
  background:
    radial-gradient(circle at 50% 34%, rgba(76, 90, 118, 0.14), transparent 38%),
    #000;
}

.community-benefits-heading {
  margin: 0;
  color: rgba(247, 250, 255, 0.9);
  font-family: var(--font-main);
  font-size: 42px;
  font-weight: 500;
  line-height: 59px;
  text-align: center;
  white-space: nowrap;
}

.community-benefits-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 445px);
  gap: 32px;
  align-items: start;
  pointer-events: auto;
}

.community-benefit-card {
  --benefit-panel-duration: 1500ms;
  --benefit-light-start: 0px;
  --benefit-light-end: 304px;
  --benefit-motion-duration: 2000ms;
  position: relative;
  height: 118px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    rgba(12, 12, 12, 0.76);
  color: #fff;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
  transition:
    height var(--benefit-panel-duration) var(--motion-ease-menu),
    border-color 360ms ease,
    background 360ms ease,
    box-shadow 520ms ease;
  will-change: height;
}

.community-benefit-card[data-sweep-direction="forward"] {
  --benefit-light-start: -178px;
}

.community-benefit-card[data-sweep-direction="reverse"] {
  --benefit-light-start: 445px;
}

.community-benefit-card[data-sweep-direction="entry"] {
  --benefit-light-start: 0px;
}

.community-benefit-card::before,
.community-benefit-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.community-benefit-card::before {
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 44%);
  opacity: 0.2;
}

.community-benefit-card::after {
  z-index: 1;
  top: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.045);
}

.community-benefit-light {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 178px;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 28%, #fff 50%, rgba(255, 255, 255, 0.2) 72%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--benefit-light-end), 0, 0);
  will-change: transform, opacity;
}

.community-benefit-card.is-active .community-benefit-light {
  opacity: 1;
  animation: communityBenefitLightAcrossCard var(--benefit-motion-duration) cubic-bezier(0.42, 0, 0.16, 1) both;
}

.community-benefit-card.is-hover-active {
  --benefit-light-start: -178px;
}

.community-benefit-card.is-hover-active .community-benefit-light {
  opacity: 1;
  animation: communityBenefitLightHoverAcrossCard var(--benefit-motion-duration) cubic-bezier(0.42, 0, 0.16, 1) both;
}

.community-benefit-card.is-exiting .community-benefit-light {
  opacity: 1;
  animation: communityBenefitLightExitForward var(--benefit-motion-duration) cubic-bezier(0.42, 0, 0.16, 1) both;
}

.community-benefit-card.is-exiting[data-exit-direction="reverse"] .community-benefit-light {
  animation-name: communityBenefitLightExitReverse;
}

@keyframes communityBenefitLightAcrossCard {
  0% {
    opacity: 0;
    transform: translate3d(var(--benefit-light-start), 0, 0);
  }

  14% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate3d(var(--benefit-light-end), 0, 0);
  }
}

@keyframes communityBenefitLightHoverAcrossCard {
  0% {
    opacity: 0;
    transform: translate3d(var(--benefit-light-start), 0, 0);
  }

  14% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate3d(var(--benefit-light-end), 0, 0);
  }
}

@keyframes communityBenefitLightExitForward {
  0% {
    opacity: 1;
    transform: translate3d(var(--benefit-light-end), 0, 0);
  }

  86% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(445px, 0, 0);
  }
}

@keyframes communityBenefitLightExitReverse {
  0% {
    opacity: 1;
    transform: translate3d(var(--benefit-light-end), 0, 0);
  }

  86% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(-178px, 0, 0);
  }
}

.community-benefit-card.is-active {
  height: 390px;
  border-color: rgba(255, 255, 255, 0.095);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.036), rgba(255, 255, 255, 0.014)),
    rgba(20, 20, 20, 0.84);
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  animation: community-benefit-halo 3s ease-in-out infinite;
}

.community-benefit-card.is-hover-active {
  height: 390px;
  border-color: rgba(255, 255, 255, 0.095);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.036), rgba(255, 255, 255, 0.014)),
    rgba(20, 20, 20, 0.84);
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  animation: community-benefit-halo 3s ease-in-out infinite;
}

.community-benefits-grid.is-hovering .community-benefit-card.is-active:not(.is-hover-active) {
  height: 118px;
  border-color: rgba(255, 255, 255, 0.055);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    rgba(12, 12, 12, 0.76);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
  animation: none;
}

.community-benefits-grid.is-hovering .community-benefit-card.is-active:not(.is-hover-active) .community-benefit-light {
  opacity: 0;
  animation: none;
}

.community-benefit-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 34px;
  height: 118px;
  padding: 0 36px;
}

.community-benefit-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
}

.community-benefit-icon img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  overflow: visible;
}

.community-benefit-card h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-main);
  font-size: 27px;
  font-weight: 500;
  line-height: 38px;
  white-space: nowrap;
}

.community-benefit-card p {
  position: absolute;
  z-index: 2;
  top: 178px;
  left: 36px;
  right: 42px;
  margin: 0;
  color: #fff;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.88;
  opacity: 0;
  transform: translate3d(0, -24px, 0);
  transition:
    opacity 420ms linear,
    transform var(--benefit-motion-duration) var(--motion-ease-content);
}

.community-benefit-card.is-active p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 240ms;
}

.community-benefit-card.is-hover-active p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 240ms;
}

.community-benefits-grid.is-hovering .community-benefit-card.is-active:not(.is-hover-active) p {
  opacity: 0;
  transform: translate3d(0, -24px, 0);
  transition-delay: 0ms;
}

@keyframes community-benefit-halo {
  0%,
  100% {
    box-shadow:
      0 28px 78px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(255, 255, 255, 0.022),
      0 0 10px rgba(255, 255, 255, 0.08),
      0 0 24px rgba(255, 255, 255, 0.04);
  }

  50% {
    box-shadow:
      0 30px 82px rgba(0, 0, 0, 0.36),
      0 0 0 1px rgba(255, 255, 255, 0.028),
      0 0 16px rgba(255, 255, 255, 0.12),
      0 0 36px rgba(255, 255, 255, 0.06);
  }
}

.community-welfare-bg {
  background: #000;
}

.community-welfare-heading {
  margin: 0;
  color: #fff;
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: var(--weight-title);
  line-height: 59px;
  text-align: center;
  white-space: nowrap;
}

.community-welfare-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: #020202;
  color: #fff;
  pointer-events: auto;
  --welfare-card-scale: 1;
}

.community-welfare-card::before,
.community-welfare-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.community-welfare-card::before {
  z-index: 2;
  background: linear-gradient(90deg, rgba(8, 80, 168, 0.62) 0%, rgba(8, 80, 168, 0.16) 100%);
  opacity: 0;
  transition: opacity 520ms ease;
}

.community-welfare-card::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 42%);
}

.community-welfare-card-content .community-welfare-card-bg {
  opacity: 1;
  object-position: center center;
}

.community-welfare-card-content::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.56) 48%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.04) 45%, rgba(0, 0, 0, 0.34) 100%);
}

.community-welfare-card:is(:hover, :focus-within)::before {
  opacity: 1;
}

.community-welfare-card-bg {
  position: absolute;
  z-index: 0;
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.community-welfare-card-mark {
  position: absolute;
  z-index: 2;
  top: calc(8px * var(--welfare-card-scale));
  right: calc(12px * var(--welfare-card-scale));
  width: calc(238px * var(--welfare-card-scale));
  height: calc(256px * var(--welfare-card-scale));
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: screen;
  -webkit-mask: url("./assets/icons/product-diamond.svg") center / contain no-repeat;
  mask: url("./assets/icons/product-diamond.svg") center / contain no-repeat;
  transition:
    background 420ms ease,
    opacity 420ms ease;
}

.community-welfare-card-coupon:is(:hover, :focus-within) .community-welfare-card-mark {
  background: rgba(255, 255, 255, 0.28);
}

.community-welfare-icon {
  position: absolute;
  z-index: 3;
  top: calc(32px * var(--welfare-card-scale));
  left: calc(32px * var(--welfare-card-scale));
  width: calc(68px * var(--welfare-card-scale));
  height: calc(68px * var(--welfare-card-scale));
  object-fit: contain;
}

.community-welfare-card h3 {
  position: absolute;
  z-index: 3;
  top: calc(105px * var(--welfare-card-scale));
  left: calc(32px * var(--welfare-card-scale));
  margin: 0;
  color: #fff;
  font-family: var(--font-title);
  font-size: calc(28px * var(--welfare-card-scale));
  font-weight: var(--weight-title);
  line-height: calc(40px * var(--welfare-card-scale));
  white-space: nowrap;
}

.community-welfare-card p {
  position: absolute;
  z-index: 3;
  top: calc(162px * var(--welfare-card-scale));
  left: calc(32px * var(--welfare-card-scale));
  width: calc(614px * var(--welfare-card-scale));
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: calc(16px * var(--welfare-card-scale));
  font-weight: var(--weight-body);
  line-height: calc(23px * var(--welfare-card-scale));
}

.home-screen-community .home-bg-fill {
  background: #000;
}

.home-screen-community .home-bg-stage::before,
.home-screen-community .home-bg-stage::after {
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 1280ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1280ms cubic-bezier(0.22, 1, 0.36, 1);
  mix-blend-mode: screen;
  content: "";
}

.home-screen-community .home-bg-stage::before {
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 252, 238, 0.62) 0%, rgba(255, 230, 178, 0.34) 7%, rgba(188, 145, 83, 0.2) 23%, rgba(36, 99, 150, 0.1) 45%, rgba(0, 0, 0, 0) 78%),
    radial-gradient(ellipse 126% 92% at 50% 6%, rgba(255, 214, 145, 0.17) 0%, rgba(75, 143, 209, 0.12) 40%, rgba(0, 24, 58, 0.06) 64%, rgba(0, 0, 0, 0) 90%),
    conic-gradient(from 205deg at 50% 6%, rgba(255, 241, 213, 0) 0deg, rgba(255, 241, 213, 0.1) 22deg, rgba(255, 241, 213, 0) 52deg, rgba(255, 241, 213, 0) 134deg, rgba(255, 216, 151, 0.09) 164deg, rgba(255, 216, 151, 0) 204deg, rgba(255, 241, 213, 0) 316deg, rgba(255, 241, 213, 0.1) 342deg, rgba(255, 241, 213, 0) 360deg),
    linear-gradient(180deg, rgba(255, 241, 213, 0.12) 0%, rgba(66, 133, 202, 0.07) 32%, rgba(0, 0, 0, 0) 78%);
  filter: blur(0.2px);
}

.home-screen-community .home-bg-stage::after {
  background:
    radial-gradient(circle at 50% 6%, rgba(226, 241, 255, 0.54) 0%, rgba(137, 187, 255, 0.3) 8%, rgba(52, 112, 213, 0.18) 25%, rgba(11, 54, 128, 0.1) 47%, rgba(0, 0, 0, 0) 80%),
    radial-gradient(ellipse 128% 94% at 50% 6%, rgba(95, 157, 255, 0.2) 0%, rgba(31, 87, 190, 0.13) 42%, rgba(2, 16, 52, 0.08) 65%, rgba(0, 0, 0, 0) 90%),
    conic-gradient(from 205deg at 50% 6%, rgba(177, 213, 255, 0) 0deg, rgba(177, 213, 255, 0.1) 24deg, rgba(177, 213, 255, 0) 56deg, rgba(177, 213, 255, 0) 132deg, rgba(111, 170, 255, 0.09) 164deg, rgba(111, 170, 255, 0) 204deg, rgba(177, 213, 255, 0) 318deg, rgba(177, 213, 255, 0.1) 344deg, rgba(177, 213, 255, 0) 360deg),
    linear-gradient(180deg, rgba(145, 190, 255, 0.13) 0%, rgba(23, 78, 174, 0.08) 35%, rgba(0, 0, 0, 0) 78%);
  filter: blur(0.4px);
}

.home-screen-community[data-community-active="day"] .home-bg-stage::before {
  opacity: 0.78;
}

.home-screen-community[data-community-active="night"] .home-bg-stage::after {
  opacity: 0.78;
}

.home-screen-community .home-community-bg-base {
  opacity: 0.72;
  filter: brightness(0.72) contrast(1.08);
}

.home-community-benefits-grid {
  pointer-events: auto;
}

.home-community-benefits-grid .community-benefit-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.046), rgba(255, 255, 255, 0.018)),
    rgba(30, 30, 30, 0.88);
}

.community-stories-screen .home-bg-fill {
  background: #000;
}

.community-stories-bg {
  z-index: 1;
  opacity: 0;
  filter: none;
  transition:
    opacity 960ms var(--motion-ease-content),
    filter 960ms var(--motion-ease-content);
  will-change: opacity, filter;
}

.community-stories-bg-day {
  filter: none;
}

.community-stories-bg-night {
  filter: none;
}

.community-stories-screen[data-community-stories-theme="day"] .community-stories-bg-day,
.community-stories-screen[data-community-stories-theme="night"] .community-stories-bg-night {
  opacity: 1;
}

.community-stories-bg-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  pointer-events: none;
}

.community-stories-screen .home-ui-stage > .community-stories-copy,
.stack-screen.is-active.sketch-screen .home-ui-stage > .community-stories-copy,
.stack-screen.is-past.sketch-screen .home-ui-stage > .community-stories-copy {
  color: #fff;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: opacity 360ms ease;
  will-change: opacity;
}

.stack-screen.is-active.community-stories-screen.is-story-hovered .home-ui-stage > .community-stories-copy,
.community-stories-screen.is-story-hovered .home-ui-stage > .community-stories-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.community-stories-screen .home-ui-stage > .community-stories-copy.is-switching {
  opacity: 0;
}

.community-stories-copy h2,
.community-stories-copy p {
  margin: 0;
  color: rgba(247, 250, 255, 0.92);
}

.community-stories-copy h2 {
  font-family: var(--font-title);
  font-size: 56px;
  font-weight: var(--weight-title);
  line-height: 1.12;
}

.community-stories-copy p {
  margin-top: 28px;
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: var(--weight-title);
  line-height: 1.25;
  -webkit-text-stroke: 2px rgba(128, 132, 138, 0.42);
  paint-order: stroke fill;
}

.community-stories-rail-viewport {
  overflow: hidden;
  pointer-events: auto;
}

.community-stories-rail {
  display: flex;
  width: max-content;
  height: 330px;
  gap: 24px;
  padding: 0 260px;
  transform: translate3d(calc(0px - var(--community-stories-rail-x, 0px)), 0, 0);
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.community-story-card {
  position: relative;
  flex: 0 0 540px;
  height: 330px;
  overflow: hidden;
  padding: 42px 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(3, 8, 14, 0.46);
  color: #fff;
  cursor: pointer;
  opacity: 0.66;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
  transition:
    border-color 260ms ease,
    background 360ms ease,
    opacity 320ms ease,
    box-shadow 360ms ease;
}

.community-story-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 12%, rgba(255, 255, 255, 0.055), transparent 34%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.04), transparent 42%);
  opacity: 0;
  transition: opacity 360ms ease;
  content: "";
  pointer-events: none;
}

.community-story-card.is-active {
  opacity: 0.82;
  border-color: rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.028)),
    rgba(4, 10, 18, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 18px 60px rgba(0, 0, 0, 0.18);
}

.community-story-card.is-active::before {
  opacity: 1;
}

.community-story-label,
.community-story-card h3,
.community-story-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  opacity: 0.62;
  transition: opacity 300ms ease;
}

.community-story-label {
  display: flex;
  height: 42px;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: var(--weight-title);
  line-height: 42px;
}

.community-story-label::before {
  content: "";
  display: none;
}

.community-story-icon {
  display: block;
  flex: 0 0 auto;
  width: 32px;
  height: 42px;
  object-fit: contain;
  object-position: center;
  clip-path: inset(14% 0 14% 0);
  filter: drop-shadow(0 10px 24px rgba(255, 255, 255, 0.14));
  opacity: 0.96;
}

.community-story-label-text {
  display: flex;
  align-items: center;
  height: 42px;
  line-height: 42px;
  white-space: nowrap;
}

.community-story-card h3 {
  margin-top: 22px;
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: var(--weight-title);
  line-height: 1.24;
  -webkit-text-stroke: 2px rgba(128, 132, 138, 0.42);
  paint-order: stroke fill;
}

.community-story-card.is-active .community-story-label,
.community-story-card.is-active h3,
.community-story-card.is-active .community-story-quote {
  opacity: 0.98;
}

.community-story-quote {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 38px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--weight-body);
  line-height: 1.65;
}

.community-story-card-filler {
  pointer-events: none;
  opacity: 0.42;
  border-color: rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(3, 8, 14, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.community-story-card-filler::before {
  display: none;
}

.community-story-card-filler .community-story-label,
.community-story-card-filler h3,
.community-story-card-filler .community-story-quote {
  opacity: 0.92;
}

.community-story-card-filler .community-story-label {
  transform: none;
}

.community-story-card-filler .community-story-label-filler {
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.82);
}

.community-story-card-filler .community-story-label-text {
  transform: none;
}

.community-story-card-filler h3 {
  max-width: 320px;
  font-size: 32px;
  line-height: 1.3;
  -webkit-text-stroke: 2px rgba(128, 132, 138, 0.3);
}

.community-story-card-filler .community-story-quote {
  color: rgba(255, 255, 255, 0.74);
  max-width: 320px;
}

.support-screen {
  background: transparent;
}

.immersive-page[data-route="support"] .screen-stack,
.immersive-page[data-route="contact"] .screen-stack,
.immersive-page[data-route="purchase"] .screen-stack {
  background: #000;
}

.immersive-page[data-route="support"] .screen-stack::before,
.immersive-page[data-route="support"] .screen-stack::after,
.immersive-page[data-route="contact"] .screen-stack::before,
.immersive-page[data-route="contact"] .screen-stack::after,
.immersive-page[data-route="purchase"] .screen-stack::before,
.immersive-page[data-route="purchase"] .screen-stack::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.immersive-page[data-route="support"] .screen-stack::before,
.immersive-page[data-route="contact"] .screen-stack::before,
.immersive-page[data-route="purchase"] .screen-stack::before {
  background: url("./assets/backgrounds/prepared-4k-20260603/support-shared-4k-20260603.webp?v=bg4k-20260603") center / cover no-repeat;
  filter: brightness(0.76) saturate(0.94) contrast(1.04);
  opacity: 0;
}

.immersive-page.is-shared-route-bg-suppressed .screen-stack::before {
  opacity: 0;
}

.immersive-page[data-route="contact"] .screen-stack::before,
.immersive-page[data-route="purchase"] .screen-stack::before {
  filter: none;
  opacity: 0;
}

.immersive-page[data-route="support"] .screen-stack::after,
.immersive-page[data-route="contact"] .screen-stack::after,
.immersive-page[data-route="purchase"] .screen-stack::after {
  background: transparent;
}

.immersive-page[data-route="support"] .support-screen .home-bg-stage,
.immersive-page[data-route="contact"] .support-screen .home-bg-stage,
.immersive-page[data-route="purchase"] .purchase-screen .home-bg-stage,
.immersive-page[data-route="purchase"] .offline-store-screen .home-bg-stage,
.immersive-page[data-route="purchase"] .shared-footer-screen .home-bg-stage,
.immersive-page[data-route="support"] .shared-footer-screen .home-bg-stage,
.immersive-page[data-route="contact"] .shared-footer-screen .home-bg-stage {
  opacity: 1;
}

.immersive-page.is-shared-route-bg-suppressed .stack-screen.is-system-reveal-entering .home-bg-stage,
.immersive-page.is-shared-route-bg-suppressed .stack-screen.is-system-reveal-exiting .home-bg-stage,
.immersive-page.is-shared-route-bg-suppressed .stack-screen.is-system-reveal-covered .home-bg-stage {
  opacity: 1 !important;
}

.immersive-page[data-route="purchase"] .stack-screen {
  background: transparent;
}

.immersive-page[data-route="purchase"] .shared-footer-screen {
  background: #000;
}

.support-bg {
  background:
    radial-gradient(circle at 78% 24%, rgba(54, 104, 176, 0.2), transparent 36%),
    radial-gradient(circle at 18% 76%, rgba(10, 56, 128, 0.18), transparent 34%),
    linear-gradient(180deg, #020305 0%, #000 64%, #020304 100%);
}

.support-bg-image {
  z-index: 1;
  filter: brightness(0.98) saturate(1.02) contrast(1.03);
}

.support-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 74%, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.1) 48%, rgba(0, 0, 0, 0.26) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.26) 100%);
  pointer-events: none;
}

.support-detail-bg-image {
  filter: brightness(0.76) saturate(0.94) contrast(1.04);
}

.support-detail-bg-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.42) 100%),
    radial-gradient(circle at 72% 38%, rgba(10, 54, 126, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.36) 100%);
}

.support-content-bg {
  background:
    radial-gradient(circle at 50% 0%, rgba(38, 73, 122, 0.22), transparent 34%),
    #000;
}

.support-bg-mark {
  position: absolute;
  top: 110px;
  right: 120px;
  width: 640px;
  height: 640px;
  object-fit: contain;
  opacity: 0.055;
  filter: drop-shadow(0 0 80px rgba(120, 180, 255, 0.16));
  transform: rotate(8deg);
}

.support-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: var(--weight-body);
  letter-spacing: 0.18em;
  line-height: 22px;
  white-space: nowrap;
}

.support-hero-title,
.support-section-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-title);
  font-weight: var(--weight-title);
  letter-spacing: 0;
  white-space: nowrap;
}

.support-hero-title {
  font-size: 60px;
  line-height: 79px;
  text-align: center;
}

.support-section-title {
  font-size: 46px;
  line-height: 62px;
}

.support-hero-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  font-weight: var(--weight-body);
  line-height: 21px;
  text-align: center;
  white-space: nowrap;
}

.support-section-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  font-weight: var(--weight-body);
  line-height: 1.72;
  white-space: normal;
}

.support-topic-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  pointer-events: auto;
}

.support-topic-card {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(9, 14, 22, 0.58);
  color: #fff;
  transition:
    border-color 260ms ease,
    background 320ms ease,
    transform 420ms var(--motion-ease-content);
  text-decoration: none;
}

.support-topic-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140, 190, 255, 0.56), transparent);
  opacity: 0.42;
  content: "";
}

.support-topic-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.024)),
    rgba(12, 22, 38, 0.66);
  transform: translate3d(0, -6px, 0);
}

.support-topic-card span,
.support-topic-card strong,
.support-topic-card em {
  display: block;
}

.support-topic-card span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 18px;
}

.support-topic-card strong {
  margin-top: 18px;
  color: #fff;
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: var(--weight-title);
  line-height: 31px;
}

.support-topic-card em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
}

.support-detail-card {
  overflow: hidden;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(6, 9, 14, 0.72);
  color: #fff;
  pointer-events: auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.support-detail-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  opacity: 0.6;
  content: "";
}

.support-detail-card.is-large {
  background:
    linear-gradient(135deg, rgba(8, 44, 98, 0.18), transparent 48%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(5, 7, 12, 0.74);
}

.support-card-eyebrow {
  display: block;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  letter-spacing: 0.16em;
  line-height: 18px;
}

.support-detail-card h3 {
  margin: 12px 0 0;
  color: #fff;
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: var(--weight-title);
  line-height: 36px;
}

.support-detail-card ul,
.support-faq-list {
  margin: 18px 0 0;
  padding: 0;
}

.support-detail-card li {
  margin: 0 0 9px;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.52;
}

.support-detail-card li::marker {
  color: rgba(133, 185, 255, 0.74);
}

.support-faq-list div {
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.support-faq-list div + div {
  padding-top: 14px;
}

.support-faq-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.support-faq-list dt,
.support-faq-list dd {
  margin: 0;
}

.support-faq-list dt {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: var(--weight-title);
  line-height: 25px;
}

.support-faq-list dd {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.58;
}

.support-detail-bg {
  background:
    radial-gradient(circle at 76% 18%, rgba(66, 116, 180, 0.22), transparent 31%),
    radial-gradient(circle at 16% 78%, rgba(21, 74, 136, 0.18), transparent 30%),
    linear-gradient(180deg, #030303 0%, #000 62%, #020202 100%);
}

.support-detail-bg-mark {
  top: 126px;
  right: 118px;
  width: 560px;
  height: 560px;
  opacity: 0.038;
  transform: rotate(8deg);
}

.support-detail-title {
  font-size: 44px;
  line-height: 58px;
}

.support-detail-copy {
  color: rgba(255, 255, 255, 0.68);
  font-size: 20px;
  line-height: 1.72;
}

.support-detail-rule {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.08));
}

.support-detail-nav {
  display: grid;
  gap: 12px;
  pointer-events: auto;
}

.support-detail-nav a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 36px;
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition:
    color 260ms ease,
    transform 360ms var(--motion-ease-content);
}

.support-detail-nav a:hover,
.support-detail-nav a:focus-visible,
.support-detail-nav a.is-active {
  color: #fff;
  transform: translate3d(8px, 0, 0);
}

.support-detail-nav span {
  font-size: 13px;
  letter-spacing: 0.12em;
}

.support-detail-nav strong {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: var(--weight-title);
  line-height: 28px;
}

.support-page-panel {
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: auto;
}

.support-page-panel::before {
  display: none;
}

.support-page-panel-agreement {
  overflow-x: hidden;
  overflow-y: scroll;
  padding-right: 22px;
  scrollbar-color: rgba(222, 239, 255, 0.46) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.support-page-panel-agreement::-webkit-scrollbar {
  width: 4px;
}

.support-page-panel-agreement::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.support-page-panel-agreement::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(222, 239, 255, 0.5);
}

.support-detail-screen-shipping .support-detail-copy {
  max-width: 560px;
}

.support-page-panel-shipping {
  overflow: visible;
}

.support-shipping-document {
  display: grid;
  gap: 24px;
  max-width: 1160px;
  padding-top: 2px;
  color: #fff;
}

.support-shipping-section h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: var(--weight-title);
  line-height: 28px;
}

.support-shipping-section p {
  max-width: 1160px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.78;
  text-align: justify;
}

.support-page-index {
  position: absolute;
  top: 36px;
  right: 50px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
}

.support-page-panel-contact {
  overflow: visible;
}

.support-contact-redesign .home-ui-stage {
  overflow: visible;
}

.support-contact-layout {
  transform-origin: 0 0;
  --contact-layout-scale: 1;
  --entry-transform: translate3d(0, 58px, 0) scale(var(--contact-layout-scale));
  --entry-active-transform: scale(var(--contact-layout-scale));
  --entry-past-transform: translate3d(0, -32px, 0) scale(var(--contact-layout-scale));
}

.support-contact-bg {
  background: #000;
}

.support-contact-bg-image {
  filter: none;
  opacity: 0;
}

.support-contact-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  pointer-events: none;
}

.support-contact-card,
.support-contact-form {
  color: #fff;
  pointer-events: auto;
}

.support-contact-card {
  box-sizing: border-box;
  padding: 54px 38px 36px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: none;
  backdrop-filter: none;
}

.support-contact-card-head {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  align-items: start;
}

.support-contact-card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: rgba(255, 255, 255, 0.9);
}

.support-contact-card-icon svg,
.support-contact-info-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.support-contact-card-head h2,
.support-contact-card-head p,
.support-contact-info-item h3,
.support-contact-info-item p,
.support-contact-hours h3,
.support-contact-hours p,
.support-contact-social h3,
.support-contact-form-head h2,
.support-contact-form-head p {
  margin: 0;
}

.support-contact-card-head h2 {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: var(--weight-title);
  line-height: 38px;
}

.support-contact-card-head p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 24px;
}

.support-contact-info-list {
  display: grid;
  gap: 38px;
  margin-top: 56px;
}

.support-contact-info-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: center;
}

.support-contact-info-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.support-contact-info-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.15;
}

.support-contact-info-item h3,
.support-contact-hours h3,
.support-contact-social h3 {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: var(--weight-title);
  line-height: 31px;
}

.support-contact-info-item p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  line-height: 26px;
}

.support-contact-divider {
  display: block;
  height: 1px;
  margin: 36px 0;
  background: rgba(255, 255, 255, 0.14);
}

.support-contact-hours p {
  display: flex;
  gap: 56px;
  align-items: baseline;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 26px;
}

.support-contact-hours strong {
  color: #fff;
  font-weight: var(--weight-title);
}

.support-contact-social {
  margin-top: 34px;
  position: relative;
}

.support-contact-social div {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.support-contact-social a,
.support-contact-social button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  appearance: none;
  transition:
    border-color 220ms ease,
    background 260ms ease;
}

.support-contact-social a:hover,
.support-contact-social a:focus-visible,
.support-contact-social button:hover,
.support-contact-social button:focus-visible,
.support-contact-social button.is-active {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
}

.support-contact-social img,
.support-contact-social svg {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.92;
}

.support-contact-social svg {
  color: #fff;
  fill: currentColor;
  stroke: none;
}

.support-social-text-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  line-height: 1;
  font-weight: var(--weight-title);
  letter-spacing: 0;
}

.support-social-qr-popover {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 136px;
  height: 136px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(3, 14, 28, 0.9);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 8px, 0) scale(0.96);
  transition:
    opacity 220ms linear,
    transform 320ms var(--motion-ease-content);
}

.support-social-qr-popover[hidden] {
  display: none;
}

.support-social-qr-popover.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.support-social-qr-frame {
  display: grid;
  width: 122px;
  height: 122px;
  place-items: center;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 20px rgba(0, 38, 84, 0.16);
}

.support-social-qr-frame img {
  display: block;
  width: 108px;
  height: 108px;
}

.support-contact-form {
  box-sizing: border-box;
  padding: 2px 0 0;
}

.support-contact-form-head h2 {
  font-family: var(--font-title);
  font-size: 38px;
  font-weight: var(--weight-title);
  line-height: 53px;
}

.support-contact-form-head p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 26px;
}

.support-contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 500px);
  column-gap: 42px;
  row-gap: 32px;
  margin-top: 52px;
}

.support-contact-field {
  display: block;
  min-width: 0;
}

.support-contact-field-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: var(--weight-title);
  line-height: 26px;
}

.support-contact-field-label em {
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
  letter-spacing: 0.06em;
}

.support-contact-field-label strong {
  color: #d31717;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 600;
}

.support-contact-field input,
.support-contact-field select,
.support-contact-field textarea {
  box-sizing: border-box;
  width: 100%;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: var(--weight-body);
  outline: 0;
  transition:
    border-color 220ms ease,
    background 220ms ease;
}

.support-contact-field input,
.support-contact-field select {
  height: 66px;
  padding: 0 26px;
}

.support-contact-field textarea {
  height: 184px;
  padding: 22px 26px;
  resize: none;
}

.support-contact-field input::placeholder,
.support-contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.support-contact-field select {
  appearance: none;
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='rgba(255,255,255,.58)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: calc(100% - 28px) 50%;
  background-repeat: no-repeat;
  background-size: 14px 8px;
}

.support-contact-field input:focus,
.support-contact-field select:focus,
.support-contact-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.46);
  background-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.support-contact-message-field {
  grid-row: span 2;
}

.support-contact-submit {
  position: absolute;
  left: 0;
  bottom: 107px;
  display: inline-grid;
  place-items: center;
  overflow: visible;
  width: 200px;
  height: 48px;
  margin-top: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  color: #fff;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  cursor: pointer;
  outline: 0;
  padding: 0;
  transition:
    color var(--motion-fade) linear,
    transform var(--motion-quick) var(--motion-ease-content);
}

.support-contact-submit:hover,
.support-contact-submit:focus-visible {
  transform: translateY(-1px);
}

.support-contact-submit:hover .saza-pill-text-static,
.support-contact-submit:focus-visible .saza-pill-text-static {
  opacity: 0;
  transform: translateY(-105%);
}

.support-contact-submit:hover .saza-pill-text-hover,
.support-contact-submit:focus-visible .saza-pill-text-hover {
  opacity: 1;
  transform: translateY(-100%);
}

.support-contact-status {
  position: absolute;
  left: 224px;
  bottom: 118px;
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 22px;
}

.purchase-screen {
  background: transparent;
}

.purchase-shared-bg {
  background: #000;
}

.purchase-shared-bg-image {
  z-index: 1;
  filter: none;
  opacity: 0.6;
}

.purchase-shared-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  pointer-events: none;
}

.purchase-channel-heading {
  color: #fff;
}

.purchase-channel-heading span {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.12em;
}

.purchase-channel-heading h1 {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-title);
  font-size: 58px;
  font-weight: var(--weight-title);
  line-height: 1.12;
}

.purchase-channel-rule {
  display: block;
  width: 232px;
  height: 4px;
  margin: 24px 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.08));
}

.purchase-channel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  pointer-events: auto;
}

.purchase-channel-item {
  --purchase-action-scale: 1.09;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.purchase-channel-card {
  position: relative;
  width: 100%;
  min-height: 388px;
  box-sizing: border-box;
  overflow: hidden;
  padding: 34px 30px 144px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(6, 9, 14, 0.76);
  color: #fff;
  cursor: pointer;
  opacity: 0.62;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 22px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  outline: 0;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    opacity 220ms ease,
    transform 260ms var(--motion-ease-content),
    box-shadow 260ms var(--motion-ease-content);
}

.purchase-channel-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.05), transparent 48%);
  opacity: 0.82;
  content: "";
  pointer-events: none;
}

.purchase-channel-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 164px;
  background:
    linear-gradient(180deg, rgba(5, 12, 24, 0), rgba(4, 10, 20, 0.78) 56%, rgba(4, 10, 20, 0.92)),
    radial-gradient(circle at 84% 72%, rgba(255, 255, 255, 0.1), transparent 42%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.purchase-channel-card.is-active::after {
  opacity: 1;
}

.purchase-channel-card.is-active {
  border-color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(135deg, rgba(0, 82, 160, 0.34), rgba(255, 255, 255, 0.025)),
    rgba(5, 12, 24, 0.92);
  opacity: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 24px 62px rgba(0, 0, 0, 0.32);
  animation: purchase-channel-card-halo 3s ease-in-out infinite;
  transform: translate3d(4px, 0, 0);
}

.purchase-channel-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.92);
}

.purchase-channel-icon,
.purchase-channel-eyebrow,
.purchase-channel-card h3,
.purchase-channel-card p,
.purchase-channel-meta,
.purchase-channel-buy-panel {
  position: relative;
  z-index: 1;
}

.purchase-channel-icon {
  display: flex;
  width: 64px;
  height: 52px;
  align-items: center;
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.82);
  transition:
    width 260ms var(--motion-ease-content),
    transform 260ms var(--motion-ease-content);
}

.purchase-channel-icon img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  opacity: 0.96;
  transition:
    width 260ms var(--motion-ease-content),
    height 260ms var(--motion-ease-content);
}

.purchase-channel-buy-panel {
  position: absolute;
  right: 16px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  gap: 10px;
  align-items: end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.purchase-channel-buy-panel-noqr {
  grid-template-columns: minmax(0, 1fr);
}

.purchase-channel-card.is-active .purchase-channel-buy-panel {
  opacity: 1;
  pointer-events: auto;
}

.purchase-channel-action {
  display: grid;
  width: 100%;
  height: 32px;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 4px;
  color: #151515;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  opacity: 1;
  pointer-events: auto;
  text-decoration: none;
}

.purchase-channel-action-main,
.purchase-channel-action-plus {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0) 0 56%, rgba(255, 255, 255, 0.42) 57%, rgba(255, 255, 255, 0) 69%),
    rgba(255, 255, 255, 0.96);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.purchase-channel-action-main {
  gap: 5px;
  white-space: nowrap;
}

.purchase-channel-action-arrow {
  display: block;
  width: 14px;
  height: 4px;
  overflow: visible;
}

.purchase-channel-action-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.purchase-channel-action-plus {
  position: relative;
}

.purchase-channel-action-plus::before,
.purchase-channel-action-plus::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.purchase-channel-action-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.purchase-channel-qr {
  display: grid;
  width: 78px;
  height: 78px;
  box-sizing: border-box;
  margin: 0;
  overflow: hidden;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.purchase-channel-card.is-active .purchase-channel-qr {
  opacity: 1;
}

.purchase-channel-qr img {
  display: block;
  width: 100%;
  box-sizing: border-box;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 5px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  filter: grayscale(1) contrast(1.16);
}

@keyframes purchase-channel-card-halo {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.13),
      0 24px 62px rgba(0, 0, 0, 0.32),
      0 0 10px rgba(255, 255, 255, 0.08),
      0 0 22px rgba(255, 255, 255, 0.04);
  }

  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.15),
      0 25px 66px rgba(0, 0, 0, 0.34),
      0 0 14px rgba(255, 255, 255, 0.12),
      0 0 32px rgba(255, 255, 255, 0.06);
  }
}

.purchase-channel-icon-official img {
  width: 24px;
  height: 40px;
}

.purchase-channel-icon-lab img {
  width: 24px;
  height: 40px;
}

.purchase-channel-icon-tmall img {
  width: 58px;
  height: 32px;
}

.purchase-channel-icon-jd img {
  width: 48px;
  height: 36px;
}

.purchase-channel-icon-douyinMall img {
  width: 40px;
  height: 40px;
}

.purchase-channel-icon-miniapp img {
  width: 44px;
  height: 36px;
}

.purchase-channel-eyebrow {
  display: block;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--font-main);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.12em;
}

.purchase-channel-card h3 {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: var(--weight-title);
  line-height: 1.24;
}

.purchase-channel-card p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: var(--weight-body);
  line-height: 1.72;
}

.purchase-channel-meta {
  position: absolute;
  right: 30px;
  bottom: 120px;
  left: 30px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-main);
  font-size: 12px;
  line-height: 18px;
}

.support-page-panel-faq {
  --support-faq-card-y: 0px;
  overflow: visible;
}

.support-detail-screen-faq .support-detail-title {
  font-size: 44px;
  line-height: 58px;
}

.support-faq-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  margin: 0;
  padding: 0;
}

.support-faq-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  column-gap: 0;
  align-items: center;
  min-height: 64px;
  overflow: hidden;
  padding: 0 86px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.82);
  color: #fff;
  cursor: pointer;
  opacity: 0.46;
  outline: 0;
  box-shadow: none;
  transition:
    opacity 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.support-faq-card::after {
  position: absolute;
  top: 50%;
  right: 22px;
  z-index: 1;
  display: block;
  width: 40px;
  height: calc(100% - 8px);
  min-height: 50px;
  max-height: 62px;
  background: url("./assets/icons/product-diamond.svg") center / contain no-repeat;
  content: "";
  opacity: 0.22;
  pointer-events: none;
  transform: translate3d(0, -50%, 0);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.support-faq-card:hover,
.support-faq-card:focus,
.support-faq-card:focus-visible,
.support-faq-card.is-selected {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(37, 37, 37, 0.94);
  opacity: 1;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.support-faq-card:hover::after,
.support-faq-card:focus::after,
.support-faq-card:focus-visible::after,
.support-faq-card.is-selected::after {
  opacity: 0.34;
  transform: translate3d(-6px, -50%, 0);
}

.support-faq-card-index,
.support-faq-card-copy,
.support-faq-card-toggle {
  position: relative;
  z-index: 2;
}

.support-faq-card-index {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: var(--weight-body);
  letter-spacing: 0.08em;
  line-height: 1;
}

.support-faq-card-copy h3,
.support-faq-card-copy p {
  margin: 0;
}

.support-faq-card-copy h3 {
  color: #fff;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: var(--weight-title);
  line-height: 25px;
}

.support-faq-card-copy p {
  max-height: none;
  margin-top: 3px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12.5px;
  line-height: 1.42;
  opacity: 1;
  transform: none;
  transition: none;
}

.support-faq-card-toggle {
  display: none;
}

.support-text-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 126px;
  row-gap: 64px;
  padding: 42px 0 0;
}

.support-text-item {
  position: relative;
  min-height: 126px;
  color: #fff;
}

.support-text-item span {
  display: block;
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--font-main);
  font-size: 13px;
  letter-spacing: 0.14em;
  line-height: 18px;
}

.support-text-item h3 {
  margin: 17px 0 0;
  color: #fff;
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: var(--weight-title);
  line-height: 38px;
}

.support-text-item p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.64;
}

.support-page-panel-agreement {
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-mask-image: none;
  mask-image: none;
}

.support-detail-screen-agreement .support-detail-title {
  max-width: 760px;
}

.support-detail-screen-agreement .support-detail-copy {
  display: none;
}

.support-detail-screen-agreement .support-detail-rule {
  box-shadow: 0 0 18px rgba(190, 222, 255, 0.38);
}

.support-detail-screen-agreement .support-agreement-document {
  height: auto;
  min-height: 100%;
  padding-top: 0;
  padding-right: 8px;
  padding-bottom: 48px;
  transform: none;
  transition: none;
  will-change: auto;
}

.support-detail-screen-agreement .support-agreement-section + .support-agreement-section {
  margin-top: 14px;
}

.support-detail-screen-agreement .support-agreement-section h3 {
  font-size: 18px;
  line-height: 25px;
}

.support-detail-screen-agreement .support-agreement-section p {
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.68;
}

.support-detail-screen-agreement .support-agreement-footer {
  padding-top: 16px;
}

.support-agreement-document {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 4px;
  color: #fff;
}

.support-agreement-section + .support-agreement-section {
  margin-top: 14px;
}

.support-agreement-section h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: var(--weight-title);
  line-height: 25px;
}

.support-agreement-section p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.68;
  text-align: justify;
}

.support-agreement-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-top: auto;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.support-agreement-footer p,
.support-agreement-footer time {
  margin: 0;
  font-size: 13px;
  line-height: 21px;
}

.support-agreement-footer time {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.04em;
  text-align: right;
}

@keyframes communityBenefitLightSweep {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

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

@keyframes communityBenefitLightSweepReverse {
  0% {
    transform: translate3d(267px, 0, 0);
    opacity: 1;
  }
 
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.home-scene-card,
.home-wide-card,
.philosophy-photo {
  overflow: hidden;
  border-radius: 20px;
  background: #0b0b0b;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --image-shift-x: 0px;
  --image-shift-y: 0px;
  --image-scale: 1.08;
  --image-light-x: 50%;
  --image-light-y: 50%;
  --image-side-x: 0;
  --image-side-y: -1;
  --image-rim-opacity: 0;
  --surface-entry-y: 24px;
  --surface-entry-scale: 1.035;
  transform-style: preserve-3d;
  pointer-events: auto;
}

.system-reference-bg {
  background: #000;
}

.system-reference-screen,
.system-start-intro-screen {
  background: #000;
}

.stack-screen.sketch-screen-system-start,
.stack-screen.sketch-screen-system-start-intro {
  transition: none;
}

.stack-screen.sketch-screen-system-start .home-ui-stage,
.stack-screen.sketch-screen-system-start-intro .home-ui-stage {
  transition: none;
}

.stack-screen.is-past.sketch-screen-system-start .home-ui-stage,
.stack-screen.is-past.sketch-screen-system-start-intro .home-ui-stage {
  opacity: 1;
}

.system-start-intro-copy {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  pointer-events: none;
}

.stack-screen.sketch-screen-system-start .system-reveal-ui-layer > .system-start-intro-copy,
.stack-screen.sketch-screen-system-start-intro .system-reveal-ui-layer > .system-start-intro-copy,
.stack-screen.is-active.sketch-screen-system-start .system-reveal-ui-layer > .system-start-intro-copy,
.stack-screen.is-active.sketch-screen-system-start-intro .system-reveal-ui-layer > .system-start-intro-copy,
.stack-screen.is-past.sketch-screen-system-start .system-reveal-ui-layer > .system-start-intro-copy,
.stack-screen.is-past.sketch-screen-system-start-intro .system-reveal-ui-layer > .system-start-intro-copy {
  opacity: var(--system-intro-copy-opacity, var(--system-intro-copy-default-opacity, 0.1));
  filter: blur(var(--system-intro-copy-blur, 0px));
  transform: none;
  will-change: opacity, filter;
}

.stack-screen.sketch-screen-system-start-intro .system-reveal-ui-layer > .system-start-intro-copy {
  --system-intro-copy-default-opacity: 1;
}

.system-start-intro-copy h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.325;
  letter-spacing: 0;
}

.system-start-intro-copy p {
  width: 994px;
  max-width: 100%;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
}

.system-reference-card {
  display: block;
  overflow: hidden;
  border-radius: var(--sketch-radius, 24px);
  background: #061829;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --image-shift-x: 0px;
  --image-shift-y: 0px;
  --image-scale: 1;
  --image-light-x: 50%;
  --image-light-y: 50%;
  --image-side-x: 0;
  --image-side-y: -1;
  --image-rim-opacity: 0;
  --surface-entry-y: 26px;
  --surface-entry-scale: 1.035;
  --system-card-opacity: 0;
  --system-card-x: 0px;
  --system-card-y: 0px;
  --system-card-scale: 0.54;
  --system-card-depth: 0;
  transform-style: preserve-3d;
  z-index: var(--system-card-z, 3);
  pointer-events: auto;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.system-reference-card:focus-visible {
  outline: 1px solid rgba(235, 247, 255, 0.86);
  outline-offset: 5px;
}

.stack-screen.sketch-screen-system-start .system-reveal-ui-layer > .system-reference-card,
.stack-screen.sketch-screen-system-start-intro .system-reveal-ui-layer > .system-reference-card {
  opacity: var(--system-card-opacity, 0);
  transform:
    translate3d(var(--system-card-x, 0px), var(--system-card-y, 0px), 0)
    scale(var(--system-card-scale, 0.54));
  transition: none;
  will-change: transform, opacity;
}

.stack-screen.is-active.sketch-screen-system-start .system-reveal-ui-layer > .system-reference-card,
.stack-screen.is-active.sketch-screen-system-start-intro .system-reveal-ui-layer > .system-reference-card {
  opacity: var(--system-card-opacity, var(--sketch-opacity, 1));
  transform:
    translate3d(var(--system-card-x, 0px), var(--system-card-y, 0px), 0)
    scale(var(--system-card-scale, 1));
}

.stack-screen.is-past.sketch-screen-system-start .system-reveal-ui-layer > .system-reference-card,
.stack-screen.is-past.sketch-screen-system-start-intro .system-reveal-ui-layer > .system-reference-card {
  opacity: var(--system-card-opacity, 1);
  transform:
    translate3d(var(--system-card-x, 0px), var(--system-card-y, 0px), 0)
    scale(var(--system-card-scale, 1));
}

.sketch-screen-system-start .system-reference-card .motion-image-surface,
.sketch-screen-system-start-intro .system-reference-card .motion-image-surface {
  border-radius: inherit;
  background: #061829;
  filter: none !important;
  opacity: 1;
}

.sketch-screen-system-start .system-reference-card .motion-image-surface::before,
.sketch-screen-system-start-intro .system-reference-card .motion-image-surface::before {
  background:
    radial-gradient(
      ellipse 190px 42px at var(--image-light-x) var(--image-light-y),
      rgba(238, 248, 255, 0.78) 0%,
      rgba(190, 223, 255, 0.34) 32%,
      rgba(255, 255, 255, 0) 72%
    ),
    radial-gradient(
      ellipse 300px 60px at
        calc(50% + var(--image-side-x) * 56%)
        calc(50% + var(--image-side-y) * 56%),
      rgba(216, 236, 255, 0.28) 0%,
      rgba(255, 255, 255, 0) 68%
    );
  opacity: calc(var(--image-rim-opacity, 0) * 0.58);
}

.sketch-screen-system-start .system-reference-card .motion-image-surface::after,
.sketch-screen-system-start-intro .system-reference-card .motion-image-surface::after {
  background: transparent;
  mix-blend-mode: normal;
}

.sketch-screen-system-start .system-reference-card .home-card-image,
.sketch-screen-system-start-intro .system-reference-card .home-card-image {
  filter: none;
  transition:
    transform 820ms var(--motion-ease-content),
    filter 820ms var(--motion-ease-content);
}

.sketch-screen-system-start .system-reference-card.is-image-hovered .home-card-image,
.sketch-screen-system-start .system-reference-card.is-image-lit .home-card-image,
.sketch-screen-system-start-intro .system-reference-card.is-image-hovered .home-card-image,
.sketch-screen-system-start-intro .system-reference-card.is-image-lit .home-card-image {
  filter: none;
}

.sketch-screen-system-start .system-reference-card.is-image-hovered .motion-image-surface,
.sketch-screen-system-start-intro .system-reference-card.is-image-hovered .motion-image-surface {
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(210, 232, 255, 0.18);
}

.sketch-screen-system-start .sketch-text,
.sketch-screen-system-start .sketch-path,
.sketch-screen-system-start-intro .sketch-text,
.sketch-screen-system-start-intro .sketch-path {
  z-index: 4;
}

.stack-screen.sketch-screen-system-start .system-reveal-ui-layer > .sketch-text,
.stack-screen.sketch-screen-system-start .system-reveal-ui-layer > .sketch-path,
.stack-screen.sketch-screen-system-start-intro .system-reveal-ui-layer > .sketch-text,
.stack-screen.sketch-screen-system-start-intro .system-reveal-ui-layer > .sketch-path,
.stack-screen.is-active.sketch-screen-system-start .system-reveal-ui-layer > .sketch-text,
.stack-screen.is-active.sketch-screen-system-start .system-reveal-ui-layer > .sketch-path,
.stack-screen.is-active.sketch-screen-system-start-intro .system-reveal-ui-layer > .sketch-text,
.stack-screen.is-active.sketch-screen-system-start-intro .system-reveal-ui-layer > .sketch-path,
.stack-screen.is-past.sketch-screen-system-start .system-reveal-ui-layer > .sketch-text,
.stack-screen.is-past.sketch-screen-system-start .system-reveal-ui-layer > .sketch-path,
.stack-screen.is-past.sketch-screen-system-start-intro .system-reveal-ui-layer > .sketch-text,
.stack-screen.is-past.sketch-screen-system-start-intro .system-reveal-ui-layer > .sketch-path {
  opacity: var(--system-label-opacity, 0);
  transform: none;
}

.home-screen-scenes .home-ui-stage > .scene-camera-stage,
.stack-screen.is-active.home-screen-scenes .home-ui-stage > .scene-camera-stage,
.stack-screen.is-past.home-screen-scenes .home-ui-stage > .scene-camera-stage {
  overflow: visible;
  transform:
    translate3d(var(--scene-camera-x, 0px), var(--scene-camera-y, 0px), 0)
    scale(var(--scene-camera-scale, 1));
  transform-origin: 0 0;
  transition: opacity var(--motion-short) linear;
  will-change: transform;
}

.home-screen-scenes.is-scene-zooming .scene-camera-stage {
  opacity: 1 !important;
  transition: none !important;
}

.stack-screen.home-screen-scenes.is-active .home-ui-stage > .scene-camera-stage {
  opacity: 1 !important;
  transition: none !important;
}

.home-screen-scenes.is-scene-zooming .home-scene-card {
  transition-duration: 80ms;
}

.home-screen-scenes.is-scene-zooming .home-scene-card,
.home-screen-scenes.is-scene-zooming .motion-image-card,
.home-screen-scenes.is-scene-zooming .motion-image-surface {
  opacity: 1 !important;
}

.home-screen-scenes.is-scene-zooming .motion-image-surface {
  filter: blur(0) saturate(1) brightness(1) !important;
  transition: none !important;
}

.home-screen-scenes.is-scene-zooming .home-card-image {
  transition: none !important;
}

.home-screen-scenes.is-scene-zoom-restored .home-ui-stage > .home-el {
  opacity: 1 !important;
  transform: var(--entry-active-transform, translate3d(0, 0, 0)) !important;
  transition: none !important;
}

.home-screen-scenes.is-scene-zoom-restored .home-scene-card,
.home-screen-scenes.is-scene-zoom-restored .home-scene-card .home-card-image {
  animation: none !important;
}

.stack-screen.home-screen-scenes.is-scene-zooming,
.stack-screen.home-screen-focus-visual.is-focus-zoom-target {
  clip-path: inset(0% 0 0 0) !important;
  transition:
    filter 520ms var(--ease),
    opacity 520ms var(--ease);
}

.stack-screen.home-screen-focus-visual.is-focus-zoom-target {
  background: transparent !important;
}

.stack-screen.home-screen-focus-visual.is-focus-zoom-target .home-bg-stage,
.stack-screen.home-screen-focus-visual.is-focus-zoom-target .home-bg-fill,
.stack-screen.home-screen-focus-visual.is-focus-zoom-target .home-focus-bg {
  opacity: 0 !important;
  visibility: hidden !important;
}

.stack-screen.home-screen-scenes.is-home-hero-scenes-mask-entering {
  transition: none;
}

.stack-screen.home-screen-scenes.is-home-hero-scenes-mask-entering::after {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) var(--home-scenes-mask-band-start, 100%),
      rgba(238, 246, 255, 0.055) var(--home-scenes-mask-band-peak, 100%),
      rgba(255, 255, 255, 0) var(--home-scenes-mask-band-end, 100%),
      rgba(255, 255, 255, 0) 100%
    );
}

.stack-screen.home-screen-scenes.is-home-hero-scenes-mask-entering {
  -webkit-mask-image:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) var(--home-scenes-mask-clip-start, 100%),
      rgba(0, 0, 0, 0.22) var(--home-scenes-mask-feather-soft, 100%),
      rgba(0, 0, 0, 0.72) var(--home-scenes-mask-feather-mid, 100%),
      rgba(0, 0, 0, 1) var(--home-scenes-mask-clip-top, 100%),
      rgba(0, 0, 0, 1) 100%
    );
  mask-image:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) var(--home-scenes-mask-clip-start, 100%),
      rgba(0, 0, 0, 0.22) var(--home-scenes-mask-feather-soft, 100%),
      rgba(0, 0, 0, 0.72) var(--home-scenes-mask-feather-mid, 100%),
      rgba(0, 0, 0, 1) var(--home-scenes-mask-clip-top, 100%),
      rgba(0, 0, 0, 1) 100%
    );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  will-change: clip-path, mask-image;
}

.home-screen-focus-visual .home-focus-wide-card {
  pointer-events: none;
}

.stack-screen.home-screen-focus-visual.is-focus-zoom-target .home-focus-wide-card {
  opacity: 1 !important;
  transition: none;
}

.home-screen-focus-visual .home-focus-wide-card .motion-image-surface {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  filter: blur(0) saturate(1) brightness(1);
}

.home-focus-bg {
  filter: saturate(0.92) brightness(0.82);
}

.home-screen-scenes .home-scene-card {
  --entry-active-transform: translate3d(0, 0, 0) scale(1);
  transition:
    transform var(--entry-duration, 1540ms) var(--motion-ease-content),
    opacity 760ms linear;
  will-change: transform, opacity;
}

.home-screen-scenes .scene-card-main {
  transition-duration: var(--entry-duration, 1420ms), 780ms;
}

.home-screen-scenes .home-scene-card {
  --image-scale: 1.1;
  pointer-events: none;
}

.stack-screen.home-screen-scenes.is-active.is-scene-entry-complete .home-scene-card {
  pointer-events: auto;
}

.stack-screen.home-screen-scenes.is-active:not(.is-scene-zooming):not(.is-scene-entry-complete):not(.is-scene-entry-hold) .home-scene-card {
  animation: scene-card-converge var(--entry-duration, 1540ms) cubic-bezier(0.16, 0.9, 0.18, 1) var(--converge-delay, var(--motion-delay, 120ms)) both;
}

.stack-screen.home-screen-scenes.is-active:not(.is-scene-zooming):not(.is-scene-entry-complete):not(.is-scene-entry-hold) .home-scene-card .home-card-image {
  animation: scene-image-zoom-out var(--entry-duration, 1540ms) var(--motion-ease-content) var(--converge-delay, var(--motion-delay, 120ms)) backwards;
}

.stack-screen.home-screen-scenes.is-active.is-scene-entry-hold .home-scene-card,
.stack-screen.home-screen-scenes.is-active.is-scene-entry-hold .home-scene-card .home-card-image {
  animation: none !important;
}

.stack-screen.home-screen-scenes.is-active.is-scene-entry-hold .home-scene-card {
  opacity: 0;
  transform: var(--entry-transform, translate3d(0, 58px, 0));
  pointer-events: none;
}

.stack-screen.home-screen-scenes.is-active.is-scene-entry-hold .home-scene-card .home-card-image {
  transform:
    translate3d(var(--image-shift-x), var(--image-shift-y), 0)
    scale(1.1);
}

.stack-screen.home-screen-scenes.is-active.is-scene-entry-complete .home-scene-card,
.stack-screen.home-screen-scenes.is-active.is-scene-entry-complete .home-scene-card .home-card-image {
  animation: none !important;
}

.stack-screen.home-screen-scenes.is-reverse-exiting .home-scene-card,
.stack-screen.home-screen-scenes.is-reverse-exiting .home-scene-card .home-card-image {
  animation: none !important;
}

.stack-screen.home-screen-scenes.is-reverse-exiting .motion-image-surface {
  opacity: 1 !important;
  filter: blur(0) saturate(1) brightness(1) !important;
  transition: none !important;
}

.stack-screen.home-screen-scenes.is-scene-zooming .home-scene-card {
  animation: none;
  transform: var(--entry-active-transform, translate3d(0, 0, 0) scale(1));
}

@keyframes scene-card-converge {
  0% {
    opacity: 0;
    transform: var(--entry-transform, translate3d(0, 58px, 0));
  }

  16% {
    opacity: 0.68;
  }

  100% {
    opacity: 1;
    transform: var(--entry-active-transform, translate3d(0, 0, 0) scale(1));
  }
}

@keyframes scene-image-zoom-out {
  0% {
    transform:
      translate3d(var(--image-shift-x), var(--image-shift-y), 0)
      scale(1.1);
  }

  100% {
    transform:
      translate3d(var(--image-shift-x), var(--image-shift-y), 0)
      scale(var(--image-scale));
  }
}

.motion-image-surface::before,
.motion-image-surface::after,
.scene-zoom-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.motion-image-surface::before {
  z-index: 3;
  padding: clamp(1px, 0.18vw, 2.25px);
  border-radius: inherit;
  background:
    radial-gradient(
      ellipse 154px 32px at var(--image-light-x) var(--image-light-y),
      rgba(255, 255, 255, 0.94) 0%,
      rgba(235, 248, 255, 0.58) 24%,
      rgba(185, 221, 255, 0.18) 50%,
      rgba(255, 255, 255, 0) 70%
    ),
    radial-gradient(
      ellipse 230px 46px at
        calc(50% + var(--image-side-x) * 58%)
        calc(50% + var(--image-side-y) * 58%),
      rgba(255, 255, 255, 0.5) 0%,
      rgba(217, 238, 255, 0.2) 36%,
      rgba(255, 255, 255, 0) 68%
    );
  filter:
    brightness(1.18)
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.34))
    drop-shadow(0 0 8px rgba(177, 216, 255, 0.22));
  opacity: calc(var(--image-rim-opacity, 0) * 0.78);
  mix-blend-mode: screen;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  transition:
    opacity 90ms linear,
    filter var(--motion-fade) linear;
  will-change: opacity, background, filter;
}

.motion-image-surface::after,
.scene-zoom-card::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36), transparent 34%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.16), transparent 45%);
}

.scene-zoom-card {
  position: absolute;
  z-index: 80;
  left: calc(var(--zoom-x, 508) * 1px);
  top: calc(var(--zoom-y, 251) * 1px);
  width: calc(var(--zoom-w, 904) * 1px);
  height: calc(var(--zoom-h, 377) * 1px);
  overflow: hidden;
  border-radius: var(--zoom-radius, 20px);
  background: #0b0b0b;
  opacity: 0;
  pointer-events: none;
  will-change: left, top, width, height, opacity;
}

.scene-zoom-card img {
  position: absolute;
  left: calc(var(--zoom-img-x, 0) * 1px);
  top: calc(var(--zoom-img-y, -57) * 1px);
  width: calc(var(--zoom-img-w, 904) * 1px);
  height: calc(var(--zoom-img-h, 489) * 1px);
  display: block;
  max-width: none;
  object-fit: fill;
  user-select: none;
  -webkit-user-drag: none;
  will-change: left, top, width, height;
}

.home-card-image {
  position: absolute;
  left: calc(var(--card-img-x, var(--x)) * 1px);
  top: calc(var(--card-img-y, var(--y)) * 1px);
  width: calc(var(--card-img-w, var(--w)) * 1px);
  height: calc(var(--card-img-h, var(--h)) * 1px);
  object-fit: fill;
}

.motion-image-surface {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  background: #0b0b0b;
  opacity: 0;
  clip-path: inset(0 0 0 0);
  transform:
    perspective(900px)
    rotateX(var(--tilt-y))
    rotateY(var(--tilt-x))
    translate3d(0, var(--surface-entry-y), 0)
    scale(var(--surface-entry-scale))
    translateZ(0);
  transform-origin: center;
  transition:
    opacity var(--motion-short) linear,
    transform 980ms var(--motion-ease-content),
    filter 980ms var(--motion-ease-content),
    box-shadow var(--motion-fade) linear;
  transition-delay: var(--motion-delay, 0ms), var(--motion-delay, 0ms), var(--motion-delay, 0ms), 0ms;
  will-change: transform, opacity, filter;
}

.home-screen-scenes .motion-image-surface {
  filter: blur(14px) saturate(0.82) brightness(0.78);
}

.stack-screen.home-screen-scenes.is-active .motion-image-card .motion-image-surface,
.stack-screen.home-screen-scenes.is-scene-zooming .motion-image-card .motion-image-surface {
  opacity: 1 !important;
  clip-path: inset(0 0 0 0);
  filter: blur(0) saturate(1) brightness(1) !important;
  transition: none !important;
}

.stack-screen.home-screen-scenes.is-active .home-scene-card,
.stack-screen.home-screen-scenes.is-scene-zooming .home-scene-card {
  opacity: 1 !important;
}

.stack-screen.is-active .motion-image-card {
  --image-scale: 1;
  --surface-entry-y: 0px;
  --surface-entry-scale: 1;
}

.stack-screen.is-active .motion-image-card .motion-image-surface {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  filter: blur(0) saturate(1) brightness(1);
}

.home-screen-focus-visual.is-focus-zoom-target .home-wide-card .motion-image-surface {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.motion-image-card.is-image-hovered .motion-image-surface,
.motion-image-card:focus-visible .motion-image-surface {
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  filter: saturate(1.04) brightness(1.045);
  transition-delay: 0ms;
}

.motion-image-card.is-image-lit .motion-image-surface::before,
.motion-image-card.is-image-hovered .motion-image-surface::before,
.motion-image-card:focus-visible .motion-image-surface::before {
  opacity: max(calc(var(--image-rim-opacity, 0) * 0.78), 0.08);
}

.motion-image-card .home-card-image {
  z-index: 1;
  transform:
    translate3d(var(--image-shift-x), var(--image-shift-y), 0)
    scale(var(--image-scale));
  transform-origin: center;
  transition: transform 650ms var(--motion-ease-content);
  will-change: transform;
}

.home-scene-card.is-image-motion-ready:hover .home-card-image,
.home-wide-card:hover .home-card-image,
.philosophy-photo:hover .home-card-image {
  --image-scale: 1.045;
}

/* 标准件：图片亮边特效 */
.image-edge-glow-effect {
  --image-edge-glow-top: 50%;
  --image-edge-glow-rim-width: 14px;
  --image-edge-glow-rim-height: clamp(28px, 1.95vw, 32px);
  --image-edge-glow-beam-width: 110px;
  position: relative;
  overflow: hidden;
}

.image-edge-glow-effect__rim,
.image-edge-glow-effect__beam {
  position: absolute;
  left: 0;
  top: var(--image-edge-glow-top);
  transform: translateY(-50%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.image-edge-glow-effect__rim {
  z-index: 6;
  width: var(--image-edge-glow-rim-width);
  height: var(--image-edge-glow-rim-height);
  border-radius: 999px;
  background:
    radial-gradient(
      ellipse 18px 16px at 34% 50%,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(233, 246, 255, 0.46) 34%,
      rgba(183, 220, 255, 0.16) 60%,
      rgba(255, 255, 255, 0) 82%
    ),
    radial-gradient(
      ellipse 26px 26px at 46% 50%,
      rgba(245, 251, 255, 0.22) 0%,
      rgba(195, 227, 255, 0.09) 52%,
      rgba(255, 255, 255, 0) 82%
    );
  filter: blur(7px);
  opacity: 0.72;
}

.image-edge-glow-effect__beam {
  z-index: 5;
  width: var(--image-edge-glow-beam-width);
  height: calc(var(--image-edge-glow-rim-height) + 20px);
  border-radius: 999px;
  background:
    radial-gradient(
      ellipse 118px 26px at 4% 50%,
      rgba(246, 251, 255, 0.18) 0%,
      rgba(213, 235, 255, 0.11) 26%,
      rgba(182, 219, 255, 0.05) 48%,
      rgba(255, 255, 255, 0) 76%
    ),
    linear-gradient(
      90deg,
      rgba(219, 239, 255, 0.16) 0%,
      rgba(196, 226, 255, 0.08) 18%,
      rgba(255, 255, 255, 0) 58%
    );
  filter: blur(10px);
  opacity: 0.64;
}

@media (prefers-reduced-motion: reduce) {
  .stack-screen.sketch-screen-system-start .system-reveal-ui-layer > .system-reference-card,
  .stack-screen.sketch-screen-system-start-intro .system-reveal-ui-layer > .system-reference-card,
  .stack-screen.is-active.sketch-screen-system-start .system-reveal-ui-layer > .system-reference-card,
  .stack-screen.is-active.sketch-screen-system-start-intro .system-reveal-ui-layer > .system-reference-card,
  .stack-screen.is-past.sketch-screen-system-start .system-reveal-ui-layer > .system-reference-card,
  .stack-screen.is-past.sketch-screen-system-start-intro .system-reveal-ui-layer > .system-reference-card {
    opacity: var(--sketch-opacity, 1);
    transform: none;
    transition: none;
  }
}

.scene-heading {
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.scene-title,
.scene-subtitle {
  z-index: 2;
  opacity: var(--scene-card-text-opacity, 1);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
  transition: opacity 90ms linear;
}

.home-focus-mark {
  z-index: 2;
  opacity: 0;
  transform:
    rotate(var(--rotate, 0deg))
    translate3d(0, calc((1 - var(--focus-mark-progress, 0)) * 42px), 0)
    scale(calc(0.82 + var(--focus-mark-progress, 0) * 0.18));
  transform-origin: center;
  filter:
    blur(calc((1 - var(--focus-mark-progress, 0)) * 8px))
    drop-shadow(0 18px 46px rgba(185, 222, 255, 0.18));
  transition:
    opacity 420ms linear,
    transform 900ms var(--motion-ease-content),
    filter 900ms var(--motion-ease-content);
  will-change: transform, opacity, filter;
}

.stack-screen.home-screen-focus-visual .home-ui-stage > .home-focus-mark {
  opacity: var(--focus-mark-progress, 0);
  transform:
    rotate(var(--rotate, 0deg))
    translate3d(0, calc((1 - var(--focus-mark-progress, 0)) * 42px), 0)
    scale(calc(0.82 + var(--focus-mark-progress, 0) * 0.18));
}

.home-product-bg {
  opacity: var(--product-bg-opacity, 1);
  object-position: center center;
  transform:
    rotate(var(--rotate, 0deg))
    scale(var(--product-bg-scale, 1));
  filter:
    blur(var(--product-bg-blur, 0px))
    brightness(var(--product-bg-brightness, 1));
  transform-origin: 50% 50%;
  will-change: transform, filter;
}

.stack-screen.home-screen-product {
  --product-ui-reveal: 0;
  --product-logo-hole-clip: inset(0% 0 100% 0);
  --product-reveal-layer-opacity: 0;
  --product-mask-opacity: 0;
  --product-mask-scale: 1;
  --product-bg-opacity: 1;
  --product-bg-scale: 1;
  --product-bg-brightness: 1;
  --product-bg-blur: 0px;
}

.stack-screen.home-screen-product.is-product-diamond-reveal {
  background: transparent !important;
  transition:
    filter 520ms var(--ease),
    opacity 520ms var(--ease);
}

.stack-screen.home-screen-product .home-bg-stage {
  opacity: 0;
}

.home-product-reveal-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  opacity: var(--product-reveal-layer-opacity, 0);
  clip-path: var(--product-logo-hole-clip, inset(0% 0 100% 0));
  pointer-events: none;
  transition: none;
  will-change: clip-path, opacity;
}

.home-product-reveal-layer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  user-select: none;
  -webkit-user-drag: none;
}

.stack-screen.home-screen-product .home-ui-stage > .home-el:not(.home-product-mask-mark),
.stack-screen.home-screen-product.is-active .home-ui-stage > .home-el:not(.home-product-mask-mark) {
  opacity: var(--product-ui-reveal, 0);
  transform: translate3d(0, calc((1 - var(--product-ui-reveal, 0)) * 28px), 0);
  transition: none;
  z-index: 10;
}

.stack-screen.home-screen-product .home-ui-stage > .home-product-mask-mark,
.stack-screen.home-screen-product.is-active .home-ui-stage > .home-product-mask-mark {
  z-index: 9;
  opacity: var(--product-mask-opacity, 0);
  transform:
    rotate(var(--rotate, 0deg))
    scale(var(--product-mask-scale, 1));
  transform-origin: center;
  filter: drop-shadow(0 24px 58px rgba(185, 222, 255, 0.2));
  transition: none;
  pointer-events: none;
  will-change: transform, opacity;
}

.product-copy {
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.product-kicker {
  letter-spacing: 0;
}

.philosophy-copy {
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}

.philosophy-value-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 58px;
  align-items: center;
  justify-items: center;
  pointer-events: auto;
}

.philosophy-value-item {
  display: grid;
  grid-template-columns: 80px max-content;
  gap: 22px;
  align-items: center;
  width: max-content;
  min-width: 0;
  color: rgba(255, 255, 255, 0.78);
}

.philosophy-value-icon {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
}

.philosophy-value-icon img {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.philosophy-value-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.philosophy-value-copy strong,
.philosophy-value-copy em,
.philosophy-feature-card strong,
.philosophy-feature-card em {
  display: block;
  font-family: var(--font-main);
  font-style: normal;
  letter-spacing: 0;
}

.philosophy-value-copy strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 28px;
  font-weight: 500;
  line-height: 38px;
  white-space: nowrap;
}

.philosophy-value-copy em {
  color: rgba(255, 255, 255, 0.56);
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  white-space: nowrap;
}

.philosophy-aesthetic-heading {
  white-space: nowrap;
}

.philosophy-aesthetic-copy {
  white-space: normal;
}

.philosophy-feature-card {
  color: #fff;
  text-align: center;
  pointer-events: auto;
  z-index: 1;
}

.philosophy-feature-image {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 225px;
  overflow: hidden;
  border-radius: 16px;
  background: #080808;
  transform: translate3d(-50%, 0, 0) scale(1);
  transform-origin: center top;
  transition: transform 520ms var(--motion-ease-content);
  will-change: transform;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --image-shift-x: 0px;
  --image-shift-y: 0px;
  --image-scale: 1;
  --image-light-x: 50%;
  --image-light-y: 50%;
  --image-side-x: 0;
  --image-side-y: -1;
  --image-rim-opacity: 0;
  --surface-entry-y: 0px;
  --surface-entry-scale: 1;
  --feature-image-fit-scale: 1;
}

.philosophy-aesthetic-screen:not(.is-dual-wheel-controlled) .philosophy-feature-card:hover,
.philosophy-feature-card:focus-within,
.philosophy-feature-card.is-dual-active,
.philosophy-feature-card:has(.philosophy-feature-image.is-image-hovered) {
  z-index: 6;
}

.philosophy-aesthetic-screen:not(.is-dual-wheel-controlled) .philosophy-feature-card:hover .philosophy-feature-image,
.philosophy-feature-card:focus-within .philosophy-feature-image,
.philosophy-feature-card.is-dual-active .philosophy-feature-image,
.philosophy-feature-card .philosophy-feature-image.is-image-hovered {
  transform: translate3d(-50%, -24px, 0) scale(1.18);
  --feature-image-fit-scale: 1.035;
}

.philosophy-feature-card.is-dual-active .motion-image-surface {
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  filter: saturate(1.025) brightness(1.03);
}

.philosophy-aesthetic-screen.is-dual-wheel-controlled .philosophy-feature-card:not(.is-dual-active) {
  z-index: 1;
}

.philosophy-aesthetic-screen.is-dual-wheel-controlled .philosophy-feature-card:not(.is-dual-active) .philosophy-feature-image {
  transform: translate3d(-50%, 0, 0) scale(1);
  --feature-image-fit-scale: 1;
}

.philosophy-feature-image .home-card-image {
  transform:
    translate3d(var(--image-shift-x), var(--image-shift-y), 0)
    scale(calc(var(--image-scale) * var(--feature-image-fit-scale, 1)));
}

.philosophy-feature-card strong {
  margin-top: 278px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 30px;
  font-weight: 500;
  line-height: 42px;
}

.philosophy-feature-card em {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 22px;
  font-weight: 300;
  line-height: 31px;
}

.philosophy-history-screen .home-ui-stage {
  overflow: hidden;
}

.philosophy-history-heading {
  white-space: nowrap;
}

.philosophy-history-viewport {
  overflow: hidden;
  pointer-events: none;
}

.philosophy-history-track {
  position: absolute;
  top: 320px;
  left: 0;
  display: flex;
  gap: 34px;
  width: max-content;
  opacity: 0;
  transform: translate3d(calc(var(--philosophy-history-offset, 0px) * -1), 0, 0);
  transition:
    transform 520ms cubic-bezier(0.2, 0.82, 0.18, 1),
    opacity 360ms ease;
  will-change: transform, opacity;
}

.philosophy-history-track::before {
  position: absolute;
  top: 44px;
  right: 0;
  left: 18px;
  z-index: 8;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.stack-screen.is-active .philosophy-history-track {
  opacity: 1;
}

.stack-screen.is-past .philosophy-history-track {
  opacity: 1;
  transform: translate3d(calc(var(--philosophy-history-offset, 0px) * -1), 0, 0);
}

.philosophy-history-card {
  position: relative;
  z-index: 1;
  flex: 0 0 320px;
  width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.2, 0.82, 0.18, 1);
}

.philosophy-history-date-row {
  position: relative;
  height: 56px;
}

.philosophy-history-date {
  display: block;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
  white-space: nowrap;
  transform-origin: left top;
  transition:
    color 420ms ease,
    transform 520ms cubic-bezier(0.2, 0.82, 0.18, 1);
}

.philosophy-history-dot {
  position: absolute;
  left: 2px;
  bottom: 9px;
  z-index: 9;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.philosophy-history-line {
  display: none;
}

.philosophy-history-media {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 14px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #262626;
  clip-path: inset(0 round 8px);
  opacity: 0.8;
  transition:
    border-color 420ms ease,
    box-shadow 420ms ease,
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.2, 0.82, 0.18, 1);
  will-change: transform, opacity;
}

.philosophy-history-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.philosophy-history-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  white-space: normal;
  transform-origin: left top;
  transition:
    color 420ms ease,
    transform 520ms cubic-bezier(0.2, 0.82, 0.18, 1);
}

.philosophy-history-card.is-active {
  z-index: 4;
}

.philosophy-history-card.is-active .philosophy-history-date {
  color: rgba(255, 255, 255, 1);
  transform: scale(1.08);
}

.philosophy-history-card.is-active .philosophy-history-media {
  border-color: rgba(255, 255, 255, 0.98);
  opacity: 1;
  transform: scale(1.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.72),
    0 22px 54px rgba(0, 0, 0, 0.36);
}

.philosophy-history-card.is-active p {
  color: rgba(255, 255, 255, 0.96);
  transform: translateY(16px) scale(1.08);
}

.philosophy-history-card.is-hidden-before {
  opacity: 0.52;
}

.philosophy-entry {
  color: rgba(255, 255, 255, 0.58);
  pointer-events: auto;
  outline: none;
  transform-origin: left center;
  transition: color 320ms linear;
}

.philosophy-entry-body {
  position: relative;
  width: 100%;
  transform: translate3d(0, 0, 0);
  transform-origin: left center;
  transition: transform 1000ms var(--motion-ease-content);
  will-change: transform;
}

.philosophy-entry h3,
.philosophy-entry p {
  margin: 0;
  color: currentColor;
  font-family: var(--font-main);
}

.philosophy-entry h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  white-space: nowrap;
}

.philosophy-entry p {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 300;
  line-height: 23px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}

.philosophy-entry-diamond {
  position: absolute;
  top: 5px;
  left: -58px;
  width: 16px;
  height: 24px;
  background: url("./assets/icons/philosophy-diamond-logo.svg?v=philosophy-diamond-logo-20260521b") center / contain no-repeat;
  opacity: 0;
  transform: translate3d(0, 2px, 0) scale(0.62);
  transition:
    opacity 320ms linear,
    transform 320ms var(--motion-ease-content);
  pointer-events: none;
}

.philosophy-entry.is-hovered {
  color: #fff;
  transition-duration: 240ms;
}

.philosophy-entry.is-hovered .philosophy-entry-body {
  transform: translate3d(-26px, 0, 0) scale(1.045);
  transition-duration: 320ms;
}

.philosophy-entry.is-hovered .philosophy-entry-diamond {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition-duration: 220ms, 320ms;
}

.philosophy-photo {
  border-radius: 28px;
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.45);
}

.philosophy-photo-visual {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.philosophy-photo-visual.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.philosophy-photo-visual .motion-image-surface {
  border-radius: inherit;
}

.philosophy-photo-virtual-rim {
  position: absolute;
  inset: 0;
  z-index: 4;
  padding: clamp(1px, 0.18vw, 2.25px);
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 185px 38px at
        var(--virtual-image-light-x, 50%)
        calc(var(--virtual-image-light-y, 50%) + 20px),
      rgba(255, 255, 255, 0.94) 0%,
      rgba(235, 248, 255, 0.58) 24%,
      rgba(185, 221, 255, 0.18) 50%,
      rgba(255, 255, 255, 0) 70%
    ),
    radial-gradient(
      ellipse 276px 55px at
        calc(50% + var(--virtual-image-side-x, 0) * 58%)
        calc(50% + var(--virtual-image-side-y, -1) * 58% + 20px),
      rgba(255, 255, 255, 0.5) 0%,
      rgba(217, 238, 255, 0.2) 36%,
      rgba(255, 255, 255, 0) 68%
    );
  filter:
    brightness(1.18)
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.34))
    drop-shadow(0 0 8px rgba(177, 216, 255, 0.22));
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 320ms linear;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  will-change: opacity;
}

.philosophy-photo-visual.has-virtual-light .philosophy-photo-virtual-rim {
  opacity: 0.78;
  transition-duration: 220ms;
}

.philosophy-photo-visual .home-card-image {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--philosophy-photo-position, center center);
}

.community-card {
  position: absolute;
  z-index: 2;
  color: #fff;
  text-align: center;
  pointer-events: auto;
  opacity: 0.56;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition:
    opacity 220ms ease,
    transform 320ms var(--motion-ease-content);
}

.community-card .community-label,
.community-card h3,
.community-card .community-divider,
.community-card .community-quote,
.community-card .community-button {
  transition:
    opacity 520ms cubic-bezier(0.08, 0.78, 0.2, 1),
    transform 520ms cubic-bezier(0.08, 0.78, 0.2, 1),
    filter 520ms cubic-bezier(0.08, 0.78, 0.2, 1);
  will-change: opacity, transform, filter;
}

.home-screen-community .home-community-bg-day,
.home-screen-community .home-community-bg-night {
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 980ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 980ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter;
}

.home-screen-community .home-community-bg-day {
  filter: brightness(0.78) saturate(0.94) contrast(1.04);
}

.home-screen-community .home-community-bg-night {
  filter: brightness(0.98) contrast(1.03);
}

.home-screen-community[data-community-active="day"] .home-community-bg-day {
  opacity: 1;
}

.home-screen-community[data-community-active="night"] .home-community-bg-night {
  opacity: 1;
}

.community-card.is-active {
  z-index: 4;
  opacity: 1;
  transform: scale(1.08);
}

.stack-screen.is-active .home-ui-stage > .community-card {
  opacity: 0.56;
  transform: scale(1);
}

.stack-screen.is-active .home-ui-stage > .community-card.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.community-card .saza-pill-button {
  position: absolute;
}

.community-label,
.community-card h3,
.community-quote {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 0;
}

.community-label {
  top: -54px;
  height: 110px;
  color: #fff;
  font-size: 18px;
  line-height: 25px;
  opacity: 0.72;
  transform: translate3d(0, 0, 0);
}

.community-label::before {
  display: none;
  content: "";
}

.community-scenario-icon {
  display: block;
  width: 132px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  opacity: 0.96;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.24));
}

.community-card h3 {
  top: 74px;
  height: 43px;
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 300;
  line-height: 43px;
  opacity: 0.74;
  transform: translate3d(0, 0, 0);
}

.community-divider {
  position: absolute;
  top: 164px;
  left: 134px;
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: #fff;
  opacity: 0.44;
  transform: translate3d(0, 0, 0);
}

.community-quote {
  top: 213px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 300;
  line-height: 23px;
  opacity: 0.52;
  transform: translate3d(0, 0, 0);
}

.community-card .community-button {
  opacity: 0.46;
  transform: translate3d(0, 0, 0);
}

.community-card.is-active .community-label,
.community-card.is-active h3 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: brightness(1.06);
  transition-delay: 0ms;
}

.community-card.is-active .community-divider,
.community-card.is-active .community-quote {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: none;
  transition-delay: 300ms;
}

.community-card.is-active .community-button {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: none;
  transition-delay: 600ms;
}

.community-card:not(.is-active) .community-label,
.community-card:not(.is-active) h3,
.community-card:not(.is-active) .community-divider,
.community-card:not(.is-active) .community-quote,
.community-card:not(.is-active) .community-button {
  transition-delay: 0ms;
}

.footer-list {
  white-space: pre-line;
}

.footer-link-list,
.footer-support-list {
  display: grid;
  grid-auto-rows: 34px;
  align-content: start;
  pointer-events: auto;
}

.footer-link-list a,
.footer-support-list a {
  display: block;
  width: fit-content;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 300;
  line-height: 34px;
  text-decoration: none;
  transition:
    color 220ms ease,
    transform 280ms var(--motion-ease-content);
}

.footer-link-list a:hover,
.footer-link-list a:focus-visible,
.footer-support-list a:hover,
.footer-support-list a:focus-visible {
  color: #fff;
  transform: translate3d(4px, 0, 0);
}

.footer-wordmark-glow {
  overflow: visible;
  pointer-events: auto;
  contain: layout paint style;
  transform: translateZ(0);
  --logo-glow-x: 50%;
  --logo-glow-y: 50%;
  --logo-light-x: 50%;
  --logo-light-y: -18%;
  --logo-side-x: 0;
  --logo-side-y: -1;
}

.footer-wordmark-glow img,
.footer-wordmark-glow span,
.footer-wordmark-model {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.footer-wordmark-model {
  z-index: 3;
  opacity: 0;
  transition: opacity 420ms linear;
}

.footer-wordmark {
  filter: invert(1);
  opacity: 0;
}

.footer-wordmark-base {
  z-index: 1;
  object-fit: contain;
  transition:
    opacity var(--motion-fade) linear,
    filter var(--motion-fade) linear;
}

.footer-wordmark-depth {
  z-index: 1;
  opacity: calc(0.5 - var(--depth) * 0.035);
  background:
    linear-gradient(
      180deg,
      rgba(48, 52, 52, 0.92) 0%,
      rgba(16, 18, 18, 0.92) 45%,
      rgba(5, 6, 6, 0.98) 100%
    );
  -webkit-mask: url("./assets/icons/saza-wordmark-large.svg") center / contain no-repeat;
  mask: url("./assets/icons/saza-wordmark-large.svg") center / contain no-repeat;
  filter:
    drop-shadow(0 1px 2px rgba(0, 0, 0, 0.72))
    brightness(calc(1.02 - var(--depth) * 0.035));
  transform: translate(
    calc(var(--logo-side-x) * var(--depth) * 1.15px),
    calc(var(--logo-side-y) * var(--depth) * 0.85px)
  );
  will-change: transform, opacity;
}

.footer-wordmark-metal {
  z-index: 2;
  opacity: 1;
  background:
    linear-gradient(
      180deg,
      #252929 0%,
      #151919 34%,
      #090b0b 58%,
      #171b1b 100%
    );
  -webkit-mask: url("./assets/icons/saza-wordmark-large.svg") center / contain no-repeat;
  mask: url("./assets/icons/saza-wordmark-large.svg") center / contain no-repeat;
  filter:
    drop-shadow(0 15px 20px rgba(0, 0, 0, 0.76))
    drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.07))
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.95));
  will-change: background, opacity;
}

.footer-wordmark-far-sheen {
  z-index: 4;
  opacity: 0.48;
  background:
    radial-gradient(
      ellipse 190px 42px at var(--logo-light-x) var(--logo-light-y),
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0.36) 22%,
      rgba(255, 255, 255, 0.1) 54%,
      rgba(255, 255, 255, 0) 74%
    );
  -webkit-mask: url("./assets/icons/saza-wordmark-rim-mask.svg") center / contain no-repeat;
  mask: url("./assets/icons/saza-wordmark-rim-mask.svg") center / contain no-repeat;
  filter:
    brightness(1.35)
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.34))
    drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
  mix-blend-mode: screen;
  transition: opacity var(--motion-fade) linear;
  will-change: opacity, background, filter;
}

.footer-wordmark-side-shadow,
.footer-wordmark-side-light {
  z-index: 4;
  -webkit-mask: url("./assets/icons/saza-wordmark-rim-mask.svg") center / contain no-repeat;
  mask: url("./assets/icons/saza-wordmark-rim-mask.svg") center / contain no-repeat;
  transition: opacity var(--motion-fade) linear;
  will-change: opacity, background;
}

.footer-wordmark-side-shadow {
  opacity: 0.5;
  background:
    radial-gradient(
      ellipse 260px 86px at calc(100% - var(--logo-light-x)) calc(100% - var(--logo-light-y)),
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.58) 43%,
      rgba(0, 0, 0, 0) 82%
    );
  mix-blend-mode: multiply;
}

.footer-wordmark-side-light {
  opacity: 0.42;
  background:
    radial-gradient(
      ellipse 170px 38px at var(--logo-light-x) var(--logo-light-y),
      rgba(255, 255, 255, 0.68) 0%,
      rgba(255, 255, 255, 0.34) 26%,
      rgba(255, 255, 255, 0.08) 56%,
      rgba(255, 255, 255, 0) 70%
    );
  filter:
    brightness(1.25)
    blur(0.1px)
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.24));
  mix-blend-mode: screen;
}

.footer-wordmark-blue-glow,
.footer-wordmark-sweep {
  z-index: 5;
  opacity: 0;
  mix-blend-mode: screen;
  -webkit-mask: url("./assets/icons/saza-wordmark-edge-mask.svg") center / contain no-repeat;
  mask: url("./assets/icons/saza-wordmark-edge-mask.svg") center / contain no-repeat;
  transition: opacity var(--motion-fade) linear;
  will-change: opacity, background;
}

.footer-wordmark-blue-glow {
  background:
    radial-gradient(
      ellipse 210px 62px at var(--logo-glow-x) var(--logo-glow-y),
      rgba(158, 222, 255, 0.84) 0%,
      rgba(34, 145, 255, 0.72) 38%,
      rgba(0, 72, 184, 0.38) 68%,
      rgba(0, 22, 72, 0) 86%
    );
  filter:
    blur(0.18px)
    drop-shadow(0 0 9px rgba(58, 158, 255, 0.66))
    drop-shadow(0 0 30px rgba(0, 82, 210, 0.52));
}

.footer-wordmark-sweep {
  z-index: 6;
  background:
    radial-gradient(
      ellipse 104px 18px at var(--logo-glow-x) var(--logo-glow-y),
      rgba(240, 251, 255, 0.86) 0%,
      rgba(112, 201, 255, 0.62) 42%,
      transparent 76%
    );
  filter:
    drop-shadow(0 0 5px rgba(188, 232, 255, 0.58))
    drop-shadow(0 0 20px rgba(50, 148, 246, 0.42));
}

.footer-wordmark-glow.is-glowing .footer-wordmark-base {
  opacity: 0;
}

.footer-wordmark-glow.is-glowing .footer-wordmark-metal {
  opacity: 1;
}

.footer-wordmark-glow.is-glowing .footer-wordmark-far-sheen {
  opacity: 0.32;
}

.footer-wordmark-glow.is-glowing .footer-wordmark-side-shadow {
  opacity: 0.42;
}

.footer-wordmark-glow.is-glowing .footer-wordmark-side-light {
  opacity: 0.26;
}

.footer-wordmark-glow.is-glowing .footer-wordmark-blue-glow {
  opacity: 0.72;
}

.footer-wordmark-glow.is-glowing .footer-wordmark-sweep {
  opacity: 0.76;
}

.footer-wordmark-glow.is-model-ready .footer-wordmark-depth,
.footer-wordmark-glow.is-model-ready .footer-wordmark-metal,
.footer-wordmark-glow.is-model-ready .footer-wordmark-far-sheen,
.footer-wordmark-glow.is-model-ready .footer-wordmark-side-shadow,
.footer-wordmark-glow.is-model-ready .footer-wordmark-side-light {
  opacity: 0;
}

.footer-wordmark-glow.is-model-ready .footer-wordmark-far-sheen {
  opacity: 0;
  filter:
    brightness(1.55)
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.42))
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.13));
}

.footer-wordmark-glow.is-model-ready .footer-wordmark-side-light {
  opacity: 0;
}

.footer-wordmark-glow.is-model-ready.is-glowing .footer-wordmark-far-sheen {
  opacity: 0.26;
}

.footer-wordmark-glow.is-model-ready.is-glowing .footer-wordmark-side-light {
  opacity: 0.24;
}

.footer-wordmark-glow.is-model-ready.is-glowing .footer-wordmark-side-shadow {
  opacity: 0.24;
}

.footer-wordmark-glow.is-model-ready.is-glowing .footer-wordmark-metal {
  opacity: 0.08;
}

.footer-wordmark-glow.is-model-ready .footer-wordmark-model {
  opacity: 1;
}

.footer-rule {
  background: rgba(255, 255, 255, 0.16);
}

.footer-help-link {
  pointer-events: auto;
  text-decoration: none;
}

.footer-help-link:hover {
  background: transparent;
}

.footer-qr-popover {
  z-index: 8;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(3, 14, 28, 0.9);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 10px, 0) scale(0.96);
  transition:
    opacity 220ms linear,
    transform 360ms var(--motion-ease-content);
}

.footer-qr-popover[hidden] {
  display: none;
}

.footer-qr-popover.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.footer-qr-frame {
  display: grid;
  width: 152px;
  height: 152px;
  place-items: center;
  justify-self: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 24px rgba(0, 38, 84, 0.16);
}

.footer-qr-frame img {
  display: block;
  width: 136px;
  height: 136px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  pointer-events: auto;
}

.footer-social-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition:
    border-color 180ms linear,
    background 180ms linear,
    transform 260ms var(--motion-ease-content);
}

.footer-social-button:hover,
.footer-social-button.is-active {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
  transform: translate3d(0, -3px, 0);
}

.footer-social-button img {
  max-width: 27px;
  max-height: 27px;
  filter: invert(1);
  opacity: 0.76;
  pointer-events: none;
  transition: opacity 180ms linear;
}

.footer-social-text-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1;
  font-weight: var(--weight-title);
  letter-spacing: 0;
  pointer-events: none;
  transition: color 180ms linear, opacity 180ms linear;
}

.footer-social-button[data-qr-key="wechat"] img {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer-social-button:hover img,
.footer-social-button.is-active img,
.footer-social-button:hover .footer-social-text-icon,
.footer-social-button.is-active .footer-social-text-icon {
  opacity: 0.96;
  color: rgba(255, 255, 255, 0.96);
}

.home-community-bg {
  object-position: center center;
  transition:
    opacity 980ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 980ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-hotspot {
  position: fixed;
  z-index: 30;
  top: var(--menu-top, 32px);
  left: var(--menu-left, auto);
  right: var(--menu-right, 30px);
  width: var(--menu-width, 48px);
  height: var(--menu-height, 48px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent url("./assets/icons/menu-hotspot.svg") center / contain no-repeat;
  cursor: pointer;
  appearance: none;
}

.preview-version-badge {
  position: fixed;
  z-index: 31;
  top: var(--menu-top, 32px);
  right: calc(var(--menu-right, 30px) + var(--menu-width, 48px) + 14px);
  display: grid;
  height: var(--menu-height, 48px);
  place-items: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1;
  font-weight: var(--weight-copy);
  letter-spacing: 0;
  pointer-events: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.42);
  user-select: none;
}

.menu-hotspot::before,
.menu-hotspot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: #fff;
  opacity: 0;
  transform-origin: 50% 50%;
}

.immersive-page[data-active-screen-id="scenes-nav"] .menu-hotspot {
  background-image: none;
}

.immersive-page[data-active-screen-id="scenes-nav"] .menu-hotspot::before {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg);
}

.immersive-page[data-active-screen-id="scenes-nav"] .menu-hotspot::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-hotspot:focus-visible,
.hotspot-link:focus-visible,
.menu-link:focus-visible,
.menu-close:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.82);
  outline-offset: 4px;
}

.hotspot-link {
  position: absolute;
  z-index: 5;
  display: block;
  border-radius: 0;
}

.hotspot-link:hover {
  background: rgba(255, 255, 255, 0.045);
}

.community-join-hotspot {
  pointer-events: auto;
  overflow: visible;
  border-radius: 24px;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  overflow: hidden;
  background:
    #050505 url("./assets/backgrounds/prepared-4k-20260603/nav-menu-crystal-stagefull-4k-20260603.webp?v=nav-crystal-stagefull-20260603") center / cover no-repeat;
  color: #fff;
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
  transition: clip-path var(--motion-long) var(--motion-ease-menu);
  will-change: clip-path;
}

.site-menu.is-open {
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
}

.site-menu.is-closing {
  pointer-events: none;
}

.menu-bg-stage,
.menu-ui-stage {
  position: absolute;
  top: 0;
  left: 0;
}

.menu-bg-stage {
  z-index: 1;
  pointer-events: none;
}

.menu-ui-stage {
  z-index: 2;
}

.site-menu .menu-ui-stage > .home-el {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.site-menu .home-logo {
  transition:
    opacity 520ms ease 210ms,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1) 210ms;
}

.menu-close {
  position: absolute;
  top: 32px;
  left: 1846px;
  z-index: 8;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent url("./assets/icons/menu-hotspot.svg") center / contain no-repeat;
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  opacity: 1;
  appearance: none;
}

.page-loading {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background: #000;
  color: rgba(255, 255, 255, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-short) linear;
}

.page-loading.is-visible {
  opacity: 1;
}

.home-text,
.sketch-text,
.saza-pill-text,
.home-nav-subitem,
.footer-list,
.footer-qr-title,
.footer-qr-note,
.community-label,
.community-quote,
.community-benefit-card p,
.glow-card p,
.morning-product-slide-meta p,
.morning-product-slide-meta span,
.philosophy-value-copy em,
.philosophy-feature-card em,
.philosophy-history-card p,
.philosophy-entry p,
.missing-card a {
  font-family: var(--font-body);
  font-weight: var(--weight-body);
}

.home-text.text-title,
.sketch-text.text-title,
h1,
h2,
h3,
h4,
h5,
h6,
strong,
.home-nav-link,
.scene-template-hero-title,
.morning-ring h2,
.morning-product-heading,
.morning-product-pill,
.system-start-intro-copy h2,
.community-benefits-heading,
.community-benefit-card h3,
.glow-card h3,
.community-card h3,
.philosophy-value-copy strong,
.philosophy-feature-card strong,
.philosophy-history-date,
.philosophy-entry h3,
.footer-title,
.missing-card h1 {
  font-family: var(--font-title);
  font-weight: var(--weight-title);
}

.site-menu .home-nav-link {
  font-family: var(--font-title);
  font-weight: 400;
}

.site-menu .home-nav-subitem {
  font-family: var(--font-body);
  font-weight: 300;
}

.home-text.text-body,
.sketch-text.text-body,
.scene-template-hero-subtitle,
.system-start-intro-copy p {
  font-family: var(--font-body);
  font-weight: var(--weight-body);
}

.page-loading-mark {
  position: relative;
  transform: translateY(-18px);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.page-loading-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgba(198, 161, 90, 0.18);
}

.page-loading-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 800ms var(--motion-ease-menu);
}

.scroll-cue {
  position: fixed;
  z-index: 32;
  left: 50%;
  bottom: 34px;
  width: 18px;
  height: 36px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  opacity: 0;
  transform: translateX(-50%);
  pointer-events: none;
  transition: opacity var(--motion-fade) linear;
}

.scroll-cue.is-visible {
  opacity: 1;
}

.scroll-cue span {
  position: absolute;
  left: 8px;
  width: 1px;
  height: 18px;
  border-radius: 999px;
  background: currentColor;
  animation: scroll-cue-move 1500ms cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.scroll-cue span + span {
  transform: translateY(-32px);
  animation-delay: 750ms;
}

@keyframes scroll-cue-move {
  0% {
    transform: translateY(-32px);
  }

  52%,
  100% {
    transform: translateY(32px);
  }
}

.missing-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.missing-card {
  width: min(520px, 100%);
  border: 1px solid var(--line);
  background: var(--panel-soft);
  padding: 32px;
}

.missing-card h1 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 500;
}

.missing-card a {
  color: #fff;
}

@media (max-width: 1199px) {
  .product-library-content {
    width: min(calc(100% - 52px), 960px);
    padding: 128px 0 300px;
  }

  .product-library-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-library-filters {
    justify-content: flex-start;
  }

  .product-library-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 799px) {
  html,
  body,
  #app {
    width: 100%;
    overflow-x: hidden;
  }

  .immersive-page {
    height: calc(var(--screen-count, 1) * 100svh);
    min-height: calc(var(--screen-count, 1) * 100svh);
  }

  .screen-stack,
  .stack-screen {
    height: 100svh;
    overflow: hidden;
  }

  .home-ui-stage,
  .sketch-screen .home-ui-stage {
    overflow: visible;
  }

  .home-text,
  .sketch-text {
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: pretty;
  }

  .home-text br,
  .sketch-text br,
  .community-quote br,
  .morning-ring-copy br {
    display: none;
  }

  .sketch-text-single-line {
    white-space: normal;
  }

  .home-hero-title,
  .home-hero-copy,
  .scene-heading,
  .scene-title,
  .scene-subtitle,
  .product-title,
  .philosophy-title,
  .philosophy-item,
  .community-title,
  .footer-title,
  .footer-list {
    white-space: normal;
  }

  .text-title,
  .home-hero-title,
  .scene-heading,
  .product-title,
  .philosophy-title,
  .community-title,
  .footer-cta-title,
  .support-section-title {
    text-wrap: balance;
  }

  .saza-pill-button {
    font-size: 15px;
    line-height: 22px;
  }

  .saza-pill-text {
    height: 22px;
    padding-right: 28px;
  }

  .home-persistent-logo {
    width: 86px;
    height: 18px;
  }

  .menu-hotspot {
    width: 44px;
    height: 44px;
  }

  .home-screen-hero .home-hero-title {
    --mx: 735;
    --my: 612;
    --mw: 450;
    --mh: 118;
    --mfs: 42;
    --mlh: 56;
    text-align: center;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.38);
  }

  .home-screen-hero .home-hero-copy {
    --mx: 760;
    --my: 750;
    --mw: 400;
    --mh: 64;
    --mfs: 16;
    --mlh: 26;
    text-align: center;
  }

  .home-screen-scenes .scene-heading {
    --mx: 745;
    --my: 118;
    --mw: 430;
    --mh: 88;
    --mfs: 31;
    --mlh: 42;
    text-align: center;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.48);
  }

  .home-screen-scenes .scene-card-main {
    --mx: 748;
    --my: 226;
    --mw: 424;
    --mh: 352;
  }

  .home-screen-scenes .scene-card-main .home-card-image {
    --card-img-x: -292;
    --card-img-y: -118;
    --card-img-w: 904;
    --card-img-h: 489;
  }

  .home-screen-scenes .scene-card-left-top,
  .home-screen-scenes .scene-card-right-top {
    --my: 602;
    --mw: 200;
    --mh: 130;
  }

  .home-screen-scenes .scene-card-left-top {
    --mx: 748;
  }

  .home-screen-scenes .scene-card-left-top .home-card-image {
    --card-img-x: -102;
    --card-img-y: -112;
    --card-img-w: 366;
    --card-img-h: 448;
  }

  .home-screen-scenes .scene-card-right-top {
    --mx: 972;
  }

  .home-screen-scenes .scene-card-right-top .home-card-image {
    --card-img-x: -122;
    --card-img-y: -166;
    --card-img-w: 344;
    --card-img-h: 430;
  }

  .home-screen-scenes .scene-card-bottom,
  .home-screen-scenes .scene-card-left-bottom,
  .home-screen-scenes .scene-card-right-bottom {
    --my: 752;
    --mw: 132;
    --mh: 96;
  }

  .home-screen-scenes .scene-card-bottom {
    --mx: 894;
  }

  .home-screen-scenes .scene-card-bottom .home-card-image {
    --card-img-x: -34;
    --card-img-y: -174;
    --card-img-w: 224;
    --card-img-h: 336;
  }

  .home-screen-scenes .scene-card-left-bottom {
    --mx: 748;
  }

  .home-screen-scenes .scene-card-left-bottom .home-card-image {
    --card-img-x: -30;
    --card-img-y: -118;
    --card-img-w: 188;
    --card-img-h: 326;
  }

  .home-screen-scenes .scene-card-right-bottom {
    --mx: 1040;
  }

  .home-screen-scenes .scene-card-right-bottom .home-card-image {
    --card-img-x: -142;
    --card-img-y: -18;
    --card-img-w: 292;
    --card-img-h: 402;
  }

  .home-screen-scenes .scene-title {
    --mfs: 18;
    --mlh: 24;
    --mw: 140;
    --mh: 24;
  }

  .home-screen-scenes .scene-subtitle {
    --mfs: 12;
    --mlh: 18;
    --mw: 160;
    --mh: 18;
  }

  .home-screen-scenes .scene-card-main + .home-scene-card + .home-scene-card,
  .home-screen-scenes .scene-card-main + .home-scene-card + .home-scene-card + .home-scene-card,
  .home-screen-scenes .scene-card-main + .home-scene-card + .home-scene-card + .home-scene-card + .home-scene-card {
    opacity: 0.95;
  }

  .home-screen-scenes .scene-title:nth-of-type(8),
  .home-screen-scenes .scene-subtitle:nth-of-type(9) {
    --mx: 778;
    --my: 565;
  }

  .home-screen-scenes .scene-camera-stage > .scene-title:nth-of-type(2) {
    --mx: 778;
    --my: 618;
  }

  .home-screen-scenes .scene-camera-stage > .scene-subtitle:nth-of-type(3) {
    --mx: 778;
    --my: 647;
  }

  .home-screen-scenes .scene-camera-stage > .scene-title:nth-of-type(4) {
    --mx: 778;
    --my: 252;
  }

  .home-screen-scenes .scene-camera-stage > .scene-subtitle:nth-of-type(5) {
    --mx: 778;
    --my: 281;
  }

  .home-screen-scenes .scene-camera-stage > .scene-title:nth-of-type(6) {
    --mx: 998;
    --my: 618;
  }

  .home-screen-scenes .scene-camera-stage > .scene-subtitle:nth-of-type(7) {
    --mx: 998;
    --my: 647;
  }

  .home-screen-scenes .scene-camera-stage > .scene-title:nth-of-type(8) {
    --mx: 1054;
    --my: 766;
  }

  .home-screen-scenes .scene-camera-stage > .scene-subtitle:nth-of-type(9) {
    --mx: 1054;
    --my: 795;
  }

  .home-screen-scenes .scene-camera-stage > .scene-title:nth-of-type(10) {
    --mx: 762;
    --my: 766;
  }

  .home-screen-scenes .scene-camera-stage > .scene-subtitle:nth-of-type(11) {
    --mx: 762;
    --my: 795;
  }

  .home-screen-scenes .scene-camera-stage > .scene-title:nth-of-type(12) {
    --mx: 908;
    --my: 766;
  }

  .home-screen-scenes .scene-camera-stage > .scene-subtitle:nth-of-type(13) {
    --mx: 908;
    --my: 795;
  }

  .home-screen-focus-visual .home-focus-bg {
    --mx: -78;
    --my: -72;
    --mw: 1800;
    --mh: 1013;
    filter: saturate(0.98) brightness(0.9);
  }

  .stack-screen.home-screen-focus-visual.is-focus-zoom-target.is-mobile-focus-settled .home-bg-stage,
  .stack-screen.home-screen-focus-visual.is-focus-zoom-target.is-mobile-focus-settled .home-bg-fill,
  .stack-screen.home-screen-focus-visual.is-focus-zoom-target.is-mobile-focus-settled .home-focus-bg {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .home-screen-focus-visual .home-focus-mark {
    --mx: 816;
    --my: 158;
    --mw: 288;
    --mh: 436;
    opacity: calc(var(--focus-mark-progress, 0) * 0.22) !important;
  }

  .home-screen-product::before {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
      linear-gradient(180deg, rgba(0, 10, 28, 0) 0%, rgba(0, 10, 28, 0.18) 38%, rgba(0, 12, 34, 0.78) 100%),
      linear-gradient(90deg, rgba(0, 10, 28, 0.58) 0%, rgba(0, 10, 28, 0.22) 54%, rgba(0, 10, 28, 0.1) 100%);
    pointer-events: none;
    content: "";
  }

  .home-screen-product .home-product-reveal-layer img {
    object-position: 72% center;
  }

  .home-screen-product .home-product-mask-mark {
    --mx: 748 !important;
    --my: 116 !important;
    --mw: 424 !important;
    --mh: 642 !important;
  }

  .home-screen-product .product-title {
    --mx: 170 !important;
    --my: 592 !important;
    --mw: 390 !important;
    --mh: 58 !important;
    --mfs: 42 !important;
    --mlh: 58 !important;
    white-space: nowrap;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.58);
  }

  .home-screen-product .product-copy {
    --mx: 170 !important;
    --my: 672 !important;
    --mw: 390 !important;
    --mh: 104 !important;
    --mfs: 17 !important;
    --mlh: 28 !important;
    color: rgba(255, 255, 255, 0.84);
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
  }

  .home-screen-product .saza-pill-button {
    --mx: 170 !important;
    --my: 806 !important;
  }

  .home-screen-philosophy .philosophy-title {
    --mx: 760;
    --my: 118;
    --mw: 400;
    --mh: 58;
    --mfs: 38;
    --mlh: 54;
    text-align: center;
  }

  .home-screen-philosophy .philosophy-entry {
    --mx: 760;
    --mw: 400;
  }

  .home-screen-philosophy .philosophy-entry:nth-of-type(1) {
    --my: 232;
  }

  .home-screen-philosophy .philosophy-entry:nth-of-type(2) {
    --my: 374;
  }

  .home-screen-philosophy .philosophy-entry:nth-of-type(3) {
    --my: 520;
  }

  .home-screen-philosophy .philosophy-entry:nth-of-type(4) {
    --my: 652;
  }

  .home-screen-philosophy .philosophy-entry h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .home-screen-philosophy .philosophy-entry p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 23px;
  }

  .home-screen-philosophy .philosophy-photo {
    --mx: 1130;
    --my: 246;
    --mw: 300;
    --mh: 388;
    opacity: 0.42;
  }

  .home-screen-community .home-community-bg {
    object-position: center center;
  }

  .home-screen-community .community-title {
    --mx: 760;
    --my: 124;
    --mw: 400;
    --mh: 58;
    --mfs: 38;
    --mlh: 54;
    text-align: center;
  }

  .home-screen-community .community-card {
    --mw: 360;
    --mh: 254;
    opacity: 0.88;
  }

  .home-screen-community .community-card-day {
    --mx: 780;
    --my: 250;
  }

  .home-screen-community .community-card-night {
    --mx: 780;
    --my: 536;
  }

  .home-screen-community .community-card h3 {
    top: 72px;
    font-size: 26px;
    line-height: 34px;
  }

  .home-screen-community .community-label {
    top: -44px;
    height: 104px;
    font-size: 16px;
    line-height: 24px;
  }

  .home-screen-community .community-scenario-icon {
    width: 116px;
  }

  .home-screen-community .community-divider {
    top: 128px;
    left: 158px;
  }

  .home-screen-community .community-quote {
    top: 158px;
    padding: 0 18px;
    font-size: 14px;
    line-height: 22px;
  }

  .home-screen-community .community-button {
    --mx: 80;
    --my: 202;
    --mw: 200;
    --mh: 48;
  }

  .home-screen-footer .footer-cta-title,
  .shared-footer-screen .footer-cta-title {
    --mx: 740;
    --my: 136;
    --mw: 440;
    --mfs: 34;
    --mlh: 46;
    text-align: center;
  }

  .home-screen-footer .footer-cta-copy,
  .shared-footer-screen .footer-cta-copy {
    --mx: 760;
    --my: 202;
    --mw: 400;
    --mfs: 15;
    --mlh: 24;
    text-align: center;
  }

  .home-screen-footer .saza-pill-button,
  .shared-footer-screen .saza-pill-button {
    --mx: 860;
    --my: 264;
  }

  .home-screen-footer .footer-wordmark-glow,
  .shared-footer-screen .footer-wordmark-glow {
    --mx: 760;
    --my: 374;
    --mw: 400;
    --mh: 82;
  }

  .home-screen-footer .footer-about-title,
  .shared-footer-screen .footer-about-title {
    --mx: 760;
    --my: 462;
    --mw: 400;
    --mfs: 17;
    --mlh: 24;
  }

  .home-screen-footer .footer-about-list,
  .shared-footer-screen .footer-about-list {
    --mx: 760;
    --my: 496;
    --mw: 400;
    --mh: 92;
    --mfs: 12;
    --mlh: 20;
  }

  .home-screen-footer .footer-quick-list-title,
  .shared-footer-screen .footer-quick-list-title {
    --mx: 760;
    --my: 626;
    --mw: 160;
    --mfs: 17;
    --mlh: 24;
  }

  .home-screen-footer .footer-quick-list,
  .shared-footer-screen .footer-quick-list {
    --mx: 760;
    --my: 658;
    --mw: 160;
    --mh: 150;
  }

  .home-screen-footer .footer-purchase-list-title,
  .shared-footer-screen .footer-purchase-list-title {
    --mx: 1010;
    --my: 626;
    --mw: 170;
    --mfs: 17;
    --mlh: 24;
  }

  .home-screen-footer .footer-purchase-list,
  .shared-footer-screen .footer-purchase-list {
    --mx: 1010;
    --my: 658;
    --mw: 170;
    --mh: 150;
  }

  .home-screen-footer .footer-support-title,
  .shared-footer-screen .footer-support-title {
    --mx: 760;
    --my: 800;
    --mw: 180;
    --mfs: 17;
    --mlh: 24;
  }

  .home-screen-footer .footer-support-list,
  .shared-footer-screen .footer-support-list {
    --mx: 760;
    --my: 832;
    --mw: 260;
    --mh: 126;
  }

  .home-screen-footer .footer-link-list,
  .home-screen-footer .footer-support-list,
  .shared-footer-screen .footer-link-list,
  .shared-footer-screen .footer-support-list {
    grid-auto-rows: 24px;
  }

  .home-screen-footer .footer-link-list a,
  .home-screen-footer .footer-support-list a,
  .shared-footer-screen .footer-link-list a,
  .shared-footer-screen .footer-support-list a {
    font-size: 12px;
    line-height: 24px;
  }

  .scene-template-hero-title {
    --mx: 760;
    --my: 620;
    --mw: 400;
    --mh: 68;
    --mfs: 42;
    --mlh: 56;
    gap: 6px;
    text-align: center;
  }

  .scene-template-hero-title-icon {
    width: 0.561em;
    height: 0.918em;
    flex-basis: 0.561em;
  }

  .scene-template-hero-subtitle {
    --mx: 560;
    --my: 700;
    --mw: 800;
    --mh: 92;
    --mfs: 14;
    --mlh: 22;
    text-align: center;
    white-space: normal;
  }

  .scene-template-hero-cta {
    --mx: 860;
    --my: 826;
  }

  .morning-ring {
    top: 196px;
    left: 792px;
    width: 336px;
    height: 256px;
  }

  .morning-ring-left {
    --morning-ring-intro-x: 0px;
    --morning-ring-intro-y: 175px;
  }

  .morning-ring-right {
    top: 546px;
    left: 792px;
    --morning-ring-intro-x: 0px;
    --morning-ring-intro-y: -175px;
  }

  .morning-ring h2 {
    margin-top: 8px;
    padding: 0 34px;
    font-size: 27px;
    line-height: 36px;
  }

  .morning-ring-kicker {
    font-size: 12px;
    line-height: 18px;
  }

  .morning-ring-dash {
    width: 38px;
    height: 3px;
    margin-top: 18px;
  }

  .morning-ring-copy {
    max-width: 292px;
    margin-top: 28px;
    font-size: 15px;
    line-height: 24px;
  }

  .support-hero-title {
    --mx: 760;
    --my: 620;
    --mw: 400;
    --mh: 68;
    --mfs: 42;
    --mlh: 56;
    text-align: center;
  }

  .support-hero-copy {
    --mx: 760;
    --my: 708;
    --mw: 400;
    --mh: 28;
    --mfs: 16;
    --mlh: 24;
    white-space: normal;
  }

  .support-hero-cta {
    --mx: 860;
    --my: 772;
  }

  .support-detail-screen .support-kicker {
    --mx: 760;
    --my: 112;
    --mw: 400;
  }

  .support-detail-screen .support-detail-title {
    --mx: 760;
    --my: 148;
    --mw: 400;
    --mh: 96;
    --mfs: 34;
    --mlh: 44;
    white-space: normal;
  }

  .support-detail-screen .support-detail-rule {
    --mx: 760;
    --my: 254;
    --mw: 96;
  }

  .support-detail-screen .support-page-panel {
    --mx: 760;
    --my: 292;
    --mw: 400;
    --mh: 500;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .support-faq-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .support-faq-card {
    min-height: auto;
    padding: 16px 18px;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 12px;
  }

  .support-faq-card-copy h3 {
    font-size: 17px;
    line-height: 24px;
  }

  .support-faq-card-copy p,
  .support-shipping-section p,
  .support-agreement-section p {
    font-size: 13px;
    line-height: 22px;
  }

  .support-contact-layout {
    --mx: 0;
    --my: 0;
    --mw: 1920;
    --mh: 900;
    --contact-layout-scale: 1;
  }

  .support-contact-card {
    display: none;
  }

  .support-contact-form {
    --mx: 760;
    --my: 112;
    --mw: 400;
    --mh: 720;
    padding: 24px 22px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .support-contact-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .support-contact-form-head h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .support-contact-form-head p {
    font-size: 14px;
    line-height: 22px;
  }

  .support-contact-field-label {
    gap: 10px;
    font-size: 15px;
    line-height: 22px;
  }

  .support-contact-field input,
  .support-contact-field select {
    height: 56px;
    margin-top: 8px;
    padding: 0 18px;
    font-size: 15px;
  }

  .support-contact-field textarea {
    height: 120px;
    margin-top: 8px;
    padding: 16px 18px;
    font-size: 15px;
  }

  .support-contact-message-field {
    grid-row: auto;
  }

  .support-contact-submit {
    position: relative;
    left: auto;
    bottom: auto;
    width: 200px;
    height: 48px;
    margin-top: 22px;
  }

  .support-contact-status {
    position: static;
    max-width: none;
    margin: 12px 0 0;
    font-size: 13px;
    line-height: 20px;
  }

  .site-menu .menu-ui-stage {
    overflow: visible;
  }

  .menu-close {
    top: 28px;
    left: 1130px;
    width: 44px;
    height: 44px;
  }

  .home-nav-link {
    font-size: 27px;
    line-height: 38px;
  }

  .site-menu.is-open.is-nav-submenu-open .home-nav-link {
    transform: translate3d(-120px, 0, 0);
  }

  .site-menu .home-nav-submenu {
    gap: 28px;
  }

  .saza-pill-button:hover,
  .support-topic-card:hover,
  .offline-store-card:hover,
  .footer-social-button:hover {
    transform: none;
  }

  .saza-pill-button:hover .saza-pill-text-static,
  .support-contact-submit:hover .saza-pill-text-static {
    opacity: 1;
    transform: none;
  }

  .saza-pill-button:hover .saza-pill-text-hover,
  .support-contact-submit:hover .saza-pill-text-hover {
    opacity: 0;
    transform: translateY(105%);
  }

  .motion-image-card.is-image-hovered .motion-image-surface,
  .motion-image-card:focus-visible .motion-image-surface,
  .product-family-image.motion-image-card.is-image-hovered .motion-image-surface,
  .product-family-image.motion-image-card:focus-visible .motion-image-surface {
    box-shadow: none;
    filter: none;
  }

  .saza-pill-frame-outer {
    animation: none;
    filter: none;
    transform: none;
  }

  .motion-image-card .home-card-image,
  .home-scene-card.is-image-motion-ready:hover .home-card-image,
  .home-wide-card:hover .home-card-image,
  .philosophy-photo:hover .home-card-image {
    --image-scale: 1 !important;
  }

  .philosophy-feature-card:hover .philosophy-feature-image,
  .philosophy-feature-card:focus-within .philosophy-feature-image,
  .philosophy-feature-card.is-dual-active .philosophy-feature-image,
  .philosophy-feature-card .philosophy-feature-image.is-image-hovered {
    transform: translate3d(-50%, 0, 0) scale(1);
    --feature-image-fit-scale: 1;
  }

  .philosophy-feature-card.is-dual-active .motion-image-surface {
    box-shadow: none;
    filter: none;
  }

  .morning-dual-rings .morning-ring-shell {
    transform: none;
    animation: none;
  }

  .home-screen-community[data-community-active="day"] .home-community-bg-day,
  .home-screen-community[data-community-active="night"] .home-community-bg-night {
    opacity: 0;
  }

  .community-card.is-active,
  .stack-screen.is-active .home-ui-stage > .community-card.is-active {
    transform: none;
  }

  .support-topic-card:hover,
  .support-faq-card:hover,
  .support-faq-card:focus,
  .support-faq-card:focus-visible {
    border-color: rgba(255, 255, 255, 0.12);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
      rgba(9, 14, 22, 0.58);
  }

  .immersive-page[data-route="products"],
  .immersive-page[data-route="products"] .screen-stack,
  .immersive-page[data-route="products"] .stack-screen {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .product-library-content {
    width: min(calc(100% - 36px), 520px);
    padding: 96px 0 300px;
  }

  .product-library-heading h2 {
    font-size: 28px;
  }

  .product-library-filter {
    height: 34px;
    padding: 0 14px;
    font-size: 13px;
    line-height: 34px;
  }

  .product-library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .product-library-card h3 {
    font-size: 13px;
    line-height: 1.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
