/* MeiZhiLink 2026 controlled redesign layer */

/* tokens */
:root {
  --mz-redesign-bg: #fbf7f1;
  --mz-redesign-bg-soft: #f6eee5;
  --mz-redesign-surface: #fffdf9;
  --mz-redesign-surface-warm: #fff8ef;
  --mz-redesign-surface-rose: #fff2ef;
  --mz-redesign-line: rgba(181, 138, 88, 0.22);
  --mz-redesign-line-strong: rgba(159, 102, 93, 0.34);
  --mz-redesign-ink: #171412;
  --mz-redesign-ink-soft: #3d332e;
  --mz-redesign-muted: #6f635c;
  --mz-redesign-rose: #9f665d;
  --mz-redesign-rose-deep: #805047;
  --mz-redesign-gold: #b58a58;
  --mz-redesign-sage: #2f6f64;
  --mz-redesign-danger: #a94343;
  --mz-redesign-info: #486b88;
  --mz-redesign-radius-sm: 6px;
  --mz-redesign-radius: 8px;
  --mz-redesign-radius-lg: 14px;
  --mz-redesign-shadow-soft: 0 18px 48px rgba(68, 49, 35, 0.10);
  --mz-redesign-shadow-focus: 0 18px 42px rgba(159, 102, 93, 0.16);
  --mz-redesign-font: "Manrope", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --mz-redesign-display: Georgia, "Times New Roman", "Noto Serif SC", serif;
}

/* base */
html {
  background: var(--mz-redesign-bg);
  color: var(--mz-redesign-ink);
  text-rendering: geometricPrecision;
}

body[data-ui-redesign] {
  margin: 0;
  min-width: 0;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(246, 238, 229, 0.94)),
    radial-gradient(circle at 16% 0%, rgba(245, 221, 207, 0.52), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(244, 223, 196, 0.48), transparent 28%),
    var(--mz-redesign-bg);
  color: var(--mz-redesign-ink);
  font-family: var(--mz-redesign-font);
  font-size: 15px;
  line-height: 1.62;
  overflow-x: hidden;
}

body[data-ui-redesign] *,
body[data-ui-redesign] *::before,
body[data-ui-redesign] *::after {
  box-sizing: border-box;
}

body[data-ui-redesign] img,
body[data-ui-redesign] video,
body[data-ui-redesign] canvas {
  max-width: 100%;
}

body[data-ui-redesign] :focus-visible {
  outline: 3px solid rgba(181, 138, 88, 0.34);
  outline-offset: 3px;
}

body[data-ui-redesign] ::selection {
  background: rgba(181, 138, 88, 0.24);
}

/* layout */
.app {
  background: linear-gradient(135deg, #fbf7f1 0%, #f7efe6 100%) !important;
}

.sidebar {
  border-right: 1px solid var(--mz-redesign-line) !important;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(248, 240, 231, 0.96)) !important;
  box-shadow: 18px 0 42px rgba(68, 49, 35, 0.08) !important;
}

.main {
  min-width: 0 !important;
  background: transparent !important;
  color: var(--mz-redesign-ink) !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(159, 102, 93, 0.38) rgba(255, 253, 249, 0.82);
}

.main::-webkit-scrollbar,
#authScreen::-webkit-scrollbar,
.auth-panel::-webkit-scrollbar {
  width: 10px;
}

.main::-webkit-scrollbar-thumb,
#authScreen::-webkit-scrollbar-thumb,
.auth-panel::-webkit-scrollbar-thumb {
  border: 3px solid rgba(255, 253, 249, 0.88);
  border-radius: 999px;
  background: rgba(159, 102, 93, 0.38);
}

.topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 20 !important;
  border: 1px solid rgba(181, 138, 88, 0.16) !important;
  background: rgba(255, 253, 249, 0.96) !important;
  box-shadow: 0 14px 34px rgba(68, 49, 35, 0.08) !important;
  backdrop-filter: blur(16px);
}

.content {
  padding-bottom: 42px !important;
}

.view {
  min-width: 0 !important;
}

/* components */
.brand-mark {
  border: 1px solid rgba(255, 255, 255, 0.68) !important;
  background: linear-gradient(145deg, #a56b61, #c69271) !important;
  box-shadow: 0 12px 28px rgba(159, 102, 93, 0.22) !important;
  color: #fffdf9 !important;
}

.brand-title,
.page-title,
.section-head h2,
.panel h3,
.tool-card h3,
.production-board h3,
#authScreen .auth-panel h2 {
  color: var(--mz-redesign-ink) !important;
  letter-spacing: 0 !important;
}

.page-title,
.section-head h2 {
  font-family: var(--mz-redesign-font) !important;
  font-weight: 900 !important;
}

.page-desc,
.section-head p,
.hint,
.panel p,
.tool-card p,
.field-hint,
.assist-note,
.next-step-tip {
  color: var(--mz-redesign-muted) !important;
}

.panel,
.interactive-surface,
.tool-card,
.quota-card,
.profile-card,
.account-settings-dialog,
.purchase-dialog {
  border: 1px solid var(--mz-redesign-line) !important;
  border-radius: var(--mz-redesign-radius) !important;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 248, 239, 0.96)) !important;
  box-shadow: var(--mz-redesign-shadow-soft) !important;
  color: var(--mz-redesign-ink) !important;
}

.panel:hover,
.tool-card:hover,
.interactive-surface:hover {
  border-color: rgba(159, 102, 93, 0.30) !important;
}

.btn,
.mini-btn,
.link-btn,
button {
  font-family: var(--mz-redesign-font) !important;
  letter-spacing: 0 !important;
}

.btn,
.mini-btn {
  min-height: 42px !important;
  border-radius: var(--mz-redesign-radius-sm) !important;
  font-weight: 850 !important;
}

.btn.pink {
  border: 1px solid rgba(128, 80, 71, 0.22) !important;
  background: linear-gradient(135deg, #8f5c54, #a96d62 58%, #bd8a67) !important;
  color: #fffdf9 !important;
  box-shadow: 0 14px 28px rgba(159, 102, 93, 0.22) !important;
}

.btn.pink:hover,
.btn.pink:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--mz-redesign-shadow-focus) !important;
}

.btn.secondary,
.mini-btn,
.link-btn {
  border: 1px solid var(--mz-redesign-line) !important;
  background: rgba(255, 253, 249, 0.92) !important;
  color: var(--mz-redesign-rose-deep) !important;
}

.link-btn {
  min-height: 34px !important;
}

.field label,
.step-label,
.eyebrow,
.quota-label,
.topbar-signal small {
  color: var(--mz-redesign-muted) !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
}

.field input,
.field textarea,
.field select,
input,
textarea,
select {
  border: 1px solid rgba(181, 138, 88, 0.24) !important;
  border-radius: var(--mz-redesign-radius-sm) !important;
  background: rgba(255, 253, 249, 0.96) !important;
  color: var(--mz-redesign-ink) !important;
  font-family: var(--mz-redesign-font) !important;
  font-size: 15px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
}

.field input:focus,
.field textarea:focus,
.field select:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(159, 102, 93, 0.62) !important;
  box-shadow: 0 0 0 4px rgba(159, 102, 93, 0.10) !important;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.pill,
.tag {
  border: 1px solid var(--mz-redesign-line) !important;
  background: rgba(255, 253, 249, 0.92) !important;
  color: var(--mz-redesign-rose-deep) !important;
  font-weight: 850 !important;
}

.consult-tabs,
.template-source-switch,
.reshape-mode-switch,
.watermark-mode-switch,
.copy-mode-switch {
  border: 1px solid var(--mz-redesign-line) !important;
  border-radius: var(--mz-redesign-radius) !important;
  background: rgba(255, 253, 249, 0.78) !important;
  box-shadow: 0 12px 32px rgba(68, 49, 35, 0.07) !important;
}

.consult-tabs button,
.template-source-switch button,
.reshape-mode-switch button,
.watermark-mode-switch button,
.copy-mode-switch button,
.choice-item,
.select-chip,
.consult-scenario,
.watermark-style-card {
  border: 1px solid rgba(181, 138, 88, 0.20) !important;
  border-radius: var(--mz-redesign-radius-sm) !important;
  background: rgba(255, 253, 249, 0.86) !important;
  color: var(--mz-redesign-ink-soft) !important;
}

.consult-tabs button.active,
.template-source-switch button.active,
.reshape-mode-switch button.active,
.watermark-mode-switch button.active,
.copy-mode-switch button.active,
.choice-item.active,
.select-chip.active,
.consult-scenario.active,
.watermark-style-card.active {
  border-color: rgba(159, 102, 93, 0.44) !important;
  background: linear-gradient(135deg, rgba(255, 242, 239, 0.98), rgba(255, 248, 239, 0.98)) !important;
  color: var(--mz-redesign-rose-deep) !important;
  box-shadow: 0 12px 28px rgba(159, 102, 93, 0.10) !important;
}

.upload-box {
  min-height: 150px !important;
  border: 1px dashed rgba(159, 102, 93, 0.35) !important;
  border-radius: var(--mz-redesign-radius) !important;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.95), rgba(255, 242, 239, 0.88)) !important;
  color: var(--mz-redesign-ink) !important;
}

.upload-box.compact {
  min-height: 122px !important;
}

.upload-icon {
  background: linear-gradient(135deg, #9f665d, #bd8a67) !important;
  color: #fffdf9 !important;
  box-shadow: 0 10px 24px rgba(159, 102, 93, 0.22) !important;
}

.result-box {
  border: 1px solid rgba(181, 138, 88, 0.22) !important;
  border-radius: var(--mz-redesign-radius) !important;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(246, 238, 229, 0.86)) !important;
  color: var(--mz-redesign-ink) !important;
}

.result-face {
  background: linear-gradient(135deg, #f8e5dd, #f4dfc4) !important;
}

.action-cost-note,
.selected-summary,
.next-step-tip,
.feature-brief,
.delivery-relay,
.consult-progress-card,
.consult-customer-file,
.watermark-handoff-card,
.reshape-brief-card {
  border: 1px solid rgba(181, 138, 88, 0.20) !important;
  border-radius: var(--mz-redesign-radius) !important;
  background: rgba(255, 253, 249, 0.90) !important;
  color: var(--mz-redesign-ink-soft) !important;
}

/* auth */
#authScreen.auth-screen.hidden {
  display: none !important;
}

#authScreen.auth-screen:not(.hidden) {
  display: grid !important;
  grid-template-columns: minmax(320px, 0.98fr) minmax(420px, 560px) !important;
  align-items: center !important;
  gap: clamp(28px, 5vw, 72px) !important;
  min-height: 100vh !important;
  padding: clamp(28px, 5vw, 62px) clamp(24px, 6vw, 76px) !important;
  background:
    linear-gradient(90deg, rgba(251, 247, 241, 0.92), rgba(251, 247, 241, 0.46)),
    url("/assets/hero-clinic-suite.png") center / cover no-repeat !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  color: var(--mz-redesign-ink) !important;
}

#authScreen::before {
  content: "";
  position: fixed;
  inset: 20px;
  pointer-events: none;
  border: 1px solid rgba(255, 253, 249, 0.62);
  border-radius: 16px;
}

#authScreen .auth-copy {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  display: grid !important;
  align-content: space-between !important;
  width: 100% !important;
  max-width: none !important;
  min-height: min(74vh, 720px) !important;
  margin: 0 !important;
  padding: clamp(20px, 4vw, 38px) !important;
  border: 1px solid rgba(255, 253, 249, 0.56) !important;
  border-radius: var(--mz-redesign-radius-lg) !important;
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.70), rgba(255, 248, 239, 0.44)) !important;
  box-shadow: var(--mz-redesign-shadow-soft) !important;
  overflow: hidden !important;
}

#authScreen .auth-copy::before {
  content: none !important;
  display: none !important;
}

#authScreen .auth-video,
#authScreen .auth-video-shade {
  display: none !important;
}

#authScreen .auth-copy .brand,
#authScreen .auth-hero-text,
#authScreen .hero-tags {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 1 !important;
  min-width: 0 !important;
}

#authScreen .auth-copy .brand {
  width: fit-content !important;
  max-width: 100% !important;
}

#authScreen .auth-hero-text {
  width: min(100%, 640px) !important;
  min-width: 0 !important;
  max-width: 640px !important;
  padding: clamp(20px, 3vw, 34px) !important;
  border: 1px solid rgba(255, 253, 249, 0.62) !important;
  border-radius: var(--mz-redesign-radius) !important;
  background: rgba(255, 253, 249, 0.82) !important;
  box-shadow: 0 18px 44px rgba(68, 49, 35, 0.12) !important;
}

#authScreen .auth-copy h1 {
  max-width: 100% !important;
  margin: 0 0 14px !important;
  color: var(--mz-redesign-ink) !important;
  font-family: var(--mz-redesign-display) !important;
  font-size: clamp(34px, 4vw, 54px) !important;
  line-height: 1.10 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: keep-all !important;
}

#authScreen .auth-copy p {
  max-width: 46em !important;
  color: #2f2925 !important;
  font-size: clamp(15px, 1.35vw, 18px) !important;
  line-height: 1.82 !important;
}

#authScreen .hero-tags {
  gap: 10px !important;
}

#authScreen .hero-tags .tag {
  min-height: 34px !important;
  color: #473934 !important;
}

#authScreen .auth-panel {
  position: relative !important;
  z-index: 2 !important;
  justify-self: end !important;
  width: min(100%, 560px) !important;
  max-height: calc(100vh - 72px) !important;
  margin: 0 !important;
  margin-right: 0 !important;
  padding: clamp(28px, 4vw, 44px) !important;
  border: 1px solid rgba(255, 253, 249, 0.74) !important;
  border-radius: var(--mz-redesign-radius-lg) !important;
  background: rgba(255, 253, 249, 0.94) !important;
  box-shadow: 0 26px 70px rgba(68, 49, 35, 0.16) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
}

#authScreen .auth-panel h2 {
  margin-bottom: 8px !important;
  font-size: clamp(28px, 3vw, 36px) !important;
  line-height: 1.16 !important;
}

#authScreen .auth-panel .hint {
  margin-bottom: 22px !important;
  color: var(--mz-redesign-muted) !important;
}

#authScreen .auth-panel .field {
  margin-bottom: 14px !important;
}

#authScreen .auth-panel input,
#authScreen .auth-panel select {
  min-height: 58px !important;
  font-size: 16px !important;
}

#authScreen .password-field-control {
  grid-template-columns: minmax(0, 1fr) 58px !important;
}

#authScreen .password-toggle {
  min-width: 54px !important;
  min-height: 54px !important;
  border: 1px solid rgba(181, 138, 88, 0.24) !important;
  border-radius: var(--mz-redesign-radius-sm) !important;
  background: rgba(255, 248, 239, 0.98) !important;
  color: var(--mz-redesign-rose-deep) !important;
}

#authScreen .auth-panel .btn {
  width: 100% !important;
  min-height: 58px !important;
  margin-top: 8px !important;
}

#authScreen .switch-line {
  justify-content: center !important;
  color: var(--mz-redesign-muted) !important;
}

/* dashboard */
#dashboard .command-hero {
  display: grid !important;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr) !important;
  gap: clamp(18px, 3vw, 34px) !important;
  align-items: stretch !important;
  margin-bottom: 24px !important;
}

#dashboard .command-copy,
#dashboard .command-visual {
  min-width: 0 !important;
  border: 1px solid var(--mz-redesign-line) !important;
  border-radius: var(--mz-redesign-radius) !important;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.97), rgba(255, 248, 239, 0.94)) !important;
  box-shadow: var(--mz-redesign-shadow-soft) !important;
}

#dashboard .command-copy {
  display: grid !important;
  align-content: center !important;
  padding: clamp(24px, 3.5vw, 42px) !important;
}

#dashboard .command-copy h2 {
  max-width: 9.5em !important;
  margin: 0 0 14px !important;
  font-family: var(--mz-redesign-display) !important;
  font-size: clamp(34px, 4.5vw, 58px) !important;
  line-height: 1.08 !important;
  color: var(--mz-redesign-ink) !important;
}

#dashboard .command-copy p {
  max-width: 46em !important;
  color: var(--mz-redesign-ink-soft) !important;
  font-size: 16px !important;
}

#dashboard .command-visual {
  display: grid !important;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr) !important;
  gap: 18px !important;
  align-items: stretch !important;
  padding: 18px !important;
  overflow: visible !important;
}

#dashboard .command-visual > img {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 390px !important;
  border-radius: var(--mz-redesign-radius) !important;
  object-fit: cover !important;
  opacity: 1 !important;
  filter: saturate(0.92) contrast(1.02) !important;
}

#dashboard .production-board {
  position: static !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 620px !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 20px !important;
  border: 1px solid rgba(181, 138, 88, 0.24) !important;
  border-radius: var(--mz-redesign-radius) !important;
  background: rgba(255, 253, 249, 0.96) !important;
  box-shadow: 0 16px 38px rgba(68, 49, 35, 0.10) !important;
  overflow: visible !important;
}

#dashboard .production-board-head h3 {
  margin: 4px 0 6px !important;
  font-size: 25px !important;
}

#dashboard .production-summary-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin: 16px 0 !important;
}

#dashboard .production-summary-grid span,
#dashboard .production-tool-row {
  border: 1px solid rgba(181, 138, 88, 0.18) !important;
  border-radius: var(--mz-redesign-radius-sm) !important;
  background: linear-gradient(180deg, rgba(255, 248, 239, 0.96), rgba(255, 253, 249, 0.96)) !important;
}

#dashboard .production-summary-grid strong,
#dashboard .production-tool-row em,
.quota-number,
#profileQuota,
#usedQuota,
#purchaseQuota,
#purchaseAmount {
  color: var(--mz-redesign-gold) !important;
  font-weight: 950 !important;
}

#dashboard .production-tool-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(68px, 0.28fr) minmax(68px, 0.28fr) !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 56px !important;
  padding: 10px 12px !important;
}

#dashboard .production-tool-row span {
  min-width: 0 !important;
}

#dashboard .production-tool-row svg,
.nav svg,
.tool-card svg {
  color: var(--mz-redesign-rose-deep) !important;
  stroke-width: 2.2 !important;
}

#dashboard .visual-glass {
  display: none !important;
}

#dashboard .tool-matrix {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

#dashboard .tool-card {
  min-height: 280px !important;
  padding: 16px !important;
  overflow: hidden !important;
}

#dashboard .tool-card img {
  height: 118px !important;
  border-radius: var(--mz-redesign-radius-sm) !important;
  object-fit: cover !important;
}

/* feature pages */
.tool-layout,
.consult-layout,
.reshape-workspace {
  gap: 18px !important;
  align-items: start !important;
}

.section-head {
  margin-bottom: 16px !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(181, 138, 88, 0.16) !important;
  border-radius: var(--mz-redesign-radius) !important;
  background: rgba(255, 253, 249, 0.78) !important;
}

#consultContext,
#copyInput,
#momentsPrompt,
#backgroundPrompt,
#outfitPrompt,
#fusionPrompt,
#videoCustomPrompt {
  min-height: 168px !important;
}

#reshape .tool-layout,
#reshape .reshape-layout,
#reshape .reshape-workspace {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.58fr) !important;
}

#reshape .reshape-builder,
#reshape .reshape-side {
  position: relative !important;
}

#reshape .reshape-side {
  top: 0 !important;
}

#reshape .choice-list,
#reshape .option-stack,
#reshape .chip-grid,
.watermark-style-grid {
  gap: 10px !important;
}

#reshape .select-chip,
#reshape .choice-item,
.consult-scenario {
  min-height: 44px !important;
}

#reshape .result-actions {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 10px !important;
}

#reshape .result-actions .btn {
  min-width: 0 !important;
}

#reshape .result-box {
  min-height: 260px !important;
}

#watermark .watermark-workspace,
#copywriting .copy-workspace,
#profile .profile-grid {
  gap: 18px !important;
}

#profile .profile-shell {
  align-items: start !important;
  gap: 18px !important;
}

#profile .profile-ledger,
#profile .profile-packages {
  min-height: 0 !important;
  overflow: visible !important;
}

#profile .profile-packages {
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
}

#profile .profile-packages .pricing {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

#profile .profile-packages .price-card {
  min-width: 0 !important;
  min-height: 0 !important;
}

#profile .profile-packages .buy {
  width: 100% !important;
}

.preview-panel img,
.sidebar-showcase img {
  border-radius: var(--mz-redesign-radius-sm) !important;
}

/* modals */
.purchase-modal,
.account-settings-modal {
  z-index: 1600 !important;
  display: grid !important;
  place-items: center !important;
  backdrop-filter: blur(10px);
}

.purchase-modal.hidden,
.account-settings-modal.hidden {
  display: none !important;
}

.purchase-modal-backdrop,
.account-settings-backdrop {
  background: rgba(50, 38, 31, 0.32) !important;
}

.purchase-dialog,
.account-settings-dialog {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  max-width: min(94vw, 620px) !important;
  border-radius: 12px !important;
}

.purchase-summary,
.purchase-balance,
.payment-panel {
  border: 1px solid rgba(181, 138, 88, 0.18) !important;
  border-radius: var(--mz-redesign-radius) !important;
  background: rgba(255, 253, 249, 0.92) !important;
}

.purchase-actions {
  display: grid !important;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) !important;
  gap: 10px !important;
}

/* responsive */
@media (max-width: 1180px) {
  #dashboard .command-hero,
  #dashboard .command-visual {
    grid-template-columns: 1fr !important;
  }

  #dashboard .command-visual > img {
    min-height: 240px !important;
  }

  #dashboard .production-board {
    max-width: none !important;
  }

  #dashboard .tool-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 920px) {
  #authScreen.auth-screen:not(.hidden) {
    display: block !important;
    padding: 18px !important;
  }

  #authScreen::before,
  #authScreen .auth-copy .brand,
  #authScreen .hero-tags {
    display: none !important;
  }

  #authScreen .auth-copy {
    width: min(100%, 560px) !important;
    min-height: auto !important;
    margin: 0 auto 14px !important;
    padding: 18px !important;
    overflow: hidden !important;
  }

  #authScreen .auth-hero-text {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px !important;
    overflow: hidden !important;
  }

  #authScreen .auth-copy h1 {
    font-size: clamp(28px, 8.6vw, 38px) !important;
    line-height: 1.16 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  #authScreen .auth-panel {
    width: min(100%, 560px) !important;
    max-height: none !important;
    margin: 0 auto !important;
    padding: 22px !important;
    overflow-x: hidden !important;
  }

  .sidebar-showcase {
    display: none !important;
  }
}

@media (max-width: 720px) {
  body[data-ui-redesign] {
    font-size: 15px;
  }

  body[data-ui-redesign] .app {
    display: block !important;
    min-height: 100vh !important;
    overflow: visible !important;
  }

  body[data-ui-redesign] .sidebar {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  body[data-ui-redesign] .main {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    overscroll-behavior: auto !important;
    contain: none !important;
  }

  body[data-ui-redesign] .content {
    overflow: visible !important;
  }

  .content {
    padding-inline: 12px !important;
  }

  .topbar {
    border-radius: 0 !important;
  }

  #dashboard .command-copy,
  #dashboard .command-visual,
  .section-head,
  .panel,
  .tool-card {
    padding: 16px !important;
  }

  #dashboard .command-copy h2 {
    font-size: clamp(28px, 8.8vw, 36px) !important;
    line-height: 1.14 !important;
    word-break: keep-all !important;
    overflow-wrap: anywhere !important;
  }

  #authScreen.auth-screen:not(.hidden),
  #authScreen .auth-copy,
  #authScreen .auth-hero-text,
  #authScreen .auth-panel,
  #authScreen .field,
  #authScreen .password-field-control,
  #authScreen .auth-code-row,
  #authScreen .auth-agreement,
  #authScreen .switch-line {
    max-width: calc(100vw - 24px) !important;
    min-width: 0 !important;
  }

  #authScreen .auth-copy h1 {
    max-width: 100% !important;
    font-size: clamp(26px, 7.2vw, 34px) !important;
    line-height: 1.16 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  #authScreen .auth-copy {
    display: none !important;
  }

  #dashboard .command-visual > img {
    display: none !important;
  }

  #dashboard .production-summary-grid,
  #dashboard .tool-matrix {
    grid-template-columns: 1fr !important;
  }

  #dashboard .production-tool-row {
    grid-template-columns: minmax(0, 1fr) minmax(58px, 0.36fr) minmax(58px, 0.36fr) !important;
  }

  .tool-layout,
  .consult-layout,
  .reshape-workspace,
  #reshape .tool-layout,
  #reshape .reshape-layout,
  #reshape .reshape-workspace,
  #watermark .watermark-workspace,
  #copywriting .copy-workspace,
  #profile .profile-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  #reshape .reshape-builder,
  #reshape .reshape-side,
  #reshape .panel,
  #reshape .choice-list,
  #reshape .option-stack,
  #reshape .chip-grid,
  #reshape .upload-box,
  #reshape .selected-summary,
  #reshape .action-cost-note,
  #reshape .next-step-tip,
  #reshape .result-box {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  #reshape .reshape-side,
  #reshape aside.panel,
  #reshape .preview-panel {
    position: static !important;
    top: auto !important;
    align-self: stretch !important;
  }

  #reshape .upload-box {
    min-height: 132px !important;
  }

  #reshape .reshape-mode-switch,
  #reshapeModeSwitch,
  .consult-tabs,
  .watermark-mode-switch,
  .copy-mode-switch {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  #reshape .choice-list,
  #reshape .option-stack,
  #reshape .chip-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  #reshape .choice-item,
  #reshape .select-chip,
  #reshape .consult-scenario {
    width: 100% !important;
    min-width: 0 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  #reshape .section-head h2,
  #reshape .page-title,
  #reshape h2 {
    font-size: clamp(26px, 8vw, 34px) !important;
    line-height: 1.18 !important;
  }

  #reshape .result-actions,
  .purchase-actions {
    grid-template-columns: 1fr !important;
  }

  #profile .profile-shell,
  #profile .profile-packages .pricing {
    grid-template-columns: 1fr !important;
  }

  #profile .profile-packages {
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    overscroll-behavior: auto !important;
  }

  #profile .profile-ledger {
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    overscroll-behavior: auto !important;
  }

  .purchase-dialog,
  .account-settings-dialog {
    width: min(100%, calc(100vw - 20px)) !important;
    max-height: calc(100vh - 20px) !important;
    overflow: auto !important;
    padding-bottom: max(22px, env(safe-area-inset-bottom)) !important;
    scroll-padding-bottom: 22px !important;
  }
}

@media (max-width: 460px) {
  #authScreen.auth-screen:not(.hidden) {
    padding: 12px !important;
    max-width: 100vw !important;
  }

  #authScreen .auth-copy {
    display: none !important;
  }

  #authScreen .auth-hero-text {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px !important;
  }

  #authScreen .auth-copy h1 {
    font-size: clamp(24px, 6.8vw, 28px) !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  #authScreen .auth-copy p {
    font-size: 14px !important;
    line-height: 1.72 !important;
  }

  #authScreen .auth-panel {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    padding: 18px !important;
  }

  #authScreen .auth-panel h2 {
    font-size: 28px !important;
  }

  #authScreen .password-field-control {
    width: 100% !important;
    min-width: 0 !important;
    grid-template-columns: minmax(0, 1fr) 48px !important;
  }

  #authScreen .password-toggle {
    min-width: 46px !important;
  }

  #authScreen .auth-panel input,
  #authScreen .auth-panel select {
    min-width: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-ui-redesign] *,
  body[data-ui-redesign] *::before,
  body[data-ui-redesign] *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* MeiZhiLink full UI restoration pass - canonical mockup recovery */
body[data-ui-redesign="20260701b"] {
  --mz-redesign-bg: #fbf8f3;
  --mz-redesign-bg-soft: #f5eee7;
  --mz-redesign-surface: #fffdf9;
  --mz-redesign-surface-warm: #fff8f1;
  --mz-redesign-line: rgba(183, 137, 103, 0.24);
  --mz-redesign-line-strong: rgba(170, 103, 72, 0.42);
  --mz-redesign-ink: #201916;
  --mz-redesign-ink-soft: #514039;
  --mz-redesign-muted: #87796f;
  --mz-redesign-rose: #b97963;
  --mz-redesign-rose-deep: #8d4f3b;
  --mz-redesign-gold: #c88458;
  --mz-redesign-success: #4d8a72;
  --mz-redesign-radius-sm: 9px;
  --mz-redesign-radius: 14px;
  --mz-redesign-radius-lg: 24px;
  --mz-redesign-shadow-soft: 0 18px 46px rgba(89, 63, 45, 0.08);
  --mz-redesign-shadow-card: 0 12px 30px rgba(89, 63, 45, 0.07);
  --mz-redesign-shadow-float: 0 34px 84px rgba(84, 58, 41, 0.18);
  --mz-redesign-font: "Noto Sans SC", "HarmonyOS Sans SC", "Microsoft YaHei UI", "PingFang SC", sans-serif;
  --mz-redesign-display: "Noto Sans SC", "HarmonyOS Sans SC", "Microsoft YaHei UI", "PingFang SC", sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 228, 210, 0.46), transparent 32rem),
    radial-gradient(circle at 86% 10%, rgba(248, 220, 196, 0.34), transparent 30rem),
    linear-gradient(135deg, #fffdf9 0%, #f7efe8 100%);
}

body[data-ui-redesign="20260701b"] *::before,
body[data-ui-redesign="20260701b"] *::after {
  pointer-events: none;
}

body[data-ui-redesign="20260701b"] .hidden {
  display: none !important;
}

body[data-ui-redesign="20260701b"] .app {
  grid-template-columns: 262px minmax(0, 1fr) !important;
  min-height: 100vh !important;
  background: linear-gradient(135deg, #fffdf9 0%, #f8f1eb 52%, #f5ece4 100%) !important;
}

body[data-ui-redesign="20260701b"] .app::before,
body[data-ui-redesign="20260701b"] .global-work-pulse {
  opacity: 0 !important;
}

body[data-ui-redesign="20260701b"] .sidebar {
  display: flex !important;
  flex-direction: column !important;
  gap: 26px !important;
  height: 100vh !important;
  padding: 28px 18px !important;
  border-right: 1px solid rgba(183, 137, 103, 0.18) !important;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(250, 243, 236, 0.94)) !important;
  box-shadow: 18px 0 42px rgba(83, 60, 46, 0.055) !important;
}

