/* 懒加载背景图片规则 */
.lazyload {
	opacity: 0;
	transition: opacity 0.5s;
}

.lazyloaded {
	opacity: 1;
}

/* 处理lazysizes的背景图片 */
.lazyload[data-bg] {
	background-image: none;
}

.no-scroll {
  overflow: hidden;
  height:100vh;
}


.site-loading {
  position: fixed;
  inset: 0;
  /* width:200px;
  height:400px; */
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(200, 162, 101, 0.16), transparent 28%),
    radial-gradient(circle at 62% 58%, rgba(41, 86, 118, 0.16), transparent 34%),
    #020711;
  opacity: 1;
  transition: opacity 900ms cubic-bezier(0.19, 1, 0.22, 1), visibility 900ms ease;
}

.site-loading.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.site-loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(420px, calc(100vw - 64px));
  text-align: center;
}

.site-loading-brand {
  margin: 0 0 44px;
  color: rgba(242, 240, 234, 0.96);
  font-family: var(--font-serif);
  font-size: clamp(42px, 3.75vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
}

.site-loading-bar {
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgba(242, 240, 234, 0.16);
}

.site-loading-progress {
  display: block;
  width: var(--site-loading-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, rgba(200, 162, 101, 0.2), rgba(200, 162, 101, 0.92));
  transition: width 120ms linear;
}

.site-loading-percent {
  margin: 18px 0 36px;
  color: rgba(200, 162, 101, 0.72);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.site-loading-enter {
  min-width: 152px;
  height: 48px;
  border: 1px solid rgba(200, 162, 101, 0.7);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  color: rgba(200, 162, 101, 0.9);
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.08em;
  opacity: 1;
  transition: border-color 360ms ease, background 360ms ease, color 360ms ease, opacity 360ms ease;
}

.site-loading-enter:disabled {
  cursor: default;
  opacity: 0.38;
}

.site-loading-enter:not(:disabled):hover,
.site-loading-enter:not(:disabled):focus-visible {
  border-color: rgba(219, 184, 120, 0.96);
  background: rgba(200, 162, 101, 0.08);
  color: rgba(242, 240, 234, 0.96);
}


.hero-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  display: block;
  width: 100%;
  pointer-events: auto;
  transform: translateY(-100%);
  backdrop-filter: blur(10px);
  padding-top: env(safe-area-inset-top, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
  /* animation: daoFadeDown 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.12s forwards; */
}

.hero-section.is-content-ready .hero-nav {
  animation: navIn 1.45s cubic-bezier(0.19, 1, 0.22, 1) 0s forwards;
}
.hero-nav1{
	height:62px;
}


.brand {
	font-size:24px;
	color:#fff;
}

.nav-menu {
  /* position: absolute;
  top: 31px;
  right: clamp(28px, 12.2vw, 234px);
  display: flex;
  gap: clamp(58px, 7.4vw, 142px);
  align-items: flex-start;
  justify-content: center;
  pointer-events: auto; */
  display: flex;
  gap: clamp(32px, 7vw, 100px);
}

.nav-item {
  position: relative;
  display: inline-flex;
  justify-content: center;
  min-width: 28px;
  height: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--hero-ink-muted);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  pointer-events: auto;
  transition: color 300ms ease, text-shadow 300ms ease;
}

.nav-item::before,
.nav-item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 27px;
  width: 100%;
  height: 2px;
  background: var(--hero-gold);
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition:
    opacity 300ms ease,
    transform 300ms ease;
}

.nav-item::after {
  top: 32px;
  width: 29px;
}

.nav-item:hover,
.nav-item:focus-visible,
.nav-item.is-active {
  color: var(--hero-gold);
}

.nav-item.is-active {
  font-weight: 600;
}

.nav-item:hover::before,
.nav-item:hover::after,
.nav-item:focus-visible::before,
.nav-item:focus-visible::after,
.nav-item.is-active::before,
.nav-item.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.nav-item.is-twisting::before {
  animation: navLineTwistTop 420ms cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-item.is-twisting::after {
  animation: navLineTwistBottom 420ms cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-item:focus-visible,
.scroll-cue:focus-visible {
  outline: 1px solid rgba(200, 162, 101, 0.7);
  outline-offset: 6px;
}

.page-shell {
	position: relative;
	z-index: 2;
	width: 100vw;
	min-height: 100vh;
	overflow-x: clip;
}

.hero-section {
	position: relative;
	width: 100vw;
	height: 100vh;
	min-height: 620px;
	z-index:2;
	overflow: hidden;
	isolation: isolate;
	background:radial-gradient(circle at 50% 64%, rgba(150, 108, 54, 0.26), transparent 22%),#020711;
}

.hero-video {
	position: absolute;
	inset: 0;
	z-index: -3;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	background: #020711;
}

.hero-mask {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 9, 6, 0.2) 0%, rgba(11, 9, 6, 0.2) 20%, rgba(6, 5, 3, 0.3) 30%, #000000 100%);
}

.hero-copy {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(760px, calc(100vw - 48px));
	width: calc(100vw - 32px);
	transform: translate(-50%, -50%);
	text-align: center;
	pointer-events: none;
}

.hero-title {
	margin: 0;
	color: var(--hero-ink);
	font-family: var(--font-serif);
	font-size: clamp(36px, 6vw, 72px);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: 0.12em;
	text-indent: 0.12em;
	text-shadow: 0 8px 30px rgba(0, 0, 0, 0.34);
	opacity: 0;
	transform: translateY(18px);
}

.hero-section.is-content-ready .hero-title {
	animation: copyIn 1.85s cubic-bezier(0.19, 1, 0.22, 1) 0.24s forwards;
}

.hero-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	width: min(450px, 68vw);
	margin-top: 26px;
	opacity: 0;
}

