

:root,
html[data-theme="dark"] {
  --zh-bg: #070a0d;
  --zh-surface: #10151b;
  --zh-deep: #050608;
  --zh-ink: #f2f0ea;
  --zh-ink-soft: #c8c4bb;
  --zh-muted: #8a8680;
  --zh-line: rgba(242, 240, 234, 0.1);
  --zh-line-strong: rgba(242, 240, 234, 0.22);
  --zh-accent: #c4a46a;
  --zh-accent-soft: #d4b87e;
  --zh-live: #3ddc97;
  --zh-header-bg: rgba(7, 10, 13, 0.88);
  --zh-hero-veil: rgba(5, 6, 8, 0.78);
  --zh-shadow: rgba(0,0,0,0.45);
  --zh-font-brand: "Syne", "Figtree", sans-serif;
  --zh-font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --zh-font-body: "Figtree", "Segoe UI", sans-serif;
  --zh-max: 1180px;
  --zh-header: 64px;
  --zh-topbar: 34px;
  --zh-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --zh-radius: 4px;
}

html[data-theme="light"] {
  --zh-bg: #ece8e1;
  --zh-surface: #f7f4ef;
  --zh-deep: #1a1d22;
  --zh-ink: #161616;
  --zh-ink-soft: #3a3a3a;
  --zh-muted: #6a655c;
  --zh-line: #d2cbc0;
  --zh-line-strong: #161616;
  --zh-accent: #b8923f;
  --zh-accent-soft: #c9a15b;
  --zh-live: #1f9d63;
  --zh-header-bg: rgba(247, 244, 239, 0.94);
  --zh-hero-veil: rgba(247, 244, 239, 0.82);
  --zh-shadow: rgba(0,0,0,0.08);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--zh-bg);
  color: var(--zh-ink);
  font-family: var(--zh-font-body);
  font-size: 15.5px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}


body::before { display: none !important; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--zh-font-body);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  color: var(--zh-ink);
}

.zh-kicker {
  display: inline-block;
  font-family: var(--zh-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zh-muted);
  margin-bottom: 12px;
}

.zh-section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 12px;
  font-weight: 600;
}

.zh-section-title--serif {
  font-family: var(--zh-font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.zh-section-lead {
  max-width: 520px;
  color: var(--zh-muted);
  margin: 0 0 32px;
  font-size: 1.05rem;
}

.zh-section-head { margin-bottom: 36px; }
.zh-section-head.center { text-align: center; }
.zh-section-head.center .zh-section-lead { margin-inline: auto; }

.zh-wrap {
  width: min(100% - 48px, var(--zh-max));
  margin-inline: auto;
}

.main-layout { min-height: 40vh; }
.content { padding: 0; }


.zh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  background: var(--zh-accent);
  color: #15181d;
  border: 1px solid var(--zh-accent);
  border-radius: var(--zh-radius);
  font-family: var(--zh-font-body);
  font-size: 0.92rem;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.25s var(--zh-ease), color 0.25s var(--zh-ease), border-color 0.25s var(--zh-ease), transform 0.25s var(--zh-ease);
}

.zh-btn:hover {
  background: var(--zh-accent-soft);
  border-color: var(--zh-accent-soft);
  color: #15181d;
  transform: translateY(-1px);
}

.zh-btn--ghost {
  background: transparent;
  color: var(--zh-accent);
  border-color: var(--zh-accent);
}

.zh-btn--ghost:hover {
  background: rgba(196, 164, 106, 0.1);
  color: var(--zh-accent-soft);
  border-color: var(--zh-accent-soft);
}



.zh-header,
body > header.zh-header {
  position: sticky;
  top: 0;
  z-index: 5000;
  background: rgba(7, 10, 13, 0.97);
  backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid var(--zh-line);
}
[data-theme="light"] .zh-header,
[data-theme="light"] body > header.zh-header {
  background: rgba(247, 244, 239, 0.97);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, var(--zh-max));
  margin: 0 auto;
  min-height: var(--zh-topbar);
  font-size: 0.78rem;
  color: var(--zh-muted);
  border-bottom: 1px solid var(--zh-line);
}

.top-left, .top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--zh-muted);
  letter-spacing: 0.02em;
}

.top-mark {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 1px solid var(--zh-line-strong);
  font-family: var(--zh-font-brand);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--zh-ink);
}

.top-sep { opacity: 0.35; }

.bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 48px, var(--zh-max));
  margin: 0 auto;
  min-height: var(--zh-header);
}

a.logo {
  font-family: var(--zh-font-brand);
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--zh-ink);
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-transform: uppercase;
  line-height: 1;
}

a.logo span {
  font-family: var(--zh-font-brand);
  font-size: 0.58em;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-left: 8px;
  color: var(--zh-accent);
  vertical-align: 0.12em;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 2px;
  min-width: 0;
}

.nav > a,
.nav .dropbtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 11px;
  color: var(--zh-ink-soft);
  font-size: 0.9rem;
  font-weight: 550;
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav .dropbtn { user-select: none; }

.nav > a:hover,
.nav .dropbtn:hover { color: var(--zh-ink); }

.nav > a.is-active {
  color: var(--zh-ink);
}

.nav > a.is-active::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 4px;
  height: 1.5px;
  background: var(--zh-accent);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown .drop-chevron {
  font-size: 9px;
  opacity: 0.4;
  margin-left: 2px;
}
.nav-dropdown.is-active .dropbtn,
.nav-dropdown.dd-open .dropbtn {
  color: var(--zh-ink);
}
.nav-dropdown.is-active .dropbtn::after,
.nav-dropdown.dd-open .dropbtn::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 4px;
  height: 1.5px;
  background: var(--zh-accent);
}

.nav-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--zh-line-strong);
  border-radius: var(--zh-radius);
  color: var(--zh-ink);
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.nav-discord:hover {
  border-color: var(--zh-accent);
  color: var(--zh-accent);
  background: rgba(196, 164, 106, 0.06);
}

.desktop-auth, .cart, .user-btn, .balance-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--zh-ink-soft);
  font-size: 0.8rem;
  font-weight: 550;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px 0;
}

.desktop-auth:hover, .cart:hover, .user-btn:hover { color: var(--zh-ink); }

.cart { position: relative; padding-left: 4px; }
.cart-count {
  position: absolute;
  top: -5px; right: -9px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--zh-accent);
  color: #15181d;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.user-dropdown, .balance-dropdown { position: relative; }

.user-dropdown-content,
.balance-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 190px;
  background: var(--zh-surface);
  border: 1px solid var(--zh-line);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  z-index: 40;
}

.user-dropdown:hover .user-dropdown-content,
.balance-dropdown:hover .balance-dropdown-content,
.user-dropdown.is-open .user-dropdown-content,
.balance-dropdown.is-open .balance-dropdown-content { display: block; }


.user-dropdown-content::before,
.balance-dropdown-content::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.user-dropdown-inner a,
.balance-dropdown-content-inner a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--zh-ink-soft);
  border-bottom: 1px solid var(--zh-line);
}

.user-dropdown-inner a:hover { background: #3a414a; color: var(--zh-ink); }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--zh-line);
  background: var(--zh-surface);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px; height: 1.5px;
  background: var(--zh-ink);
  display: block;
}

.mega-dropdown-portal {
  display: none;
  position: fixed;
  top: calc(var(--zh-header) + var(--zh-topbar));
  z-index: 900;
  padding-top: 8px;
}
.mega-dropdown-portal.dd-open { display: block; }

.mega-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 12px;
  background: var(--zh-surface);
  border: 1px solid var(--zh-line);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.mega-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: var(--zh-radius);
}
.mega-item:hover { background: #3a414a; }
.mega-item h4 {
  font-family: var(--zh-font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 3px;
}
.mega-item p { margin: 0; font-size: 0.8rem; color: var(--zh-muted); }

.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1100;
}
.mobile-overlay.open,
.mobile-overlay.is-open { display: block; }

.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(100%, 340px);
  height: 100%;
  background: var(--zh-surface);
  border-left: 1px solid var(--zh-line);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s var(--zh-ease);
  overflow: auto;
}
.mobile-drawer.open,
.mobile-drawer.is-open { transform: none; }