body[data-ui-redesign="20260701b"] .sidebar .brand {
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: center !important;
  padding: 0 8px 10px !important;
}

body[data-ui-redesign="20260701b"] .brand-mark {
  width: 42px !important;
  height: 42px !important;
  border-radius: 11px !important;
  background: linear-gradient(135deg, #b26f5b, #d09a76) !important;
  box-shadow: 0 14px 28px rgba(176, 111, 91, 0.20) !important;
  font-size: 20px !important;
}

body[data-ui-redesign="20260701b"] .brand-title {
  color: #19120f !important;
  font-size: 18px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
}

body[data-ui-redesign="20260701b"] .brand-subtitle {
  color: #8a7a70 !important;
  font-size: 12px !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701b"] .nav {
  display: grid !important;
  gap: 14px !important;
  padding: 0 !important;
}

body[data-ui-redesign="20260701b"] .nav button {
  min-height: 78px !important;
  padding: 0 18px !important;
  border: 1px solid transparent !important;
  border-radius: 13px !important;
  background: transparent !important;
  color: #352924 !important;
  font-size: 16px !important;
  font-weight: 850 !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701b"] .nav button.active,
body[data-ui-redesign="20260701b"] .nav button:hover {
  border-color: rgba(187, 128, 91, 0.22) !important;
  background:
    linear-gradient(135deg, rgba(255, 248, 242, 0.98), rgba(246, 230, 218, 0.78)) !important;
  color: #8d4f3b !important;
  box-shadow: 0 14px 30px rgba(120, 77, 54, 0.10) !important;
}

body[data-ui-redesign="20260701b"] .nav-icon {
  width: 28px !important;
  height: 28px !important;
  display: inline-grid !important;
  place-items: center !important;
}

body[data-ui-redesign="20260701b"] .nav-icon svg {
  width: 23px !important;
  height: 23px !important;
  stroke-width: 1.9 !important;
}

body[data-ui-redesign="20260701b"] .quota-card {
  margin-top: auto !important;
  border-radius: 13px !important;
  background: linear-gradient(145deg, rgba(255, 253, 249, 0.98), rgba(252, 240, 231, 0.9)) !important;
}

body[data-ui-redesign="20260701b"] .sidebar-showcase {
  display: none !important;
}

body[data-ui-redesign="20260701b"] .main {
  height: 100vh !important;
  min-height: 100vh !important;
  overflow-y: auto !important;
  background:
    radial-gradient(circle at 88% -6%, rgba(231, 181, 146, 0.18), transparent 31rem),
    linear-gradient(180deg, rgba(255, 253, 249, 0.9), rgba(248, 241, 235, 0.96)) !important;
}

body[data-ui-redesign="20260701b"] .topbar {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto auto !important;
  align-items: center !important;
  min-height: 92px !important;
  margin: 0 !important;
  padding: 18px 30px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(183, 137, 103, 0.15) !important;
  border-radius: 0 !important;
  background: rgba(255, 253, 249, 0.97) !important;
  box-shadow: 0 10px 26px rgba(84, 58, 41, 0.055) !important;
  backdrop-filter: blur(18px);
}

body[data-ui-redesign="20260701b"] .page-title {
  margin: 0 !important;
  color: #18100d !important;
  font-size: 24px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
}

body[data-ui-redesign="20260701b"] .page-desc {
  margin: 6px 0 0 !important;
  color: #8d7b70 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

body[data-ui-redesign="20260701b"]:has(#dashboard.view.active) #pageTitle,
body[data-ui-redesign="20260701b"]:has(#dashboard.view.active) #pageDesc,
body[data-ui-redesign="20260701b"]:has(#consult.view.active) #pageTitle,
body[data-ui-redesign="20260701b"]:has(#consult.view.active) #pageDesc,
body[data-ui-redesign="20260701b"]:has(#reshape.view.active) #pageTitle,
body[data-ui-redesign="20260701b"]:has(#reshape.view.active) #pageDesc,
body[data-ui-redesign="20260701b"]:has(#watermark.view.active) #pageTitle,
body[data-ui-redesign="20260701b"]:has(#watermark.view.active) #pageDesc,
body[data-ui-redesign="20260701b"]:has(#copywriting.view.active) #pageTitle,
body[data-ui-redesign="20260701b"]:has(#copywriting.view.active) #pageDesc,
body[data-ui-redesign="20260701b"]:has(#profile.view.active) #pageTitle,
body[data-ui-redesign="20260701b"]:has(#profile.view.active) #pageDesc {
  display: block !important;
  width: max-content !important;
  max-width: min(56vw, 560px) !important;
  font-size: 0 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  writing-mode: horizontal-tb !important;
}

body[data-ui-redesign="20260701b"]:has(#dashboard.view.active) #pageTitle::before {
  content: "生产驾驶舱";
}

body[data-ui-redesign="20260701b"]:has(#dashboard.view.active) #pageDesc::before {
  content: "数据更新于 2026-07-01  生产数据实时汇总";
}

body[data-ui-redesign="20260701b"]:has(#consult.view.active) #pageTitle::before {
  content: "后端运维";
}

body[data-ui-redesign="20260701b"]:has(#consult.view.active) #pageDesc::before {
  content: "咨询承接、话术库与朋友圈营销统一处理";
}

body[data-ui-redesign="20260701b"]:has(#reshape.view.active) #pageTitle::before {
  content: "MeiZhiLink 美智绘联  |  魔力重塑";
}

body[data-ui-redesign="20260701b"]:has(#reshape.view.active) #pageDesc::before {
  content: "图片编辑、医美预演、视频动效统一生产台";
}

body[data-ui-redesign="20260701b"]:has(#watermark.view.active) #pageTitle::before {
  content: "水印封装";
}

body[data-ui-redesign="20260701b"]:has(#watermark.view.active) #pageDesc::before {
  content: "品牌水印、封装预览与下载交付";
}

body[data-ui-redesign="20260701b"]:has(#copywriting.view.active) #pageTitle::before {
  content: "前线阵地";
}

body[data-ui-redesign="20260701b"]:has(#copywriting.view.active) #pageDesc::before {
  content: "医生口播、小红书种草与原文案复写";
}

body[data-ui-redesign="20260701b"]:has(#profile.view.active) #pageTitle::before {
  content: "个人中心";
}

body[data-ui-redesign="20260701b"]:has(#profile.view.active) #pageDesc::before {
  content: "额度账本、生成记录与套餐购买";
}

body[data-ui-redesign="20260701b"]:has(#dashboard.view.active) #pageTitle::before,
body[data-ui-redesign="20260701b"]:has(#consult.view.active) #pageTitle::before,
body[data-ui-redesign="20260701b"]:has(#watermark.view.active) #pageTitle::before,
body[data-ui-redesign="20260701b"]:has(#copywriting.view.active) #pageTitle::before,
body[data-ui-redesign="20260701b"]:has(#profile.view.active) #pageTitle::before,
body[data-ui-redesign="20260701b"]:has(#reshape.view.active) #pageTitle::before {
  display: block;
  color: #18100d;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.2;
  white-space: nowrap;
  word-break: keep-all;
  writing-mode: horizontal-tb;
}

body[data-ui-redesign="20260701b"]:has(#dashboard.view.active) #pageDesc::before,
body[data-ui-redesign="20260701b"]:has(#consult.view.active) #pageDesc::before,
body[data-ui-redesign="20260701b"]:has(#watermark.view.active) #pageDesc::before,
body[data-ui-redesign="20260701b"]:has(#copywriting.view.active) #pageDesc::before,
body[data-ui-redesign="20260701b"]:has(#profile.view.active) #pageDesc::before,
body[data-ui-redesign="20260701b"]:has(#reshape.view.active) #pageDesc::before {
  display: block;
  color: #8d7b70;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
  word-break: keep-all;
  writing-mode: horizontal-tb;
}

body[data-ui-redesign="20260701b"] .topbar-command-center {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  min-width: min(420px, 34vw) !important;
  padding: 6px !important;
  border: 1px solid rgba(183, 137, 103, 0.18) !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(251, 242, 234, 0.88)) !important;
  box-shadow: 0 12px 24px rgba(94, 64, 45, 0.055) !important;
}

body[data-ui-redesign="20260701b"] .topbar-signal {
  min-height: 48px !important;
  padding: 8px 12px !important;
  border: 0 !important;
  border-radius: 9px !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701b"] .topbar-signal small {
  color: #8d7b70 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}

body[data-ui-redesign="20260701b"] .topbar-signal strong {
  color: #8d4f3b !important;
  font-size: 14px !important;
  font-weight: 950 !important;
}

body[data-ui-redesign="20260701b"] .topbar::after {
  display: none !important;
  content: none !important;
}

body[data-ui-redesign="20260701b"] .topbar::before,
body[data-ui-redesign="20260701b"] .topbar .page-title::after {
  display: none !important;
}

body[data-ui-redesign="20260701b"] .content {
  padding: 30px !important;
}

body[data-ui-redesign="20260701b"] .panel,
body[data-ui-redesign="20260701b"] .interactive-surface,
body[data-ui-redesign="20260701b"] .tool-card,
body[data-ui-redesign="20260701b"] .purchase-dialog,
body[data-ui-redesign="20260701b"] .account-settings-dialog {
  border: 1px solid var(--mz-redesign-line) !important;
  border-radius: var(--mz-redesign-radius) !important;
  background: rgba(255, 253, 249, 0.94) !important;
  box-shadow: var(--mz-redesign-shadow-card) !important;
}

body[data-ui-redesign="20260701b"] .btn,
body[data-ui-redesign="20260701b"] .mini-btn {
  border-radius: 9px !important;
  font-weight: 900 !important;
}

body[data-ui-redesign="20260701b"] .btn.pink {
  min-height: 56px !important;
  border: 0 !important;
  background: linear-gradient(135deg, #e2a392, #bc765d 58%, #a9674d) !important;
  color: #fffdf9 !important;
  box-shadow: 0 18px 34px rgba(188, 118, 93, 0.24) !important;
}

body[data-ui-redesign="20260701b"] .btn.secondary,
body[data-ui-redesign="20260701b"] .mini-btn,
body[data-ui-redesign="20260701b"] .link-btn {
  border-color: rgba(183, 137, 103, 0.24) !important;
  background: rgba(255, 253, 249, 0.94) !important;
  color: #8d4f3b !important;
}

body[data-ui-redesign="20260701b"] .field input,
body[data-ui-redesign="20260701b"] .field textarea,
body[data-ui-redesign="20260701b"] .field select,
body[data-ui-redesign="20260701b"] input,
body[data-ui-redesign="20260701b"] textarea,
body[data-ui-redesign="20260701b"] select {
  border: 1px solid rgba(183, 137, 103, 0.22) !important;
  border-radius: 9px !important;
  background: rgba(255, 253, 249, 0.96) !important;
  color: #241b17 !important;
  font-size: 15px !important;
}

/* Auth canonical screen */
body[data-ui-redesign="20260701b"] #authScreen.auth-screen:not(.hidden) {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 1fr minmax(500px, 760px) 1fr !important;
  align-items: center !important;
  min-height: 100vh !important;
  padding: clamp(32px, 5vw, 72px) !important;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.05), rgba(255, 253, 249, 0.36) 50%, rgba(255, 253, 249, 0.08)),
    url("/assets/hero-clinic-suite.png") center / cover no-repeat !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body[data-ui-redesign="20260701b"] #authScreen::before {
  content: "MeiZhiLink\A 美智绘联\A 医疗美学 AI 运营工作站";
  white-space: pre-line;
  position: fixed;
  left: clamp(46px, 6vw, 96px);
  top: 31vh;
  width: min(360px, 30vw);
  height: auto;
  border: 0;
  border-radius: 0;
  color: rgba(172, 108, 76, 0.88);
  font-size: clamp(18px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.68;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.74);
  z-index: 0;
}

body[data-ui-redesign="20260701b"] #authScreen::after {
  content: "";
  position: fixed;
  left: clamp(56px, 7vw, 112px);
  top: calc(31vh - 92px);
  width: 118px;
  height: 94px;
  border: 2px solid rgba(185, 122, 83, 0.46);
  border-radius: 55% 45% 58% 42%;
  transform: rotate(-8deg);
  box-shadow:
    0 0 0 16px rgba(255, 253, 249, 0.10),
    inset 0 0 0 18px rgba(255, 253, 249, 0.14);
  z-index: 0;
}

body[data-ui-redesign="20260701b"] #authScreen .auth-copy {
  grid-column: 1 / -1 !important;
  grid-row: 1 !important;
  align-self: stretch !important;
  justify-self: stretch !important;
  min-height: auto !important;
  max-width: none !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body[data-ui-redesign="20260701b"] #authScreen .auth-copy .brand,
body[data-ui-redesign="20260701b"] #authScreen .auth-hero-text,
body[data-ui-redesign="20260701b"] #authScreen .hero-tags {
  display: none !important;
}

body[data-ui-redesign="20260701b"] #authScreen .auth-panel {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: center !important;
  width: min(760px, calc(100vw - 48px)) !important;
  max-width: 760px !important;
  max-height: calc(100vh - 76px) !important;
  padding: clamp(34px, 4.2vw, 56px) !important;
  border: 1px solid rgba(255, 255, 255, 0.76) !important;
  border-radius: 22px !important;
  background: rgba(255, 253, 249, 0.93) !important;
  box-shadow: var(--mz-redesign-shadow-float) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  backdrop-filter: blur(18px);
}

body[data-ui-redesign="20260701b"] #authScreen .auth-panel::before {
  content: "";
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(183, 137, 103, 0.22), transparent);
  opacity: 0.7;
}

body[data-ui-redesign="20260701b"] #authScreen .auth-panel h2 {
  margin: 0 0 36px !important;
  color: #2b201c !important;
  font-size: 27px !important;
  font-weight: 950 !important;
  text-align: center !important;
}

body[data-ui-redesign="20260701b"] #authScreen .auth-panel h2::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 99px;
  background: #c88458;
}

body[data-ui-redesign="20260701b"] #authScreen .auth-panel .hint {
  margin: -24px auto 28px !important;
  max-width: 27em !important;
  color: #7f7067 !important;
  text-align: center !important;
}

body[data-ui-redesign="20260701b"] #authScreen .auth-onboarding-rail,
body[data-ui-redesign="20260701b"] #authScreen .auth-work-profile,
body[data-ui-redesign="20260701b"] #authScreen .auth-clinic-preference,
body[data-ui-redesign="20260701b"] #authScreen .auth-start-plan,
body[data-ui-redesign="20260701b"] #authScreen .auth-first-delivery,
body[data-ui-redesign="20260701b"] #authScreen .auth-dependency-loop,
body[data-ui-redesign="20260701b"] #authScreen .auth-resume-card,
body[data-ui-redesign="20260701b"] #authScreen .auth-return-hint,
body[data-ui-redesign="20260701b"] #authScreen .auth-readiness-card,
body[data-ui-redesign="20260701b"] #authScreen .auth-access-brief,
body[data-ui-redesign="20260701b"] #authScreen .auth-identity-cue,
body[data-ui-redesign="20260701b"] #authScreen .auth-login-help,
body[data-ui-redesign="20260701b"] #authScreen .auth-security-check,
body[data-ui-redesign="20260701b"] #authScreen .auth-code-help,
body[data-ui-redesign="20260701b"] #authScreen .auth-site-footer {
  display: none !important;
}

body[data-ui-redesign="20260701b"] #authScreen .field {
  margin: 0 auto 18px !important;
  width: min(100%, 430px) !important;
  max-width: 430px !important;
}

body[data-ui-redesign="20260701b"] #authScreen .field label {
  display: none !important;
}

body[data-ui-redesign="20260701b"] #authScreen .auth-panel input,
body[data-ui-redesign="20260701b"] #authScreen .auth-panel select {
  min-height: 58px !important;
  padding: 0 18px !important;
  font-size: 16px !important;
  background: rgba(255, 255, 255, 0.90) !important;
}

body[data-ui-redesign="20260701b"] #authScreen .password-field-control,
body[data-ui-redesign="20260701b"] #authScreen .auth-code-row {
  width: min(100%, 430px) !important;
  max-width: 430px !important;
  grid-template-columns: minmax(0, 1fr) 58px !important;
}

body[data-ui-redesign="20260701b"] #authScreen .auth-code-row {
  grid-template-columns: minmax(0, 1fr) 126px !important;
}

body[data-ui-redesign="20260701b"] #authScreen .password-toggle {
  min-width: 58px !important;
  min-height: 58px !important;
  border-radius: 9px !important;
}

body[data-ui-redesign="20260701b"] #authScreen .password-assist-row {
  width: min(100%, 430px) !important;
  margin: 8px auto 0 !important;
  justify-content: flex-end !important;
}

body[data-ui-redesign="20260701b"] #authScreen .password-forgot-link {
  color: #b97963 !important;
  font-size: 15px !important;
  min-height: 32px !important;
}

body[data-ui-redesign="20260701b"] #authScreen .auth-agreement:not(.hidden) {
  width: min(100%, 430px) !important;
  margin: 6px auto 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  flex-wrap: wrap !important;
}

body[data-ui-redesign="20260701b"] #authScreen .auth-panel .btn {
  display: grid !important;
  place-items: center !important;
  width: min(100%, 430px) !important;
  max-width: 430px !important;
  min-height: 60px !important;
  margin: 24px auto 0 !important;
  border-radius: 9px !important;
  font-size: 19px !important;
}

body[data-ui-redesign="20260701b"] #authScreen .switch-line {
  width: min(100%, 430px) !important;
  margin: 22px auto 0 !important;
  justify-content: center !important;
  font-size: 15px !important;
}

/* Dashboard canonical cockpit */
body[data-ui-redesign="20260701b"] #dashboard .command-hero {
  display: block !important;
  margin-bottom: 22px !important;
}

body[data-ui-redesign="20260701b"] #dashboard .command-copy,
body[data-ui-redesign="20260701b"] #dashboard .command-visual > img,
body[data-ui-redesign="20260701b"] #dashboard .visual-glass {
  display: none !important;
}

body[data-ui-redesign="20260701b"] #dashboard .command-visual {
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body[data-ui-redesign="20260701b"] #dashboard .production-board {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body[data-ui-redesign="20260701b"] #dashboard .production-board-head {
  display: none !important;
}

body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin: 0 0 20px !important;
}

body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid span {
  position: relative;
  min-height: 190px !important;
  padding: 28px 28px 26px !important;
  border: 1px solid rgba(183, 137, 103, 0.18) !important;
  border-radius: 9px !important;
  background: linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(255, 249, 244, 0.90)) !important;
  box-shadow: 0 12px 30px rgba(83, 60, 46, 0.065) !important;
  overflow: hidden;
}

body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid span:first-child {
  background:
    radial-gradient(circle at 85% 70%, rgba(221, 166, 124, 0.18), transparent 7rem),
    linear-gradient(145deg, rgba(255, 248, 242, 0.98), rgba(250, 231, 218, 0.78)) !important;
}

body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid span::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 78px;
  height: 78px;
  border-radius: 26px;
  opacity: 0.36;
  background:
    linear-gradient(135deg, rgba(194, 122, 84, 0.20), rgba(255, 253, 249, 0.64)),
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(194, 122, 84, 0.22) 12px 20px);
}

body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid small {
  display: block !important;
  color: #1f1714 !important;
  font-size: 18px !important;
  font-weight: 850 !important;
}

body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid strong {
  display: inline-block !important;
  margin-top: 24px !important;
  color: #b97963 !important;
  font-size: clamp(38px, 3.7vw, 54px) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 1px !important;
}

body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid em {
  margin-left: 8px !important;
  color: #6d5f56 !important;
  font-size: 15px !important;
  font-style: normal !important;
}

body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid span:nth-child(1)::before,
body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid span:nth-child(2)::before,
body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid span:nth-child(3)::before,
body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid span:nth-child(4)::before {
  content: "较昨日 ↑ 16.3%";
  position: absolute;
  left: 28px;
  bottom: 28px;
  color: #9e5f47;
  font-size: 14px;
  font-weight: 750;
}

body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid span:nth-child(3)::before {
  content: "较昨日 ↓ 4";
  color: #4d8a72;
}

body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid span:nth-child(4)::before {
  content: "较昨日 ↑ 5";
}

body[data-ui-redesign="20260701b"] #dashboard .production-tool-table {
  padding: 22px !important;
  border: 1px solid rgba(183, 137, 103, 0.18) !important;
  border-radius: 12px !important;
  background: rgba(255, 253, 249, 0.94) !important;
  box-shadow: 0 12px 30px rgba(83, 60, 46, 0.06) !important;
}

body[data-ui-redesign="20260701b"] #dashboard .production-tool-table::before {
  content: "功能使用统计";
  display: block;
  margin: 0 0 14px;
  color: #211815;
  font-size: 21px;
  font-weight: 950;
}

body[data-ui-redesign="20260701b"] #dashboard .production-tool-row {
  display: grid !important;
  grid-template-columns: minmax(220px, 1.1fr) minmax(160px, 0.8fr) minmax(160px, 0.8fr) minmax(210px, 0.9fr) 112px !important;
  gap: 12px !important;
  align-items: center !important;
  min-height: 58px !important;
  padding: 0 18px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(183, 137, 103, 0.13) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701b"] #dashboard .production-tool-row:last-child {
  border-bottom: 0 !important;
}

body[data-ui-redesign="20260701b"] #dashboard .production-tool-head {
  min-height: 46px !important;
  color: #76665e !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

body[data-ui-redesign="20260701b"] #dashboard .production-tool-row:not(.production-tool-head)::after {
  content: "进入";
  justify-self: end;
  display: inline-grid;
  place-items: center;
  width: 62px;
  min-height: 32px;
  border: 1px solid rgba(183, 137, 103, 0.28);
  border-radius: 7px;
  color: #8d4f3b;
  font-weight: 850;
}

body[data-ui-redesign="20260701b"] #dashboard .production-tool-head::after {
  content: "操作";
  justify-self: end;
}

body[data-ui-redesign="20260701b"] #dashboard .production-tool-row span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #241b17 !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}

body[data-ui-redesign="20260701b"] #dashboard .production-tool-row b {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 6px !important;
  color: #4d443e !important;
  font-weight: 700 !important;
}

body[data-ui-redesign="20260701b"] #dashboard .production-tool-row em {
  color: #b97963 !important;
  font-size: 17px !important;
  font-style: normal !important;
  font-weight: 950 !important;
}

body[data-ui-redesign="20260701b"] #dashboard .production-tool-row:not(.production-tool-head) b:last-of-type::after {
  content: "";
  display: inline-block;
  width: 116px;
  height: 6px;
  margin-left: clamp(12px, 3vw, 60px);
  border-radius: 99px;
  background:
    linear-gradient(90deg, rgba(185, 121, 99, 0.72), rgba(185, 121, 99, 0.72) 58%, rgba(231, 225, 219, 0.9) 58%);
}

body[data-ui-redesign="20260701b"] #dashboard .tool-matrix {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
  padding: 22px !important;
  border: 1px solid rgba(183, 137, 103, 0.18) !important;
  border-radius: 12px !important;
  background: rgba(255, 253, 249, 0.94) !important;
  box-shadow: 0 12px 30px rgba(83, 60, 46, 0.06) !important;
}

body[data-ui-redesign="20260701b"] #dashboard .tool-matrix::before {
  content: "功能入口";
  grid-column: 1 / -1;
  color: #211815;
  font-size: 21px;
  font-weight: 950;
}

body[data-ui-redesign="20260701b"] #dashboard .tool-card {
  min-height: 220px !important;
  padding: 24px !important;
  border-radius: 9px !important;
  background: rgba(255, 253, 249, 0.92) !important;
}

body[data-ui-redesign="20260701b"] #dashboard .tool-card img {
  display: none !important;
}

body[data-ui-redesign="20260701b"] #dashboard .tool-index {
  display: grid !important;
  place-items: center !important;
  width: 58px !important;
  height: 58px !important;
  margin-bottom: 14px !important;
  border: 1px solid rgba(183, 137, 103, 0.18) !important;
  border-radius: 20px !important;
  background: linear-gradient(145deg, #fffdf9, #f4e8dd) !important;
  color: #b97963 !important;
  font-size: 15px !important;
  font-weight: 950 !important;
}

body[data-ui-redesign="20260701b"] #dashboard .tool-card h3 {
  color: #1f1714 !important;
  font-size: 18px !important;
  font-weight: 950 !important;
}

body[data-ui-redesign="20260701b"] #dashboard .tool-card p {
  min-height: 48px !important;
  color: #74655d !important;
  font-size: 14px !important;
}

body[data-ui-redesign="20260701b"] #dashboard .tool-card .btn {
  min-height: 42px !important;
  margin-top: 12px !important;
}

/* Magic reshape canonical workspace */
body[data-ui-redesign="20260701b"] #reshape .section-head {
  min-height: 62px !important;
  padding: 0 0 16px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(183, 137, 103, 0.16) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701b"] #reshape .section-head h2 {
  font-size: 25px !important;
  font-weight: 950 !important;
}

body[data-ui-redesign="20260701b"] #reshape .reshape-workspace {
  display: grid !important;
  grid-template-columns: minmax(0, 2.2fr) minmax(360px, 1fr) !important;
  gap: 24px !important;
  align-items: start !important;
}

body[data-ui-redesign="20260701b"] #reshape .reshape-builder,
body[data-ui-redesign="20260701b"] #reshape .reshape-side {
  border-radius: 9px !important;
  background: rgba(255, 253, 249, 0.92) !important;
  box-shadow: 0 12px 30px rgba(83, 60, 46, 0.055) !important;
}

body[data-ui-redesign="20260701b"] #reshape .reshape-builder {
  padding: 24px !important;
}

body[data-ui-redesign="20260701b"] #reshape .reshape-step {
  padding: 0 0 22px !important;
  margin: 0 0 22px !important;
  border-bottom: 1px solid rgba(183, 137, 103, 0.13) !important;
}

body[data-ui-redesign="20260701b"] #reshape .reshape-step:last-child {
  border-bottom: 0 !important;
}

body[data-ui-redesign="20260701b"] #reshape .step-label {
  margin-bottom: 12px !important;
  color: #332521 !important;
  font-size: 16px !important;
  font-weight: 950 !important;
}

body[data-ui-redesign="20260701b"] #reshape #reshapeModeSwitch {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

body[data-ui-redesign="20260701b"] #reshape #reshapeModeSwitch .choice-item {
  min-height: 86px !important;
  padding: 16px 14px !important;
  align-content: center !important;
  text-align: center !important;
  border-radius: 9px !important;
}

body[data-ui-redesign="20260701b"] #reshape #reshapeModeSwitch .choice-item span {
  font-size: 17px !important;
  font-weight: 950 !important;
}

body[data-ui-redesign="20260701b"] #reshape #reshapeModeSwitch .choice-item small {
  display: none !important;
}

body[data-ui-redesign="20260701b"] #reshape .choice-item.active,
body[data-ui-redesign="20260701b"] #reshape .select-chip.active {
  border-color: rgba(164, 82, 45, 0.58) !important;
  background: linear-gradient(145deg, rgba(255, 245, 238, 0.98), rgba(247, 224, 214, 0.9)) !important;
  color: #8d4f3b !important;
}

body[data-ui-redesign="20260701b"] #reshape .option-stack {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

body[data-ui-redesign="20260701b"] #reshape .option-group {
  min-height: 112px !important;
  padding: 16px !important;
  border: 1px solid rgba(183, 137, 103, 0.18) !important;
  border-radius: 9px !important;
  background: rgba(255, 253, 249, 0.74) !important;
}

body[data-ui-redesign="20260701b"] #reshape .option-group h4 {
  margin: 0 0 12px !important;
  color: #332521 !important;
  font-size: 16px !important;
  font-weight: 950 !important;
}

body[data-ui-redesign="20260701b"] #reshape .chip-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

body[data-ui-redesign="20260701b"] #reshape .select-chip {
  min-height: 38px !important;
  padding: 8px 10px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

body[data-ui-redesign="20260701b"] #reshape .field textarea {
  min-height: 122px !important;
}

body[data-ui-redesign="20260701b"] #reshape .reshape-side {
  position: sticky !important;
  top: 116px !important;
  padding: 20px !important;
}

body[data-ui-redesign="20260701b"] #reshape .upload-box {
  min-height: 158px !important;
  border-color: rgba(183, 137, 103, 0.26) !important;
  background: linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(250, 240, 231, 0.86)) !important;
}

body[data-ui-redesign="20260701b"] #reshape .selected-summary,
body[data-ui-redesign="20260701b"] #reshape .action-cost-note,
body[data-ui-redesign="20260701b"] #reshape .next-step-tip {
  border-radius: 9px !important;
}

body[data-ui-redesign="20260701b"] #reshape .result-actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
}

body[data-ui-redesign="20260701b"] #reshape #reshapeGenerate {
  width: 100% !important;
  min-height: 58px !important;
  font-size: 18px !important;
}

body[data-ui-redesign="20260701b"] #reshape .result-box {
  min-height: 170px !important;
  border-radius: 9px !important;
  background: linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(247, 238, 230, 0.9)) !important;
}

body[data-ui-redesign="20260701b"] #reshape .reshape-task-queue {
  padding: 16px !important;
  border: 1px solid rgba(183, 137, 103, 0.16) !important;
  border-radius: 9px !important;
  background: rgba(255, 253, 249, 0.82) !important;
}

/* Secondary pages convergence */
body[data-ui-redesign="20260701b"] .section-head {
  padding: 20px 22px !important;
  border-radius: 12px !important;
  background: rgba(255, 253, 249, 0.74) !important;
}

body[data-ui-redesign="20260701b"] .section-head h2 {
  color: #1f1714 !important;
  font-size: 25px !important;
  font-weight: 950 !important;
}

body[data-ui-redesign="20260701b"] .consult-layout,
body[data-ui-redesign="20260701b"] .tool-layout,
body[data-ui-redesign="20260701b"] .copy-layout,
body[data-ui-redesign="20260701b"] .profile-shell {
  gap: 22px !important;
  align-items: start !important;
}

