:root {
  --bg: #f6fbf8;
  --bg-2: #edf8f3;
  --card: rgba(255, 255, 255, 0.92);
  --text: #173a36;
  --muted: #6b8580;
  --primary: #087a6d;
  --primary-2: #0f9f88;
  --primary-soft: #dff5ed;
  --line: #dcebe6;
  --gold: #f1b85a;
  --orange: #f2834a;
  --blue: #5c9ddf;
  --shadow: 0 18px 45px rgba(15, 99, 86, 0.10);
  --shadow-soft: 0 10px 28px rgba(15, 99, 86, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(25, 164, 139, .14), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 34%, #eef8f5 100%);
}
button, input, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 28px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 235, 229, .9);
  box-shadow: 0 10px 30px rgba(19, 92, 80, .05);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 24px;
  background: conic-gradient(from 40deg, #0b806e, #29b89d, #d9f2ea, #0b806e);
  box-shadow: 0 8px 18px rgba(12, 130, 111, .22);
}
.brand strong { display: block; font-size: 18px; letter-spacing: .04em; }
.brand strong span { font-size: 12px; color: var(--primary); margin-left: 5px; }
.brand small { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }
.nav-links {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  white-space: normal;
  overflow: visible;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-link {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  padding: 13px 9px 12px;
  color: #263f3c;
  position: relative;
  font-size: 14px;
  font-weight: 800;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 10px; right: 10px; bottom: 4px;
  height: 3px;
  border-radius: 99px;
  background: transparent;
}
.nav-link.active { color: var(--primary); }
.nav-link.active::after { background: var(--primary); }
.header-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.search-box {
  width: clamp(180px, 14vw, 250px);
  flex: 0 1 250px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
}
.search-box input { min-width: 0; width: 100%; border: 0; outline: 0; padding: 0 12px; font-size: 13px; }
.search-box button { width: 42px; height: 38px; border: 0; background: var(--primary); color: #fff; font-size: 20px; }
.lang { color: var(--muted); font-size: 13px; white-space: nowrap; }
.user-chip, .cart-chip {
  border: 0;
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(18, 89, 77, .08);
  white-space: nowrap;
}
.cart-chip { color: white; background: var(--primary); }
.page { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 24px 0 34px; }

.hero {
  min-height: 430px;
  border-radius: 0 0 30px 30px;
  padding: 62px 58px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 42% 58%;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.78) 40%, rgba(223,244,239,.3) 100%),
    radial-gradient(circle at 80% 20%, rgba(241, 184, 90, .25), transparent 22rem),
    linear-gradient(135deg, #ebf8f4 0%, #caebe2 58%, #f8fbf7 100%);
  box-shadow: var(--shadow);
}
.hero::before, .sub-hero::before, .dashboard-head::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, transparent 0 70%, rgba(255,255,255,.35) 70% 100%),
    radial-gradient(ellipse at 82% 80%, rgba(9, 122, 109, .12), transparent 30rem);
}
.hero-copy { position: relative; z-index: 2; }
.hero h1, .sub-hero h1, .shop-title-row h1, .ai-title-row h1, .dashboard-head h1 {
  margin: 0;
  font-size: clamp(42px, 4.2vw, 72px);
  line-height: 1.05;
  letter-spacing: .05em;
  font-family: "STKaiti", "KaiTi", "Songti SC", serif;
  color: #0b5f54;
}
.hero p, .sub-hero p, .shop-title-row p, .ai-title-row p, .dashboard-head p {
  font-size: 19px;
  color: #315c56;
  line-height: 1.8;
  margin: 26px 0 28px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.primary-btn, .outline-btn, .mini-primary, .ghost-btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 25px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.primary-btn { background: linear-gradient(135deg, var(--primary), #119f88); color: white; box-shadow: 0 12px 30px rgba(5, 123, 105, .22); }
.primary-btn:hover, .outline-btn:hover, .mini-primary:hover, .ghost-btn:hover { transform: translateY(-2px); }
.outline-btn { background: rgba(255,255,255,.86); color: var(--primary); border-color: rgba(8, 122, 109, .35); }
.primary-btn.small { padding: 9px 20px; font-size: 14px; }
.primary-btn.full, .outline-btn.full { width: 100%; }
.hero-visual { position: relative; min-height: 320px; }
.mountain-layer {
  position: absolute;
  inset: 8px 0 20px;
  background:
    radial-gradient(ellipse at 15% 78%, rgba(8,122,109,.20), transparent 13rem),
    radial-gradient(ellipse at 44% 54%, rgba(8,122,109,.24), transparent 15rem),
    radial-gradient(ellipse at 78% 62%, rgba(8,122,109,.23), transparent 16rem),
    linear-gradient(160deg, transparent 0 58%, rgba(27, 107, 95, .18) 59% 64%, transparent 65% 100%);
  clip-path: polygon(0 82%, 8% 61%, 17% 76%, 27% 40%, 34% 74%, 47% 28%, 56% 70%, 65% 37%, 73% 68%, 86% 24%, 95% 65%, 100% 82%, 100% 100%, 0 100%);
  filter: saturate(1.1);
}
.cloud { position: absolute; border-radius: 999px; background: rgba(255,255,255,.78); filter: blur(2px); }
.cloud-a { width: 260px; height: 68px; left: 10%; top: 52%; }
.cloud-b { width: 360px; height: 86px; right: 2%; top: 38%; }
.character-line { position: absolute; left: 5%; right: 0; bottom: 10px; display: flex; align-items: flex-end; justify-content: center; gap: 18px; z-index: 2; }
.character-line.small { position: static; justify-content: flex-end; transform: none; }
.hero-character {
  width: 88px; height: 104px;
  border-radius: 28px 28px 20px 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(235,246,242,.85));
  box-shadow: 0 18px 36px rgba(8, 89, 77, .15);
  border: 1px solid rgba(255,255,255,.85);
  position: relative;
}
.hero-character span { font-size: 46px; }
.hero-character img { width: 78px; height: 78px; object-fit: contain; filter: drop-shadow(0 10px 10px rgba(8, 89, 77, .12)); }
.hero-character small { font-size: 12px; color: var(--muted); font-weight: 700; }
.hero-character.green { transform: translateY(12px); }
.hero-character.gold { transform: translateY(-4px); }
.hero-character.orange { transform: translateY(8px); }
.hero-character.mint { transform: translateY(3px); }
.hero-character.blue { transform: translateY(14px); }

.content-block, .white-card, .role-detail-panel, .detail-tabs-panel, .store-callout, .material-kit {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.content-block { margin-top: 24px; padding: 26px; }
.content-block.no-top { margin-top: 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.section-head h2 { margin: 0; font-size: 26px; color: #0c5f55; }
.section-head p { margin: 6px 0 0; color: var(--muted); }
.text-link { border: 0; background: transparent; color: var(--primary); font-weight: 800; }
.role-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.role-strip.five { margin-bottom: 18px; }
.role-mini {
  border: 1px solid var(--line);
  border-radius: 18px;
  min-height: 124px;
  padding: 16px;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 14px;
  background: rgba(255,255,255,.75);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.role-mini:hover, .role-mini.active { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: rgba(8, 122, 109, .4); }
.role-mini.green { background: linear-gradient(135deg, #f1fbf5, #e6f6de); }
.role-mini.gold { background: linear-gradient(135deg, #fffaf0, #f8eed8); }
.role-mini.orange { background: linear-gradient(135deg, #fff7f1, #ffe9dc); }
.role-mini.mint { background: linear-gradient(135deg, #f3fbf8, #e4f7f1); }
.role-mini.blue { background: linear-gradient(135deg, #f2f8ff, #e4f0fb); }
.role-mini strong { display: block; font-size: 20px; }
.role-mini em { color: var(--primary); font-style: normal; font-size: 13px; }
.role-mini p { margin: 8px 0 0; display: flex; gap: 5px; flex-wrap: wrap; }
.role-mini p span, .tag-row span, .badges span, .price-row span, .sort-bar span, .chip-input span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(8,122,109,.08);
  color: #087a6d;
  font-size: 12px;
  font-weight: 700;
}
.role-avatar {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: grid; place-items: center;
  font-size: 32px;
  flex: 0 0 auto;
  background: #fff;
  box-shadow: inset 0 -10px 20px rgba(8,122,109,.06), 0 10px 20px rgba(8, 95, 85, .10);
  overflow: hidden;
}
.role-avatar.large { width: 156px; height: 156px; border-radius: 42px; font-size: 76px; }
.role-avatar img { width: 100%; height: 100%; object-fit: contain; padding: 5px; box-sizing: border-box; }
.role-avatar.large img { padding: 10px; }
.role-avatar.green, .product-art.green { background: linear-gradient(135deg, #e8f9ed, #c9edd6); }
.role-avatar.gold, .product-art.gold { background: linear-gradient(135deg, #fff4d9, #f7d99c); }
.role-avatar.orange, .product-art.orange { background: linear-gradient(135deg, #fff0e7, #ffc89b); }
.role-avatar.mint, .product-art.mint { background: linear-gradient(135deg, #e8fbf5, #cdece5); }
.role-avatar.blue, .product-art.blue { background: linear-gradient(135deg, #e9f4ff, #c4dcf3); }

.product-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.product-card {
  position: relative;
  min-height: 308px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11, 84, 75, .06);
}
.product-card.compact { min-height: 256px; }
.product-art {
  min-height: 138px;
  margin: 12px 12px 0;
  border-radius: 15px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.product-card.compact .product-art { min-height: 105px; }
.product-art::before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 140%; height: 120%;
  top: -50%; left: -20%;
  background:
    radial-gradient(circle at 35% 65%, rgba(255,255,255,.9), transparent 20%),
    linear-gradient(160deg, transparent 0 62%, rgba(8,122,109,.14) 63% 70%, transparent 71% 100%);
}
.product-art span { position: relative; font-size: 46px; z-index: 2; }
.product-art > img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-art.has-photo::before { opacity: .16; z-index: 2; }
.product-art small { position: absolute; right: 12px; bottom: 8px; color: rgba(23,58,54,.6); font-size: 12px; z-index: 3; }
.product-art.has-photo small { padding: 4px 8px; border-radius: 999px; background: rgba(255,255,255,.88); color: #0c5f55; font-weight: 900; }
.product-art.tiny { width: 48px; height: 48px; min-height: 48px; margin: 0; border-radius: 12px; }
.product-art.tiny span { font-size: 22px; }
.product-art.tiny small { display: none; }
.product-body { padding: 12px 14px 14px; }
.product-card h3 { margin: 0 0 6px; font-size: 16px; }
.product-card p { margin: 0 0 8px; color: var(--muted); font-size: 13px; }
.rating { color: #f3a31f; font-weight: 800; font-size: 13px; }
.rating span { color: var(--muted); font-weight: 600; }
.price-row { display: flex; justify-content: space-between; align-items: center; margin: 9px 0; }
.price-row strong { font-size: 20px; color: #102f2b; }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ghost-btn { color: var(--primary); background: #eff9f5; border-color: transparent; padding: 8px 9px; font-size: 12px; }
.mini-primary { color: white; background: var(--primary); padding: 8px 9px; font-size: 12px; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.badge {
  position: absolute;
  z-index: 3;
  top: 14px; left: 14px;
  border: 0;
  border-radius: 8px;
  padding: 5px 9px;
  font-size: 12px;
  color: white;
  background: var(--primary-2);
  font-weight: 800;
}
.badge.orange, .badges .orange { background: #fff0e7; color: #dd6a2f; }

.scene-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.scene-card {
  text-align: left;
  min-height: 168px;
  border: 0;
  color: #fff;
  border-radius: 18px;
  padding: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0c7367, #2c8e7d 55%, #d9a84e);
  box-shadow: var(--shadow-soft);
}
.scene-card .scene-bg { position: absolute; inset: 0; opacity: .38; background: radial-gradient(circle at 20% 30%, white, transparent 14rem), repeating-linear-gradient(135deg, transparent 0 24px, rgba(255,255,255,.12) 25px 26px); }
.scene-card span, .scene-card h3, .scene-card p, .scene-card small, .scene-card b { position: relative; z-index: 2; }
.scene-card span { font-size: 28px; }
.scene-card h3 { margin: 10px 0 5px; font-size: 24px; }
.scene-card p { margin: 0 0 8px; font-weight: 800; }
.scene-card small { display: block; line-height: 1.5; opacity: .94; }
.scene-card b { position: absolute; right: 18px; bottom: 18px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.22); }

.ai-preview-grid, .usage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.content-card, .usage-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  min-height: 178px;
}
.platform-icon {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #f35b6c, #111);
  margin-bottom: 8px;
}
.content-card h3 { margin: 0; }
.content-card strong { display: block; margin: 7px 0; }
.content-card p, .usage-card p { color: var(--muted); line-height: 1.6; }
.content-card button, .usage-card button { border: 0; background: #edf8f5; color: var(--primary); padding: 7px 11px; border-radius: 999px; font-size: 12px; margin-right: 6px; }
.content-card button:disabled, .primary-btn:disabled { opacity: .45; cursor: not-allowed; }

.sub-hero {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 46% 54%;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.54)),
    linear-gradient(135deg, #e7f6f2, #daf1ea 56%, #fff4df);
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
}
.sub-hero > * { position: relative; z-index: 2; }
.roles-hero .character-line, .scene-hero .character-line { align-self: end; }
.role-detail-panel { padding: 28px; display: grid; grid-template-columns: 260px 1fr 1.4fr; gap: 28px; align-items: stretch; }
.role-portrait {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  border-radius: 24px;
  background: linear-gradient(135deg, #e8f9ed, #f8fff8);
  overflow: hidden;
}
.role-portrait span { font-size: 120px; z-index: 2; }
.role-portrait img { width: 88%; height: 88%; object-fit: contain; z-index: 2; filter: drop-shadow(0 20px 24px rgba(8, 89, 77, .16)); }
.role-portrait .rings { position: absolute; width: 240px; height: 240px; border: 36px solid rgba(8,122,109,.08); border-radius: 50%; }
.role-meta h2 { margin: 0 0 10px; font-size: 34px; }
.role-meta h2 small { margin-left: 12px; font-size: 16px; color: var(--primary); }
blockquote { margin: 0 0 18px; padding: 16px 18px; border-left: 4px solid var(--primary); background: var(--primary-soft); border-radius: 12px; color: #0c5f55; }
.icon-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.icon-list li { display: grid; grid-template-columns: 92px 1fr; gap: 12px; line-height: 1.6; }
.icon-list b { color: #0c5f55; }
.story-tabs { border-left: 1px solid var(--line); padding-left: 28px; }
.pill-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.pill-tabs button, .sort-bar button, .scene-tabs button, .chart-head button, .filter-item, .role-filter-list button, .price-chips button, .small-actions button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
}
.pill-tabs button.active, .sort-bar button.active, .scene-tabs button.active, .chart-head button.active, .filter-item.active, .role-filter-list button.active { background: var(--primary); color: white; border-color: var(--primary); }
.story-tabs p { color: #426761; line-height: 1.8; }
.story-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.story-stats div { background: #f5faf8; border: 1px solid var(--line); border-radius: 14px; padding: 14px; }
.story-stats span { display: block; color: var(--muted); font-size: 12px; margin-bottom: 5px; }
.role-asset-card {
  margin-top: 18px;
  min-height: 220px;
  border-radius: 20px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #f3fbf8, #edf8f5);
  overflow: hidden;
}
.role-asset-card.green { background: linear-gradient(135deg, #f1fbf5, #e6f6de); }
.role-asset-card.gold { background: linear-gradient(135deg, #fffaf0, #f8eed8); }
.role-asset-card.orange { background: linear-gradient(135deg, #fff7f1, #ffe9dc); }
.role-asset-card.mint { background: linear-gradient(135deg, #f3fbf8, #e4f7f1); }
.role-asset-card.blue { background: linear-gradient(135deg, #f2f8ff, #e4f0fb); }
.role-asset-card strong,
.role-asset-card small { display: block; }
.role-asset-card strong { color: #0c5f55; font-size: 18px; }
.role-asset-card small { margin-top: 8px; color: var(--muted); line-height: 1.5; }
.role-asset-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.role-asset-actions button {
  border: 0;
  border-radius: 999px;
  padding: 9px 13px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.role-asset-preview {
  border: 0;
  border-radius: 18px;
  padding: 0;
  background: rgba(255,255,255,.42);
  cursor: zoom-in;
  overflow: hidden;
}
.role-asset-preview img,
.role-asset-card > img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(8, 89, 77, .14));
}
.role-asset-preview span,
.role-asset-card > span {
  justify-self: center;
  font-size: 88px;
}
.voice-asset-block { margin-top: 18px; }
.voice-asset-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; }
.voice-card, .voice-actions { border: 1px solid var(--line); border-radius: 20px; padding: 20px; background: #fff; }
.voice-card-carousel {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 10px;
  align-items: stretch;
  min-height: 246px;
}
.voice-card.green { background: linear-gradient(135deg, #f1fbf5, #e6f6de); }
.voice-card.gold { background: linear-gradient(135deg, #fffaf0, #f8eed8); }
.voice-card.orange { background: linear-gradient(135deg, #fff7f1, #ffe9dc); }
.voice-card.mint { background: linear-gradient(135deg, #f3fbf8, #e4f7f1); }
.voice-card.blue { background: linear-gradient(135deg, #f2f8ff, #e4f0fb); }
.voice-switch {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(8,122,109,.16);
  border-radius: 18px;
  color: #087a6d;
  background: #f7fcfa;
  cursor: pointer;
  font-weight: 900;
}
.voice-switch span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--primary);
  font-size: 30px;
  line-height: 1;
}
.voice-switch small {
  writing-mode: vertical-rl;
  letter-spacing: 2px;
}
.voice-switch:hover {
  border-color: rgba(8,122,109,.36);
  box-shadow: 0 12px 24px rgba(8,122,109,.10);
}
.voice-card-head { display: flex; align-items: center; gap: 14px; }
.voice-card-head strong, .voice-card-head span { display: block; }
.voice-card-head strong { font-size: 20px; }
.voice-card-head span, .voice-actions p { color: var(--muted); margin-top: 5px; }
.voice-script { margin: 18px 0; padding: 18px; border-radius: 16px; background: rgba(255,255,255,.76); color: #0c5f55; font-weight: 900; font-size: 22px; }
.waveform { height: 64px; display: flex; align-items: center; gap: 7px; padding: 0 4px; }
.waveform i { width: 9px; border-radius: 999px; background: linear-gradient(180deg, var(--primary), #86d7c8); box-shadow: 0 8px 16px rgba(8,122,109,.16); }
.voice-meta, .voice-button-row { display: flex; gap: 10px; flex-wrap: wrap; }
.voice-meta span { display: inline-flex; align-items: center; min-height: 26px; padding: 3px 10px; border-radius: 999px; background: rgba(8,122,109,.08); color: #087a6d; font-size: 12px; font-weight: 800; }
.voice-actions h3 { margin: 0 0 8px; color: #0c5f55; }
.voice-button-row button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--primary);
  color: white;
  font-weight: 900;
}
.voice-button-row button:last-child { background: #173a36; }
.upload-box { display: block; margin-top: 16px; border: 1px dashed rgba(8,122,109,.35); border-radius: 16px; padding: 16px; background: #f7fcfa; color: #0c5f55; font-weight: 800; }
.upload-box input { display: block; width: 100%; margin-top: 12px; color: var(--muted); }

.shop-title-row {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 24px;
}
.promo-banner {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #e5f6f1, #fff8e9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.promo-banner::after { content: ''; position: absolute; inset: auto -10% -40% 45%; width: 480px; height: 250px; background: radial-gradient(ellipse, rgba(8,122,109,.16), transparent 70%); }
.promo-banner span { font-size: 105px; z-index: 1; }
.promo-banner h2 { margin: 0; font-size: 34px; color: #0c5f55; }
.shop-layout { display: grid; grid-template-columns: 230px 1fr 220px; gap: 18px; align-items: start; }
.filter-sidebar, .right-rank {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.filter-sidebar h3, .right-rank h3 { margin: 20px 0 10px; color: #0c5f55; }
.filter-sidebar h3:first-child, .right-rank h3:first-child { margin-top: 0; }
.filter-item { display: block; width: 100%; text-align: left; margin: 4px 0; border-radius: 12px; }
.price-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.role-filter-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.role-filter-list button { padding: 7px 8px; font-size: 12px; }
.scene-filter-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.scene-filter-list span { display: grid; place-items: center; border-radius: 12px; min-height: 54px; background: #f2faf7; border: 1px solid var(--line); font-weight: 800; }
.scene-filter-list small { display: block; font-size: 12px; color: var(--muted); }
.sort-bar { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 14px 16px; margin-bottom: 16px; }
.sort-bar div { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sort-bar p { color: var(--muted); margin: 0; }
.rank-item, .guess-item { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.rank-item b { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; color: white; background: #f2a73d; }
.rank-item strong, .guess-item strong { display: block; font-size: 13px; }
.rank-item span, .guess-item span { color: var(--muted); font-size: 12px; }
.right-rank h3 { display: flex; justify-content: space-between; }
.right-rank small { color: var(--primary); }

.breadcrumb { color: var(--muted); margin: 12px 0 22px; }
.product-detail-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .9fr) minmax(260px, .65fr); gap: 24px; align-items: start; }
.gallery, .buy-panel, .detail-side { min-width: 0; }
.gallery { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 16px; }
.thumbs { display: grid; gap: 12px; align-content: start; }
.thumbs button { height: 72px; border: 1px solid var(--line); background: white; border-radius: 14px; font-size: 28px; overflow: hidden; padding: 0; }
.thumbs button.active { border-color: var(--primary); box-shadow: inset 0 0 0 2px rgba(8,122,109,.12); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }
.main-product-art {
  min-height: 540px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 25%, rgba(255,255,255,.7), transparent 14rem),
    linear-gradient(135deg, #dfeee6, #8db19a 60%, #536b56);
  box-shadow: var(--shadow-soft);
}
.main-product-art::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 0 56%, rgba(23,58,54,.18) 57% 65%, transparent 66%); }
.main-product-art button { position: absolute; right: 20px; bottom: 20px; border: 0; border-radius: 999px; background: rgba(255,255,255,.9); padding: 9px 14px; color: var(--text); }
.main-product-art.has-photo { background: #102f2b; }
.main-product-art.has-photo::before { z-index: 2; background: linear-gradient(180deg, transparent 55%, rgba(8, 44, 39, .42)); }
.main-product-art.has-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.main-product-art.has-photo button { z-index: 3; }
.bottle-art { width: 190px; height: 390px; border: 8px solid rgba(255,255,255,.75); border-radius: 55px 55px 38px 38px; display: grid; place-items: center; position: relative; background: rgba(255,255,255,.45); box-shadow: inset 0 0 25px rgba(255,255,255,.7), 0 26px 45px rgba(23,58,54,.24); }
.bottle-art::before { content: ''; position: absolute; top: -62px; width: 118px; height: 70px; border-radius: 22px 22px 12px 12px; background: linear-gradient(#f5f2e9, #b7beb7); box-shadow: inset 0 5px 8px rgba(255,255,255,.6); }
.bottle-art i { font-size: 88px; font-style: normal; }
.bottle-art span { position: absolute; bottom: 44px; font-size: 24px; font-weight: 900; color: #173a36; }
.buy-panel, .side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-soft); }
.buy-panel h1 { font-size: 32px; margin: 12px 0 8px; }
.sell-line { color: var(--muted); }
.product-price { font-size: 36px; color: var(--primary); font-weight: 900; margin: 18px 0; }
.product-price small { font-size: 14px; color: var(--muted); margin-left: 14px; }
.score-line { display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.score-line strong { color: #f2a31e; }
.option-group { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.option-group label, .ai-form label { display: block; font-weight: 800; color: #0c5f55; margin-bottom: 9px; }
.option-group label { flex-basis: 100%; }
.option-group button { border: 1px solid var(--line); background: #fff; border-radius: 12px; padding: 12px 16px; }
.option-group button.active { border-color: var(--primary); color: var(--primary); background: #f0faf6; }
.stock-line { color: var(--primary); font-weight: 800; margin: 12px 0; }
.qty { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin: 18px 0; }
.qty button { min-width: 70px; height: 34px; border: 1px solid var(--line); border-radius: 10px; background: #fff; padding: 0 12px; font-weight: 800; }
.qty button.active { border-color: var(--primary); color: var(--primary); background: #f0faf6; }
.buy-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.buy-actions button { min-width: 0; }
.service-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 16px; color: var(--muted); font-size: 13px; }
.detail-side { display: grid; gap: 16px; }
.side-card h3 { margin: 0 0 12px; color: #0c5f55; }
.role-inline { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.detail-tabs-panel { margin-top: 24px; padding: 22px; }
.pill-tabs.big button { font-size: 16px; padding: 12px 22px; }
.tab-content.detail { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); gap: 20px; align-items: start; }
.wide-scenery { min-height: 220px; border-radius: 18px; background: linear-gradient(135deg, #dcefe9, #afcdbd 50%, #eef9f4); position: relative; overflow: hidden; }
.wide-scenery::after { content: ''; position: absolute; inset: 20% 0 0; background: linear-gradient(150deg, transparent 0 58%, rgba(8,122,109,.18) 59% 63%, transparent 64% 100%); clip-path: polygon(0 85%, 10% 48%, 20% 70%, 30% 36%, 42% 80%, 55% 30%, 70% 75%, 84% 42%, 100% 82%, 100% 100%, 0 100%); }
.wide-scenery.has-photo::after { display: none; }
.wide-scenery.has-photo img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; display: block; }
table { border-collapse: collapse; width: 100%; background: #fff; border-radius: 14px; overflow: hidden; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
th { color: #0c5f55; width: 130px; background: #f4faf8; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; }
.review-card span { display: block; color: #f2a31e; margin: 7px 0; }

.scene-tabs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin: -12px 32px 24px; position: relative; z-index: 3; }
.scene-tabs button { min-height: 72px; font-size: 17px; box-shadow: var(--shadow-soft); }
.scene-tabs span { margin-right: 8px; }
.hero-feature-list { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-feature-list span { background: rgba(255,255,255,.8); border: 1px solid var(--line); border-radius: 999px; padding: 10px 15px; color: #0c5f55; font-weight: 800; }
.scene-detail-grid { display: grid; grid-template-columns: 1.7fr 1fr 1.15fr 1fr; gap: 18px; align-items: stretch; }
.selected-scene-card { display: grid; grid-template-columns: 260px 1fr; gap: 20px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-soft); }
.scene-visual, .destination-art { border-radius: 18px; min-height: 220px; display: grid; place-items: center; font-size: 80px; background: linear-gradient(135deg, #dcefe9, #8ebd9e 60%, #e8f4f0); }
.selected-scene-card h2 { font-size: 42px; margin: 0; }
.selected-scene-card h3 { margin: 6px 0 14px; color: #0c5f55; }
.selected-scene-card p { color: var(--muted); line-height: 1.7; }
.scene-meta { display: flex; gap: 16px; color: #0c5f55; font-weight: 800; margin-top: 14px; }
.white-card { padding: 20px; }
.white-card h3 { color: #0c5f55; margin-top: 0; }
.white-card ul { padding-left: 20px; line-height: 2; color: #426761; }
.small-actions { display: flex; gap: 10px; margin-top: 12px; }
.avatar-list { display: flex; gap: 8px; margin-bottom: 18px; }
.avatar-list .role-avatar { width: 48px; height: 48px; font-size: 24px; border-radius: 14px; }
.bundle-price { display: flex; align-items: center; justify-content: space-between; color: var(--primary); font-size: 24px; font-weight: 900; }
.bundle-price button, .bundle-card button { border: 0; border-radius: 999px; color: white; background: var(--primary); padding: 8px 14px; }
.mood-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 14px 0; }
.mood-thumbs i { min-height: 80px; border-radius: 14px; background: linear-gradient(135deg, #d7eee7, #8fb9a3); }
.two-col-section { display: grid; grid-template-columns: 1.5fr .9fr; gap: 18px; margin-top: 18px; }
.destination-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.destination-art { min-height: 130px; font-size: 42px; }
.destination-cards h3 { margin: 10px 0 4px; }
.destination-cards p { color: var(--muted); margin: 0 0 8px; }
.destination-cards strong { color: var(--primary); }
.bundle-card { display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.bundle-card p { color: var(--muted); margin: 4px 0 0; }
.bundle-card span { color: var(--primary); font-weight: 900; }
.task-board-block, .generated-preview-block, .route-timeline-block { margin-top: 18px; }
.task-board { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.task-column { border: 1px solid var(--line); border-radius: 18px; padding: 16px; background: #fbfefd; }
.task-column.active { background: linear-gradient(180deg, #f0faf6, #fff); border-color: rgba(12, 143, 123, .32); box-shadow: var(--shadow-soft); }
.task-column > div { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.task-column span { color: #0c5f55; font-weight: 900; }
.task-column strong { width: 38px; height: 38px; border-radius: 14px; display: grid; place-items: center; color: white; background: var(--primary); }
.task-column button { width: 100%; display: flex; align-items: center; gap: 9px; border: 0; border-radius: 12px; padding: 10px; margin-top: 8px; background: white; color: #426761; text-align: left; }
.task-column b { color: var(--primary); font-size: 12px; }
.scene-result-grid { grid-template-columns: repeat(4, 1fr); }
.timeline { display: grid; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 80px 1fr 280px; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: center; }
.timeline-item b { color: var(--primary); }
.timeline-item h3, .timeline-item p { margin: 0; }
.timeline-item p { color: var(--muted); }
.timeline-item span { background: #f0faf6; padding: 10px 12px; border-radius: 12px; color: #0c5f55; font-weight: 800; }
.store-callout { margin-top: 18px; padding: 22px; display: grid; grid-template-columns: 1fr 150px 360px; gap: 18px; align-items: center; }
.mascot-tip { display: flex; gap: 12px; align-items: center; background: #f2faf7; border-radius: 18px; padding: 14px; }

.ai-title-row, .dashboard-head {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #f5fbf8, #e5f4ef 62%, #fff6e7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}
.ai-title-row > *, .dashboard-head > * { position: relative; z-index: 1; }
.ai-workspace { display: grid; grid-template-columns: 320px 1fr 300px; gap: 18px; align-items: start; }
.ai-form, .ai-results, .campaign-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 22px; }
.ai-form h3, .campaign-card h3, .ai-results h2 { margin-top: 0; color: #0c5f55; }
.ai-form h3 { display: flex; justify-content: space-between; }
.ai-form h3 button { border: 0; background: transparent; color: var(--muted); font-size: 12px; }
.ai-form select { width: 100%; height: 42px; border: 1px solid var(--line); border-radius: 12px; padding: 0 12px; margin-bottom: 16px; background: #fff; color: var(--text); }
.chip-input { min-height: 44px; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; border: 1px solid var(--line); border-radius: 12px; padding: 8px; margin-bottom: 16px; background: #fbfefd; }
.hint { color: var(--muted); font-size: 13px; text-align: center; }
.result-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.publish-flow-block { margin-top: 18px; }
.workflow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 16px; }
.workflow-steps div { border: 1px solid var(--line); border-radius: 18px; padding: 16px; background: #fbfefd; position: relative; }
.workflow-steps b { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: #edf8f5; color: var(--primary); margin-bottom: 10px; }
.workflow-steps strong, .workflow-steps span { display: block; }
.workflow-steps span { color: var(--muted); margin-top: 5px; font-size: 13px; }
.workflow-steps .active { border-color: rgba(12, 143, 123, .45); box-shadow: var(--shadow-soft); background: linear-gradient(180deg, #f0faf6, #fff); }
.workflow-steps .active b, .workflow-steps .done b { background: var(--primary); color: white; }
.workflow-steps .done { background: #f5fbf8; }
.publish-flow-grid { display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 14px; }
.flow-card { border: 1px solid var(--line); border-radius: 20px; background: white; padding: 18px; box-shadow: var(--shadow-soft); }
.flow-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.flow-card-head h3 { margin: 0; color: #0c5f55; }
.flow-card-head span { border-radius: 999px; padding: 6px 10px; color: var(--primary); background: #edf8f5; font-weight: 900; font-size: 12px; }
.generated-row, .check-row, .account-list div, .queue-row { border-top: 1px solid var(--line); padding: 11px 0; }
.generated-row { display: grid; grid-template-columns: 120px 1fr 58px; gap: 10px; align-items: center; }
.generated-row small, .check-row small, .queue-row small, .schedule-box small { color: var(--muted); line-height: 1.5; }
.generated-row em, .check-row em, .account-list em { font-style: normal; color: var(--primary); font-weight: 900; font-size: 12px; }
.check-row { display: grid; grid-template-columns: 1fr 70px; gap: 12px; align-items: center; }
.account-list div { display: grid; grid-template-columns: 70px 1fr 56px; gap: 8px; align-items: center; }
.account-list span { color: #426761; font-size: 13px; }
.schedule-box { margin: 12px 0; border-radius: 16px; padding: 14px; background: #f5fbf8; }
.schedule-box span, .schedule-box strong, .schedule-box small { display: block; }
.schedule-box span { color: var(--muted); font-size: 12px; }
.schedule-box strong { color: #0c5f55; margin: 4px 0; }
.queue-row { display: grid; grid-template-columns: 72px 70px 1fr; gap: 10px; align-items: center; }
.queue-row strong { border-radius: 999px; padding: 6px 8px; color: #8a6a15; background: #fff8df; text-align: center; font-size: 12px; }
.queue-row.active strong { color: #0c5f55; background: #edf8f5; }
.queue-row.done strong { color: white; background: var(--primary); }
.data-return { grid-column: span 2; }
.return-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.return-metrics div { border-radius: 16px; padding: 14px; background: #f5fbf8; }
.return-metrics span, .return-metrics strong, .return-metrics em { display: block; }
.return-metrics span { color: var(--muted); font-size: 12px; }
.return-metrics strong { color: #0c5f55; font-size: 22px; margin: 4px 0; }
.return-metrics em { color: var(--primary); font-style: normal; font-size: 12px; }
.campaign-card dl { margin: 0; }
.campaign-card dt { color: #0c5f55; font-weight: 900; margin-top: 16px; }
.campaign-card dd { margin: 6px 0; color: #426761; line-height: 1.6; }
.material-kit { margin-top: 18px; padding: 20px; display: grid; grid-template-columns: 1.1fr 1.2fr 1fr 1fr; gap: 18px; }
.material-kit h3 { margin-top: 0; color: #0c5f55; }
.material-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.material-row div { min-height: 90px; border-radius: 14px; background: linear-gradient(135deg, #e1f2ee, #fff8e8); display: grid; place-items: center; font-size: 34px; }

.sku-video-page {
  --sku-surface: #ffffff;
  --sku-soft: #f4f9f7;
  --sku-line: #dcebe6;
  --sku-brand: #087a6d;
  --sku-dark: #0c5f55;
  --sku-warm: #f1b85a;
}
.sku-video-page button { cursor: pointer; }
.sku-eyebrow {
  margin: 0 0 8px;
  color: var(--sku-brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.sku-main-hero,
.sku-stage-card,
.sku-recent-records,
.sku-creator-navigation {
  background: var(--sku-surface);
  border: 1px solid var(--sku-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.sku-main-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
  padding: 26px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(8,122,109,.10), rgba(241,184,90,.12)), #fff;
}
.sku-main-summary {
  display: grid;
  place-items: center;
  gap: 4px;
  min-height: 150px;
  padding: 18px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--sku-line);
  border-radius: 16px;
}
.sku-main-summary strong { color: var(--sku-dark); font-size: 44px; line-height: 1; }
.sku-main-summary span { color: var(--sku-brand); font-weight: 900; }
.sku-main-summary small { color: var(--muted); line-height: 1.5; }
.sku-main-hero h1,
.sku-creator-hero h1 {
  margin: 0;
  color: var(--sku-dark);
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.08;
  font-family: "STKaiti", "KaiTi", "Songti SC", serif;
}
.sku-main-hero p,
.sku-creator-hero p {
  max-width: 780px;
  margin: 14px 0 0;
  color: #315c56;
  line-height: 1.7;
}
.sku-category-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.sku-category-tabs button,
.sku-platform-grid button,
.sku-type-row button,
.sku-language-row button,
.sku-mode-row button {
  display: grid;
  gap: 5px;
  min-height: 76px;
  padding: 12px;
  color: var(--text);
  text-align: left;
  background: #fff;
  border: 1px solid var(--sku-line);
  border-radius: 14px;
}
.sku-category-tabs button.active,
.sku-platform-grid button.active,
.sku-type-row button.active,
.sku-language-row button.active,
.sku-mode-row button.active,
.sku-role-tile.active {
  background: #edf8f4;
  border-color: rgba(8,122,109,.38);
  box-shadow: inset 0 -3px 0 var(--sku-brand);
}
.sku-category-tabs span,
.sku-catalog-meta span,
.sku-card-footer small,
.sku-catalog-context span,
.sku-role-tile span,
.sku-role-tile small,
.sku-mode-row span,
.sku-platform-grid span,
.sku-platform-grid small,
.sku-type-row span,
.sku-language-row span,
.sku-source-side span,
.sku-request-grid span,
.sku-review-checklist span,
.sku-draft-preview small,
.sku-draft-records span,
.sku-draft-records small,
.sku-creator-navigation span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.sku-product-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.sku-catalog-card {
  display: grid;
  gap: 14px;
  min-height: 260px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--sku-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.sku-catalog-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--sku-soft);
  border: 1px solid var(--sku-line);
  border-radius: 14px;
}
.sku-catalog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 8px;
}
.sku-catalog-thumb span {
  font-size: 42px;
}
.sku-catalog-card h3 {
  margin: 10px 0 8px;
  color: var(--sku-dark);
  font-size: 24px;
}
.sku-catalog-card p {
  margin: 0;
  color: #315c56;
  line-height: 1.6;
}
.sku-catalog-context {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  background: var(--sku-soft);
  border: 1px solid var(--sku-line);
  border-radius: 12px;
}
.sku-catalog-context strong { color: var(--sku-dark); font-size: 13px; }
.sku-mini-pill,
.sku-status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--sku-soft);
  border: 1px solid var(--sku-line);
  font-size: 12px;
  font-weight: 900;
}
.sku-status-pill.generated {
  color: #16805c;
  background: #e9f6ef;
  border-color: rgba(22,128,92,.22);
}
.sku-status-pill.generating {
  color: #8a5b14;
  background: #fff3df;
  border-color: rgba(185,130,43,.22);
}
.sku-catalog-meta,
.sku-card-footer,
.sku-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.sku-chip-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sku-chip-line span {
  padding: 6px 9px;
  color: var(--sku-brand);
  background: #e8f5f1;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.sku-creator-shell {
  display: grid;
  gap: 14px;
}
.sku-creator-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px 150px;
  gap: 18px;
  align-items: stretch;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, rgba(11,59,55,.98), rgba(15,118,110,.92));
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.sku-creator-hero h1,
.sku-creator-hero .sku-eyebrow { color: #fff; }
.sku-creator-hero p { color: rgba(255,255,255,.78); }
.sku-breadcrumb-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.sku-breadcrumb-row button {
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  font-weight: 900;
}
.sku-creator-status {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  min-height: 150px;
  padding: 16px;
  text-align: center;
  color: #dceee9;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
}
.sku-creator-status strong { font-size: 24px; }
.sku-return-button {
  align-self: start;
  min-height: 44px;
  padding: 0 16px;
  color: var(--sku-dark);
  background: #fff;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0,0,0,.14);
}
.sku-return-button:hover {
  transform: translateY(-1px);
}
.sku-creator-progress {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.sku-creator-progress button {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 46px;
  padding: 10px;
  color: var(--muted);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--sku-line);
  border-radius: 14px;
  text-align: left;
}
.sku-creator-progress button.active,
.sku-creator-progress button.done {
  color: var(--sku-dark);
  background: #edf8f4;
  border-color: rgba(8,122,109,.28);
}
.sku-creator-progress button.active { box-shadow: inset 0 -3px 0 var(--sku-brand); }
.sku-creator-progress button.skipped { opacity: .58; }
.sku-creator-progress span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  font-size: 11px;
  font-weight: 900;
}
.sku-stage-card {
  min-height: 520px;
  padding: 20px;
}
.sku-stage-title {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 14px;
}
.sku-stage-title h3 {
  margin: 0;
  color: var(--sku-dark);
  font-size: 22px;
}
.sku-stage-title p,
.sku-output-stack p,
.sku-video-action p,
.sku-review-note,
.sku-draft-preview p,
.sku-draft-records p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.sku-source-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
}
.sku-source-primary {
  display: grid;
  align-content: center;
  min-height: 350px;
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, rgba(11,59,55,.96), rgba(15,118,110,.88));
  border-radius: 16px;
}
.sku-source-image {
  width: min(100%, 520px);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
}
.sku-source-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 8px;
}
.sku-source-image span {
  font-size: 52px;
}
.sku-source-primary .sku-mini-pill { color: #fff; background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.22); }
.sku-source-primary h2 { margin: 14px 0 10px; font-size: 34px; }
.sku-source-primary p { color: rgba(255,255,255,.78); line-height: 1.7; }
.sku-source-side,
.sku-role-duty-list,
.sku-output-stack,
.sku-draft-records { display: grid; gap: 10px; }
.sku-source-side div,
.sku-request-grid div,
.sku-review-checklist div,
.sku-draft-preview,
.sku-draft-records div,
.sku-review-note,
.sku-output-stack article,
.sku-video-action,
.sku-recent-records article {
  display: grid;
  gap: 6px;
  padding: 12px;
  background: var(--sku-soft);
  border: 1px solid var(--sku-line);
  border-radius: 14px;
}
.sku-output-stack article.editable { background: #fff; }
.sku-output-editor {
  width: 100%;
  min-height: 112px;
  resize: vertical;
  padding: 10px 12px;
  color: var(--text);
  background: #fbfefd;
  border: 1px solid #c8ddd6;
  border-radius: 12px;
  font: inherit;
  line-height: 1.6;
}
.sku-output-editor:focus {
  outline: 2px solid rgba(8,122,109,.18);
  border-color: var(--sku-brand);
}
.sku-config-stage { min-height: auto; }
.sku-config-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.sku-config-overview div {
  display: grid;
  gap: 5px;
  padding: 12px;
  background: #f9fcfb;
  border: 1px solid var(--sku-line);
  border-radius: 14px;
}
.sku-config-overview span,
.sku-block-head span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.sku-config-overview strong { color: var(--sku-dark); }
.sku-config-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 12px;
}
.sku-config-block {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--sku-line);
  border-radius: 16px;
}
.sku-config-block-wide { grid-column: span 2; }
.sku-block-head { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.sku-config-block h4 { margin: 0; color: var(--sku-dark); }
.sku-role-picker {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.sku-role-tile {
  display: grid;
  gap: 7px;
  justify-items: center;
  min-height: 150px;
  padding: 12px 8px;
  text-align: center;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--sku-line);
  border-radius: 16px;
}
.sku-role-tile.lead { background: linear-gradient(135deg, #fffaf0, #edf8f4); }
.sku-role-tile .role-avatar { width: 58px; height: 58px; margin: 0; }
.sku-role-tile .role-avatar img { width: 100%; height: 100%; object-fit: contain; }
.sku-mode-row,
.sku-type-row,
.sku-language-row,
.sku-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.sku-platform-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sku-config-block .sku-platform-grid,
.sku-config-block .sku-type-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sku-config-block .sku-language-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sku-role-duty {
  display: grid;
  grid-template-columns: minmax(110px, .8fr) auto minmax(150px, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: var(--sku-soft);
  border: 1px solid var(--sku-line);
  border-radius: 14px;
}
.role-lead-btn,
.sku-duty-badge,
.sku-role-duty select {
  min-height: 36px;
  border: 1px solid #c8ddd6;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.role-lead-btn,
.sku-duty-badge { padding: 0 12px; display: inline-grid; place-items: center; }
.role-lead-btn.active { color: #fff; background: var(--sku-brand); border-color: var(--sku-brand); }
.sku-role-duty select { width: 100%; padding: 0 12px; }
.sku-request-grid,
.sku-review-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.sku-review-checklist { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sku-review-checklist div.passed,
.sku-draft-preview.sent,
.sku-video-action.done { background: #e9f6ef; border-color: rgba(22,128,92,.22); }
.sku-video-action {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-bottom: 12px;
}
.sku-video-card-preview {
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  color: #fff;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(8,122,109,.90), rgba(23,58,54,.68)), linear-gradient(135deg, #0c7367, #d9a84e);
  margin-bottom: 12px;
}
.sku-video-card-preview span { min-height: 28px; padding: 5px 11px; border-radius: 999px; background: rgba(255,255,255,.18); font-size: 12px; font-weight: 900; }
.sku-video-card-preview strong { max-width: 260px; font-size: 26px; }
.sku-video-card-preview small { color: rgba(255,255,255,.78); }
.sku-video-player {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}
.sku-video-player video {
  width: 100%;
  max-height: 680px;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  background: #101614;
  border: 1px solid var(--sku-line);
}
.sku-video-player > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--sku-line);
  border-radius: 14px;
  background: #f8fcfa;
}
.sku-video-player strong { color: var(--sku-dark); }
.sku-video-player small { color: var(--muted); font-weight: 800; text-align: right; }
.sku-creator-navigation {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 160px;
  gap: 12px;
  align-items: center;
  padding: 14px;
}
.sku-creator-navigation > div { text-align: center; }
.sku-creator-navigation strong { display: block; color: var(--sku-dark); }
.sku-recent-records { margin-top: 18px; padding: 20px; }
.sku-recent-records > div:last-child { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.sku-step-title { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.sku-step-title > span { width: 36px; height: 36px; flex: 0 0 auto; display: grid; place-items: center; color: #fff; background: var(--sku-brand); border-radius: 50%; font-size: 12px; font-weight: 900; }
.sku-step-title h3 { margin: 0 0 4px; color: var(--sku-dark); font-size: 20px; }

.holiday-calendar-block {
  margin-bottom: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fffaf1, #f0fbf7);
  box-shadow: var(--shadow-soft);
}
.lab-top-head { margin-bottom: 18px; }
.lab-top-head span, .holiday-calendar-title span, .hot-page-head span { color: var(--primary); font-weight: 900; }
.lab-top-head h2, .holiday-calendar-title h2 { margin: 8px 0; color: #0c5f55; font-size: 28px; }
.lab-top-head p, .holiday-calendar-title p { margin: 0; max-width: 860px; color: var(--muted); line-height: 1.7; }
.lab-top-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.lab-calendar-column,
.lab-news-column {
  min-width: 0;
  border: 1px solid rgba(8,122,109,.12);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.68);
}
.module-mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.module-mini-head strong,
.hot-news-head h3 {
  margin: 0;
  color: #0c5f55;
}
.module-mini-head small {
  color: var(--muted);
  font-weight: 800;
}
.holiday-calendar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.lab-top-module .holiday-calendar-grid,
.lab-top-module .lab-news-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.lab-top-module .lab-news-column .hot-news-head {
  grid-column: 1 / -1;
  margin-bottom: 0;
}
.holiday-card {
  text-align: left;
  min-height: 188px;
  border: 1px solid rgba(8,122,109,.16);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 8px 20px rgba(15, 99, 86, .06);
}
.holiday-card strong, .holiday-card h3, .holiday-card p, .holiday-card small, .holiday-card em { display: block; }
.holiday-card strong { color: #d88922; font-size: 20px; }
.holiday-card h3 { margin: 8px 0 4px; color: #0c5f55; }
.holiday-card p { margin: 0 0 8px; font-weight: 900; }
.holiday-card small { color: var(--muted); line-height: 1.5; }
.holiday-card em { margin-top: 10px; color: var(--primary); font-style: normal; font-weight: 900; }
.holiday-product-row,
.hot-news-products {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}
.holiday-product-row span,
.hot-news-products span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #8a4f00;
  background: #fff4dd;
  border: 1px solid rgba(216, 137, 34, .24);
  font-size: 12px;
  font-weight: 900;
}
.hot-news-products span {
  color: #0c5f55;
  background: #edf8f5;
  border-color: rgba(8,122,109,.18);
}
.lab-workbench {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 18px;
  align-items: start;
}
.lab-intro-video-overlay {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 18%, rgba(17, 165, 141, .25), transparent 30rem),
    radial-gradient(circle at 82% 72%, rgba(217, 166, 79, .2), transparent 28rem),
    rgba(4, 24, 22, .9);
  backdrop-filter: blur(18px);
}
.lab-intro-video-card {
  position: relative;
  width: min(1180px, 94vw);
  max-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 30px;
  background: rgba(255,255,255,.13);
  box-shadow: 0 34px 110px rgba(0,0,0,.45);
}
.lab-intro-video-player {
  width: 100%;
  max-height: calc(92vh - 36px);
  border-radius: 22px;
  background: #061714;
  object-fit: contain;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}
.lab-intro-video-copy {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 22px;
  color: #fff;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(8,122,109,.86), rgba(8, 45, 40, .86));
}
.lab-intro-video-copy span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #dff9f2;
  background: rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 900;
}
.lab-intro-video-copy strong {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.12;
}
.lab-intro-video-copy small {
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}
.lab-intro-video-close {
  position: fixed;
  z-index: 161;
  right: 28px;
  top: 24px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: 10px 16px;
  color: #fff;
  background: rgba(8, 45, 40, .72);
  box-shadow: 0 14px 36px rgba(0,0,0,.28);
}
.lab-intro-video-dock {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 90;
  width: 232px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(8,122,109,.22);
  border-radius: 20px;
  color: #0c5f55;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  text-align: left;
  backdrop-filter: blur(16px);
}
.lab-intro-video-dock video {
  width: 76px;
  height: 52px;
  border-radius: 14px;
  background: #092d28;
  object-fit: cover;
}
.lab-intro-video-dock strong,
.lab-intro-video-dock small {
  display: block;
}
.lab-intro-video-dock strong {
  margin-bottom: 3px;
  font-size: 13px;
  font-weight: 900;
}
.lab-intro-video-dock small {
  color: var(--muted);
  font-size: 12px;
}
.lab-form, .emage-result-panel, .hot-news-panel, .concept-summary-card, .content-article-card, .hot-page-head, .hot-product-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}
.lab-form h3, .hot-news-panel h3, .concept-summary-card h2, .hot-product-list h3 { margin-top: 0; color: #0c5f55; }
.lab-form label { display: block; margin: 16px 0 8px; color: #0c5f55; font-weight: 900; }
.lab-form select, .lab-form input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 12px;
  color: var(--text);
  background: #fbfefd;
}
.incubation-product-preview {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: #f8fcfa;
}
.incubation-product-preview .product-art {
  width: 100%;
  min-height: 190px;
  margin: 0;
}
.uploaded-product-image {
  width: 100%;
  min-height: 190px;
  max-height: 260px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}
.incubation-product-upload {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 142px;
  margin-top: 16px;
  border: 1px dashed rgba(8,122,109,.35);
  border-radius: 18px;
  background: #f8fcfa;
  color: var(--primary);
  text-align: center;
  cursor: pointer;
}
.incubation-product-upload input { display: none; }
.incubation-product-upload span { font-weight: 900; }
.incubation-product-upload small { max-width: 240px; color: var(--muted); line-height: 1.5; }
.incubation-product-upload.image-mode {
  position: relative;
  min-height: 220px;
  padding: 0;
  overflow: hidden;
  background: #e6f8f2;
}
.incubation-product-upload.image-mode:hover {
  border-color: rgba(8,122,109,.7);
  box-shadow: 0 14px 34px rgba(8, 89, 77, .12);
}
.incubation-product-upload.image-mode .uploaded-product-image {
  min-height: 220px;
  max-height: 320px;
  border-radius: 16px;
  object-fit: contain;
  background: #dff5ee;
}
.incubation-product-upload.image-mode em {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255,255,255,.92);
  color: var(--primary);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}
.incubation-product-upload-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}
.role-suggestion { display: flex; gap: 12px; align-items: center; margin: 18px 0; padding: 14px; border-radius: 16px; background: #f5fbf8; }
.role-suggestion p { margin: 5px 0 0; color: var(--muted); line-height: 1.5; }
.incubation-prompt-card {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  border: 1px solid rgba(8,122,109,.18);
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(180deg, #f4fffb, #fff);
}
.incubation-prompt-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.incubation-prompt-summary span {
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(8,122,109,.09);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}
.incubation-prompt-card textarea {
  width: 100%;
  max-height: 190px;
  min-height: 170px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  overflow: auto;
  resize: vertical;
  white-space: pre-wrap;
  color: #315f58;
  background: #fbfefd;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  line-height: 1.65;
}
.incubation-prompt-actions {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 10px;
}
.pending-concept-panel {
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 420px;
  margin-top: 18px;
  border: 1px dashed rgba(8,122,109,.26);
  border-radius: 24px;
  padding: 38px;
  text-align: center;
  background: linear-gradient(135deg, #f4fffb, #fff8e8);
}
.pending-concept-visual {
  display: grid;
  place-items: center;
  width: 138px;
  height: 180px;
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
}
.pending-concept-visual span { font-size: 54px; }
.pending-concept-panel h3 { margin: 0; color: #0c5f55; font-size: 28px; }
.pending-concept-panel p { max-width: 460px; margin: 0; color: var(--muted); line-height: 1.7; }
.lab-hero-stack { display: grid; justify-content: end; align-content: center; }
.incubation-upload-shell { display: grid; gap: 10px; }
.incubation-upload-shell input { display: none; }
.incubation-visual {
  position: relative;
  min-height: 260px;
  border-radius: 24px;
  padding: 18px 18px 58px;
  background: linear-gradient(135deg, #e5f5ef, #fff8e8);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.9);
}
.incubation-visual.has-generated-image { background: #102f2b; }
.incubation-visual.is-generating {
  box-shadow: inset 0 0 0 1px rgba(8,122,109,.14), 0 22px 55px rgba(8, 89, 77, .16);
}
.incubation-visual:hover { box-shadow: 0 22px 55px rgba(8, 89, 77, .16); }
.incubation-visual::before {
  content: '';
  position: absolute;
  inset: 10% -20% -35% 32%;
  background: radial-gradient(ellipse, rgba(8,122,109,.18), transparent 68%);
}
.generated-concept-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concept-main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: #102f2b;
  cursor: zoom-in;
}
.concept-gallery-nav {
  position: absolute;
  z-index: 5;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}
.concept-gallery-nav button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: 22px;
  line-height: 1;
}
.concept-gallery-nav span {
  min-width: 34px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}
.media-generation-loader {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  gap: 9px;
  padding: 24px;
  color: #0c5f55;
  text-align: center;
  background: rgba(245, 255, 250, .76);
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.media-generation-loader i {
  width: 58px;
  height: 58px;
  border: 5px solid rgba(8,122,109,.16);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .82s linear infinite;
}
.media-generation-loader strong,
.media-generation-loader small {
  display: block;
}
.media-generation-loader strong {
  font-size: 18px;
  font-weight: 900;
}
.media-generation-loader small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.model-chip {
  position: relative;
  z-index: 2;
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255,255,255,.82);
  color: var(--primary);
  font-weight: 900;
  font-size: 12px;
}
.concept-product {
  position: relative;
  z-index: 2;
  width: min(230px, 100%);
  min-height: 180px;
  margin: 24px auto 0;
  display: grid;
  place-items: center;
  border-radius: 28px;
  box-shadow: inset 0 -18px 38px rgba(255,255,255,.34), 0 22px 42px rgba(8, 89, 77, .12);
}
.concept-product span { font-size: 78px; }
.concept-product-from-store {
  position: relative;
  z-index: 2;
  width: min(300px, 86%);
  margin: 24px auto 0;
}
.concept-product-from-store .product-art {
  width: 100%;
  min-height: 210px;
  margin: 0;
  border-radius: 26px;
  box-shadow: inset 0 -18px 38px rgba(255,255,255,.34), 0 22px 42px rgba(8, 89, 77, .12);
}
.concept-product-from-store .product-art span {
  font-size: 64px;
}
.concept-product-from-store .product-art small,
.product-art.concept small {
  display: none;
}
.concept-sticker {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 74px;
  min-height: 86px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.concept-sticker img { width: 56px; height: 56px; object-fit: contain; }
.concept-sticker b { font-size: 11px; color: var(--primary); }
.visual-caption { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 12px; color: #0c5f55; font-weight: 900; }
.has-generated-image .visual-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
}
.visual-caption small { color: var(--muted); font-weight: 700; }
.image-generation-status {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--primary);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}
.image-generation-status.error {
  max-width: calc(100% - 32px);
  border-radius: 16px;
  color: #b43d32;
  text-align: center;
}
.upload-concept-hint {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease;
}
.incubation-upload-shell:hover .upload-concept-hint {
  opacity: 1;
  transform: translateY(0);
}
.concept-thumb-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.concept-thumb-row button {
  min-width: 0;
  height: 54px;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 0;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(8, 89, 77, .08);
}
.concept-thumb-row button.active {
  border-color: var(--primary);
}
.concept-thumb-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.concept-media-stack { display: grid; gap: 14px; }
.emage-result-grid { display: grid; grid-template-columns: 300px 1fr; gap: 20px; align-items: start; }
.emage-result-grid h3 { margin: 0 0 12px; font-size: 28px; color: #0c5f55; }
.concept-meta-list { display: grid; gap: 10px; margin-top: 16px; }
.concept-meta-list div { border: 1px solid var(--line); border-radius: 14px; padding: 12px; background: #fbfefd; }
.concept-meta-list span { display: block; color: var(--muted); font-size: 12px; font-weight: 900; margin-bottom: 6px; }
.concept-meta-list p { margin: 0; color: #426761; line-height: 1.6; }
.prompt-row button { margin-top: 10px; border: 0; border-radius: 999px; padding: 8px 12px; color: white; background: var(--primary); font-weight: 900; }
.hot-news-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.hot-news-head button { border: 0; color: var(--primary); background: transparent; font-weight: 900; }
.hot-news-card {
  display: grid;
  align-content: start;
  width: 100%;
  min-height: 188px;
  margin-bottom: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  text-align: left;
  background: #fbfefd;
}
.hot-news-card div { display: flex; justify-content: space-between; gap: 8px; }
.hot-news-card strong, .hot-news-card span, .hot-news-card em, .hot-news-card small { display: block; }
.hot-news-card span, .hot-news-card p { color: var(--muted); line-height: 1.5; }
.hot-news-card em { color: #d88922; font-style: normal; font-weight: 900; }
.hot-news-card small { color: var(--primary); font-weight: 800; }
.concept-library-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.concept-card { border: 1px solid var(--line); border-radius: 22px; background: #fff; overflow: hidden; box-shadow: var(--shadow-soft); }
.concept-card .incubation-upload-shell { background: #102f2b; }
.concept-card .incubation-visual { aspect-ratio: 3 / 4; border-radius: 0; min-height: 0; border: 0; }
.concept-card .generated-concept-image { object-fit: contain; }
.concept-card-body { padding: 18px; }
.concept-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.concept-card-head h3 { margin: 0; color: #0c5f55; }
.concept-card-head p, .concept-card-body > p, .concept-summary-card p { color: var(--muted); line-height: 1.6; }
.reference-mini-list { display: grid; gap: 8px; margin: 14px 0; }
.sku-seeding-jump-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  margin: 16px 0 0;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #0b7b70, #148d7f);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 10px 24px rgba(8, 122, 109, .18);
  cursor: pointer;
}
.sku-seeding-jump-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(8, 122, 109, .24);
}
.lab-inspiration-board {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-color: rgba(8, 122, 109, .14);
  background:
    radial-gradient(circle at 10% 8%, rgba(242, 167, 61, .24), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(8, 122, 109, .18), transparent 34%),
    linear-gradient(135deg, #fffdf4 0%, #eff9f4 58%, #fff5e4 100%);
}
.lab-inspiration-board::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(8, 122, 109, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 122, 109, .055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.62), transparent 72%);
}
.lab-inspiration-hero,
.lab-inspiration-tools,
.lab-inspiration-board .lab-top-content {
  position: relative;
  z-index: 1;
}
.lab-inspiration-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  padding: 30px 30px 20px;
  align-items: stretch;
}
.lab-inspiration-copy span,
.lab-panel-title span {
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lab-inspiration-copy h2 {
  max-width: 920px;
  margin: 10px 0 12px;
  color: #073f38;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.lab-inspiration-copy p,
.lab-panel-title p {
  max-width: 780px;
  margin: 0;
  color: #426761;
  line-height: 1.75;
}
.lab-flow-card {
  border: 1px solid rgba(8, 122, 109, .14);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 16px 40px rgba(8, 89, 77, .09);
  backdrop-filter: blur(14px);
}
.lab-flow-card > strong {
  display: block;
  margin-bottom: 12px;
  color: #0c5f55;
  font-size: 18px;
}
.lab-flow-card ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lab-flow-card li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border-radius: 18px;
  background: rgba(245, 251, 248, .88);
}
.lab-flow-card li span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, #0b7b70, #d9a84e);
  font-weight: 900;
  font-size: 12px;
}
.lab-flow-card b,
.lab-flow-card small {
  display: block;
}
.lab-flow-card b {
  color: #073f38;
}
.lab-flow-card small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.4;
}
.lab-inspiration-tools {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 30px 22px;
}
.lab-tool-card {
  min-height: 184px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid rgba(8, 122, 109, .14);
  border-radius: 22px;
  padding: 18px;
  text-align: left;
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 28px rgba(8, 89, 77, .07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.lab-tool-card:hover,
.holiday-card:hover,
.hot-news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 122, 109, .3);
  box-shadow: 0 18px 38px rgba(8, 89, 77, .13);
}
.lab-tool-card span {
  font-size: 28px;
}
.lab-tool-card small {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 9px;
  color: #8a4f00;
  background: #fff4dd;
  font-size: 12px;
  font-weight: 900;
}
.lab-tool-card strong {
  color: #073f38;
  font-size: 18px;
}
.lab-tool-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.lab-tool-card em {
  color: var(--primary);
  font-style: normal;
  font-weight: 900;
}
.lab-inspiration-board .lab-top-content {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  padding: 0 30px 30px;
}
.lab-inspiration-board .lab-calendar-column,
.lab-inspiration-board .lab-news-column {
  border-color: rgba(8, 122, 109, .14);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 14px 34px rgba(8, 89, 77, .07);
  backdrop-filter: blur(12px);
}
.lab-inspiration-board .module-mini-head em {
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--primary);
  background: rgba(8,122,109,.08);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}
.holiday-card {
  position: relative;
  min-height: 0;
  display: grid;
  align-content: start;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.holiday-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.holiday-card-top strong {
  color: #d88922;
  font-size: 22px;
}
.holiday-card-top em {
  margin: 0;
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--primary);
  background: rgba(8,122,109,.08);
  font-size: 12px;
}
.hot-news-head small {
  color: var(--muted);
  font-weight: 800;
}
.hot-news-card {
  gap: 8px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hot-news-card .hot-news-card-title {
  justify-content: flex-start;
  align-items: flex-start;
}
.hot-rank {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: white;
  background: #0c5f55;
  font-size: 12px;
  font-weight: 900;
}
.hot-news-card p {
  margin: 0;
}
.lab-page .lab-workbench {
  grid-template-columns: minmax(440px, .92fr) minmax(560px, 1.08fr);
  gap: 24px;
}
.lab-page .lab-form {
  position: sticky;
  top: 94px;
  min-width: 0;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}
.lab-page .emage-result-panel {
  min-width: 0;
  overflow: hidden;
}
.lab-panel-title {
  min-width: 0;
}
.lab-panel-title.compact {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.lab-panel-title h2,
.lab-panel-title h3 {
  margin: 7px 0 8px;
  color: #073f38;
}
.lab-result-header {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.lab-page .emage-result-grid {
  grid-template-columns: minmax(340px, 1fr) minmax(300px, .92fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 18px;
}
.lab-page .emage-result-grid > *,
.lab-page .concept-media-stack {
  min-width: 0;
}
.lab-page .concept-media-stack .incubation-upload-shell {
  height: 100%;
}
.lab-page .concept-media-stack .incubation-visual {
  min-height: 360px;
  height: 100%;
}
.reference-card, .content-reference-row, .hot-content-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fcfa;
  padding: 12px;
  text-align: left;
}
.reference-card span, .content-reference-row span, .hot-content-card span, .content-type-badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(8,122,109,.09);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}
.reference-card strong, .reference-card p { display: block; margin-top: 7px; }
.reference-card p, .empty-note { color: var(--muted); margin-bottom: 0; line-height: 1.5; }
.content-library-layout, .hot-recommend-layout { display: grid; grid-template-columns: 320px 1fr; gap: 18px; align-items: start; }
.content-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 18px; align-items: start; }
.content-reference-list { display: grid; gap: 12px; }
.content-reference-row { display: grid; grid-template-columns: 96px 1fr 22px; gap: 12px; align-items: center; }
.content-reference-thumb {
  position: relative;
  min-height: 72px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0c7367, #d9a84e);
}
.content-reference-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-reference-thumb span {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: rgba(255,255,255,.9);
  color: var(--primary);
}
.content-reference-thumb strong {
  color: white;
}
.content-reference-row strong { color: #0c5f55; }
.content-reference-row p, .content-reference-row small { color: var(--muted); line-height: 1.5; }
.content-article-card { min-width: 0; }
.content-editor-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.content-editor-toolbar > div { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.edit-status { color: var(--muted); font-size: 13px; font-weight: 800; }
.editable-kicker { display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 900; }
.content-article-card h1 { margin: 14px 0; font-size: clamp(32px, 4vw, 54px); line-height: 1.15; color: #0c5f55; }
.content-summary { color: #426761; font-size: 18px; line-height: 1.8; }
.editable-field {
  min-height: 30px;
  border: 1px dashed transparent;
  border-radius: 14px;
  padding: 8px 10px;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.editable-field:hover, .editable-field:focus {
  border-color: rgba(8,122,109,.32);
  background: #f8fcfa;
  box-shadow: inset 0 0 0 1px rgba(8,122,109,.06);
}
.editable-title { margin-left: -10px; }
.content-mock { display: grid; grid-template-columns: minmax(260px, 360px) minmax(0, 1fr); gap: 20px; margin: 22px 0; padding: 18px; border-radius: 20px; background: #f5fbf8; }
.cover-editor { display: grid; gap: 10px; align-content: start; }
.cover-editor small { color: var(--muted); }
.content-cover { width: 100%; min-height: 300px; padding: 0; border: 0; border-radius: 18px; display: grid; place-items: center; font-size: 52px; color: white; background: linear-gradient(135deg, #0c7367, #d9a84e); overflow: hidden; }
.content-cover span { min-width: 110px; min-height: 66px; display: grid; place-items: center; border: 1px dashed rgba(255,255,255,.62); border-radius: 16px; padding: 12px; outline: none; }
.content-cover .image-placeholder { min-width: 180px; font-size: 18px; font-weight: 900; }
.content-cover.has-image { background: #173a36; }
.content-cover img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; display: block; }
.image-cover { cursor: zoom-in; }
.cover-upload-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}
.cover-upload-btn input { display: none; }
.editable-format-panel { min-width: 0; }
.content-mock dl { display: grid; grid-template-columns: 88px 1fr; gap: 10px; }
.content-mock dt { color: #0c5f55; font-weight: 900; }
.content-mock dd { margin: 0; color: #426761; }
.content-script { border-top: 1px solid var(--line); padding-top: 16px; }
.content-script p { color: var(--muted); line-height: 1.8; }
.editable-body { min-height: 140px; }
.content-detail-page .detail-side { position: sticky; top: 96px; }
.content-detail-page .side-card { overflow: hidden; }
.content-detail-page .side-card .incubation-visual { min-height: 190px; margin: -8px -8px 12px; }
.content-detail-page .side-card .product-art { margin-bottom: 12px; }
.media-preview-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(5, 28, 25, .78);
}
.media-preview-close {
  position: fixed;
  right: 28px;
  top: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #0c5f55;
  font-size: 30px;
  line-height: 1;
}
.media-preview-card {
  max-width: min(1040px, 92vw);
  max-height: 86vh;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.media-preview-card img {
  display: block;
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
}
.concept-preview-card {
  width: min(980px, 92vw);
  max-height: 90vh;
  display: grid;
  gap: 12px;
  padding: 16px;
}
.concept-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #0c5f55;
  font-weight: 900;
}
.concept-preview-head span {
  min-width: 46px;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--primary-soft);
  color: var(--primary);
  text-align: center;
}
.concept-preview-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(68vh, 680px);
  border-radius: 18px;
  background: #102f2b;
  overflow: hidden;
}
.concept-preview-stage img {
  max-height: min(68vh, 680px);
}
.concept-asset-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: #f8fcfa;
}
.concept-asset-path span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.concept-asset-path code {
  display: block;
  overflow: hidden;
  color: #0c5f55;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.concept-asset-path button {
  border: 0;
  border-radius: 999px;
  padding: 9px 13px;
  color: white;
  background: var(--primary);
  font-weight: 900;
}
.concept-preview-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--primary);
  font-size: 36px;
  line-height: 1;
  box-shadow: var(--shadow-soft);
}
.concept-preview-arrow.prev { left: 14px; }
.concept-preview-arrow.next { right: 14px; }
.concept-preview-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.concept-preview-thumbs button {
  height: 72px;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 0;
  background: #f8fcfa;
  overflow: hidden;
}
.concept-preview-thumbs button.active {
  border-color: var(--primary);
}
.concept-preview-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.preview-placeholder {
  width: min(900px, 82vw);
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 34px;
  color: white;
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #0c7367, #d9a84e);
}
.hot-page-head {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #f5fbf8, #fff5df);
}
.hot-page-head h1 { margin: 8px 0 10px; color: #0c5f55; font-size: 42px; }
.hot-page-head p { color: #426761; line-height: 1.8; max-width: 760px; }
.heat-meter { min-height: 170px; border-radius: 22px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); }
.heat-meter strong { font-size: 52px; color: #d88922; }
.heat-meter span, .heat-meter em { display: block; color: var(--muted); font-style: normal; }
.hot-news-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.hot-news-tabs button { border: 1px solid var(--line); border-radius: 999px; padding: 10px 15px; background: white; color: var(--text); font-weight: 900; }
.hot-news-tabs button.active { background: var(--primary); color: white; border-color: var(--primary); }
.hot-live-panel { margin-bottom: 18px; }
.hot-live-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.hot-live-head span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hot-live-head h3 {
  margin: 6px 0 8px;
  color: #0c5f55;
  font-size: 26px;
}
.hot-live-head p {
  margin: 0;
  max-width: 760px;
  color: #426761;
  line-height: 1.7;
}
.hot-live-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.hot-live-actions em {
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--primary);
  background: rgba(8,122,109,.09);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}
.hot-live-actions em.loading,
.hot-live-actions em.error {
  color: #8a4f00;
  background: #fff4dd;
}
.hot-live-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.hot-live-card {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  text-align: left;
  background: #fbfefd;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hot-live-card:hover {
  transform: translateY(-2px);
  border-color: rgba(8,122,109,.32);
  box-shadow: 0 14px 30px rgba(8, 89, 77, .1);
}
.hot-live-image {
  min-height: 112px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #0c7367, #d9a84e);
  font-weight: 900;
}
.hot-live-image img {
  width: 100%;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
}
.hot-live-card small,
.hot-live-card p,
.hot-live-foot,
.hot-live-error,
.hot-live-loading p {
  color: var(--muted);
  line-height: 1.55;
}
.hot-live-card strong {
  display: block;
  margin: 7px 0;
  color: #0c5f55;
  line-height: 1.35;
}
.hot-live-card p {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.hot-live-foot {
  margin: 12px 0 0;
  font-size: 13px;
}
.hot-live-error {
  margin-bottom: 12px;
  border-radius: 14px;
  padding: 10px 12px;
  background: #fff4dd;
  font-weight: 800;
}
.hot-live-loading {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px dashed rgba(8,122,109,.26);
  border-radius: 18px;
  padding: 18px;
  background: #f8fcfa;
}
.hot-live-loading span {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(8,122,109,.18);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.hot-product-list { display: grid; gap: 10px; }
.hot-product-list button {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfefd;
  padding: 10px;
  text-align: left;
}
.hot-product-list button.active { border-color: rgba(8,122,109,.42); background: #edf8f5; }
.hot-product-list strong, .hot-product-list span { display: block; }
.hot-product-list span { color: var(--muted); font-size: 12px; }
.hot-content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.hot-content-card { min-height: 190px; }
.hot-content-card h3 { color: #0c5f55; margin: 12px 0 8px; }
.hot-content-card p, .hot-content-card small { color: var(--muted); line-height: 1.6; }

.kpi-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-bottom: 18px; }
.kpi-card { display: flex; justify-content: space-between; gap: 12px; align-items: center; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.kpi-card span { color: #0c5f55; font-weight: 900; }
.kpi-card strong { display: block; font-size: 28px; margin: 9px 0; color: #0e2927; }
.kpi-card p { margin: 0; color: var(--primary); font-weight: 800; }
.kpi-card i { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #edf8f5; font-style: normal; font-size: 26px; }
.dashboard-split-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}
.dashboard-module-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.dashboard-module-card.seeding { border-color: rgba(242, 167, 61, .34); }
.dashboard-module-card.scene { border-color: rgba(12, 143, 123, .28); }
.dashboard-module-card.role { border-color: rgba(128, 104, 215, .28); }
.dashboard-module-card.lab { border-color: rgba(239, 111, 143, .28); }
.module-card-head {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}
.module-card-head span {
  justify-self: start;
  border-radius: 999px;
  padding: 5px 10px;
  background: #edf8f5;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}
.dashboard-module-card.seeding .module-card-head span { background: #fff6e5; color: #b56a11; }
.dashboard-module-card.role .module-card-head span { background: #f3f0ff; color: #6752c7; }
.dashboard-module-card.lab .module-card-head span { background: #fff0f5; color: #c74775; }
.module-card-head h3 {
  margin: 0;
  color: #0c5f55;
  font-size: 22px;
}
.module-card-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.module-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.module-metric-grid div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: #fbfefd;
}
.module-metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.module-metric-grid strong {
  display: block;
  margin-top: 8px;
  color: #0e2927;
  font-size: 22px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.module-metric-grid.production strong { font-size: 19px; }
.dashboard-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 18px; }
.chart-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-soft); min-height: 260px; }
.chart-card.big { grid-column: span 1; min-height: 360px; }
.chart-card h3 { margin: 0 0 16px; color: #0c5f55; }
.chart-head { display: flex; justify-content: space-between; align-items: center; }
.line-chart { width: 100%; height: 290px; }
.grid-lines line { stroke: #e3eee9; stroke-width: 1; }
.dates text { font-size: 13px; fill: #6b8580; }
.rank-bar { display: grid; grid-template-columns: 28px 32px 70px 1fr 54px; gap: 10px; align-items: center; margin: 13px 0; }
.rank-bar b { width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center; color: white; background: #f2a73d; }
.dashboard-head {
  display: grid;
  grid-template-columns: minmax(360px, 1.2fr) minmax(320px, .9fr) auto;
  align-items: stretch;
  padding: 28px 30px;
  background: #fff;
}
.dashboard-head h1 {
  margin: 5px 0 8px;
  font-family: inherit;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 0;
  color: #0c5f55;
}
.dashboard-head p {
  margin: 0;
  max-width: 520px;
  color: #365d57;
  font-size: 15px;
  line-height: 1.6;
}
.dashboard-head-main { min-width: 0; }
.head-eyebrow {
  display: inline-flex;
  align-items: center;
  height: 26px;
  border-radius: 999px;
  padding: 0 10px;
  background: #edf8f5;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}
.head-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.head-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fbfefd;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.dashboard-insight {
  display: grid;
  align-content: center;
  gap: 7px;
  border: 1px solid #dbeee8;
  border-radius: 18px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #f2faf7, #fffaf0);
}
.dashboard-insight span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}
.dashboard-insight strong {
  color: #173a36;
  font-size: 18px;
  line-height: 1.5;
}
.dashboard-insight small {
  color: var(--muted);
  font-size: 12px;
}
.dashboard-head-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-width: 160px;
}
.dashboard-head-actions .date-btn,
.dashboard-head-actions .outline-btn {
  width: 100%;
  white-space: nowrap;
}
.dashboard-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: -4px 0 18px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}
.dashboard-filters button {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 18px;
  background: #fff;
  color: #0c5f55;
  font-weight: 900;
}
.dashboard-filters button.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.dashboard-filters select {
  min-width: 170px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 12px;
  color: var(--text);
  background: #fbfefd;
}
.filter-reset {
  border: 1px solid rgba(8, 122, 109, .35);
  border-radius: 10px;
  padding: 8px 16px;
  color: var(--primary);
  background: #fff;
  font-weight: 900;
}
.filter-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 18px;
  color: #365d57;
}
.filter-summary strong { color: #0c5f55; }
.filter-summary span,
.filter-summary em {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 11px;
  background: #fff;
  font-size: 13px;
  font-style: normal;
}
.filter-summary em { color: var(--primary); font-weight: 900; }
.dashboard-section-title { margin: 20px 0 12px; }
.dashboard-section-title h2 { margin: 0; font-size: 24px; color: #0c5f55; }
.dashboard-section-title p { margin: 5px 0 0; color: var(--muted); }
.kpi-card { width: 100%; text-align: left; }
.chart-card.wide, .table-card.wide { grid-column: span 2; }
.chart-card.full { grid-column: 1 / -1; }
.chart-note { margin: 14px 0 0; color: var(--primary); font-weight: 800; }
.rank-bar {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  display: grid;
  grid-template-columns: 28px 32px 70px 1fr 54px;
  gap: 10px;
  align-items: center;
  margin: 13px 0;
  padding: 4px;
  border-radius: 12px;
}
.rank-bar:hover, .clickable-row:hover, .action-row:hover { background: #f5fcf9; }
.rank-bar .rank-avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf8f5;
  overflow: hidden;
}
.rank-bar .rank-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.rank-bar .rank-avatar small {
  font-size: 18px;
  line-height: 1;
}
.rank-bar div { height: 9px; background: #e5f2ee; border-radius: 999px; overflow: hidden; }
.rank-bar i { display: block; height: 100%; background: var(--primary); border-radius: 999px; }
.rank-bar em { color: var(--muted); font-style: normal; text-align: right; font-size: 13px; }
.rank-table th, .rank-table td { padding: 11px 8px; font-size: 13px; }
.data-table-wrap { width: 100%; max-width: 100%; overflow-x: auto; }
.data-table { min-width: 760px; font-size: 13px; }
.data-table th {
  width: auto;
  white-space: nowrap;
  background: #f2faf7;
  color: #0c5f55;
  font-weight: 900;
}
.data-table td { white-space: nowrap; color: #365d57; }
.clickable-row { cursor: pointer; }
.data-table tbody tr:hover { background: #fbfefd; }
.donut { width: 190px; height: 190px; border-radius: 50%; margin: 0 auto 16px; background: conic-gradient(#0c8f7b 0 33%, #5da9ee 33% 61%, #8068d7 61% 79%, #f072a1 79% 92%, #f2a73d 92% 100%); display: grid; place-items: center; }
.donut span { width: 112px; height: 112px; border-radius: 50%; background: #fff; display: grid; place-items: center; text-align: center; color: var(--muted); }
.donut strong { color: var(--text); }
.legend { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; color: var(--muted); font-size: 13px; }
.legend button { border: 1px solid var(--line); border-radius: 10px; background: #fbfefd; color: var(--muted); padding: 8px; text-align: left; font-weight: 800; }
.legend button:hover { color: var(--primary); border-color: rgba(8, 122, 109, .35); }
.legend p { margin: 0; }
.smart-advice-card { overflow: hidden; }
.smart-advice-card .chart-head { align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.smart-advice-card .chart-head > div:first-child { display: block; }
.smart-advice-card .chart-head span { display: block; margin-top: 6px; }
.operation-action {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.priority-action {
  min-width: 0;
  border: 1px solid rgba(0, 137, 123, .18);
  border-radius: 18px;
  padding: 20px;
  background: linear-gradient(135deg, #f0fbf7, #fffaf0);
}
.priority-action.seeding {
  border-color: rgba(242, 167, 61, .28);
  background: linear-gradient(135deg, #fff9eb, #fbfefd);
}
.priority-action.scene {
  border-color: rgba(12, 143, 123, .22);
  background: linear-gradient(135deg, #f0fbf7, #fbfefd);
}
.priority-action.role {
  border-color: rgba(128, 104, 215, .24);
  background: linear-gradient(135deg, #f5f2ff, #fbfefd);
}
.priority-action.lab {
  border-color: rgba(239, 111, 143, .24);
  background: linear-gradient(135deg, #fff1f6, #fbfefd);
}
.priority-action > span {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #00897b;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.priority-action h4 {
  margin: 14px 0 10px;
  color: #063f3a;
  font-size: 24px;
  line-height: 1.28;
}
.priority-action p {
  margin: 0;
  color: #315c55;
  line-height: 1.7;
}
.action-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.action-meta b {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  color: #0c5f55;
  font-size: 12px;
}
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.action-buttons button {
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 10px 16px;
  background: #fff;
  color: var(--primary);
  font-weight: 900;
  cursor: pointer;
}
.action-buttons button:first-child {
  background: var(--primary);
  color: #fff;
}
.action-checklist {
  display: grid;
  gap: 10px;
}
.action-checklist.compact {
  margin-top: 16px;
}
.action-row {
  width: 100%;
  display: grid;
  grid-template-columns: 74px 1fr 20px;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: #fbfefd;
  text-align: left;
  cursor: pointer;
}
.action-row span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 14px;
  background: #edf8f5;
  color: #0c5f55;
  font-size: 13px;
  font-weight: 900;
}
.action-row strong {
  color: #063f3a;
  font-size: 16px;
}
.action-row small {
  color: #46665f;
  line-height: 1.5;
}
.action-row b {
  grid-column: 3;
  grid-row: 1 / span 2;
  color: var(--primary);
}
.action-empty {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: #fbfefd;
}
.action-empty strong { color: #063f3a; font-size: 18px; }
.action-empty p { margin: 0; color: var(--muted); }
.action-empty button {
  justify-self: start;
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.ai-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.chart-head > .ai-actions { flex-wrap: nowrap; }
.download-status {
  display: inline-flex;
  align-items: center;
  height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  background: #edf8f5;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}
.download-btn {
  border: 1px solid rgba(8, 122, 109, .32);
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-weight: 900;
  min-width: 64px;
  height: 38px;
  padding: 0 18px;
}
.empty-state { min-height: 180px; display: grid; place-items: center; text-align: center; color: var(--muted); }
.empty-state strong { color: #0c5f55; font-size: 18px; }
.empty-state button, .modal-primary {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(9, 42, 37, .36);
  backdrop-filter: blur(10px);
}
.modal-card {
  width: min(620px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 26px 70px rgba(6, 53, 47, .24);
}
.modal-card h2 { margin: 0 42px 16px 0; color: #0c5f55; }
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fbfefd;
  color: var(--text);
  font-size: 22px;
}
.modal-body { color: #365d57; line-height: 1.8; }
.modal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.modal-option {
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfefd;
  color: var(--text);
  text-align: left;
  padding: 14px;
}
.modal-option strong, .modal-option span { display: block; }
.modal-option span { color: var(--muted); margin-top: 6px; }
.modal-option.active { border-color: var(--primary); background: #edf8f5; color: var(--primary); }
.modal-hint { color: var(--muted); font-size: 13px; }
.detail-list { display: grid; grid-template-columns: 110px 1fr; gap: 10px 14px; margin: 0 0 18px; }
.detail-list dt { color: #0c5f55; font-weight: 900; }
.detail-list dd { margin: 0; color: #365d57; }
.big-number { margin: 0 0 8px; color: #0c5f55; font-size: 34px; font-weight: 900; }
.brief-list { margin: 0; padding-left: 20px; }
.brief-list li { margin: 8px 0; }
.lang-bar { display: grid; grid-template-columns: 80px 1fr 50px; gap: 10px; align-items: center; margin: 18px 0; }
.lang-bar div { height: 10px; border-radius: 999px; background: #edf3f1; overflow: hidden; }
.lang-bar i { display: block; height: 100%; background: var(--primary); }
.lang-bar b { font-size: 13px; color: var(--muted); }
.calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.calendar div { border: 1px solid var(--line); border-radius: 12px; min-height: 46px; display: grid; place-items: center; background: #fbfefd; }
.calendar div.active { background: var(--primary); color: white; }
.calendar b { font-size: 13px; }
.calendar span { font-size: 12px; color: var(--primary); }
.calendar .active span { color: white; }
.advice { grid-column: span 2; }
.advice > div { display: grid; grid-template-columns: 42px 1fr 22px; gap: 12px; align-items: center; border-bottom: 1px solid var(--line); padding: 11px 0; }
.advice span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 14px; background: #edf8f5; }
.advice p, .advice small { margin: 0; display: block; }
.advice small { color: var(--muted); margin-top: 4px; }

.site-footer { width: min(var(--max), calc(100% - 48px)); margin: 0 auto 24px; background: rgba(239, 248, 245, .92); border: 1px solid var(--line); border-radius: 24px; padding: 24px 34px 18px; box-shadow: var(--shadow-soft); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 2fr 1.2fr .8fr .8fr; gap: 24px; }
.site-footer h4 { margin: 0 0 10px; color: #0c5f55; }
.site-footer p { margin: 7px 0; color: #58766f; font-size: 14px; }
.socials { display: flex; gap: 9px; flex-wrap: wrap; }
.socials span { min-height: 34px; padding: 0 12px; border-radius: 999px; display: grid; place-items: center; background: white; color: var(--primary); border: 1px solid var(--line); font-weight: 900; font-size: 12px; }
.qr { width: 92px; height: 92px; border-radius: 10px; background: conic-gradient(from 90deg, #173a36 0 25%, #fff 0 50%, #173a36 0 75%, #fff 0) 0 0 / 18px 18px; display: grid; place-items: center; color: var(--primary); font-size: 12px; font-weight: 900; border: 8px solid #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; padding-top: 18px; margin-top: 14px; border-top: 1px solid var(--line); color: #77918c; font-size: 13px; }
.floating-tools { position: fixed; right: 22px; top: 120px; z-index: 45; display: grid; gap: 8px; }
.floating-tools button { width: 74px; min-height: 64px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-soft); color: var(--primary); font-weight: 900; }
.floating-tools span { display: block; color: var(--muted); font-size: 11px; margin-top: 4px; }
.toast { position: fixed; left: 50%; bottom: 34px; transform: translate(-50%, 30px); opacity: 0; pointer-events: none; background: rgba(10, 65, 58, .94); color: white; padding: 12px 22px; border-radius: 999px; box-shadow: var(--shadow); transition: opacity .2s ease, transform .2s ease; z-index: 100; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1480px) {
  .site-header {
    grid-template-columns: 250px minmax(0, 1fr) auto;
    padding-inline: 18px;
    gap: 10px;
  }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 11px; }
  .nav-link { padding-inline: 7px; font-size: 13px; }
  .search-box { width: 44px; flex-basis: 44px; }
  .search-box input { display: none; }
  .search-box button { width: 44px; }
  .lang { font-size: 12px; }
  .user-chip, .cart-chip { padding-inline: 10px; }
  .lab-page .lab-workbench {
    grid-template-columns: minmax(400px, .95fr) minmax(500px, 1.05fr);
  }
  .lab-page .emage-result-grid {
    grid-template-columns: minmax(300px, 1fr) minmax(280px, .95fr);
  }
}

@media (max-width: 1280px) {
  .site-header { grid-template-columns: 240px 1fr; }
  .header-actions { grid-column: 1 / -1; justify-content: flex-end; }
  .product-row { grid-template-columns: repeat(3, 1fr); }
  .product-detail-layout, .ai-workspace, .scene-detail-grid, .shop-layout, .lab-workbench, .content-library-layout, .content-detail-layout, .hot-recommend-layout { grid-template-columns: 1fr; }
  .content-detail-page .detail-side { position: static; }
  .task-board, .scene-result-grid, .workflow-steps, .publish-flow-grid, .voice-asset-grid { grid-template-columns: 1fr 1fr; }
  .holiday-calendar-block, .hot-page-head { grid-template-columns: 1fr; }
  .sku-main-hero,
  .sku-category-tabs,
  .sku-product-catalog,
  .sku-creator-hero,
  .sku-source-grid,
  .sku-config-grid,
  .sku-config-overview { grid-template-columns: 1fr; }
  .sku-config-block-wide { grid-column: auto; }
  .sku-return-button { justify-self: start; }
  .holiday-calendar-grid, .concept-library-grid { grid-template-columns: repeat(2, 1fr); }
  .data-return { grid-column: span 2; }
  .right-rank, .filter-sidebar { position: static; }
  .dashboard-head { grid-template-columns: 1fr 1fr; }
  .dashboard-head-actions { grid-column: 1 / -1; flex-direction: row; justify-content: flex-start; }
  .dashboard-head-actions .date-btn,
  .dashboard-head-actions .outline-btn { width: auto; }
  .lab-top-content { grid-template-columns: 1fr; }
  .lab-inspiration-hero,
  .lab-inspiration-board .lab-top-content,
  .lab-page .lab-workbench { grid-template-columns: 1fr; }
  .lab-inspiration-tools { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lab-page .lab-form { position: static; }
  .lab-top-module .holiday-calendar-grid,
  .lab-top-module .lab-news-column { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kpi-row { grid-template-columns: repeat(3, 1fr); }
  .module-metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .page, .site-footer { width: calc(100% - 24px); }
  .site-header { position: static; grid-template-columns: 1fr; padding: 14px; }
  .nav-links, .header-actions { overflow-x: auto; justify-content: flex-start; }
  .dashboard-head { grid-template-columns: 1fr; padding: 22px; }
  .dashboard-head-actions { flex-direction: column; }
  .dashboard-head-actions .date-btn,
  .dashboard-head-actions .outline-btn { width: 100%; }
  .lab-intro-video-overlay { padding: 14px; }
  .lab-intro-video-card {
    max-height: 94vh;
    grid-template-columns: 1fr;
    padding: 12px;
    overflow-y: auto;
    border-radius: 22px;
  }
  .lab-intro-video-copy { padding: 16px; }
  .lab-intro-video-close {
    right: 16px;
    top: 16px;
  }
  .lab-intro-video-dock {
    right: 14px;
    bottom: 16px;
    width: min(232px, calc(100vw - 28px));
  }
  .module-mini-head { align-items: flex-start; flex-direction: column; }
  .smart-advice-card .chart-head { display: grid; }
  .operation-action { grid-template-columns: 1fr; }
  .dashboard-split-row,
  .module-metric-grid { grid-template-columns: 1fr; }
  .chart-card.wide, .table-card.wide { grid-column: span 1; }
  .modal-grid { grid-template-columns: 1fr; }
  .hero, .sub-hero, .shop-title-row, .role-detail-panel, .two-col-section, .store-callout, .material-kit, .footer-grid, .footer-bottom, .holiday-calendar-block, .emage-result-grid, .content-mock, .hot-page-head { grid-template-columns: 1fr; }
  .content-editor-toolbar { align-items: stretch; flex-direction: column; }
  .content-editor-toolbar > div { justify-content: flex-start; }
  .content-article-card h1 { font-size: 32px; }
  .content-cover, .content-cover img { min-height: 220px; }
  .content-mock dl { grid-template-columns: 1fr; }
  .voice-card-carousel {
    grid-template-columns: 1fr 1fr;
  }
  .voice-card-carousel .voice-card {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .voice-switch {
    min-height: 46px;
    grid-row: 2;
  }
  .voice-switch small {
    writing-mode: horizontal-tb;
    letter-spacing: 0;
  }
  .sku-main-hero,
  .sku-category-tabs,
  .sku-product-catalog,
  .sku-config-overview,
  .sku-config-grid,
  .sku-role-picker,
  .sku-platform-grid,
  .sku-recent-records > div:last-child,
  .sku-mode-row,
  .sku-type-row,
  .sku-language-row,
  .sku-role-duty,
  .sku-video-action,
  .sku-creator-progress,
  .sku-request-grid,
  .sku-review-checklist,
  .sku-creator-navigation {
    grid-template-columns: 1fr;
  }
  .sku-video-player > div {
    align-items: flex-start;
    flex-direction: column;
  }
  .sku-video-player small { text-align: left; }
  .role-asset-card { grid-template-columns: 1fr; }
  .role-asset-preview img,
  .role-asset-card > img { height: 220px; }
  .hero { padding: 34px 24px; }
  .lab-inspiration-hero,
  .lab-inspiration-tools,
  .lab-inspiration-board .lab-top-content {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }
  .lab-inspiration-copy h2 { font-size: 32px; }
  .lab-page .emage-result-grid { grid-template-columns: 1fr; }
  .character-line { position: static; margin-top: 30px; flex-wrap: wrap; }
  .role-strip, .scene-row, .ai-preview-grid, .usage-grid, .product-grid, .destination-cards, .kpi-row, .dashboard-grid, .task-board, .scene-result-grid, .workflow-steps, .publish-flow-grid, .voice-asset-grid, .return-metrics, .holiday-calendar-grid, .concept-library-grid, .hot-content-grid { grid-template-columns: 1fr; }
  .lab-top-module .holiday-calendar-grid,
  .lab-top-module .lab-news-column { grid-template-columns: 1fr; }
  .data-return { grid-column: span 1; }
  .content-grid { grid-template-columns: 1fr; }
  .scene-tabs { grid-template-columns: 1fr 1fr; margin: 0 0 18px; }
  .product-row { grid-template-columns: 1fr; }
  .floating-tools { display: none; }
}

.scene-studio-platform {
  --scene-canvas: #fbfaf7;
  --scene-surface: #ffffff;
  --scene-surface-2: #f4f7f5;
  --scene-ink: #19212b;
  --scene-muted: #68717d;
  --scene-line: #e1ddd4;
  --scene-line-strong: #c8c0b3;
  --scene-brand: #0f766e;
  --scene-brand-dark: #0b3b37;
  --scene-blue: #316f9f;
  --scene-green: #16805c;
  --scene-shadow: 0 8px 22px rgba(40, 34, 25, .07);
  display: grid;
  gap: 12px;
  color: var(--scene-ink);
}
.scene-studio-platform button { cursor: pointer; }
.scene-studio-platform h1,
.scene-studio-platform h2,
.scene-studio-platform h3,
.scene-studio-platform h4,
.scene-studio-platform p { margin-top: 0; }
.scene-studio-platform h1 { margin-bottom: 0; font-size: 30px; line-height: 1.18; color: var(--scene-brand-dark); }
.scene-studio-platform h2 { margin-bottom: 6px; font-size: 26px; line-height: 1.18; }
.scene-studio-platform h3 { margin-bottom: 10px; font-size: 17px; line-height: 1.28; }
.scene-studio-platform h4 { margin-bottom: 7px; font-size: 14px; line-height: 1.35; }
.scene-studio-platform p { line-height: 1.62; }
.scene-studio-topbar,
.scene-studio-page-header,
.scene-studio-card,
.scene-wire-card {
  background: var(--scene-surface);
  border: 1px solid var(--scene-line);
  border-radius: 16px;
  box-shadow: var(--scene-shadow);
}
.scene-studio-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
}
.scene-topbar-actions,
.scene-button-row,
.scene-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.scene-flow-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.scene-flow-strip span {
  min-height: 38px;
  padding: 10px 8px;
  color: #46525d;
  text-align: center;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--scene-line);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
}
.scene-studio-root { display: grid; gap: 14px; }
.scene-studio-page-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
}
.scene-studio-page-header p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--scene-muted);
}
.scene-studio-card,
.scene-wire-card { padding: 16px; }
.scene-wire-card {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, .045), transparent 54%),
    var(--scene-surface);
}
.scene-studio-grid { display: grid; gap: 14px; }
.scene-studio-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.scene-studio-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.scene-studio-eyebrow {
  margin: 0 0 6px;
  color: var(--scene-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.scene-studio-section-title {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 12px;
}
.scene-studio-section-title p {
  margin-bottom: 0;
  color: var(--scene-muted);
  font-size: 13px;
}
.scene-status-pill,
.studio-tag,
.scene-mini-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 5px 9px;
  color: var(--scene-blue);
  background: #eaf2f8;
  border: 1px solid rgba(49, 111, 159, .2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.scene-status-pill.generated,
.studio-tag.green {
  color: var(--scene-green);
  background: #e9f6ef;
  border-color: rgba(22, 128, 92, .22);
}
.scene-status-pill.generating {
  color: #8a5b14;
  background: #fff3df;
  border-color: rgba(185, 130, 43, .22);
}
.studio-tag {
  color: #46525d;
  background: #f7f7f4;
  border-color: var(--scene-line);
}
.studio-tag.blue {
  color: var(--scene-blue);
  background: #eaf2f8;
}
.scene-mini-pill {
  color: var(--scene-muted);
  background: var(--scene-surface-2);
  border-color: var(--scene-line);
}
.scene-primary-button,
.scene-secondary-button,
.scene-primary-small,
.scene-studio-chip,
.scene-option-buttons button {
  border-radius: 12px;
  transition: .16s ease;
}
.scene-secondary-button,
.scene-studio-chip {
  padding: 9px 12px;
  color: var(--scene-ink);
  background: #fff;
  border: 1px solid var(--scene-line-strong);
}
.scene-primary-button,
.scene-primary-small {
  padding: 10px 14px;
  color: #fff;
  background: var(--scene-brand);
  border: 1px solid rgba(15, 118, 110, .85);
  box-shadow: 0 10px 18px rgba(15, 118, 110, .16);
}
.scene-primary-small { padding: 8px 12px; }
.scene-secondary-button:hover,
.scene-studio-chip:hover,
.scene-option-buttons button:hover { border-color: var(--scene-brand); }
.scene-studio-platform button:disabled {
  cursor: not-allowed;
  color: #8c96a3;
  background: #eef0f1;
  border-color: #d8dde2;
  box-shadow: none;
}
.scene-primary-small.sent {
  color: var(--scene-green);
  background: #e9f6ef;
  border-color: rgba(22, 128, 92, .3);
  box-shadow: none;
}
.scene-link-button {
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  font-weight: 900;
}
.full-width { width: 100%; }
.scene-category-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.scene-category-tabs button {
  display: grid;
  gap: 7px;
  min-height: 104px;
  padding: 14px;
  color: var(--scene-ink);
  text-align: left;
  background: #fff;
  border: 1px solid var(--scene-line-strong);
  border-radius: 12px;
}
.scene-category-tabs button.active {
  color: var(--scene-brand-dark);
  background: #e8f5f1;
  border-color: rgba(15, 118, 110, .42);
  box-shadow: inset 0 -3px 0 var(--scene-brand);
}
.scene-category-tabs button span,
.scene-platform-card p,
.scene-inspiration-card p,
.scene-inspiration-card small,
.scene-knowledge-list p,
.scene-worldview-card p,
.scene-premium-list span {
  color: var(--scene-muted);
  font-size: 13px;
  line-height: 1.5;
}
.scene-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.scene-generator-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.scene-studio-field { display: grid; gap: 7px; }
.scene-studio-field label { color: #344155; font-size: 13px; font-weight: 800; }
.scene-studio-chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.scene-studio-chip {
  color: var(--scene-muted);
  background: #fff;
}
.scene-studio-chip.active {
  color: var(--scene-brand);
  background: #e8f5f1;
  border-color: rgba(15, 118, 110, .34);
  font-weight: 800;
}
.scene-body-preview {
  min-height: 92px;
  padding: 12px;
  color: #526174;
  background: var(--scene-surface-2);
  border: 1px solid var(--scene-line);
  border-radius: 12px;
  line-height: 1.65;
}
.scene-output-video {
  display: block;
  width: min(100%, 260px);
  aspect-ratio: 9 / 16;
  margin: 0 0 10px;
  object-fit: contain;
  background: #0b3b37;
  border: 1px solid var(--scene-line);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.scene-creator-video {
  width: min(100%, 320px);
  margin-right: auto;
  margin-left: auto;
}
.scene-creator-shell { display: grid; gap: 14px; }
.scene-creator-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: stretch;
  padding: 20px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 59, 55, .98), rgba(15, 118, 110, .92)),
    radial-gradient(circle at 80% 12%, rgba(213, 171, 88, .2), transparent 30%);
  border-radius: 16px;
  box-shadow: var(--scene-shadow);
}
.scene-creator-hero p { max-width: 860px; color: rgba(255,255,255,.78); }
.scene-creator-hero .scene-studio-eyebrow { color: rgba(255,255,255,.58); }
.scene-breadcrumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.scene-creator-status {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  min-height: 150px;
  padding: 16px;
  color: #dceee9;
  text-align: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
}
.scene-creator-status.ready {
  color: #fff;
  background: rgba(213, 171, 88, .18);
}
.scene-creator-status strong { display: block; font-size: 24px; }
.scene-creator-progress {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.scene-creator-progress button {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 46px;
  padding: 10px;
  color: var(--scene-muted);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--scene-line);
  border-radius: 12px;
  text-align: left;
}
.scene-creator-progress button.active,
.scene-creator-progress button.done {
  color: var(--scene-brand-dark);
  background: #e8f5f1;
  border-color: rgba(15, 118, 110, .26);
}
.scene-creator-progress button.active { box-shadow: inset 0 -3px 0 var(--scene-brand); }
.scene-creator-progress span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: inherit;
  background: rgba(255,255,255,.72);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}
.scene-creator-stage {
  display: grid;
  gap: 14px;
  min-height: 520px;
}
.scene-creator-stage.single { grid-template-columns: minmax(0, 1fr); }
.scene-creator-stage.split { grid-template-columns: minmax(340px, .85fr) minmax(0, 1.15fr); align-items: start; }
.scene-creator-stage.narrow-right { grid-template-columns: minmax(0, 1fr) minmax(320px, .58fr); }
.scene-stage-card { min-height: 100%; }
.scene-source-stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
}
.scene-source-primary {
  display: grid;
  align-content: center;
  min-height: 360px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 59, 55, .96), rgba(15, 118, 110, .88)),
    radial-gradient(circle at 86% 16%, rgba(213, 171, 88, .18), transparent 30%);
  border-radius: 12px;
}
.scene-source-primary .scene-studio-eyebrow,
.scene-source-primary p { color: rgba(255,255,255,.76); }
.scene-source-side,
.scene-option-stack,
.scene-inspiration-list,
.scene-knowledge-list,
.scene-ops-stack,
.scene-premium-list,
.scene-variant-list,
.scene-draft-records { display: grid; gap: 10px; }
.scene-source-side div,
.scene-source-lock div,
.scene-request-summary div,
.scene-worldview-card,
.scene-premium-list div,
.scene-knowledge-list article,
.scene-selected-inspiration,
.scene-publish-preview,
.scene-draft-box,
.scene-draft-records div {
  display: grid;
  gap: 6px;
  padding: 12px;
  background: var(--scene-surface-2);
  border: 1px solid var(--scene-line);
  border-radius: 12px;
}
.scene-source-side span,
.scene-source-lock span,
.scene-option-label span,
.scene-request-summary span {
  color: var(--scene-muted);
  font-size: 12px;
  font-weight: 900;
}
.scene-source-side small,
.scene-source-lock small { color: var(--scene-muted); line-height: 1.45; }
.scene-source-lock {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.scene-option-group { display: grid; gap: 8px; }
.scene-option-label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.scene-option-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.scene-option-buttons button {
  display: grid;
  gap: 4px;
  min-height: 66px;
  padding: 10px;
  color: var(--scene-ink);
  text-align: left;
  background: #fff;
  border: 1px solid var(--scene-line-strong);
}
.scene-option-buttons button.active {
  color: var(--scene-brand-dark);
  background: #e8f5f1;
  border-color: rgba(15, 118, 110, .42);
  box-shadow: inset 3px 0 0 var(--scene-brand);
}
.scene-option-buttons button span {
  color: var(--scene-muted);
  font-size: 12px;
  line-height: 1.35;
}
.scene-spec-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}
.scene-spec-strip span {
  padding: 6px 8px;
  color: var(--scene-blue);
  background: #eaf2f8;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.scene-request-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 12px;
}
.scene-inspiration-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: var(--scene-surface-2);
  border: 1px solid var(--scene-line);
  border-radius: 12px;
}
.scene-inspiration-card.selected {
  background: #f7fbf9;
  border-color: rgba(15, 118, 110, .28);
  box-shadow: inset 3px 0 0 var(--scene-brand);
}
.scene-inspiration-card > div,
.scene-knowledge-list article > div,
.scene-variant-list div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 7px;
  align-items: center;
}
.scene-creator-preview {
  display: grid;
  gap: 12px;
  min-height: 318px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(49, 111, 159, .045), transparent 58%),
    var(--scene-surface-2);
  border: 1px dashed var(--scene-line-strong);
  border-radius: 12px;
}
.scene-creator-preview.generated {
  background: #fff;
  border-style: solid;
}
.scene-creator-preview.is-generating-video {
  background: #fff;
  border-style: solid;
}
.scene-video-generation-frame {
  position: relative;
  min-height: 260px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 36%, rgba(49, 111, 159, .16), transparent 15rem),
    linear-gradient(135deg, #f7fbff, #eef7f2);
  overflow: hidden;
}
.scene-video-generation-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  padding: 24px;
  color: var(--scene-primary);
  text-align: center;
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.scene-video-generation-loader i {
  width: 54px;
  height: 54px;
  border: 5px solid rgba(49, 111, 159, .14);
  border-top-color: var(--scene-primary);
  border-radius: 50%;
  animation: spin .82s linear infinite;
}
.scene-video-generation-loader strong {
  font-size: 18px;
  font-weight: 900;
}
.scene-video-generation-loader small {
  max-width: 300px;
  color: var(--scene-muted);
  font-size: 13px;
  font-weight: 800;
}
.scene-empty-state {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 240px;
  text-align: center;
}
.scene-empty-state p {
  max-width: 430px;
  color: var(--scene-muted);
}
.scene-variant-list div {
  padding: 10px 11px;
  background: var(--scene-surface-2);
  border: 1px solid var(--scene-line);
  border-radius: 12px;
}
.scene-variant-list div.active,
.scene-draft-box.sent,
.scene-review-checklist div.passed {
  background: #e9f6ef;
  border-color: rgba(22, 128, 92, .24);
}
.scene-variant-list span,
.scene-draft-box span,
.scene-draft-records small,
.scene-review-checklist span {
  color: var(--scene-muted);
  font-size: 12px;
}
.scene-review-checklist {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}
.scene-review-checklist div {
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 10px;
  background: var(--scene-surface-2);
  border: 1px solid var(--scene-line);
  border-radius: 12px;
}
.scene-audit-note { min-height: auto; margin: 12px 0; }
.scene-draft-actions { display: grid; gap: 8px; margin-bottom: 12px; }
.scene-heat-bar {
  overflow: hidden;
  height: 8px;
  background: #e4e7e4;
  border-radius: 999px;
}
.scene-heat-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--scene-brand), #d7ab58);
  border-radius: inherit;
}
.scene-creator-navigation {
  position: sticky;
  bottom: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 240px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: rgba(246, 244, 239, .94);
  border: 1px solid var(--scene-line);
  border-radius: 12px;
  box-shadow: var(--scene-shadow);
  backdrop-filter: blur(16px);
}
.scene-creator-navigation > div {
  display: grid;
  gap: 3px;
  justify-items: center;
}
.scene-creator-navigation span {
  color: var(--scene-muted);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .scene-creator-hero,
  .scene-creator-stage.split,
  .scene-creator-stage.narrow-right,
  .scene-source-stage-grid { grid-template-columns: 1fr; }
  .scene-creator-status { min-height: 112px; }
}

@media (max-width: 860px) {
  .scene-studio-topbar,
  .scene-studio-page-header {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }
  .scene-studio-topbar { flex-direction: column; }
  .scene-flow-strip,
  .scene-category-tabs,
  .scene-studio-grid.two,
  .scene-studio-grid.three,
  .scene-form-grid,
  .scene-generator-grid,
  .scene-creator-progress,
  .scene-review-checklist,
  .scene-source-lock,
  .scene-option-buttons,
  .scene-request-summary,
  .scene-creator-navigation {
    grid-template-columns: 1fr;
  }
  .scene-creator-hero { padding: 16px; }
  .scene-creator-progress button { min-height: 40px; }
  .scene-creator-navigation { position: static; }
  .scene-source-primary {
    min-height: 260px;
    padding: 18px;
  }
}

:root {
  --bg: #f4f8f5;
  --bg-2: #eaf3ee;
  --card: rgba(255, 255, 255, .9);
  --text: #123a35;
  --muted: #657f79;
  --primary: #087a6d;
  --primary-2: #11a58d;
  --primary-soft: #e3f5ef;
  --line: rgba(19, 87, 76, .13);
  --gold: #d9a64f;
  --orange: #e97843;
  --blue: #4f93cf;
  --shadow: 0 26px 70px rgba(10, 74, 64, .13);
  --shadow-soft: 0 14px 36px rgba(13, 78, 68, .09);
  --radius: 26px;
  --radius-sm: 16px;
  --font-sans: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --font-display: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
  --surface-glass: rgba(255, 255, 255, .78);
  --surface-solid: #ffffff;
  --action-gradient: linear-gradient(135deg, #066e63, #10a58e 58%, #22b99e);
  --focus-ring: 0 0 0 4px rgba(17, 165, 141, .18);
}

body {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  font-family: var(--font-sans);
  letter-spacing: -.01em;
  background:
    radial-gradient(circle at 12% -8%, rgba(17, 165, 141, .18), transparent 30rem),
    radial-gradient(circle at 92% 10%, rgba(217, 166, 79, .16), transparent 28rem),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 38%, #eef6f2 100%);
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, transparent 0 68%, rgba(255,255,255,.38) 68% 100%),
    radial-gradient(ellipse at 22% 72%, rgba(8, 122, 109, .08), transparent 26rem),
    radial-gradient(ellipse at 78% 68%, rgba(217, 166, 79, .08), transparent 24rem);
}

h1, h2, h3, h4,
.brand strong,
.hero h1,
.sub-hero h1,
.shop-title-row h1,
.ai-title-row h1,
.dashboard-head h1,
.sku-main-hero h1,
.sku-creator-hero h1,
.scene-studio-platform h1,
.scene-studio-platform h2,
.scene-creator-hero h2,
.lab-top-head h2,
.holiday-calendar-title h2,
.hot-page-head h1,
.content-article-card h1 {
  font-family: var(--font-display);
  letter-spacing: -.035em;
}

button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[contenteditable="true"]:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}

.site-header {
  grid-template-columns: 280px minmax(0, 1fr) auto;
  padding: 14px 26px;
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(19, 87, 76, .12);
  box-shadow: 0 16px 44px rgba(8, 67, 58, .08);
}
.brand-mark { border-radius: 16px; background: var(--action-gradient); }
.nav-links { gap: 7px; }
.nav-link {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 13px;
  color: #2f514b;
  background: rgba(255,255,255,.46);
}
.nav-link::after { display: none; }
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: #eef8f4;
  border-color: rgba(8,122,109,.18);
  box-shadow: inset 0 -2px 0 rgba(8,122,109,.22);
}
.search-box,
.user-chip,
.cart-chip {
  border: 1px solid rgba(8,122,109,.12);
  box-shadow: 0 10px 26px rgba(11, 84, 75, .08);
}
.cart-chip,
.search-box button { background: var(--action-gradient); }
.page { padding-top: 26px; padding-bottom: 40px; }

.hero,
.sub-hero,
.dashboard-head,
.ai-title-row,
.sku-main-hero,
.scene-studio-page-header,
.holiday-calendar-block,
.hot-page-head,
.lab-inspiration-hero {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(238,248,243,.9) 54%, rgba(255,245,225,.82)),
    radial-gradient(circle at 82% 18%, rgba(17,165,141,.16), transparent 22rem);
  box-shadow: var(--shadow);
}
.hero::before,
.sub-hero::before,
.dashboard-head::before,
.ai-title-row::before,
.sku-main-hero::before,
.scene-studio-page-header::before,
.holiday-calendar-block::before,
.hot-page-head::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 20%, rgba(217,166,79,.2), transparent 18rem),
    linear-gradient(128deg, transparent 0 64%, rgba(255,255,255,.44) 64% 100%);
}
.scene-studio-page-header,
.holiday-calendar-block,
.hot-page-head { position: relative; }
.scene-studio-page-header > *,
.holiday-calendar-block > *,
.hot-page-head > * { position: relative; z-index: 1; }

.hero h1,
.sub-hero h1,
.shop-title-row h1,
.ai-title-row h1,
.dashboard-head h1,
.sku-main-hero h1,
.sku-creator-hero h1,
.scene-studio-platform h1,
.hot-page-head h1 {
  color: #083f39;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.06;
}
.hero p,
.sub-hero p,
.shop-title-row p,
.ai-title-row p,
.dashboard-head p,
.sku-main-hero p,
.sku-creator-hero p,
.scene-studio-page-header p,
.hot-page-head p {
  color: #315b55;
  line-height: 1.75;
}
.head-eyebrow,
.sku-eyebrow,
.scene-studio-eyebrow,
.lab-top-head span,
.holiday-calendar-title span,
.hot-page-head span {
  color: var(--primary);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.content-block,
.white-card,
.role-detail-panel,
.detail-tabs-panel,
.store-callout,
.material-kit,
.product-card,
.content-card,
.usage-card,
.voice-card,
.voice-actions,
.buy-panel,
.side-card,
.chart-card,
.flow-card,
.ai-form,
.ai-results,
.campaign-card,
.scene-studio-card,
.scene-wire-card,
.sku-main-summary,
.sku-catalog-card,
.sku-stage-card,
.sku-recent-records,
.sku-creator-navigation,
.lab-form,
.emage-result-panel,
.hot-news-panel,
.concept-summary-card,
.content-article-card,
.hot-product-list,
.filter-sidebar,
.right-rank,
.modal-card {
  background: var(--surface-glass);
  border: 1px solid rgba(19, 87, 76, .12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}
.content-block,
.chart-card,
.scene-studio-card,
.scene-wire-card,
.sku-catalog-card,
.sku-stage-card,
.lab-form,
.emage-result-panel,
.concept-summary-card,
.content-article-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover,
.content-card:hover,
.usage-card:hover,
.scene-wire-card:hover,
.sku-catalog-card:hover,
.concept-card:hover,
.holiday-card:hover,
.hot-news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(8,122,109,.24);
  box-shadow: 0 22px 48px rgba(11, 84, 75, .12);
}
.section-head h2,
.lab-top-head h2,
.holiday-calendar-title h2,
.chart-card h3,
.scene-studio-section-title h3,
.sku-catalog-card h3,
.lab-form h3,
.hot-news-panel h3,
.concept-summary-card h2,
.hot-product-list h3,
.side-card h3 { color: #083f39; }

.primary-btn,
.mini-primary,
.cart-chip,
.modal-primary,
.empty-state button,
.scene-primary-button,
.scene-primary-small,
.sku-seeding-jump-btn,
.action-empty button {
  border: 0;
  color: #fff;
  background: var(--action-gradient);
  box-shadow: 0 12px 28px rgba(8, 122, 109, .2);
}
.outline-btn,
.ghost-btn,
.download-btn,
.date-btn,
.filter-reset,
.scene-secondary-button,
.scene-studio-chip,
.sku-return-button,
.text-link {
  color: var(--primary);
  background: rgba(255,255,255,.72);
  border-color: rgba(8,122,109,.2);
}
.primary-btn:hover,
.outline-btn:hover,
.mini-primary:hover,
.ghost-btn:hover,
.download-btn:hover,
.date-btn:hover,
.scene-primary-button:hover,
.scene-secondary-button:hover,
.scene-primary-small:hover,
.sku-return-button:hover,
.sku-seeding-jump-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(8, 122, 109, .18);
}

.tag-row span,
.badges span,
.price-row span,
.sort-bar span,
.chip-input span,
.role-mini p span,
.sku-mini-pill,
.sku-status-pill,
.scene-mini-pill,
.studio-tag,
.content-type-badge,
.holiday-product-row span,
.hot-news-products span,
.incubation-prompt-summary span {
  color: var(--primary);
  background: rgba(8,122,109,.08);
  border: 1px solid rgba(8,122,109,.12);
}
.product-art,
.sku-catalog-thumb,
.incubation-product-preview,
.wide-scenery,
.content-cover,
.scene-body-preview,
.scene-creator-preview,
.schedule-box,
.return-metrics div,
.action-empty,
.scene-source-side div,
.scene-source-lock div,
.scene-request-summary div,
.scene-worldview-card,
.scene-premium-list div,
.scene-knowledge-list article,
.scene-selected-inspiration,
.scene-publish-preview,
.scene-draft-box,
.scene-draft-records div {
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(235,247,241,.86)),
    radial-gradient(circle at 86% 16%, rgba(217,166,79,.12), transparent 12rem);
  border-color: rgba(19, 87, 76, .12);
}
.product-card { min-height: 314px; }
.product-card.compact { min-height: 268px; }
.product-card h3,
.sku-catalog-card h3 { line-height: 1.28; }
.mini-primary { min-height: 34px; }

.scene-studio-platform,
.sku-video-page {
  --scene-canvas: var(--bg);
  --scene-surface: var(--surface-glass);
  --scene-surface-2: #f3f8f5;
  --scene-ink: var(--text);
  --scene-muted: var(--muted);
  --scene-line: var(--line);
  --scene-line-strong: rgba(8,122,109,.22);
  --scene-brand: var(--primary);
  --scene-brand-dark: #083f39;
  --scene-shadow: var(--shadow-soft);
  --sku-surface: var(--surface-glass);
  --sku-soft: #f3f8f5;
  --sku-line: var(--line);
  --sku-brand: var(--primary);
  --sku-dark: #083f39;
  --sku-warm: var(--gold);
}
.sku-creator-hero,
.scene-creator-hero,
.scene-source-primary {
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(7, 55, 50, .98), rgba(8, 122, 109, .94)),
    radial-gradient(circle at 82% 18%, rgba(217,166,79,.22), transparent 24rem);
  box-shadow: var(--shadow);
}
.sku-creator-hero h1,
.sku-creator-hero .sku-eyebrow,
.scene-creator-hero h2,
.scene-creator-hero .scene-studio-eyebrow { color: #fff; }
.sku-creator-hero p,
.scene-creator-hero p,
.scene-source-primary p { color: rgba(255,255,255,.78); }

.dashboard-filters,
.filter-summary,
.sku-category-tabs button,
.sku-platform-grid button,
.sku-type-row button,
.sku-language-row button,
.sku-mode-row button,
.scene-category-tabs button,
.scene-option-buttons button,
.modal-option,
.lab-form select,
.lab-form input,
.ai-form select,
.chip-input,
.search-box {
  background: rgba(255,255,255,.72);
  border-color: rgba(8,122,109,.14);
}
.dashboard-filters button.active,
.dashboard-filters button:hover,
.sku-category-tabs button.active,
.sku-platform-grid button.active,
.sku-type-row button.active,
.sku-language-row button.active,
.sku-mode-row button.active,
.sku-role-tile.active,
.scene-category-tabs button.active,
.scene-option-buttons button.active,
.modal-option.active {
  color: var(--primary);
  background: #edf8f4;
  border-color: rgba(8,122,109,.32);
  box-shadow: inset 0 -3px 0 var(--primary);
}
.site-footer {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
}

@media (max-width: 1480px) {
  .site-header { grid-template-columns: 260px minmax(0, 1fr) auto; }
}
@media (max-width: 1280px) {
  .site-header { grid-template-columns: 240px 1fr; }
}
@media (max-width: 860px) {
  .page,
  .site-footer { width: calc(100% - 24px); }
  .hero,
  .sub-hero,
  .dashboard-head,
  .ai-title-row,
  .sku-main-hero,
  .scene-studio-page-header,
  .holiday-calendar-block,
  .hot-page-head,
  .lab-inspiration-hero {
    border-radius: 24px;
    padding: 22px;
  }
  .site-header { border-radius: 0 0 22px 22px; }
  .nav-link { white-space: nowrap; }
}