.hero-section.is-content-ready .hero-divider {
	animation: dividerFade 1.35s ease 0.72s forwards;
}

.hero-subtitle {
	margin: 42px 0 0;
	color: var(--hero-ink-soft);
	font-family: var(--font-serif);
	font-size: clamp(20px, 4vw, 40px);
	font-weight: 600;
	line-height: 1.18;
	letter-spacing: 0.14em;
	text-indent: 0.14em;
	text-shadow: 0 7px 26px rgba(0, 0, 0, 0.34);
	opacity: 0;
	transform: translateY(16px);
}

.hero-section.is-content-ready .hero-subtitle {
	animation: copyIn 1.75s cubic-bezier(0.19, 1, 0.22, 1) 1.12s forwards;
}

.hero-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	width: min(450px, 68vw);
	margin-top: 26px;
	opacity: 0;
	gap: 14px;
    margin-top: 20px;
}

.divider-line {
	display: block;
	width: min(188px, 29vw);
	height: 1px;
	transform: scaleX(0);
}

.hero-section.is-content-ready .divider-line {
	animation: dividerLine 1.45s cubic-bezier(0.19, 1, 0.22, 1) 0.72s forwards;
}

.divider-line-left {
	transform-origin: left center;
	background: linear-gradient(90deg, transparent 0%, var(--hero-gold-soft) 100%);
}

.divider-line-right {
	transform-origin: right center;
	background: linear-gradient(90deg, var(--hero-gold-soft) 0%, transparent 100%);
}

.hero-section.is-content-ready .hero-divider {
	animation: dividerFade 1.35s ease 0.72s forwards;
}

.divider-diamond {
	position: relative;
	display: block;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	opacity: 0;
	transform: rotate(45deg) scale(0.38);
	border: 1px solid rgba(200, 162, 101, 0.6);
}

.hero-section.is-content-ready .divider-diamond {
	animation: diamondBloom 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0.78s forwards;
}

.divider-diamond::before {
	content: "";
	position: absolute;
	inset: -1px;
	border: 1px solid rgba(200, 162, 101, 0.45);
	opacity: 0;
	transform: scale(0.7);
}

.hero-section.is-content-ready .divider-diamond::before {
	animation: diamondRipple 3.6s ease-out 0.9s infinite;
}

.divider-diamond::after {
	content: "";
	position: absolute;
	inset: 4px;
	background: rgba(200, 162, 101, 0.72);
}
.scroll-cue-container{
  position: absolute;
	left: 50%;
	bottom: clamp(30px, 6.6vh, 70px);
	z-index: 3;
}

.scroll-cue {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	opacity: 0;
	transform: translateX(-50%) translateY(0);
	transition:
	filter 300ms ease,
	transform 300ms ease;
}

.hero-section.is-content-ready .scroll-cue {
	animation: scrollCueIn 1.2s cubic-bezier(0.19, 1, 0.22, 1) 1.6s forwards;
}

.scroll-cue:hover {
	filter: brightness(1.32);
	transform: translateX(-50%) translateY(-10px);
}

.scroll-cue-shape {
	position: relative;
	width: 24px;
	height: 38px;
	border: 1px solid rgba(244, 243, 238, 0.48);
	border-radius: 999px;
	animation: cuePulse 3.8s ease-in-out 2.35s infinite;
}

.scroll-cue-dot {
	position: absolute;
	top: 6px;
	left: 50%;
	width: 4px;
	height: 8px;
	border-radius: 999px;
	background: rgba(244, 243, 238, 0.76);
	transform: translateX(-50%);
	animation: cueDot 2.8s ease-in-out 2.2s infinite;
}

.earth-section {
  --earth-open: 0;
  --earth-seam: 0;
  --earth-copy-opacity: 0;
  --earth-copy-y: 18px;
  --earth-copy-blur: 8px;
  --earth-line-1-opacity: 0;
  --earth-line-1-y: 14px;
  --earth-line-1-blur: 10px;
  --earth-line-2-opacity: 0;
  --earth-line-2-y: 14px;
  --earth-line-2-blur: 10px;
  --earth-scene-brightness: 1;
  --earth-exit-black: 0;
  position: relative;
  width: 100vw;
  height: 540vh;
  overflow: visible;
  z-index:3;
  background: #000000;
  isolation: isolate;
}

.earth-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	background: #020711;
}