.mobile-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--zh-line);
}
.mobile-drawer-close {
  width: 38px; height: 38px;
  border: 1px solid var(--zh-line);
  background: var(--zh-surface);
  cursor: pointer;
}
.mobile-drawer-body { padding: 10px; }
.mobile-nav-link, .mobile-acc-btn {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 13px 10px;
  border: 0;
  background: none;
  color: var(--zh-ink-soft);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.mobile-acc-panel { display: none; padding: 0 0 8px 26px; }
.mobile-acc.open .mobile-acc-panel { display: grid; }
.mobile-acc-panel a { padding: 9px 6px; color: var(--zh-muted); font-size: 0.9rem; }
.mobile-drawer-divider { height: 1px; background: var(--zh-line); margin: 10px 0; }
.mobile-auth { display: grid; gap: 8px; padding: 8px; }
.btn-login, .btn-register {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid var(--zh-ink);
  background: var(--zh-surface);
  color: var(--zh-ink);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.btn-register { background: var(--zh-ink); color: #fff; }
.mobile-user-info {
  padding: 12px;
  border: 1px solid var(--zh-line);
  margin-bottom: 8px;
  background: #2f353d;
}


.hero-section {
  position: relative;
  min-height: min(86vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--zh-deep);
  color: #f2efe8;
}
body.has-hero .hero-section--code {
  min-height: calc(100svh - var(--zh-topbar) - var(--zh-header));
  min-height: calc(100dvh - var(--zh-topbar) - var(--zh-header));
}

.hero-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-photo-wrap .hero-photo,
.hero-video,
.hero-canvas,
.hero-section > img.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-photo-wrap .hero-photo {
  filter: saturate(0.72) contrast(1.08) brightness(0.55);
  transform: scale(1.06);
  animation: heroDrift 28s ease-in-out infinite alternate;
}

.hero-section--code {
  background: #05070a;
}
.hero-section--code .hero-photo-wrap { display: none !important; }
.hero-section--code .hero-video {
  display: block !important;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.42;
  filter: saturate(0.55) contrast(1.05) brightness(0.5);
  transform: scale(1.06);
  animation: heroDrift 28s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  mix-blend-mode: normal;
  background: transparent;
}
.hero-section--code .hero-canvas {
  background: transparent !important;
  pointer-events: auto !important;
  cursor: default;
  z-index: 2 !important;
}
.zh-empty-vds {
  border: 1px solid var(--zh-line);
  background: var(--zh-surface);
  padding: 36px 28px;
  text-align: center;
  color: var(--zh-muted);
}
.zh-empty-vds p { margin: 0 0 18px; }
.zh-empty-vds strong { color: var(--zh-ink); }

.hero-section::after { content: none !important; display: none !important; }

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(5,7,10,0.78) 0%, rgba(5,7,10,0.45) 42%, rgba(5,7,10,0.2) 70%, rgba(5,7,10,0.55) 100%),
    linear-gradient(180deg, rgba(5,7,10,0.1) 0%, rgba(5,7,10,0.72) 100%);
  pointer-events: none;
}
.hero-section--code .hero-shade {
  background:
    linear-gradient(105deg, rgba(5,7,10,0.55) 0%, rgba(5,7,10,0.22) 50%, rgba(5,7,10,0.08) 100%),
    linear-gradient(180deg, rgba(5,7,10,0.02) 0%, rgba(5,7,10,0.55) 100%);
}

body.has-hero .hero-section--code {
  align-items: center !important;
}
.hero-stage {
  position: relative;
  z-index: 3;
  width: min(100% - 48px, var(--zh-max));
  margin: 0 auto;
  padding: 40px 0;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 280px) minmax(240px, 1fr);
  gap: 28px;
  align-items: center;
  pointer-events: none; 
}
.hero-content {
  position: relative;
  z-index: 3;
  width: auto;
  margin: 0;
  padding: 0;
  max-width: 420px;
  color: #f2efe8;
  justify-self: start;
  pointer-events: auto;
}
.hero-brand {
  font-size: clamp(2.4rem, 5vw, 3.6rem) !important;
  margin-bottom: 8px !important;
}
.hero-slogan {
  margin: 0 0 12px;
  font-family: var(--zh-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--zh-accent);
  animation: zhIn 0.7s var(--zh-ease) both;
}
.hero-title {
  max-width: 14ch !important;
  font-size: clamp(1.7rem, 3vw, 2.4rem) !important;
}
.hero-mascot {
  position: relative;
  width: min(100%, 280px);
  margin: 0 auto;
  display: grid;
  place-items: center;
  min-height: 300px;
  animation: zhIn 0.85s 0.08s var(--zh-ease) both;
}
.hero-mascot-img {
  position: relative;
  z-index: 2;
  width: min(220px, 70vw);
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.55));
  animation: hmFloat 4.5s ease-in-out infinite;
}
.hero-mascot-tag {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  font-family: Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(196,164,106,0.7);
}
.hero-mascot-orbit {
  position: absolute;
  inset: 8% 6%;
  z-index: 1;
  pointer-events: none;
}
.hm-ring {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(120,200,180,0.22);
  border-radius: 50%;
}
.hm-ring-1 { animation: hmSpin 10s linear infinite; }
.hm-ring-2 { inset: 8%; border-color: rgba(196,164,106,0.18); animation: hmSpinRev 14s linear infinite; }
.hm-ring-3 { inset: 28%; border-style: dashed; border-color: rgba(120,200,180,0.16); animation: hmSpin 18s linear infinite; }
.hm-pulse {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #78c8b4;
  box-shadow: 0 0 12px rgba(120,200,180,0.8);
  animation: hmPulse 2.4s ease-out infinite;
}
.hm-p1 { top: 18%; left: 50%; }
.hm-p2 { top: 50%; right: 12%; animation-delay: .4s; background: var(--zh-accent); }
.hm-p3 { bottom: 22%; left: 46%; animation-delay: .8s; }
.hm-p4 { top: 42%; left: 10%; animation-delay: 1.2s; background: var(--zh-accent); }
.hm-beam {
  position: absolute;
  height: 1px;
  width: 42%;
  left: 50%;
  top: 50%;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(120,200,180,0.55), transparent);
  animation: hmBeam 2.8s ease-in-out infinite;
}
.hm-b1 { transform: rotate(-28deg); }
.hm-b2 { transform: rotate(42deg); animation-delay: .5s; background: linear-gradient(90deg, rgba(196,164,106,0.5), transparent); }
.hm-b3 { transform: rotate(155deg); animation-delay: 1s; }
@keyframes hmFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes hmSpin { to { transform: rotate(360deg); } }
@keyframes hmSpinRev { to { transform: rotate(-360deg); } }
@keyframes hmPulse {
  0% { transform: scale(0.7); opacity: 0.9; }
  70% { transform: scale(2.2); opacity: 0; }
  100% { opacity: 0; }
}
@keyframes hmBeam {
  0%, 100% { opacity: 0.15; width: 28%; }
  50% { opacity: 0.75; width: 48%; }
}
.hero-services {
  border: 1px solid rgba(242,240,234,0.12);
  background: rgba(7,10,13,0.52);
  backdrop-filter: blur(10px);
  padding: 22px 22px 18px;
  animation: zhIn 0.8s 0.15s var(--zh-ease) both;
  justify-self: end;
  width: min(100%, 320px);
}
.hero-services-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zh-accent);
  margin-bottom: 14px;
}
.hero-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.hero-services-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(242,240,234,0.9);
  font-size: 0.94rem;
  line-height: 1.4;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(242,240,234,0.08);
}
.hero-services-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.hs-dot {
  width: 7px; height: 7px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--zh-accent);
  box-shadow: 0 0 0 3px rgba(196,164,106,0.15);
  flex-shrink: 0;
}
@media (max-width: 980px) {
  .hero-stage {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: left;
  }
  .hero-content, .hero-services { justify-self: stretch; max-width: none; width: 100%; }
  .hero-mascot { order: -1; min-height: 240px; }
}

.hero-brand {
  margin: 0 0 10px;
  font-family: var(--zh-font-brand);
  font-size: clamp(3.4rem, 9vw, 6.4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-transform: uppercase;
  color: #fff;
  animation: zhIn 0.75s var(--zh-ease) both;
}

.hero-eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--zh-accent);
  animation: zhIn 0.7s var(--zh-ease) both;
}

.hero-content h1,
.hero-title {
  font-family: var(--zh-font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 500;
  max-width: 18ch;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #f7f3ea;
  animation: zhIn 0.7s 0.05s var(--zh-ease) both;
}

.hero-content > p,
.hero-lead {
  color: rgba(242,239,232,0.78);
  margin: 0 0 28px;
  max-width: 46ch;
  font-size: 1.02rem;
  line-height: 1.65;
  animation: zhIn 0.8s 0.12s var(--zh-ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: zhIn 0.8s 0.18s var(--zh-ease) both;
}

.hero-section .zh-btn {
  background: var(--zh-accent);
  border-color: var(--zh-accent);
  color: #15181d;
}

.hero-section .zh-btn:hover {
  background: var(--zh-accent-soft);
  border-color: var(--zh-accent-soft);
  color: #15181d;
}

.hero-section .zh-btn--ghost {
  background: transparent;
  color: var(--zh-accent);
  border-color: var(--zh-accent);
}

.hero-section .zh-btn--ghost:hover {
  background: rgba(196,164,106,0.1);
  color: var(--zh-accent-soft);
}

.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(242,239,232,0.7);
  animation: zhIn 0.8s 0.24s var(--zh-ease) both;
}

.hero-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--zh-live);
  box-shadow: 0 0 0 0 rgba(61,220,151,0.55);
  animation: livePulse 1.8s ease-out infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(61,220,151,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(61,220,151,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,220,151,0); }
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.12) translate3d(-1.8%, -1.2%, 0); }
}


.zh-home { padding-bottom: 40px; }

.zh-block {
  padding: 80px 0;
  background: transparent;
}

.zh-block:nth-child(even) {
  background: rgba(30, 35, 41, 0.06);
  border-top: 1px solid var(--zh-line);
  border-bottom: 1px solid var(--zh-line);
}


.zh-sell {
  border-top: 1px solid var(--zh-line);
  background: #0a0e12;
}

.zh-sell .zh-section-head { margin-bottom: 40px; }

.zh-sell-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--zh-line);
}

.zh-sell-item {
  padding: 28px 26px 8px 0;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid var(--zh-line);
  padding-right: 28px;
  margin-right: 28px;
  transition: opacity 0.25s;
}

.zh-sell-item:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.zh-sell-item:hover { opacity: 0.92; }

.zh-sell-num {
  font-family: var(--zh-font-body);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  color: var(--zh-accent);
}

.zh-sell-item h3 {
  font-family: var(--zh-font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--zh-accent);
  letter-spacing: -0.01em;
}

.zh-sell-item p {
  margin: 0;
  color: var(--zh-muted);
  flex: 1;
  font-size: 0.94rem;
  line-height: 1.55;
}

.zh-sell-item a {
  font-size: 0.86rem;
  font-weight: 650;
  color: var(--zh-ink-soft);
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}

.zh-sell-item a:hover {
  color: var(--zh-accent);
  border-color: var(--zh-accent);
}


.zh-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.zh-pillar {
  background: var(--zh-surface);
  border: 1px solid var(--zh-line);
  padding: 24px 22px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s, transform 0.25s var(--zh-ease);
}

.zh-pillar:hover {
  border-color: var(--zh-line-strong);
  transform: translateY(-2px);
}

.zh-pillar-media { display: none; }

.zh-pillar-index {
  font-size: 0.8rem;
  color: var(--zh-accent);
  font-weight: 700;
}

.zh-pillar h3 {
  font-family: var(--zh-font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--zh-accent);
}

.zh-pillar p {
  margin: 0;
  color: var(--zh-muted);
  flex: 1;
  font-size: 0.95rem;
}

.zh-pillar a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--zh-ink-soft);
  border-bottom: 1px solid transparent;
  align-self: flex-start;
}

