:root {
  --dx-bg: #080b0b;
  --dx-bg-elevated: #101615;
  --dx-surface: #151d1b;
  --dx-surface-soft: #1b2522;
  --dx-card: rgba(22, 31, 29, 0.92);
  --dx-card-strong: rgba(25, 36, 33, 0.97);
  --dx-border: rgba(228, 237, 231, 0.15);
  --dx-border-strong: rgba(228, 237, 231, 0.28);
  --dx-text: #f8faf7;
  --dx-muted: #d6e2dc;
  --dx-subtle: #a8b8b0;
  --dx-brand: #3dd6c6;
  --dx-brand-strong: #0e8f84;
  --dx-accent: #e8b15d;
  --dx-violet: #b6a1ff;
  --dx-coral: #ff8a9b;
  --dx-success: #34d399;
  --dx-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  --dx-shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.22);
  --dx-shadow-line: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  --dx-highlight: linear-gradient(90deg, rgba(61, 214, 198, 0.66), rgba(232, 177, 93, 0.38), rgba(182, 161, 255, 0.32));
  --dx-ring: 0 0 0 3px rgba(61, 214, 198, 0.2);
  --dx-radius: 8px;
  --dx-max: 1180px;
  --dx-readable: 760px;
}

html {
  scroll-behavior: smooth;
}

body.dx-site {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, #080b0b 0%, #101716 48%, #0a0d0e 100%),
    linear-gradient(115deg, rgba(61, 214, 198, 0.06), transparent 44%),
    linear-gradient(245deg, rgba(232, 177, 93, 0.045), transparent 42%) !important;
  color: var(--dx-text) !important;
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  line-height: 1.68;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dx-site::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 44vh;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(7, 12, 11, 0.64));
}

body.dx-site.dx-page-home,
body.dx-site.dx-page-zixun {
  padding: 0 !important;
}

body.dx-site::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(61, 214, 198, 0.08), transparent 35%),
    linear-gradient(240deg, rgba(232, 177, 93, 0.06), transparent 40%),
    linear-gradient(180deg, rgba(182, 161, 255, 0.045), transparent 54%);
  opacity: 0.5;
}

body.dx-site * {
  box-sizing: border-box;
}

body.dx-site a {
  text-underline-offset: 4px;
}

body.dx-site a,
body.dx-site button,
body.dx-site input,
body.dx-site select,
body.dx-site textarea,
body.dx-site summary {
  -webkit-tap-highlight-color: transparent;
}

body.dx-site :focus-visible {
  outline: none;
  box-shadow: var(--dx-ring);
}

body.dx-site ::selection {
  background: rgba(61, 214, 198, 0.32);
  color: #ffffff;
}

body.dx-site img {
  max-width: 100%;
}

body.dx-site h1,
body.dx-site h2,
body.dx-site h3,
body.dx-site h4 {
  letter-spacing: 0 !important;
  color: var(--dx-text);
  text-wrap: balance;
}

body.dx-site [class*="tracking-"] {
  letter-spacing: 0 !important;
}

body.dx-site main > section:first-child {
  overflow: hidden;
}

body.dx-site main > section:first-child:not(.hero-section):not(.hero-gradient) {
  border-bottom: 1px solid var(--dx-border);
  background:
    linear-gradient(140deg, rgba(61, 214, 198, 0.12), transparent 38%),
    linear-gradient(260deg, rgba(232, 177, 93, 0.09), transparent 42%),
    linear-gradient(180deg, rgba(248, 250, 247, 0.035), rgba(248, 250, 247, 0));
}

body.dx-site main > section:first-child[class*="max-w-6xl"],
body.dx-site main > section:first-child[class*="max-w-4xl"] {
  max-width: none !important;
  padding-left: max(20px, calc((100vw - var(--dx-max)) / 2 + 20px)) !important;
  padding-right: max(20px, calc((100vw - var(--dx-max)) / 2 + 20px)) !important;
}

body.dx-site main > section:first-child:not(.hero-section):not(.hero-gradient)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 214, 198, 0.52), rgba(232, 177, 93, 0.34), transparent);
}

body.dx-site main > section:first-child p:first-child[class*="uppercase"] {
  display: inline-flex;
  width: fit-content;
  justify-self: start;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(61, 214, 198, 0.24);
  border-radius: var(--dx-radius);
  padding: 0 10px;
  background: rgba(61, 214, 198, 0.08);
  color: #9ff4e8 !important;
  font-size: 12px !important;
  font-weight: 720 !important;
  text-transform: none !important;
}

body.dx-site main > section:first-child h1 {
  color: #ffffff !important;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

body.dx-site main > section:first-child h1 + p {
  color: var(--dx-muted) !important;
}

.dx-header {
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100%;
  border-bottom: 1px solid var(--dx-border);
  background: rgba(11, 15, 14, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.dx-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 214, 198, 0.58), rgba(232, 177, 93, 0.42), transparent);
  opacity: 0.72;
}

.dx-header-inner {
  display: flex;
  min-height: 72px;
  max-width: var(--dx-max);
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.dx-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--dx-text);
  font-size: 18px;
  font-weight: 780;
  text-decoration: none;
  white-space: nowrap;
}

.dx-brand img {
  width: 38px;
  height: 38px;
  border-radius: var(--dx-radius);
  background: rgba(248, 250, 247, 0.05);
  box-shadow: 0 0 0 1px var(--dx-border), 0 12px 28px rgba(61, 214, 198, 0.12);
}

.dx-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.dx-nav a,
.dx-nav-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: var(--dx-radius);
  padding: 0 12px;
  color: var(--dx-muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.dx-nav a:hover,
.dx-nav a:focus-visible {
  background: rgba(248, 250, 247, 0.08);
  color: var(--dx-text);
  outline: none;
}

.dx-nav-cta {
  flex: 0 0 auto;
  border: 1px solid rgba(61, 214, 198, 0.42);
  background: linear-gradient(135deg, rgba(61, 214, 198, 0.2), rgba(232, 177, 93, 0.1));
  color: #f0fffb;
}

.dx-nav-cta:hover,
.dx-nav-cta:focus-visible {
  border-color: rgba(232, 177, 93, 0.58);
  background: linear-gradient(135deg, rgba(61, 214, 198, 0.24), rgba(232, 177, 93, 0.16));
  color: #fff7ed;
  outline: none;
}

body.dx-site .hero-section,
body.dx-site .hero-gradient {
  border-bottom: 1px solid var(--dx-border);
  background:
    linear-gradient(135deg, rgba(7, 12, 11, 0.98) 0%, rgba(20, 34, 30, 0.98) 54%, rgba(9, 14, 16, 0.99) 100%),
    linear-gradient(90deg, rgba(61, 214, 198, 0.12), transparent 50%),
    linear-gradient(270deg, rgba(232, 177, 93, 0.09), transparent 46%) !important;
}

body.dx-site.dx-page-home .hero-section {
  min-height: min(660px, calc(78svh - 72px)) !important;
  padding-top: 34px;
  padding-bottom: 54px;
}

body.dx-site.dx-page-zixun .hero-section {
  min-height: min(640px, calc(76svh - 72px)) !important;
}

body.dx-site .hero-section > .absolute.inset-0 {
  background: linear-gradient(135deg, rgba(7, 12, 11, 0.92), rgba(21, 37, 33, 0.78), rgba(9, 14, 16, 0.94)) !important;
}

body.dx-site .hero-section h1,
body.dx-site .hero-gradient h1 {
  font-size: 64px !important;
  line-height: 1.06 !important;
  font-weight: 820 !important;
}

body.dx-site .animate-fade-in-up {
  animation-duration: 0.62s !important;
  animation-fill-mode: both !important;
}

body.dx-site main > section h2 {
  color: var(--dx-text) !important;
  letter-spacing: 0 !important;
}

body.dx-site main > section:not(:first-child) h2 {
  position: relative;
  display: inline-block;
}

body.dx-site main > section:not(:first-child) h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dx-brand), var(--dx-accent));
  opacity: 0.9;
}

body.dx-site .hero-section .gradient-text,
body.dx-site .hero-section .bg-clip-text.text-transparent,
body.dx-site .hero-gradient .gradient-text,
body.dx-site .hero-gradient .bg-clip-text.text-transparent {
  background-image: linear-gradient(135deg, #f7fffb 0%, #d7f7ef 42%, #fff0bf 70%, #ddd6ff 100%) !important;
  opacity: 1 !important;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34));
}

body.dx-site.dx-page-home .hero-section h1 span:first-child,
body.dx-site.dx-page-zixun .hero-section h1 span:first-child {
  background-image: linear-gradient(135deg, #f7fffb 0%, #d7f7ef 44%, #fff0bf 72%, #ddd6ff 100%) !important;
}

body.dx-site.dx-page-home .hero-section h1 span:last-child,
body.dx-site.dx-page-zixun .hero-section h1 span:last-child {
  color: #e8f3ee !important;
}

body.dx-site .hero-section h1 + p,
body.dx-site .hero-gradient h1 + p,
body.dx-site .hero-section p.text-xl,
body.dx-site .hero-gradient p.text-xl {
  color: var(--dx-muted) !important;
  font-weight: 520 !important;
}

body.dx-site #particle-canvas {
  display: none !important;
}

body.dx-site > .fixed.top-4.left-4.z-50 {
  display: none !important;
}