.earth-copy {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(620px, calc(100vw - 48px));
	opacity: 1;
	transform: translate(-50%, -50%);
	color: #f2f0ea;
	text-align: center;
	text-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
	pointer-events: none;
	will-change: opacity, transform, filter;
}

.earth-copy-line {
	min-height: 1.24em;
	margin: 0;
	font-size: clamp(40px, 3.05vw, 58px);
	font-weight: 600;
	line-height: 1.42;
	letter-spacing: 0.16em;
	text-indent: 0.16em;
	white-space: nowrap;
	/* opacity: var(--earth-line-1-opacity);
	filter: blur(var(--earth-line-1-blur));
	transform: translateY(var(--earth-line-1-y)); */
	will-change: opacity, transform, filter;
}

.earth-copy-line + .earth-copy-line {
	margin-top: 4px;
	/* opacity: var(--earth-line-2-opacity);
	filter: blur(var(--earth-line-2-blur));
	transform: translateY(var(--earth-line-2-y)); */
}



.earth-panel {
	position: absolute;
	top: 0;
	width: calc(50% + 2px);
	height: 100%;
	background: #000000;
	pointer-events: none;
	will-change: transform;
}

.earth-exit-dim {
  position: absolute;
  inset: 0;
  background: #000000;
  opacity: var(--earth-exit-black);
  pointer-events: none;
  will-change: opacity;
}

.earth-panel-left {
	left: 0;
	transform: translateX(calc(var(--earth-open) * -100%));
}

.earth-panel-right {
	right: 0;
	transform: translateX(calc(var(--earth-open) * 100%));
}

.earth-video-mask {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
	linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.1) 44%, rgba(0, 0, 0, 0.28) 100%),
	radial-gradient(circle at 50% 55%, transparent 0%, rgba(0, 0, 0, 0.22) 72%, rgba(0, 0, 0, 0.66) 100%);
}

.earth-light-seam {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1px;
	height: min(62vh, 560px);
	pointer-events: none;
	opacity: var(--earth-seam);
	transform: translate(-50%, -50%) scaleY(calc(0.42 + var(--earth-open) * 0.58));
	background: linear-gradient(180deg, transparent, rgba(242, 240, 234, 0.12), rgba(200, 162, 101, 0.34), rgba(242, 240, 234, 0.12), transparent);
	box-shadow:
	0 0 14px rgba(200, 162, 101, 0.18),
	0 0 34px rgba(95, 142, 183, 0.12);
	transform-origin: center;
}

.realm-section {
  --realm-bg-opacity: 0;
  --realm-bg-exit: 0;
  --realm-bg-visible: 0;
  --realm-bg-brightness: 1;
  --realm-bg-blur: 0px;
  --realm-bg-scale: 1;
  --human-opacity: 0;
  --human-blur: 16px;
  --human-scale: 1.02;
  --human-y: 0px;
  --human-brightness: 0.56;
  --human-beam-opacity: 0;
  --human-ground-opacity: 0;
  --human-copy-opacity: 0;
  --human-copy-y: 14px;
  --human-copy-blur: 10px;
  position: relative;
  width: 100vw;
  /* height: 1680vh; */
  background: #000000;
  overflow: visible;
  isolation: isolate;
}