.zh-pillar a:hover {
  color: var(--zh-accent);
  border-color: var(--zh-accent);
}


.pricing-section { padding: 0; }
.pricing-section + .pricing-section { margin-top: 40px; }
.zh-pkg-cat {
  font-size: 0.9rem;
  margin-bottom: 18px;
  color: var(--zh-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--zh-font-body);
  font-weight: 650;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  position: relative;
  background: var(--zh-surface);
  border: 1px solid var(--zh-line);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s var(--zh-ease);
}

.pricing-card:hover {
  border-color: #999;
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: var(--zh-ink);
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.pricing-card .zh-plan-tag {
  position: absolute;
  top: 0; right: 0;
  background: var(--zh-ink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 10px;
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  padding-right: 70px;
}

.pricing-card .price {
  font-family: var(--zh-font-display);
  font-size: 2.3rem;
  font-weight: 650;
  margin-bottom: 18px;
}

.pricing-card .price span {
  font-size: 0.5em;
  color: var(--zh-muted);
}

.pricing-card ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  flex: 1;
}

.pricing-card li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--zh-line);
  color: var(--zh-ink-soft);
  font-size: 0.9rem;
}

.pricing-card li i { margin-top: 4px; font-size: 0.75rem; }
.pricing-card li .fa-times { opacity: 0.35; }

.btn-pkg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--zh-ink);
  background: transparent;
  color: var(--zh-ink);
  font-weight: 700;
  font-size: 0.9rem;
  transition: 0.25s;
}
.btn-pkg:hover { background: var(--zh-ink); color: #fff; }


.zh-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.zh-split.reverse .zh-split-copy { order: 2; }

.zh-split-panel {
  min-height: 360px;
  border: 1px solid var(--zh-line);
  background: var(--zh-deep);
  overflow: hidden;
  position: relative;
}

.zh-split-panel img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  filter: none;
}

.zh-split-panel::after { display: none; }

.zh-spec-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.zh-spec-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--zh-line);
  font-size: 0.95rem;
}

.zh-spec-list strong {
  color: var(--zh-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}


.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature {
  background: var(--zh-surface);
  border: 1px solid var(--zh-line);
  padding: 24px;
}

.icon-circle {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--zh-line);
  margin-bottom: 14px;
  background: #2f353d;
}

.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { margin: 0; color: var(--zh-muted); font-size: 0.95rem; }


.stats-bar {
  background: var(--zh-deep);
  color: #f2efe8;
  border-top: 1px solid #2a3038;
  border-bottom: 1px solid #2a3038;
}
.stats-bar .stat-label { color: rgba(242,239,232,0.6); }
.stats-bar .stat-item { border-right-color: #2a3038; }

.stats-inner {
  width: min(100% - 48px, var(--zh-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 32px 18px;
  border-right: 1px solid var(--zh-line);
}
.stat-item:last-child { border-right: 0; }

.stat-num {
  font-family: var(--zh-font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 650;
}

.stat-label {
  margin-top: 4px;
  color: var(--zh-muted);
  font-size: 0.85rem;
}


.refs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ref-card {
  background: var(--zh-surface);
  border: 1px solid var(--zh-line);
  padding: 22px;
}

.ref-quote {
  font-family: var(--zh-font-display);
  font-size: 2rem;
  line-height: 1;
  color: #ccc;
  margin-bottom: 6px;
}

.ref-img-wrap {
  width: 48px; height: 48px;
  border: 1px solid var(--zh-line);
  margin-bottom: 12px;
  overflow: hidden;
  background: #f3f3f4;
}
.ref-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: none;
}
.ref-img-placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  color: var(--zh-muted);
  font-size: 0.75rem;
}
.ref-name {
  font-family: var(--zh-font-display);
  font-weight: 650;
  margin-bottom: 6px;
}
.ref-desc { color: var(--zh-muted); font-size: 0.9rem; }


.zh-cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, #2a3038 0%, var(--zh-deep) 100%);
  color: #f2efe8;
  border-top: 1px solid #2a3038;
}
.zh-cta .zh-kicker { color: var(--zh-accent); }
.zh-cta h2 { color: #f7f3ea; }
.zh-cta p { color: rgba(242,239,232,0.68); }
.zh-cta .zh-btn {
  background: var(--zh-accent);
  border-color: var(--zh-accent);
  color: #15181d;
}
.zh-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}
.zh-cta p {
  color: var(--zh-muted);
  max-width: 460px;
  margin: 0 auto 22px;
}


.cat-page {
  width: min(100% - 48px, var(--zh-max));
  margin: 0 auto;
  padding: 36px 0 72px;
}
.cat-page.is-home {
  width: 100%;
  max-width: none;
  padding: 0;
}

.cat-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--zh-line);
}
.cat-topbar h2 { font-size: 1.8rem; }
.cat-sub { color: var(--zh-muted); font-size: 0.9rem; margin-top: 4px; }

.sort-form select {
  background: var(--zh-surface);
  border: 1px solid var(--zh-line);
  padding: 10px 12px;
  min-width: 200px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--zh-surface);
  border: 1px solid var(--zh-line);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s var(--zh-ease);
}
.product-card:hover {
  border-color: #999;
  transform: translateY(-2px);
}

.pc-thumb-wrap {
  display: block;
  aspect-ratio: 16 / 10;
  background: #ececec;
  overflow: hidden;
  border-bottom: 1px solid var(--zh-line);
}
.pc-thumb-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: none;
}
.pc-thumb-empty {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  color: var(--zh-muted);
  font-size: 0.8rem;
}
.pc-body { padding: 16px; }
.pc-cat-tag {
  font-size: 0.75rem;
  color: var(--zh-muted);
  margin-bottom: 6px;
  font-weight: 700;
}
.pc-name {
  font-family: var(--zh-font-display);
  font-size: 1.15rem;
  font-weight: 650;
  margin-bottom: 8px;
}
.pc-price {
  font-family: var(--zh-font-display);
  font-size: 1.35rem;
  font-weight: 650;
  margin-bottom: 12px;
}
.pc-price small { font-size: 0.55em; color: var(--zh-muted); }

.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--zh-ink);
  color: var(--zh-ink);
  font-weight: 700;
  font-size: 0.9rem;
  transition: 0.25s;
}
.btn-buy:hover { background: var(--zh-ink); color: #fff; }

.welcome { display: none; }


.zh-footer {
  border-top: 1px solid #2a3038;
  padding: 36px 0;
  background: #101317;
  color: #f2efe8;
}
.zh-footer p { color: rgba(242,239,232,0.55) !important; }
.zh-footer-inner {
  width: min(100% - 48px, var(--zh-max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.zh-footer strong {
  font-family: var(--zh-font-brand);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 6px;
}
.zh-footer strong span { color: var(--zh-accent); font-size: 0.72em; letter-spacing: 0.16em; margin-left: 6px; }
.zh-footer p { margin: 0; color: var(--zh-muted); font-size: 0.9rem; }


.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--zh-ease), transform 0.7s var(--zh-ease);
}
.reveal.visible { opacity: 1; transform: none; }

@keyframes zhIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .nav,
  .nav-discord { display: none; }
  .menu-toggle { display: inline-flex; }
  .auth-text { display: none; }
  .zh-sell-rail {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .zh-sell-item {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
    border-bottom: 1px solid var(--zh-line);
    padding: 24px 0;
  }
  .zh-sell-item:nth-child(odd) { padding-right: 20px; }
  .zh-sell-item:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--zh-line); }
  .zh-pillars, .pricing-cards, .features, .refs-grid, .product-grid, .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .zh-split, .zh-split.reverse { grid-template-columns: 1fr; }
  .zh-split.reverse .zh-split-copy { order: 0; }
  .hero-content {
    margin-left: auto;
    margin-right: auto;
    max-width: min(100% - 48px, 560px);
  }
  .stat-item:nth-child(2) { border-right: 0; }
}