body[data-ui-redesign="20260701b"] .consult-layout,
body[data-ui-redesign="20260701b"] .tool-layout,
body[data-ui-redesign="20260701b"] .copy-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(380px, 0.78fr) !important;
}

body[data-ui-redesign="20260701b"] .profile-shell {
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr) !important;
}

body[data-ui-redesign="20260701b"] .consult-tabs,
body[data-ui-redesign="20260701b"] .watermark-mode-switch,
body[data-ui-redesign="20260701b"] .copy-mode-switch {
  padding: 6px !important;
  border-radius: 12px !important;
}

body[data-ui-redesign="20260701b"] .consult-tabs button {
  min-height: 44px !important;
  border-radius: 9px !important;
}

body[data-ui-redesign="20260701b"] .preview-panel img {
  max-height: 178px !important;
  object-fit: cover !important;
}

body[data-ui-redesign="20260701b"] .copy-output,
body[data-ui-redesign="20260701b"] .history-table,
body[data-ui-redesign="20260701b"] .profile-opening-price,
body[data-ui-redesign="20260701b"] .payment-panel,
body[data-ui-redesign="20260701b"] .purchase-summary,
body[data-ui-redesign="20260701b"] .purchase-balance {
  border-radius: 10px !important;
}

body[data-ui-redesign="20260701b"] .profile-opening-price-grid strong,
body[data-ui-redesign="20260701b"] .profile-standard-price strong,
body[data-ui-redesign="20260701b"] .price-card .plan-quota span,
body[data-ui-redesign="20260701b"] #profileQuota,
body[data-ui-redesign="20260701b"] #usedQuota,
body[data-ui-redesign="20260701b"] #purchaseQuota,
body[data-ui-redesign="20260701b"] #purchaseAmount {
  color: #b97963 !important;
}

body[data-ui-redesign="20260701b"] .profile-packages .pricing {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

body[data-ui-redesign="20260701b"] .price-card {
  min-height: 230px !important;
  padding: 22px !important;
}

body[data-ui-redesign="20260701b"] .purchase-modal,
body[data-ui-redesign="20260701b"] .account-settings-modal {
  display: grid !important;
  place-items: center !important;
}

body[data-ui-redesign="20260701b"] .purchase-modal.hidden,
body[data-ui-redesign="20260701b"] .account-settings-modal.hidden {
  display: none !important;
}

body[data-ui-redesign="20260701b"] .purchase-dialog {
  max-width: min(94vw, 660px) !important;
  padding: 30px !important;
}

body[data-ui-redesign="20260701b"] .purchase-actions {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) !important;
}

/* Stable topbar title renderer: keep JS text untouched, render view labels on the container. */
body[data-ui-redesign="20260701b"] .topbar > div:first-child {
  display: grid !important;
  gap: 6px !important;
  min-width: 0 !important;
  max-width: min(58vw, 680px) !important;
}

body[data-ui-redesign="20260701b"] .topbar > div:first-child #pageTitle,
body[data-ui-redesign="20260701b"] .topbar > div:first-child #pageDesc {
  display: none !important;
}

body[data-ui-redesign="20260701b"] .topbar > div:first-child::before {
  content: "美智绘联 AI 工作台";
  display: block;
  color: #18100d;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body[data-ui-redesign="20260701b"] .topbar > div:first-child::after {
  content: "专属 AI 工作台";
  display: block;
  color: #8d7b70;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body[data-ui-redesign="20260701b"]:has(#dashboard.view.active) .topbar > div:first-child::before {
  content: "生产驾驶舱";
}

body[data-ui-redesign="20260701b"]:has(#dashboard.view.active) .topbar > div:first-child::after {
  content: "数据更新于 2026-07-01  生产数据实时汇总";
}

body[data-ui-redesign="20260701b"]:has(#consult.view.active) .topbar > div:first-child::before {
  content: "后端运维";
}

body[data-ui-redesign="20260701b"]:has(#consult.view.active) .topbar > div:first-child::after {
  content: "咨询承接、话术库与朋友圈营销统一处理";
}

body[data-ui-redesign="20260701b"]:has(#reshape.view.active) .topbar > div:first-child::before {
  content: "MeiZhiLink 美智绘联  |  魔力重塑";
}

body[data-ui-redesign="20260701b"]:has(#reshape.view.active) .topbar > div:first-child::after {
  content: "图片编辑、医美预演、视频动效统一生产台";
}

body[data-ui-redesign="20260701b"]:has(#watermark.view.active) .topbar > div:first-child::before {
  content: "水印封装";
}

body[data-ui-redesign="20260701b"]:has(#watermark.view.active) .topbar > div:first-child::after {
  content: "品牌水印、封装预览与下载交付";
}

body[data-ui-redesign="20260701b"]:has(#copywriting.view.active) .topbar > div:first-child::before {
  content: "前线阵地";
}

body[data-ui-redesign="20260701b"]:has(#copywriting.view.active) .topbar > div:first-child::after {
  content: "医生口播、小红书种草与原文案复写";
}

body[data-ui-redesign="20260701b"]:has(#profile.view.active) .topbar > div:first-child::before {
  content: "个人中心";
}

body[data-ui-redesign="20260701b"]:has(#profile.view.active) .topbar > div:first-child::after {
  content: "额度账本、生成记录与套餐购买";
}

@media (max-width: 1280px) {
  body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid,
  body[data-ui-redesign="20260701b"] #dashboard .tool-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-ui-redesign="20260701b"] .topbar-command-center {
    min-width: min(320px, 28vw) !important;
  }

  body[data-ui-redesign="20260701b"] #dashboard .production-tool-row {
    grid-template-columns: minmax(180px, 1fr) minmax(120px, 0.5fr) minmax(120px, 0.5fr) 76px !important;
  }

  body[data-ui-redesign="20260701b"] #dashboard .production-tool-row:not(.production-tool-head) b:last-of-type::after {
    display: none;
  }
}

@media (max-width: 1080px) {
  body[data-ui-redesign="20260701b"] .app {
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701b"] .sidebar {
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 16px !important;
  }

  body[data-ui-redesign="20260701b"] .nav {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  body[data-ui-redesign="20260701b"] .nav button {
    min-height: 56px !important;
    justify-content: center !important;
  }

  body[data-ui-redesign="20260701b"] .quota-card {
    display: none !important;
  }

  body[data-ui-redesign="20260701b"] .main {
    height: auto !important;
    min-height: 100vh !important;
  }

  body[data-ui-redesign="20260701b"] .consult-layout,
  body[data-ui-redesign="20260701b"] .tool-layout,
  body[data-ui-redesign="20260701b"] .copy-layout,
  body[data-ui-redesign="20260701b"] .profile-shell,
  body[data-ui-redesign="20260701b"] #reshape .reshape-workspace {
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701b"] #reshape .reshape-side {
    position: static !important;
  }

  body[data-ui-redesign="20260701b"] #reshape #reshapeModeSwitch {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-ui-redesign="20260701b"] #reshape .option-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  body[data-ui-redesign="20260701b"] .content {
    padding: 16px !important;
  }

  body[data-ui-redesign="20260701b"] .topbar {
    grid-template-columns: 1fr auto !important;
    min-height: 76px !important;
    padding: 14px 16px !important;
  }

  body[data-ui-redesign="20260701b"] .topbar-command-center {
    display: none !important;
  }

  body[data-ui-redesign="20260701b"] .topbar::after {
    display: none !important;
  }

  body[data-ui-redesign="20260701b"] .nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-ui-redesign="20260701b"] .nav button {
    min-height: 50px !important;
    padding: 0 12px !important;
    font-size: 14px !important;
  }

  body[data-ui-redesign="20260701b"] #authScreen.auth-screen:not(.hidden) {
    display: block !important;
    padding: 18px !important;
  }

  body[data-ui-redesign="20260701b"] #authScreen::before,
  body[data-ui-redesign="20260701b"] #authScreen::after {
    display: none !important;
  }

  body[data-ui-redesign="20260701b"] #authScreen .auth-panel {
    width: min(100%, 560px) !important;
    max-height: none !important;
    margin: 0 auto !important;
    padding: 28px 20px !important;
  }

  body[data-ui-redesign="20260701b"] #authScreen .auth-panel::before {
    display: none !important;
  }

  body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid,
  body[data-ui-redesign="20260701b"] #dashboard .tool-matrix,
  body[data-ui-redesign="20260701b"] .profile-packages .pricing {
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid span {
    min-height: 142px !important;
    padding: 22px !important;
    display: grid !important;
    align-content: center !important;
    text-align: center !important;
  }

  body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid span::before {
    left: 22px !important;
    bottom: 18px !important;
  }

  body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid span::after {
    right: 22px !important;
    bottom: 22px !important;
    width: 62px !important;
    height: 62px !important;
  }

  body[data-ui-redesign="20260701b"] #dashboard .production-summary-grid strong {
    margin-top: 12px !important;
    font-size: 38px !important;
  }

  body[data-ui-redesign="20260701b"] #dashboard .production-tool-table {
    padding: 12px !important;
  }

  body[data-ui-redesign="20260701b"] #dashboard .production-tool-row,
  body[data-ui-redesign="20260701b"] #dashboard .production-tool-head {
    grid-template-columns: minmax(0, 1fr) 68px 68px !important;
    min-height: 62px !important;
    padding: 8px !important;
  }

  body[data-ui-redesign="20260701b"] #dashboard .production-tool-row::after,
  body[data-ui-redesign="20260701b"] #dashboard .production-tool-head::after {
    display: none !important;
  }

  body[data-ui-redesign="20260701b"] #reshape #reshapeModeSwitch,
  body[data-ui-redesign="20260701b"] #reshape .option-stack,
  body[data-ui-redesign="20260701b"] #reshape .chip-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Final topbar de-duplication guard */
body[data-ui-redesign="20260701b"]:has(#dashboard.view.active) .topbar > div:first-child #pageTitle,
body[data-ui-redesign="20260701b"]:has(#dashboard.view.active) .topbar > div:first-child #pageDesc,
body[data-ui-redesign="20260701b"]:has(#consult.view.active) .topbar > div:first-child #pageTitle,
body[data-ui-redesign="20260701b"]:has(#consult.view.active) .topbar > div:first-child #pageDesc,
body[data-ui-redesign="20260701b"]:has(#reshape.view.active) .topbar > div:first-child #pageTitle,
body[data-ui-redesign="20260701b"]:has(#reshape.view.active) .topbar > div:first-child #pageDesc,
body[data-ui-redesign="20260701b"]:has(#watermark.view.active) .topbar > div:first-child #pageTitle,
body[data-ui-redesign="20260701b"]:has(#watermark.view.active) .topbar > div:first-child #pageDesc,
body[data-ui-redesign="20260701b"]:has(#copywriting.view.active) .topbar > div:first-child #pageTitle,
body[data-ui-redesign="20260701b"]:has(#copywriting.view.active) .topbar > div:first-child #pageDesc,
body[data-ui-redesign="20260701b"]:has(#profile.view.active) .topbar > div:first-child #pageTitle,
body[data-ui-redesign="20260701b"]:has(#profile.view.active) .topbar > div:first-child #pageDesc {
  display: none !important;
}

body[data-ui-redesign="20260701b"] .topbar > div:first-child #pageTitle::before,
body[data-ui-redesign="20260701b"] .topbar > div:first-child #pageTitle::after,
body[data-ui-redesign="20260701b"] .topbar > div:first-child #pageDesc::before,
body[data-ui-redesign="20260701b"] .topbar > div:first-child #pageDesc::after {
  content: none !important;
  display: none !important;
}

/* MeiZhiLink target mockup fidelity pass - 20260701c */
body[data-ui-redesign="20260701c"] {
  --mz-page-bg: #fffdfb;
  --mz-soft-bg: #fbf7f2;
  --mz-line: #eadbd2;
  --mz-line-strong: #dfc5b7;
  --mz-text: #1f1714;
  --mz-muted: #8f8179;
  --mz-copper: #b16d55;
  --mz-copper-dark: #8d4938;
  --mz-copper-soft: #e8b096;
  --mz-panel: rgba(255, 255, 255, 0.94);
  --mz-shadow: 0 18px 52px rgba(119, 82, 62, 0.12);
  --mz-font: "HarmonyOS Sans SC", "MiSans", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--mz-page-bg) !important;
  color: var(--mz-text) !important;
  font-family: var(--mz-font) !important;
  letter-spacing: 0 !important;
  overflow-x: hidden !important;
}

body[data-ui-redesign="20260701c"] * {
  box-sizing: border-box;
  letter-spacing: 0 !important;
}

body[data-ui-redesign="20260701c"] .hidden {
  display: none !important;
}

body[data-ui-redesign="20260701c"] #authScreen.auth-screen:not(.hidden) {
  min-height: 100vh !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: 1fr !important;
  justify-items: center !important;
  align-items: center !important;
  place-items: center !important;
  padding: 64px 5.5vw 52px !important;
  overflow: hidden auto !important;
  background:
    linear-gradient(90deg, rgba(245, 222, 204, 0.08), rgba(255,255,255,0.3)),
    url("/assets/hero-clinic-suite.png") center / cover no-repeat !important;
}

body[data-ui-redesign="20260701c"] #authScreen::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(255, 248, 241, 0.26), rgba(255, 255, 255, 0.08) 46%, rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 35% 24%, rgba(255,255,255,0.62), transparent 34%) !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-copy {
  position: fixed !important;
  left: clamp(42px, 6.8vw, 112px) !important;
  top: clamp(180px, 27vh, 310px) !important;
  width: min(360px, 26vw) !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  z-index: 1 !important;
  color: #b38368 !important;
  display: block !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-copy .brand,
body[data-ui-redesign="20260701c"] #authScreen .auth-video,
body[data-ui-redesign="20260701c"] #authScreen .auth-video-shade,
body[data-ui-redesign="20260701c"] #authScreen .hero-tags {
  display: none !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-hero-text {
  display: block !important;
  text-align: center !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-hero-text::before {
  content: "" !important;
  display: block !important;
  width: 142px !important;
  height: 104px !important;
  margin: 0 auto 22px !important;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.86) 0 15%, transparent 16%),
    conic-gradient(from 0deg, transparent 0 7%, #c99b7d 8% 14%, transparent 15% 22%, #c99b7d 23% 29%, transparent 30% 37%, #c99b7d 38% 44%, transparent 45% 52%, #c99b7d 53% 59%, transparent 60% 67%, #c99b7d 68% 74%, transparent 75% 100%) !important;
  filter: drop-shadow(0 10px 16px rgba(119, 82, 62, 0.2)) !important;
  opacity: 0.86 !important;
  border-radius: 50% !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-hero-text .eyebrow {
  display: none !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-hero-text h1 {
  color: #b68a6f !important;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif !important;
  font-size: clamp(38px, 4.1vw, 60px) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  margin: 0 !important;
  text-shadow: 0 2px 10px rgba(255,255,255,0.58), 0 7px 22px rgba(119,82,62,0.14) !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-hero-text h1::after {
  content: "美 智 绘 联" !important;
  display: block !important;
  margin-top: 14px !important;
  font-family: var(--mz-font) !important;
  font-size: clamp(24px, 2.3vw, 34px) !important;
  font-weight: 400 !important;
  color: #bc8c70 !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-hero-text p {
  margin: 26px 0 0 !important;
  color: #b68260 !important;
  font-size: clamp(18px, 1.5vw, 24px) !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-panel {
  position: relative !important;
  z-index: 2 !important;
  justify-self: center !important;
  width: min(820px, calc(100vw - 64px)) !important;
  max-width: 820px !important;
  min-height: 590px !important;
  margin: 0 0 0 clamp(180px, 18vw, 270px) !important;
  padding: 44px 42px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 0 !important;
  background: rgba(255,255,255,0.88) !important;
  border: 1px solid rgba(255,255,255,0.9) !important;
  border-radius: 18px !important;
  box-shadow: 0 28px 70px rgba(88, 60, 42, 0.18) !important;
  backdrop-filter: blur(20px) saturate(1.08) !important;
  overflow: hidden !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-panel::before {
  content: "" !important;
  position: absolute !important;
  top: 50px !important;
  bottom: 50px !important;
  left: 50% !important;
  width: 1px !important;
  background: linear-gradient(transparent, rgba(214, 190, 176, 0.9), transparent) !important;
  transform: translateX(-0.5px) !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-form-column,
body[data-ui-redesign="20260701c"] #authScreen .auth-register-preview {
  position: relative !important;
  z-index: 1 !important;
  padding: 0 20px !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-form-column {
  display: grid !important;
  align-content: start !important;
  gap: 18px !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-panel h2 {
  margin: 0 0 24px !important;
  color: var(--mz-text) !important;
  font-size: 27px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  text-align: center !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-form-column h2 {
  color: var(--mz-copper-dark) !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-panel h2::after {
  content: "" !important;
  display: block !important;
  width: 38px !important;
  height: 3px !important;
  margin: 14px auto 0 !important;
  background: linear-gradient(90deg, #cf8d70, #a85c45) !important;
  border-radius: 99px !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-panel .hint#authHint,
body[data-ui-redesign="20260701c"] #authScreen .auth-onboarding-rail,
body[data-ui-redesign="20260701c"] #authScreen .auth-work-profile,
body[data-ui-redesign="20260701c"] #authScreen .auth-clinic-preference,
body[data-ui-redesign="20260701c"] #authScreen .auth-start-plan,
body[data-ui-redesign="20260701c"] #authScreen .auth-first-delivery,
body[data-ui-redesign="20260701c"] #authScreen .auth-dependency-loop,
body[data-ui-redesign="20260701c"] #authScreen .auth-resume-card,
body[data-ui-redesign="20260701c"] #authScreen .auth-return-hint,
body[data-ui-redesign="20260701c"] #authScreen .auth-readiness-card,
body[data-ui-redesign="20260701c"] #authScreen .auth-access-brief,
body[data-ui-redesign="20260701c"] #authScreen .auth-identity-cue,
body[data-ui-redesign="20260701c"] #authScreen .auth-login-help,
body[data-ui-redesign="20260701c"] #authScreen .auth-security-check,
body[data-ui-redesign="20260701c"] #authScreen .auth-code-help {
  display: none !important;
}

body[data-ui-redesign="20260701c"] #authScreen .field {
  margin: 0 !important;
}

body[data-ui-redesign="20260701c"] #authScreen .field label {
  display: none !important;
}

body[data-ui-redesign="20260701c"] #authScreen input,
body[data-ui-redesign="20260701c"] #authScreen select,
body[data-ui-redesign="20260701c"] #authScreen textarea {
  height: 58px !important;
  border: 1px solid #ded2ca !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,0.8) !important;
  color: #4f4039 !important;
  font-size: 16px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8) !important;
}

body[data-ui-redesign="20260701c"] #authScreen input::placeholder {
  color: #a99e98 !important;
}

body[data-ui-redesign="20260701c"] #authScreen .password-field-control {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 58px !important;
  gap: 8px !important;
  align-items: center !important;
}

body[data-ui-redesign="20260701c"] #authScreen .password-field-control input {
  min-width: 0 !important;
}

body[data-ui-redesign="20260701c"] #authScreen .password-toggle {
  width: 58px !important;
  height: 58px !important;
  border: 1px solid #e7d6ca !important;
  border-radius: 7px !important;
  background: rgba(255, 250, 246, 0.88) !important;
  color: #8a7b74 !important;
  display: grid !important;
  place-items: center !important;
}

body[data-ui-redesign="20260701c"] #authScreen .password-assist-row {
  justify-content: end !important;
  margin-top: 14px !important;
}

body[data-ui-redesign="20260701c"] #authScreen .password-forgot-link,
body[data-ui-redesign="20260701c"] #authScreen .switch-line .link-btn {
  color: var(--mz-copper-dark) !important;
  font-weight: 500 !important;
}

body[data-ui-redesign="20260701c"] #authScreen #authSubmit,
body[data-ui-redesign="20260701c"] #authScreen .preview-register-button {
  width: 100% !important;
  height: 58px !important;
  margin-top: 30px !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: linear-gradient(135deg, #dfa07f, #ae674e) !important;
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  box-shadow: 0 12px 24px rgba(172, 95, 68, 0.18) !important;
}

body[data-ui-redesign="20260701c"] #authScreen .switch-line {
  margin: 6px 0 0 !important;
  text-align: center !important;
  color: #80746e !important;
  font-size: 15px !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-code-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 118px !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701c"] #authScreen #sendSmsCode {
  height: 58px !important;
  border-radius: 7px !important;
  border: 1px solid #dca98f !important;
  color: var(--mz-copper-dark) !important;
  background: rgba(255,255,255,0.72) !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-agreement:not(.hidden) {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin-top: 2px !important;
  font-size: 14px !important;
  color: #7f746d !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-agreement input {
  width: 18px !important;
  height: 18px !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-register-preview {
  display: grid !important;
  align-content: start !important;
  gap: 16px !important;
}

body[data-ui-redesign="20260701c"] #authScreen .preview-field {
  height: 58px !important;
  border: 1px solid #ded2ca !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,0.7) !important;
  color: #a59a94 !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 0 18px !important;
  font-size: 16px !important;
}

body[data-ui-redesign="20260701c"] #authScreen .preview-field svg {
  width: 18px !important;
  height: 18px !important;
  color: #7e746e !important;
}

body[data-ui-redesign="20260701c"] #authScreen .preview-field svg:last-child {
  margin-left: auto !important;
}

body[data-ui-redesign="20260701c"] #authScreen .preview-auth-code-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 118px !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701c"] #authScreen .preview-auth-code-row button,
body[data-ui-redesign="20260701c"] #authScreen .preview-login-line button {
  border: 1px solid #dca98f !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,0.68) !important;
  color: var(--mz-copper-dark) !important;
  font-size: 15px !important;
}

body[data-ui-redesign="20260701c"] #authScreen .preview-agreement {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 4px 0 0 !important;
  color: #776d68 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

body[data-ui-redesign="20260701c"] #authScreen .preview-agreement span {
  width: 18px !important;
  height: 18px !important;
  border: 1px solid #cfc3bc !important;
  border-radius: 3px !important;
  flex: 0 0 auto !important;
}

body[data-ui-redesign="20260701c"] #authScreen .preview-login-line {
  margin: -4px 0 0 !important;
  text-align: center !important;
  color: #7a706b !important;
  font-size: 15px !important;
}

body[data-ui-redesign="20260701c"] #authScreen .preview-login-line button {
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: var(--mz-copper-dark) !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-site-footer {
  position: fixed !important;
  bottom: 22px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 2 !important;
  width: max-content !important;
  max-width: calc(100vw - 32px) !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  color: rgba(255,255,255,0.92) !important;
  text-shadow: 0 1px 6px rgba(102, 75, 58, 0.28) !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-site-footer-inner {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-site-footer-brand,
body[data-ui-redesign="20260701c"] #authScreen .auth-site-footer-records {
  display: none !important;
}

body[data-ui-redesign="20260701c"] #authScreen .auth-site-footer-copy {
  margin: 0 !important;
  font-size: 14px !important;
  color: inherit !important;
}

body[data-ui-redesign="20260701c"] .app {
  min-height: 100vh !important;
  display: grid !important;
  grid-template-columns: 276px minmax(0, 1fr) !important;
  background: #fffdfb !important;
}

body[data-ui-redesign="20260701c"] .global-work-pulse,
body[data-ui-redesign="20260701c"] .sidebar-showcase {
  display: none !important;
}

body[data-ui-redesign="20260701c"] .sidebar {
  position: sticky !important;
  top: 0 !important;
  height: 100vh !important;
  padding: 30px 22px !important;
  border-right: 1px solid #eee0d7 !important;
  background: linear-gradient(180deg, #fffdfb, #fff9f5) !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

body[data-ui-redesign="20260701c"] .sidebar .brand {
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 42px !important;
}

body[data-ui-redesign="20260701c"] .brand-mark {
  width: 42px !important;
  height: 42px !important;
  border-radius: 0 !important;
  color: transparent !important;
  background: none !important;
  box-shadow: none !important;
  position: relative !important;
  overflow: visible !important;
}

body[data-ui-redesign="20260701c"] .brand-mark::before,
body[data-ui-redesign="20260701c"] .brand-mark::after {
  content: "" !important;
  position: absolute !important;
  inset: 4px 5px !important;
  border: 8px solid #bd8065 !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  transform: skewY(-20deg) !important;
  opacity: 0.9 !important;
}

body[data-ui-redesign="20260701c"] .brand-mark::after {
  transform: scaleX(-1) skewY(-20deg) !important;
}

body[data-ui-redesign="20260701c"] .brand-title {
  color: #1f1714 !important;
  font-size: 17px !important;
  font-weight: 700 !important;
}

body[data-ui-redesign="20260701c"] .brand-subtitle {
  color: #8b7f78 !important;
  font-size: 13px !important;
  margin-top: 4px !important;
}

body[data-ui-redesign="20260701c"] .nav {
  display: grid !important;
  gap: 14px !important;
}

body[data-ui-redesign="20260701c"] .nav button {
  height: 82px !important;
  padding: 0 18px !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: #39302b !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 18px !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701c"] .nav button.active {
  color: var(--mz-copper-dark) !important;
  border-color: #ead8cf !important;
  background: linear-gradient(135deg, rgba(251,238,230,0.95), rgba(255,255,255,0.78)) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7), 0 12px 28px rgba(157, 95, 70, 0.08) !important;
}

body[data-ui-redesign="20260701c"] .nav-icon {
  width: 24px !important;
  height: 24px !important;
  display: grid !important;
  place-items: center !important;
  color: currentColor !important;
}

body[data-ui-redesign="20260701c"] .nav-icon svg {
  width: 23px !important;
  height: 23px !important;
  stroke-width: 1.6 !important;
}

body[data-ui-redesign="20260701c"] .quota-card {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  width: 292px !important;
  min-height: 48px !important;
  padding: 0 14px !important;
  border-radius: 6px !important;
  border: 1px solid #ead8cf !important;
  background: rgba(255,255,255,0.88) !important;
  box-shadow: none !important;
  display: grid !important;
  align-items: center !important;
}

body[data-ui-redesign="20260701c"] .quota-label,
body[data-ui-redesign="20260701c"] #quotaHint,
body[data-ui-redesign="20260701c"] .quota-card .progress,
body[data-ui-redesign="20260701c"] .quota-card .pill {
  display: none !important;
}

body[data-ui-redesign="20260701c"] .quota-recharge {
  display: inline-grid !important;
  place-items: center !important;
  width: 54px !important;
  height: 30px !important;
  border: 1px solid #d9ab96 !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: var(--mz-copper-dark) !important;
  font-size: 13px !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701c"] .quota-recharge::before {
  content: "充值" !important;
}

body[data-ui-redesign="20260701c"] .quota-recharge {
  font-size: 0 !important;
}

body[data-ui-redesign="20260701c"] .quota-row {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701c"] .quota-number {
  width: 100% !important;
  text-align: left !important;
  color: #b48a6d !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  font-family: "DIN Alternate", "Bahnschrift", var(--mz-font) !important;
}

body[data-ui-redesign="20260701c"] .quota-row > div::before {
  content: "当前算力" !important;
  display: inline-block !important;
  text-align: left !important;
  color: #867970 !important;
  font-size: 13px !important;
  margin: 0 12px 0 0 !important;
}

body[data-ui-redesign="20260701c"] .quota-row > div {
  display: flex !important;
  align-items: baseline !important;
  min-width: 0 !important;
}

body[data-ui-redesign="20260701c"] .quota-row > div::after {
  content: "点" !important;
  color: #776c65 !important;
  font-size: 12px !important;
  margin-left: 5px !important;
}

body[data-ui-redesign="20260701c"] .main {
  min-height: 100vh !important;
  height: 100vh !important;
  overflow: auto !important;
  background: #fffdfb !important;
}

body[data-ui-redesign="20260701c"] .topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 40 !important;
  min-height: 96px !important;
  padding: 24px 28px 20px !important;
  border-bottom: 1px solid #eee0d7 !important;
  background: rgba(255, 253, 251, 0.96) !important;
  backdrop-filter: blur(14px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto auto !important;
  gap: 24px !important;
  align-items: center !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701c"] .topbar > div:first-child #pageTitle,
body[data-ui-redesign="20260701c"] .topbar > div:first-child #pageDesc {
  display: none !important;
}

body[data-ui-redesign="20260701c"] .mock-top-title {
  display: none !important;
}

body[data-ui-redesign="20260701c"]:has(#dashboard.view.active) .mock-dashboard-title,
body[data-ui-redesign="20260701c"]:has(#reshape.view.active) .mock-reshape-title {
  display: flex !important;
  align-items: baseline !important;
  gap: 22px !important;
}

body[data-ui-redesign="20260701c"] .mock-top-title h1 {
  margin: 0 !important;
  color: #17110f !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

body[data-ui-redesign="20260701c"] .mock-top-title p {
  margin: 0 !important;
  color: #9a8c84 !important;
  font-size: 14px !important;
}

body[data-ui-redesign="20260701c"] .page-title {
  margin: 0 !important;
  color: #17110f !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

body[data-ui-redesign="20260701c"] .page-desc {
  margin: 8px 0 0 !important;
  color: #9a8c84 !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
}

body[data-ui-redesign="20260701c"] .topbar-command-center {
  display: none !important;
}

body[data-ui-redesign="20260701c"] .top-actions {
  display: flex !important;
  gap: 12px !important;
}

body[data-ui-redesign="20260701c"] .topbar-settings-button {
  width: 44px !important;
  height: 44px !important;
  border: 1px solid #ead8cf !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.86) !important;
  color: #715f56 !important;
}

body[data-ui-redesign="20260701c"] .content {
  padding: 34px 28px 28px !important;
  max-width: none !important;
}

body[data-ui-redesign="20260701c"] #dashboard .command-copy,
body[data-ui-redesign="20260701c"] #dashboard .command-visual > img,
body[data-ui-redesign="20260701c"] #dashboard .visual-glass {
  display: none !important;
}

body[data-ui-redesign="20260701c"] #dashboard .command-hero {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701c"] #dashboard .command-visual {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-board {
  position: static !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  color: var(--mz-text) !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-board-head {
  display: none !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-summary-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin: 0 0 22px !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-summary-grid span {
  min-height: 176px !important;
  padding: 30px 32px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,250,246,0.92)),
    radial-gradient(circle at 88% 72%, rgba(222, 154, 123, 0.12), transparent 28%) !important;
  box-shadow: none !important;
  display: grid !important;
  align-content: start !important;
  position: relative !important;
  overflow: hidden !important;
  text-align: left !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-summary-grid span:first-child {
  background:
    linear-gradient(135deg, rgba(250,235,225,0.9), rgba(255,255,255,0.9)),
    radial-gradient(circle at 86% 72%, rgba(199, 117, 83, 0.16), transparent 32%) !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-summary-grid span::before {
  content: "" !important;
  position: absolute !important;
  right: 28px !important;
  bottom: 28px !important;
  width: 92px !important;
  height: 92px !important;
  opacity: 0.54 !important;
  background:
    linear-gradient(135deg, transparent 48%, #d3a18d 49% 52%, transparent 53%),
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(189,128,101,0.24) 14px 22px) !important;
  border-radius: 18px !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-summary-grid span::after {
  content: "" !important;
  position: absolute !important;
  right: 38px !important;
  bottom: 38px !important;
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  border: 8px dotted rgba(201,145,119,0.36) !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-summary-grid small {
  color: #1f1714 !important;
  font-size: 17px !important;
  font-weight: 650 !important;
  line-height: 1.4 !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-summary-grid strong {
  margin: 22px 0 12px !important;
  color: var(--mz-copper) !important;
  font-family: "DIN Alternate", "Bahnschrift", var(--mz-font) !important;
  font-size: clamp(42px, 4vw, 52px) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-summary-grid em {
  color: #8f4e3d !important;
  font-size: 15px !important;
  font-style: normal !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-tool-table {
  padding: 20px 20px 18px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,0.86) !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-tool-table::before {
  content: "Usage Overview" !important;
  display: block !important;
  color: #17110f !important;
  font-size: 21px !important;
  font-weight: 800 !important;
  margin: 0 0 18px !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-tool-row {
  min-height: 58px !important;
  padding: 0 20px !important;
  display: grid !important;
  grid-template-columns: minmax(180px, 1.15fr) minmax(110px, 0.6fr) minmax(132px, 0.7fr) minmax(150px, 0.65fr) 94px !important;
  align-items: center !important;
  gap: 20px !important;
  border-bottom: 1px solid #efe6e0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-tool-row:last-child {
  border-bottom: 0 !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-tool-head {
  min-height: 46px !important;
  color: #6f625b !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  background: #fff !important;
  border: 1px solid #eee4dd !important;
  border-bottom: 1px solid #eee4dd !important;
  border-radius: 6px 6px 0 0 !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-tool-row span {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #1f1714 !important;
  font-size: 15px !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-tool-row span svg {
  width: 32px !important;
  height: 32px !important;
  padding: 7px !important;
  border: 1px solid #ead7ce !important;
  border-radius: 6px !important;
  color: var(--mz-copper) !important;
  background: #fff8f4 !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-tool-row b {
  color: #34302d !important;
  font-size: 15px !important;
  font-weight: 400 !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-tool-row b small {
  display: none !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-tool-row b em {
  color: var(--mz-copper) !important;
  font-style: normal !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-tool-row:not(.production-tool-head)::after {
  content: "进入" !important;
  justify-self: center !important;
  padding: 7px 18px !important;
  border: 1px solid #dfc5b7 !important;
  border-radius: 4px !important;
  color: var(--mz-copper-dark) !important;
  font-size: 14px !important;
  background: #fff !important;
  transform: none !important;
  width: auto !important;
  height: auto !important;
}

body[data-ui-redesign="20260701c"] #dashboard .production-tool-head::after {
  content: "操作" !important;
  display: block !important;
  color: #6f625b !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  background: transparent !important;
}

body[data-ui-redesign="20260701c"] #dashboard .tool-matrix {
  margin-top: 20px !important;
  padding: 20px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,0.88) !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

body[data-ui-redesign="20260701c"] #dashboard .tool-matrix::before {
  content: "功能入口" !important;
  grid-column: 1 / -1 !important;
  color: #17110f !important;
  font-size: 21px !important;
  font-weight: 800 !important;
}

body[data-ui-redesign="20260701c"] #dashboard .tool-card {
  min-height: 166px !important;
  padding: 22px 18px 18px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 6px !important;
  background: #fff !important;
  box-shadow: none !important;
  display: grid !important;
  grid-template-columns: 56px minmax(0, 1fr) !important;
  grid-template-areas:
    "icon title"
    "icon desc"
    "button button" !important;
  gap: 8px 18px !important;
}

body[data-ui-redesign="20260701c"] #dashboard .tool-card img {
  grid-area: icon !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 16px !important;
  object-fit: cover !important;
}

body[data-ui-redesign="20260701c"] #dashboard .tool-index {
  display: none !important;
}

body[data-ui-redesign="20260701c"] #dashboard .tool-card h3 {
  grid-area: title !important;
  margin: 0 !important;
  color: #211815 !important;
  font-size: 18px !important;
  font-weight: 750 !important;
}

body[data-ui-redesign="20260701c"] #dashboard .tool-card p {
  grid-area: desc !important;
  margin: 0 !important;
  color: #897d75 !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

body[data-ui-redesign="20260701c"] #dashboard .tool-card .btn {
  grid-area: button !important;
  width: 128px !important;
  height: 38px !important;
  margin-top: 14px !important;
  border-radius: 4px !important;
  border: 1px solid #ddc5b7 !important;
  background: #fff !important;
  color: var(--mz-copper-dark) !important;
  font-size: 14px !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701c"]:has(#reshape.view.active) .app {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
}

body[data-ui-redesign="20260701c"]:has(#reshape.view.active) .topbar-command-center {
  display: none !important;
}

body[data-ui-redesign="20260701c"]:has(#reshape.view.active) .sidebar {
  display: block !important;
  position: fixed !important;
  left: 0 !important;
  top: 64px !important;
  width: 56px !important;
  height: calc(100vh - 64px) !important;
  padding: 0 !important;
  border-right: 0 !important;
  background: transparent !important;
  pointer-events: auto !important;
  opacity: 0.01 !important;
  z-index: 90 !important;
  overflow: visible !important;
}

body[data-ui-redesign="20260701c"]:has(#reshape.view.active) .sidebar .brand,
body[data-ui-redesign="20260701c"]:has(#reshape.view.active) .sidebar .quota-card,
body[data-ui-redesign="20260701c"]:has(#reshape.view.active) .sidebar .sidebar-showcase {
  display: none !important;
}

body[data-ui-redesign="20260701c"]:has(#reshape.view.active) .sidebar .nav {
  display: grid !important;
  gap: 0 !important;
}

body[data-ui-redesign="20260701c"]:has(#reshape.view.active) .sidebar .nav button {
  width: 56px !important;
  height: 56px !important;
  min-height: 56px !important;
  padding: 0 !important;
  color: transparent !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701c"]:has(#reshape.view.active) .sidebar .nav button .nav-icon {
  opacity: 0 !important;
}

body[data-ui-redesign="20260701c"]:has(#reshape.view.active) .main {
  height: 100vh !important;
  min-height: 100vh !important;
  overflow: auto !important;
}

body[data-ui-redesign="20260701c"]:has(#reshape.view.active) .topbar {
  min-height: 64px !important;
  padding: 14px 30px !important;
  border-bottom: 1px solid #eaded7 !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
}

body[data-ui-redesign="20260701c"]:has(#reshape.view.active) .page-title {
  font-size: 24px !important;
  font-weight: 500 !important;
}

body[data-ui-redesign="20260701c"]:has(#reshape.view.active) .page-title::before {
  content: none !important;
  color: #1f1714 !important;
  font-weight: 500 !important;
}

body[data-ui-redesign="20260701c"]:has(#reshape.view.active) .page-desc {
  display: none !important;
}

body[data-ui-redesign="20260701c"]:has(#reshape.view.active) .content {
  padding: 0 30px 24px !important;
}

body[data-ui-redesign="20260701c"] #reshape .section-head {
  display: none !important;
}

body[data-ui-redesign="20260701c"] #reshape .reshape-workspace {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 468px !important;
  gap: 24px !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: start !important;
}

body[data-ui-redesign="20260701c"] #reshape .reshape-builder,
body[data-ui-redesign="20260701c"] #reshape .reshape-side {
  min-height: calc(100vh - 96px) !important;
  padding: 20px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,0.9) !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701c"] #reshape .reshape-builder {
  display: grid !important;
  gap: 18px !important;
}

body[data-ui-redesign="20260701c"] #reshape .reshape-side {
  position: sticky !important;
  top: 84px !important;
  display: grid !important;
  gap: 12px !important;
}

body[data-ui-redesign="20260701c"] #reshape .reshape-step {
  margin: 0 !important;
  padding: 0 0 18px !important;
  border-bottom: 1px solid #eee4dd !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701c"] #reshape .reshape-step:last-child {
  border-bottom: 0 !important;
}

body[data-ui-redesign="20260701c"] #reshape .step-label {
  margin: 0 0 12px !important;
  color: #1e1714 !important;
  font-size: 18px !important;
  font-weight: 650 !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

body[data-ui-redesign="20260701c"] #reshape .step-label::before {
  display: none !important;
}

body[data-ui-redesign="20260701c"] #reshape #reshapeModeSwitch {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701c"] #reshape #reshapeModeSwitch .choice-item {
  min-height: 92px !important;
  padding: 16px 14px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  text-align: center !important;
  color: #2a211d !important;
}

body[data-ui-redesign="20260701c"] #reshape #reshapeModeSwitch .choice-item::before {
  content: "" !important;
  width: 46px !important;
  height: 46px !important;
  flex: 0 0 46px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, #fff 45%, #f3e7df 46%) !important;
  border: 1px solid #eaded7 !important;
}

body[data-ui-redesign="20260701c"] #reshape #reshapeModeSwitch .choice-item.active {
  border-color: var(--mz-copper) !important;
  background: linear-gradient(135deg, #fff7f3, #fff) !important;
  color: var(--mz-copper-dark) !important;
  box-shadow: inset 0 0 0 1px rgba(177,109,85,0.12) !important;
}

body[data-ui-redesign="20260701c"] #reshape #reshapeModeSwitch .choice-item span {
  font-size: 17px !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
}

body[data-ui-redesign="20260701c"] #reshape #reshapeModeSwitch .choice-item small {
  display: none !important;
}

body[data-ui-redesign="20260701c"] #reshape .choice-list.compact-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

body[data-ui-redesign="20260701c"] #reshape .choice-list.compact-list .choice-item,
body[data-ui-redesign="20260701c"] #reshape .select-chip {
  min-height: 48px !important;
  padding: 12px 14px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
  color: #3d322d !important;
  box-shadow: none !important;
  text-align: center !important;
  justify-content: center !important;
}

body[data-ui-redesign="20260701c"] #reshape .choice-item.active,
body[data-ui-redesign="20260701c"] #reshape .select-chip.active {
  border-color: var(--mz-copper) !important;
  color: var(--mz-copper-dark) !important;
  background: #fff7f3 !important;
}