.realm-sticky {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  /* background: #000000; */
}
/* H5 移动端卡片样式 - max-width: 768px */
.h5-realm-cards {
  display: none;
  position: absolute;
  z-index:3;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {

  
  .h5-realm-cards {
    /*display: flex;*/
    flex-direction: column;
    gap: 20px;
    width: calc(100% - 0px);
    padding: 60px 20px;
    z-index: 3;
    display: none;
  }
  
  .h5-realm-card {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 10px;
    border: 1px solid rgba(177, 137, 73, 0.52);
    background:linear-gradient(180deg, rgba(76, 64, 42, 0.60) 0%, rgba(5, 5, 8, 0.60) 100%);
    border-radius: 7px;
    backdrop-filter: blur(10px);
  }
  
  .h5-realm-card-top {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border:#524835 1px solid;
    border-radius:50%;
  }
  
  .h5-realm-card-top svg {
    width: 100%;
    height: 100%;
  }
  
  .h5-realm-card-top-icon {
    position: absolute;
    top: -1px;
    left: 50%;
    width: 8px;
    height: 8px;
    transform: rotate(-45deg) translate(0, -50%);
    background: linear-gradient(225deg, rgba(250, 224, 180, 1), rgba(156, 113, 44, 1));
  }
  
  .h5-realm-card-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 700;
    color: #f2f0ea;
  }
  
  .h5-realm-divider {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .h5-realm-divider img {
    width: 100%;
    height: 100%;
    animation: guaAutoSpin 22s linear infinite;
  }
  
  .h5-realm-card-heading {
    color: rgba(242, 240, 234, 0.92);
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.08em;
    padding: 8px 0;
  }
  
  .h5-realm-card-text {
    color: rgba(242, 240, 234, 0.66);
    font-family: var(--font-serif);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.68;
    letter-spacing: 0.04em;
  }
}
.realm-cards{
	/*position: relative;*/
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  align-items: start;
  gap: clamp(20px, 3vw, 60px);
  width: min(1200px, calc(100vw - 40px));
  margin: 0 auto;
  /*padding-top: clamp(100px, 22vh, 220px);*/
  perspective: 1200px;
}
.realm-card:nth-child(2){
	margin-top:40px;
}

.realm-card{
	--card-opacity: 0;
	--card-opacity: 1;
  --card-y: -80px;
  --card-blur: 16px;
  --card-blur: 0;
  --card-scale: 0.96;
  --card-base-y: 0px;
  --press-scale: 1;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --px: 50%;
  --py: 50%;
  --edge-opacity: 0;
  --mist-opacity: 0;
  --glow-opacity: 0;

  /* Skrollr 驱动变量：--card-opacity, --card-y, --card-blur, --card-scale */
  /* 不写死值，让滚动决定状态 */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* width: min(360px, 100%); */
  /* min-height: clamp(480px, 52.4vh, 524px); */
  padding: clamp(60px, 8vh, 86px) clamp(24px, 4vw, 50px) clamp(50px, 6vh, 80px);
  /* padding: clamp(132px, 16vh, 150px) 40px 46px; */
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 7px;
  background:
    linear-gradient(180deg, #000000 0%, rgba(112, 102, 87, 0) 100%) padding-box,
    linear-gradient(180deg, rgba(102, 102, 102, 0.6) 0%, rgba(102, 102, 102, 0) 100%) border-box;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 0 55px rgba(255, 255, 255, 0.035),
    0 18px 70px rgba(0, 0, 0, 0.34);
  opacity: var(--card-opacity);
  filter: blur(var(--card-blur));
  transform:
    perspective(1200px)
    translateY(calc(var(--card-base-y) + var(--card-y)))
    scale(calc(var(--card-scale) * var(--press-scale)))
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition:
    background 540ms ease,
    box-shadow 540ms ease;
  will-change: opacity, filter, transform;
}

.realm-card:hover {
  --press-scale: 0.995;
  --edge-opacity: 0.32;
  --mist-opacity: 0.32;
  --glow-opacity: 0.22;
  background:
    linear-gradient(180deg, rgba(76, 64, 42, 0.6) 0%, rgba(5, 5, 8, 0.6) 100%) padding-box,
    linear-gradient(180deg, rgba(177, 137, 73, 0.6) 0%, rgba(177, 137, 73, 0) 100%) border-box;
  box-shadow:
    inset 0 0 70px rgba(255, 255, 255, 0.045),
    0 18px 74px rgba(0, 0, 0, 0.42),
    0 34px 70px rgba(200, 162, 101, 0.17);
}

.realm-bg-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.44));
}

.realm{
	position: absolute;
	z-index:-1;
	width:100%;
	height: 100%;
	opacity:0;
	inset:0;
}
.realm-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #020711;
}


/* .realm-card {
  pointer-events: auto;
} */

/* .realm-card::before,
.realm-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 540ms ease;
} */

/* .realm-card::before {
  inset: 1px;
  z-index: 1;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(242, 226, 197, 0.055), transparent 46%),
    linear-gradient(90deg, transparent, rgba(200, 162, 101, 0.12), transparent);
  mix-blend-mode: screen;
  opacity: var(--mist-opacity);
} */

.realm-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  left: 50%;
  top: auto;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(200, 162, 101, 0.45), transparent);
  box-shadow:
    0 0 26px rgba(200, 162, 101, 0.16),
    0 -26px 64px rgba(200, 162, 101, 0.16);
  /* opacity: var(--glow-opacity); */
  opacity: 0;
  transform: translateX(-50%);
}

/* .realm-card:hover {
  --press-scale: 0.995;
  --edge-opacity: 0.32;
  --mist-opacity: 0.32;
  --glow-opacity: 0.22;
  background:
    linear-gradient(180deg, rgba(76, 64, 42, 0.6) 0%, rgba(5, 5, 8, 0.6) 100%) padding-box,
    linear-gradient(180deg, rgba(177, 137, 73, 0.6) 0%, rgba(177, 137, 73, 0) 100%) border-box;
  box-shadow:
    inset 0 0 70px rgba(255, 255, 255, 0.045),
    0 18px 74px rgba(0, 0, 0, 0.42),
    0 34px 70px rgba(200, 162, 101, 0.17);
} */

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

.realm-card-top{
	position: relative;
}

.realm-card-top-icon{
	position: absolute;
	top: -1px;
	left: 50%;
	width:10px;
	height:10px;
	transform: rotate(-45deg) translate(0, -50%);
	background:linear-gradient(225deg, rgba(250, 224, 180, 1), rgba(156, 113, 44, 1));
}

.realm-card-title{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: clamp(30px, 5vw, 46px);
	font-weight: 700;
	color: #f2f0ea;
}

.realm-card-gua{
	position: absolute;
	bottom:12px;
	left: 50%;
	transform: translateX(-50%);
}
.realm-card-gua img{
  animation: guaAutoSpin 22s linear infinite;
}
.realm-card-gua1{
  display:none;
}
.realm-cards-mask{
    position:absolute;
    inset:0;
    /*background:rgba(255,0,0,0.5);*/
    z-index:2;
}