@media (max-width: 640px) {
  .top-meta { font-size: 0.7rem; }
  .zh-sell-rail { grid-template-columns: 1fr; }
  .zh-sell-item,
  .zh-sell-item:nth-child(odd),
  .zh-sell-item:nth-child(even) {
    border-left: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .zh-pillars, .pricing-cards, .features, .refs-grid, .product-grid, .stats-inner {
    grid-template-columns: 1fr;
  }
  .stat-item { border-right: 0; border-bottom: 1px solid var(--zh-line); }
  .zh-block { padding: 56px 0; }
  .hero-content { padding: 72px 0 64px; }
  .hero-brand { font-size: clamp(2.8rem, 16vw, 4rem); }
}




.zh-viz--host {
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding: 28px 16px 40px;
}
.zh-viz--dedi, .zh-viz--guard {
  display: grid !important;
  place-items: center;
}
.hero-shade { content: normal; }

.zh-viz {
  display: grid;
  place-items: center;
  isolation: isolate;
}
.zh-viz-label {
  position: absolute;
  left: 14px; bottom: 12px;
  z-index: 3;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(242,239,232,0.72);
}
.zh-viz--lg { min-height: 360px; }
.zh-viz-grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(201,161,91,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,161,91,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  animation: gridShift 12s linear infinite;
  opacity: 0.7;
}
.zh-viz-rack {
  width: 18%;
  height: 62%;
  margin: 0 3%;
  background: linear-gradient(180deg, #2b313a, #171b20);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.35);
  position: relative;
  z-index: 2;
  display: inline-block;
  vertical-align: middle;
  animation: rackGlow 2.8s ease-in-out infinite;
}
.zh-viz-rack::before {
  content: ";
  position: absolute;
  inset: 8px 5px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(110,231,168,0.55) 0 2px,
    transparent 2px 10px
  );
  opacity: 0.55;
}
.zh-viz-rack:nth-child(2) { animation-delay: .4s; height: 70%; }
.zh-viz-rack:nth-child(3) { animation-delay: .8s; height: 58%; }
.zh-viz-rack:nth-child(4) { animation-delay: 1.2s; height: 66%; }

.zh-viz--dedi .zh-viz-machine {
  width: 46%;
  height: 58%;
  background:
    linear-gradient(90deg, #22272e 0 12%, #2f3640 12% 88%, #22272e 88%),
    #1a1f25;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.zh-viz--dedi .zh-viz-machine::before {
  content: ";
  position: absolute;
  inset: 10% 14%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(120,180,255,0.35) 0 3px,
    transparent 3px 12px
  );
}
.zh-viz-pulse {
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(201,161,91,0.35);
  animation: pulseRing 2.6s ease-out infinite;
  z-index: 1;
}
.zh-viz-shield {
  width: 110px; height: 130px;
  clip-path: polygon(50% 0, 100% 18%, 100% 62%, 50% 100%, 0 62%, 0 18%);
  background: linear-gradient(160deg, rgba(201,161,91,0.85), rgba(40,50,60,0.9));
  position: relative;
  z-index: 2;
  box-shadow: 0 0 40px rgba(201,161,91,0.25);
  animation: shieldFloat 3.4s ease-in-out infinite;
}
.zh-viz-shield::after {
  content: ";
  position: absolute;
  inset: 18%;
  clip-path: polygon(50% 0, 100% 18%, 100% 62%, 50% 100%, 0 62%, 0 18%);
  background: rgba(21,24,29,0.55);
}
.zh-viz-scan {
  position: absolute;
  inset: 12% 18%;
  background: linear-gradient(180deg, transparent, rgba(110,231,168,0.35), transparent);
  height: 18%;
  animation: scanY 2.2s linear infinite;
  z-index: 3;
  pointer-events: none;
}

@keyframes gridShift {
  from { background-position: 0 0; }
  to { background-position: 28px 28px; }
}
@keyframes rackGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.18); }
}
@keyframes pulseRing {
  0% { transform: scale(0.7); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}
@keyframes shieldFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes scanY {
  0% { transform: translateY(0); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateY(280%); opacity: 0; }
}

.feature, .ref-card, .product-card {
  background: #2f353d !important;
}

.mega-menu, .mobile-drawer, .user-dropdown-content, .balance-dropdown-content {
  background: #2f353d !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { animation: none; }
  .zh-viz-grid, .zh-viz-rack, .zh-viz-pulse, .zh-viz-shield, .zh-viz-scan, .hero-live-dot { animation: none !important; }
}

.zh-viz--host .zh-viz-rack {
  background: linear-gradient(180deg, #3a4452, #151a21);
  box-shadow: 0 0 18px rgba(90,240,170,0.12);
}
.zh-viz--dedi .zh-viz-machine {
  width: 52%;
  height: 64%;
  border: 1px solid rgba(201,161,91,0.35);
}
.zh-viz--guard .zh-viz-shield {
  width: 120px; height: 140px;
  filter: drop-shadow(0 0 18px rgba(201,161,91,0.35));
}
.zh-block:nth-child(odd) {
  background: rgba(21, 24, 29, 0.08);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.7) contrast(1.05) brightness(0.45);
  transform: scale(1.08);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  background: #05070a;
  mix-blend-mode: normal;
}
.hero-section--code .hero-canvas {
  opacity: 1 !important;
  background: transparent !important;
  mix-blend-mode: normal !important;
  z-index: 1 !important;
  pointer-events: auto !important;
}
.zh-pillar-media img,
.zh-split-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.8s ease;
  animation: mediaDrift 18s ease-in-out infinite alternate;
}
.zh-pillar:hover .zh-pillar-media img,
.zh-split-panel:hover img {
  transform: scale(1.08);
}
@keyframes mediaDrift {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video, .zh-pillar-media img, .zh-split-panel img { animation: none !important; }
}



.zh-theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 10px;
  margin-right: 8px;
  border: 1px solid var(--zh-line);
  border-radius: 999px;
  background: var(--zh-surface);
  color: var(--zh-ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 650;
}
.zh-theme-toggle:hover { border-color: var(--zh-accent); color: var(--zh-accent); }
.theme-icon-light { display: none; }
html[data-theme="light"] .theme-icon-dark { display: none; }
html[data-theme="light"] .theme-icon-light { display: inline-block; }
html[data-theme="dark"] .theme-icon-light { display: none; }
html[data-theme="dark"] .theme-icon-dark { display: inline-block; }
.theme-label { letter-spacing: 0.04em; }

.top-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.zh-wrap { width: min(100% - 40px, var(--zh-max)); }
.zh-block { padding: 64px 0; }
.zh-section-title { font-size: clamp(1.45rem, 2.6vw, 2rem); }
.zh-section-lead { font-size: 0.98rem; max-width: 480px; margin-bottom: 28px; }