body[data-ui-redesign="20260701c"] #reshape .choice-list.compact-list .choice-item small {
  display: none !important;
}

body[data-ui-redesign="20260701c"] #reshape .option-stack {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

body[data-ui-redesign="20260701c"] #reshape .option-group {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body[data-ui-redesign="20260701c"] #reshape .option-group h4 {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 0 10px !important;
  color: #2b211d !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

body[data-ui-redesign="20260701c"] #reshape .chip-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701c"] #reshape .field textarea {
  min-height: 104px !important;
  border: 1px solid #dfd0c8 !important;
  border-radius: 6px !important;
  background: #fff !important;
  color: #3e342f !important;
  font-size: 15px !important;
}

body[data-ui-redesign="20260701c"] #reshape .upload-box {
  min-height: 158px !important;
  padding: 18px !important;
  border: 1px dashed #dfc8bb !important;
  border-radius: 7px !important;
  background: linear-gradient(135deg, #fff, #fff9f6) !important;
  display: grid !important;
  place-items: center !important;
  text-align: center !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701c"] #reshape .upload-icon {
  width: 54px !important;
  height: 54px !important;
  margin: 0 auto 12px !important;
  border-radius: 50% !important;
  background: #fff4ee !important;
  color: var(--mz-copper) !important;
  display: grid !important;
  place-items: center !important;
  font-size: 22px !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701c"] #reshape .upload-box strong {
  color: #5a4c45 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

body[data-ui-redesign="20260701c"] #reshape .upload-box p {
  margin: 8px 0 0 !important;
  color: #a0938c !important;
  font-size: 12px !important;
}

body[data-ui-redesign="20260701c"] #reshape .selected-summary,
body[data-ui-redesign="20260701c"] #reshape .action-cost-note {
  min-height: 70px !important;
  padding: 14px 18px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
  display: grid !important;
  align-content: center !important;
  color: #3e332f !important;
}

body[data-ui-redesign="20260701c"] #reshape .selected-summary::before {
  content: "已选汇总" !important;
  color: #1f1714 !important;
  font-size: 18px !important;
  font-weight: 650 !important;
  margin-bottom: 10px !important;
}

body[data-ui-redesign="20260701c"] #reshape .selected-summary span {
  display: none !important;
}

body[data-ui-redesign="20260701c"] #reshape .selected-summary strong {
  min-height: 72px !important;
  display: grid !important;
  place-items: center !important;
  color: #a0938c !important;
  font-weight: 400 !important;
  background: #fffaf7 !important;
  border: 1px solid #eee4dd !important;
  border-radius: 6px !important;
}

body[data-ui-redesign="20260701c"] #reshape .action-cost-note {
  grid-template-columns: auto 1fr auto !important;
  gap: 10px !important;
  color: var(--mz-copper) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

body[data-ui-redesign="20260701c"] #reshape .action-cost-note::before {
  content: "预计消耗" !important;
  grid-column: 1 / -1 !important;
  color: #1f1714 !important;
  font-size: 16px !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701c"] #reshape .action-cost-note::after {
  content: "余额：0    去充值 >" !important;
  justify-self: end !important;
  color: var(--mz-copper-dark) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

body[data-ui-redesign="20260701c"] #reshape .next-step-tip {
  display: none !important;
}

body[data-ui-redesign="20260701c"] #reshape .result-actions {
  display: block !important;
}

body[data-ui-redesign="20260701c"] #reshape #reshapeGenerate {
  width: 100% !important;
  height: 54px !important;
  border-radius: 6px !important;
  border: 0 !important;
  background: linear-gradient(135deg, #e8a289, #af654c) !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 650 !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701c"] #reshape #reshapeDownloadResult {
  width: 100% !important;
  margin-top: 10px !important;
}

body[data-ui-redesign="20260701c"] #reshape .result-box {
  min-height: 160px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fffaf7 !important;
  display: grid !important;
  place-items: center !important;
  color: #94877f !important;
}

body[data-ui-redesign="20260701c"] #reshape .result-box::before {
  content: "效果预览" !important;
  position: absolute !important;
  top: 12px !important;
  left: 16px !important;
  color: #1f1714 !important;
  font-size: 18px !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701c"] #reshape .result-face {
  width: 44px !important;
  height: 34px !important;
  border-radius: 6px !important;
  background: #d8c8bd !important;
  opacity: 0.7 !important;
}

body[data-ui-redesign="20260701c"] #reshape .reshape-task-queue {
  min-height: 128px !important;
  padding: 14px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
}

body[data-ui-redesign="20260701c"] #reshape .queue-head h3 {
  color: #1f1714 !important;
  font-size: 18px !important;
}

body[data-ui-redesign="20260701c"] #reshape .queue-list:empty::before {
  content: "暂无任务" !important;
  display: grid !important;
  place-items: center !important;
  min-height: 58px !important;
  color: #a99c95 !important;
}

body[data-ui-redesign="20260701c"] .panel,
body[data-ui-redesign="20260701c"] .interactive-surface,
body[data-ui-redesign="20260701c"] .tool-card,
body[data-ui-redesign="20260701c"] .purchase-dialog,
body[data-ui-redesign="20260701c"] .account-settings-dialog {
  border-color: #eaded7 !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,0.9) !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701c"] .btn,
body[data-ui-redesign="20260701c"] .mini-btn {
  border-radius: 5px !important;
  box-shadow: none !important;
}

@media (max-width: 1180px) {
  body[data-ui-redesign="20260701c"] #authScreen.auth-screen:not(.hidden) {
    padding: 36px 18px 74px !important;
    overflow-y: auto !important;
  }

  body[data-ui-redesign="20260701c"] #authScreen .auth-copy {
    display: none !important;
  }

  body[data-ui-redesign="20260701c"] #authScreen .auth-panel {
    margin-left: 0 !important;
    width: min(920px, calc(100vw - 36px)) !important;
  }

  body[data-ui-redesign="20260701c"] .app {
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701c"] .sidebar {
    position: relative !important;
    height: auto !important;
    padding: 18px !important;
    overflow: visible !important;
  }

  body[data-ui-redesign="20260701c"] .nav {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body[data-ui-redesign="20260701c"] .nav button {
    height: 58px !important;
  }

  body[data-ui-redesign="20260701c"] .quota-card {
    position: static !important;
    margin-top: 14px !important;
  }

  body[data-ui-redesign="20260701c"] #dashboard .production-summary-grid,
  body[data-ui-redesign="20260701c"] #dashboard .tool-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-ui-redesign="20260701c"] #reshape .reshape-workspace {
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701c"] #reshape .reshape-side {
    position: static !important;
  }
}

@media (max-width: 720px) {
  body[data-ui-redesign="20260701c"] #authScreen .auth-panel {
    width: calc(100vw - 28px) !important;
    min-height: auto !important;
    padding: 28px 20px !important;
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701c"] #authScreen .auth-panel::before,
  body[data-ui-redesign="20260701c"] #authScreen .auth-register-preview {
    display: none !important;
  }

  body[data-ui-redesign="20260701c"] #authScreen .auth-form-column {
    padding: 0 !important;
  }

  body[data-ui-redesign="20260701c"] .content {
    padding: 18px 14px !important;
  }

  body[data-ui-redesign="20260701c"] .topbar {
    min-height: auto !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    padding: 16px 14px !important;
  }

  body[data-ui-redesign="20260701c"] .topbar-command-center {
    grid-column: 1 / -1 !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  body[data-ui-redesign="20260701c"] .nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-ui-redesign="20260701c"] .nav button {
    font-size: 15px !important;
    gap: 10px !important;
  }

  body[data-ui-redesign="20260701c"] #dashboard .production-summary-grid,
  body[data-ui-redesign="20260701c"] #dashboard .tool-matrix,
  body[data-ui-redesign="20260701c"] #reshape #reshapeModeSwitch,
  body[data-ui-redesign="20260701c"] #reshape .choice-list.compact-list,
  body[data-ui-redesign="20260701c"] #reshape .option-stack,
  body[data-ui-redesign="20260701c"] #reshape .chip-grid {
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701c"] #dashboard .production-summary-grid span {
    min-height: 150px !important;
  }

  body[data-ui-redesign="20260701c"] #dashboard .production-tool-row,
  body[data-ui-redesign="20260701c"] #dashboard .production-tool-head {
    grid-template-columns: minmax(0, 1fr) 68px 68px !important;
    gap: 8px !important;
    padding: 10px !important;
  }

  body[data-ui-redesign="20260701c"] #dashboard .production-tool-head b:nth-of-type(3),
  body[data-ui-redesign="20260701c"] #dashboard .production-tool-row b:nth-of-type(3),
  body[data-ui-redesign="20260701c"] #dashboard .production-tool-row::after,
  body[data-ui-redesign="20260701c"] #dashboard .production-tool-head::after {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-ui-redesign="20260701c"] *,
  body[data-ui-redesign="20260701c"] *::before,
  body[data-ui-redesign="20260701c"] *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* MeiZhiLink target mockup fidelity pass - 20260701d */
body[data-ui-redesign="20260701d"] {
  --mz-page-bg: #fffdfb;
  --mz-soft-bg: #fbf7f2;
  --mz-line: #eadbd2;
  --mz-line-strong: #dfc5b7;
  --mz-text: #1f1714;
  --mz-muted: #8f8179;
  --mz-copper: #b16d55;
  --mz-copper-dark: #8d4938;
  --mz-copper-soft: #e8b096;
  --mz-panel: rgba(255, 255, 255, 0.94);
  --mz-shadow: 0 18px 52px rgba(119, 82, 62, 0.12);
  --mz-font: "HarmonyOS Sans SC", "MiSans", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--mz-page-bg) !important;
  color: var(--mz-text) !important;
  font-family: var(--mz-font) !important;
  letter-spacing: 0 !important;
  overflow-x: hidden !important;
}

body[data-ui-redesign="20260701d"] *,
body[data-ui-redesign="20260701d"] *::before,
body[data-ui-redesign="20260701d"] *::after {
  box-sizing: border-box;
  letter-spacing: 0 !important;
}

body[data-ui-redesign="20260701d"] .hidden {
  display: none !important;
}

body[data-ui-redesign="20260701d"] #authScreen.auth-screen:not(.hidden) {
  min-height: 100vh !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: 1fr !important;
  justify-items: center !important;
  align-items: center !important;
  padding: 56px 5.2vw 52px !important;
  overflow: hidden auto !important;
  background:
    linear-gradient(90deg, rgba(244, 222, 205, 0.04), rgba(255,255,255,0.18) 46%, rgba(255,255,255,0.38)),
    url("/assets/hero-clinic-suite.png") center / cover no-repeat !important;
  color: var(--mz-text) !important;
}

body[data-ui-redesign="20260701d"] #authScreen::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(255, 249, 243, 0.24), rgba(255, 255, 255, 0.05) 46%, rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 36% 22%, rgba(255,255,255,0.54), transparent 36%) !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-copy {
  position: fixed !important;
  left: clamp(44px, 5vw, 88px) !important;
  top: clamp(190px, 30vh, 310px) !important;
  width: min(320px, 22vw) !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  z-index: 1 !important;
  color: #b38368 !important;
  display: block !important;
  text-align: center !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-copy .brand,
body[data-ui-redesign="20260701d"] #authScreen .auth-video,
body[data-ui-redesign="20260701d"] #authScreen .auth-video-shade,
body[data-ui-redesign="20260701d"] #authScreen .hero-tags,
body[data-ui-redesign="20260701d"] #authScreen .auth-hero-text .eyebrow {
  display: none !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-hero-text {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-hero-text::before {
  content: "" !important;
  display: block !important;
  width: 144px !important;
  height: 112px !important;
  margin: 0 auto 22px !important;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.88) 0 15%, transparent 16%),
    conic-gradient(from 0deg, transparent 0 7%, #c99b7d 8% 14%, transparent 15% 22%, #c99b7d 23% 29%, transparent 30% 37%, #c99b7d 38% 44%, transparent 45% 52%, #c99b7d 53% 59%, transparent 60% 67%, #c99b7d 68% 74%, transparent 75% 100%) !important;
  filter: drop-shadow(0 10px 16px rgba(119, 82, 62, 0.18)) !important;
  opacity: 0.84 !important;
  border-radius: 50% !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-hero-text h1 {
  color: #b68a6f !important;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif !important;
  font-size: 0 !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  margin: 0 !important;
  text-shadow: 0 2px 10px rgba(255,255,255,0.62), 0 7px 22px rgba(119,82,62,0.14) !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-hero-text h1::before {
  content: "MeiZhiLink" !important;
  display: block !important;
  color: #b68a6f !important;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif !important;
  font-size: clamp(36px, 3.1vw, 48px) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-hero-text h1::after {
  content: "美 智 绘 联" !important;
  display: block !important;
  margin-top: 12px !important;
  font-family: var(--mz-font) !important;
  font-size: clamp(21px, 1.8vw, 28px) !important;
  font-weight: 400 !important;
  color: #bc8c70 !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-hero-text p {
  width: min(300px, 100%) !important;
  margin: 24px auto 0 !important;
  color: #b68260 !important;
  font-size: clamp(16px, 1.28vw, 20px) !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-panel {
  position: relative !important;
  z-index: 2 !important;
  justify-self: center !important;
  width: min(920px, calc(100vw - 64px)) !important;
  max-width: 920px !important;
  min-height: 590px !important;
  margin: 0 0 0 clamp(230px, 22vw, 330px) !important;
  padding: 44px 44px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 0 !important;
  background: rgba(255,255,255,0.9) !important;
  border: 1px solid rgba(255,255,255,0.92) !important;
  border-radius: 18px !important;
  box-shadow: 0 28px 72px rgba(88, 60, 42, 0.17) !important;
  backdrop-filter: blur(20px) saturate(1.08) !important;
  overflow: hidden !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-panel::before {
  content: "" !important;
  position: absolute !important;
  top: 50px !important;
  bottom: 50px !important;
  left: 50% !important;
  width: 1px !important;
  background: linear-gradient(transparent, rgba(214, 190, 176, 0.9), transparent) !important;
  transform: translateX(-0.5px) !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-form-column,
body[data-ui-redesign="20260701d"] #authScreen .auth-register-preview {
  position: relative !important;
  z-index: 1 !important;
  padding: 0 20px !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-form-column {
  display: grid !important;
  align-content: start !important;
  gap: 18px !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-panel h2 {
  margin: 0 0 24px !important;
  color: var(--mz-text) !important;
  font-size: 28px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  text-align: center !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-form-column h2 {
  color: var(--mz-copper-dark) !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-panel h2::after {
  content: "" !important;
  display: block !important;
  width: 38px !important;
  height: 3px !important;
  margin: 14px auto 0 !important;
  background: linear-gradient(90deg, #cf8d70, #a85c45) !important;
  border-radius: 99px !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-panel .hint#authHint,
body[data-ui-redesign="20260701d"] #authScreen .auth-onboarding-rail,
body[data-ui-redesign="20260701d"] #authScreen .auth-work-profile,
body[data-ui-redesign="20260701d"] #authScreen .auth-clinic-preference,
body[data-ui-redesign="20260701d"] #authScreen .auth-start-plan,
body[data-ui-redesign="20260701d"] #authScreen .auth-first-delivery,
body[data-ui-redesign="20260701d"] #authScreen .auth-dependency-loop,
body[data-ui-redesign="20260701d"] #authScreen .auth-resume-card,
body[data-ui-redesign="20260701d"] #authScreen .auth-return-hint,
body[data-ui-redesign="20260701d"] #authScreen .auth-readiness-card,
body[data-ui-redesign="20260701d"] #authScreen .auth-access-brief,
body[data-ui-redesign="20260701d"] #authScreen .auth-identity-cue,
body[data-ui-redesign="20260701d"] #authScreen .auth-login-help,
body[data-ui-redesign="20260701d"] #authScreen .auth-security-check,
body[data-ui-redesign="20260701d"] #authScreen .auth-code-help {
  display: none !important;
}

body[data-ui-redesign="20260701d"] #authScreen .field {
  margin: 0 !important;
}

body[data-ui-redesign="20260701d"] #authScreen .field label {
  display: none !important;
}

body[data-ui-redesign="20260701d"] #authScreen input,
body[data-ui-redesign="20260701d"] #authScreen select,
body[data-ui-redesign="20260701d"] #authScreen textarea {
  height: 58px !important;
  border: 1px solid #ded2ca !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,0.82) !important;
  color: #3c312c !important;
  font-size: 15px !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701d"] #authScreen input::placeholder {
  color: #a79b94 !important;
}

body[data-ui-redesign="20260701d"] #authScreen .password-field-control {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 58px !important;
  gap: 8px !important;
}

body[data-ui-redesign="20260701d"] #authScreen .password-field-control input {
  min-width: 0 !important;
}

body[data-ui-redesign="20260701d"] #authScreen .password-toggle {
  position: static !important;
  width: 58px !important;
  height: 58px !important;
  border: 1px solid #ded2ca !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,0.76) !important;
  transform: none !important;
}

body[data-ui-redesign="20260701d"] #authScreen .password-assist-row {
  justify-content: end !important;
  margin-top: -4px !important;
}

body[data-ui-redesign="20260701d"] #authScreen .password-forgot-link,
body[data-ui-redesign="20260701d"] #authScreen .switch-line .link-btn {
  color: var(--mz-copper-dark) !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701d"] #authScreen #authSubmit,
body[data-ui-redesign="20260701d"] #authScreen .preview-register-button {
  height: 58px !important;
  margin-top: 4px !important;
  border-radius: 7px !important;
  border: 0 !important;
  background: linear-gradient(135deg, #e6a081, #b7654c) !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  box-shadow: 0 12px 24px rgba(169,91,62,0.16) !important;
}

body[data-ui-redesign="20260701d"] #authScreen .switch-line {
  margin: 0 !important;
  color: #8d8078 !important;
  text-align: center !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-code-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 118px !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701d"] #authScreen #sendSmsCode {
  height: 58px !important;
  border-radius: 7px !important;
  border: 1px solid #d8ad9b !important;
  background: #fff !important;
  color: var(--mz-copper-dark) !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-agreement:not(.hidden) {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  color: #6d625c !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-agreement input {
  width: 18px !important;
  height: 18px !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-register-preview {
  display: grid !important;
  align-content: start !important;
  gap: 16px !important;
}

body[data-ui-redesign="20260701d"] #authScreen .preview-field {
  min-height: 56px !important;
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr) auto !important;
  gap: 14px !important;
  align-items: center !important;
  padding: 0 14px !important;
  border: 1px solid #ded2ca !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,0.76) !important;
  color: #a79b94 !important;
  font-size: 15px !important;
}

body[data-ui-redesign="20260701d"] #authScreen .preview-field svg {
  width: 19px !important;
  height: 19px !important;
  color: #8d8179 !important;
}

body[data-ui-redesign="20260701d"] #authScreen .preview-field svg:last-child {
  justify-self: end !important;
}