.realm-divider{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top:28px;
}

.realm-divider-diamond{
	position: relative;
	display: block;
	width: 14px;
	height: 14px;
	border:#B89C6F 1px solid;
	transform: rotate(45deg);
}
.realm-divider-diamond::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width:7px;
	height:7px;
	background: #B89C6F;
}
.realm-divider-line{
	display: block;
	width:80px;
	height:1px;
	background-color:rgba(184, 156, 111, 0.2);
}
.realm-card-heading {
  position: relative;
  z-index: 1;
  padding: clamp(12px, 2vh, 20px) 0;
  color: rgba(242, 240, 234, 0.92);
  font-family: var(--font-serif);
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  text-align: center;
}

.realm-card-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(242, 240, 234, 0.66);
  font-family: var(--font-serif);
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0.04em;
  text-align: center;
}

.human-scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  opacity: var(--human-opacity);
  filter: blur(var(--human-blur)) brightness(var(--human-brightness));
  transform: translateY(var(--human-y)) scale(var(--human-scale));
  transform-origin: center;
  pointer-events: none;
  will-change: opacity, filter, transform;
}

.human-video-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 68%, rgba(200, 162, 101, 0.08), transparent 23%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.54));
}

.human-energy-beam {
  position: absolute;
  left: 50%;
  top: 31%;
  width: 1px;
  height: 43vh;
  opacity: var(--human-beam-opacity);
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(200, 162, 101, 0.18), rgba(242, 240, 234, 0.36), rgba(200, 162, 101, 0.16), transparent);
  box-shadow:
    0 0 18px rgba(200, 162, 101, 0.18),
    0 0 44px rgba(200, 162, 101, 0.09);
}


.human-ground-glow {
  position: absolute;
  left: 50%;
  top: 73%;
  width: min(560px, 42vw);
  height: min(118px, 13vh);
  opacity: var(--human-ground-opacity);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(200, 162, 101, 0.28);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(200, 162, 101, 0.14), rgba(200, 162, 101, 0.045) 42%, transparent 70%);
  filter: blur(0.4px);
}

.human-copy {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 49%;
  font-size: clamp(22px, 6vw, 56px);
  /* left: 50%;
  z-index: 2;
  width: min(820px, calc(100vw - 48px));
  margin: 0;
  color: #f2f0ea;
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  text-align: center;
  text-shadow:
    0 10px 34px rgba(0, 0, 0, 0.46),
    0 0 28px rgba(200, 162, 101, 0.1);
  opacity: var(--human-copy-opacity);
  filter: blur(var(--human-copy-blur));
  transform: translate(-50%, var(--human-copy-y)); */
  will-change: opacity, filter, transform;
}

.site-footer{
	background: linear-gradient(180deg, #2F2A24 0%, #1A1A1A 100%);
	height:100vh;
	display:flex;
	flex-direction: column;
	justify-content:flex-end;
	position:fixed;
	inset:0;
	width:100%;
	z-index:1;
	padding-bottom: env(safe-area-inset-bottom, 0);
}
.footer-cta{
	text-align: center;
}
.footer-cta p{
	font-size: clamp(22px, 5vw, 40px);
	color:#fff;
	line-height: 1.43;
}
.footer-cta a{
	margin-top: clamp(32px, 5vh, 60px);
	font-size:18px;
	display: inline-block;
	width:152px;
	height:56px;
	text-align:center;
	line-height:56px;
	border-radius: 50px;
	border: 1px solid #B89C6F;
	color:#B89C6F;
}
.footer-cta a:hover{
    color:#fff;
    background:#B89C6F;
}
.footer-main{
	padding:100px 0;
	justify-content:space-between;
	border-bottom:rgba(255,255,255,0.2) 1px solid;
}
.footer-brand a{
	font-size:32px;
	line-height:46px;
	color:#fff;
}

.footer-status{
	margin-top:30px;
	align-items:center;
	padding:8px 16px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.20);
	background: linear-gradient(89deg, rgba(255, 255, 255, 0.40) 0.79%, rgba(255, 239, 239, 0.40) 29.49%, rgba(255, 250, 250, 0.40) 63.3%, rgba(255, 255, 255, 0.40) 95.22%);
	backdrop-filter: blur(5px);
	font-size:12px;
}
.footer-status img{
	margin-right:10px;
}
.footer-status span{
	color:#fff;
	padding-right:4px;
}
.footer-status label{
	color:rgba(255, 255, 255, 0.7);
}

.footer-contact1{
	font-size:24px;
	color:#B89C6F;
	line-height:34px;
	padding-bottom:8px;
}