.hero-content {
  max-width: 420px !important;
  padding: 0 !important;
}
.hero-stage {
  width: min(100% - 48px, var(--zh-max)) !important;
  margin: 0 auto !important;
  padding: 40px 0 !important;
  align-items: center !important;
  pointer-events: none !important;
}
.hero-content { pointer-events: auto !important; }
.hero-brand {
  color: #fff !important;
}
.hero-content h1,
.hero-title {
  font-family: var(--zh-font-display) !important;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem) !important;
  font-weight: 500 !important;
  color: #f7f3ea !important;
}
.hero-content > p,
.hero-lead { color: rgba(247,243,234,0.78) !important; font-size: 1.02rem !important; }
html[data-theme="light"] .hero-content h1,
html[data-theme="light"] .hero-title { color: #15181d !important; }
html[data-theme="light"] .hero-brand { color: #15181d !important; }
html[data-theme="light"] .hero-content > p,
html[data-theme="light"] .hero-lead { color: rgba(22,22,22,0.78) !important; }
html[data-theme="light"] .hero-eyebrow { color: #8a6a2a; }
html[data-theme="light"] .hero-live { color: rgba(22,22,22,0.6); }
html[data-theme="light"] .hero-section .zh-btn--ghost {
  color: var(--zh-accent);
  border-color: var(--zh-accent);
}

.hero-photo-wrap { z-index: 0; opacity: 1 !important; }
.hero-video { display: none !important; }
.hero-section--code .hero-video { display: block !important; }
.hero-photo-wrap .hero-photo,
.hero-photo {
  filter: saturate(0.72) contrast(1.08) brightness(0.55) !important;
}
html[data-theme="light"] .hero-photo-wrap .hero-photo,
html[data-theme="light"] .hero-photo {
  filter: saturate(0.75) contrast(1.02) brightness(0.78) !important;
}
html[data-theme="light"] .hero-shade {
  background:
    linear-gradient(105deg, rgba(247,244,239,0.92) 0%, rgba(247,244,239,0.7) 42%, rgba(247,244,239,0.15) 70%, rgba(247,244,239,0.25) 100%) !important;
}

.zh-pillars { gap: 14px; }
.zh-pillar {
  border-radius: var(--zh-radius);
  overflow: hidden;
  background: var(--zh-surface);
}
.zh-pillar-media { display: none !important; }
.zh-pillar h3 { font-size: 1.2rem; }
.zh-pillar p { font-size: 0.92rem; }
.zh-sell { background: #0a0e12 !important; }

.pricing-cards { gap: 14px; }
.pricing-card {
  border-radius: var(--zh-radius);
  background: var(--zh-surface);
}
.pricing-card .price { font-size: 2rem; }

.zh-split { gap: 32px; }
.zh-split-panel {
  min-height: 300px;
  border-radius: var(--zh-radius);
  background: var(--zh-deep);
}
.zh-split-panel img { min-height: 300px; border-radius: var(--zh-radius); }

.stats-bar { background: var(--zh-deep); }
html[data-theme="light"] .stats-bar { background: #1a1d22; color: #f0ebe3; }
html[data-theme="light"] .stats-bar .stat-label { color: rgba(240,235,227,0.6); }

.zh-cta { background: linear-gradient(180deg, #1c2128 0%, var(--zh-deep) 100%); }
html[data-theme="light"] .zh-cta {
  background: linear-gradient(180deg, #22272f 0%, #15181d 100%);
  color: #f0ebe3;
}

.zh-footer { background: var(--zh-deep); border-top-color: var(--zh-line); }
.product-card, .feature, .ref-card {
  background: var(--zh-surface) !important;
  border-radius: var(--zh-radius);
}

.mega-menu, .mobile-drawer, .user-dropdown-content, .balance-dropdown-content {
  background: var(--zh-surface) !important;
  color: var(--zh-ink);
}

.menu-toggle { background: var(--zh-surface); border-color: var(--zh-line); }
.menu-toggle span { background: var(--zh-ink); }

.zh-btn {
  background: var(--zh-accent);
  border-color: var(--zh-accent);
  color: #15181d;
  border-radius: var(--zh-radius);
}
.zh-btn--ghost {
  background: transparent;
  color: var(--zh-ink);
  border-color: var(--zh-line);
}

@media (max-width: 640px) {
  .theme-label { display: none; }
  body.has-hero .hero-section--code {
    min-height: calc(100svh - var(--zh-header)) !important;
    min-height: calc(100dvh - var(--zh-header)) !important;
  }
  .zh-block { padding: 48px 0; }
}



.hero-section {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  overflow: hidden !important;
  display: grid !important;
  align-items: end !important;
  min-height: min(86vh, 760px) !important;
}
.hero-section--code,
body.has-hero .hero-section--code {
  background: #05070a !important;
  min-height: calc(100svh - var(--zh-topbar) - var(--zh-header)) !important;
  min-height: calc(100dvh - var(--zh-topbar) - var(--zh-header)) !important;
}
.hero-photo-wrap {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  z-index: 0 !important;
}
.hero-photo {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  inset: auto !important;
  transform: scale(1.08) !important;
  animation: heroKen 16s ease-in-out infinite alternate !important;
}
.hero-canvas, .hero-shade {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.hero-content {
  position: relative !important;
  z-index: 3 !important;
  width: min(100% - 40px, var(--zh-max)) !important;
  margin-left: max(20px, calc((100% - var(--zh-max)) / 2)) !important;
  margin-right: auto !important;
}
.main-layout, .content, .cat-page.is-home, .zh-home {
  width: 100% !important;
  max-width: none !important;
  overflow-x: clip;
}


.zh-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.zh-plan-card {
  background: linear-gradient(180deg, #151a21 0%, #10151b 100%);
  color: #f2f0ea;
  border: 1px solid rgba(242,240,234,0.1);
  box-shadow: 0 14px 36px rgba(0,0,0,0.28);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s var(--zh-ease);
}
.zh-plan-card:hover {
  border-color: rgba(196,164,106,0.35);
  transform: translateY(-3px);
}
.zh-plan-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: #0a0e13;
  overflow: hidden;
  border-bottom: 1px solid rgba(242,240,234,0.08);
}
.zh-plan-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--zh-ease);
}
.zh-plan-card:hover .zh-plan-media img { transform: scale(1.04); }
.zh-plan-media.is-empty {
  display: grid;
  place-items: center;
  color: rgba(196,164,106,0.35);
  font-size: 1.6rem;
  min-height: 140px;
}
.zh-plan-head { padding: 18px 18px 8px; }
.zh-plan-title {
  font-family: var(--zh-font-body);
  font-size: 1.05rem;
  font-weight: 750;
  color: #f7f3ea !important;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  line-height: 1.3;
}
.zh-plan-billing {
  font-size: 0.75rem;
  color: #8a8680;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.zh-plan-price {
  font-family: var(--zh-font-body);
  font-size: 1.7rem;
  font-weight: 800;
  color: #c4a46a !important;
  line-height: 1.1;
}
.zh-plan-title + .zh-plan-price { margin-top: 10px; }
.zh-plan-price sup {
  font-size: 0.55em;
  color: #c9c3b8;
  margin-left: 2px;
}
.zh-plan-campaign {
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 12px;
  border: 1px solid rgba(196,164,106,0.55);
  border-radius: 999px;
  color: #e2c48a;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(196,164,106,0.08);
}
.zh-plan-features {
  list-style: none;
  margin: 0;
  padding: 6px 18px 2px;
  flex: 1;
}
.zh-plan-feat {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-top: 1px solid rgba(242,240,234,0.07);
  font-size: 0.88rem;
  color: #c9c3b8;
}
.zh-plan-feat i { margin-top: 3px; width: 14px; text-align: center; }
.zh-plan-feat--check i { color: #3ddc97; }
.zh-plan-feat--times { color: #7a7670; }
.zh-plan-feat--times i { color: #d06a6a; }
.zh-plan-feat--accent { color: #7eb6ff; font-weight: 650; }
.zh-plan-feat--accent i { color: #7eb6ff; }
.zh-plan-feat--ok { color: #3ddc97; font-weight: 650; }
.zh-plan-feat--ok i { color: #3ddc97; }
.zh-plan-desc {
  margin: 6px 18px 0;
  font-size: 0.84rem;
  color: #8f8880;
  line-height: 1.5;
}
.zh-plan-actions {
  padding: 16px 18px 18px;
  display: grid;
  gap: 8px;
  margin-top: auto;
}
.zh-plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 4px;
  text-align: center;
}
.zh-plan-btn--ghost {
  background: transparent;
  color: #e8e4dc;
  border: 1px solid rgba(242,240,234,0.18);
}
.zh-plan-btn--ghost:hover {
  border-color: rgba(196,164,106,0.45);
  color: #c4a46a;
}
.zh-plan-btn--solid {
  background: #c4a46a;
  color: #15181d;
  border: 1px solid #c4a46a;
}
.zh-plan-btn--solid:hover {
  background: #d4b87e;
  border-color: #d4b87e;
}
.zh-plan-empty {
  border: 1px solid var(--zh-line);
  background: var(--zh-surface);
  color: var(--zh-muted);
  padding: 28px;
  text-align: center;
}
.zh-page-hero { padding-top: 48px; }
.cat-topbar h2 { color: #f7f3ea !important; }
.cat-sub { color: #8a8680 !important; }
@media (max-width: 1400px) {
  .zh-plan-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1100px) {
  .zh-plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .zh-plan-grid { grid-template-columns: 1fr; }
}
.hero-content { max-width: 420px !important; }


.hero-section--code { min-height: 100vh; }

.hero-stage {
  width: min(100% - 64px, 1340px) !important;
  padding: 20px 0 !important;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center !important;
  pointer-events: none !important;
}
.hero-brand { display: none !important; }

.hero-content { max-width: 560px !important; justify-self: start; pointer-events: auto !important; }
.hero-slogan {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  white-space: nowrap;
}
.hero-slogan-bar {
  width: 34px;
  height: 1px;
  background: var(--zh-accent);
  flex: none;
}
.hero-content .hero-title,
.hero-content h1 {
  max-width: 13ch !important;
  margin: 0 0 20px !important;
  font-size: clamp(2.1rem, 3.7vw, 3.15rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.015em !important;
}
.hero-content .hero-lead {
  max-width: 40ch;
  margin-bottom: 30px !important;
  line-height: 1.65 !important;
}
.hero-actions { gap: 12px; }
.hero-live { margin-top: 26px; letter-spacing: 0.08em; font-size: 0.78rem; }


.hero-metrics {
  display: flex;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(242, 240, 234, 0.12);
}
.hero-metric { flex: 1; padding-right: 14px; }
.hero-metric + .hero-metric {
  padding-left: 18px;
  border-left: 1px solid rgba(242, 240, 234, 0.1);
}
.hero-metric strong {
  display: block;
  font-family: var(--zh-font-body);
  font-size: 1.06rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: #f7f3ea;
}
.hero-metric span {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(242, 240, 234, 0.48);
}


.hero-services {
  position: relative;
  width: min(100%, 380px);
  padding: 0;
  border: 1px solid rgba(242, 240, 234, 0.12);
  background: linear-gradient(180deg, rgba(16, 21, 27, 0.94) 0%, rgba(9, 12, 16, 0.96) 100%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
}
.hero-services::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--zh-accent), transparent);
  opacity: 0.5;
}
.hero-services-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 14px;
}
.hero-services-kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--zh-accent);
}
.hero-services-count {
  padding: 2px 8px;
  border: 1px solid rgba(242, 240, 234, 0.14);
  font-family: Consolas, monospace;
  font-size: 0.68rem;
  color: rgba(242, 240, 234, 0.32);
}
.hero-services-list {
  display: block;
  margin: 0;
  padding: 0 0 6px;
  list-style: none;
}
.hero-services-list li {
  display: block;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(242, 240, 234, 0.07);
}
.hero-services-list li:first-child { border-top: 0; }
.hero-services-list a {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  text-decoration: none;
  transition: background 0.25s var(--zh-ease);
}
.hero-services-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--zh-accent);
  transform: scaleY(0);
  transition: transform 0.25s var(--zh-ease);
}
.hero-services-list a:hover { background: rgba(196, 164, 106, 0.055); }
.hero-services-list a:hover::before { transform: scaleY(1); }
.hs-no {
  font-family: Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(196, 164, 106, 0.5);
  transition: color 0.25s var(--zh-ease);
}
.hero-services-list a:hover .hs-no { color: var(--zh-accent); }
.hs-text { display: block; min-width: 0; }
.hs-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 650;
  color: #f2efe8;
  line-height: 1.3;
}
.hs-text em {
  display: block;
  margin-top: 3px;
  font-style: normal;
  font-size: 0.73rem;
  line-height: 1.4;
  color: rgba(242, 240, 234, 0.44);
}
.hs-go {
  font-size: 0.7rem;
  color: rgba(242, 240, 234, 0.22);
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.25s var(--zh-ease), transform 0.25s var(--zh-ease), color 0.25s var(--zh-ease);
}
.hero-services-list a:hover .hs-go {
  opacity: 1;
  transform: none;
  color: var(--zh-accent);
}
@media (max-width: 900px) {
  .hero-metrics { flex-wrap: wrap; gap: 14px 0; }
}


.hero-section--code .hero-shade { z-index: 1; }
.hero-section--code .hero-canvas { z-index: 2; }
.hero-content::before { content: none; }


html { scrollbar-width: thin; scrollbar-color: rgba(196, 164, 106, 0.4) #0b0f14; }
::-webkit-scrollbar { width: 10px; height: 8px; }
::-webkit-scrollbar-track { background: #0b0f14; }
::-webkit-scrollbar-thumb { background: rgba(196, 164, 106, 0.38); border: 2px solid #0b0f14; }
::-webkit-scrollbar-thumb:hover { background: rgba(196, 164, 106, 0.65); }




.zh-kicker {
  position: relative;
  padding-left: 26px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--zh-accent);
}
.zh-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--zh-accent);
  opacity: 0.7;
}
.zh-section-head.center .zh-kicker { padding-left: 0; }
.zh-section-head.center .zh-kicker::before { display: none; }
.zh-section-head { margin-bottom: 44px; }
.zh-section-lead { max-width: 56ch; color: rgba(242, 240, 234, 0.5); line-height: 1.7; }


.zh-sell-rail {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  border-top: 0;
}
.zh-sell-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 26px 24px 24px;
  min-height: 0;
  border: 1px solid rgba(242, 240, 234, 0.1);
  border-right: 1px solid rgba(242, 240, 234, 0.1);
  background: linear-gradient(180deg, #141920 0%, #0e1218 100%);
  transition: border-color 0.3s var(--zh-ease), transform 0.3s var(--zh-ease), background 0.3s var(--zh-ease);
}
.zh-sell-item:last-child { border-right: 1px solid rgba(242, 240, 234, 0.1); padding-right: 24px; }
.zh-sell-item::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 2px;
  background: var(--zh-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--zh-ease);
}
.zh-sell-item:hover {
  opacity: 1;
  transform: translateY(-4px);
  border-color: rgba(196, 164, 106, 0.28);
}
.zh-sell-item:hover::after { transform: scaleX(1); }
.zh-sell-num {
  font-family: Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(196, 164, 106, 0.55);
}
.zh-sell-ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 2px 0 2px;
  border: 1px solid rgba(196, 164, 106, 0.26);
  background: rgba(196, 164, 106, 0.07);
  color: var(--zh-accent);
  font-size: 0.95rem;
}
.zh-sell-item h3 { color: #f7f3ea; font-size: 1.22rem; }
.zh-sell-item p { font-size: 0.9rem; color: rgba(242, 240, 234, 0.5); }
.zh-sell-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zh-accent);
  border-bottom: 0;
}
.zh-sell-item a i { font-size: 0.7rem; transition: transform 0.25s var(--zh-ease); }
.zh-sell-item a:hover { color: #e0c88e; border-color: transparent; }
.zh-sell-item a:hover i { transform: translateX(4px); }


.zh-split { gap: 56px; align-items: center; }
.zh-split-panel {
  border-radius: 0;
  border: 1px solid rgba(242, 240, 234, 0.1);
  min-height: 380px;
}
.zh-split-panel img { border-radius: 0; min-height: 380px; }
.zh-split-panel::after {
  content: "";
  display: block !important;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 9, 13, 0.1) 0%, rgba(6, 9, 13, 0.62) 100%);
  pointer-events: none;
}
.zh-split-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(242, 240, 234, 0.16);
  background: rgba(8, 11, 15, 0.72);
  backdrop-filter: blur(6px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 240, 234, 0.8);
}
.zh-split-tag span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6fd3b4;
  box-shadow: 0 0 0 3px rgba(111, 211, 180, 0.16);
}
.zh-spec-list { margin-bottom: 30px; }
.zh-spec-list li {
  grid-template-columns: 130px 1fr;
  padding: 13px 0;
  border-top-color: rgba(242, 240, 234, 0.08);
  font-size: 0.93rem;
  color: rgba(242, 240, 234, 0.72);
}
.zh-spec-list li:last-child { border-bottom: 1px solid rgba(242, 240, 234, 0.08); }
.zh-spec-list strong {
  color: var(--zh-accent);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}


.features { gap: 16px; }
.feature {
  position: relative;
  padding: 28px 26px;
  border: 1px solid rgba(242, 240, 234, 0.1) !important;
  background: linear-gradient(180deg, #141920 0%, #0e1218 100%) !important;
  border-radius: 0 !important;
  transition: border-color 0.3s var(--zh-ease), transform 0.3s var(--zh-ease);
}
.feature:hover { border-color: rgba(196, 164, 106, 0.28) !important; transform: translateY(-4px); }
.icon-circle {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid rgba(196, 164, 106, 0.26) !important;
  background: rgba(196, 164, 106, 0.07) !important;
  color: var(--zh-accent);
  font-size: 1rem;
  border-radius: 0;
}
.feature h3 {
  font-family: var(--zh-font-body);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: #f7f3ea;
  margin-bottom: 9px;
}
.feature p { font-size: 0.9rem; line-height: 1.65; color: rgba(242, 240, 234, 0.5); }


.stats-bar {
  background: linear-gradient(180deg, #0d1116 0%, #090c11 100%) !important;
  border-top: 1px solid rgba(242, 240, 234, 0.09);
  border-bottom: 1px solid rgba(242, 240, 234, 0.09);
}
.stat-item {
  padding: 40px 20px;
  border-right: 1px solid rgba(242, 240, 234, 0.08) !important;
}
.stat-item:last-child { border-right: 0 !important; }
.stat-num {
  font-family: var(--zh-font-body);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--zh-accent);
}
.stats-bar .stat-label {
  margin-top: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 240, 234, 0.38) !important;
}


.ref-card {
  position: relative;
  padding: 26px 24px;
  border-radius: 0 !important;
  transition: border-color 0.3s var(--zh-ease), transform 0.3s var(--zh-ease);
}
.ref-card:hover { border-color: rgba(196, 164, 106, 0.28); transform: translateY(-4px); }


.zh-cta {
  padding: 96px 0;
  background: #080b10 !important;
  border-top: 1px solid rgba(242, 240, 234, 0.08);
}
.zh-cta .zh-wrap {
  position: relative;
  padding: 62px 40px;
  border: 1px solid rgba(242, 240, 234, 0.11);
  background:
    radial-gradient(circle at 50% 0%, rgba(196, 164, 106, 0.09), transparent 62%),
    linear-gradient(180deg, #131820 0%, #0b0f14 100%);
}
.zh-cta .zh-wrap::before,
.zh-cta .zh-wrap::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(196, 164, 106, 0.5);
}
.zh-cta .zh-wrap::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.zh-cta .zh-wrap::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.zh-cta h2 { max-width: 20ch; margin-inline: auto; }
.zh-cta p { max-width: 52ch; color: rgba(242, 240, 234, 0.52); }


.zh-footer {
  padding: 0;
  background: #080b10 !important;
  border-top: 1px solid rgba(242, 240, 234, 0.08);
}
.zh-footer-inner {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  padding: 62px 0 46px;
}
.zh-foot-brand strong {
  font-family: var(--zh-font-brand);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: #f7f3ea;
  margin-bottom: 14px;
}
.zh-foot-brand p {
  max-width: 42ch;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(242, 240, 234, 0.45) !important;
}
.zh-foot-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.zh-foot-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border: 1px solid rgba(242, 240, 234, 0.11);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 240, 234, 0.5);
}
.zh-foot-badges i { color: var(--zh-accent); font-size: 0.7rem; }
.zh-foot-col { display: flex; flex-direction: column; gap: 11px; }
.zh-foot-col h4 {
  margin: 0 0 6px;
  font-family: var(--zh-font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--zh-accent);
}
.zh-foot-col a {
  font-size: 0.89rem;
  color: rgba(242, 240, 234, 0.55);
  transition: color 0.2s var(--zh-ease), padding-left 0.2s var(--zh-ease);
}
.zh-foot-col a:hover { color: #f7f3ea; padding-left: 4px; }
.zh-foot-cta p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(242, 240, 234, 0.45) !important;
}
.zh-foot-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 4px;
  padding: 12px 18px;
  border: 1px solid rgba(196, 164, 106, 0.4);
  background: rgba(196, 164, 106, 0.07);
  color: var(--zh-accent) !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s var(--zh-ease), border-color 0.25s var(--zh-ease);
}
.zh-foot-discord:hover {
  background: var(--zh-accent);
  border-color: var(--zh-accent);
  color: #15181d !important;
  padding-left: 18px;
}
.zh-footer-bottom { border-top: 1px solid rgba(242, 240, 234, 0.07); }
.zh-footer-bottom-inner {
  width: min(100% - 48px, var(--zh-max));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(242, 240, 234, 0.34);
}