body[data-ui-redesign="20260701d"] #authScreen .preview-auth-code-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 118px !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701d"] #authScreen .preview-auth-code-row button,
body[data-ui-redesign="20260701d"] #authScreen .preview-login-line button {
  min-height: 56px !important;
  border: 1px solid #d8ad9b !important;
  border-radius: 7px !important;
  background: #fff !important;
  color: var(--mz-copper-dark) !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701d"] #authScreen .preview-agreement {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  margin: 0 !important;
  color: #6d625c !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

body[data-ui-redesign="20260701d"] #authScreen .preview-agreement span {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
  border: 1px solid #d9cec7 !important;
  border-radius: 3px !important;
}

body[data-ui-redesign="20260701d"] #authScreen .preview-login-line {
  margin: 0 !important;
  color: #7f736d !important;
  text-align: center !important;
}

body[data-ui-redesign="20260701d"] #authScreen .preview-login-line button {
  min-height: auto !important;
  border: 0 !important;
  padding: 0 !important;
  color: var(--mz-copper-dark) !important;
  background: transparent !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-site-footer {
  position: fixed !important;
  left: 50% !important;
  bottom: 18px !important;
  transform: translateX(-50%) !important;
  z-index: 2 !important;
  display: block !important;
  width: min(760px, calc(100vw - 40px)) !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: rgba(255,255,255,0.9) !important;
  text-align: center !important;
  text-shadow: 0 1px 12px rgba(87,62,45,0.25) !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-site-footer-inner {
  display: grid !important;
  gap: 2px !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-site-footer-brand,
body[data-ui-redesign="20260701d"] #authScreen .auth-site-footer-records {
  display: none !important;
}

body[data-ui-redesign="20260701d"] #authScreen .auth-site-footer-copy {
  margin: 0 !important;
  color: inherit !important;
  font-size: 12px !important;
}

body[data-ui-redesign="20260701d"] .app {
  grid-template-columns: 262px minmax(0, 1fr) !important;
  min-height: 100vh !important;
  background: var(--mz-page-bg) !important;
}

body[data-ui-redesign="20260701d"] .global-work-pulse,
body[data-ui-redesign="20260701d"] .sidebar-showcase {
  display: none !important;
}

body[data-ui-redesign="20260701d"] .sidebar {
  position: sticky !important;
  top: 0 !important;
  height: 100vh !important;
  padding: 30px 10px 28px !important;
  border-right: 1px solid #eee0d7 !important;
  background: #fffaf6 !important;
  box-shadow: none !important;
  overflow: hidden auto !important;
}

body[data-ui-redesign="20260701d"] .sidebar .brand {
  margin: 0 18px 34px !important;
  align-items: center !important;
  gap: 12px !important;
}

body[data-ui-redesign="20260701d"] .brand-mark {
  width: 42px !important;
  height: 42px !important;
  border-radius: 0 !important;
  background: linear-gradient(140deg, #d9a183, #9e5d48) !important;
  color: transparent !important;
  clip-path: polygon(0 0, 36% 0, 36% 68%, 72% 18%, 100% 18%, 63% 100%, 35% 100%, 35% 32%, 0 82%) !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701d"] .brand-mark::before,
body[data-ui-redesign="20260701d"] .brand-mark::after {
  content: none !important;
}

body[data-ui-redesign="20260701d"] .brand-title {
  color: #1f1714 !important;
  font-size: 17px !important;
  font-weight: 800 !important;
}

body[data-ui-redesign="20260701d"] .brand-subtitle {
  margin-top: 4px !important;
  color: #8d8179 !important;
  font-size: 12px !important;
}

body[data-ui-redesign="20260701d"] .nav {
  display: grid !important;
  gap: 14px !important;
}

body[data-ui-redesign="20260701d"] .nav button {
  min-height: 82px !important;
  padding: 0 20px !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: #2f2824 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701d"] .nav button.active {
  border-color: #ead8cf !important;
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(252,239,230,0.8)) !important;
  color: var(--mz-copper-dark) !important;
  box-shadow: 0 16px 38px rgba(130,82,58,0.09) !important;
}

body[data-ui-redesign="20260701d"] .nav-icon {
  width: 22px !important;
  height: 22px !important;
  color: currentColor !important;
}

body[data-ui-redesign="20260701d"] .nav-icon svg {
  width: 22px !important;
  height: 22px !important;
  stroke-width: 1.7 !important;
}

body[data-ui-redesign="20260701d"] .main {
  min-height: 100vh !important;
  height: 100vh !important;
  min-width: 0 !important;
  overflow: auto !important;
  overflow-x: hidden !important;
  background: #fffdfb !important;
}

body[data-ui-redesign="20260701d"] .topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 40 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  min-height: 94px !important;
  padding: 24px 28px 18px !important;
  border-bottom: 1px solid #eee0d7 !important;
  background: rgba(255, 253, 251, 0.97) !important;
  backdrop-filter: blur(14px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto auto !important;
  gap: 24px !important;
  align-items: center !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701d"] .topbar > div:first-child #pageTitle,
body[data-ui-redesign="20260701d"] .topbar > div:first-child #pageDesc {
  display: none !important;
}

body[data-ui-redesign="20260701d"] .mock-top-title {
  display: none !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

body[data-ui-redesign="20260701d"]:has(#dashboard.view.active) .mock-dashboard-title,
body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .mock-reshape-title {
  display: flex !important;
  align-items: baseline !important;
  gap: 22px !important;
}

body[data-ui-redesign="20260701d"] .mock-top-title h1 {
  margin: 0 !important;
  color: #17110f !important;
  font-size: 25px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

body[data-ui-redesign="20260701d"] .mock-top-title p {
  margin: 0 !important;
  color: #9a8c84 !important;
  font-size: 14px !important;
}

body[data-ui-redesign="20260701d"] .page-title {
  margin: 0 !important;
  color: #17110f !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

body[data-ui-redesign="20260701d"] .page-desc {
  margin: 8px 0 0 !important;
  color: #9a8c84 !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
}

body[data-ui-redesign="20260701d"] .topbar-command-center {
  display: none !important;
}

body[data-ui-redesign="20260701d"] .quota-card {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  width: clamp(286px, 24vw, 330px) !important;
  min-height: 48px !important;
  padding: 0 10px 0 16px !important;
  border-radius: 7px !important;
  border: 1px solid #ead8cf !important;
  background: rgba(255,255,255,0.9) !important;
  box-shadow: none !important;
  display: grid !important;
  align-items: center !important;
}

body[data-ui-redesign="20260701d"] .quota-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto auto !important;
  align-items: center !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701d"] .quota-value-wrap {
  min-width: 0 !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 8px !important;
  white-space: nowrap !important;
}

body[data-ui-redesign="20260701d"] .quota-label {
  display: inline !important;
  color: #776c65 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

body[data-ui-redesign="20260701d"] .quota-number {
  min-width: 0 !important;
  max-width: 132px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  color: #b56f55 !important;
  font-family: "DIN Alternate", "Bahnschrift", var(--mz-font) !important;
  font-size: 23px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

body[data-ui-redesign="20260701d"] .quota-unit {
  color: #776c65 !important;
  font-size: 12px !important;
}

body[data-ui-redesign="20260701d"] .quota-card .pill,
body[data-ui-redesign="20260701d"] #quotaHint,
body[data-ui-redesign="20260701d"] .quota-card .progress {
  display: none !important;
}

body[data-ui-redesign="20260701d"] .quota-recharge {
  display: inline-grid !important;
  place-items: center !important;
  width: 54px !important;
  height: 30px !important;
  min-height: 30px !important;
  padding: 0 !important;
  border: 1px solid #d9ab96 !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: var(--mz-copper-dark) !important;
  font-size: 13px !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701d"] .quota-recharge::before,
body[data-ui-redesign="20260701d"] .quota-row > div::before,
body[data-ui-redesign="20260701d"] .quota-row > div::after {
  content: none !important;
}

body[data-ui-redesign="20260701d"] .top-actions {
  display: flex !important;
  gap: 12px !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

body[data-ui-redesign="20260701d"] .topbar-settings {
  min-width: 0 !important;
  overflow: visible !important;
}

body[data-ui-redesign="20260701d"] .topbar-settings-button {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  border: 1px solid #ead8cf !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.88) !important;
  color: #715f56 !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  padding: 0 !important;
  flex: 0 0 44px !important;
}

body[data-ui-redesign="20260701d"] .topbar-settings-button::before,
body[data-ui-redesign="20260701d"] .topbar-settings-button::after {
  content: none !important;
}

body[data-ui-redesign="20260701d"] .topbar-settings-button svg,
body[data-ui-redesign="20260701d"] .topbar-settings-button i {
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
}

body[data-ui-redesign="20260701d"] .content {
  padding: 34px 28px 28px !important;
  max-width: none !important;
}

body[data-ui-redesign="20260701d"] #dashboard .command-copy,
body[data-ui-redesign="20260701d"] #dashboard .command-visual > img,
body[data-ui-redesign="20260701d"] #dashboard .visual-glass {
  display: none !important;
}

body[data-ui-redesign="20260701d"] #dashboard .command-hero {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701d"] #dashboard .command-visual {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-board {
  position: static !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  color: var(--mz-text) !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-board-head {
  display: none !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-summary-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin: 0 0 22px !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-summary-grid span {
  min-height: 176px !important;
  padding: 30px 32px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,250,246,0.92)),
    radial-gradient(circle at 88% 72%, rgba(222, 154, 123, 0.12), transparent 28%) !important;
  box-shadow: none !important;
  display: grid !important;
  align-content: start !important;
  position: relative !important;
  overflow: hidden !important;
  text-align: left !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-summary-grid span:first-child {
  background:
    linear-gradient(135deg, rgba(250,235,225,0.9), rgba(255,255,255,0.9)),
    radial-gradient(circle at 86% 72%, rgba(199, 117, 83, 0.16), transparent 32%) !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-summary-grid span::before {
  content: "" !important;
  position: absolute !important;
  right: 28px !important;
  bottom: 28px !important;
  width: 92px !important;
  height: 92px !important;
  opacity: 0.54 !important;
  background:
    linear-gradient(135deg, transparent 48%, #d3a18d 49% 52%, transparent 53%),
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(189,128,101,0.24) 14px 22px) !important;
  border-radius: 18px !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-summary-grid span::after {
  content: "" !important;
  position: absolute !important;
  right: 38px !important;
  bottom: 38px !important;
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  border: 8px dotted rgba(201,145,119,0.36) !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-summary-grid small {
  color: #1f1714 !important;
  font-size: 17px !important;
  font-weight: 650 !important;
  line-height: 1.4 !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-summary-grid strong {
  margin: 22px 0 12px !important;
  color: var(--mz-copper) !important;
  font-family: "DIN Alternate", "Bahnschrift", var(--mz-font) !important;
  font-size: clamp(42px, 4vw, 52px) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-summary-grid em {
  color: #8f4e3d !important;
  font-size: 15px !important;
  font-style: normal !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-tool-table {
  padding: 20px 20px 18px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,0.86) !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-tool-table::before {
  content: "功能使用统计" !important;
  display: block !important;
  color: #17110f !important;
  font-size: 21px !important;
  font-weight: 800 !important;
  margin: 0 0 18px !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-tool-row {
  min-height: 58px !important;
  padding: 0 20px !important;
  display: grid !important;
  grid-template-columns: minmax(180px, 1.15fr) minmax(110px, 0.6fr) minmax(132px, 0.7fr) minmax(150px, 0.65fr) 94px !important;
  align-items: center !important;
  gap: 20px !important;
  border-bottom: 1px solid #efe6e0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-tool-row:last-child {
  border-bottom: 0 !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-tool-head {
  min-height: 46px !important;
  color: #6f625b !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  background: #fff !important;
  border: 1px solid #eee4dd !important;
  border-bottom: 1px solid #eee4dd !important;
  border-radius: 6px 6px 0 0 !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-tool-row span {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #1f1714 !important;
  font-size: 15px !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-tool-row span svg {
  width: 32px !important;
  height: 32px !important;
  padding: 7px !important;
  border: 1px solid #ead7ce !important;
  border-radius: 6px !important;
  color: var(--mz-copper) !important;
  background: #fff8f4 !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-tool-row b {
  color: #34302d !important;
  font-size: 15px !important;
  font-weight: 400 !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-tool-row b small {
  display: none !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-tool-row b em {
  color: var(--mz-copper) !important;
  font-style: normal !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-tool-row:not(.production-tool-head)::after {
  content: "进入" !important;
  justify-self: center !important;
  padding: 7px 18px !important;
  border: 1px solid #dfc5b7 !important;
  border-radius: 4px !important;
  color: var(--mz-copper-dark) !important;
  font-size: 14px !important;
  background: #fff !important;
  transform: none !important;
  width: auto !important;
  height: auto !important;
}

body[data-ui-redesign="20260701d"] #dashboard .production-tool-head::after {
  content: "操作" !important;
  display: block !important;
  color: #6f625b !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  background: transparent !important;
}

body[data-ui-redesign="20260701d"] #dashboard .tool-matrix {
  margin-top: 20px !important;
  padding: 20px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,0.88) !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

body[data-ui-redesign="20260701d"] #dashboard .tool-matrix::before {
  content: "功能入口" !important;
  grid-column: 1 / -1 !important;
  color: #17110f !important;
  font-size: 21px !important;
  font-weight: 800 !important;
}

body[data-ui-redesign="20260701d"] #dashboard .tool-card {
  min-height: 166px !important;
  padding: 22px 18px 18px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
  display: grid !important;
  grid-template-columns: 64px minmax(0, 1fr) !important;
  gap: 14px 18px !important;
  align-items: start !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701d"] #dashboard .tool-card img {
  width: 64px !important;
  height: 64px !important;
  grid-row: span 3 !important;
  border-radius: 16px !important;
  object-fit: cover !important;
  opacity: 0.72 !important;
}

body[data-ui-redesign="20260701d"] #dashboard .tool-index {
  display: none !important;
}

body[data-ui-redesign="20260701d"] #dashboard .tool-card h3 {
  margin: 2px 0 0 !important;
  color: #1f1714 !important;
  font-size: 17px !important;
  font-weight: 800 !important;
}

body[data-ui-redesign="20260701d"] #dashboard .tool-card p {
  margin: 0 !important;
  color: #82756e !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

body[data-ui-redesign="20260701d"] #dashboard .tool-card .btn {
  width: 128px !important;
  min-height: 36px !important;
  padding: 0 12px !important;
  border-radius: 5px !important;
  border: 1px solid #ddc5b7 !important;
  background: #fff !important;
  color: var(--mz-copper-dark) !important;
  font-size: 14px !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .app {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
}

body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .topbar-command-center {
  display: none !important;
}

body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .sidebar {
  display: block !important;
  position: fixed !important;
  left: 0 !important;
  top: 64px !important;
  width: 56px !important;
  height: calc(100vh - 64px) !important;
  padding: 0 !important;
  border-right: 0 !important;
  background: transparent !important;
  pointer-events: auto !important;
  opacity: 0.01 !important;
  z-index: 90 !important;
  overflow: visible !important;
}

body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .sidebar .brand,
body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .sidebar .quota-card,
body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .sidebar .sidebar-showcase {
  display: none !important;
}

body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .sidebar .nav {
  display: grid !important;
  gap: 0 !important;
}

body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .sidebar .nav button {
  width: 56px !important;
  height: 56px !important;
  min-height: 56px !important;
  padding: 0 !important;
  color: transparent !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .sidebar .nav button .nav-icon {
  opacity: 0 !important;
}

body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .main {
  height: 100vh !important;
  min-height: 100vh !important;
  overflow: auto !important;
  overflow-x: hidden !important;
}

body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .topbar {
  min-height: 64px !important;
  padding: 14px 30px !important;
  border-bottom: 1px solid #eaded7 !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
}

body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .quota-card {
  display: none !important;
}

body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .mock-reshape-title h1 {
  font-size: 25px !important;
  font-weight: 500 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .page-title::before {
  content: none !important;
}

body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .page-desc {
  display: none !important;
}

body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .content {
  padding: 0 30px 24px !important;
  overflow-x: hidden !important;
}

body[data-ui-redesign="20260701d"] #reshape .section-head {
  display: none !important;
}

body[data-ui-redesign="20260701d"] #reshape .reshape-workspace {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 468px !important;
  gap: 24px !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: start !important;
}

body[data-ui-redesign="20260701d"] #reshape .reshape-builder,
body[data-ui-redesign="20260701d"] #reshape .reshape-side {
  min-height: calc(100vh - 88px) !important;
  min-width: 0 !important;
  padding: 20px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,0.9) !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701d"] #reshape .reshape-builder {
  display: grid !important;
  gap: 18px !important;
}

body[data-ui-redesign="20260701d"] #reshape .reshape-side {
  position: sticky !important;
  top: 0 !important;
  display: grid !important;
  gap: 12px !important;
}

body[data-ui-redesign="20260701d"] #reshape .reshape-step {
  margin: 0 !important;
  padding: 0 0 18px !important;
  border-bottom: 1px solid #eee4dd !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701d"] #reshape .reshape-step:last-child {
  border-bottom: 0 !important;
}

body[data-ui-redesign="20260701d"] #reshape .step-label {
  margin: 0 0 12px !important;
  color: #1e1714 !important;
  font-size: 18px !important;
  font-weight: 650 !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

body[data-ui-redesign="20260701d"] #reshape .step-label::before {
  display: none !important;
}

body[data-ui-redesign="20260701d"] #reshape #reshapeModeSwitch {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701d"] #reshape #reshapeModeSwitch .choice-item {
  min-height: 92px !important;
  padding: 16px 14px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  text-align: center !important;
  color: #2a211d !important;
}

body[data-ui-redesign="20260701d"] #reshape #reshapeModeSwitch .choice-item::before {
  content: "" !important;
  width: 46px !important;
  height: 46px !important;
  flex: 0 0 46px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, #fff 45%, #f3e7df 46%) !important;
  border: 1px solid #eaded7 !important;
}

body[data-ui-redesign="20260701d"] #reshape #reshapeModeSwitch .choice-item.active {
  border-color: var(--mz-copper) !important;
  background: linear-gradient(135deg, #fff7f3, #fff) !important;
  color: var(--mz-copper-dark) !important;
  box-shadow: inset 0 0 0 1px rgba(177,109,85,0.12) !important;
}

body[data-ui-redesign="20260701d"] #reshape #reshapeModeSwitch .choice-item span {
  font-size: 17px !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
}

body[data-ui-redesign="20260701d"] #reshape #reshapeModeSwitch .choice-item small {
  display: none !important;
}

body[data-ui-redesign="20260701d"] #reshape .choice-list.compact-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

body[data-ui-redesign="20260701d"] #reshape .choice-list.compact-list .choice-item,
body[data-ui-redesign="20260701d"] #reshape .select-chip {
  min-height: 48px !important;
  padding: 12px 14px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
  color: #3d322d !important;
  box-shadow: none !important;
  text-align: center !important;
  justify-content: center !important;
}

body[data-ui-redesign="20260701d"] #reshape .choice-item.active,
body[data-ui-redesign="20260701d"] #reshape .select-chip.active {
  border-color: var(--mz-copper) !important;
  color: var(--mz-copper-dark) !important;
  background: #fff7f3 !important;
}

body[data-ui-redesign="20260701d"] #reshape .choice-list.compact-list .choice-item small {
  display: none !important;
}

body[data-ui-redesign="20260701d"] #reshape .option-stack {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

body[data-ui-redesign="20260701d"] #reshape .option-group {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body[data-ui-redesign="20260701d"] #reshape .option-group h4 {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 0 10px !important;
  color: #2b211d !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

body[data-ui-redesign="20260701d"] #reshape .chip-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701d"] #reshape .field textarea {
  min-height: 104px !important;
  border: 1px solid #dfd0c8 !important;
  border-radius: 6px !important;
  background: #fff !important;
  color: #3e342f !important;
  font-size: 15px !important;
}

body[data-ui-redesign="20260701d"] #reshape .upload-box {
  min-height: 158px !important;
  padding: 18px !important;
  border: 1px dashed #dfc8bb !important;
  border-radius: 7px !important;
  background: linear-gradient(135deg, #fff, #fff9f6) !important;
  display: grid !important;
  place-items: center !important;
  text-align: center !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701d"] #reshape .upload-box.hidden,
body[data-ui-redesign="20260701d"] #reshape .result-actions .hidden,
body[data-ui-redesign="20260701d"] #reshape .delivery-relay.hidden,
body[data-ui-redesign="20260701d"] #reshape .reshape-brief-card.hidden {
  display: none !important;
}

body[data-ui-redesign="20260701d"] #reshape .upload-icon {
  width: 54px !important;
  height: 54px !important;
  margin: 0 auto 12px !important;
  border-radius: 50% !important;
  background: #fff4ee !important;
  color: var(--mz-copper) !important;
  display: grid !important;
  place-items: center !important;
  font-size: 22px !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701d"] #reshape .upload-box strong {
  color: #5a4c45 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

body[data-ui-redesign="20260701d"] #reshape .upload-box p {
  margin: 8px 0 0 !important;
  color: #a0938c !important;
  font-size: 12px !important;
}

body[data-ui-redesign="20260701d"] #reshape .selected-summary,
body[data-ui-redesign="20260701d"] #reshape .action-cost-note {
  min-height: 70px !important;
  padding: 14px 18px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
  display: grid !important;
  align-content: center !important;
  color: #3e332f !important;
}

body[data-ui-redesign="20260701d"] #reshape .selected-summary::before {
  content: "已选汇总" !important;
  color: #1f1714 !important;
  font-size: 18px !important;
  font-weight: 650 !important;
  margin-bottom: 10px !important;
}

body[data-ui-redesign="20260701d"] #reshape .selected-summary span {
  display: none !important;
}

body[data-ui-redesign="20260701d"] #reshape .selected-summary strong {
  min-height: 72px !important;
  display: grid !important;
  place-items: center !important;
  color: #a0938c !important;
  font-weight: 400 !important;
  background: #fffaf7 !important;
  border: 1px solid #eee4dd !important;
  border-radius: 6px !important;
}

body[data-ui-redesign="20260701d"] #reshape .action-cost-note {
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 10px !important;
  color: var(--mz-copper) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

body[data-ui-redesign="20260701d"] #reshape .action-cost-note::before {
  content: "预计消耗" !important;
  grid-column: 1 / -1 !important;
  color: #1f1714 !important;
  font-size: 16px !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701d"] #reshape .action-cost-note::after {
  content: none !important;
}

body[data-ui-redesign="20260701d"] #reshape .next-step-tip {
  display: none !important;
}

body[data-ui-redesign="20260701d"] #reshape .result-actions {
  display: block !important;
}

body[data-ui-redesign="20260701d"] #reshape #reshapeGenerate {
  width: 100% !important;
  height: 54px !important;
  border-radius: 6px !important;
  border: 0 !important;
  background: linear-gradient(135deg, #e8a289, #af654c) !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 650 !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701d"] #reshape #reshapeDownloadResult {
  width: 100% !important;
  margin-top: 10px !important;
}

body[data-ui-redesign="20260701d"] #reshape .result-box {
  position: relative !important;
  min-height: 160px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fffaf7 !important;
  display: grid !important;
  place-items: center !important;
  color: #94877f !important;
}

body[data-ui-redesign="20260701d"] #reshape .result-box::before {
  content: "效果预览" !important;
  position: absolute !important;
  top: 12px !important;
  left: 16px !important;
  color: #1f1714 !important;
  font-size: 18px !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701d"] #reshape .result-face {
  width: 44px !important;
  height: 34px !important;
  border-radius: 6px !important;
  background: #d8c8bd !important;
  opacity: 0.7 !important;
  overflow: hidden !important;
}

body[data-ui-redesign="20260701d"] #reshape .result-face::before,
body[data-ui-redesign="20260701d"] #reshape .result-face::after {
  content: none !important;
}

body[data-ui-redesign="20260701d"] #reshape .reshape-task-queue {
  min-height: 128px !important;
  padding: 14px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
}

body[data-ui-redesign="20260701d"] #reshape .queue-head h3 {
  color: #1f1714 !important;
  font-size: 18px !important;
}

body[data-ui-redesign="20260701d"] #reshape .reshape-queue-body:empty::before {
  content: "暂无任务" !important;
  display: grid !important;
  place-items: center !important;
  min-height: 58px !important;
  color: #a99c95 !important;
}

body[data-ui-redesign="20260701d"] .panel,
body[data-ui-redesign="20260701d"] .interactive-surface,
body[data-ui-redesign="20260701d"] .tool-card,
body[data-ui-redesign="20260701d"] .purchase-dialog,
body[data-ui-redesign="20260701d"] .account-settings-dialog {
  border-color: #eaded7 !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,0.9) !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701d"] .btn,
body[data-ui-redesign="20260701d"] .mini-btn {
  border-radius: 5px !important;
  box-shadow: none !important;
}

@media (max-width: 1180px) {
  body[data-ui-redesign="20260701d"] #authScreen.auth-screen:not(.hidden) {
    padding: 36px 18px 74px !important;
    overflow-y: auto !important;
  }

  body[data-ui-redesign="20260701d"] #authScreen .auth-copy {
    display: none !important;
  }

  body[data-ui-redesign="20260701d"] #authScreen .auth-panel {
    margin-left: 0 !important;
    width: min(920px, calc(100vw - 36px)) !important;
  }

  body[data-ui-redesign="20260701d"] .app {
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701d"] .sidebar {
    position: relative !important;
    height: auto !important;
    padding: 18px !important;
    overflow: visible !important;
  }

  body[data-ui-redesign="20260701d"] .nav {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body[data-ui-redesign="20260701d"] .nav button {
    height: 58px !important;
    min-height: 58px !important;
  }

  body[data-ui-redesign="20260701d"] .quota-card {
    position: static !important;
    margin-top: 0 !important;
    width: min(330px, 38vw) !important;
  }

  body[data-ui-redesign="20260701d"] #dashboard .production-summary-grid,
  body[data-ui-redesign="20260701d"] #dashboard .tool-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-ui-redesign="20260701d"] #reshape .reshape-workspace {
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701d"] #reshape .reshape-side {
    position: static !important;
  }
}

@media (max-width: 720px) {
  body[data-ui-redesign="20260701d"] #authScreen .auth-panel {
    width: calc(100vw - 28px) !important;
    min-height: auto !important;
    padding: 28px 20px !important;
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701d"] #authScreen .auth-panel::before,
  body[data-ui-redesign="20260701d"] #authScreen .auth-register-preview {
    display: none !important;
  }

  body[data-ui-redesign="20260701d"] #authScreen .auth-form-column {
    padding: 0 !important;
  }

  body[data-ui-redesign="20260701d"] .content {
    padding: 18px 14px !important;
  }

  body[data-ui-redesign="20260701d"] .topbar {
    min-height: auto !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    padding: 16px 14px !important;
    gap: 12px !important;
  }

  body[data-ui-redesign="20260701d"] .topbar-command-center {
    grid-column: 1 / -1 !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  body[data-ui-redesign="20260701d"] .quota-card {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-height: 64px !important;
    margin: 0 !important;
  }

  body[data-ui-redesign="20260701d"] .quota-value-wrap {
    gap: 7px !important;
  }

  body[data-ui-redesign="20260701d"] .nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-ui-redesign="20260701d"] .nav button {
    font-size: 15px !important;
    gap: 10px !important;
  }

  body[data-ui-redesign="20260701d"] #dashboard .production-summary-grid,
  body[data-ui-redesign="20260701d"] #dashboard .tool-matrix,
  body[data-ui-redesign="20260701d"] #reshape #reshapeModeSwitch,
  body[data-ui-redesign="20260701d"] #reshape .choice-list.compact-list,
  body[data-ui-redesign="20260701d"] #reshape .option-stack,
  body[data-ui-redesign="20260701d"] #reshape .chip-grid {
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701d"] #dashboard .production-summary-grid span {
    min-height: 150px !important;
  }

  body[data-ui-redesign="20260701d"] #dashboard .production-tool-row,
  body[data-ui-redesign="20260701d"] #dashboard .production-tool-head {
    grid-template-columns: minmax(0, 1fr) 68px 68px !important;
    gap: 8px !important;
    padding: 10px !important;
  }

  body[data-ui-redesign="20260701d"] #dashboard .production-tool-head b:nth-of-type(3),
  body[data-ui-redesign="20260701d"] #dashboard .production-tool-row b:nth-of-type(3),
  body[data-ui-redesign="20260701d"] #dashboard .production-tool-row::after,
  body[data-ui-redesign="20260701d"] #dashboard .production-tool-head::after {
    display: none !important;
  }

  body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .topbar {
    min-height: 58px !important;
    padding: 12px 14px !important;
  }

  body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .mock-reshape-title h1 {
    font-size: 18px !important;
    white-space: normal !important;
  }

  body[data-ui-redesign="20260701d"]:has(#reshape.view.active) .content {
    padding: 0 14px 18px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-ui-redesign="20260701d"] *,
  body[data-ui-redesign="20260701d"] *::before,
  body[data-ui-redesign="20260701d"] *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* MeiZhiLink target mockup fidelity pass - 20260701e */
body[data-ui-redesign="20260701e"] {
  --mz-page-bg: #fffdfb;
  --mz-soft-bg: #fbf7f2;
  --mz-line: #eadbd2;
  --mz-line-strong: #dfc5b7;
  --mz-text: #1f1714;
  --mz-muted: #8f8179;
  --mz-copper: #b16d55;
  --mz-copper-dark: #8d4938;
  --mz-copper-soft: #e8b096;
  --mz-panel: rgba(255, 255, 255, 0.94);
  --mz-shadow: 0 18px 52px rgba(119, 82, 62, 0.12);
  --mz-font: "HarmonyOS Sans SC", "MiSans", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--mz-page-bg) !important;
  color: var(--mz-text) !important;
  font-family: var(--mz-font) !important;
  letter-spacing: 0 !important;
  overflow-x: hidden !important;
}

body[data-ui-redesign="20260701e"] *,
body[data-ui-redesign="20260701e"] *::before,
body[data-ui-redesign="20260701e"] *::after {
  box-sizing: border-box;
  letter-spacing: 0 !important;
}

body[data-ui-redesign="20260701e"] .hidden {
  display: none !important;
}