body.dx-site nav.fixed.top-0 {
  position: sticky !important;
  top: 72px !important;
  background: rgba(11, 15, 14, 0.86) !important;
  border-color: var(--dx-border) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.dx-site section,
body.dx-site main,
body.dx-site .content-wrapper,
body.dx-site .product-showcase {
  position: relative;
}

body.dx-site .content-wrapper,
body.dx-site .product-showcase {
  background:
    linear-gradient(180deg, rgba(248, 250, 247, 0.05), rgba(248, 250, 247, 0.018)),
    rgba(20, 30, 28, 0.78) !important;
  border: 1px solid var(--dx-border) !important;
  border-radius: var(--dx-radius) !important;
  box-shadow: var(--dx-shadow) !important;
}

body.dx-site .product-showcase {
  overflow: hidden;
}

body.dx-site .product-showcase::before,
body.dx-site .content-wrapper::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 214, 198, 0.52), rgba(232, 177, 93, 0.36), transparent);
  opacity: 0.72;
}

body.dx-site .section-line,
body.dx-site .section-band {
  border-top-color: var(--dx-border) !important;
}

body.dx-site main > section {
  isolation: isolate;
}

body.dx-site main > section[class*="py-12"],
body.dx-site main > section[class*="py-14"],
body.dx-site main > section[class*="py-16"] {
  scroll-margin-top: 96px;
}

body.dx-site section[class*="bg-gray-800"],
body.dx-site section[class*="bg-slate-900"],
body.dx-site section[class*="bg-slate-950"],
body.dx-site section[class*="bg-stone-900"],
body.dx-site section[class*="bg-stone-950"],
body.dx-site section[class*="bg-zinc-900"],
body.dx-site section[class*="bg-zinc-950"],
body.dx-site section[class*="bg-neutral-900"],
body.dx-site section[class*="bg-neutral-950"],
body.dx-site section[class*="bg-gradient-to-r"] {
  border-top: 1px solid var(--dx-border);
  border-bottom: 1px solid var(--dx-border);
  background:
    linear-gradient(180deg, rgba(248, 250, 247, 0.045), rgba(248, 250, 247, 0.014)),
    rgba(13, 22, 20, 0.62) !important;
}

body.dx-site .sidebar,
body.dx-site details,
body.dx-site article,
body.dx-site .product-card,
body.dx-site .card-hover,
body.dx-site .glass-card,
body.dx-site .chapter-card,
body.dx-site .result-box,
body.dx-site .key-concepts,
body.dx-site .tool-card,
body.dx-site .chart-container,
body.dx-site .modal-content,
body.dx-site a[class*="bg-gradient-to-br"],
body.dx-site div[class*="bg-gray-700"],
body.dx-site div[class*="bg-slate-800"],
body.dx-site div[class*="bg-stone-800"],
body.dx-site div[class*="bg-zinc-800"],
body.dx-site div[class*="bg-neutral-800"],
body.dx-site a[class*="bg-gray-700"],
body.dx-site a[class*="bg-slate-800"],
body.dx-site a[class*="bg-stone-800"],
body.dx-site a[class*="bg-zinc-800"],
body.dx-site a[class*="bg-neutral-800"],
body.dx-site [class*="bg-gray-800"],
body.dx-site [class*="bg-slate-900"],
body.dx-site [class*="bg-slate-950"],
body.dx-site [class*="bg-zinc-900"],
body.dx-site [class*="bg-zinc-950"],
body.dx-site [class*="bg-stone-900"],
body.dx-site [class*="bg-stone-950"],
body.dx-site [class*="bg-neutral-900"],
body.dx-site [class*="bg-neutral-950"],
body.dx-site [class*="bg-blue-900"],
body.dx-site [class*="bg-purple-900"],
body.dx-site [class*="bg-green-900"],
body.dx-site [class*="bg-indigo-900"] {
  background: linear-gradient(180deg, rgba(248, 250, 247, 0.085), rgba(248, 250, 247, 0.028)) !important;
  background-color: var(--dx-card) !important;
  border-color: var(--dx-border) !important;
}

body.dx-site [class*="rounded-3xl"],
body.dx-site [class*="rounded-2xl"],
body.dx-site [class*="rounded-xl"],
body.dx-site [class*="rounded-lg"],
body.dx-site .tool-card,
body.dx-site .chart-container,
body.dx-site details,
body.dx-site summary,
body.dx-site .content-body,
body.dx-site .sidebar,
body.dx-site .product-card,
body.dx-site .glass-card,
body.dx-site .chapter-card,
body.dx-site .modal-content {
  border-radius: var(--dx-radius) !important;
}

body.dx-site .product-card,
body.dx-site .card-hover,
body.dx-site article,
body.dx-site details,
body.dx-site .glass-card,
body.dx-site .chapter-card,
body.dx-site main a[class*="border"],
body.dx-site .tool-card {
  box-shadow: var(--dx-shadow-soft), var(--dx-shadow-line) !important;
  position: relative;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

body.dx-site .product-card:hover,
body.dx-site .card-hover:hover,
body.dx-site article:hover,
body.dx-site details:hover,
body.dx-site .glass-card:hover,
body.dx-site .chapter-card:hover,
body.dx-site main a[class*="border"]:hover,
body.dx-site .tool-card:hover {
  border-color: var(--dx-border-strong) !important;
  box-shadow: var(--dx-shadow), var(--dx-shadow-line) !important;
  transform: translateY(-2px);
}

body.dx-site article::before,
body.dx-site details::before,
body.dx-site .glass-card::before,
body.dx-site .chapter-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--dx-highlight);
  opacity: 0.56;
}

body.dx-site main a[class*="border"] {
  position: relative;
  overflow: hidden;
  color: var(--dx-text);
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(248, 250, 247, 0.065), rgba(248, 250, 247, 0.022)),
    var(--dx-card) !important;
}

body.dx-site main a[class*="border"]::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--dx-highlight);
  opacity: 0;
  transition: opacity 0.18s ease;
}

body.dx-site main a[class*="border"]:hover::before,
body.dx-site main a[class*="border"]:focus-visible::before {
  opacity: 1;
}

body.dx-site main a[class*="border"] strong,
body.dx-site article h3,
body.dx-site details summary {
  color: #f8faf7 !important;
}

body.dx-site main a[class*="border"] span,
body.dx-site article p,
body.dx-site details p {
  color: var(--dx-muted) !important;
}

body.dx-site .product-card::before {
  height: 2px !important;
  background: linear-gradient(90deg, var(--dx-brand), var(--dx-accent), var(--dx-violet)) !important;
  opacity: 0.78;
}

body.dx-site stripe-buy-button {
  display: block;
  min-height: 48px;
  width: 100%;
}

body.dx-site .product-card stripe-buy-button {
  border-radius: var(--dx-radius);
}