.footer-contact2{
	margin-top:10px;
	line-height:24px;
}
.footer-contact2_1{
    height:24px;
    align-items:center;
}
.footer-contact2_1 img{
    width:20px;
    height:20px;
}
.footer-contact2 p{
	flex:1;
	font-size:16px;
	color:rgba(255, 255, 255, 0.8);
	margin-left:12px;
	line-height:24px;
}
.footer-nav{
	display:flex;
	gap:clamp(24px, 12vw, 200px);
	justify-content:center;
	padding-top:40px;
	padding-bottom:60px;
}
.footer-nav a{
	color:#fff;
	font-size:16px;
}
.footer-nav a.active{
	color:#B89C6F;
	text-decoration:underline;
}
.footer-nav a:hover{
	color:#B89C6F;
	text-decoration:underline;
}
.footer-record{
	justify-content:center;
	gap:60px;
	color:rgba(255, 255, 255, 0.5);
	font-size:12px;
	padding-bottom:20px;
}
.footer-record a{
	color:rgba(255, 255, 255, 0.5);
	font-size:12px;
}
.footer-record a:hover{
	color:#B89C6F;
}


.daojing{
  position: relative;
  z-index:3;
}

.daojing_body{
  position: absolute;
  inset: 0;
  width:100%;
  height:100vh;
  align-items:center;
  justify-content:center;
}
.dao-hero-copy{
  color:#fff;
}
.dao-hero-copy-title{
  font-size: clamp(36px, 8vw, 64px);
  line-height: clamp(52px, 10vw, 92px);
  transform: translateY(100px);
  filter: blur(10px);
  opacity:0;

}
.dao-hero-copy-title-ani{
  animation: daoCopyIn 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0.24s forwards;
}

.dao-title-rule{
  padding:20px 0;
  align-items:center;
  transform: translateY(100px);
  filter: blur(10px);
  opacity:0;
}
.dao-title-rule-ani{
  animation: daoCopyIn 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.46s forwards;
}
.dao-rule-diamond {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border: 1px solid rgba(200, 162, 101, 0.72);
  transform: rotate(45deg);
}

.dao-rule-diamond::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: rgba(200, 162, 101, 0.72);
}
.dao-rule-line {
  margin-left: clamp(12px, 3vw, 20px);
  display: block;
  width: clamp(120px, 30vw, 310px);
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 162, 101, 0.32), rgba(200, 162, 101, 0));
}
.dao-hero-copy p {
  font-size: clamp(14px, 3.8vw, 18px);
  line-height: 1.5;
  transform: translateY(100px);
  filter: blur(10px);
  opacity:0;
}
.dao-hero-copy .p-ani{
  animation: daoCopyIn 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0.68s forwards;
}
.dao-text-block{
  color:#fff;
}
.dao-text-block div{
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.45;
  margin-bottom: clamp(20px, 4vw, 40px);
}
.dao-text-block p{
  width: clamp(300px, 80vw, 800px);
  font-size: clamp(16px, 3vw, 24px);
  line-height: 1.42;
  color:#B89C6F;
}

@keyframes daoFadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes daoCopyIn {
  to {
    filter: blur(0px);
    opacity: 1;
    transform: translateY(0);
  }
}

.changjing{
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 3vw, 50px);
  position:relative;
}

.changjing1{
  /*flex: 1 1 280px;*/
  /*min-width: 0;*/
  /*opacity:0;*/
}
.changjing1_a{
    transition: all 0.5s ease-in-out;
  padding: clamp(20px, 3vw, 30px) clamp(20px, 3vw, 30px) clamp(40px, 5vw, 60px);
  border-radius: 30px;
  background: linear-gradient(180deg, #4D4030 0%, rgba(77, 64, 48, 0.40) 100%);
  backdrop-filter: blur(5px);
  transition: all 0.5s ease-in-out;
}
.changjing1_a:hover{
  transform:scale(1.05);
}
.changjing1_1{
  border-radius:30px;
  overflow:hidden;
  width:100%;
  margin-bottom:20px;
}
.changjing1_1 img{
  width:100%;
  height: 100%;
}
.changjing1_2{
  font-size: clamp(20px, 4vw, 28px);
  line-height: 1.43;
  margin-bottom:10px;
}
.changjing1_3{
  font-size: clamp(12px, 2.5vw, 14px);
  line-height: 1.43;
  color:rgba(184, 156, 111, 0.80);;
}
.changjing1_4{
  font-size: clamp(36px, 8vw, 64px);
  line-height: 1.44;
  color:#B89C6F;
}

.huajing{
  /* width:100%;
  height:100vh;
  position:absolute;
  bottom:0vh;
  left:0; */
}
.huajing_img{
  width:100%;
  height: 100%;
  object-fit:cover;
}
.huajing_text{
  font-size: clamp(24px, 6vw, 56px);
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  color:#fff;
  opacity:0;
  white-space: nowrap;
}
.qj-bg-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 50%, rgba(190, 151, 82, 0.12) 0%, rgba(18, 13, 8, 0.12) 26%, rgba(0, 0, 0, 0.36) 70%),
    radial-gradient(circle at 27% 43%, rgba(190, 151, 82, 0.1) 0%, transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.22) 45%, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.46) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.08) 44%, rgba(0, 0, 0, 0.58) 100%);
}
.qijing{
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
  align-items:center;
  gap: clamp(24px, 3vw, 40px);
  position:absolute;
}
.qijing_maks{
    position:absolute;
    inset:0;
    z-index:2;
}
.qijing1{
  /* flex:1; */
  font-size: clamp(24px, 5vw, 48px);
  line-height: 1.44;
  color:#fff;
  width: clamp(260px, 40vw, 480px);
}