@media (max-width: 1100px) {
  .zh-sell-rail { grid-template-columns: 1fr 1fr; }
  .zh-sell-item,
  .zh-sell-item:nth-child(odd),
  .zh-sell-item:nth-child(even) {
    padding: 26px 24px 24px;
    border: 1px solid rgba(242, 240, 234, 0.1);
  }
  .zh-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .zh-sell-rail { grid-template-columns: 1fr; }
  .zh-footer-inner { grid-template-columns: 1fr; }
  .zh-cta { padding: 64px 0; }
  .zh-cta .zh-wrap { padding: 40px 22px; }
}


.zh-wrap.zh-plan-wide { width: min(100% - 48px, 1380px); }


.zh-promo-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: -18px 0 34px;
  padding: 16px 20px;
  border: 1px solid rgba(196, 164, 106, 0.28);
  border-left: 2px solid var(--zh-accent);
  background: rgba(196, 164, 106, 0.05);
}
.zh-promo-strip .zps-badge {
  padding: 5px 11px;
  border: 1px solid rgba(196, 164, 106, 0.5);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--zh-accent);
}
.zh-promo-strip strong {
  font-size: 1rem;
  font-weight: 750;
  color: #f7f3ea;
  letter-spacing: -0.005em;
}
.zh-promo-strip .zps-note {
  font-size: 0.86rem;
  color: rgba(242, 240, 234, 0.5);
}


.zh-secure-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 28px;
  border-top: 1px solid rgba(242, 240, 234, 0.1);
  border-bottom: 1px solid rgba(242, 240, 234, 0.1);
}
.zh-secure-strip .zss-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 0 22px 0;
  background: none;
  border: 0;
}
.zh-secure-strip .zss-item + .zss-item {
  padding-left: 28px;
  margin-left: 28px;
  border-left: 1px solid rgba(242, 240, 234, 0.1);
}
.zss-no {
  font-family: var(--zh-font-display), Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: rgba(196, 164, 106, 0.55);
}
.zh-secure-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #f7f3ea;
}
.zh-secure-strip .zss-item > div > span {
  display: block;
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(242, 240, 234, 0.5);
}
@media (max-width: 860px) {
  .zh-secure-strip { grid-template-columns: 1fr; }
  .zh-secure-strip .zss-item + .zss-item {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(242, 240, 234, 0.08);
  }
}


.zh-price-include {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin: 0 0 28px;
  padding: 22px 26px 22px 28px;
  overflow: hidden;
  border: 1px solid rgba(196, 164, 106, 0.28);
  background: rgba(196, 164, 106, 0.045);
}
.zh-price-include::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--zh-accent);
}
.zpi-badge {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196, 164, 106, 0.9);
}
.zpi-copy strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--zh-font-display), Georgia, serif;
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #f9f5ec;
}
.zpi-copy p {
  margin: 0;
  max-width: 64ch;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(242, 240, 234, 0.55);
}
.zpi-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0 0 0 22px;
  list-style: none;
  border-left: 1px solid rgba(242, 240, 234, 0.1);
  white-space: nowrap;
}
.zpi-tags li {
  position: relative;
  padding-left: 14px;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: rgba(242, 240, 234, 0.72);
}
.zpi-tags li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 1px;
  background: rgba(196, 164, 106, 0.75);
}
.zh-plan-price-note {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(196, 164, 106, 0.78);
}
@media (max-width: 900px) {
  .zh-price-include {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 20px 18px 24px;
  }
  .zpi-tags {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 14px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(242, 240, 234, 0.08);
  }
}
@media (max-width: 520px) {
  .zpi-copy strong { font-size: 1.1rem; }
}