body[data-ui-redesign="20260701e"] #authScreen.auth-screen:not(.hidden) {
  min-height: 100vh !important;
  display: grid !important;
  grid-template-columns: minmax(270px, 0.46fr) minmax(760px, 0.82fr) minmax(20px, 0.18fr) !important;
  align-items: center !important;
  gap: clamp(22px, 3vw, 46px) !important;
  padding: 44px clamp(34px, 5vw, 78px) 52px !important;
  overflow: hidden auto !important;
  background:
    linear-gradient(90deg, rgba(244, 222, 205, 0.04), rgba(255,255,255,0.16) 48%, rgba(255,255,255,0.34)),
    url("/assets/hero-clinic-suite.png") center / cover no-repeat !important;
  color: var(--mz-text) !important;
}

body[data-ui-redesign="20260701e"] #authScreen::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(255, 249, 243, 0.2), rgba(255, 255, 255, 0.04) 46%, rgba(255, 255, 255, 0.38)),
    radial-gradient(circle at 36% 22%, rgba(255,255,255,0.52), transparent 36%) !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-copy {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  width: min(330px, 100%) !important;
  min-height: 0 !important;
  align-self: center !important;
  justify-self: center !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  z-index: 1 !important;
  color: #b38368 !important;
  display: block !important;
  text-align: center !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-copy .brand,
body[data-ui-redesign="20260701e"] #authScreen .auth-video,
body[data-ui-redesign="20260701e"] #authScreen .auth-video-shade,
body[data-ui-redesign="20260701e"] #authScreen .hero-tags,
body[data-ui-redesign="20260701e"] #authScreen .auth-hero-text .eyebrow {
  display: none !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-hero-text {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-hero-text::before {
  content: "" !important;
  display: block !important;
  width: 144px !important;
  height: 112px !important;
  margin: 0 auto 18px !important;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.88) 0 15%, transparent 16%),
    conic-gradient(from 0deg, transparent 0 7%, #c99b7d 8% 14%, transparent 15% 22%, #c99b7d 23% 29%, transparent 30% 37%, #c99b7d 38% 44%, transparent 45% 52%, #c99b7d 53% 59%, transparent 60% 67%, #c99b7d 68% 74%, transparent 75% 100%) !important;
  filter: drop-shadow(0 10px 16px rgba(119, 82, 62, 0.18)) !important;
  opacity: 0.82 !important;
  border-radius: 50% !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-hero-text h1 {
  color: #b68a6f !important;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif !important;
  font-size: 0 !important;
  line-height: 1 !important;
  margin: 0 !important;
  text-shadow: 0 2px 10px rgba(255,255,255,0.62), 0 7px 22px rgba(119,82,62,0.14) !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-hero-text h1::before {
  content: "MeiZhiLink" !important;
  display: block !important;
  color: #b68a6f !important;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif !important;
  font-size: clamp(36px, 3vw, 48px) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-hero-text h1::after {
  content: "美 智 绘 联" !important;
  display: block !important;
  margin-top: 12px !important;
  font-family: var(--mz-font) !important;
  font-size: clamp(21px, 1.75vw, 28px) !important;
  font-weight: 400 !important;
  color: #bc8c70 !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-hero-text p {
  width: min(300px, 100%) !important;
  margin: 22px auto 0 !important;
  color: #b68260 !important;
  font-size: clamp(16px, 1.18vw, 20px) !important;
  line-height: 1.62 !important;
  font-weight: 500 !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-panel {
  position: relative !important;
  z-index: 2 !important;
  grid-column: 2 !important;
  justify-self: center !important;
  width: min(920px, 100%) !important;
  max-width: 920px !important;
  min-height: 590px !important;
  margin: 0 !important;
  padding: 44px 44px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 0 !important;
  background: rgba(255,255,255,0.9) !important;
  border: 1px solid rgba(255,255,255,0.92) !important;
  border-radius: 18px !important;
  box-shadow: 0 28px 72px rgba(88, 60, 42, 0.17) !important;
  backdrop-filter: blur(20px) saturate(1.08) !important;
  overflow: hidden !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-panel::before {
  content: "" !important;
  position: absolute !important;
  top: 50px !important;
  bottom: 50px !important;
  left: 50% !important;
  width: 1px !important;
  background: linear-gradient(transparent, rgba(214, 190, 176, 0.9), transparent) !important;
  transform: translateX(-0.5px) !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-form-column,
body[data-ui-redesign="20260701e"] #authScreen .auth-register-preview {
  position: relative !important;
  z-index: 1 !important;
  padding: 0 20px !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-form-column {
  display: grid !important;
  align-content: start !important;
  gap: 18px !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-panel h2 {
  margin: 0 0 24px !important;
  color: var(--mz-text) !important;
  font-size: 28px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  text-align: center !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-form-column h2 {
  color: var(--mz-copper-dark) !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-panel h2::after {
  content: "" !important;
  display: block !important;
  width: 38px !important;
  height: 3px !important;
  margin: 14px auto 0 !important;
  background: linear-gradient(90deg, #cf8d70, #a85c45) !important;
  border-radius: 99px !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-panel .hint#authHint,
body[data-ui-redesign="20260701e"] #authScreen .auth-onboarding-rail,
body[data-ui-redesign="20260701e"] #authScreen .auth-work-profile,
body[data-ui-redesign="20260701e"] #authScreen .auth-clinic-preference,
body[data-ui-redesign="20260701e"] #authScreen .auth-start-plan,
body[data-ui-redesign="20260701e"] #authScreen .auth-first-delivery,
body[data-ui-redesign="20260701e"] #authScreen .auth-dependency-loop,
body[data-ui-redesign="20260701e"] #authScreen .auth-resume-card,
body[data-ui-redesign="20260701e"] #authScreen .auth-return-hint,
body[data-ui-redesign="20260701e"] #authScreen .auth-readiness-card,
body[data-ui-redesign="20260701e"] #authScreen .auth-access-brief,
body[data-ui-redesign="20260701e"] #authScreen .auth-identity-cue,
body[data-ui-redesign="20260701e"] #authScreen .auth-login-help,
body[data-ui-redesign="20260701e"] #authScreen .auth-security-check,
body[data-ui-redesign="20260701e"] #authScreen .auth-code-help {
  display: none !important;
}

body[data-ui-redesign="20260701e"] #authScreen .field {
  margin: 0 !important;
}

body[data-ui-redesign="20260701e"] #authScreen .field label {
  display: none !important;
}

body[data-ui-redesign="20260701e"] #authScreen input,
body[data-ui-redesign="20260701e"] #authScreen select,
body[data-ui-redesign="20260701e"] #authScreen textarea {
  height: 58px !important;
  border: 1px solid #ded2ca !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,0.82) !important;
  color: #3c312c !important;
  font-size: 15px !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701e"] #authScreen input::placeholder {
  color: #a79b94 !important;
}

body[data-ui-redesign="20260701e"] #authScreen .password-field-control {
  position: relative !important;
  display: block !important;
}

body[data-ui-redesign="20260701e"] #authScreen .password-field-control input {
  width: 100% !important;
  padding-right: 54px !important;
}

body[data-ui-redesign="20260701e"] #authScreen .password-toggle {
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 36px !important;
  height: 36px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: #8d8179 !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  overflow: hidden !important;
}

body[data-ui-redesign="20260701e"] #authScreen .password-toggle svg,
body[data-ui-redesign="20260701e"] #authScreen .password-toggle i {
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
}

body[data-ui-redesign="20260701e"] #authScreen .password-toggle::before,
body[data-ui-redesign="20260701e"] #authScreen .password-toggle::after {
  content: none !important;
}

body[data-ui-redesign="20260701e"] #authScreen .password-assist-row {
  justify-content: end !important;
  margin-top: -4px !important;
}

body[data-ui-redesign="20260701e"] #authScreen .password-forgot-link,
body[data-ui-redesign="20260701e"] #authScreen .switch-line .link-btn {
  color: var(--mz-copper-dark) !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701e"] #authScreen #authSubmit,
body[data-ui-redesign="20260701e"] #authScreen .preview-register-button {
  height: 58px !important;
  margin-top: 4px !important;
  border-radius: 7px !important;
  border: 0 !important;
  background: linear-gradient(135deg, #e6a081, #b7654c) !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  box-shadow: 0 12px 24px rgba(169,91,62,0.16) !important;
}

body[data-ui-redesign="20260701e"] #authScreen .switch-line {
  margin: 0 !important;
  color: #8d8078 !important;
  text-align: center !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-code-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 118px !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701e"] #authScreen #sendSmsCode {
  height: 58px !important;
  border-radius: 7px !important;
  border: 1px solid #d8ad9b !important;
  background: #fff !important;
  color: var(--mz-copper-dark) !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-agreement:not(.hidden) {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  color: #6d625c !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-agreement input {
  width: 18px !important;
  height: 18px !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-register-preview {
  display: grid !important;
  align-content: start !important;
  gap: 16px !important;
}

body[data-ui-redesign="20260701e"] #authScreen .preview-field {
  min-height: 56px !important;
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr) auto !important;
  gap: 14px !important;
  align-items: center !important;
  padding: 0 14px !important;
  border: 1px solid #ded2ca !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,0.76) !important;
  color: #a79b94 !important;
  font-size: 15px !important;
}

body[data-ui-redesign="20260701e"] #authScreen .preview-field svg {
  width: 19px !important;
  height: 19px !important;
  color: #8d8179 !important;
}

body[data-ui-redesign="20260701e"] #authScreen .preview-field svg:last-child {
  justify-self: end !important;
}

body[data-ui-redesign="20260701e"] #authScreen .preview-auth-code-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 118px !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701e"] #authScreen .preview-auth-code-row button,
body[data-ui-redesign="20260701e"] #authScreen .preview-login-line button {
  min-height: 56px !important;
  border: 1px solid #d8ad9b !important;
  border-radius: 7px !important;
  background: #fff !important;
  color: var(--mz-copper-dark) !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701e"] #authScreen .preview-agreement {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  margin: 0 !important;
  color: #6d625c !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

body[data-ui-redesign="20260701e"] #authScreen .preview-agreement span {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
  border: 1px solid #d9cec7 !important;
  border-radius: 3px !important;
}

body[data-ui-redesign="20260701e"] #authScreen .preview-login-line {
  margin: 0 !important;
  color: #7f736d !important;
  text-align: center !important;
}

body[data-ui-redesign="20260701e"] #authScreen .preview-login-line button {
  min-height: auto !important;
  border: 0 !important;
  padding: 0 !important;
  color: var(--mz-copper-dark) !important;
  background: transparent !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-site-footer {
  position: fixed !important;
  left: 50% !important;
  bottom: 18px !important;
  transform: translateX(-50%) !important;
  z-index: 2 !important;
  display: block !important;
  width: min(760px, calc(100vw - 40px)) !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: rgba(255,255,255,0.9) !important;
  text-align: center !important;
  text-shadow: 0 1px 12px rgba(87,62,45,0.25) !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-site-footer-inner {
  display: grid !important;
  gap: 2px !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-site-footer-brand,
body[data-ui-redesign="20260701e"] #authScreen .auth-site-footer-records {
  display: none !important;
}

body[data-ui-redesign="20260701e"] #authScreen .auth-site-footer-copy {
  margin: 0 !important;
  color: inherit !important;
  font-size: 12px !important;
}

body[data-ui-redesign="20260701e"] .app {
  grid-template-columns: 262px minmax(0, 1fr) !important;
  min-height: 100vh !important;
  background: var(--mz-page-bg) !important;
}

body[data-ui-redesign="20260701e"] .global-work-pulse,
body[data-ui-redesign="20260701e"] .sidebar-showcase {
  display: none !important;
}

body[data-ui-redesign="20260701e"] .sidebar {
  position: sticky !important;
  top: 0 !important;
  height: 100vh !important;
  padding: 30px 10px 28px !important;
  border-right: 1px solid #eee0d7 !important;
  background: #fffaf6 !important;
  box-shadow: none !important;
  overflow: hidden auto !important;
}

body[data-ui-redesign="20260701e"] .sidebar .brand {
  margin: 0 18px 34px !important;
  align-items: center !important;
  gap: 12px !important;
}

body[data-ui-redesign="20260701e"] .brand-mark {
  width: 42px !important;
  height: 42px !important;
  border-radius: 0 !important;
  background: linear-gradient(140deg, #d9a183, #9e5d48) !important;
  color: transparent !important;
  clip-path: polygon(0 0, 36% 0, 36% 68%, 72% 18%, 100% 18%, 63% 100%, 35% 100%, 35% 32%, 0 82%) !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701e"] .brand-mark::before,
body[data-ui-redesign="20260701e"] .brand-mark::after {
  content: none !important;
}

body[data-ui-redesign="20260701e"] .brand-title {
  color: #1f1714 !important;
  font-size: 17px !important;
  font-weight: 800 !important;
}

body[data-ui-redesign="20260701e"] .brand-subtitle {
  margin-top: 4px !important;
  color: #8d8179 !important;
  font-size: 12px !important;
}

body[data-ui-redesign="20260701e"] .nav {
  display: grid !important;
  gap: 14px !important;
}

body[data-ui-redesign="20260701e"] .nav button {
  min-height: 82px !important;
  padding: 0 20px !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: #2f2824 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701e"] .nav button.active {
  border-color: #ead8cf !important;
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(252,239,230,0.8)) !important;
  color: var(--mz-copper-dark) !important;
  box-shadow: 0 16px 38px rgba(130,82,58,0.09) !important;
}

body[data-ui-redesign="20260701e"] .nav-icon {
  width: 22px !important;
  height: 22px !important;
  color: currentColor !important;
}

body[data-ui-redesign="20260701e"] .nav-icon svg {
  width: 22px !important;
  height: 22px !important;
  stroke-width: 1.7 !important;
}

body[data-ui-redesign="20260701e"] .main {
  min-height: 100vh !important;
  height: 100vh !important;
  min-width: 0 !important;
  overflow: auto !important;
  overflow-x: hidden !important;
  background: #fffdfb !important;
}

body[data-ui-redesign="20260701e"] .topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 40 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  min-height: 94px !important;
  padding: 24px 28px 18px !important;
  border-bottom: 1px solid #eee0d7 !important;
  background: rgba(255, 253, 251, 0.97) !important;
  backdrop-filter: blur(14px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto auto !important;
  gap: 24px !important;
  align-items: center !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701e"] .topbar > div:first-child #pageTitle,
body[data-ui-redesign="20260701e"] .topbar > div:first-child #pageDesc {
  display: none !important;
}

body[data-ui-redesign="20260701e"] .mock-top-title {
  display: none !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

body[data-ui-redesign="20260701e"]:has(#dashboard.view.active) .mock-dashboard-title,
body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .mock-reshape-title {
  display: flex !important;
  align-items: baseline !important;
  gap: 22px !important;
}

body[data-ui-redesign="20260701e"] .mock-top-title h1 {
  margin: 0 !important;
  color: #17110f !important;
  font-size: 25px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

body[data-ui-redesign="20260701e"] .mock-top-title p {
  margin: 0 !important;
  color: #9a8c84 !important;
  font-size: 14px !important;
}

body[data-ui-redesign="20260701e"] .page-title {
  margin: 0 !important;
  color: #17110f !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

body[data-ui-redesign="20260701e"] .page-desc {
  margin: 8px 0 0 !important;
  color: #9a8c84 !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
}

body[data-ui-redesign="20260701e"] .topbar-command-center {
  display: none !important;
}

body[data-ui-redesign="20260701e"] .quota-card {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  width: clamp(286px, 24vw, 330px) !important;
  min-height: 48px !important;
  padding: 0 10px 0 16px !important;
  border-radius: 7px !important;
  border: 1px solid #ead8cf !important;
  background: rgba(255,255,255,0.9) !important;
  box-shadow: none !important;
  display: grid !important;
  align-items: center !important;
}

body[data-ui-redesign="20260701e"] .quota-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto auto !important;
  align-items: center !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701e"] .quota-value-wrap {
  min-width: 0 !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 8px !important;
  white-space: nowrap !important;
}

body[data-ui-redesign="20260701e"] .quota-label {
  display: inline !important;
  color: #776c65 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

body[data-ui-redesign="20260701e"] .quota-number {
  min-width: 0 !important;
  max-width: 132px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  color: #b56f55 !important;
  font-family: "DIN Alternate", "Bahnschrift", var(--mz-font) !important;
  font-size: 23px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

body[data-ui-redesign="20260701e"] .quota-unit {
  color: #776c65 !important;
  font-size: 12px !important;
}

body[data-ui-redesign="20260701e"] .quota-card .pill,
body[data-ui-redesign="20260701e"] #quotaHint,
body[data-ui-redesign="20260701e"] .quota-card .progress {
  display: none !important;
}

body[data-ui-redesign="20260701e"] .quota-recharge {
  display: inline-grid !important;
  place-items: center !important;
  width: 54px !important;
  height: 30px !important;
  min-height: 30px !important;
  padding: 0 !important;
  border: 1px solid #d9ab96 !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: var(--mz-copper-dark) !important;
  font-size: 13px !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701e"] .quota-recharge::before,
body[data-ui-redesign="20260701e"] .quota-row > div::before,
body[data-ui-redesign="20260701e"] .quota-row > div::after {
  content: none !important;
}

body[data-ui-redesign="20260701e"] .top-actions {
  display: flex !important;
  gap: 12px !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

body[data-ui-redesign="20260701e"] .topbar-settings {
  min-width: 0 !important;
  overflow: visible !important;
}

body[data-ui-redesign="20260701e"] .topbar-settings-button {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  border: 1px solid #ead8cf !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.88) !important;
  color: #715f56 !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  padding: 0 !important;
  flex: 0 0 44px !important;
}

body[data-ui-redesign="20260701e"] .topbar-settings-button::before,
body[data-ui-redesign="20260701e"] .topbar-settings-button::after {
  content: none !important;
}

body[data-ui-redesign="20260701e"] .topbar-settings-button svg,
body[data-ui-redesign="20260701e"] .topbar-settings-button i {
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
}

body[data-ui-redesign="20260701e"] .content {
  padding: 34px 28px 28px !important;
  max-width: none !important;
}

body[data-ui-redesign="20260701e"] #dashboard .command-copy,
body[data-ui-redesign="20260701e"] #dashboard .command-visual > img,
body[data-ui-redesign="20260701e"] #dashboard .visual-glass {
  display: none !important;
}

body[data-ui-redesign="20260701e"] #dashboard .command-hero {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701e"] #dashboard .command-visual {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-board {
  position: static !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  color: var(--mz-text) !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-board-head {
  display: none !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-summary-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin: 0 0 22px !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-summary-grid span {
  min-height: 176px !important;
  padding: 30px 32px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,250,246,0.92)),
    radial-gradient(circle at 88% 72%, rgba(222, 154, 123, 0.12), transparent 28%) !important;
  box-shadow: none !important;
  display: grid !important;
  align-content: start !important;
  position: relative !important;
  overflow: hidden !important;
  text-align: left !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-summary-grid span:first-child {
  background:
    linear-gradient(135deg, rgba(250,235,225,0.9), rgba(255,255,255,0.9)),
    radial-gradient(circle at 86% 72%, rgba(199, 117, 83, 0.16), transparent 32%) !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-summary-grid span::before {
  content: "" !important;
  position: absolute !important;
  right: 28px !important;
  bottom: 28px !important;
  width: 92px !important;
  height: 92px !important;
  opacity: 0.54 !important;
  background:
    linear-gradient(135deg, transparent 48%, #d3a18d 49% 52%, transparent 53%),
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(189,128,101,0.24) 14px 22px) !important;
  border-radius: 18px !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-summary-grid span::after {
  content: "" !important;
  position: absolute !important;
  right: 38px !important;
  bottom: 38px !important;
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  border: 8px dotted rgba(201,145,119,0.36) !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-summary-grid small {
  color: #1f1714 !important;
  font-size: 17px !important;
  font-weight: 650 !important;
  line-height: 1.4 !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-summary-grid strong {
  margin: 22px 0 12px !important;
  color: var(--mz-copper) !important;
  font-family: "DIN Alternate", "Bahnschrift", var(--mz-font) !important;
  font-size: clamp(42px, 4vw, 52px) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-summary-grid em {
  color: #8f4e3d !important;
  font-size: 15px !important;
  font-style: normal !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-tool-table {
  padding: 20px 20px 18px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,0.86) !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-tool-table::before {
  content: "功能使用统计" !important;
  display: block !important;
  color: #17110f !important;
  font-size: 21px !important;
  font-weight: 800 !important;
  margin: 0 0 18px !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-tool-row {
  min-height: 58px !important;
  padding: 0 20px !important;
  display: grid !important;
  grid-template-columns: minmax(180px, 1.15fr) minmax(110px, 0.6fr) minmax(132px, 0.7fr) minmax(150px, 0.65fr) 94px !important;
  align-items: center !important;
  gap: 20px !important;
  border-bottom: 1px solid #efe6e0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-tool-row:last-child {
  border-bottom: 0 !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-tool-head {
  min-height: 46px !important;
  color: #6f625b !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  background: #fff !important;
  border: 1px solid #eee4dd !important;
  border-bottom: 1px solid #eee4dd !important;
  border-radius: 6px 6px 0 0 !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-tool-row span {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #1f1714 !important;
  font-size: 15px !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-tool-row span svg {
  width: 32px !important;
  height: 32px !important;
  padding: 7px !important;
  border: 1px solid #ead7ce !important;
  border-radius: 6px !important;
  color: var(--mz-copper) !important;
  background: #fff8f4 !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-tool-row b {
  color: #34302d !important;
  font-size: 15px !important;
  font-weight: 400 !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-tool-row b small {
  display: none !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-tool-row b em {
  color: var(--mz-copper) !important;
  font-style: normal !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-tool-row:not(.production-tool-head)::after {
  content: "进入" !important;
  justify-self: center !important;
  padding: 7px 18px !important;
  border: 1px solid #dfc5b7 !important;
  border-radius: 4px !important;
  color: var(--mz-copper-dark) !important;
  font-size: 14px !important;
  background: #fff !important;
  transform: none !important;
  width: auto !important;
  height: auto !important;
}

body[data-ui-redesign="20260701e"] #dashboard .production-tool-head::after {
  content: "操作" !important;
  display: block !important;
  color: #6f625b !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  background: transparent !important;
}

body[data-ui-redesign="20260701e"] #dashboard .tool-matrix {
  margin-top: 20px !important;
  padding: 20px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,0.88) !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

body[data-ui-redesign="20260701e"] #dashboard .tool-matrix::before {
  content: "功能入口" !important;
  grid-column: 1 / -1 !important;
  color: #17110f !important;
  font-size: 21px !important;
  font-weight: 800 !important;
}

body[data-ui-redesign="20260701e"] #dashboard .tool-card {
  min-height: 166px !important;
  padding: 22px 18px 18px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
  display: grid !important;
  grid-template-columns: 64px minmax(0, 1fr) !important;
  gap: 14px 18px !important;
  align-items: start !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701e"] #dashboard .tool-card img {
  width: 64px !important;
  height: 64px !important;
  grid-row: span 3 !important;
  border-radius: 16px !important;
  object-fit: cover !important;
  opacity: 0.72 !important;
}

body[data-ui-redesign="20260701e"] #dashboard .tool-index {
  display: none !important;
}

body[data-ui-redesign="20260701e"] #dashboard .tool-card h3 {
  margin: 2px 0 0 !important;
  color: #1f1714 !important;
  font-size: 17px !important;
  font-weight: 800 !important;
}

body[data-ui-redesign="20260701e"] #dashboard .tool-card p {
  margin: 0 !important;
  color: #82756e !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

body[data-ui-redesign="20260701e"] #dashboard .tool-card .btn {
  width: 128px !important;
  min-height: 36px !important;
  padding: 0 12px !important;
  border-radius: 5px !important;
  border: 1px solid #ddc5b7 !important;
  background: #fff !important;
  color: var(--mz-copper-dark) !important;
  font-size: 14px !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .app {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
}

body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .topbar-command-center {
  display: none !important;
}

body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .sidebar {
  display: block !important;
  position: fixed !important;
  left: 0 !important;
  top: 64px !important;
  width: 56px !important;
  height: calc(100vh - 64px) !important;
  padding: 0 !important;
  border-right: 0 !important;
  background: transparent !important;
  pointer-events: auto !important;
  opacity: 0.01 !important;
  z-index: 90 !important;
  overflow: visible !important;
}

body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .sidebar .brand,
body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .sidebar .quota-card,
body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .sidebar .sidebar-showcase {
  display: none !important;
}

body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .sidebar .nav {
  display: grid !important;
  gap: 0 !important;
}

body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .sidebar .nav button {
  width: 56px !important;
  height: 56px !important;
  min-height: 56px !important;
  padding: 0 !important;
  color: transparent !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .sidebar .nav button .nav-icon {
  opacity: 0 !important;
}

body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .main {
  height: 100vh !important;
  min-height: 100vh !important;
  overflow: auto !important;
  overflow-x: hidden !important;
}

body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .topbar {
  min-height: 64px !important;
  padding: 14px 30px !important;
  border-bottom: 1px solid #eaded7 !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
}

body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .quota-card {
  display: none !important;
}

body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .mock-reshape-title h1 {
  font-size: 25px !important;
  font-weight: 500 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .page-title::before {
  content: none !important;
}

body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .page-desc {
  display: none !important;
}

body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .content {
  padding: 0 30px 24px !important;
  overflow-x: hidden !important;
}

body[data-ui-redesign="20260701e"] #reshape .section-head {
  display: none !important;
}

body[data-ui-redesign="20260701e"] #reshape .reshape-workspace {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 468px !important;
  gap: 24px !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: start !important;
}

body[data-ui-redesign="20260701e"] #reshape .reshape-builder,
body[data-ui-redesign="20260701e"] #reshape .reshape-side {
  min-height: calc(100vh - 88px) !important;
  min-width: 0 !important;
  padding: 20px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,0.9) !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701e"] #reshape .reshape-builder {
  display: grid !important;
  gap: 18px !important;
}

body[data-ui-redesign="20260701e"] #reshape .reshape-side {
  position: sticky !important;
  top: 0 !important;
  display: grid !important;
  gap: 12px !important;
}

body[data-ui-redesign="20260701e"] #reshape .reshape-step {
  margin: 0 !important;
  padding: 0 0 18px !important;
  border-bottom: 1px solid #eee4dd !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701e"] #reshape .reshape-step:last-child {
  border-bottom: 0 !important;
}

body[data-ui-redesign="20260701e"] #reshape .step-label {
  margin: 0 0 12px !important;
  color: #1e1714 !important;
  font-size: 18px !important;
  font-weight: 650 !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

body[data-ui-redesign="20260701e"] #reshape .step-label::before {
  display: none !important;
}

body[data-ui-redesign="20260701e"] #reshape #reshapeModeSwitch {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701e"] #reshape #reshapeModeSwitch .choice-item {
  min-height: 92px !important;
  padding: 16px 14px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  text-align: center !important;
  color: #2a211d !important;
}

body[data-ui-redesign="20260701e"] #reshape #reshapeModeSwitch .choice-item::before {
  content: "" !important;
  width: 46px !important;
  height: 46px !important;
  flex: 0 0 46px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, #fff 45%, #f3e7df 46%) !important;
  border: 1px solid #eaded7 !important;
}

body[data-ui-redesign="20260701e"] #reshape #reshapeModeSwitch .choice-item.active {
  border-color: var(--mz-copper) !important;
  background: linear-gradient(135deg, #fff7f3, #fff) !important;
  color: var(--mz-copper-dark) !important;
  box-shadow: inset 0 0 0 1px rgba(177,109,85,0.12) !important;
}

body[data-ui-redesign="20260701e"] #reshape #reshapeModeSwitch .choice-item span {
  font-size: 17px !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
}

body[data-ui-redesign="20260701e"] #reshape #reshapeModeSwitch .choice-item small {
  display: none !important;
}

body[data-ui-redesign="20260701e"] #reshape .choice-list.compact-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

body[data-ui-redesign="20260701e"] #reshape .choice-list.compact-list .choice-item,
body[data-ui-redesign="20260701e"] #reshape .select-chip {
  min-height: 48px !important;
  padding: 12px 14px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
  color: #3d322d !important;
  box-shadow: none !important;
  text-align: center !important;
  justify-content: center !important;
}

body[data-ui-redesign="20260701e"] #reshape .choice-item.active,
body[data-ui-redesign="20260701e"] #reshape .select-chip.active {
  border-color: var(--mz-copper) !important;
  color: var(--mz-copper-dark) !important;
  background: #fff7f3 !important;
}

body[data-ui-redesign="20260701e"] #reshape .choice-list.compact-list .choice-item small {
  display: none !important;
}

body[data-ui-redesign="20260701e"] #reshape .option-stack {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

body[data-ui-redesign="20260701e"] #reshape .option-group {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body[data-ui-redesign="20260701e"] #reshape .option-group h4 {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 0 10px !important;
  color: #2b211d !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

body[data-ui-redesign="20260701e"] #reshape .chip-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701e"] #reshape .field textarea {
  min-height: 104px !important;
  border: 1px solid #dfd0c8 !important;
  border-radius: 6px !important;
  background: #fff !important;
  color: #3e342f !important;
  font-size: 15px !important;
}

body[data-ui-redesign="20260701e"] #reshape .upload-box {
  min-height: 158px !important;
  padding: 18px !important;
  border: 1px dashed #dfc8bb !important;
  border-radius: 7px !important;
  background: linear-gradient(135deg, #fff, #fff9f6) !important;
  display: grid !important;
  place-items: center !important;
  text-align: center !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701e"] #reshape .upload-box.hidden,
body[data-ui-redesign="20260701e"] #reshape .result-actions .hidden,
body[data-ui-redesign="20260701e"] #reshape .delivery-relay.hidden,
body[data-ui-redesign="20260701e"] #reshape .reshape-brief-card.hidden {
  display: none !important;
}

body[data-ui-redesign="20260701e"] #reshape .upload-icon {
  width: 54px !important;
  height: 54px !important;
  margin: 0 auto 12px !important;
  border-radius: 50% !important;
  background: #fff4ee !important;
  color: var(--mz-copper) !important;
  display: grid !important;
  place-items: center !important;
  font-size: 22px !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701e"] #reshape .upload-box strong {
  color: #5a4c45 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

body[data-ui-redesign="20260701e"] #reshape .upload-box p {
  margin: 8px 0 0 !important;
  color: #a0938c !important;
  font-size: 12px !important;
}