.qj-form-card {
  width:780px;
  padding:60px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 30px;
  background:linear-gradient(180deg, #2F281E 0%, rgba(47, 40, 30, 0.00) 100%);
  backdrop-filter: blur(15px);
}

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

.qj-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.qj-form-card label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 14px;
  line-height:20px;
}

.qj-form-card input,
.qj-form-card textarea {
  width: 100%;
  border: 1px solid rgba(190, 151, 82, 0.35);
  border-radius: 8px;
  background: rgba(25, 20, 13, 0.45);
  color: #f5efe5;
  outline: none;
  transition: border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.qj-form-card input {
  height: 52px;
  padding: 0 16px;
}

.qj-form-card textarea {
  height: 160px;
  padding: 18px 16px;
  resize: none;
}

.qj-form-card input::placeholder,
.qj-form-card textarea::placeholder {
  color: rgba(245, 239, 229, 0.45);
}

.qj-form-card input:hover,
.qj-form-card input:focus,
.qj-form-card textarea:hover,
.qj-form-card textarea:focus {
  border-color: rgba(190, 151, 82, 0.78);
  background: rgba(25, 20, 13, 0.58);
  box-shadow:
    0 0 0 1px rgba(190, 151, 82, 0.16),
    0 0 18px rgba(190, 151, 82, 0.11);
}

.qj-form-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top:20px;
}

.qj-btn {
  display: block;
  border-radius: 30px;
  border: 1px solid #B89C6F;
  background: none;
  backdrop-filter: blur(15px);
  width:144px;
  height:56px;
  line-height:56px;
  text-align:center;
  color:#B89C6F;
}

.qj-btn:hover {
  background:#B89C6F;
  color:#fff;
}



.mask{
  /* background: rgba(255, 0, 0, 0.5);
  position: relative;
  width:100px;
  z-index:999; */
}

/* ========================================
   Responsive Layout
   ======================================== */

/* Hamburger menu button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 20;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--hero-ink);
  border-radius: 2px;
  transition: transform 300ms ease, opacity 300ms ease;
}
.hamburger span + span { margin-top: 5px; }
.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Tablet breakpoint — ≤1200px */
@media screen and (max-width: 1200px) {
  .nav-menu {
    gap: clamp(32px, 5vw, 80px);
  }
  .footer-nav {
    gap: clamp(24px, 4vw, 80px);
  }
  .site-footer{
    padding:0 20px;
  }
}