.zh-plan-card--spec .zh-plan-head { padding-bottom: 16px; }
.zh-plan-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 14px;
  margin: 0 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(242, 240, 234, 0.08);
  border-bottom: 1px solid rgba(242, 240, 234, 0.08);
}
.zh-plan-spec {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-width: 0;
}
.zh-plan-spec > i {
  margin-top: 3px;
  flex: none;
  width: 13px;
  text-align: center;
  font-size: 0.76rem;
  color: rgba(196, 164, 106, 0.75);
}
.zps-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 240, 234, 0.3);
}
.zps-value {
  display: block;
  margin-top: 2px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f7f3ea;
  white-space: nowrap;
}
.zh-plan-card--spec .zh-plan-features { padding-top: 12px; }
.zh-plan-card--spec .zh-plan-desc {
  margin: 10px 18px 0;
  padding-top: 12px;
  border-top: 1px solid rgba(242, 240, 234, 0.07);
  font-family: Consolas, "SF Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  color: rgba(242, 240, 234, 0.44);
}


.mega-dropdown-portal { padding-top: 8px; }
.mega-menu {
  gap: 2px;
  padding: 10px;
  background: linear-gradient(180deg, #141920 0%, #0e1218 100%) !important;
  border: 1px solid rgba(242, 240, 234, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}
.mega-item {
  align-items: flex-start;
  padding: 15px 16px;
  border-radius: 0;
  border-left: 2px solid transparent;
  transition: background 0.2s var(--zh-ease), border-color 0.2s var(--zh-ease);
}
.mega-item:hover {
  background: rgba(196, 164, 106, 0.06) !important;
  border-left-color: var(--zh-accent);
}
.mega-item > i {
  margin-top: 3px;
  width: 18px;
  text-align: center;
  color: var(--zh-accent);
  font-size: 0.85rem;
}
.mega-item h4 { color: #f7f3ea; }
.mega-item p { color: rgba(242, 240, 234, 0.45); }
.mega-menu > .mega-item:nth-child(odd):last-child { grid-column: 1 / -1; }


.ref-card {
  background: linear-gradient(180deg, #151a21 0%, #10151b 100%) !important;
  border: 1px solid rgba(242, 240, 234, 0.1);
}
.ref-quote { color: rgba(196, 164, 106, 0.45); }
.ref-img-wrap {
  width: 52px;
  height: 52px;
  padding: 6px;
  background: #0a0e13;
  border: 1px solid rgba(242, 240, 234, 0.12);
}
.ref-img-wrap img { object-fit: contain; }
.ref-name { color: #f7f3ea; }
.ref-desc { color: rgba(242, 240, 234, 0.6); }


.user-dropdown-content,
.balance-dropdown-content {
  min-width: 208px;
  padding: 6px;
  border-color: rgba(242, 240, 234, 0.12);
  background: linear-gradient(180deg, #151a21 0%, #10151b 100%) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}
.user-dropdown-inner a,
.balance-dropdown-content-inner a {
  padding: 10px 12px;
  border-bottom: 0;
  font-size: 0.85rem;
  font-weight: 550;
  color: rgba(242, 240, 234, 0.66);
  border-left: 2px solid transparent;
  transition: color 0.18s, background 0.18s, border-color 0.18s;
}
.user-dropdown-inner a i,
.balance-dropdown-content-inner a i {
  width: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(196, 164, 106, 0.65);
  transition: color 0.18s;
}
.user-dropdown-inner a:hover,
.balance-dropdown-content-inner a:hover {
  background: rgba(196, 164, 106, 0.07) !important;
  border-left-color: var(--zh-accent);
  color: #f7f3ea !important;
}
.user-dropdown-inner a:hover i,
.balance-dropdown-content-inner a:hover i { color: var(--zh-accent); }


.zh-block--refs { overflow-x: clip; }
.ref-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  scrollbar-width: none;
  padding: 6px 0 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}
.ref-marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: ref-marquee var(--ref-duration, 60s) linear infinite;
}
.ref-marquee::-webkit-scrollbar { display: none; }
.ref-marquee:hover .ref-marquee-track { animation-play-state: paused; }
@keyframes ref-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - 9px), 0, 0); }
}
.ref-marquee .ref-card {
  flex: 0 0 auto;
  width: 372px;
  display: flex;
  flex-direction: column;
  padding: 24px 26px 22px;
  transform: none;
}
.ref-marquee .ref-card:hover { transform: none; border-color: rgba(196, 164, 106, 0.3); }
.ref-marquee .ref-quote {
  margin-bottom: 2px;
  font-size: 2.4rem;
}
.ref-marquee .ref-desc {
  flex: 1;
  margin: 0 0 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ref-foot {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 16px;
  border-top: 1px solid rgba(242, 240, 234, 0.08);
}
.ref-marquee .ref-name { margin-bottom: 2px; font-size: 0.94rem; }
.ref-role {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(196, 164, 106, 0.7);
}

@media (max-width: 640px) {
  .ref-marquee .ref-card { width: 290px; padding: 20px 22px 18px; }
}


.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 26px 15px 24px;
  overflow: hidden;
  border: 1px solid rgba(196, 164, 106, 0.55);
  background: rgba(196, 164, 106, 0.06);
  color: #f4ead6;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.28s var(--zh-ease), border-color 0.28s var(--zh-ease);
}
.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, #c4a46a 0%, #ddc189 100%);
  transform: translateX(-101%);
  transition: transform 0.42s var(--zh-ease);
  z-index: 0;
}
.hero-cta > * { position: relative; z-index: 1; }
.hero-cta i {
  font-size: 0.72rem;
  transform: translateX(0);
  transition: transform 0.32s var(--zh-ease);
}
.hero-cta:hover {
  color: #14181d;
  border-color: #c4a46a;
}
.hero-cta:hover::before { transform: translateX(0); }
.hero-cta:hover i { transform: translateX(4px); }
.hero-cta:focus-visible { outline: 2px solid rgba(196, 164, 106, 0.7); outline-offset: 3px; }


.hero-index {
  position: relative;
  width: min(100%, 400px);
  justify-self: end;
  padding: 4px 0 0 30px;
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  animation: zhIn 0.9s 0.2s var(--zh-ease) both;
}
.hero-index::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, rgba(196, 164, 106, 0.55), rgba(196, 164, 106, 0.16) 45%, transparent);
}
.hero-index::after { content: none; display: none; }
.hero-index-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.hero-index-kicker {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(196, 164, 106, 0.9);
  white-space: nowrap;
}
.hero-index-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(196, 164, 106, 0.35), transparent);
}
.hero-index-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-index-list li + li { border-top: 1px solid rgba(242, 240, 234, 0.07); }
.hero-index-list a {
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr 40px;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  text-decoration: none;
  transition: padding-left 0.28s var(--zh-ease);
}
.hero-index-list a:hover { padding-left: 6px; }
.hi-no {
  font-family: Consolas, "SF Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(196, 164, 106, 0.42);
  transition: color 0.22s;
}
.hi-body { display: block; min-width: 0; }
.hi-title {
  display: block;
  font-size: 1.01rem;
  font-weight: 620;
  letter-spacing: -0.008em;
  color: #f5f1e9;
  transition: color 0.22s;
}
.hi-desc {
  display: block;
  margin-top: 5px;
  font-size: 0.77rem;
  line-height: 1.55;
  color: rgba(242, 240, 234, 0.54);
  transition: color 0.22s;
}
.hi-go {
  align-self: center;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: 36px;
  height: 14px;
  transform: none;
  transition: transform 0.3s var(--zh-ease);
}
.hi-go-shaft {
  display: block;
  width: 16px;
  height: 1px;
  background: rgba(196, 164, 106, 0.7);
  transition: width 0.3s var(--zh-ease), background 0.24s;
}
.hi-go-tip {
  display: block;
  width: 7px;
  height: 7px;
  margin-left: -1px;
  border-right: 1.5px solid rgba(196, 164, 106, 0.85);
  border-top: 1.5px solid rgba(196, 164, 106, 0.85);
  transform: rotate(45deg);
  transition: border-color 0.24s, transform 0.3s var(--zh-ease);
}
.hero-index-list a:hover .hi-no { color: var(--zh-accent); }
.hero-index-list a:hover .hi-title { color: #fff8ea; }
.hero-index-list a:hover .hi-desc { color: rgba(242, 240, 234, 0.66); }
.hero-index-list a:hover .hi-go { transform: translateX(6px); }
.hero-index-list a:hover .hi-go-shaft {
  width: 26px;
  background: var(--zh-accent);
}
.hero-index-list a:hover .hi-go-tip {
  border-color: var(--zh-accent);
}
.hero-index-foot {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(242, 240, 234, 0.07);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(242, 240, 234, 0.55);
  text-decoration: none;
  transition: color 0.22s;
}
.hero-index-foot i { font-size: 0.9rem; color: rgba(196, 164, 106, 0.8); }
.hero-index-foot:hover { color: var(--zh-accent); }

@media (max-width: 900px) {
  .hero-index { width: 100%; padding-left: 22px; }
}


.zh-sell.zh-block { padding: 52px 0; }
.zh-lines {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 40px;
  align-items: start;
}
.zh-lines-aside {
  position: sticky;
  top: calc(var(--zh-topbar, 34px) + var(--zh-header, 64px) + 16px);
  z-index: 2;
}
.zh-plan-head,
.auth-head,
.vbuy-card-h {
  position: static !important;
  top: auto !important;
  z-index: auto !important;
  backdrop-filter: none !important;
}
.zh-lines-aside .zh-kicker { margin-bottom: 8px; }
.zh-lines-aside .zh-section-title {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 620;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.zh-lines-aside .zh-section-lead {
  max-width: 36ch;
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(242, 240, 234, 0.48);
}
.zh-lines-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(242, 240, 234, 0.08);
}
.zh-lines-note > span {
  display: block;
  font-size: 0.74rem;
  line-height: 1.5;
  color: rgba(242, 240, 234, 0.38);
}
.zh-lines-note a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--zh-accent);
  text-decoration: none;
}
.zh-lines-note a i { font-size: 0.65rem; transition: transform 0.26s var(--zh-ease); }
.zh-lines-note a:hover i { transform: translateX(4px); }

