@charset "utf-8";
/* ============================================================
   米优客户使用界面 · 三档皮肤【智能版 smart】
   基调：深邃优雅（近黑微紫 + 柔紫单强调色），不做夜店紫。
   —— 深色体系全套变量覆写保留不动；
   —— 常驻只剩一行「在岗条」（#tierZone）+ 右下 56px 呼吸球；
      对话 / 分步授权 / 赛马榜全部收进右侧 380px 滑出侧板（三 tab）。
   —— 每条规则都锁在 body[data-tier="smart"] 之下，别档不受影响。
   —— 只覆写气质（变量+配色），绝不隐藏/破坏
      .topbar / .frame-wrap / .assets-dock 任何区块；类名不改、DOM 不动。
   ============================================================ */

/* ---------- 一、整页换气质：深色全套变量（新旧两套都覆写） ---------- */
body[data-tier="smart"] {
  --bg: #101014;                                /* 近黑微紫 */
  --panel: #1a1a21;                             /* 深色面板 */
  --ink: #f2f1f6;                               /* 浅色主文字 */
  --soft-ink: #c0bfca;                          /* 次级文字 */
  --muted: #8e8d98;                             /* 弱化文字 */
  --line: rgba(255, 255, 255, .07);             /* 细分隔线 */
  --line-strong: rgba(255, 255, 255, .14);
  --accent: #8b7cf6;                            /* 柔紫单强调色 */
  --accent-soft: rgba(139, 124, 246, .12);
  --ok: #5bb98c;
  --warn: #c9a96a;
  --danger: #e07b71;
  /* 旧变量名映射：深色下全部降饱和 */
  --green: #5bb98c;
  --green-soft: rgba(91, 185, 140, .12);
  --purple: #8b7cf6;
  --purple-soft: rgba(139, 124, 246, .14);
  --amber: #c9a96a;
  --amber-soft: rgba(201, 169, 106, .10);
  --amber-line: rgba(201, 169, 106, .32);
  --gray: #8e8d98;
  --gray-soft: #232329;
  --danger-soft: rgba(224, 123, 113, .12);
  --shadow: 0 1px 2px rgba(0, 0, 0, .35), 0 10px 30px rgba(0, 0, 0, .30);

  color: var(--ink);
  /* 径向紫光收敛到几乎不可见（5% 透明度） */
  background:
    radial-gradient(1200px 620px at 18% -10%, rgba(139, 124, 246, .05), transparent 60%),
    radial-gradient(1000px 560px at 85% -6%, rgba(139, 124, 246, .04), transparent 55%),
    var(--bg);
  background-attachment: fixed;
}
body[data-tier="smart"] ::selection { background: rgba(139, 124, 246, .35); color: #fff; }

/* 深色滚动条（细节质感，保持安静） */
body[data-tier="smart"] ::-webkit-scrollbar { width: 10px; height: 10px; }
body[data-tier="smart"] ::-webkit-scrollbar-track { background: transparent; }
body[data-tier="smart"] ::-webkit-scrollbar-thumb {
  background: #2e2e38; border-radius: 999px; border: 2px solid #101014;
}
body[data-tier="smart"] ::-webkit-scrollbar-thumb:hover { background: #3a3a46; }

/* ---------- 二、顶部常驻栏：玻璃拟态收敛（白描边降到 .06） ---------- */
body[data-tier="smart"] .topbar {
  background: rgba(20, 20, 26, .94);            /* 兜底：不支持毛玻璃也够深 */
  border-bottom-color: rgba(255, 255, 255, .06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
}
@supports ((backdrop-filter: blur(4px)) or (-webkit-backdrop-filter: blur(4px))) {
  body[data-tier="smart"] .topbar {
    background: rgba(20, 20, 26, .72);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }
}
body[data-tier="smart"] .brand { color: var(--ink); text-shadow: none; }
body[data-tier="smart"] .brand small { color: var(--muted); }

body[data-tier="smart"] .sku-current {
  border-color: rgba(139, 124, 246, .30);
  color: #b9aef9;
  background: var(--accent-soft);
  box-shadow: none;
}
body[data-tier="smart"] .sku-current.empty {
  color: var(--muted); background: var(--gray-soft); border-color: var(--line);
  box-shadow: none;
}
body[data-tier="smart"] .sku-block input {
  background: #131318; color: var(--ink); border-color: var(--line-strong);
}
body[data-tier="smart"] .sku-block input::placeholder { color: var(--muted); }
body[data-tier="smart"] .sku-block input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 124, 246, .18);
}
body[data-tier="smart"] .sku-block button {
  background: var(--accent);
  color: #14141a;
  box-shadow: none;
  transition: background .18s ease-out;
}
body[data-tier="smart"] .sku-block button:hover { background: #9c8ff8; filter: none; }

body[data-tier="smart"] .switch-group > span { color: var(--soft-ink); }
body[data-tier="smart"] .seg { background: #131318; border-color: var(--line-strong); }
body[data-tier="smart"] .seg button { color: var(--soft-ink); }
body[data-tier="smart"] .seg.tier button.on {
  background: var(--accent);
  color: #14141a;
  box-shadow: none;
}
body[data-tier="smart"] .seg.source button.on { background: #2e5c48; color: #dbefe4; }

/* ---------- 三、步骤条：深色下当前站 = 柔紫圈，其余灰 ---------- */
body[data-tier="smart"] .stepbar-wrap {
  background: rgba(20, 20, 26, .92);
  border-bottom-color: rgba(255, 255, 255, .06);
}
@supports ((backdrop-filter: blur(4px)) or (-webkit-backdrop-filter: blur(4px))) {
  body[data-tier="smart"] .stepbar-wrap {
    background: rgba(20, 20, 26, .70);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
}
body[data-tier="smart"] .step { background: #1e1e26; border-color: var(--line); }
body[data-tier="smart"] .step:hover:not(.active) { background: #26262f; border-color: var(--line-strong); }
body[data-tier="smart"] .step-no { background: #26262f; border-color: var(--line-strong); color: var(--muted); }
body[data-tier="smart"] .step-name { color: var(--ink); }
body[data-tier="smart"] .step.active,
body[data-tier="smart"] .step.active:hover {
  background: #232331;
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(139, 124, 246, .55), 0 0 0 4px rgba(139, 124, 246, .12);
}
body[data-tier="smart"] .step.active .step-no { background: rgba(255, 255, 255, .12); border-color: transparent; color: #fff; }
body[data-tier="smart"] .step-arrow { color: #4a4a55; }

/* ---------- 四、主面板 / 占位站 / 嵌入操作页 ---------- */
body[data-tier="smart"] .stage,
body[data-tier="smart"] .assets-dock {
  background: var(--panel);
  border-color: rgba(255, 255, 255, .06);
}
body[data-tier="smart"] .stage-head { border-bottom-color: var(--line); }
body[data-tier="smart"] .stage-head h2 { color: var(--ink); }

/* iframe 嵌的操作页保持白底原样（外壳只包不动） */
body[data-tier="smart"] .frame-wrap { background: #fff; }
body[data-tier="smart"] .frame-wrap iframe { background: #fff; }
body[data-tier="smart"] .frame-note {
  background: #17171d; border-top-color: var(--line); color: var(--muted);
}

body[data-tier="smart"] .placeholder h3 { color: var(--ink); }
body[data-tier="smart"] .placeholder .ph-icon { filter: none; }

/* ---------- 五、资产库托底 / 采集货池 / 备料小结 ---------- */
body[data-tier="smart"] .assets-head { border-bottom-color: var(--line); }
body[data-tier="smart"] .assets-head h2 { color: var(--ink); }
body[data-tier="smart"] .asset-filters button.on {
  background: var(--accent);
  color: #14141a;
}
body[data-tier="smart"] .asset-card,
body[data-tier="smart"] .market-card {
  background: #1e1e26; border-color: var(--line);
}
body[data-tier="smart"] .asset-thumb,
body[data-tier="smart"] .market-thumb { background: #26262f; }
body[data-tier="smart"] .asset-name,
body[data-tier="smart"] .market-name { color: var(--ink); }

body[data-tier="smart"] .prep-cell { background: #1e1e26; border-color: var(--line-strong); }
body[data-tier="smart"] .prep-cell b { color: #b9aef9; text-shadow: none; }
body[data-tier="smart"] .prep-cell.zero b { color: var(--muted); text-shadow: none; }

/* ============================================================
   六、#tierZone 在岗条（本皮肤在槽里只放这一行）
   ============================================================ */
body[data-tier="smart"] .smart-bar {
  display: flex; align-items: center; gap: 10px;
  min-height: 36px;
  padding: 6px 20px;
  font-size: 14px; color: var(--soft-ink);
  min-width: 0;
}
body[data-tier="smart"] .smart-bar-dot {
  width: 9px; height: 9px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 35% 30%, #b7aaf8, #6f5fd8 75%);
  box-shadow: 0 0 8px rgba(139, 124, 246, .55);
  animation: miyouSmartDotPulse 4s ease-in-out infinite;
}
body[data-tier="smart"] .smart-bar-text {
  min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
body[data-tier="smart"] .smart-bar-text b { color: #b9aef9; font-weight: 600; }
/* 「找军师」：细描边紫字小按钮 */
body[data-tier="smart"] .smart-bar-btn {
  flex: none; margin-left: auto;
  min-height: 28px; padding: 0 14px; border-radius: 8px;
  font-size: 12.5px; font-weight: 600;
  background: transparent; color: #a99ef8;
  border: 1px solid rgba(139, 124, 246, .45);
  cursor: pointer;
  transition: background .18s ease-out, border-color .18s ease-out;
}
body[data-tier="smart"] .smart-bar-btn:hover { background: rgba(139, 124, 246, .10); }

/* ============================================================
   七、右下呼吸球（挂 body 上；素材库胶囊在右下角，球放它上方 72px）
   ============================================================ */
body[data-tier="smart"] .smart-fab {
  position: fixed;
  right: 20px;
  bottom: 92px;                 /* 胶囊贴底 ~20px，再抬 72px 不撞位 */
  width: 56px; height: 56px;
  border: 0; padding: 0; margin: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  z-index: 288;                 /* 压过资产抽屉(200)，让进门引导(300+)盖它 */
  transition: transform .18s ease-out;
}
body[data-tier="smart"] .smart-fab:hover { transform: scale(1.06); }
body[data-tier="smart"] .smart-fab:active { transform: scale(.97); }
body[data-tier="smart"] .smart-fab-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(139, 124, 246, .28);
  animation: miyouSmartRing 4s ease-in-out infinite;
  pointer-events: none;
}
body[data-tier="smart"] .smart-fab-orb {
  position: absolute; inset: 4px; border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, .55) 0%, rgba(198, 188, 255, .35) 15%, transparent 40%),
    radial-gradient(circle at 50% 50%, #9f92f0 0%, #6f5fd8 48%, #3e3390 78%, #262055 100%);
  box-shadow: 0 0 14px rgba(139, 124, 246, .26), 0 0 36px rgba(139, 124, 246, .12);
  animation: miyouSmartBreathe 4s ease-in-out infinite;   /* 保留 4s 缓慢呼吸 */
  pointer-events: none;
}
/* 有新话没看：球上小红点 */
body[data-tier="smart"] .smart-fab-badge {
  position: absolute; top: 3px; right: 3px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--danger);
  border: 2px solid #101014;
  display: none;
  pointer-events: none;
}
body[data-tier="smart"] .smart-fab-badge.show { display: block; }

/* ============================================================
   八、右侧滑出侧板（挂 body 上；顶部留 110px 不遮流程条）
   ============================================================ */
body[data-tier="smart"] .smart-panel-mask {
  position: fixed;
  top: 110px; left: 0; right: 0; bottom: 0;   /* 流程条以上不遮 */
  background: rgba(8, 8, 12, .50);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease-out;
  z-index: 280;
}
body[data-tier="smart"] .smart-panel-mask.show { opacity: 1; pointer-events: auto; }

body[data-tier="smart"] .smart-panel {
  position: fixed;
  top: 110px; right: 0; bottom: 0;            /* 顶部留 ~110px 给流程条 */
  width: 380px; max-width: 100%;
  display: flex; flex-direction: column;
  background: var(--panel);
  border-left: 1px solid rgba(255, 255, 255, .08);
  border-top-left-radius: 14px;
  box-shadow: -12px 0 40px rgba(0, 0, 0, .45);
  transform: translateX(105%);
  transition: transform .28s ease-out;
  z-index: 285;
  overflow: hidden;
}
body[data-tier="smart"] .smart-panel.open { transform: translateX(0); }
@supports ((backdrop-filter: blur(4px)) or (-webkit-backdrop-filter: blur(4px))) {
  body[data-tier="smart"] .smart-panel {
    background: rgba(26, 26, 33, .88);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }
}

/* 侧板头 */
body[data-tier="smart"] .smart-panel-head {
  flex: none;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
body[data-tier="smart"] .smart-panel-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: .04em;
  min-width: 0;
}
body[data-tier="smart"] .smart-panel-close {
  flex: none; min-height: 26px; padding: 0 12px; border-radius: 8px;
  font-size: 12px; font-weight: 600;
  background: transparent; color: var(--muted);
  border: 1px solid var(--line-strong);
  cursor: pointer;
  transition: background .18s ease-out, color .18s ease-out;
}
body[data-tier="smart"] .smart-panel-close:hover { background: rgba(255, 255, 255, .06); color: var(--soft-ink); }

/* 三 tab */
body[data-tier="smart"] .smart-tabs {
  flex: none;
  display: flex; gap: 6px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
}
body[data-tier="smart"] .smart-tabs button {
  flex: 1; min-width: 0; min-height: 30px;
  border: 0; border-radius: 8px;
  background: transparent; color: var(--muted);
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: background .18s ease-out, color .18s ease-out;
}
body[data-tier="smart"] .smart-tabs button:hover { background: rgba(255, 255, 255, .04); color: var(--soft-ink); }
body[data-tier="smart"] .smart-tabs button.on {
  background: rgba(139, 124, 246, .14);
  color: #b9aef9;
}

/* tab 页身：一次只亮一页 */
body[data-tier="smart"] .smart-pane { display: none; flex: 1; min-height: 0; }
body[data-tier="smart"] .smart-pane.on { display: flex; flex-direction: column; }

/* --- tab 1. 军师对话：14px / 1.6 --- */
body[data-tier="smart"] .smart-chat-log {
  flex: 1; min-height: 0;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 10px;
}
body[data-tier="smart"] .smart-msg { display: flex; gap: 8px; align-items: flex-end; }
body[data-tier="smart"] .smart-msg-me { justify-content: flex-end; }
body[data-tier="smart"] .smart-dot {
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 35% 30%, #b7aaf8, #6f5fd8 75%);
  box-shadow: none;
}
body[data-tier="smart"] .smart-bubble {
  max-width: 82%;
  padding: 8px 12px; border-radius: 12px;
  font-size: 14px; line-height: 1.6; word-break: break-word;
}
body[data-tier="smart"] .smart-msg-jarvis .smart-bubble {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
body[data-tier="smart"] .smart-msg-me .smart-bubble {
  background: rgba(139, 124, 246, .16);
  border: 1px solid rgba(139, 124, 246, .22);
  color: var(--ink);
  border-bottom-right-radius: 4px;
}
body[data-tier="smart"] .smart-typing i {
  display: inline-block; width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent); margin: 0 2px;
  animation: miyouSmartTyping 1.1s infinite;
}
body[data-tier="smart"] .smart-typing i:nth-child(2) { animation-delay: .18s; }
body[data-tier="smart"] .smart-typing i:nth-child(3) { animation-delay: .36s; }
body[data-tier="smart"] .smart-chat-input {
  flex: none;
  display: flex; gap: 8px; padding: 12px 14px;
  border-top: 1px solid var(--line);
}
body[data-tier="smart"] .smart-chat-input input {
  flex: 1; min-width: 0; min-height: 38px;
  border-radius: 10px; border: 1px solid var(--line-strong);
  background: #131318; color: var(--ink);
  padding: 0 12px; outline: none; font-size: 14px;
}
body[data-tier="smart"] .smart-chat-input input::placeholder { color: var(--muted); }
body[data-tier="smart"] .smart-chat-input input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 124, 246, .18);
}
body[data-tier="smart"] .smart-chat-input button {
  flex: none; min-height: 38px; padding: 0 18px; border-radius: 10px;
  border: 0;
  background: var(--accent);
  color: #14141a; font-size: 13px; font-weight: 700;
  box-shadow: none; cursor: pointer;
  transition: background .18s ease-out;
}
body[data-tier="smart"] .smart-chat-input button:hover { background: #9c8ff8; filter: none; }

/* --- tab 2. 分步授权：细分隔线列表化，不做浮卡 --- */
body[data-tier="smart"] .smart-auth-list {
  flex: 1; min-height: 0;
  padding: 4px 12px 10px;
  display: flex; flex-direction: column; gap: 0;
  overflow-y: auto;
}
body[data-tier="smart"] .smart-auth-card {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 6px; border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background .18s ease-out;
}
body[data-tier="smart"] .smart-auth-card:last-child { border-bottom: 0; }
body[data-tier="smart"] .smart-auth-card:hover { background: rgba(255, 255, 255, .03); border-color: var(--line); }
body[data-tier="smart"] .smart-auth-info { flex: 1; min-width: 0; }
body[data-tier="smart"] .smart-auth-info b { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
body[data-tier="smart"] .smart-auth-info span {
  display: block; margin-top: 2px; font-size: 13px; color: var(--muted); line-height: 1.5;
}
/* 授权按钮：细描边 + 紫字 */
body[data-tier="smart"] .smart-auth-card button {
  flex: none; min-height: 28px; padding: 0 12px; border-radius: 8px;
  font-size: 12px; font-weight: 600;
  background: transparent; color: #a99ef8;
  border: 1px solid rgba(139, 124, 246, .45);
  cursor: pointer;
  transition: background .18s ease-out, border-color .18s ease-out;
}
body[data-tier="smart"] .smart-auth-card button:hover { background: rgba(139, 124, 246, .10); }
/* 已授权：灰字静默（勾随文字色） */
body[data-tier="smart"] .smart-auth-card.done { border-color: var(--line); }
body[data-tier="smart"] .smart-auth-card.done button {
  background: transparent; color: var(--muted);
  border-color: transparent; cursor: default;
}
/* 红线卡：警示色小圆点 + 细字，不上底色 */
body[data-tier="smart"] .smart-auth-card.locked {
  border-color: var(--line);
  background: transparent;
}
body[data-tier="smart"] .smart-redline {
  display: inline-block; font-style: normal; margin-left: 6px;
  font-size: 10.5px; font-weight: 500; vertical-align: 1px;
  color: var(--muted); background: none;
  border: 0; border-radius: 0; padding: 0;
  letter-spacing: .02em;
}
body[data-tier="smart"] .smart-redline::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--danger);
  margin-right: 5px;
  vertical-align: 1px;
}
body[data-tier="smart"] .smart-auth-card.locked button {
  background: transparent; color: var(--muted);
  border: 1px solid var(--line);
  cursor: not-allowed; opacity: .8;
}

/* --- tab 3. 赛马榜：列表化、tabular-nums、2px 细进度线 --- */
body[data-tier="smart"] .smart-race-body {
  flex: 1; min-height: 0;
  padding: 8px 14px 12px;
  overflow-y: auto;
}
body[data-tier="smart"] .smart-race-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 8px; border-radius: 8px;
}
body[data-tier="smart"] .smart-race-row.me {
  background: rgba(139, 124, 246, .08);
  box-shadow: inset 0 0 0 1px rgba(139, 124, 246, .22);
}
/* 名次圆牌：CSS 画的 1·2·3（不用 emoji），前三名各配一色 */
body[data-tier="smart"] .smart-race-rank {
  width: 22px; height: 22px; flex: none;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--muted); background: transparent;
  font-size: 12px; font-weight: 700; line-height: 20px; text-align: center;
  font-variant-numeric: tabular-nums;
}
body[data-tier="smart"] .smart-race-rank.rank-1 {
  border-color: rgba(201, 169, 106, .65);
  color: #dcc084;
  background: rgba(201, 169, 106, .12);
}
body[data-tier="smart"] .smart-race-rank.rank-2 {
  border-color: rgba(255, 255, 255, .35);
  color: #d3d3dc;
  background: rgba(255, 255, 255, .07);
}
body[data-tier="smart"] .smart-race-rank.rank-3 {
  border-color: rgba(199, 137, 102, .60);
  color: #d29a78;
  background: rgba(199, 137, 102, .12);
}
body[data-tier="smart"] .smart-race-mid { flex: 1; min-width: 0; }
body[data-tier="smart"] .smart-race-code {
  font-size: 12.5px; font-weight: 600; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
body[data-tier="smart"] .smart-race-code i {
  font-style: normal; margin-left: 6px;
  font-size: 10px; font-weight: 600; color: #a99ef8;
  background: none;
  border: 1px solid rgba(139, 124, 246, .40);
  border-radius: 999px; padding: 1px 7px;
}
body[data-tier="smart"] .smart-bar-line {
  margin-top: 6px; height: 2px; border-radius: 999px;
  background: rgba(255, 255, 255, .08); overflow: hidden;
}
body[data-tier="smart"] .smart-bar-line i {
  display: block; height: 100%; border-radius: 999px;
  background: var(--accent);
  box-shadow: none;
}
body[data-tier="smart"] .smart-race-total {
  flex: none; font-size: 12px; font-weight: 600; color: var(--soft-ink);
  font-variant-numeric: tabular-nums;
}
body[data-tier="smart"] .smart-race-empty,
body[data-tier="smart"] .smart-race-loading {
  padding: 16px 6px 8px; color: var(--muted);
  font-size: 12.5px; line-height: 1.7; text-align: center;
}

/* --- 响应式：窄屏侧板全宽、在岗条收边距 --- */
@media (max-width: 520px) {
  body[data-tier="smart"] .smart-bar { padding: 6px 12px; }
  body[data-tier="smart"] .smart-panel {
    width: 100%;
    border-top-left-radius: 0;
    border-left: 0;
  }
  body[data-tier="smart"] .smart-fab { right: 14px; }
}

/* --- 动画（名字带前缀防撞车；4s 缓慢呼吸，幅度极小） --- */
@keyframes miyouSmartBreathe {
  0%, 100% {
    transform: scale(.99);
    box-shadow: 0 0 12px rgba(139, 124, 246, .22), 0 0 30px rgba(139, 124, 246, .10);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 18px rgba(139, 124, 246, .32), 0 0 44px rgba(139, 124, 246, .16);
  }
}
@keyframes miyouSmartRing {
  0%, 100% { transform: scale(1); opacity: .25; }
  50% { transform: scale(1.03); opacity: .5; }
}
@keyframes miyouSmartTyping {
  0%, 60%, 100% { opacity: .25; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-2px); }
}
@keyframes miyouSmartDotPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(139, 124, 246, .40); opacity: .85; }
  50% { box-shadow: 0 0 10px rgba(139, 124, 246, .70); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  body[data-tier="smart"] .smart-fab-orb,
  body[data-tier="smart"] .smart-fab-ring,
  body[data-tier="smart"] .smart-bar-dot,
  body[data-tier="smart"] .smart-typing i { animation: none; }
  body[data-tier="smart"] .smart-panel { transition: none; }
  body[data-tier="smart"] .smart-panel-mask { transition: none; }
}