body.dx-site .icon-wrapper,
body.dx-site [class*="text-3xl"] > i,
body.dx-site [class*="text-2xl"] > i {
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

body.dx-site .glass-card {
  backdrop-filter: blur(18px) saturate(125%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(125%) !important;
}

body.dx-site .chapter-card.locked,
body.dx-site .locked {
  opacity: 0.62 !important;
}

body.dx-site summary {
  background: var(--dx-card-strong) !important;
  color: var(--dx-text) !important;
  font-weight: 680;
}

body.dx-site details[open] summary {
  background: linear-gradient(135deg, rgba(61, 214, 198, 0.2), rgba(232, 177, 93, 0.13)) !important;
}

body.dx-site .content-body {
  background: rgba(11, 15, 14, 0.5) !important;
  color: var(--dx-muted) !important;
}

body.dx-site .gold-sentence {
  border-left: 3px solid var(--dx-accent) !important;
  background: rgba(232, 177, 93, 0.09) !important;
  color: #fde68a !important;
  padding: 12px 14px !important;
  border-radius: var(--dx-radius) !important;
}

body.dx-site .section-link {
  display: block;
  border-radius: var(--dx-radius);
  padding: 8px 10px;
  color: var(--dx-muted) !important;
  text-decoration: none;
}

body.dx-site .section-link:hover,
body.dx-site .section-link:focus-visible {
  background: rgba(248, 250, 247, 0.07);
  color: var(--dx-text) !important;
  outline: none;
}

body.dx-site .section-link.active-link {
  background: linear-gradient(135deg, rgba(61, 214, 198, 0.24), rgba(232, 177, 93, 0.16));
  box-shadow: inset 0 0 0 1px rgba(61, 214, 198, 0.32);
  color: var(--dx-text) !important;
  font-weight: 720;
}

body.dx-site .course-preview-content {
  min-height: clamp(420px, 58vh, 720px);
}

body.dx-site .course-panel[hidden] {
  display: none !important;
}

body.dx-site .course-panel.is-active {
  animation: dxCoursePanelIn 180ms ease-out;
}

@keyframes dxCoursePanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.dx-site .calculator-input,
body.dx-site input,
body.dx-site select,
body.dx-site textarea {
  border: 1px solid var(--dx-border) !important;
  background: rgba(11, 15, 14, 0.72) !important;
  color: var(--dx-text) !important;
  border-radius: var(--dx-radius) !important;
}

body.dx-site input,
body.dx-site select,
body.dx-site textarea {
  min-height: 42px;
  padding: 10px 12px;
}

body.dx-site input[type="range"] {
  min-height: auto;
  padding: 0;
  accent-color: var(--dx-brand);
}

body.dx-site button,
body.dx-site .btn,
body.dx-site a[class*="rounded-full"],
body.dx-site button[class*="rounded-full"],
body.dx-site a[class*="bg-white"],
body.dx-site a[class*="bg-blue-"],
body.dx-site a[class*="bg-purple-"],
body.dx-site a[class*="bg-green-"],
body.dx-site a[class*="bg-indigo-"],
body.dx-site a[class*="bg-gradient-to-r"],
body.dx-site button[class*="bg-gradient-to-r"],
body.dx-site a[class*="border-blue-"],
body.dx-site a[class*="border-purple-"],
body.dx-site a[class*="border-green-"],
body.dx-site a[class*="border-lime-"],
body.dx-site a[class*="border-amber-"] {
  border-radius: var(--dx-radius) !important;
}

body.dx-site a[class*="bg-white"],
body.dx-site a[class*="bg-blue-"],
body.dx-site a[class*="bg-purple-"],
body.dx-site a[class*="bg-green-"],
body.dx-site a[class*="bg-gradient-to-r"],
body.dx-site button[class*="bg-white"],
body.dx-site button[class*="bg-blue-"],
body.dx-site button[class*="bg-purple-"],
body.dx-site button[class*="bg-green-"],
body.dx-site button[class*="bg-gradient-to-r"] {
  border: 1px solid rgba(61, 214, 198, 0.42) !important;
  background: linear-gradient(135deg, #37d9c9 0%, #8df1e3 62%, #fff0bd 100%) !important;
  color: #061514 !important;
  font-weight: 760 !important;
  box-shadow: 0 18px 38px rgba(14, 143, 132, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.34) !important;
}

body.dx-site a[class*="border-2"][class*="border-white"],
body.dx-site button[class*="border-2"][class*="border-white"] {
  border-color: var(--dx-border-strong) !important;
  background: rgba(248, 250, 247, 0.04) !important;
  color: var(--dx-text) !important;
}

body.dx-site button:hover,
body.dx-site .btn:hover,
body.dx-site a[class*="bg-white"]:hover,
body.dx-site a[class*="bg-blue-"]:hover,
body.dx-site a[class*="bg-purple-"]:hover,
body.dx-site a[class*="bg-green-"]:hover,
body.dx-site a[class*="bg-gradient-to-r"]:hover,
body.dx-site button[class*="bg-gradient-to-r"]:hover {
  transform: translateY(-1px);
  filter: saturate(1.06) brightness(1.04);
}

body.dx-site button:disabled,
body.dx-site [aria-disabled="true"],
body.dx-site .cursor-not-allowed {
  cursor: not-allowed !important;
  opacity: 0.58 !important;
  transform: none !important;
}

body.dx-site [class*="text-blue-"],
body.dx-site [class*="text-cyan-"],
body.dx-site [class*="text-sky-"],
body.dx-site [class*="text-emerald-"],
body.dx-site [class*="text-teal-"],
body.dx-site [class*="text-lime-"] {
  color: #5eead4 !important;
}

body.dx-site [class*="text-amber-"],
body.dx-site [class*="text-yellow-"],
body.dx-site [class*="text-orange-"] {
  color: #fbbf24 !important;
}

body.dx-site [class*="text-indigo-"],
body.dx-site [class*="text-purple-"] {
  color: #c4b5fd !important;
}

body.dx-site [class*="text-pink-"],
body.dx-site [class*="text-rose-"],
body.dx-site [class*="text-red-"] {
  color: #fda4af !important;
}

body.dx-site [class*="text-gray-300"],
body.dx-site [class*="text-slate-300"],
body.dx-site [class*="text-zinc-300"],
body.dx-site [class*="text-stone-300"],
body.dx-site [class*="text-neutral-300"] {
  color: var(--dx-muted) !important;
}

body.dx-site [class*="text-gray-400"],
body.dx-site [class*="text-slate-400"],
body.dx-site [class*="text-zinc-400"],
body.dx-site [class*="text-stone-400"],
body.dx-site [class*="text-neutral-400"] {
  color: var(--dx-subtle) !important;
}

body.dx-site [class*="border-blue-"],
body.dx-site [class*="border-purple-"],
body.dx-site [class*="border-green-"],
body.dx-site [class*="border-lime-"],
body.dx-site [class*="border-amber-"],
body.dx-site [class*="border-slate-"],
body.dx-site [class*="border-zinc-"],
body.dx-site [class*="border-stone-"],
body.dx-site [class*="border-gray-"] {
  border-color: var(--dx-border) !important;
}

body.dx-site .gradient-text,
body.dx-site .bg-clip-text.text-transparent {
  background-image: linear-gradient(135deg, #e8fff9, #fff1c7 52%, #e1d9ff) !important;
}

body.dx-site main > section:not(:first-child) h2.gradient-text,
body.dx-site main > section:not(:first-child) h2 .gradient-text,
body.dx-site main > section:not(:first-child) h2.bg-clip-text.text-transparent {
  background-image: none !important;
  color: var(--dx-text) !important;
  -webkit-text-fill-color: var(--dx-text) !important;
}

body.dx-site .progress-bar {
  background: rgba(248, 250, 247, 0.1) !important;
  border: 1px solid var(--dx-border);
}

body.dx-site .progress-fill {
  background: linear-gradient(90deg, var(--dx-brand-strong), var(--dx-brand), var(--dx-accent)) !important;
}

body.dx-site nav[class*="bg-gray-800"],
body.dx-site nav[class*="bg-slate-800"],
body.dx-site nav[class*="bg-stone-800"] {
  border-bottom: 1px solid var(--dx-border);
  background: rgba(11, 15, 14, 0.78) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.dx-site table {
  border-color: var(--dx-border) !important;
  background: rgba(11, 15, 14, 0.38);
  border-radius: var(--dx-radius);
  overflow: hidden;
}

body.dx-site th,
body.dx-site td {
  border-color: var(--dx-border) !important;
}

body.dx-site th {
  background: rgba(248, 250, 247, 0.06) !important;
  color: var(--dx-text) !important;
}

body.dx-site td {
  color: var(--dx-muted) !important;
}

body.dx-site footer {
  border-top: 1px solid var(--dx-border) !important;
  background: rgba(11, 15, 14, 0.7) !important;
  color: var(--dx-subtle) !important;
}

body.dx-site .footer-disclaimer {
  max-width: var(--dx-max);
  margin-left: auto;
  margin-right: auto;
  padding: 28px 20px;
}

body.dx-site footer a {
  color: #7ee7dc !important;
}

body.dx-site footer a:hover,
body.dx-site footer a:focus-visible {
  color: #fff1c7 !important;
}

body.dx-site pre,
body.dx-site code {
  border-radius: 6px;
  background: rgba(11, 15, 14, 0.76);
  color: #b8fff4;
}

body.dx-site pre {
  border: 1px solid var(--dx-border);
  padding: 16px;
  overflow-x: auto;
}

body.dx-site .dx-generated-hero {
  max-width: none !important;
  padding-left: max(20px, calc((100vw - var(--dx-max)) / 2 + 20px)) !important;
  padding-right: max(20px, calc((100vw - var(--dx-max)) / 2 + 20px)) !important;
  background:
    linear-gradient(180deg, rgba(248, 250, 247, 0.048), rgba(248, 250, 247, 0)),
    linear-gradient(126deg, rgba(61, 214, 198, 0.1), transparent 40%),
    linear-gradient(256deg, rgba(232, 177, 93, 0.065), transparent 44%);
}

body.dx-site .dx-generated-hero h1,
body.dx-site .dx-detail-article h1 {
  max-width: 920px;
  color: #ffffff !important;
  font-weight: 820 !important;
  line-height: 1.08 !important;
}

body.dx-site .dx-generated-hero p:not(:first-child),
body.dx-site .dx-detail-article > p {
  color: var(--dx-muted) !important;
}

body.dx-site .dx-hero-actions,
body.dx-site .dx-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.dx-site .dx-reference-band {
  background:
    linear-gradient(180deg, rgba(248, 250, 247, 0.048), rgba(248, 250, 247, 0.016)),
    rgba(13, 21, 20, 0.58) !important;
}

body.dx-site .dx-reference-band > div,
body.dx-site .dx-list-wrap {
  max-width: var(--dx-max) !important;
}

body.dx-site .dx-list-wrap {
  display: grid;
  grid-template-columns: minmax(0, var(--dx-readable));
  justify-content: center;
}

body.dx-site .dx-card-stack {
  display: grid;
  gap: 14px;
}

body.dx-site .dx-answer-card,
body.dx-site .dx-case-card,
body.dx-site .dx-detail-panel {
  border: 1px solid var(--dx-border) !important;
  border-radius: var(--dx-radius) !important;
  background:
    linear-gradient(180deg, rgba(248, 250, 247, 0.075), rgba(248, 250, 247, 0.024)),
    var(--dx-card) !important;
  box-shadow: var(--dx-shadow-soft) !important;
}

body.dx-site .dx-answer-card,
body.dx-site .dx-case-card {
  padding: 22px !important;
  min-height: 100%;
}

body.dx-site .dx-answer-card p:first-child,
body.dx-site .dx-case-card p:first-child,
body.dx-site .dx-detail-article > p:first-child {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(61, 214, 198, 0.26);
  border-radius: var(--dx-radius);
  padding: 0 10px;
  background: rgba(61, 214, 198, 0.075);
  color: #a7fff1 !important;
  font-size: 12px !important;
  font-weight: 760 !important;
  text-transform: none !important;
}

body.dx-site .dx-answer-card h3,
body.dx-site .dx-case-card h3,
body.dx-site .dx-detail-panel h2 {
  color: var(--dx-text) !important;
}

body.dx-site .dx-answer-card h3 a,
body.dx-site .dx-case-card h3 a {
  color: inherit;
  text-decoration: none;
}

body.dx-site .dx-answer-card h3 a:hover,
body.dx-site .dx-case-card h3 a:hover {
  color: #fff1c7 !important;
}

body.dx-site .dx-answer-card p,
body.dx-site .dx-case-card p,
body.dx-site .dx-detail-panel p {
  color: var(--dx-muted) !important;
}

body.dx-site .dx-detail-article {
  max-width: var(--dx-readable) !important;
}

body.dx-site .dx-detail-panel {
  position: relative;
  overflow: hidden;
  padding: 22px !important;
}

body.dx-site .dx-detail-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--dx-highlight);
  opacity: 0.72;
}

body.dx-site .dx-citation-panel {
  background:
    linear-gradient(180deg, rgba(61, 214, 198, 0.1), rgba(232, 177, 93, 0.04)),
    var(--dx-card-strong) !important;
}

body.dx-site .dx-keywords {
  border-top: 1px solid var(--dx-border);
  padding-top: 16px;
  color: var(--dx-subtle) !important;
}

body.dx-site .dx-footer {
  background: rgba(9, 13, 13, 0.76) !important;
}

body.dx-page-mulu main > section:first-child,
body.dx-page-ai-yinyong main > section:first-child,
body.dx-page-search-intents main > section:first-child {
  min-height: 350px;
  display: grid;
  align-content: center;
}

body.dx-page-mulu main > section:first-child h1,
body.dx-page-ai-yinyong main > section:first-child h1,
body.dx-page-search-intents main > section:first-child h1 {
  max-width: 960px !important;
}

body.dx-page-mulu main > section:first-child p:last-child,
body.dx-page-ai-yinyong main > section:first-child p:last-child,
body.dx-page-search-intents main > section:first-child p:last-child {
  max-width: 840px !important;
}

body.dx-site .dx-resource-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

body.dx-site .dx-resource-card {
  display: flex;
  flex-direction: column;
  min-height: 104px;
  border: 1px solid var(--dx-border) !important;
  border-radius: var(--dx-radius) !important;
  padding: 18px 20px !important;
  background:
    linear-gradient(180deg, rgba(248, 250, 247, 0.075), rgba(248, 250, 247, 0.024)),
    var(--dx-card) !important;
  color: var(--dx-text) !important;
  text-decoration: none !important;
  box-shadow: var(--dx-shadow-soft), var(--dx-shadow-line);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

body.dx-site .dx-resource-card::before {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--dx-highlight);
  opacity: 0.7;
}

body.dx-site .dx-resource-card:hover,
body.dx-site .dx-resource-card:focus-visible {
  border-color: rgba(61, 214, 198, 0.46) !important;
  box-shadow: var(--dx-shadow), var(--dx-shadow-line);
  transform: translateY(-2px);
}

body.dx-site .dx-resource-card strong {
  display: block;
  color: var(--dx-text) !important;
  font-size: 16px;
  line-height: 1.45;
}

body.dx-site .dx-resource-card span {
  display: block;
  margin-top: 8px;
  color: var(--dx-muted) !important;
  font-size: 14px;
  line-height: 1.65;
}

body.dx-site .dx-intent-list {
  display: grid;
  gap: 10px;
}

body.dx-site .dx-intent-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.75fr);
  gap: 16px;
  align-items: center;
  border: 1px solid var(--dx-border);
  border-radius: var(--dx-radius);
  padding: 13px 16px;
  background:
    linear-gradient(180deg, rgba(248, 250, 247, 0.058), rgba(248, 250, 247, 0.018)),
    rgba(16, 24, 22, 0.72);
  color: var(--dx-text);
  text-decoration: none;
  box-shadow: var(--dx-shadow-line);
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

body.dx-site .dx-intent-row:hover,
body.dx-site .dx-intent-row:focus-visible {
  border-color: rgba(61, 214, 198, 0.42);
  transform: translateY(-1px);
}

body.dx-site .dx-intent-row span {
  color: var(--dx-text);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
}

body.dx-site .dx-intent-row strong {
  color: var(--dx-subtle);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 520;
  line-height: 1.45;
  overflow-wrap: anywhere;
  text-align: right;
}

body.dx-site .dx-resource-card.is-primary {
  border-color: rgba(61, 214, 198, 0.42) !important;
  background:
    linear-gradient(135deg, rgba(61, 214, 198, 0.16), rgba(232, 177, 93, 0.07)),
    var(--dx-card-strong) !important;
}

@media (min-width: 720px) {
  body.dx-site .dx-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  body.dx-site .dx-resource-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

body.dx-page-decision-tools {
  color-scheme: dark;
}

body.dx-page-decision-tools .pt-20 {
  padding-top: 0 !important;
}

body.dx-page-decision-tools nav.fixed.top-0 {
  position: sticky !important;
  top: 72px !important;
  z-index: 70 !important;
  border-bottom: 1px solid var(--dx-border) !important;
  background: rgba(7, 12, 11, 0.76) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

body.dx-page-decision-tools nav.fixed.top-0 .h-16 {
  min-height: 48px !important;
  height: auto !important;
  padding-top: 6px;
  padding-bottom: 6px;
}

body.dx-page-decision-tools nav.fixed.top-0 .text-2xl {
  font-size: 18px !important;
  line-height: 1.2 !important;
}

body.dx-page-decision-tools nav.fixed.top-0 a[href*="choice-algorithms"] {
  min-height: 36px !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
}

body.dx-page-decision-tools #theme-toggle {
  display: none !important;
}

body.dx-page-decision-tools .scroll-indicator {
  height: 2px;
  background: linear-gradient(90deg, var(--dx-brand), var(--dx-accent)) !important;
}

body.dx-page-decision-tools .min-h-screen {
  min-height: min(650px, calc(76svh - 116px)) !important;
  background:
    linear-gradient(135deg, rgba(7, 12, 11, 0.98), rgba(20, 34, 30, 0.95) 54%, rgba(9, 14, 16, 0.98)),
    linear-gradient(110deg, rgba(61, 214, 198, 0.12), transparent 44%),
    linear-gradient(255deg, rgba(232, 177, 93, 0.1), transparent 42%) !important;
}

body.dx-page-decision-tools .min-h-screen > .absolute.inset-0[class*="bg-gradient-to-br"] {
  background:
    linear-gradient(135deg, rgba(11, 15, 14, 0.98), rgba(20, 30, 28, 0.96) 52%, rgba(12, 17, 19, 0.98)),
    linear-gradient(90deg, rgba(61, 214, 198, 0.08), transparent 52%),
    linear-gradient(270deg, rgba(232, 177, 93, 0.08), transparent 48%) !important;
}

body.dx-page-decision-tools .min-h-screen h1 {
  color: #f8faf7 !important;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

body.dx-page-decision-tools .min-h-screen h1 .bg-clip-text.text-transparent {
  background-image: linear-gradient(135deg, #f8faf7 0%, #d8fff5 44%, #fff0bf 74%, #e4ddff 100%) !important;
  opacity: 1 !important;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34));
}

body.dx-page-decision-tools .bg-white\/5,
body.dx-page-decision-tools [class*="bg-white/5"] {
  border-color: var(--dx-border) !important;
  border-radius: var(--dx-radius) !important;
  background:
    linear-gradient(180deg, rgba(248, 250, 247, 0.07), rgba(248, 250, 247, 0.025)),
    rgba(20, 30, 28, 0.74) !important;
}

body.dx-page-decision-tools [class*="shadow-blue-500"] {
  box-shadow: 0 14px 30px rgba(14, 143, 132, 0.24) !important;
}

body.dx-page-decision-tools .absolute[class*="blur-3xl"],
body.dx-page-decision-tools .absolute[class*="blur-2xl"][class*="rounded-full"],
body.dx-page-decision-tools .absolute[class*="blur-xl"][class*="rounded-full"] {
  display: none !important;
}

body.dx-page-decision-tools #hero-particles {
  opacity: 0.18;
}

body.dx-page-decision-tools .tool-card {
  padding: 24px !important;
  transform: none !important;
}

body.dx-page-decision-tools .tool-card:hover {
  transform: translateY(-3px) !important;
}

body.dx-page-decision-tools .tool-card::before {
  left: 0 !important;
  width: 100% !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--dx-brand), var(--dx-accent), transparent) !important;
  opacity: 0.8;
}