.zh-lines-list { border-top: 1px solid rgba(242, 240, 234, 0.08); }
.zh-line {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 16px 12px 16px 4px;
  border-bottom: 1px solid rgba(242, 240, 234, 0.08);
  text-decoration: none;
  transition: padding-left 0.28s var(--zh-ease), background 0.28s var(--zh-ease);
}
.zh-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  bottom: -1px;
  width: 1px;
  background: var(--zh-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--zh-ease);
}
.zh-line:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(196, 164, 106, 0.05) 0%, rgba(196, 164, 106, 0) 72%);
}
.zh-line:hover::before { transform: scaleY(1); }
.zh-line-no {
  font-family: Consolas, "SF Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  padding-top: 3px;
  color: rgba(196, 164, 106, 0.4);
  transition: color 0.22s;
}
.zh-line:hover .zh-line-no { color: var(--zh-accent); }
.zh-line-main { display: block; min-width: 0; }
.zh-line-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.zh-line-head h3 {
  margin: 0;
  font-family: var(--zh-font-body);
  font-size: 0.98rem;
  font-weight: 620;
  letter-spacing: -0.01em;
  color: #f2eee6;
  transition: color 0.22s;
}
.zh-line:hover .zh-line-head h3 { color: #fff8ea; }
.zh-line-go {
  flex-shrink: 0;
  font-size: 0.68rem;
  color: var(--zh-accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.22s, transform 0.26s var(--zh-ease);
}
.zh-line:hover .zh-line-go { opacity: 1; transform: translateX(0); }
.zh-line-main p {
  margin: 5px 0 0;
  max-width: 54ch;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(242, 240, 234, 0.46);
}
.zh-line-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  margin-top: 9px;
}
.zh-line-tags em {
  position: relative;
  padding-left: 10px;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 240, 234, 0.32);
  transition: color 0.22s;
}
.zh-line-tags em::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 1px;
  background: rgba(196, 164, 106, 0.45);
}
.zh-line:hover .zh-line-tags em { color: rgba(242, 240, 234, 0.5); }

@media (max-width: 1080px) {
  .zh-lines { grid-template-columns: 1fr; gap: 28px; }
  .zh-lines-aside { position: static; }
}
@media (max-width: 620px) {
  .zh-line { grid-template-columns: 28px 1fr; padding: 14px 4px; }
  .zh-line-head h3 { font-size: 0.94rem; }
  .zh-line-main p { font-size: 0.8rem; }
}


#dedicated.zh-block { padding: 52px 0; }
#dedicated .zh-split { gap: 36px; align-items: center; }
#dedicated .zh-split-copy .zh-kicker { margin-bottom: 8px; }
#dedicated .zh-split-copy .zh-section-title {
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  font-weight: 620;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 10px;
  max-width: 22ch;
}
#dedicated .zh-split-copy .zh-section-lead {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 42ch;
  color: rgba(242, 240, 234, 0.48);
}
#dedicated .zh-spec-list { margin-bottom: 20px; }
#dedicated .zh-spec-list li {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 9px 0;
  border-top: 1px solid rgba(242, 240, 234, 0.07);
  font-size: 0.84rem;
  color: rgba(242, 240, 234, 0.58);
}
#dedicated .zh-spec-list li:last-child {
  border-bottom: 1px solid rgba(242, 240, 234, 0.07);
}
#dedicated .zh-spec-list strong {
  color: rgba(242, 240, 234, 0.72);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: none;
}
#dedicated .zh-split-panel {
  min-height: 300px;
  border: 1px solid rgba(242, 240, 234, 0.1);
}
#dedicated .zh-split-panel img { min-height: 300px; }
#dedicated .zh-split-tag {
  left: 14px;
  bottom: 14px;
  padding: 6px 11px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}
#dedicated .zh-btn--compact,
.zh-btn--compact {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.84rem;
  font-weight: 650;
  border-radius: 2px;
}
@media (max-width: 900px) {
  #dedicated .zh-spec-list li {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 10px 0;
  }
}


.zh-cg { background: #080b0f; }
.zh-cg-hero {
  position: relative;
  padding: 56px 0 48px;
  overflow: hidden;
}
.zh-cg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(126, 196, 178, 0.07), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(196, 164, 106, 0.06), transparent 55%),
    linear-gradient(180deg, #0c1118 0%, #080b0f 100%);
  pointer-events: none;
}
.zh-cg-hero .zh-wrap { position: relative; z-index: 1; }
.zh-cg-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 40px;
  align-items: center;
}
.zh-cg-brand {
  margin: 0 0 10px;
  font-family: var(--zh-font-display), Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #f7f3ea;
}
.zh-cg-hero-copy h1 {
  margin: 0 0 12px;
  max-width: 22ch;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 550;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: rgba(242, 240, 234, 0.78);
}
.zh-cg-lead {
  margin: 0 0 22px;
  max-width: 48ch;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(242, 240, 234, 0.5);
}
.zh-cg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.zh-cg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.zh-cg-chips li {
  padding: 5px 10px;
  border: 1px solid rgba(242, 240, 234, 0.1);
  background: rgba(242, 240, 234, 0.03);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 240, 234, 0.45);
}

.zh-cg-console {
  border: 1px solid rgba(242, 240, 234, 0.1);
  background: linear-gradient(180deg, #10151c 0%, #0a0e13 100%);
  overflow: hidden;
}
.zh-cg-console-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(242, 240, 234, 0.08);
  font-family: Consolas, "SF Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(242, 240, 234, 0.45);
}
.zh-cg-console-bar em {
  margin-left: auto;
  font-style: normal;
  color: rgba(126, 196, 178, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.62rem;
  font-weight: 700;
}
.zh-cg-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6fd3b4;
  box-shadow: 0 0 0 3px rgba(111, 211, 180, 0.14);
}
.zh-cg-console-body { padding: 14px 14px 16px; }
.zh-cg-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px solid rgba(242, 240, 234, 0.05);
  font-family: Consolas, "SF Mono", monospace;
  font-size: 0.74rem;
  color: rgba(242, 240, 234, 0.72);
}
.zh-cg-row .ok { color: rgba(126, 196, 178, 0.9); font-weight: 700; }
.zh-cg-row .warn { color: rgba(196, 164, 106, 0.95); font-weight: 700; }
.zh-cg-row .hot { color: rgba(255, 120, 110, 0.9); font-weight: 700; }
.zh-cg-row .dim { color: rgba(242, 240, 234, 0.35); font-size: 0.68rem; }
.zh-cg-meter { margin-top: 16px; }
.zh-cg-meter-h {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 240, 234, 0.4);
}
.zh-cg-meter-bar {
  height: 3px;
  background: rgba(242, 240, 234, 0.08);
  overflow: hidden;
}
.zh-cg-meter-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, rgba(126, 196, 178, 0.85), rgba(196, 164, 106, 0.7));
}
.zh-cg-console-note {
  margin: 14px 0 0;
  font-size: 0.7rem;
  line-height: 1.45;
  color: rgba(242, 240, 234, 0.32);
}

.zh-cg-section { padding: 48px 0; }
.zh-cg-section--alt {
  border-top: 1px solid rgba(242, 240, 234, 0.06);
  border-bottom: 1px solid rgba(242, 240, 234, 0.06);
  background: rgba(255, 255, 255, 0.01);
}
.zh-cg-h2 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 1.9vw, 1.45rem);
  font-weight: 620;
  letter-spacing: -0.02em;
  color: #f2eee6;
}
.zh-cg-sub {
  margin: 0;
  max-width: 48ch;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(242, 240, 234, 0.48);
}
.zh-cg-split {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 36px;
  align-items: start;
}
.zh-cg-cover {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(242, 240, 234, 0.08);
}
.zh-cg-cover li {
  display: grid;
  grid-template-columns: minmax(140px, 0.4fr) 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(242, 240, 234, 0.08);
}
.zh-cg-cover strong {
  font-size: 0.86rem;
  font-weight: 620;
  color: #efeae0;
}
.zh-cg-cover span {
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(242, 240, 234, 0.5);
}

.zh-cg-ops {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 36px;
  align-items: start;
}
.zh-cg-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.zh-cg-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(242, 240, 234, 0.08);
}
.zh-cg-steps li:last-child { border-bottom: 1px solid rgba(242, 240, 234, 0.08); }
.zh-cg-steps span {
  font-family: Consolas, "SF Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(196, 164, 106, 0.55);
  padding-top: 3px;
}
.zh-cg-steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
  font-weight: 620;
  color: #f2eee6;
}
.zh-cg-steps p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(242, 240, 234, 0.48);
}

.zh-cg-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: rgba(242, 240, 234, 0.08);
  border: 1px solid rgba(242, 240, 234, 0.08);
}
.zh-cg-why-grid article {
  padding: 20px 18px;
  background: #0a0e13;
}
.zh-cg-why-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 620;
  color: #f2eee6;
}
.zh-cg-why-grid p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(242, 240, 234, 0.48);
}

.zh-cg-cta { padding: 40px 0 64px; }
.zh-cg-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 28px;
  border: 1px solid rgba(196, 164, 106, 0.22);
  background:
    linear-gradient(135deg, rgba(196, 164, 106, 0.08) 0%, transparent 45%),
    #0d1218;
}
.zh-cg-cta-inner .zh-cg-h2 { margin-bottom: 8px; }
.zh-cg-cta-inner p {
  margin: 0;
  max-width: 52ch;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(242, 240, 234, 0.5);
}
.zh-cg-cta-inner .zh-btn { flex-shrink: 0; }

@media (max-width: 980px) {
  .zh-cg-hero-grid,
  .zh-cg-split,
  .zh-cg-ops { grid-template-columns: 1fr; gap: 28px; }
  .zh-cg-why-grid { grid-template-columns: 1fr 1fr; }
  .zh-cg-cover li { grid-template-columns: 1fr; gap: 4px; }
  .zh-cg-cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .zh-cg-hero { padding: 40px 0 36px; }
  .zh-cg-why-grid { grid-template-columns: 1fr; }
  .zh-cg-brand { font-size: 2.2rem; }
}