/* Mobile breakpoint — ≤768px */
@media screen and (max-width: 768px) {
    .xwidth{
        padding: 0 clamp(16px, 4vw, 40px);
    }
  /* ---- Loading ---- */
  .site-loading {
    width: 100vw;
    height: 100vh;
  }
  .site-loading-brand {
    font-size: 36px !important;
  }

  /* ---- Navigation (hamburger mode) ---- */
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 80vw);
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background: rgba(2, 7, 17, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%);
    opacity: 0;
    transition: transform 360ms cubic-bezier(0.19, 1, 0.22, 1),
                opacity 360ms ease;
    z-index: 10;
    pointer-events: none;
  }
  .nav-menu.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-item {
    font-size: 18px;
    min-width: auto;
    height: auto;
    padding: 8px 0;
  }
  .nav-item::before,
  .nav-item::after {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: scaleX(0);
  }
  .nav-item::after {
    display: none;
  }
  .nav-item:hover::before,
  .nav-item:focus-visible::before,
  .nav-item.is-active::before {
    transform: scaleX(1);
  }

  /* ---- Hero ---- */
  .hero-section {
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero-title {
    font-size: clamp(36px, 10vw, 72px) !important;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: clamp(20px, 5.5vw, 40px) !important;
  }
  .hero-divider {
    width: min(280px, 68vw);
    margin-top: 16px;
  }
  .divider-line {
    width: min(100px, 29vw);
  }
  .scroll-cue-container {
    bottom: 24px;
  }

  /* ---- Earth section ---- */
  .earth-copy {
    width: min(90vw, 400px);
  }
  .earth-copy-line {
    font-size: clamp(22px, 6vw, 58px) !important;
    white-space: normal;
  }
  .earth-light-seam {
    height: min(40vh, 360px);
  }

  /* ---- Realm cards ---- */
    

 .realm-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    width: calc(100% - 40px);
    /*padding-top: clamp(80px, 16vh, 220px);*/
    /*padding-bottom: 40px;*/
  }
  .realm-card{
    width:100%;
    display:flex;
    flex-direction: row;
    padding:16px;
    gap:20px;
    justify-content:space-between;
    position:relative;
  }
  .realm-card .realm-card-top{
      width:80px;
      height:80px;
  }
  .realm-card .realm-card-gua{
      display:none;
  }
  .realm-card-gua1 img{
  animation: guaAutoSpin 22s linear infinite;
}
  .realm-card svg{
      width:80px;
      height:80px;
  }
  .realm-card .realm-divider{
    display:none;
  }
  .realm-card-gua1{
      display:block;
  }
  .realm-card .realm-card-heading{
     text-align:left;
  }
  .realm-card .realm-card-text{
     text-align:left;
  }
  .realm-card:nth-child(2){
      margin-top:0;
  }
   /* .realm-card {
    width: 100%;
    min-width: 0;
    padding: 60px 24px 50px;
  }
  .realm-card:nth-child(2) {
    margin-top: 0;
  }
  .realm-card svg {
    width: 140px;
    height: 140px;
  }
  .realm-card-title {
    font-size: 36px;
  }
  .realm-card-heading {
    font-size: 16px;
  }
  .realm-card-text {
    font-size: 14px;
  } */

  /* ---- Human ---- */
  .human-copy {
    font-size: clamp(22px, 6vw, 56px) !important;
    /*width: min(90vw, 600px);*/
  }
  .human-energy-beam {
    height: 30vh;
  }
  .human-ground-glow {
    width: min(80vw, 360px);
    height: min(80px, 10vh);
  }

  /* ---- Daojing pages ---- */
  .dao-hero-copy-title {
    font-size: clamp(36px, 10vw, 64px) !important;
    line-height: 1.3;
  }
  .dao-text-block {
    padding: 0 clamp(16px, 5vw, 40px);
  }
  .dao-text-block div {
    font-size: clamp(28px, 7vw, 48px) !important;
    line-height: 1.4;
    margin-bottom: 24px;
  }
  .dao-text-block p {
    width: 100%;
    font-size: clamp(16px, 4vw, 24px) !important;
    line-height: 1.6;
  }
  .dao-hero-copy p {
    font-size: clamp(14px, 3.8vw, 18px) !important;
    line-height: 1.5;
  }
  .dao-rule-line {
    width: clamp(120px, 40vw, 310px);
  }

  /* ---- Changjing ---- */
  .changjing {
    flex-direction: column;
    gap: 32px;
  }
  .changjing1 {
    width: 100%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    /*background: linear-gradient(180deg, #4D4030 0%, rgba(77, 64, 48, 1) 100%);*/
  }
  .changjing1_a{
      margin:0 20px;
      /*background: linear-gradient(180deg, #4D4030 0%, rgba(77, 64, 48, 1) 100%)*/
  }
  /*.changjing1:nth-child(1) .changjing1_a{*/
  /*    margin:0 60px;*/
  /*}*/
  /*.changjing1:nth-child(2) .changjing1_a{*/
  /*    margin:0 40px;*/
  /*}*/
  .changjing1_4 {
    font-size: clamp(36px, 10vw, 64px) !important;
  }
  .changjing1_2 {
    font-size: clamp(20px, 5vw, 28px) !important;
  }

  /* ---- Qijing ---- */
  .qijing {
    flex-direction: column;
    gap: 32px;
  }
  .qijing1 {
    width: 100%;
    font-size: clamp(24px, 6vw, 48px) !important;
    line-height: 1.4;
  }
  .qj-form-card {
    padding: clamp(24px, 5vw, 60px);
    width: 100%;
  }
  .qj-form-row {
    grid-template-columns: 1fr;
  }

  /* ---- Huajing ---- */
  .huajing_text {
    font-size: clamp(24px, 6vw, 56px) !important;
  }

  /* ---- Footer ---- */
  .site-footer {
    height: auto;
    min-height: 100vh;
    padding-bottom: 20px;
  }
  .footer-cta p {
    font-size: clamp(22px, 6vw, 40px) !important;
    line-height: 1.4;
  }
  .footer-cta a {
    margin-top: 32px;
  }
  .footer-main {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    align-items: flex-start;
  }
  .footer-brand a {
    font-size: 24px;
  }
  .footer-contact {
    width: 100%;
  }
  .footer-contact1 {
    font-size: 20px;
  }
  .footer-nav {
    gap: 24px;
    flex-wrap: wrap;
    padding: 14px 0;
    justify-content: center;
  }
  .footer-record {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    padding-bottom:0;
  }
}

/* Small mobile breakpoint — ≤480px */
@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 32px !important;
  }
  .hero-subtitle {
    font-size: 18px !important;
  }
  /*.realm-card {*/
  /*  padding: 40px 16px 36px;*/
  /*}*/
  /*.realm-card svg {*/
  /*  width: 120px;*/
  /*  height: 120px;*/
  /*}*/
  /*.realm-card-title {*/
  /*  font-size: 30px;*/
  /*}*/
  /*form*/
  .qijing{
      gap:12px
  }
  .qj-form-card input{
      height:34px;
  }
  .qj-form-card label{
      margin-bottom:0;
  }
  .qj-btn {
    width: 100%;
  }
  .qj-form-card {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap:20px;
  }
  .qj-form-card textarea{
      height:80px;
  }
  .qj-form-actions{
      padding-top:0;
  }
  .footer-nav a {
    font-size: 14px;
  }
}