body.dx-page-decision-tools .tool-card::after {
  display: none !important;
}

body.dx-page-decision-tools .filter-btn {
  border: 1px solid var(--dx-border) !important;
  border-radius: var(--dx-radius) !important;
  background: rgba(248, 250, 247, 0.045) !important;
  color: var(--dx-muted) !important;
}

body.dx-page-decision-tools .filter-btn.active-filter,
body.dx-page-decision-tools .filter-btn.active {
  border-color: rgba(61, 214, 198, 0.52) !important;
  background: linear-gradient(135deg, rgba(61, 214, 198, 0.22), rgba(232, 177, 93, 0.12)) !important;
  color: #f8faf7 !important;
  transform: none !important;
}

body.dx-page-decision-tools .chart-container {
  height: min(420px, 62vh) !important;
  background:
    linear-gradient(180deg, rgba(248, 250, 247, 0.07), rgba(248, 250, 247, 0.026)),
    var(--dx-card) !important;
}

body.dx-page-decision-tools .modal {
  z-index: 140 !important;
  background: rgba(2, 6, 6, 0.72) !important;
}

body.dx-page-decision-tools .modal-content {
  background:
    linear-gradient(180deg, rgba(248, 250, 247, 0.075), rgba(248, 250, 247, 0.025)),
    #101816 !important;
  border: 1px solid var(--dx-border) !important;
  color: var(--dx-text) !important;
}