body[data-ui-redesign="20260701e"] #reshape .selected-summary,
body[data-ui-redesign="20260701e"] #reshape .action-cost-note {
  min-height: 70px !important;
  padding: 14px 18px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
  display: grid !important;
  align-content: center !important;
  color: #3e332f !important;
}

body[data-ui-redesign="20260701e"] #reshape .selected-summary::before {
  content: "已选汇总" !important;
  color: #1f1714 !important;
  font-size: 18px !important;
  font-weight: 650 !important;
  margin-bottom: 10px !important;
}

body[data-ui-redesign="20260701e"] #reshape .selected-summary span {
  display: none !important;
}

body[data-ui-redesign="20260701e"] #reshape .selected-summary strong {
  min-height: 72px !important;
  display: grid !important;
  place-items: center !important;
  color: #a0938c !important;
  font-weight: 400 !important;
  background: #fffaf7 !important;
  border: 1px solid #eee4dd !important;
  border-radius: 6px !important;
}

body[data-ui-redesign="20260701e"] #reshape .action-cost-note {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 8px !important;
  color: var(--mz-copper) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

body[data-ui-redesign="20260701e"] #reshape .action-cost-note::before {
  content: "预计消耗" !important;
  grid-column: 1 / -1 !important;
  color: #1f1714 !important;
  font-size: 16px !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701e"] #reshape .action-cost-note::after {
  content: none !important;
}

body[data-ui-redesign="20260701e"] #reshape .action-cost-note.has-after-quota .after-quota-badge {
  position: static !important;
  transform: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 4px 0 0 !important;
  justify-self: stretch !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 12px !important;
  border-radius: 6px !important;
  background: linear-gradient(135deg, #fff5ed, #f3dccd) !important;
  color: #8d4938 !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701e"] #reshape .action-cost-note.has-after-quota[data-after-quota]::after {
  content: none !important;
}

body[data-ui-redesign="20260701e"] #reshape .next-step-tip {
  display: none !important;
}

body[data-ui-redesign="20260701e"] #reshape .result-actions {
  display: block !important;
}

body[data-ui-redesign="20260701e"] #reshape #reshapeGenerate {
  width: 100% !important;
  height: 54px !important;
  border-radius: 6px !important;
  border: 0 !important;
  background: linear-gradient(135deg, #e8a289, #af654c) !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 650 !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701e"] #reshape #reshapeDownloadResult {
  width: 100% !important;
  margin-top: 10px !important;
}

body[data-ui-redesign="20260701e"] #reshape .result-box {
  position: relative !important;
  min-height: 160px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fffaf7 !important;
  display: grid !important;
  place-items: center !important;
  color: #94877f !important;
}

body[data-ui-redesign="20260701e"] #reshape .result-box::before {
  content: "效果预览" !important;
  position: absolute !important;
  top: 12px !important;
  left: 16px !important;
  color: #1f1714 !important;
  font-size: 18px !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701e"] #reshape .result-face {
  width: 44px !important;
  height: 34px !important;
  border-radius: 6px !important;
  background: #d8c8bd !important;
  opacity: 0.7 !important;
  overflow: hidden !important;
}

body[data-ui-redesign="20260701e"] #reshape .result-face::before,
body[data-ui-redesign="20260701e"] #reshape .result-face::after {
  content: none !important;
}

body[data-ui-redesign="20260701e"] #reshape .reshape-task-queue {
  min-height: 128px !important;
  padding: 14px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
}

body[data-ui-redesign="20260701e"] #reshape .queue-head h3 {
  color: #1f1714 !important;
  font-size: 18px !important;
}

body[data-ui-redesign="20260701e"] #reshape .reshape-queue-body:empty::before {
  content: "暂无任务" !important;
  display: grid !important;
  place-items: center !important;
  min-height: 58px !important;
  color: #a99c95 !important;
}

body[data-ui-redesign="20260701e"] .panel,
body[data-ui-redesign="20260701e"] .interactive-surface,
body[data-ui-redesign="20260701e"] .tool-card,
body[data-ui-redesign="20260701e"] .purchase-dialog,
body[data-ui-redesign="20260701e"] .account-settings-dialog {
  border-color: #eaded7 !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,0.9) !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701e"] .btn,
body[data-ui-redesign="20260701e"] .mini-btn {
  border-radius: 5px !important;
  box-shadow: none !important;
}

@media (max-width: 1180px) {
  body[data-ui-redesign="20260701e"] #authScreen.auth-screen:not(.hidden) {
    grid-template-columns: 1fr !important;
    padding: 36px 18px 74px !important;
    overflow-y: auto !important;
  }

  body[data-ui-redesign="20260701e"] #authScreen .auth-copy {
    display: none !important;
  }

  body[data-ui-redesign="20260701e"] #authScreen .auth-panel {
    grid-column: 1 !important;
    margin-left: 0 !important;
    width: min(920px, calc(100vw - 36px)) !important;
  }

  body[data-ui-redesign="20260701e"] .app {
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701e"] .sidebar {
    position: relative !important;
    height: auto !important;
    padding: 18px !important;
    overflow: visible !important;
  }

  body[data-ui-redesign="20260701e"] .nav {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body[data-ui-redesign="20260701e"] .nav button {
    height: 58px !important;
    min-height: 58px !important;
  }

  body[data-ui-redesign="20260701e"] .quota-card {
    position: static !important;
    margin-top: 0 !important;
    width: min(330px, 38vw) !important;
  }

  body[data-ui-redesign="20260701e"] #dashboard .production-summary-grid,
  body[data-ui-redesign="20260701e"] #dashboard .tool-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-ui-redesign="20260701e"] #reshape .reshape-workspace {
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701e"] #reshape .reshape-side {
    position: static !important;
  }
}

@media (max-width: 720px) {
  body[data-ui-redesign="20260701e"] #authScreen .auth-panel {
    width: calc(100vw - 28px) !important;
    min-height: auto !important;
    padding: 28px 20px !important;
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701e"] #authScreen .auth-panel::before,
  body[data-ui-redesign="20260701e"] #authScreen .auth-register-preview {
    display: none !important;
  }

  body[data-ui-redesign="20260701e"] #authScreen .auth-form-column {
    padding: 0 !important;
  }

  body[data-ui-redesign="20260701e"] .content {
    padding: 18px 14px !important;
  }

  body[data-ui-redesign="20260701e"] .topbar {
    min-height: auto !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    padding: 16px 14px !important;
    gap: 12px !important;
  }

  body[data-ui-redesign="20260701e"] .topbar-command-center {
    grid-column: 1 / -1 !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  body[data-ui-redesign="20260701e"] .quota-card {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-height: 64px !important;
    margin: 0 !important;
  }

  body[data-ui-redesign="20260701e"] .quota-value-wrap {
    gap: 7px !important;
  }

  body[data-ui-redesign="20260701e"] .nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-ui-redesign="20260701e"] .nav button {
    font-size: 15px !important;
    gap: 10px !important;
  }

  body[data-ui-redesign="20260701e"] #dashboard .production-summary-grid,
  body[data-ui-redesign="20260701e"] #dashboard .tool-matrix,
  body[data-ui-redesign="20260701e"] #reshape #reshapeModeSwitch,
  body[data-ui-redesign="20260701e"] #reshape .choice-list.compact-list,
  body[data-ui-redesign="20260701e"] #reshape .option-stack,
  body[data-ui-redesign="20260701e"] #reshape .chip-grid {
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701e"] #dashboard .production-summary-grid span {
    min-height: 150px !important;
  }

  body[data-ui-redesign="20260701e"] #dashboard .production-tool-row,
  body[data-ui-redesign="20260701e"] #dashboard .production-tool-head {
    grid-template-columns: minmax(0, 1fr) 68px 68px !important;
    gap: 8px !important;
    padding: 10px !important;
  }

  body[data-ui-redesign="20260701e"] #dashboard .production-tool-head b:nth-of-type(3),
  body[data-ui-redesign="20260701e"] #dashboard .production-tool-row b:nth-of-type(3),
  body[data-ui-redesign="20260701e"] #dashboard .production-tool-row::after,
  body[data-ui-redesign="20260701e"] #dashboard .production-tool-head::after {
    display: none !important;
  }

  body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .topbar {
    min-height: 58px !important;
    padding: 12px 14px !important;
  }

  body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .mock-reshape-title h1 {
    font-size: 18px !important;
    white-space: normal !important;
  }

  body[data-ui-redesign="20260701e"]:has(#reshape.view.active) .content {
    padding: 0 14px 18px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-ui-redesign="20260701e"] *,
  body[data-ui-redesign="20260701e"] *::before,
  body[data-ui-redesign="20260701e"] *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* MeiZhiLink target mockup fidelity pass - 20260701f */
body[data-ui-redesign="20260701f"] {
  --mz-page-bg: #fffdfb;
  --mz-panel: rgba(255, 255, 255, 0.92);
  --mz-panel-strong: #fff;
  --mz-line: #eaded7;
  --mz-line-strong: #ddc6ba;
  --mz-text: #1f1714;
  --mz-muted: #8b7e76;
  --mz-copper: #b8725a;
  --mz-copper-dark: #8f4c3b;
  --mz-copper-soft: #e7a186;
  --mz-glow: rgba(194, 126, 96, 0.16);
  min-height: 100vh;
  overflow-x: hidden !important;
  background: var(--mz-page-bg);
  color: var(--mz-text);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
  letter-spacing: 0;
}

body[data-ui-redesign="20260701f"] *,
body[data-ui-redesign="20260701f"] *::before,
body[data-ui-redesign="20260701f"] *::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

body[data-ui-redesign="20260701f"] .hidden {
  display: none !important;
}

body[data-ui-redesign="20260701f"] #authScreen.auth-screen:not(.hidden) {
  min-height: 100vh !important;
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(300px, 0.44fr) minmax(780px, 920px) minmax(10px, 0.16fr) !important;
  align-items: center !important;
  gap: clamp(22px, 3.2vw, 58px) !important;
  padding: 44px clamp(36px, 5vw, 80px) 60px !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  background:
    linear-gradient(90deg, rgba(255, 247, 239, 0.16) 0%, rgba(255, 255, 255, 0.12) 47%, rgba(255, 255, 255, 0.34) 100%),
    url("/assets/hero-clinic-suite.png") center / cover no-repeat !important;
}

body[data-ui-redesign="20260701f"] #authScreen::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(255, 249, 244, 0.04), rgba(255, 255, 255, 0.12) 46%, rgba(255, 255, 255, 0.3)),
    radial-gradient(circle at 33% 22%, rgba(255, 255, 255, 0.56), transparent 30%),
    linear-gradient(0deg, rgba(125, 78, 47, 0.08), transparent 28%) !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-copy {
  position: relative !important;
  z-index: 1 !important;
  justify-self: center !important;
  align-self: center !important;
  width: min(340px, 100%) !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #b7896f !important;
  text-align: center !important;
  display: block !important;
  transform: translateY(24px) !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-copy .brand,
body[data-ui-redesign="20260701f"] #authScreen .auth-video,
body[data-ui-redesign="20260701f"] #authScreen .auth-video-shade,
body[data-ui-redesign="20260701f"] #authScreen .hero-tags,
body[data-ui-redesign="20260701f"] #authScreen .auth-hero-text .eyebrow {
  display: none !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-hero-text {
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-copy::before,
body[data-ui-redesign="20260701f"] #authScreen .auth-copy::after {
  content: none !important;
  display: none !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-hero-text::before {
  content: "" !important;
  display: block !important;
  width: 152px !important;
  height: 120px !important;
  margin: 0 auto 18px !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9) 0 14%, transparent 15%),
    conic-gradient(from -18deg, transparent 0 6%, #c59778 7% 13%, transparent 14% 21%, #c59778 22% 28%, transparent 29% 36%, #c59778 37% 43%, transparent 44% 51%, #c59778 52% 58%, transparent 59% 66%, #c59778 67% 73%, transparent 74% 100%) !important;
  filter: drop-shadow(0 10px 16px rgba(113, 75, 54, 0.18)) !important;
  opacity: 0.82 !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-hero-text h1 {
  margin: 0 !important;
  font-size: 0 !important;
  line-height: 1 !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-hero-text h1::before {
  content: "MeiZhiLink" !important;
  display: block !important;
  color: #b98c72 !important;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif !important;
  font-size: clamp(40px, 3.4vw, 52px) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.54), 0 10px 24px rgba(112, 71, 45, 0.12) !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-hero-text h1::after {
  content: "美 智 绘 联" !important;
  display: block !important;
  margin-top: 12px !important;
  color: #be8c70 !important;
  font-size: clamp(22px, 1.8vw, 29px) !important;
  font-weight: 400 !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-hero-text p {
  width: min(315px, 100%) !important;
  margin: 22px auto 0 !important;
  color: #b57f5f !important;
  font-size: clamp(16px, 1.15vw, 20px) !important;
  line-height: 1.64 !important;
  font-weight: 500 !important;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.52) !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-panel {
  position: relative !important;
  z-index: 2 !important;
  grid-column: 2 !important;
  width: min(920px, 100%) !important;
  max-width: 920px !important;
  min-height: 590px !important;
  margin: 0 !important;
  padding: 44px 44px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.92) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.91) !important;
  box-shadow: 0 28px 72px rgba(88, 60, 42, 0.17) !important;
  backdrop-filter: blur(20px) saturate(1.08) !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-panel::before {
  content: "" !important;
  position: absolute !important;
  top: 50px !important;
  bottom: 50px !important;
  left: 50% !important;
  width: 1px !important;
  transform: translateX(-0.5px) !important;
  background: linear-gradient(transparent, rgba(214, 190, 176, 0.9), transparent) !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-form-column,
body[data-ui-redesign="20260701f"] #authScreen .auth-register-preview {
  position: relative !important;
  z-index: 1 !important;
  padding: 0 20px !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-form-column,
body[data-ui-redesign="20260701f"] #authScreen .auth-register-preview {
  display: grid !important;
  align-content: start !important;
  gap: 16px !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-panel h2 {
  margin: 0 0 24px !important;
  color: var(--mz-text) !important;
  font-size: 28px !important;
  line-height: 1.12 !important;
  font-weight: 700 !important;
  text-align: center !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-form-column h2 {
  color: var(--mz-copper-dark) !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-panel h2::after {
  content: "" !important;
  display: block !important;
  width: 38px !important;
  height: 3px !important;
  margin: 14px auto 0 !important;
  border-radius: 99px !important;
  background: linear-gradient(90deg, #cf8d70, #a85c45) !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-panel .hint#authHint,
body[data-ui-redesign="20260701f"] #authScreen .auth-onboarding-rail,
body[data-ui-redesign="20260701f"] #authScreen .auth-work-profile,
body[data-ui-redesign="20260701f"] #authScreen .auth-clinic-preference,
body[data-ui-redesign="20260701f"] #authScreen .auth-start-plan,
body[data-ui-redesign="20260701f"] #authScreen .auth-first-delivery,
body[data-ui-redesign="20260701f"] #authScreen .auth-dependency-loop,
body[data-ui-redesign="20260701f"] #authScreen .auth-resume-card,
body[data-ui-redesign="20260701f"] #authScreen .auth-return-hint,
body[data-ui-redesign="20260701f"] #authScreen .auth-readiness-card,
body[data-ui-redesign="20260701f"] #authScreen .auth-access-brief,
body[data-ui-redesign="20260701f"] #authScreen .auth-identity-cue,
body[data-ui-redesign="20260701f"] #authScreen .auth-login-help,
body[data-ui-redesign="20260701f"] #authScreen .auth-security-check,
body[data-ui-redesign="20260701f"] #authScreen .auth-code-help {
  display: none !important;
}

body[data-ui-redesign="20260701f"] #authScreen .field {
  margin: 0 !important;
}

body[data-ui-redesign="20260701f"] #authScreen .field label {
  display: none !important;
}

body[data-ui-redesign="20260701f"] #authScreen input,
body[data-ui-redesign="20260701f"] #authScreen select,
body[data-ui-redesign="20260701f"] #authScreen textarea {
  width: 100% !important;
  height: 58px !important;
  border: 1px solid #ded2ca !important;
  border-radius: 7px !important;
  background: rgba(255, 255, 255, 0.84) !important;
  color: #3c312c !important;
  font-size: 15px !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701f"] #authScreen input::placeholder {
  color: #a79b94 !important;
}

body[data-ui-redesign="20260701f"] #authScreen .password-field-control {
  position: relative !important;
  display: block !important;
}

body[data-ui-redesign="20260701f"] #authScreen .password-field-control input {
  padding-right: 54px !important;
}

body[data-ui-redesign="20260701f"] #authScreen .password-toggle {
  position: absolute !important;
  top: 50% !important;
  right: 10px !important;
  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  transform: translateY(-50%) !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: #8d8179 !important;
}

body[data-ui-redesign="20260701f"] #authScreen .password-toggle::before,
body[data-ui-redesign="20260701f"] #authScreen .password-toggle::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  display: block !important;
}

body[data-ui-redesign="20260701f"] #authScreen .password-toggle::before {
  width: 18px !important;
  height: 12px !important;
  border: 1.8px solid currentColor !important;
  border-radius: 55% 55% 50% 50% / 62% 62% 45% 45% !important;
  transform: translate(-50%, -50%) rotate(-2deg) !important;
  background: transparent !important;
}

body[data-ui-redesign="20260701f"] #authScreen .password-toggle::after {
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: currentColor !important;
  transform: translate(-50%, -50%) !important;
}

body[data-ui-redesign="20260701f"] #authScreen .password-toggle svg,
body[data-ui-redesign="20260701f"] #authScreen .password-toggle i {
  display: none !important;
}

body[data-ui-redesign="20260701f"] #authScreen .password-assist-row {
  justify-content: end !important;
  margin-top: -4px !important;
}

body[data-ui-redesign="20260701f"] #authScreen .password-forgot-link,
body[data-ui-redesign="20260701f"] #authScreen .switch-line .link-btn,
body[data-ui-redesign="20260701f"] #authScreen .preview-login-line button {
  color: var(--mz-copper-dark) !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701f"] #authScreen #authSubmit,
body[data-ui-redesign="20260701f"] #authScreen .preview-register-button {
  height: 58px !important;
  margin-top: 4px !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: linear-gradient(135deg, #e6a081, #b7654c) !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  box-shadow: 0 12px 24px rgba(169, 91, 62, 0.16) !important;
}

body[data-ui-redesign="20260701f"] #authScreen .switch-line,
body[data-ui-redesign="20260701f"] #authScreen .preview-login-line {
  margin: 0 !important;
  color: #8d8078 !important;
  text-align: center !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-code-row,
body[data-ui-redesign="20260701f"] #authScreen .preview-auth-code-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 118px !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701f"] #authScreen #sendSmsCode,
body[data-ui-redesign="20260701f"] #authScreen .preview-auth-code-row button {
  height: 58px !important;
  border: 1px solid #d8ad9b !important;
  border-radius: 7px !important;
  background: #fff !important;
  color: var(--mz-copper-dark) !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-agreement:not(.hidden),
body[data-ui-redesign="20260701f"] #authScreen .preview-agreement {
  display: flex !important;
  align-items: flex-start !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  color: #6d625c !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-agreement input,
body[data-ui-redesign="20260701f"] #authScreen .preview-agreement span {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
  border: 1px solid #d9cec7 !important;
  border-radius: 3px !important;
}

body[data-ui-redesign="20260701f"] #authScreen .preview-field {
  min-height: 56px !important;
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr) auto !important;
  gap: 14px !important;
  align-items: center !important;
  padding: 0 14px !important;
  border: 1px solid #ded2ca !important;
  border-radius: 7px !important;
  background: rgba(255, 255, 255, 0.76) !important;
  color: #a79b94 !important;
  font-size: 15px !important;
}

body[data-ui-redesign="20260701f"] #authScreen .preview-field svg {
  width: 19px !important;
  height: 19px !important;
  color: #8d8179 !important;
}