body.dx-page-decision-tools .modal-content .sticky.top-0 {
  border-bottom: 1px solid var(--dx-border) !important;
  background: rgba(16, 24, 22, 0.96) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.dx-page-decision-tools #modal-title {
  color: #7ee7dc !important;
}

body.dx-page-decision-tools #close-modal {
  color: var(--dx-subtle) !important;
}

body.dx-page-decision-tools #close-modal:hover,
body.dx-page-decision-tools #close-modal:focus-visible {
  color: var(--dx-text) !important;
}

body.dx-page-decision-tools .modal-content .text-slate-700,
body.dx-page-decision-tools .modal-content .text-slate-600,
body.dx-page-decision-tools .modal-content .text-gray-700,
body.dx-page-decision-tools .modal-content .text-gray-600 {
  color: var(--dx-muted) !important;
}

body.dx-page-decision-tools .modal-content [class*="bg-gray-50"],
body.dx-page-decision-tools .modal-content [class*="bg-emerald-50"],
body.dx-page-decision-tools .modal-content [class*="bg-green-100"],
body.dx-page-decision-tools .modal-content [class*="bg-yellow-100"],
body.dx-page-decision-tools .modal-content [class*="bg-blue-100"],
body.dx-page-decision-tools .modal-content [class*="bg-red-100"],
body.dx-page-decision-tools .modal-content [class*="bg-gray-200"],
body.dx-page-decision-tools .modal-content [class*="bg-red-200"],
body.dx-page-decision-tools .modal-content [class*="bg-blue-200"],
body.dx-page-decision-tools .modal-content [class*="bg-yellow-200"] {
  background: rgba(248, 250, 247, 0.065) !important;
  border: 1px solid var(--dx-border);
  color: var(--dx-muted) !important;
}

/* Stable visual unification layer: keep page content intact while removing old per-page color drift. */
body.dx-site .dx-header-inner,
body.dx-site main > section > div,
body.dx-site .content-wrapper,
body.dx-site footer > * {
  width: min(100%, var(--dx-max));
}

body.dx-site .product-showcase {
  width: min(calc(100% - 32px), var(--dx-max));
}

body.dx-site main > section:not(:first-child) {
  padding-top: clamp(48px, 7vw, 76px) !important;
  padding-bottom: clamp(48px, 7vw, 76px) !important;
}

body.dx-site main > section:not(:first-child)::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 250, 247, 0.09), rgba(61, 214, 198, 0.22), transparent);
  opacity: 0.72;
}

body.dx-site main > section:not(:first-child) h2[class*="border-b-"],
body.dx-site main > section:not(:first-child) h2[class*="border-b-2"] {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body.dx-site main > section:not(:first-child) h2[class*="text-center"] {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

body.dx-site main > section:not(:first-child) h2[class*="text-center"]::after {
  margin-left: auto;
  margin-right: auto;
}

body.dx-site main > section:not(:first-child) h2 + p,
body.dx-site main > section:not(:first-child) h2 + .mt-3,
body.dx-site main > section:not(:first-child) h2 + .mb-10,
body.dx-site main > section:not(:first-child) p[class*="max-w-3xl"] {
  color: var(--dx-muted) !important;
}

body.dx-site .hero-section .text-sm a,
body.dx-site .hero-gradient .text-sm a,
body.dx-site main > section:first-child a[href^="#"]:not([class*="bg-"]):not([class*="border"]) {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(248, 250, 247, 0.12);
  border-radius: var(--dx-radius);
  padding: 5px 10px;
  background: rgba(248, 250, 247, 0.05);
  color: #b8fff4 !important;
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
}

body.dx-site .hero-section .text-sm a:hover,
body.dx-site .hero-gradient .text-sm a:hover,
body.dx-site main > section:first-child a[href^="#"]:not([class*="bg-"]):not([class*="border"]):hover {
  border-color: rgba(61, 214, 198, 0.38);
  background: rgba(61, 214, 198, 0.1);
  color: #ffffff !important;
}

body.dx-site main section .grid > div[class*="rounded-"][class*="p-"],
body.dx-site main section .grid > a[class*="rounded-"][class*="p-"],
body.dx-site main section ol > li[class*="rounded-"][class*="p-"],
body.dx-site main section ul > li[class*="rounded-"][class*="p-"] {
  border: 1px solid var(--dx-border) !important;
  background:
    linear-gradient(180deg, rgba(248, 250, 247, 0.078), rgba(248, 250, 247, 0.024)),
    rgba(18, 27, 25, 0.84) !important;
  box-shadow: var(--dx-shadow-soft), var(--dx-shadow-line) !important;
}

body.dx-site main section .grid > a[class*="rounded-"][class*="p-"],
body.dx-site main section .grid > div[class*="rounded-"][class*="p-"],
body.dx-site .dx-resource-card,
body.dx-site .product-card,
body.dx-site .tool-card {
  isolation: isolate;
  position: relative;
}

body.dx-site main section .grid > a[class*="rounded-"][class*="p-"]::after,
body.dx-site main section .grid > div[class*="rounded-"][class*="p-"]::after,
body.dx-site .dx-resource-card::after,
body.dx-site .product-card::after,
body.dx-site .tool-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(61, 214, 198, 0.1), transparent 38%, rgba(232, 177, 93, 0.075));
  opacity: 0;
  transition: opacity 0.18s ease;
}

body.dx-site main section .grid > a[class*="rounded-"][class*="p-"]:hover::after,
body.dx-site main section .grid > div[class*="rounded-"][class*="p-"]:hover::after,
body.dx-site .dx-resource-card:hover::after,
body.dx-site .product-card:hover::after,
body.dx-site .tool-card:hover::after {
  opacity: 1;
}

body.dx-site .icon-wrapper,
body.dx-site .product-card [class*="w-16"][class*="h-16"],
body.dx-site .tool-card [class*="w-16"][class*="h-16"],
body.dx-site main section .grid [class*="w-10"][class*="h-10"] {
  border: 1px solid rgba(61, 214, 198, 0.2) !important;
  background:
    linear-gradient(135deg, rgba(61, 214, 198, 0.16), rgba(232, 177, 93, 0.08)),
    rgba(248, 250, 247, 0.055) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.22);
  color: #7ee7dc !important;
}

body.dx-site [class*="bg-blue-400"],
body.dx-site [class*="bg-green-400"],
body.dx-site [class*="bg-purple-400"],
body.dx-site [class*="bg-orange-400"],
body.dx-site [class*="bg-yellow-400"],
body.dx-site [class*="bg-cyan-400"],
body.dx-site [class*="bg-emerald-400"],
body.dx-site [class*="bg-rose-400"],
body.dx-site [class*="bg-pink-400"],
body.dx-site [class*="bg-violet-400"] {
  background-color: var(--dx-brand) !important;
}

body.dx-site .product-card ul,
body.dx-site article ul,
body.dx-site .dx-detail-panel ul {
  display: grid;
  gap: 8px;
}

body.dx-site .product-card li,
body.dx-site article li,
body.dx-site .dx-detail-panel li {
  color: var(--dx-muted) !important;
}

body.dx-site table {
  box-shadow: var(--dx-shadow-soft), var(--dx-shadow-line);
}

body.dx-site tbody tr:nth-child(even) {
  background: rgba(248, 250, 247, 0.025);
}

body.dx-site tbody tr:hover {
  background: rgba(61, 214, 198, 0.055);
}

body.dx-site details {
  border: 1px solid var(--dx-border) !important;
  background:
    linear-gradient(180deg, rgba(248, 250, 247, 0.068), rgba(248, 250, 247, 0.02)),
    var(--dx-card) !important;
}

body.dx-site details summary {
  list-style: none;
}

body.dx-site details summary::-webkit-details-marker {
  display: none;
}

body.dx-site details summary::after {
  content: "+";
  float: right;
  margin-left: 16px;
  color: var(--dx-brand);
  font-weight: 760;
}

body.dx-site details[open] summary::after {
  content: "-";
}

body.dx-site .dx-answer-card,
body.dx-site .dx-case-card,
body.dx-site .dx-detail-panel,
body.dx-site .dx-resource-card,
body.dx-site main section .grid > a[class*="rounded-"][class*="p-"],
body.dx-site main section .grid > div[class*="rounded-"][class*="p-"] {
  min-width: 0;
}

body.dx-site .dx-answer-card h3,
body.dx-site .dx-case-card h3,
body.dx-site .dx-resource-card strong,
body.dx-site .product-card h3,
body.dx-site main section .grid h3 {
  text-wrap: balance;
}

body.dx-site .dx-answer-card p,
body.dx-site .dx-case-card p,
body.dx-site .dx-resource-card span,
body.dx-site .product-card p,
body.dx-site main section .grid p {
  overflow-wrap: anywhere;
}