body[data-ui-redesign="20260701f"] #authScreen .preview-login-line button {
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-site-footer {
  position: fixed !important;
  left: 50% !important;
  bottom: 18px !important;
  z-index: 2 !important;
  transform: translateX(-50%) !important;
  width: min(760px, calc(100vw - 40px)) !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(255, 255, 255, 0.92) !important;
  text-align: center !important;
  text-shadow: 0 1px 12px rgba(87, 62, 45, 0.25) !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-site-footer-inner {
  display: grid !important;
  gap: 2px !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-site-footer-brand,
body[data-ui-redesign="20260701f"] #authScreen .auth-site-footer-records {
  display: none !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-site-footer-copy {
  margin: 0 !important;
  color: inherit !important;
  font-size: 12px !important;
}

body[data-ui-redesign="20260701f"] .app {
  grid-template-columns: 262px minmax(0, 1fr) !important;
  min-height: 100vh !important;
  background: var(--mz-page-bg) !important;
}

body[data-ui-redesign="20260701f"] .global-work-pulse,
body[data-ui-redesign="20260701f"] .sidebar-showcase {
  display: none !important;
}

body[data-ui-redesign="20260701f"] .sidebar {
  position: sticky !important;
  top: 0 !important;
  height: 100vh !important;
  padding: 30px 10px 28px !important;
  overflow: hidden auto !important;
  border-right: 1px solid #eee0d7 !important;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.98), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 0 0, rgba(222, 163, 132, 0.14), transparent 24%) !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701f"] .sidebar .brand {
  margin: 0 18px 34px !important;
  align-items: center !important;
  gap: 12px !important;
}

body[data-ui-redesign="20260701f"] .brand-mark {
  width: 42px !important;
  height: 42px !important;
  border-radius: 0 !important;
  background: linear-gradient(140deg, #d9a183, #9e5d48) !important;
  color: transparent !important;
  clip-path: polygon(0 0, 36% 0, 36% 68%, 72% 18%, 100% 18%, 63% 100%, 35% 100%, 35% 32%, 0 82%) !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701f"] .brand-title {
  color: #1f1714 !important;
  font-size: 17px !important;
  font-weight: 800 !important;
}

body[data-ui-redesign="20260701f"] .brand-subtitle {
  margin-top: 4px !important;
  color: #8d8179 !important;
  font-size: 12px !important;
}

body[data-ui-redesign="20260701f"] .nav {
  display: grid !important;
  gap: 14px !important;
}

body[data-ui-redesign="20260701f"] .nav button {
  min-height: 82px !important;
  padding: 0 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #2f2824 !important;
  font-size: 17px !important;
  font-weight: 500 !important;
}

body[data-ui-redesign="20260701f"] .nav button.active {
  border-color: #ead8cf !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(252, 239, 230, 0.8)) !important;
  color: var(--mz-copper-dark) !important;
  box-shadow: 0 16px 38px rgba(130, 82, 58, 0.09) !important;
}

body[data-ui-redesign="20260701f"] .nav-icon svg {
  width: 22px !important;
  height: 22px !important;
  stroke-width: 1.7 !important;
}

body[data-ui-redesign="20260701f"] .main {
  min-width: 0 !important;
  min-height: 100vh !important;
  height: 100vh !important;
  overflow: auto !important;
  overflow-x: hidden !important;
  background: #fffdfb !important;
}

body[data-ui-redesign="20260701f"] .topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 40 !important;
  min-width: 0 !important;
  min-height: 94px !important;
  padding: 24px 28px 18px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto auto auto !important;
  gap: 24px !important;
  align-items: center !important;
  border-bottom: 1px solid #eee0d7 !important;
  background: rgba(255, 253, 251, 0.97) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701f"] .topbar > div:first-child #pageTitle,
body[data-ui-redesign="20260701f"] .topbar > div:first-child #pageDesc {
  display: none !important;
}

body[data-ui-redesign="20260701f"] .mock-top-title {
  display: none !important;
  min-width: 0 !important;
}

body[data-ui-redesign="20260701f"]:has(#dashboard.view.active) .mock-dashboard-title,
body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .mock-reshape-title {
  display: flex !important;
  align-items: baseline !important;
  gap: 22px !important;
}

body[data-ui-redesign="20260701f"] .mock-top-title h1 {
  margin: 0 !important;
  color: #17110f !important;
  font-size: 25px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

body[data-ui-redesign="20260701f"] .mock-top-title p {
  margin: 0 !important;
  color: #9a8c84 !important;
  font-size: 14px !important;
}

body[data-ui-redesign="20260701f"] .page-title {
  margin: 0 !important;
  color: #17110f !important;
  font-size: 24px !important;
  font-weight: 800 !important;
}

body[data-ui-redesign="20260701f"] .page-desc,
body[data-ui-redesign="20260701f"] .topbar-command-center {
  display: none !important;
}

body[data-ui-redesign="20260701f"] .quota-card {
  position: relative !important;
  width: clamp(286px, 24vw, 330px) !important;
  min-height: 48px !important;
  padding: 0 10px 0 16px !important;
  display: grid !important;
  align-items: center !important;
  border: 1px solid #ead8cf !important;
  border-radius: 7px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701f"] .quota-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto auto !important;
  align-items: center !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701f"] .quota-value-wrap {
  min-width: 0 !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 8px !important;
  white-space: nowrap !important;
}

body[data-ui-redesign="20260701f"] .quota-label {
  color: #776c65 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

body[data-ui-redesign="20260701f"] .quota-number {
  max-width: 132px !important;
  overflow: hidden !important;
  color: var(--mz-copper) !important;
  font-family: "DIN Alternate", "Bahnschrift", var(--mz-redesign-font), sans-serif !important;
  font-size: 23px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-overflow: ellipsis !important;
}

body[data-ui-redesign="20260701f"] .quota-unit {
  color: #776c65 !important;
  font-size: 12px !important;
}

body[data-ui-redesign="20260701f"] .quota-card .pill,
body[data-ui-redesign="20260701f"] #quotaHint,
body[data-ui-redesign="20260701f"] .quota-card .progress {
  display: none !important;
}

body[data-ui-redesign="20260701f"] .quota-recharge {
  width: 54px !important;
  height: 30px !important;
  min-height: 30px !important;
  padding: 0 !important;
  display: inline-grid !important;
  place-items: center !important;
  border: 1px solid #d9ab96 !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: var(--mz-copper-dark) !important;
  font-size: 13px !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701f"] .mock-top-utility {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  color: #55443b !important;
  font-size: 14px !important;
}

body[data-ui-redesign="20260701f"] .mock-utility-icon {
  width: 24px !important;
  height: 24px !important;
  display: grid !important;
  place-items: center !important;
  color: #4f4540 !important;
}

body[data-ui-redesign="20260701f"] .mock-utility-icon svg {
  width: 20px !important;
  height: 20px !important;
}

body[data-ui-redesign="20260701f"] .mock-user-avatar {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 50% 34%, #c4a391 0 18%, transparent 19%),
    radial-gradient(circle at 50% 82%, #d2b09e 0 34%, transparent 35%),
    #f1e3da !important;
}

body[data-ui-redesign="20260701f"] .topbar-settings-button {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: 1px solid #ead8cf !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.88) !important;
  color: #715f56 !important;
}

body[data-ui-redesign="20260701f"] .topbar-settings-button::before,
body[data-ui-redesign="20260701f"] .topbar-settings-button::after,
body[data-ui-redesign="20260701f"] .quota-recharge::before,
body[data-ui-redesign="20260701f"] .quota-row > div::before,
body[data-ui-redesign="20260701f"] .quota-row > div::after {
  content: none !important;
}

body[data-ui-redesign="20260701f"] .content {
  max-width: none !important;
  padding: 34px 28px 28px !important;
}

body[data-ui-redesign="20260701f"] #dashboard .command-copy,
body[data-ui-redesign="20260701f"] #dashboard .command-visual > img,
body[data-ui-redesign="20260701f"] #dashboard .visual-glass {
  display: none !important;
}

body[data-ui-redesign="20260701f"] #dashboard .command-hero,
body[data-ui-redesign="20260701f"] #dashboard .command-visual,
body[data-ui-redesign="20260701f"] #dashboard .production-board {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-board-head {
  display: none !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-summary-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin: 0 0 22px !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-summary-grid span {
  min-height: 176px !important;
  position: relative !important;
  display: grid !important;
  align-content: start !important;
  overflow: hidden !important;
  padding: 30px 32px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 246, 0.92)),
    radial-gradient(circle at 88% 72%, rgba(222, 154, 123, 0.12), transparent 28%) !important;
  box-shadow: none !important;
  text-align: left !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-summary-grid span:first-child {
  background:
    linear-gradient(135deg, rgba(250, 235, 225, 0.9), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 86% 72%, rgba(199, 117, 83, 0.16), transparent 32%) !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-summary-grid span::before {
  content: "" !important;
  position: absolute !important;
  right: 28px !important;
  bottom: 28px !important;
  width: 92px !important;
  height: 92px !important;
  opacity: 0.48 !important;
  border-radius: 18px !important;
  background:
    linear-gradient(135deg, transparent 48%, #d3a18d 49% 52%, transparent 53%),
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(189, 128, 101, 0.24) 14px 22px) !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-summary-grid span::after {
  content: "" !important;
  position: absolute !important;
  right: 38px !important;
  bottom: 38px !important;
  width: 70px !important;
  height: 70px !important;
  border: 8px dotted rgba(201, 145, 119, 0.36) !important;
  border-radius: 50% !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-summary-grid small {
  color: #1f1714 !important;
  font-size: 17px !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-summary-grid strong {
  margin: 22px 0 12px !important;
  color: var(--mz-copper) !important;
  font-family: "DIN Alternate", "Bahnschrift", sans-serif !important;
  font-size: clamp(42px, 4vw, 52px) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-summary-grid em {
  color: #8f4e3d !important;
  font-size: 15px !important;
  font-style: normal !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-tool-table,
body[data-ui-redesign="20260701f"] #dashboard .tool-matrix {
  padding: 20px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-tool-table::before,
body[data-ui-redesign="20260701f"] #dashboard .tool-matrix::before {
  display: block !important;
  color: #17110f !important;
  font-size: 21px !important;
  font-weight: 800 !important;
  margin: 0 0 18px !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-tool-table::before {
  content: "功能使用统计" !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-tool-row {
  min-height: 58px !important;
  display: grid !important;
  grid-template-columns: minmax(180px, 1.15fr) minmax(110px, 0.6fr) minmax(132px, 0.7fr) minmax(150px, 0.65fr) 94px !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 0 20px !important;
  border-bottom: 1px solid #efe6e0 !important;
  background: transparent !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-tool-row:last-child {
  border-bottom: 0 !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-tool-head {
  min-height: 46px !important;
  border: 1px solid #eee4dd !important;
  border-radius: 6px 6px 0 0 !important;
  background: #fff !important;
  color: #6f625b !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-tool-row span {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #1f1714 !important;
  font-size: 15px !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-tool-row span svg {
  width: 32px !important;
  height: 32px !important;
  padding: 7px !important;
  border: 1px solid #ead7ce !important;
  border-radius: 6px !important;
  background: #fff8f4 !important;
  color: var(--mz-copper) !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-tool-row b {
  color: #34302d !important;
  font-size: 15px !important;
  font-weight: 400 !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-tool-row b small {
  display: none !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-tool-row b em {
  color: var(--mz-copper) !important;
  font-style: normal !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-tool-row:not(.production-tool-head)::after {
  content: "进入" !important;
  justify-self: center !important;
  width: auto !important;
  height: auto !important;
  padding: 7px 18px !important;
  border: 1px solid #dfc5b7 !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: var(--mz-copper-dark) !important;
  font-size: 14px !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-tool-head::after {
  content: "操作" !important;
  background: transparent !important;
  color: #6f625b !important;
}

body[data-ui-redesign="20260701f"] #dashboard .tool-matrix {
  margin-top: 20px !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

body[data-ui-redesign="20260701f"] #dashboard .tool-matrix::before {
  content: "功能入口" !important;
  grid-column: 1 / -1 !important;
  margin-bottom: 0 !important;
}

body[data-ui-redesign="20260701f"] #dashboard .tool-card {
  min-height: 166px !important;
  padding: 22px 18px 18px !important;
  display: grid !important;
  grid-template-columns: 64px minmax(0, 1fr) !important;
  gap: 14px 18px !important;
  align-items: start !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701f"] #dashboard .tool-card img {
  width: 64px !important;
  height: 64px !important;
  grid-row: span 3 !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  opacity: 0.72 !important;
}

body[data-ui-redesign="20260701f"] #dashboard .tool-index {
  display: none !important;
}

body[data-ui-redesign="20260701f"] #dashboard .tool-card h3 {
  margin: 2px 0 0 !important;
  color: #1f1714 !important;
  font-size: 17px !important;
  font-weight: 800 !important;
}

body[data-ui-redesign="20260701f"] #dashboard .tool-card p {
  margin: 0 !important;
  color: #82756e !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

body[data-ui-redesign="20260701f"] #dashboard .tool-card .btn {
  width: 128px !important;
  min-height: 36px !important;
  padding: 0 12px !important;
  border: 1px solid #ddc5b7 !important;
  border-radius: 5px !important;
  background: #fff !important;
  color: var(--mz-copper-dark) !important;
  font-size: 14px !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .app {
  grid-template-columns: minmax(0, 1fr) !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar {
  display: block !important;
  position: fixed !important;
  left: auto !important;
  right: 92px !important;
  top: 13px !important;
  z-index: 70 !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  isolation: auto !important;
  pointer-events: none !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar::before,
body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar::after,
body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav::before,
body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav::after {
  content: none !important;
  display: none !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .brand,
body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .quota-card,
body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .sidebar-showcase {
  display: none !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav {
  display: flex !important;
  gap: 6px !important;
  align-items: center !important;
  width: auto !important;
  height: 40px !important;
  padding: 0 !important;
  overflow: visible !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  isolation: auto !important;
  pointer-events: auto !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav button {
  width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  padding: 0 !important;
  border: 1px solid #ead8cf !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.82) !important;
  color: transparent !important;
  display: grid !important;
  place-items: center !important;
  box-shadow: none !important;
  gap: 0 !important;
  overflow: visible !important;
  isolation: auto !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav button::before,
body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav button::after {
  content: none !important;
  display: none !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav button.active {
  background: #fff4ee !important;
  border-color: #d8ad9b !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav button .nav-icon {
  width: 18px !important;
  height: 18px !important;
  color: #8f4c3b !important;
  display: grid !important;
  place-items: center !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav button .nav-icon svg {
  width: 18px !important;
  height: 18px !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .main {
  height: 100vh !important;
  min-height: 100vh !important;
  overflow: auto !important;
  overflow-x: hidden !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .topbar {
  min-height: 64px !important;
  padding: 14px 30px !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  border-bottom: 1px solid #eaded7 !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .quota-card,
body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .mock-top-utility {
  display: none !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .mock-reshape-title h1 {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  color: #2b211d !important;
  font-size: 25px !important;
  font-weight: 500 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .content {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  padding: 0 30px 24px !important;
  overflow-x: hidden !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) #reshape {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow-x: clip !important;
}

body[data-ui-redesign="20260701f"] #reshape .section-head {
  display: none !important;
}

body[data-ui-redesign="20260701f"] #reshape .reshape-workspace {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 468px !important;
  gap: 24px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: start !important;
}

body[data-ui-redesign="20260701f"] #reshape .reshape-builder,
body[data-ui-redesign="20260701f"] #reshape .reshape-side {
  min-width: 0 !important;
  min-height: calc(100vh - 88px) !important;
  padding: 20px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701f"] #reshape .reshape-builder {
  display: grid !important;
  gap: 18px !important;
}

body[data-ui-redesign="20260701f"] #reshape .reshape-side {
  position: sticky !important;
  top: 0 !important;
  display: grid !important;
  gap: 12px !important;
}

body[data-ui-redesign="20260701f"] #reshape .reshape-step {
  margin: 0 !important;
  padding: 0 0 18px !important;
  border-bottom: 1px solid #eee4dd !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701f"] #reshape .reshape-step:last-child {
  border-bottom: 0 !important;
}

body[data-ui-redesign="20260701f"] #reshape .step-label {
  margin: 0 0 12px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #1e1714 !important;
  font-size: 18px !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701f"] #reshape .step-label::before {
  display: none !important;
}

body[data-ui-redesign="20260701f"] #reshape #reshapeModeSwitch {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701f"] #reshape #reshapeModeSwitch .choice-item {
  min-height: 92px !important;
  padding: 16px 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
  box-shadow: none !important;
  color: #2a211d !important;
  text-align: center !important;
}

body[data-ui-redesign="20260701f"] #reshape #reshapeModeSwitch .choice-item::before {
  content: "" !important;
  width: 46px !important;
  height: 46px !important;
  flex: 0 0 46px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, #fff 45%, #f3e7df 46%) !important;
}

body[data-ui-redesign="20260701f"] #reshape #reshapeModeSwitch .choice-item.active,
body[data-ui-redesign="20260701f"] #reshape .choice-item.active,
body[data-ui-redesign="20260701f"] #reshape .select-chip.active {
  border-color: var(--mz-copper) !important;
  background: linear-gradient(135deg, #fff7f3, #fff) !important;
  color: var(--mz-copper-dark) !important;
  box-shadow: inset 0 0 0 1px rgba(177, 109, 85, 0.12) !important;
}

body[data-ui-redesign="20260701f"] #reshape #reshapeModeSwitch .choice-item span {
  font-size: 17px !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701f"] #reshape #reshapeModeSwitch .choice-item small,
body[data-ui-redesign="20260701f"] #reshape .choice-list.compact-list .choice-item small {
  display: none !important;
}

body[data-ui-redesign="20260701f"] #reshape .choice-list.compact-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

body[data-ui-redesign="20260701f"] #reshape .choice-list.compact-list .choice-item,
body[data-ui-redesign="20260701f"] #reshape .select-chip {
  min-height: 48px !important;
  padding: 12px 14px !important;
  justify-content: center !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
  box-shadow: none !important;
  color: #3d322d !important;
  text-align: center !important;
}

body[data-ui-redesign="20260701f"] #reshape .option-stack {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

body[data-ui-redesign="20260701f"] #reshape .option-group {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body[data-ui-redesign="20260701f"] #reshape .option-group h4 {
  margin: 0 0 10px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #2b211d !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

body[data-ui-redesign="20260701f"] #reshape .chip-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body[data-ui-redesign="20260701f"] #reshape .field textarea {
  min-height: 104px !important;
  border: 1px solid #dfd0c8 !important;
  border-radius: 6px !important;
  background: #fff !important;
  color: #3e342f !important;
  font-size: 15px !important;
}

body[data-ui-redesign="20260701f"] #reshape .upload-box {
  min-height: 158px !important;
  padding: 18px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px dashed #dfc8bb !important;
  border-radius: 7px !important;
  background: linear-gradient(135deg, #fff, #fff9f6) !important;
  box-shadow: none !important;
  text-align: center !important;
}

body[data-ui-redesign="20260701f"] #reshape .upload-box.hidden,
body[data-ui-redesign="20260701f"] #reshape .result-actions .hidden,
body[data-ui-redesign="20260701f"] #reshape .delivery-relay.hidden,
body[data-ui-redesign="20260701f"] #reshape .reshape-brief-card.hidden {
  display: none !important;
}

body[data-ui-redesign="20260701f"] #reshape .upload-icon {
  width: 54px !important;
  height: 54px !important;
  margin: 0 auto 12px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: #fff4ee !important;
  color: var(--mz-copper) !important;
  font-size: 22px !important;
}

body[data-ui-redesign="20260701f"] #reshape .upload-box strong {
  color: #5a4c45 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

body[data-ui-redesign="20260701f"] #reshape .upload-box p {
  margin: 8px 0 0 !important;
  color: #a0938c !important;
  font-size: 12px !important;
}

body[data-ui-redesign="20260701f"] #reshape .selected-summary,
body[data-ui-redesign="20260701f"] #reshape .action-cost-note {
  min-height: 70px !important;
  padding: 14px 18px !important;
  display: grid !important;
  align-content: center !important;
  overflow: visible !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
  color: #3e332f !important;
}

body[data-ui-redesign="20260701f"] #reshape .selected-summary::before {
  content: "已选汇总" !important;
  margin-bottom: 10px !important;
  color: #1f1714 !important;
  font-size: 18px !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701f"] #reshape .selected-summary span {
  display: none !important;
}

body[data-ui-redesign="20260701f"] #reshape .selected-summary strong {
  min-height: 72px !important;
  display: grid !important;
  place-items: center !important;
  padding: 10px !important;
  border: 1px solid #eee4dd !important;
  border-radius: 6px !important;
  background: #fffaf7 !important;
  color: #a0938c !important;
  font-weight: 400 !important;
  text-align: center !important;
}

body[data-ui-redesign="20260701f"] #reshape .action-cost-note {
  gap: 8px !important;
  grid-template-columns: minmax(0, 1fr) !important;
  justify-items: stretch !important;
  color: var(--mz-copper) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: left !important;
  white-space: normal !important;
}

body[data-ui-redesign="20260701f"] #reshape #reshapeActionCost.has-after-quota {
  min-height: 126px !important;
  padding: 16px 18px !important;
  display: grid !important;
  align-content: start !important;
  justify-items: stretch !important;
  gap: 10px !important;
  text-align: left !important;
  overflow: hidden !important;
}

body[data-ui-redesign="20260701f"] #reshape .action-cost-note::before {
  content: "预计消耗（魔力值）" !important;
  grid-column: 1 / -1 !important;
  color: #1f1714 !important;
  font-size: 16px !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701f"] #reshape .action-cost-note::after,
body[data-ui-redesign="20260701f"] #reshape .action-cost-note.has-after-quota[data-after-quota]::after {
  content: none !important;
}

body[data-ui-redesign="20260701f"] #reshape .action-cost-note.has-after-quota .after-quota-badge {
  position: static !important;
  transform: none !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 36px !important;
  max-width: none !important;
  margin: 4px 0 0 !important;
  justify-self: stretch !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 12px !important;
  border-radius: 6px !important;
  background: linear-gradient(135deg, #fff5ed, #f3dccd) !important;
  box-shadow: none !important;
  color: #8d4938 !important;
  white-space: normal !important;
  animation: none !important;
}

body[data-ui-redesign="20260701f"] #reshape #reshapeActionCost.has-after-quota .after-quota-label {
  color: #6e5f58 !important;
  font-size: 12px !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701f"] #reshape #reshapeActionCost.has-after-quota .after-quota-value {
  color: #b8725a !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  text-shadow: none !important;
}

body[data-ui-redesign="20260701f"] #reshape .next-step-tip {
  display: none !important;
}

body[data-ui-redesign="20260701f"] #reshape .result-actions {
  display: block !important;
}

body[data-ui-redesign="20260701f"] #reshape #reshapeGenerate {
  width: 100% !important;
  height: 54px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: linear-gradient(135deg, #e8a289, #af654c) !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 650 !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701f"] #reshape #reshapeDownloadResult {
  width: 100% !important;
  margin-top: 10px !important;
}

body[data-ui-redesign="20260701f"] #reshape .result-box {
  position: relative !important;
  min-height: 160px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fffaf7 !important;
  color: #94877f !important;
}

body[data-ui-redesign="20260701f"] #reshape .result-box::before {
  content: "效果预览" !important;
  position: absolute !important;
  top: 12px !important;
  left: 16px !important;
  color: #1f1714 !important;
  font-size: 18px !important;
  font-weight: 650 !important;
}

body[data-ui-redesign="20260701f"] #reshape .result-face {
  width: 44px !important;
  height: 34px !important;
  overflow: hidden !important;
  border-radius: 6px !important;
  background: #d8c8bd !important;
  opacity: 0.7 !important;
}

body[data-ui-redesign="20260701f"] #reshape .result-face::before,
body[data-ui-redesign="20260701f"] #reshape .result-face::after {
  content: none !important;
}

body[data-ui-redesign="20260701f"] #reshape .reshape-task-queue {
  min-height: 128px !important;
  padding: 14px !important;
  border: 1px solid #eaded7 !important;
  border-radius: 7px !important;
  background: #fff !important;
}

body[data-ui-redesign="20260701f"] #reshape .queue-head h3 {
  color: #1f1714 !important;
  font-size: 18px !important;
}

body[data-ui-redesign="20260701f"] #reshape .reshape-queue-body:empty::before {
  content: "暂无任务" !important;
  min-height: 58px !important;
  display: grid !important;
  place-items: center !important;
  color: #a99c95 !important;
}

body[data-ui-redesign="20260701f"] .panel,
body[data-ui-redesign="20260701f"] .interactive-surface,
body[data-ui-redesign="20260701f"] .tool-card,
body[data-ui-redesign="20260701f"] .purchase-dialog,
body[data-ui-redesign="20260701f"] .account-settings-dialog {
  border-color: #eaded7 !important;
  border-radius: 7px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: none !important;
}

body[data-ui-redesign="20260701f"] .btn,
body[data-ui-redesign="20260701f"] .mini-btn {
  border-radius: 5px !important;
  box-shadow: none !important;
}

@media (max-width: 1180px) {
  body[data-ui-redesign="20260701f"] #authScreen.auth-screen:not(.hidden) {
    grid-template-columns: 1fr !important;
    padding: 36px 18px 74px !important;
  }

  body[data-ui-redesign="20260701f"] #authScreen .auth-copy {
    display: none !important;
  }

  body[data-ui-redesign="20260701f"] #authScreen .auth-panel {
    grid-column: 1 !important;
    width: min(920px, calc(100vw - 36px)) !important;
  }

  body[data-ui-redesign="20260701f"] .app {
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701f"] .sidebar {
    position: relative !important;
    height: auto !important;
    padding: 18px !important;
    overflow: visible !important;
  }

  body[data-ui-redesign="20260701f"] .nav {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body[data-ui-redesign="20260701f"] .nav button {
    min-height: 58px !important;
  }

  body[data-ui-redesign="20260701f"] #dashboard .production-summary-grid,
  body[data-ui-redesign="20260701f"] #dashboard .tool-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-ui-redesign="20260701f"] #reshape .reshape-workspace {
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701f"] #reshape .reshape-side {
    position: static !important;
  }
}

@media (max-width: 720px) {
  body[data-ui-redesign="20260701f"] #authScreen .auth-panel {
    width: calc(100vw - 28px) !important;
    min-height: auto !important;
    padding: 28px 20px !important;
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701f"] #authScreen .auth-panel::before,
  body[data-ui-redesign="20260701f"] #authScreen .auth-register-preview {
    display: none !important;
  }

  body[data-ui-redesign="20260701f"] #authScreen .auth-form-column {
    padding: 0 !important;
  }

  body[data-ui-redesign="20260701f"] .content {
    padding: 18px 14px !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-x: clip !important;
  }

  body[data-ui-redesign="20260701f"] .topbar {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 12px !important;
    min-height: auto !important;
    padding: 16px 14px !important;
  }

  body[data-ui-redesign="20260701f"] .quota-card {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-height: 60px !important;
  }

  body[data-ui-redesign="20260701f"] .mock-top-utility {
    display: none !important;
  }

  body[data-ui-redesign="20260701f"] .nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-ui-redesign="20260701f"] .nav button {
    gap: 10px !important;
    font-size: 15px !important;
  }

  body[data-ui-redesign="20260701f"] #dashboard .production-summary-grid,
  body[data-ui-redesign="20260701f"] #dashboard .tool-matrix,
  body[data-ui-redesign="20260701f"] #reshape #reshapeModeSwitch,
  body[data-ui-redesign="20260701f"] #reshape .choice-list.compact-list,
  body[data-ui-redesign="20260701f"] #reshape .option-stack,
  body[data-ui-redesign="20260701f"] #reshape .chip-grid {
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701f"] #dashboard,
  body[data-ui-redesign="20260701f"] #dashboard .command-hero,
  body[data-ui-redesign="20260701f"] #dashboard .command-visual,
  body[data-ui-redesign="20260701f"] #dashboard .production-board,
  body[data-ui-redesign="20260701f"] #dashboard .production-tool-table {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-x: clip !important;
  }

  body[data-ui-redesign="20260701f"] #dashboard .command-visual::before,
  body[data-ui-redesign="20260701f"] #dashboard .command-visual::after,
  body[data-ui-redesign="20260701f"] #dashboard .command-hero::before,
  body[data-ui-redesign="20260701f"] #dashboard .command-hero::after {
    content: none !important;
    display: none !important;
  }

  body[data-ui-redesign="20260701f"] #dashboard .command-visual > *,
  body[data-ui-redesign="20260701f"] #dashboard .production-board > *,
  body[data-ui-redesign="20260701f"] #dashboard .production-tool-table > * {
    max-width: 100% !important;
  }

  body[data-ui-redesign="20260701f"] #dashboard .production-summary-grid span {
    min-height: 150px !important;
  }

  body[data-ui-redesign="20260701f"] #dashboard .production-tool-row,
  body[data-ui-redesign="20260701f"] #dashboard .production-tool-head {
    grid-template-columns: minmax(0, 1fr) minmax(48px, 56px) minmax(48px, 56px) !important;
    gap: 8px !important;
    padding: 10px !important;
  }

  body[data-ui-redesign="20260701f"] #dashboard .production-tool-row span {
    min-width: 0 !important;
    gap: 8px !important;
    font-size: 13px !important;
  }

  body[data-ui-redesign="20260701f"] #dashboard .production-tool-row span strong {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body[data-ui-redesign="20260701f"] #dashboard .production-tool-row b {
    min-width: 0 !important;
    font-size: 13px !important;
  }

  body[data-ui-redesign="20260701f"] #dashboard .production-tool-head b:nth-of-type(3),
  body[data-ui-redesign="20260701f"] #dashboard .production-tool-row b:nth-of-type(3),
  body[data-ui-redesign="20260701f"] #dashboard .production-tool-row::after,
  body[data-ui-redesign="20260701f"] #dashboard .production-tool-head::after {
    display: none !important;
  }

  body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .topbar {
    min-height: 58px !important;
    padding: 12px 14px !important;
  }

  body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .mock-reshape-title h1 {
    font-size: 18px !important;
    white-space: normal !important;
  }

  body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .content {
    padding: 0 14px 18px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-ui-redesign="20260701f"] *,
  body[data-ui-redesign="20260701f"] *::before,
  body[data-ui-redesign="20260701f"] *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* MeiZhiLink target screenshot restoration pass - 20260701g */
body[data-ui-redesign="20260701f"] [hidden],
body[data-ui-redesign="20260701f"] .topbar-settings-menu[hidden] {
  display: none !important;
}

body[data-ui-redesign="20260701f"] #authScreen.auth-screen:not(.hidden) {
  grid-template-columns: minmax(280px, 0.42fr) minmax(800px, 940px) minmax(24px, 0.14fr) !important;
  background:
    linear-gradient(90deg, rgba(255, 248, 242, 0.04) 0%, rgba(255, 255, 255, 0.08) 44%, rgba(255, 255, 255, 0.32) 100%),
    url("/assets/hero-clinic-suite.png") center / cover no-repeat !important;
}

body[data-ui-redesign="20260701f"] #authScreen::before {
  background:
    linear-gradient(90deg, rgba(248, 236, 224, 0.06), rgba(255, 255, 255, 0.04) 42%, rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 28% 36%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(0deg, rgba(104, 70, 48, 0.06), transparent 30%) !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-copy {
  width: min(330px, 100%) !important;
  transform: translate(-4px, 18px) !important;
  mix-blend-mode: multiply !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-hero-text {
  width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  filter: none !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-hero-text::before {
  width: 132px !important;
  height: 104px !important;
  margin-bottom: 16px !important;
  background:
    radial-gradient(circle at 50% 43%, rgba(255, 252, 248, 0.8) 0 14%, transparent 15%),
    conic-gradient(from -18deg, transparent 0 6%, #b98668 7% 13%, transparent 14% 21%, #b98668 22% 28%, transparent 29% 36%, #b98668 37% 43%, transparent 44% 51%, #b98668 52% 58%, transparent 59% 66%, #b98668 67% 73%, transparent 74% 100%) !important;
  opacity: 0.72 !important;
  filter: drop-shadow(0 6px 10px rgba(113, 75, 54, 0.1)) !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-hero-text h1::before {
  color: #a9755b !important;
  font-size: clamp(42px, 3.2vw, 52px) !important;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.34) !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-hero-text h1::after {
  content: "美 智 绘 联" !important;
  color: #ad7d64 !important;
  font-size: clamp(22px, 1.7vw, 28px) !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-hero-text p {
  content: none !important;
  width: auto !important;
  margin-top: 22px !important;
  color: #a87154 !important;
  font-size: 19px !important;
  line-height: 1.66 !important;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.38) !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-panel {
  width: min(940px, 100%) !important;
  min-height: 586px !important;
  padding: 42px 44px !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.93) !important;
  box-shadow: 0 26px 64px rgba(92, 64, 47, 0.16) !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-register-preview {
  display: grid !important;
}

body[data-ui-redesign="20260701f"] .topbar-settings {
  position: relative !important;
  width: 54px !important;
  min-width: 54px !important;
  height: 54px !important;
  overflow: visible !important;
}

body[data-ui-redesign="20260701f"] .top-actions {
  position: relative !important;
  z-index: 2 !important;
  width: 54px !important;
  height: 54px !important;
  overflow: visible !important;
}

body[data-ui-redesign="20260701f"] .topbar-settings-menu:not([hidden]) {
  display: grid !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .app {
  display: block !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar {
  position: fixed !important;
  inset: auto 88px auto auto !important;
  top: 14px !important;
  z-index: 72 !important;
  width: 256px !important;
  height: 40px !important;
  min-height: 0 !important;
  max-height: 40px !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  pointer-events: none !important;
  clip-path: none !important;
  isolation: isolate !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar *,
body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar *::before,
body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar *::after {
  box-shadow: none !important;
  backdrop-filter: none !important;
  filter: none !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar::before,
body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar::after,
body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .brand,
body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .quota-card,
body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .sidebar-showcase {
  content: none !important;
  display: none !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav {
  position: absolute !important;
  inset: 0 !important;
  width: 256px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 6px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: visible !important;
  pointer-events: auto !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav button {
  position: relative !important;
  flex: 0 0 38px !important;
  width: 38px !important;
  max-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid #ead8cf !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: transparent !important;
  text-indent: 200% !important;
  white-space: nowrap !important;
  display: grid !important;
  place-items: center !important;
  pointer-events: auto !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav button::before,
body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav button::after,
body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav .nav-icon::before,
body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav .nav-icon::after {
  content: none !important;
  display: none !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav button.active {
  border-color: #d7a891 !important;
  background: #fff2eb !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav button .nav-icon {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: grid !important;
  place-items: center !important;
  color: #8b4d3b !important;
  text-indent: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .main {
  height: 100vh !important;
  min-height: 100vh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .topbar {
  min-height: 88px !important;
  padding: 18px 30px !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  overflow: visible !important;
  background: #fffdfb !important;
  backdrop-filter: none !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .topbar .quota-card,
body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .topbar .mock-top-utility {
  display: none !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .mock-reshape-title h1 {
  font-size: 26px !important;
  font-weight: 500 !important;
}

body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .content {
  padding: 0 30px 28px !important;
  overflow: visible !important;
}

body[data-ui-redesign="20260701f"] #reshape .reshape-workspace {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 468px) !important;
  gap: 24px !important;
}

body[data-ui-redesign="20260701f"] #reshape .reshape-builder,
body[data-ui-redesign="20260701f"] #reshape .reshape-side {
  border-radius: 7px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  overflow: visible !important;
}

body[data-ui-redesign="20260701f"] #reshape .reshape-side {
  z-index: 1 !important;
}

body[data-ui-redesign="20260701f"] #reshape .selected-summary::before {
  content: "已选汇总" !important;
}

body[data-ui-redesign="20260701f"] #reshape .action-cost-note::before {
  content: "预计消耗（魔力值）" !important;
}

body[data-ui-redesign="20260701f"] #reshape .result-box::before {
  content: "效果预览" !important;
}

body[data-ui-redesign="20260701f"] #reshape .reshape-queue-body:empty::before {
  content: "暂无任务" !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-tool-row:not(.production-tool-head)::after {
  content: "进入" !important;
}

body[data-ui-redesign="20260701f"] #dashboard .production-tool-head::after {
  content: "操作" !important;
}

@media (max-width: 1180px) {
  body[data-ui-redesign="20260701f"] #authScreen.auth-screen:not(.hidden) {
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701f"] #authScreen .auth-copy {
    display: none !important;
  }

  body[data-ui-redesign="20260701f"] #authScreen .auth-panel {
    grid-column: 1 !important;
  }

  body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar {
    right: 76px !important;
  }
}

@media (max-width: 720px) {
  body[data-ui-redesign="20260701f"] #authScreen .auth-panel {
    width: calc(100vw - 28px) !important;
    grid-template-columns: 1fr !important;
    padding: 28px 20px !important;
  }

  body[data-ui-redesign="20260701f"] #authScreen .auth-register-preview {
    display: none !important;
  }

  body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    padding: 10px 14px !important;
    background: #fffdfb !important;
    border-bottom: 1px solid #eaded7 !important;
    pointer-events: auto !important;
  }

  body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
  }

  body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .app {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  body[data-ui-redesign="20260701f"] #reshape .reshape-workspace {
    grid-template-columns: 1fr !important;
  }
}

/* MeiZhiLink target screenshot restoration pass - 20260701g polish */
body[data-ui-redesign="20260701f"] #authScreen .auth-copy,
body[data-ui-redesign="20260701f"] #authScreen .auth-hero-text {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-copy::before,
body[data-ui-redesign="20260701f"] #authScreen .auth-copy::after,
body[data-ui-redesign="20260701f"] #authScreen .auth-hero-text::after {
  content: none !important;
  display: none !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-copy {
  display: block !important;
  align-self: center !important;
  justify-self: center !important;
  width: min(320px, 100%) !important;
  padding: 0 !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-hero-text p {
  width: min(280px, 100%) !important;
  margin: 22px auto 0 !important;
  color: #a87154 !important;
  font-size: clamp(17px, 1.25vw, 20px) !important;
  line-height: 1.48 !important;
  font-weight: 500 !important;
}

body[data-ui-redesign="20260701f"] #authScreen .auth-hero-text h1::after {
  content: "美 智 绘 联" !important;
}

body[data-ui-redesign="20260701f"] #reshape .upload-icon {
  box-sizing: border-box !important;
  min-width: 0 !important;
  padding: 0 !important;
  max-width: 54px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-indent: 0 !important;
  line-height: 1 !important;
}

body[data-ui-redesign="20260701f"] #reshape .upload-icon::before,
body[data-ui-redesign="20260701f"] #reshape .upload-icon::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 720px) {
  body[data-ui-redesign="20260701f"] .main,
  body[data-ui-redesign="20260701f"] .content,
  body[data-ui-redesign="20260701f"] #reshape,
  body[data-ui-redesign="20260701f"] #reshape .reshape-workspace,
  body[data-ui-redesign="20260701f"] #reshape .reshape-builder,
  body[data-ui-redesign="20260701f"] #reshape .reshape-side,
  body[data-ui-redesign="20260701f"] #reshape .reshape-step,
  body[data-ui-redesign="20260701f"] #reshape .upload-box,
  body[data-ui-redesign="20260701f"] #reshape .selected-summary,
  body[data-ui-redesign="20260701f"] #reshape .action-cost-note,
  body[data-ui-redesign="20260701f"] #reshape .result-box,
  body[data-ui-redesign="20260701f"] #reshape .reshape-task-queue {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-x: clip !important;
  }

  body[data-ui-redesign="20260701f"] .content {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  body[data-ui-redesign="20260701f"] .topbar {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-x: clip !important;
  }

  body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(6, 38px) !important;
    gap: 7px !important;
    overflow: hidden !important;
  }

  body[data-ui-redesign="20260701f"]:has(#reshape.view.active) .sidebar .nav button {
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
  }

  body[data-ui-redesign="20260701f"] #reshape .upload-icon {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
    padding: 0 !important;
    font-size: 18px !important;
  }
}