body.dx-site .dx-generated-hero,
body.dx-site .dx-detail-article,
body.dx-page-rensheng-xuanze main > section:first-child,
body.dx-page-rensheng-juece main > section:first-child,
body.dx-page-zhongda-xuanze main > section:first-child,
body.dx-page-ruhe-zuo-xuanze main > section:first-child,
body.dx-page-xuanze main > section:first-child,
body.dx-page-xuanze-kunnan main > section:first-child {
  min-height: clamp(360px, 52svh, 560px);
}

body.dx-site .product-showcase {
  margin-bottom: clamp(32px, 5vw, 56px);
}

body.dx-site .product-showcase > h2,
body.dx-site .content-wrapper > h2 {
  max-width: 900px;
}

body.dx-site .product-showcase [class*="grid"],
body.dx-site .content-wrapper [class*="grid"] {
  align-items: stretch;
}

body.dx-page-home #specialized-guides a,
body.dx-page-home #core-choice-intents a,
body.dx-page-home #featured-choice-details a,
body.dx-page-home #ai-discovery-entry a {
  min-height: 100%;
}

@media (max-width: 880px) {
  .dx-header-inner {
    min-height: auto;
    padding: 10px 14px;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .dx-brand {
    flex: 1 1 auto;
  }

  .dx-nav {
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px;
    overflow-x: visible;
    padding-bottom: 2px;
  }

  .dx-nav a,
  .dx-nav-cta {
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }

  .dx-nav a {
    flex: 0 0 auto;
  }

  .dx-nav-cta {
    order: 2;
  }

  body.dx-site.dx-page-home .hero-section {
    min-height: min(640px, calc(78svh - 144px)) !important;
    padding-top: 24px;
    padding-bottom: 42px;
  }

  body.dx-site.dx-page-zixun .hero-section {
    min-height: min(620px, calc(76svh - 144px)) !important;
  }

  body.dx-site .hero-section h1,
  body.dx-site .hero-gradient h1 {
    font-size: 38px !important;
    line-height: 1.14 !important;
  }

  body.dx-site main > section:first-child[class*="max-w-6xl"],
  body.dx-site main > section:first-child[class*="max-w-4xl"],
  body.dx-site .dx-generated-hero {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body.dx-site.dx-page-home .hero-section .text-sm > span.text-gray-600 {
    display: none !important;
  }

  body.dx-site nav.fixed.top-0 {
    top: 144px !important;
  }

  body.dx-site .product-showcase,
  body.dx-site .content-wrapper {
    box-shadow: var(--dx-shadow-soft) !important;
  }

  body.dx-page-decision-tools nav.fixed.top-0 {
    top: 126px !important;
  }

  body.dx-page-decision-tools .min-h-screen {
    min-height: min(620px, calc(76svh - 172px)) !important;
  }

  body.dx-site .dx-answer-card,
  body.dx-site .dx-case-card,
  body.dx-site .dx-detail-panel {
    padding: 18px !important;
  }

  body.dx-site .dx-intent-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  body.dx-site .dx-intent-row strong {
    text-align: left;
  }

  body.dx-site .dx-detail-article {
    padding-top: 48px !important;
    padding-bottom: 56px !important;
  }
}

@media (max-width: 520px) {
  .dx-nav a {
    flex: 1 1 calc(33.333% - 8px);
    justify-content: center;
    padding: 0 6px;
  }

  body.dx-site .hero-section h1,
  body.dx-site .hero-gradient h1 {
    font-size: 34px !important;
  }

  body.dx-site .hero-section p.text-xl,
  body.dx-site .hero-gradient p.text-xl {
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  body.dx-site a[class*="bg-white"],
  body.dx-site a[class*="bg-blue-"],
  body.dx-site a[class*="bg-purple-"],
  body.dx-site a[class*="bg-green-"],
  body.dx-site a[class*="bg-gradient-to-r"],
  body.dx-site button[class*="bg-gradient-to-r"],
  body.dx-site .dx-hero-actions a,
  body.dx-site .dx-detail-actions a {
    width: 100%;
    justify-content: center;
  }

  body.dx-site .dx-generated-hero h1,
  body.dx-site .dx-detail-article h1 {
    font-size: 34px !important;
    line-height: 1.16 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.dx-site *,
  body.dx-site *::before,
  body.dx-site *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Quality pass: one restrained visual language across legacy pages and generated pages. */
body.dx-site {
  color-scheme: dark;
}

body.dx-site main {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  background-position: 0 0, center top, center top;
}

body.dx-site main > section > div,
body.dx-site .dx-detail-article,
body.dx-site .content-wrapper,
body.dx-site .product-showcase {
  margin-left: auto !important;
  margin-right: auto !important;
}

body.dx-site .dx-header {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

body.dx-site .dx-brand span {
  line-height: 1;
}

body.dx-site .dx-nav a {
  border: 1px solid transparent;
}

body.dx-site .dx-nav a:hover,
body.dx-site .dx-nav a:focus-visible {
  border-color: rgba(248, 250, 247, 0.11);
}

body.dx-site .dx-nav-cta {
  min-width: 94px;
  justify-content: center;
}

body.dx-site main > section:first-child {
  min-height: clamp(360px, 50svh, 620px);
  display: grid;
  align-content: center;
}

body.dx-site main > section:first-child h1 {
  max-width: 980px;
}

body.dx-site main > section:first-child h1 + p,
body.dx-site main > section:first-child p[class*="leading-8"] {
  max-width: var(--dx-readable);
}

body.dx-site .dx-resource-grid,
body.dx-site .dx-card-stack,
body.dx-site main section .grid {
  gap: clamp(14px, 2vw, 22px) !important;
}

body.dx-site .dx-answer-card,
body.dx-site .dx-case-card,
body.dx-site .dx-detail-panel,
body.dx-site .dx-resource-card,
body.dx-site article,
body.dx-site details,
body.dx-site .product-card,
body.dx-site .tool-card,
body.dx-site main section .grid > a[class*="rounded-"][class*="p-"],
body.dx-site main section .grid > div[class*="rounded-"][class*="p-"] {
  border-width: 1px !important;
  border-style: solid !important;
  outline: 1px solid rgba(255, 255, 255, 0.018);
}

body.dx-site .dx-detail-panel,
body.dx-site .dx-resource-card,
body.dx-site article,
body.dx-site details {
  backdrop-filter: blur(12px) saturate(112%);
  -webkit-backdrop-filter: blur(12px) saturate(112%);
}

body.dx-site .dx-resource-card.is-primary,
body.dx-site .dx-citation-panel {
  box-shadow:
    0 0 0 1px rgba(61, 214, 198, 0.2),
    0 18px 44px rgba(14, 143, 132, 0.14),
    var(--dx-shadow-line) !important;
}

body.dx-site .dx-detail-article {
  max-width: 880px !important;
}

body.dx-site .dx-detail-article > p:first-child,
body.dx-site main > section:first-child > p:first-child,
body.dx-site main > section:first-child div > p:first-child {
  letter-spacing: 0 !important;
}

body.dx-site .dx-detail-actions,
body.dx-site .dx-hero-actions {
  align-items: center;
}

body.dx-site .dx-detail-actions a,
body.dx-site .dx-hero-actions a,
body.dx-site footer a {
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

body.dx-site .dx-detail-actions a:hover,
body.dx-site .dx-hero-actions a:hover,
body.dx-site footer a:hover {
  transform: translateY(-1px);
}

body.dx-site pre,
body.dx-site code,
body.dx-site kbd {
  border-radius: var(--dx-radius);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

body.dx-site code,
body.dx-site kbd {
  border: 1px solid rgba(248, 250, 247, 0.12);
  background: rgba(248, 250, 247, 0.055);
  color: #c8fff5;
  padding: 2px 6px;
}

body.dx-site pre {
  overflow-x: auto;
  border: 1px solid var(--dx-border);
  background:
    linear-gradient(180deg, rgba(248, 250, 247, 0.06), rgba(248, 250, 247, 0.018)),
    rgba(8, 13, 12, 0.86);
  color: var(--dx-muted);
  padding: 18px;
  box-shadow: var(--dx-shadow-soft), var(--dx-shadow-line);
}

body.dx-site pre code {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
}

body.dx-site table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--dx-border);
  border-radius: var(--dx-radius);
  background: rgba(13, 22, 20, 0.7);
}

body.dx-site th,
body.dx-site td {
  border-bottom: 1px solid rgba(248, 250, 247, 0.09);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

body.dx-site th {
  background: rgba(248, 250, 247, 0.06);
  color: var(--dx-text);
  font-weight: 720;
}

body.dx-site tr:last-child td {
  border-bottom: 0;
}

body.dx-site .dx-footer,
body.dx-site footer {
  border-top: 1px solid var(--dx-border) !important;
  background:
    linear-gradient(180deg, rgba(248, 250, 247, 0.035), rgba(248, 250, 247, 0.012)),
    rgba(7, 11, 10, 0.88);
}

body.dx-site footer p {
  max-width: var(--dx-readable);
  margin-left: auto;
  margin-right: auto;
  color: var(--dx-subtle) !important;
}

body.dx-page-about main > section:first-child {
  background:
    linear-gradient(135deg, rgba(61, 214, 198, 0.13), transparent 38%),
    linear-gradient(255deg, rgba(232, 177, 93, 0.1), transparent 45%),
    linear-gradient(180deg, rgba(248, 250, 247, 0.035), rgba(248, 250, 247, 0));
}

body.dx-page-about .dx-resource-card[href="/about.json"] {
  border-style: dashed !important;
}

body.dx-site .dx-topic-related {
  scroll-margin-top: 96px;
}

@media (max-width: 880px) {
  body.dx-site .dx-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body.dx-site .dx-nav::-webkit-scrollbar {
    display: none;
  }

  body.dx-site .dx-nav a,
  body.dx-site .dx-nav-cta {
    white-space: nowrap;
  }

  body.dx-site main > section:first-child {
    min-height: clamp(300px, 46svh, 520px);
  }
}

@media (max-width: 520px) {
  .dx-nav a {
    flex: 0 0 auto;
  }

  body.dx-site th,
  body.dx-site td {
    padding: 10px 12px;
  }
}

/* Steady premium UI pass: shared polish without changing page structure or SEO content. */
body.dx-site {
  --dx-hairline: rgba(255, 255, 255, 0.075);
  --dx-surface-depth: linear-gradient(180deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.024));
  --dx-surface-depth-strong: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.032));
  --dx-button-primary: linear-gradient(135deg, #3de0ce 0%, #98f3e8 58%, #ffe7a7 100%);
  --dx-button-secondary: rgba(255, 255, 255, 0.052);
  background:
    linear-gradient(180deg, #070909 0%, #101715 42%, #070909 100%),
    linear-gradient(118deg, rgba(61, 214, 198, 0.07), transparent 36%),
    linear-gradient(248deg, rgba(232, 177, 93, 0.055), transparent 40%) !important;
}

body.dx-site main {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 20%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: auto, 84px 84px, 84px 84px;
}

body.dx-site .dx-header {
  background:
    linear-gradient(180deg, rgba(16, 24, 22, 0.94), rgba(9, 13, 13, 0.9));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28), inset 0 -1px 0 rgba(255, 255, 255, 0.028);
}

body.dx-site .dx-header-inner {
  min-height: 68px;
}

body.dx-site .dx-brand {
  font-size: 17px;
  letter-spacing: 0 !important;
}

body.dx-site .dx-brand img {
  width: 36px;
  height: 36px;
  padding: 2px;
  background: rgba(255, 255, 255, 0.062);
  object-fit: contain;
}

body.dx-site .dx-nav {
  gap: 6px;
}

body.dx-site .dx-nav a,
body.dx-site .dx-nav-cta {
  min-height: 36px;
  padding: 0 11px;
  line-height: 1;
}

body.dx-site .dx-nav a:hover,
body.dx-site .dx-nav a:focus-visible,
body.dx-site .dx-nav-cta:hover,
body.dx-site .dx-nav-cta:focus-visible {
  transform: translateY(-1px);
}

body.dx-site .dx-nav-cta {
  background: var(--dx-button-primary);
  border-color: rgba(255, 255, 255, 0.2);
  color: #071615;
  box-shadow: 0 12px 28px rgba(14, 143, 132, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

body.dx-site main > section:first-child,
body.dx-site .dx-generated-hero,
body.dx-site .hero-section,
body.dx-site .hero-gradient {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    linear-gradient(128deg, rgba(61, 214, 198, 0.12), transparent 42%),
    linear-gradient(252deg, rgba(232, 177, 93, 0.085), transparent 44%),
    #0b1110 !important;
}

body.dx-site main > section:first-child::before,
body.dx-site .dx-generated-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 72%);
}

body.dx-site main > section:first-child h1,
body.dx-site .dx-generated-hero h1,
body.dx-site .dx-detail-article h1 {
  font-size: clamp(38px, 6vw, 66px) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
}

body.dx-site .dx-detail-article h1 {
  font-size: clamp(34px, 4.8vw, 52px) !important;
}

body.dx-site main > section:first-child h1 + p,
body.dx-site .dx-generated-hero p:not(:first-child),
body.dx-site .hero-section h1 + p,
body.dx-site .hero-gradient h1 + p {
  font-size: clamp(16px, 1.6vw, 19px) !important;
  line-height: 1.82 !important;
}

body.dx-site h2[class*="text-"],
body.dx-site .content-wrapper h2,
body.dx-site main h2,
body.dx-site main h2[class*="text-"],
body.dx-site main > section:not(:first-child) h2 {
  background-image: none !important;
  color: var(--dx-text) !important;
  -webkit-text-fill-color: var(--dx-text) !important;
  line-height: 1.16 !important;
}

body.dx-site main h2.gradient-text,
body.dx-site main h2.bg-clip-text.text-transparent,
body.dx-site main h2 .gradient-text,
body.dx-site main h2 .bg-clip-text.text-transparent,
body.dx-site main > section:not(:first-child) h2.gradient-text,
body.dx-site main > section:not(:first-child) h2.bg-clip-text.text-transparent,
body.dx-site main > section:not(:first-child) h2 .gradient-text,
body.dx-site main > section:not(:first-child) h2 .bg-clip-text.text-transparent {
  background-image: none !important;
  color: var(--dx-text) !important;
  -webkit-text-fill-color: var(--dx-text) !important;
}

body.dx-site main > section:not(:first-child) h2::after {
  width: 64px;
  height: 2px;
  margin-top: 14px;
}

body.dx-site .dx-hero-actions a,
body.dx-site .dx-detail-actions a,
body.dx-site main a[class*="bg-white"],
body.dx-site main a[class*="bg-blue-"],
body.dx-site main a[class*="bg-purple-"],
body.dx-site main a[class*="bg-green-"],
body.dx-site main a[class*="bg-gradient-to-r"],
body.dx-site main button[class*="bg-gradient-to-r"] {
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: var(--dx-radius) !important;
  padding: 10px 16px !important;
  background: var(--dx-button-primary) !important;
  color: #061514 !important;
  font-size: 14px !important;
  font-weight: 780 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  box-shadow: 0 16px 34px rgba(14, 143, 132, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.38) !important;
}

body.dx-site .dx-hero-actions a:not(:first-child),
body.dx-site .dx-detail-actions a:not(:first-child),
body.dx-site main a[class*="border"]:not([class*="bg-white"]):not([class*="bg-blue-"]):not([class*="bg-purple-"]):not([class*="bg-green-"]):not([class*="bg-gradient-to-r"]) {
  background: var(--dx-button-secondary) !important;
  color: var(--dx-text) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

body.dx-site .dx-hero-actions a:hover,
body.dx-site .dx-detail-actions a:hover,
body.dx-site main a[class*="bg-white"]:hover,
body.dx-site main a[class*="bg-blue-"]:hover,
body.dx-site main a[class*="bg-purple-"]:hover,
body.dx-site main a[class*="bg-green-"]:hover,
body.dx-site main a[class*="bg-gradient-to-r"]:hover {
  border-color: rgba(255, 255, 255, 0.28) !important;
  transform: translateY(-2px);
}

body.dx-site .content-wrapper,
body.dx-site .product-showcase,
body.dx-site .dx-answer-card,
body.dx-site .dx-case-card,
body.dx-site .dx-detail-panel,
body.dx-site .dx-resource-card,
body.dx-site article,
body.dx-site details,
body.dx-site .glass-card,
body.dx-site .chapter-card,
body.dx-site .tool-card,
body.dx-site main section .grid > a[class*="rounded-"][class*="p-"],
body.dx-site main section .grid > div[class*="rounded-"][class*="p-"] {
  background:
    var(--dx-surface-depth),
    rgba(17, 26, 24, 0.86) !important;
  border-color: var(--dx-hairline) !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
}

body.dx-site .dx-resource-card:hover,
body.dx-site .dx-answer-card:hover,
body.dx-site .dx-case-card:hover,
body.dx-site .product-card:hover,
body.dx-site .tool-card:hover,
body.dx-site main section .grid > a[class*="rounded-"][class*="p-"]:hover,
body.dx-site main section .grid > div[class*="rounded-"][class*="p-"]:hover {
  border-color: rgba(61, 214, 198, 0.38) !important;
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(61, 214, 198, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

body.dx-site .dx-answer-card h3,
body.dx-site .dx-case-card h3,
body.dx-site .dx-resource-card strong,
body.dx-site .product-card h3,
body.dx-site main section .grid h3,
body.dx-site article h3 {
  font-weight: 760 !important;
  line-height: 1.34 !important;
}

body.dx-site .dx-answer-card p,
body.dx-site .dx-case-card p,
body.dx-site .dx-resource-card span,
body.dx-site .product-card p,
body.dx-site article p,
body.dx-site details p,
body.dx-site li {
  line-height: 1.74 !important;
}

body.dx-site .dx-detail-panel {
  margin-top: 18px !important;
}

body.dx-site .dx-detail-panel h2 {
  font-size: 20px !important;
  line-height: 1.28 !important;
}

body.dx-site .dx-detail-panel p {
  font-size: 16px !important;
}

body.dx-site .product-card .mt-auto,
body.dx-site stripe-buy-button {
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

body.dx-site .dx-citation-panel {
  border-color: rgba(61, 214, 198, 0.32) !important;
  background:
    var(--dx-surface-depth-strong),
    linear-gradient(135deg, rgba(61, 214, 198, 0.09), rgba(232, 177, 93, 0.055)),
    rgba(18, 28, 25, 0.9) !important;
}

body.dx-site .footer-disclaimer,
body.dx-site .dx-footer,
body.dx-site footer {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

body.dx-site footer {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

body.dx-site footer p {
  line-height: 1.72;
}

@media (max-width: 880px) {
  body.dx-site .dx-header-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  body.dx-site .dx-brand img {
    width: 34px;
    height: 34px;
  }

  body.dx-site .dx-nav {
    gap: 7px;
    padding-bottom: 4px;
  }

  body.dx-site .dx-nav a,
  body.dx-site .dx-nav-cta {
    min-height: 34px;
    padding: 0 10px;
  }

  body.dx-site main > section:first-child h1,
  body.dx-site .dx-generated-hero h1,
  body.dx-site .hero-section h1,
  body.dx-site .hero-gradient h1 {
    font-size: clamp(34px, 10vw, 44px) !important;
    line-height: 1.1 !important;
  }

  body.dx-site main > section:not(:first-child) {
    padding-top: 44px !important;
    padding-bottom: 48px !important;
  }

  body.dx-site .content-wrapper,
  body.dx-site .product-showcase,
  body.dx-site .dx-answer-card,
  body.dx-site .dx-case-card,
  body.dx-site .dx-detail-panel,
  body.dx-site .dx-resource-card,
  body.dx-site .tool-card {
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  }
}

@media (max-width: 520px) {
  body.dx-site .dx-header-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  body.dx-site .dx-nav {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
  }

  body.dx-site .dx-nav a,
  body.dx-site .dx-nav-cta {
    font-size: 12px;
  }

  body.dx-site .dx-hero-actions a,
  body.dx-site .dx-detail-actions a {
    min-height: 44px;
  }

  body.dx-site .dx-answer-card,
  body.dx-site .dx-case-card,
  body.dx-site .dx-detail-panel,
  body.dx-site .dx-resource-card {
    padding: 18px !important;
  }
}

/* Stable UI consolidation pass: restrained, consistent polish across all static pages. */
body.dx-site {
  --dx-bg-ink: #070a0a;
  --dx-panel: rgba(18, 28, 26, 0.88);
  --dx-panel-soft: rgba(21, 32, 29, 0.74);
  --dx-panel-border: rgba(229, 239, 234, 0.105);
  --dx-panel-border-hover: rgba(61, 214, 198, 0.34);
  --dx-text-strong: #fbfdf9;
  --dx-text-body: #dce7e1;
  --dx-text-muted: #aabbb3;
  --dx-warm: #f0bd6b;
  --dx-cool: #42dccd;
  --dx-focus: 0 0 0 3px rgba(66, 220, 205, 0.22);
  --dx-ease: 160ms ease;
}

body.dx-site::before {
  opacity: 0.34;
}

body.dx-site main {
  background:
    radial-gradient(circle at 50% 0%, rgba(66, 220, 205, 0.07), transparent 34rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.011) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: auto, 96px 96px, 96px 96px;
}

body.dx-site h1,
body.dx-site h2,
body.dx-site h3,
body.dx-site strong {
  color: var(--dx-text-strong) !important;
}

body.dx-site p,
body.dx-site li,
body.dx-site dd,
body.dx-site td {
  color: var(--dx-text-body);
}

body.dx-site .dx-header {
  background:
    linear-gradient(180deg, rgba(13, 21, 19, 0.96), rgba(8, 11, 11, 0.91));
  border-bottom-color: rgba(229, 239, 234, 0.11);
}

body.dx-site .dx-header::after {
  opacity: 0.54;
}

body.dx-site .dx-brand {
  color: var(--dx-text-strong);
}

body.dx-site .dx-brand img {
  border: 1px solid rgba(255, 255, 255, 0.11);
}

body.dx-site .dx-nav a {
  color: var(--dx-text-muted);
}

body.dx-site .dx-nav a:hover,
body.dx-site .dx-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.062);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--dx-text-strong);
}

body.dx-site .dx-nav-cta,
body.dx-site .dx-hero-actions a:first-child,
body.dx-site .dx-detail-actions a:first-child {
  background:
    linear-gradient(135deg, #38d9c9 0%, #9cf3e8 58%, #ffe3a3 100%) !important;
  color: #061413 !important;
}

body.dx-site main > section:first-child,
body.dx-site .dx-generated-hero,
body.dx-site .hero-section,
body.dx-site .hero-gradient {
  border-bottom-color: rgba(229, 239, 234, 0.11) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.006) 48%, rgba(255, 255, 255, 0)),
    radial-gradient(circle at 18% 16%, rgba(66, 220, 205, 0.15), transparent 23rem),
    radial-gradient(circle at 82% 18%, rgba(240, 189, 107, 0.12), transparent 25rem),
    #0a1110 !important;
}

body.dx-site main > section:first-child p:first-child[class*="uppercase"],
body.dx-site .dx-detail-article > p:first-child,
body.dx-site .dx-answer-card p:first-child,
body.dx-site .dx-case-card p:first-child {
  border: 1px solid rgba(66, 220, 205, 0.2) !important;
  background: rgba(66, 220, 205, 0.07) !important;
  color: #a7fff3 !important;
  text-transform: none !important;
}

body.dx-site .content-wrapper,
body.dx-site .product-showcase,
body.dx-site .dx-answer-card,
body.dx-site .dx-case-card,
body.dx-site .dx-detail-panel,
body.dx-site .dx-resource-card,
body.dx-site article,
body.dx-site details,
body.dx-site .glass-card,
body.dx-site .chapter-card,
body.dx-site .tool-card,
body.dx-site main section .grid > a[class*="rounded-"][class*="p-"],
body.dx-site main section .grid > div[class*="rounded-"][class*="p-"],
body.dx-site main section ol > li[class*="rounded-"][class*="p-"],
body.dx-site main section ul > li[class*="rounded-"][class*="p-"] {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.088), rgba(255, 255, 255, 0.024)),
    var(--dx-panel) !important;
  border-color: var(--dx-panel-border) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.052) !important;
}

body.dx-site .content-wrapper:hover,
body.dx-site .product-showcase:hover,
body.dx-site .dx-answer-card:hover,
body.dx-site .dx-case-card:hover,
body.dx-site .dx-detail-panel:hover,
body.dx-site .dx-resource-card:hover,
body.dx-site article:hover,
body.dx-site details:hover,
body.dx-site .tool-card:hover,
body.dx-site main section .grid > a[class*="rounded-"][class*="p-"]:hover,
body.dx-site main section .grid > div[class*="rounded-"][class*="p-"]:hover {
  border-color: var(--dx-panel-border-hover) !important;
}

body.dx-site .dx-detail-article {
  max-width: 900px !important;
}

body.dx-site .dx-detail-panel,
body.dx-site .dx-citation-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.104), rgba(255, 255, 255, 0.028)),
    linear-gradient(135deg, rgba(66, 220, 205, 0.055), rgba(240, 189, 107, 0.035)),
    var(--dx-panel-soft) !important;
}

body.dx-site .dx-hero-actions,
body.dx-site .dx-detail-actions {
  gap: 12px !important;
}

body.dx-site .dx-hero-actions a,
body.dx-site .dx-detail-actions a,
body.dx-site main a[class*="bg-white"],
body.dx-site main a[class*="bg-blue-"],
body.dx-site main a[class*="bg-purple-"],
body.dx-site main a[class*="bg-green-"],
body.dx-site main a[class*="bg-gradient-to-r"],
body.dx-site main button[class*="bg-gradient-to-r"] {
  min-height: 44px;
  border-radius: 8px !important;
  transition: border-color var(--dx-ease), box-shadow var(--dx-ease), color var(--dx-ease), transform var(--dx-ease), filter var(--dx-ease);
}

body.dx-site .dx-hero-actions a:not(:first-child),
body.dx-site .dx-detail-actions a:not(:first-child) {
  border-color: rgba(229, 239, 234, 0.16) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  color: var(--dx-text-strong) !important;
}

body.dx-site a:focus-visible,
body.dx-site button:focus-visible,
body.dx-site summary:focus-visible,
body.dx-site input:focus-visible,
body.dx-site select:focus-visible,
body.dx-site textarea:focus-visible {
  box-shadow: var(--dx-focus) !important;
}

body.dx-site table {
  background: rgba(12, 19, 18, 0.82);
}

body.dx-site th {
  background: rgba(255, 255, 255, 0.065);
}

body.dx-site tbody tr:hover {
  background: rgba(66, 220, 205, 0.04);
}

body.dx-site footer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--dx-bg-ink) !important;
}

@media (max-width: 880px) {
  body.dx-site .dx-header-inner {
    gap: 9px 12px;
  }

  body.dx-site .dx-nav {
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 28px), transparent);
  }

  body.dx-site main > section:first-child,
  body.dx-site .dx-generated-hero,
  body.dx-site .hero-section,
  body.dx-site .hero-gradient {
    min-height: clamp(310px, 48svh, 540px) !important;
  }
}

@media (max-width: 520px) {
  body.dx-site main > section:first-child h1,
  body.dx-site .dx-generated-hero h1,
  body.dx-site .dx-detail-article h1,
  body.dx-site .hero-section h1,
  body.dx-site .hero-gradient h1 {
    font-size: clamp(32px, 10vw, 40px) !important;
  }

  body.dx-site .dx-hero-actions,
  body.dx-site .dx-detail-actions {
    align-items: stretch;
  }
}
