    :root{
      --pink:#ff6fb2;
      --pink-deep:#e0007a;
      --pink-soft:#ffd6ec;
      --indigo:#6366f1;
      --blue-soft:#e0f2ff;
      --text-main:#111827;
      --text-sub:#6b7280;
      --glass-bg:rgba(255,255,255,.9);
      --glass-border:rgba(255,255,255,.96);
      --shadow-soft:0 20px 60px rgba(255,182,213,.55);
      --radius-xl:24px;

      /* ✅ 结合版新增：用于 body 顶部 padding 与滚动补偿 */
      --navH: 66px;
    }

    *{box-sizing:border-box;margin:0;padding:0;}

    html,body{
      height:100%;
      height:-webkit-fill-available; /* iOS 全屏修复 */
    }

    body{
      min-height:100vh;
      min-height:-webkit-fill-available; /* iOS 100vh 修复 */
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei",Arial,sans-serif;
      color:var(--text-main);
      background:
        radial-gradient(circle at 0% 0%, #ffe9f5 0, transparent 55%),
        radial-gradient(circle at 100% 0%, #dbeafe 0, transparent 55%),
        radial-gradient(circle at 0% 100%, #ffeef7 0, transparent 55%),
        linear-gradient(135deg,#fff5fb 0,#f9fbff 40%,#ffe9f4 75%,#f7f0ff 100%);
      background-size:180% 180%;
      animation:bgMove 26s ease-in-out infinite;

      /* ✅ 用 navH 计算，避免顶部被遮挡（结合版） */
      padding:calc(var(--navH) + 24px) 10px 80px;

      position:relative;
      overflow-x:hidden;
      display:flex;
      flex-direction:column;
      transition:background 0.8s ease;
    }

    /* 下滑后整体背景轻微加深一点，做“渐变感” */
    body.scrolled{
      background:
        radial-gradient(circle at 0% 0%, #ffe0f2 0, transparent 55%),
        radial-gradient(circle at 100% 0%, #d0e2ff 0, transparent 55%),
        radial-gradient(circle at 0% 100%, #ffe5f7 0, transparent 55%),
        linear-gradient(135deg,#fff1fa 0,#f3f7ff 35%,#ffdff2 75%,#f3ecff 100%);
      background-size:170% 170%;
    }

    @keyframes bgMove{
      0%{background-position:0% 0%;}
      50%{background-position:100% 40%;}
      100%{background-position:0% 0%;}
    }

    /* 背景光斑 + 星星闪烁 */
    .bg-orb{
      position:fixed;
      width:420px;
      height:420px;
      border-radius:999px;
      filter:blur(40px);
      opacity:.55;
      pointer-events:none;
      z-index:-3;
      mix-blend-mode:screen;
    }
    .bg-orb.o1{
      background:radial-gradient(circle,#ffd3ea,transparent 70%);
      top:-140px;
      left:-120px;
      animation:orbFloat1 20s ease-in-out infinite;
    }
    .bg-orb.o2{
      background:radial-gradient(circle,#c7d2fe,transparent 70%);
      bottom:-160px;
      right:-120px;
      animation:orbFloat2 22s ease-in-out infinite;
    }
    @keyframes orbFloat1{
      0%{transform:translate3d(0,0,0);}
      50%{transform:translate3d(40px,30px,0);}
      100%{transform:translate3d(0,0,0);}
    }
    @keyframes orbFloat2{
      0%{transform:translate3d(0,0,0);}
      50%{transform:translate3d(-40px,-20px,0);}
      100%{transform:translate3d(0,0,0);}
    }

    .star{
      position:fixed;
      width:3px;
      height:3px;
      border-radius:999px;
      background:rgba(255,255,255,.95);
      box-shadow:0 0 10px rgba(255,255,255,.9);
      opacity:0;
      z-index:-2;
      animation:twinkle 4s ease-in-out infinite;
    }
    .star.s1{top:18%;left:12%;animation-delay:0s;}
    .star.s2{top:30%;right:14%;animation-delay:1.1s;}
    .star.s3{top:70%;left:22%;animation-delay:2.2s;}
    .star.s4{top:82%;right:26%;animation-delay:3.1s;}
    .star.s5{top:10%;right:36%;animation-delay:1.7s;}
    @keyframes twinkle{
      0%{opacity:0;transform:scale(.4);}
      30%{opacity:1;transform:scale(1);}
      60%{opacity:.2;transform:scale(.7);}
      100%{opacity:0;transform:scale(.4);}
    }

    .page-wrap{
      max-width:1120px;
      margin:0 auto;
      flex:1;
      display:flex;
      flex-direction:column;
    }

    /* ===================== 顶部导航（保留版本1质感 + 加入版本2移动端抽屉能力） ===================== */
    .top-bar{
      position:fixed;
      left:50%;
      top:16px;
      transform:translateX(-50%);
      width:calc(100% - 20px);
      max-width:1120px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:9px 22px;
      border-radius:999px;
      background:rgba(255,255,255,.97);
      box-shadow:0 14px 34px rgba(255,182,213,.22),0 8px 24px rgba(124,131,255,.12);
      backdrop-filter:blur(18px);
      -webkit-backdrop-filter:blur(18px);
      border:1px solid var(--glass-border);
      z-index:30;
      transition:box-shadow .3s ease, transform .3s ease, background .3s ease;
    }
    body.scrolled .top-bar{
      box-shadow:0 14px 34px rgba(255,182,213,.2),0 8px 24px rgba(124,131,255,.1);
      background:rgba(255,255,255,.98);
    }

    .logo-side{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0; /* ✅ 省略号生效关键 */
    }
    .logo-side a{
      display:flex;
      align-items:center;
      flex:0 0 auto;
    }
    .logo-side img{
      height:38px;
      display:block;
      transition:transform .18s ease, filter .18s ease;
    }
    .logo-side a:hover img{
      transform:scale(1.06);
      filter:drop-shadow(0 4px 10px rgba(255,111,178,.6));
    }

    .logo-text{
      min-width:0;
    }
    .logo-text-main{
      font-size:17px;
      font-weight:650;
      letter-spacing:1.8px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .logo-text-sub{
      font-size:11px;
      color:var(--text-sub);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .top-links{
      display:flex;
      align-items:center;
      gap:18px;
      font-size:13px;
    }
    .top-links a{
      color:var(--text-sub);
      text-decoration:none;
      position:relative;
      padding-bottom:2px;
      transition:color .18s ease, transform .12s ease;
    }
    .top-links a::after{
      content:'';
      position:absolute;
      left:0;
      bottom:0;
      width:0;
      height:1.5px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--pink),var(--pink-deep));
      transition:width .18s ease;
    }
    .top-links a:hover{
      color:var(--text-main);
      transform:translateY(-1px);
    }
    .top-links a:hover::after{
      width:100%;
    }

/* 右上角登录 / 申请入驻按钮 */
.top-auth-pill{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:4px;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(255,255,255,.68);
  box-shadow:
    0 16px 32px rgba(148,163,184,.18),
    0 1px 0 rgba(255,255,255,.95) inset,
    0 -1px 0 rgba(226,232,240,.65) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.top-auth-btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  text-decoration:none;
  font-size:12px;
  font-weight:800;
  letter-spacing:.1px;
  white-space:nowrap;
  color:#334155;
  transition:transform .14s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  border:1px solid transparent;
}

.top-auth-btn i{font-size:13px;opacity:.88;}
.top-auth-btn:hover{
  transform:none;
  background:rgba(255,255,255,.92);
  color:#0f172a;
  box-shadow:none;
}
.top-auth-btn:active{transform:none; opacity:.92;}
.top-auth-btn:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px rgba(110,139,255,.18);
}

.top-auth-btn.login{
  color:#fff;
  background:linear-gradient(135deg,#ff7ac2 0%, #6e8bff 100%);
  border-color:rgba(255,255,255,.32);
  box-shadow:
    0 12px 24px rgba(255,122,194,.20),
    0 1px 0 rgba(255,255,255,.35) inset;
}
.top-auth-btn.login:hover{
  color:#fff;
  filter:brightness(1.01);
  box-shadow:
    0 12px 24px rgba(255,122,194,.20),
    0 1px 0 rgba(255,255,255,.35) inset;
}

.top-auth-btn.register{
  background:rgba(255,255,255,.68);
  border-color:rgba(226,232,240,.75);
}

.top-auth-divider{
  width:1px;height:22px;
  background:linear-gradient(180deg,rgba(226,232,240,0),rgba(203,213,225,.95),rgba(226,232,240,0));
  margin:0 1px;
}

.auth-logged-in-only{display:none !important;}
body.creator-logged-in .auth-guest-only{display:none !important;}
body.creator-logged-in .top-auth-btn.auth-logged-in-only,
body.creator-logged-in .hero-cta.auth-logged-in-only,
body.creator-logged-in .bottom-cta-btn.auth-logged-in-only{
  display:inline-flex !important;
}
body.creator-logged-in .drawer-login.auth-logged-in-only{
  display:flex !important;
}
body.creator-logged-in .auth-panel .auth-logged-in-only{
  display:flex !important;
}

/* 菜单按钮保留 */
.nav-toggle{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid rgba(226,232,240,.9);
  background:rgba(255,255,255,.96);
  box-shadow:0 10px 22px rgba(148,163,184,.22);
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:transform .12s ease, box-shadow .18s ease, border-color .18s ease;
}
.nav-toggle:hover{box-shadow:0 14px 28px rgba(148,163,184,.35);border-color:rgba(148,163,184,.55);}
.nav-toggle:active{transform:scale(.97);}
.nav-toggle i{color:#334155;font-size:15px;}

/* 移动端胶囊版 */
.top-auth-pill.compact{
  display:none;
  padding:3px;
  gap:2px;
}
.top-auth-pill.compact .top-auth-btn{
  min-height:34px;
  padding:0 10px;
  font-size:11px;
}
    .top-auth-pill.compact .top-auth-btn i{font-size:12px;}
    .top-auth-pill.compact .top-auth-divider{height:18px;}


    .top-right-mobile{
      display:none;
      align-items:center;
      gap:10px;
    }

    @media(max-width:1080px){
      .top-links{gap:12px;font-size:12.5px;}
      .top-auth-btn{padding:0 12px;}
    }
    @media(max-width:900px){
      :root{ --navH: 74px; }
    }
    @media(max-width:780px){
      .top-links{display:none;} /* ✅ 移动端不再挤导航 */
      .top-right-mobile{display:flex;}
      .nav-toggle{display:inline-flex;}
      .top-auth-pill.compact{display:inline-flex;}
      .top-bar{padding:8px 10px; gap:8px; align-items:flex-start;}
      .logo-side{flex:1 1 auto; align-items:flex-start; gap:10px;}
      .logo-side img{height:34px; margin-top:1px;}
      .logo-text{display:flex; flex-direction:column; min-width:0;}
      .logo-text-main{font-size:14px; letter-spacing:.8px; line-height:1.2;}
      .logo-text-sub{display:block; white-space:normal; overflow:visible; text-overflow:clip; font-size:10px; line-height:1.25; margin-top:2px; max-width:210px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;}
      .top-right-mobile{flex:0 0 auto; gap:8px; margin-top:1px;}
    }

    /* ✅ 移动端抽屉 */
    .nav-drawer-mask{
      position:fixed;inset:0;
      background:rgba(15,23,42,.38);
      backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
      z-index:60;
      opacity:0;pointer-events:none;
      transition:opacity .18s ease;
    }
    .nav-drawer{
      position:fixed;left:50%;top:86px;
      transform:translateX(-50%) translateY(-8px);
      width:calc(100% - 20px);max-width:520px;
      background:rgba(255,255,255,.97);
      border:1px solid rgba(255,255,255,.95);
      box-shadow:0 26px 80px rgba(15,23,42,.22);
      border-radius:22px;
      z-index:61;
      opacity:0;pointer-events:none;
      transition:opacity .18s ease, transform .18s ease;
      padding:10px;
    }
    .nav-drawer .drawer-head{
      display:flex;align-items:center;justify-content:space-between;
      padding:6px 10px 8px;
    }
    .drawer-title{
      font-size:13px;font-weight:700;color:#0b1220;letter-spacing:.6px;
    }
    .drawer-close{
      width:34px;height:34px;border-radius:999px;
      border:1px solid rgba(226,232,240,.9);
      background:rgba(255,255,255,.96);
      cursor:pointer;
      display:flex;align-items:center;justify-content:center;
    }
    .drawer-close i{color:#334155;}
    .drawer-links{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:8px;
      padding:0 6px 6px;
    }
    .drawer-links a{
      text-decoration:none;
      color:#0b1220;
      font-size:12px;
      padding:10px 10px;
      border-radius:16px;
      border:1px solid rgba(241,245,249,.95);
      background:rgba(248,250,252,.96);
      box-shadow:0 10px 22px rgba(148,163,184,.18);
      display:flex;align-items:center;gap:8px;
    }
    .drawer-links a i{color:var(--pink-deep);}
    .drawer-login{
      margin:6px;
      border-radius:16px;
      padding:10px 12px;
      background:linear-gradient(135deg,var(--pink),var(--pink-deep));
      color:#fff;text-decoration:none;
      display:flex;align-items:center;justify-content:center;gap:8px;
      font-size:12.5px;font-weight:700;
      box-shadow:0 16px 34px rgba(255,111,178,.55);
    }
    .nav-open .nav-drawer-mask{opacity:1;pointer-events:auto;}
    .nav-open .nav-drawer{opacity:1;pointer-events:auto;transform:translateX(-50%) translateY(0);}

    /* ===================== 首屏 Hero（保持版本1细节） ===================== */
    .hero-intro{
      min-height:68vh;
      display:grid;
      grid-template-columns:minmax(0,1.15fr) minmax(0,0.85fr);
      gap:30px;
      align-items:center;
    }
    @media(max-width:900px){
      .hero-intro{
        grid-template-columns:1fr;
        gap:24px;
        margin-top:6px;
        min-height:calc(100vh - 120px);
        min-height:calc(-webkit-fill-available - 120px);
        display:flex;
        flex-direction:column;
        justify-content:center;
        padding-top:32px;
        padding-bottom:32px;
      }
    }

    .hero-left{
      position:relative;
      padding:22px 8px 26px 4px;
    }
    .hero-left-inner{
      position:relative;
      z-index:1;
      max-width:430px;
    }
    .hero-left-title{
      font-size:26px;
      font-weight:650;
      letter-spacing:1.8px;
      margin-bottom:10px;
    }
    .hero-left-sub{
      font-size:13px;
      color:var(--text-sub);
      line-height:1.8;
      margin-bottom:16px;
      max-width:420px;
    }
    .hero-badges{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:16px;
      font-size:11px;
    }
    .hero-badge{
      padding:5px 10px;
      border-radius:999px;
      background:rgba(255,246,252,1);
      border:1px solid rgba(255,219,238,.9);
      display:inline-flex;
      align-items:center;
      gap:6px;
    }
    .hero-badge i{font-size:12px;color:var(--pink-deep);}

    .hero-cta-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:6px;
    }
    .hero-cta{
      padding:9px 18px;
      border-radius:999px;
      border:none;
      font-size:13px;
      font-weight:600;
      text-decoration:none;
      cursor:pointer;
      position:relative;
      overflow:hidden;
      display:inline-flex;
      align-items:center;
      gap:6px;
      transition:box-shadow .18s ease,transform .12s ease,background .18s ease,color .18s ease;
    }
    .hero-cta.primary{
      background:linear-gradient(135deg,var(--pink),var(--pink-deep));
      color:#fff;
      box-shadow:0 14px 32px rgba(255,111,178,.75);
    }
    .hero-cta.secondary{
      background:rgba(255,255,255,.9);
      color:var(--text-main);
      border:1px solid rgba(209,213,219,.95);
    }
    .hero-cta::after{
      content:'';
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 5% 0,rgba(255,255,255,.85),transparent 60%);
      opacity:0;
      transition:opacity .2s ease;
    }
    .hero-cta:hover::after{opacity:1;}
    .hero-cta:hover{
      transform:translateY(-1px);
      box-shadow:0 16px 36px rgba(148,163,184,.6);
    }
    .hero-cta:active{transform:scale(.97);}

    @media(max-width:720px){
      .hero-cta-row{
        flex-direction:column;
        align-items:flex-start;
      }
      .hero-cta{
        width:100%;
        justify-content:center;
      }
    }

    .hero-bubbles-wrap{
      position:absolute;
      inset:0;
      pointer-events:none;
      z-index:0;
    }
    .hero-big-bubble{
      position:absolute;
      width:150px;
      height:150px;
      border-radius:999px;
      background:radial-gradient(circle at 30% 0,rgba(255,255,255,.95),transparent 60%),
                 radial-gradient(circle at 100% 100%,rgba(255,111,178,.55),transparent 60%);
      box-shadow:none;
      opacity:.82;
      animation:heroBubbleFloat 18s ease-in-out infinite;
    }
    .hero-big-bubble.b2{
      left:40%;
      top:20%;
      background:radial-gradient(circle at 20% 0,rgba(255,255,255,.95),transparent 60%),
                 radial-gradient(circle at 100% 100%,rgba(96,165,250,.55),transparent 60%);
      animation-delay:4s;
    }
    .hero-big-bubble.b3{
      right:8%;
      bottom:4%;
      background:radial-gradient(circle at 20% 0,rgba(255,255,255,.95),transparent 60%),
                 radial-gradient(circle at 100% 100%,rgba(45,212,191,.5),transparent 60%);
      animation-delay:8s;
    }
    @keyframes heroBubbleFloat{
      0%{transform:translate3d(0,0,0);}
      50%{transform:translate3d(24px,-16px,0);}
      100%{transform:translate3d(0,0,0);}
    }

    .hero-blur-dot{
      position:absolute;
      width:38px;
      height:38px;
      border-radius:999px;
      background:radial-gradient(circle,#fff,transparent 65%);
      filter:blur(6px);
      opacity:.72;
      mix-blend-mode:normal;
      animation:blurDotFloat 14s ease-in-out infinite;
    }
    .hero-blur-dot.d1{left:12%;top:12%;animation-delay:0s;}
    .hero-blur-dot.d2{left:55%;top:6%;animation-delay:3s;}
    .hero-blur-dot.d3{left:68%;bottom:10%;animation-delay:6s;}
    @keyframes blurDotFloat{
      0%{transform:translate3d(0,0,0);}
      50%{transform:translate3d(-12px,10px,0);}
      100%{transform:translate3d(0,0,0);}
    }

    .hero-mini-bubble{
      position:absolute;
      width:9px;
      height:9px;
      border-radius:999px;
      background:rgba(255,255,255,.9);
      box-shadow:none;
      opacity:.8;
      animation:miniBubble 14s linear infinite;
    }
    .hero-mini-bubble.m1{left:62%;top:10%;animation-delay:0s;}
    .hero-mini-bubble.m2{left:78%;top:36%;animation-delay:3s;}
    .hero-mini-bubble.m3{left:60%;bottom:12%;animation-delay:6s;}
    .hero-mini-bubble.m4{left:82%;bottom:24%;animation-delay:9s;}
    .hero-mini-bubble.m5{left:20%;top:30%;animation-delay:1.5s;}
    .hero-mini-bubble.m6{left:10%;bottom:18%;animation-delay:4.5s;}
    @keyframes miniBubble{
      0%{transform:translateY(0);opacity:.1;}
      30%{opacity:.8;}
      60%{opacity:.4;}
      100%{transform:translateY(-26px);opacity:0;}
    }

    .hero-orbit-ring{
      position:absolute;
      width:196px;
      height:74px;
      border-radius:999px;
      border:1px solid rgba(255,182,213,.34);
      opacity:.42;
      transform:rotate(-18deg);
      animation:heroOrbitFloat 19s ease-in-out infinite;
    }
    .hero-orbit-ring.r1{left:33%;top:18%;animation-delay:0s;}
    .hero-orbit-ring.r2{right:10%;bottom:12%;width:218px;height:82px;border-color:rgba(85,214,190,.28);transform:rotate(19deg);animation-delay:4s;}
    .hero-orbit-ring.r3{left:6%;top:10%;width:170px;height:62px;border-color:rgba(124,131,255,.22);transform:rotate(24deg);animation-delay:8s;}
    @keyframes heroOrbitFloat{
      0%{transform:translate3d(0,0,0) rotate(var(--orbit-rotate,-18deg));}
      50%{transform:translate3d(10px,-8px,0) rotate(calc(var(--orbit-rotate,-18deg) + 4deg));}
      100%{transform:translate3d(0,0,0) rotate(var(--orbit-rotate,-18deg));}
    }
    .hero-orbit-ring.r1{--orbit-rotate:-18deg;}
    .hero-orbit-ring.r2{--orbit-rotate:19deg;}
    .hero-orbit-ring.r3{--orbit-rotate:24deg;}

    .hero-spark{
      position:absolute;
      width:7px;
      height:7px;
      border-radius:2px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(255,182,213,.44);
      opacity:.72;
      transform:rotate(45deg);
      animation:heroSparkFloat 13s ease-in-out infinite;
    }
    .hero-spark.s1{left:38%;top:13%;animation-delay:0s;}
    .hero-spark.s2{left:53%;top:31%;background:rgba(240,255,251,.78);border-color:rgba(85,214,190,.34);animation-delay:1.5s;}
    .hero-spark.s3{left:72%;top:22%;animation-delay:3s;}
    .hero-spark.s4{right:11%;bottom:27%;background:rgba(241,243,255,.82);border-color:rgba(124,131,255,.32);animation-delay:4.5s;}
    .hero-spark.s5{right:10%;bottom:8%;animation-delay:6s;}
    .hero-spark.s6{left:18%;bottom:23%;background:rgba(255,234,244,.78);animation-delay:7.5s;}
    .hero-spark.s7{left:65%;bottom:8%;width:5px;height:5px;animation-delay:9s;}
    .hero-spark.s8{left:8%;top:34%;width:5px;height:5px;background:rgba(241,243,255,.78);border-color:rgba(124,131,255,.28);animation-delay:10.5s;}
    @keyframes heroSparkFloat{
      0%{transform:translate3d(0,0,0) rotate(45deg);opacity:.22;}
      45%{opacity:.72;}
      100%{transform:translate3d(8px,-18px,0) rotate(45deg);opacity:.12;}
    }

    .hero-glyph{
      position:absolute;
      width:28px;
      height:28px;
      border-radius:999px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:rgba(224,0,122,.48);
      background:rgba(255,255,255,.48);
      border:1px solid rgba(255,219,238,.56);
      opacity:.62;
      font-size:12px;
      animation:heroGlyphFloat 17s ease-in-out infinite;
    }
    .hero-glyph.g1{left:31%;bottom:18%;animation-delay:0s;}
    .hero-glyph.g2{right:18%;top:18%;color:rgba(124,131,255,.48);animation-delay:4s;}
    .hero-glyph.g3{right:12%;bottom:34%;color:rgba(13,148,136,.48);animation-delay:8s;}
    @keyframes heroGlyphFloat{
      0%{transform:translate3d(0,0,0);}
      50%{transform:translate3d(-8px,8px,0);}
      100%{transform:translate3d(0,0,0);}
    }

    @media(max-width:900px){
      .hero-orbit-ring.r2,
      .hero-glyph.g3,
      .hero-spark.s5,
      .hero-spark.s7{display:none;}
    }

    @media(max-width:420px){
      .hero-orbit-ring{display:none;}
      .hero-glyph.g2,
      .hero-spark.s3,
      .hero-spark.s4{display:none;}
      .hero-glyph{
        width:24px;
        height:24px;
        font-size:11px;
        opacity:.5;
      }
    }

    .hero-right-login{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      padding-right:26px;
    }
    @media(max-width:900px){
      .hero-right-login{
        width:100%;
        justify-content:center !important;
        padding-right:0;
      }
      .auth-panel{
        margin:0 auto;
        max-width:380px;
      }
    }

    /* ===================== 登录卡片（保持版本1细节） ===================== */
    .auth-panel{
      border-radius:var(--radius-xl);
      padding:14px 16px 16px;
      background:var(--glass-bg);
      border:1px solid var(--glass-border);
      box-shadow:var(--shadow-soft);
      backdrop-filter:blur(18px);
      -webkit-backdrop-filter:blur(18px);
      max-width:360px;
      width:100%;
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .auth-panel:hover{
      transform:translateY(-2px);
      box-shadow:0 24px 60px rgba(148,163,184,.55);
    }
    .auth-state-panel{
      flex-direction:column;
      gap:10px;
      padding:4px 0 2px;
    }
    .auth-state-panel .auth-sub{
      margin-bottom:0;
      line-height:1.7;
    }
    .auth-enter-btn{
      text-decoration:none;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .auth-tabs{
      display:flex;
      border-radius:999px;
      padding:3px;
      background:rgba(255,255,255,.96);
      border:1px solid rgba(255,219,238,.95);
      margin-bottom:10px;
      font-size:13px;
      position:relative;
      overflow:hidden;
    }
    .auth-tabs::before{
      content:'';
      position:absolute;
      top:3px;
      bottom:3px;
      width:50%;
      border-radius:999px;
      background:linear-gradient(135deg,var(--pink),var(--pink-deep));
      box-shadow:0 8px 20px rgba(255,111,178,.6);
      z-index:0;
      transform:translateX(0%);
      transition:transform .25s ease;
    }
    .auth-tabs.tab-staff::before{
      transform:translateX(100%);
    }

    .auth-tab{
      flex:1;
      border:none;
      background:transparent;
      color:var(--text-sub);
      padding:6px 0;
      border-radius:999px;
      cursor:pointer;
      position:relative;
      z-index:1;
      transition:color .18s ease, transform .12s ease;
      font-weight:500;
    }
    .auth-tab.active{
      color:#fff;
      font-weight:600;
    }
    .auth-tab:active{transform:scale(.97);}

    .auth-title{
      font-size:15px;
      font-weight:600;
      letter-spacing:.3px;
    }
    .auth-sub{
      font-size:11px;
      color:var(--text-sub);
      margin-top:3px;
      margin-bottom:8px;
    }

    .mode-tabs{
      display:flex;
      gap:6px;
      margin-bottom:8px;
      font-size:11px;
    }
    .mode-btn{
      flex:1;
      padding:5px 0;
      border-radius:999px;
      border:1px solid rgba(226,232,240,.9);
      background:rgba(255,255,255,.96);
      color:var(--text-sub);
      cursor:pointer;
      position:relative;
      overflow:hidden;
      transition:box-shadow .18s ease,transform .12s ease,border-color .18s ease,background .18s ease,color .18s ease;
      font-weight:500;
    }
    .mode-btn::after{
      content:'';
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 10% 0%,rgba(255,255,255,.7),transparent 60%);
      opacity:0;
      transition:opacity .2s ease;
    }
    .mode-btn:hover::after{opacity:1;}
    .mode-btn:hover{box-shadow:0 4px 12px rgba(148,163,184,.45);}
    .mode-btn:active{transform:scale(.97);}
    .mode-btn.active{
      background:linear-gradient(135deg,var(--pink-soft),#fff);
      color:var(--pink-deep);
      border-color:rgba(255,182,213,.9);
      font-weight:600;
      box-shadow:0 8px 18px rgba(255,182,213,.7);
    }

    .field{margin-bottom:7px;}
    .field-label{
      font-size:11px;
      color:var(--text-sub);
      margin-bottom:3px;
      display:flex;
      justify-content:space-between;
      align-items:center;
    }
    .field-label span.right{
      font-size:10px;
      opacity:.85;
    }

    .phone-row{
      display:flex;
      border-radius:999px;
      border:1px solid rgba(209,213,219,.95);
      overflow:hidden;
      background:rgba(255,255,255,.96);
      transition:border-color .18s ease, box-shadow .18s ease;
    }
    .phone-area{
      padding:0 9px;
      font-size:12px;
      display:flex;
      align-items:center;
      border-right:1px solid rgba(229,231,235,.95);
      color:#6b7280;
    }
    .input{
      width:100%;
      padding:7px 9px;
      border:none;
      outline:none;
      background:transparent;
      color:var(--text-main);
      font-size:13px;
    }
    .input::placeholder{
      color:#9ca3af;
      font-size:12px;
    }
    @media (max-width:900px), (hover:none) and (pointer:coarse){
      .hero-right-login .input::placeholder,
      .reset-modal .input::placeholder{
        font-size:14px !important;
        line-height:1.35;
      }
    }
    .field-input{
      border-radius:999px;
      border:1px solid rgba(209,213,219,.95);
      background:rgba(255,255,255,.96);
      padding:0 9px;
      transition:border-color .18s ease, box-shadow .18s ease;
    }
    .field-input .input{
      padding:7px 0;
    }
    .field-input:focus-within,
    .phone-row:focus-within{
      border-color:var(--pink);
      box-shadow:0 0 0 1px rgba(248,113,180,.35);
    }

    .otp-row{
      display:flex;
      gap:7px;
      align-items:center;
    }
    .btn-send{
      flex:0 0 auto;
      padding:6px 9px;
      border-radius:999px;
      border:1px solid rgba(209,213,219,.95);
      background:rgba(255,255,255,1);
      color:var(--text-main);
      font-size:11px;
      cursor:pointer;
      white-space:nowrap;
      position:relative;
      overflow:hidden;
      transition:box-shadow .18s ease,transform .12s ease,border-color .18s ease,background .18s ease,color .18s ease;
    }
    .btn-send::after{
      content:'';
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 0 0,rgba(255,255,255,.9),transparent 60%);
      opacity:0;
      transition:opacity .2s ease;
    }
    .btn-send:hover::after{opacity:1;}
    .btn-send:hover{
      box-shadow:0 6px 14px rgba(148,163,184,.45);
      border-color:rgba(148,163,184,.9);
    }
    .btn-send:active{transform:scale(.97);}
    .btn-send:disabled{
      opacity:.45;
      cursor:not-allowed;
      box-shadow:none;
    }

    .confirm-row{
      margin:6px 0 7px;
      font-size:10.5px;
      color:var(--text-sub);
      display:flex;
      gap:6px;
      align-items:flex-start;
      position:relative;
      line-height:1.6;
    }
    .confirm-row input[type="checkbox"]{
      position:absolute;
      opacity:0;
      pointer-events:none;
    }
    .confirm-row label{
      position:relative;
      padding-left:20px;
      cursor:pointer;
      transition:color .18s ease;
      line-height:1.7;
    }
    .confirm-row label::before{
      content:'';
      position:absolute;
      left:0;
      top:50%;
      width:14px;
      height:14px;
      border-radius:999px;
      border:1px solid rgba(209,213,219,.95);
      background:rgba(255,255,255,1);
      box-shadow:0 2px 5px rgba(148,163,184,.35);
      transition:border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
      transform:translateY(-50%);
    }
    .confirm-row label::after{
      content:'';
      position:absolute;
      left:3px;
      top:50%;
      width:8px;
      height:8px;
      border-radius:999px;
      background:linear-gradient(135deg,var(--pink),var(--pink-deep));
      transform:translateY(-50%) scale(0);
      opacity:0;
      transition:transform .18s ease,opacity .18s ease;
      box-shadow:0 0 0 4px rgba(255,111,178,.15);
    }
    .confirm-row label:hover::before{
      border-color:rgba(248,113,180,.8);
      box-shadow:0 3px 7px rgba(248,113,180,.4);
    }
    .confirm-row label:hover{color:var(--text-main);}
    .confirm-row input[type="checkbox"]:checked + label::before{
      border-color:var(--pink-deep);
      background:rgba(255,255,255,1);
      box-shadow:0 3px 8px rgba(248,113,180,.5);
      transform:translateY(-50%) scale(1.02);
    }
    .confirm-row input[type="checkbox"]:checked + label::after{
      transform:translateY(-50%) scale(1);
      opacity:1;
    }
    .confirm-row a{
      color:var(--pink-deep);
      text-decoration:none;
    }

    .btn-main{
      width:100%;
      padding:8px 0;
      border-radius:999px;
      border:none;
      background:linear-gradient(135deg,var(--pink),var(--pink-deep));
      color:#fff;
      font-size:13px;
      font-weight:600;
      cursor:pointer;
      box-shadow:0 12px 28px rgba(255,111,178,.7);
      margin-top:2px;
      position:relative;
      overflow:hidden;
      transition:box-shadow .18s ease,transform .12s ease;
    }
    .btn-main::after{
      content:'';
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 10% 0%,rgba(255,255,255,.7),transparent 60%);
      opacity:0;
      transition:opacity .2s ease;
    }
    .btn-main:hover::after{opacity:1;}
    .btn-main:hover{box-shadow:0 14px 32px rgba(255,111,178,.8);}
    .btn-main:active{transform:scale(.97);}
    .btn-main[disabled]{
      opacity:.55;
      cursor:not-allowed;
      box-shadow:none;
    }

    .auth-footer{
      margin-top:8px;
      font-size:9.5px;
      color:#9ca3af;
      text-align:center;
      line-height:1.6;
    }
    .auth-footer a{
      color:#9ca3af;
      text-decoration:none;
    }

    .mode-pane{display:none;}
    .mode-pane.active{display:block;}

    .scan-box{
      display:grid;
      grid-template-columns:154px minmax(0,1fr);
      gap:12px;
      align-items:center;
      text-align:left;
      margin-top:5px;
    }
    .scan-code-outer{
      width:164px;
      aspect-ratio:1/1;
      flex:0 0 auto;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(226,232,240,.96);
      box-shadow:0 12px 26px rgba(15,23,42,.08);
      display:flex;
      align-items:center;
      justify-content:center;
      padding:7px;
    }
    .scan-code-inner{
      width:100%;
      height:100%;
      max-width:none;
      border-radius:12px;
      background:#fff;
      position:relative;
      overflow:hidden;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .scan-code-inner::before{
      content:'';
      position:absolute;
      inset:8px;
      border-radius:6px;
      background:
        linear-gradient(90deg,#000 12px,transparent 12px),
        linear-gradient(180deg,#000 12px,transparent 12px);
      background-size:14px 14px;
      opacity:.07;
    }
    .scan-code-inner.wx-widget-ready::before{display:none;}
    .scan-code-inner.wx-widget-ready{
      background:rgba(255,255,255,.98);
      border:1px solid rgba(226,232,240,.88);
      align-items:flex-start;
      justify-content:flex-start;
    }
    .scan-code-inner.wx-widget-ready iframe{
      width:300px !important;
      height:400px !important;
      border:0 !important;
      transform:translate(-8px,-10px) scale(.52);
      transform-origin:left top;
      display:block;
      background:transparent;
    }
    .scan-code-inner.wx-ticket-ready{
      background:rgba(255,255,255,.98);
      border:1px solid rgba(226,232,240,.88);
      align-items:center;
      justify-content:center;
      flex-direction:column;
      padding:0;
      gap:0;
    }
    .scan-code-inner.wx-ticket-ready::before{display:none;}
    .wx-scan-canvas-wrap{
      width:100%;
      max-width:144px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:6px;
      background:linear-gradient(180deg,#fff 0%,#fff 100%);
      box-shadow:none;
      padding:0;
      overflow:visible;
    }
    .wx-scan-canvas{
      width:144px;
      height:144px;
      max-width:100%;
      display:block;
      border-radius:0;
      image-rendering:pixelated;
      background:#fff;
    }
    .wx-scan-expire{
      display:none;
    }
    .scan-placeholder{
      position:relative;
      z-index:1;
      width:100%;
      min-height:100%;
      padding:12px 9px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:8px;
      text-align:center;
      color:#64748b;
      font-size:10px;
      line-height:1.5;
    }
    .scan-placeholder i{
      width:38px;
      height:38px;
      border-radius:12px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(7,193,96,.1);
      color:#07c160;
      font-size:24px;
      box-shadow:0 10px 20px rgba(7,193,96,.14);
    }
    .scan-text{
      font-size:11px;
      color:var(--text-sub);
      line-height:1.62;
      flex:1;
      min-width:0;
      max-width:300px;
    }
    .scan-text strong{
      display:block;
      color:var(--text-main);
      font-size:13px;
      margin-bottom:2px;
    }
    .scan-actions{
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      gap:8px;
      margin-top:9px;
      width:100%;
    }
    .scan-action{
      border:1px solid rgba(226,232,240,.96);
      border-radius:999px;
      background:rgba(255,255,255,.96);
      color:#475569;
      min-height:31px;
      padding:0 12px;
      font-size:10.5px;
      font-weight:650;
      cursor:pointer;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:5px;
      transition:transform .12s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
    }
    .scan-action[hidden]{display:none;}
    .scan-action:hover{
      color:var(--pink-deep);
      border-color:rgba(255,182,213,.95);
      box-shadow:0 8px 18px rgba(255,182,213,.28);
    }
    .scan-action:active{transform:scale(.97);}
    .scan-action:disabled{
      opacity:.55;
      cursor:not-allowed;
      box-shadow:none;
    }
    .scan-action.primary{
      min-width:0;
      border:none;
      color:#fff;
      background:linear-gradient(135deg,#08c161,#00a862);
      box-shadow:0 10px 24px rgba(7,193,96,.28);
    }
    .scan-action.primary:hover{
      color:#fff;
      box-shadow:0 12px 28px rgba(7,193,96,.34);
    }
    .scan-hint{
      margin-top:6px;
      color:#94a3b8;
      font-size:10px;
      line-height:1.6;
    }
    @media(max-width:420px){
      .scan-box{
        grid-template-columns:1fr;
        justify-items:center;
        text-align:center;
        gap:9px;
      }
      .scan-code-outer{
        width:152px;
      }
      .scan-text{
        max-width:280px;
      }
      .scan-actions{
        max-width:250px;
        margin-left:auto;
        margin-right:auto;
      }
    }

    /* ✅ 第三方一键登录：只显示平台图标，不加白色圆底 */
    .third-party-row{
      margin-top:10px;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:14px;
    }
    .third-party-row.is-hidden{display:none;}
    .forgot-link{
      color:#9ca3af;
      text-decoration:none;
      font:inherit;
      border:0;
      background:transparent;
      cursor:pointer;
      padding:0;
    }
    .forgot-link:hover{color:var(--pink-deep);}
    .third-icon-btn{
      width:30px;height:30px;border-radius:8px;
      border:0;
      background:transparent;
      box-shadow:none;
      cursor:pointer;
      display:flex;align-items:center;justify-content:center;
      transition:transform .12s ease, opacity .18s ease, filter .18s ease;
      position:relative;
      padding:0;
    }
    .third-icon-btn[hidden]{display:none;}
    .third-icon-btn:disabled{
      opacity:.42;
      cursor:not-allowed;
      filter:none;
    }
    .third-icon-btn:hover{opacity:.88;filter:drop-shadow(0 8px 14px rgba(15,23,42,.18));}
    .third-icon-btn:active{transform:scale(.97);}
	    .third-icon-btn img{
	      width:28px;height:28px;display:block;
	      border-radius:7px;
	    }
	    .third-icon-btn i{
	      font-size:28px;
	      line-height:1;
	      color:#07c160;
	      display:block;
	    }
	    .third-icon-btn.qq img{
	      width:28px;
	      height:28px;
	      object-fit:contain;
	    }
	    .third-icon-btn .tip{
	      position:absolute;left:50%;top:-8px;transform:translate(-50%,-100%);
	      background:rgba(15,23,42,.92);color:#e5e7eb;
	      font-size:10px;padding:6px 8px;border-radius:999px;
	      white-space:nowrap;opacity:0;pointer-events:none;
	      transition:opacity .15s ease;
	      box-shadow:0 16px 30px rgba(15,23,42,.28);
	    }
	    .third-icon-btn:hover .tip{opacity:1;}

	    /* ===================== 下面的内容区块（保持版本1原样） ===================== */
	    .section-shell{
      margin-top:34px;
      border-radius:26px;
      padding:18px 18px 20px;
      background:rgba(255,255,255,.94);
      border:1px solid rgba(255,255,255,.96);
      box-shadow:0 18px 50px rgba(148,163,184,.45);
      backdrop-filter:blur(20px);
      -webkit-backdrop-filter:blur(20px);
      opacity:0;
      transform:translateY(30px);
      transition:opacity .7s ease, transform .7s ease, box-shadow .7s ease, background .7s ease;
    }
    .section-shell.visible{
      opacity:1;
      transform:translateY(0);
      background:
        radial-gradient(circle at 0 0,rgba(255,233,246,.9),transparent 60%),
        rgba(255,255,255,.97);
      box-shadow:0 22px 60px rgba(148,163,184,.55);
    }

    .section-title{
      font-size:18px;
      font-weight:650;
      text-align:center;
      margin-bottom:6px;
    }
    .section-title::after{
      content:'';
      display:block;
      width:68px;
      height:3px;
      border-radius:999px;
      margin:6px auto 0;
      background:linear-gradient(90deg,var(--pink),var(--indigo));
      opacity:.75;
    }
    .section-sub{
      text-align:center;
      font-size:12px;
      color:var(--text-sub);
      margin-bottom:12px;
    }

    .role-tabs{
      display:flex;
      gap:8px;
      justify-content:center;
      flex-wrap:wrap;
      margin-bottom:10px;
      font-size:12px;
    }
    .role-tab{
      padding:5px 12px;
      border-radius:999px;
      border:1px solid rgba(226,232,240,.95);
      background:#fff;
      color:var(--text-sub);
      cursor:pointer;
      position:relative;
      overflow:hidden;
      transition:box-shadow .18s ease,transform .12s ease,border-color .18s ease,background .18s ease,color .18s ease;
    }
    .role-tab::after{
      content:'';
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 10% 0,rgba(255,255,255,.8),transparent 60%);
      opacity:0;
      transition:opacity .2s ease;
    }
    .role-tab:hover::after{opacity:1;}
    .role-tab:hover{
      box-shadow:0 8px 18px rgba(148,163,184,.45);
      transform:translateY(-1px);
    }
    .role-tab.active{
      background:linear-gradient(135deg,var(--pink-soft),#fff);
      border-color:rgba(255,182,213,.9);
      color:var(--pink-deep);
      font-weight:600;
      box-shadow:0 10px 22px rgba(255,182,213,.7);
    }

    .role-pane{display:none;}
    .role-pane.active{display:block;}

    .role-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
      font-size:11px;
    }
    @media(max-width:720px){
      .role-grid{grid-template-columns:1fr;}
    }
    .role-block{
      border-radius:18px;
      padding:10px 10px 12px;
      background:rgba(248,250,252,.96);
      border:1px solid rgba(241,245,249,.96);
      box-shadow:0 10px 26px rgba(148,163,184,.28);
    }
    .role-block-title{
      font-size:13px;
      font-weight:600;
      margin-bottom:4px;
    }
    .role-block-sub{
      font-size:11px;
      color:var(--text-sub);
      margin-bottom:4px;
    }
    .role-block ul{
      list-style:none;
      margin:0;
      padding-left:0;
      color:var(--text-sub);
      line-height:1.7;
    }

    .workbench-showcase{
      max-width:920px;
      margin:0 auto 16px;
      display:grid;
      grid-template-columns:minmax(0,1.25fr) minmax(260px,.75fr);
      gap:12px;
      align-items:stretch;
    }
    @media(max-width:820px){
      .workbench-showcase{grid-template-columns:1fr;}
    }
    .workbench-preview,
    .mobile-shortcut-preview{
      border-radius:20px;
      border:1px solid rgba(255,219,238,.95);
      background:rgba(255,255,255,.96);
      box-shadow:0 14px 32px rgba(148,163,184,.25);
      overflow:hidden;
    }
    .workbench-preview{
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .preview-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      color:#111827;
    }
    .preview-title{
      font-size:13px;
      font-weight:800;
      display:flex;
      align-items:center;
      gap:7px;
      min-width:0;
    }
    .preview-title i{color:var(--pink-deep);}
    .preview-tag{
      flex:0 0 auto;
      border-radius:999px;
      padding:4px 9px;
      background:#fff1f7;
      color:var(--pink-deep);
      font-size:10px;
      font-weight:800;
      border:1px solid rgba(255,173,204,.9);
    }
    .desktop-mock{
      border-radius:18px;
      border:1px solid rgba(226,232,240,.95);
      background:#fff;
      overflow:hidden;
      box-shadow:0 12px 26px rgba(15,23,42,.08);
    }
    .desktop-mock-bar{
      height:28px;
      background:#f8fafc;
      border-bottom:1px solid rgba(226,232,240,.95);
      display:flex;
      align-items:center;
      gap:6px;
      padding:0 10px;
    }
    .desktop-dot{
      width:7px;
      height:7px;
      border-radius:999px;
      background:#cbd5e1;
      flex:0 0 auto;
    }
    .desktop-url{
      margin-left:4px;
      min-width:0;
      flex:1;
      height:16px;
      border-radius:999px;
      border:1px solid rgba(226,232,240,.95);
      background:#fff;
      color:#94a3b8;
      font-size:9px;
      line-height:15px;
      padding:0 8px;
      overflow:hidden;
      white-space:nowrap;
      text-overflow:ellipsis;
    }
    .desktop-mock-body{
      display:grid;
      grid-template-columns:122px minmax(0,1fr);
      gap:10px;
      padding:12px;
      min-height:214px;
      background:linear-gradient(180deg,#ffffff,#fbfdff);
    }
    .desktop-side{
      border-radius:14px;
      border:1px solid rgba(255,219,238,.9);
      background:#fff7fc;
      padding:10px;
      display:flex;
      flex-direction:column;
      gap:7px;
    }
    .desktop-logo-row{
      display:flex;
      align-items:center;
      gap:7px;
      color:#111827;
      font-size:11px;
      font-weight:900;
    }
    .desktop-logo-row img{
      width:24px;
      height:24px;
      object-fit:contain;
    }
    .desktop-nav-pill{
      height:22px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(255,219,238,.9);
      color:#be185d;
      font-size:9px;
      display:flex;
      align-items:center;
      padding:0 8px;
      font-weight:800;
    }
    .desktop-content{
      display:flex;
      flex-direction:column;
      gap:8px;
      min-width:0;
    }
    .desktop-topline{
      min-height:42px;
      border-radius:14px;
      border:1px solid rgba(255,219,238,.9);
      background:linear-gradient(135deg,#fff7fc,#ffffff);
      padding:8px 10px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      color:#111827;
    }
    .desktop-panel-title{
      min-width:0;
      display:flex;
      flex-direction:column;
      gap:2px;
      font-size:11px;
      font-weight:900;
    }
    .desktop-panel-title span{
      color:#64748b;
      font-size:9px;
      font-weight:700;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .desktop-status-pill{
      flex:0 0 auto;
      border-radius:999px;
      background:#ecfdf5;
      border:1px solid #bbf7d0;
      color:#15803d;
      padding:3px 8px;
      font-size:9px;
      font-weight:900;
    }
    .desktop-card-row{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:8px;
    }
    .desktop-widget{
      min-height:58px;
      border-radius:14px;
      border:1px solid rgba(226,232,240,.96);
      background:#fff;
      padding:9px;
      color:#111827;
      box-shadow:0 8px 18px rgba(148,163,184,.14);
    }
    .desktop-widget strong{
      display:block;
      font-size:11px;
      margin-bottom:5px;
    }
    .desktop-widget span{
      display:block;
      color:#64748b;
      font-size:9px;
      line-height:1.55;
    }
    .desktop-record-list{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:7px;
    }
    .desktop-record{
      min-height:42px;
      border-radius:12px;
      border:1px solid rgba(226,232,240,.95);
      background:#f8fafc;
      padding:7px 8px;
      color:#0f172a;
      font-size:9px;
      line-height:1.45;
      font-weight:800;
    }
    .desktop-record span{
      display:block;
      margin-top:2px;
      color:#64748b;
      font-size:8px;
      font-weight:700;
    }
    .preview-note{
      color:var(--text-sub);
      font-size:11px;
      line-height:1.7;
    }
    .desktop-guide-note{
      max-width:920px;
      margin:-4px auto 18px;
      border-radius:18px;
      border:1px solid rgba(255,219,238,.95);
      background:rgba(255,255,255,.96);
      box-shadow:0 12px 26px rgba(148,163,184,.2);
      padding:12px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      color:#111827;
      text-align:left;
    }
    .desktop-guide-copy{
      min-width:0;
      display:flex;
      align-items:flex-start;
      gap:10px;
    }
    .desktop-guide-copy i{
      width:30px;
      height:30px;
      border-radius:12px;
      background:#fff1f7;
      color:var(--pink-deep);
      display:grid;
      place-items:center;
      flex:0 0 auto;
      border:1px solid rgba(255,219,238,.95);
    }
    .desktop-guide-title{
      font-size:13px;
      font-weight:900;
      line-height:1.45;
    }
    .desktop-guide-desc{
      margin-top:2px;
      color:var(--text-sub);
      font-size:11px;
      line-height:1.6;
    }
    .desktop-guide-link{
      flex:0 0 auto;
      min-height:34px;
      border-radius:999px;
      padding:7px 12px;
      color:#fff;
      background:linear-gradient(135deg,var(--pink-deep),#a855f7);
      text-decoration:none;
      font-size:11px;
      font-weight:900;
      display:inline-flex;
      align-items:center;
      gap:6px;
      box-shadow:0 10px 20px rgba(224,0,122,.2);
    }
    @media(max-width:620px){
      .desktop-guide-note{
        flex-direction:column;
        align-items:stretch;
      }
      .desktop-guide-link{
        justify-content:center;
        width:100%;
      }
    }
    .mobile-shortcut-preview{
      padding:14px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:10px;
      text-align:center;
    }
    .phone-frame-card{
      width:100%;
      min-height:160px;
      border-radius:18px;
      border:1px solid rgba(203,213,225,.95);
      background:linear-gradient(180deg,#fff,#f8fafc);
      display:grid;
      place-items:center;
      padding:14px;
    }
    .phone-frame{
      width:150px;
      min-height:252px;
      border:3px solid #1f2937;
      border-radius:24px;
      background:#fff;
      padding:14px 10px 16px;
      position:relative;
      display:grid;
      place-items:center;
      box-shadow:0 12px 26px rgba(15,23,42,.08);
    }
    .phone-frame::before{
      content:"";
      position:absolute;
      top:10px;
      left:50%;
      width:34px;
      height:4px;
      border-radius:999px;
      background:#cbd5e1;
      transform:translateX(-50%);
    }
    .phone-screen-card{
      width:118px;
      min-height:196px;
      margin-top:10px;
      border-radius:16px;
      border:1px solid rgba(226,232,240,.95);
      background:linear-gradient(180deg,#fff7fc,#f8fafc);
      padding:9px 7px;
      display:flex;
      flex-direction:column;
      gap:7px;
      overflow:hidden;
    }
    .phone-status{
      display:flex;
      justify-content:space-between;
      color:#94a3b8;
      font-size:7px;
      font-weight:900;
    }
    .phone-app-head{
      display:flex;
      align-items:center;
      gap:6px;
      text-align:left;
      color:#111827;
    }
    .phone-app-head img{
      width:24px;
      height:24px;
      object-fit:contain;
      flex:0 0 auto;
    }
    .phone-app-title{
      min-width:0;
      font-size:10px;
      font-weight:900;
      line-height:1.25;
    }
    .phone-app-title span{
      display:block;
      color:#94a3b8;
      font-size:7px;
      font-weight:800;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .phone-hero-card{
      border-radius:12px;
      background:#fff;
      border:1px solid rgba(255,219,238,.95);
      box-shadow:0 6px 14px rgba(224,0,122,.08);
      padding:8px;
      text-align:left;
      color:#111827;
      font-size:10px;
      font-weight:900;
      line-height:1.35;
    }
    .phone-hero-card span{
      display:block;
      color:#64748b;
      font-size:7px;
      font-weight:800;
      margin-top:3px;
    }
    .phone-mini-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:6px;
    }
    .phone-mini-card{
      min-height:38px;
      border-radius:10px;
      background:#fff;
      border:1px solid rgba(226,232,240,.95);
      padding:6px;
      color:#0f172a;
      font-size:8px;
      font-weight:900;
      line-height:1.35;
      text-align:left;
    }
    .phone-mini-card span{
      display:block;
      margin-top:2px;
      color:#94a3b8;
      font-size:7px;
      font-weight:800;
    }
    .phone-bottom-nav{
      margin-top:auto;
      min-height:26px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(226,232,240,.95);
      display:flex;
      align-items:center;
      justify-content:space-around;
      color:#94a3b8;
      font-size:7px;
      font-weight:900;
    }
    .phone-bottom-nav b{color:#e0007a;}
    .mobile-shortcut-preview h3{
      margin:0;
      color:#111827;
      font-size:14px;
      font-weight:900;
    }
    .mobile-shortcut-preview p{
      margin:0;
      color:var(--text-sub);
      font-size:11px;
      line-height:1.7;
    }
    @media(max-width:520px){
      .workbench-preview{
        padding:10px;
        border-radius:16px;
      }
      .preview-head{
        gap:8px;
      }
      .preview-title{
        font-size:12px;
      }
      .preview-tag{
        padding:3px 8px;
      }
      .desktop-mock{
        border-radius:15px;
      }
      .desktop-mock-bar{
        height:24px;
        gap:5px;
        padding:0 8px;
      }
      .desktop-dot{
        width:6px;
        height:6px;
      }
      .desktop-url{
        height:14px;
        line-height:13px;
        font-size:8px;
        padding:0 7px;
      }
      .desktop-mock-body{
        grid-template-columns:minmax(78px,.82fr) minmax(0,1.58fr);
        gap:7px;
        padding:8px;
        min-height:0;
        aspect-ratio:16 / 10.6;
      }
      .desktop-side{
        border-radius:12px;
        padding:7px;
        gap:5px;
      }
      .desktop-logo-row{
        gap:5px;
        font-size:8px;
      }
      .desktop-logo-row img{
        width:18px;
        height:18px;
      }
      .desktop-nav-pill{
        height:18px;
        padding:0 6px;
        font-size:7px;
      }
      .desktop-content{
        gap:6px;
      }
      .desktop-topline{
        min-height:34px;
        border-radius:12px;
        padding:6px 7px;
        gap:6px;
      }
      .desktop-panel-title{
        font-size:8px;
      }
      .desktop-panel-title span{
        font-size:7px;
        line-height:1.25;
      }
      .desktop-status-pill{
        padding:2px 5px;
        font-size:7px;
      }
      .desktop-card-row{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:5px;
      }
      .desktop-widget{
        min-height:44px;
        border-radius:11px;
        padding:6px;
      }
      .desktop-widget strong{
        font-size:8px;
        margin-bottom:2px;
      }
      .desktop-widget span{
        font-size:7px;
        line-height:1.3;
      }
      .desktop-record-list{
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:4px;
      }
      .desktop-record{
        min-height:34px;
        border-radius:10px;
        padding:5px;
        font-size:7px;
        line-height:1.25;
      }
      .desktop-record span{
        margin-top:1px;
        font-size:6px;
        line-height:1.2;
      }
      .preview-note{
        font-size:10px;
      }
    }

    .xiaodaidai-section{
      position:relative;
      overflow:hidden;
      scroll-margin-top:calc(var(--navH) + 18px);
    }
    .xiaodaidai-section::before{
      content:'';
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 8% 8%,rgba(255,214,236,.76),transparent 44%),
        radial-gradient(circle at 92% 10%,rgba(224,242,255,.7),transparent 42%);
      pointer-events:none;
      opacity:.86;
    }
    .xiaodaidai-section > *{
      position:relative;
      z-index:1;
    }
    .xiaodaidai-subcopy{
      max-width:820px;
      margin-left:auto;
      margin-right:auto;
      line-height:1.75;
    }
    .xiaodaidai-hero{
      max-width:940px;
      margin:14px auto 14px;
      display:grid;
      grid-template-columns:minmax(0,1fr) minmax(260px,.62fr);
      gap:14px;
      align-items:stretch;
    }
    .xiaodaidai-copy-card,
    .xiaodaidai-visual-card{
      border-radius:22px;
      border:1px solid rgba(255,255,255,.96);
      background:rgba(255,255,255,.88);
      box-shadow:
        0 18px 42px rgba(148,163,184,.26),
        0 1px 0 rgba(255,255,255,.96) inset;
      backdrop-filter:blur(16px);
      -webkit-backdrop-filter:blur(16px);
    }
    .xiaodaidai-copy-card{
      padding:15px;
    }
    .xiaodaidai-eyebrow{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:24px;
      padding:0 10px;
      border-radius:999px;
      background:rgba(255,246,252,.96);
      border:1px solid rgba(255,219,238,.96);
      color:var(--pink-deep);
      font-size:11px;
      font-weight:850;
      margin-bottom:9px;
    }
    .xiaodaidai-lead{
      font-size:13px;
      line-height:1.82;
      color:#334155;
      margin-bottom:12px;
    }
    .xiaodaidai-assurance-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:9px;
      margin-bottom:13px;
    }
    .xiaodaidai-assurance{
      min-height:66px;
      border-radius:16px;
      padding:9px;
      background:rgba(248,250,252,.94);
      border:1px solid rgba(241,245,249,.96);
      box-shadow:0 10px 20px rgba(148,163,184,.16);
    }
    .xiaodaidai-assurance strong{
      display:block;
      font-size:12px;
      color:#0f172a;
      margin-bottom:4px;
    }
    .xiaodaidai-assurance span{
      display:block;
      color:var(--text-sub);
      font-size:10.5px;
      line-height:1.55;
    }
    .xiaodaidai-provider-declaration{
      display:grid;
      gap:8px;
      margin:0 0 13px;
      padding:10px 11px;
      border-radius:16px;
      background:linear-gradient(135deg,rgba(255,255,255,.96),rgba(239,246,255,.88));
      border:1px solid rgba(219,234,254,.96);
      box-shadow:0 10px 22px rgba(148,163,184,.14);
    }
    .xiaodaidai-provider-row{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:6px;
      color:#334155;
      font-size:11.5px;
      line-height:1.6;
    }
    .xiaodaidai-provider-label{
      color:#0f172a;
      font-weight:850;
      flex:0 0 auto;
    }
    .xiaodaidai-provider-pill{
      display:inline-flex;
      align-items:center;
      gap:5px;
      min-height:22px;
      padding:3px 8px;
      border-radius:999px;
      background:rgba(255,255,255,.9);
      border:1px solid rgba(226,232,240,.95);
      color:#334155;
      font-size:1em;
      font-weight:750;
      white-space:nowrap;
    }
    .xiaodaidai-provider-separator,
    .xiaodaidai-provider-etc{
      color:#64748b;
      flex:0 0 auto;
    }
    .xiaodaidai-provider-icon,
    .xiaodaidai-model-icon{
      width:1em;
      height:1em;
      flex:0 0 1em;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-size:1em;
      line-height:1;
    }
    .xiaodaidai-provider-icon img,
    .xiaodaidai-model-icon img{
      width:1em;
      height:1em;
      display:block;
      object-fit:contain;
    }
    .xiaodaidai-model-icon i{
      color:var(--pink-deep);
      font-size:1em;
      line-height:1;
    }
    .xiaodaidai-provider-note{
      color:#64748b;
      font-size:10.8px;
      line-height:1.65;
    }
    .xiaodaidai-actions{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
    }
    .xiaodaidai-actions .bottom-cta-btn{
      min-height:36px;
      padding:0 15px;
    }
    .xiaodaidai-visual-card{
      padding:14px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:12px;
      min-height:100%;
    }
    .xiaodaidai-avatar-row{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .xiaodaidai-avatar{
      width:56px;
      height:56px;
      border-radius:20px;
      padding:4px;
      background:linear-gradient(145deg,var(--pink),var(--indigo));
      box-shadow:0 16px 34px rgba(255,111,178,.34);
      flex:0 0 auto;
      position:relative;
      border:0;
      cursor:pointer;
      appearance:none;
      -webkit-appearance:none;
      isolation:isolate;
    }
    .xiaodaidai-avatar:focus-visible{
      outline:none;
      box-shadow:
        0 16px 34px rgba(255,111,178,.34),
        0 0 0 4px rgba(99,102,241,.2);
    }
    .xiaodaidai-avatar::before{
      content:'';
      position:absolute;
      inset:-5px;
      border-radius:24px;
      border:2px solid rgba(255,111,178,.34);
      opacity:0;
      transform:scale(.92);
      pointer-events:none;
      z-index:-1;
    }
    .xiaodaidai-avatar.is-speaking{
      animation:xiaodaidaiAvatarSpeak 1.08s ease-in-out infinite;
    }
    .xiaodaidai-avatar.is-speaking::before{
      opacity:1;
      animation:xiaodaidaiVoiceRing 1.2s ease-out infinite;
    }
    .xiaodaidai-avatar img{
      width:100%;
      height:100%;
      display:block;
      border-radius:16px;
      object-fit:cover;
      background:#fff;
    }
    .xiaodaidai-voice-wave{
      position:absolute;
      right:-5px;
      bottom:-3px;
      width:24px;
      height:20px;
      display:flex;
      align-items:flex-end;
      justify-content:center;
      gap:2px;
      padding:5px 4px;
      border-radius:999px;
      background:rgba(255,255,255,.96);
      border:1px solid rgba(255,219,238,.96);
      box-shadow:0 10px 20px rgba(148,163,184,.22);
      opacity:0;
      transform:translateY(2px) scale(.88);
      pointer-events:none;
      transition:opacity .18s ease, transform .18s ease;
      z-index:3;
    }
    .xiaodaidai-voice-wave span{
      width:3px;
      height:7px;
      border-radius:999px;
      background:linear-gradient(180deg,var(--pink),var(--indigo));
      transform-origin:center bottom;
    }
    .xiaodaidai-avatar.is-speaking .xiaodaidai-voice-wave{
      opacity:1;
      transform:translateY(0) scale(1);
    }
    .xiaodaidai-avatar.is-speaking .xiaodaidai-voice-wave span{
      animation:xiaodaidaiVoiceBar .56s ease-in-out infinite;
    }
    .xiaodaidai-avatar.is-speaking .xiaodaidai-voice-wave span:nth-child(2){animation-delay:.12s;}
    .xiaodaidai-avatar.is-speaking .xiaodaidai-voice-wave span:nth-child(3){animation-delay:.24s;}
    @keyframes xiaodaidaiAvatarSpeak{
      0%,100%{transform:translateY(0) scale(1);}
      45%{transform:translateY(-1px) scale(1.035);}
    }
    @keyframes xiaodaidaiVoiceRing{
      0%{opacity:.85;transform:scale(.88);}
      100%{opacity:0;transform:scale(1.28);}
    }
    @keyframes xiaodaidaiVoiceBar{
      0%,100%{height:6px;}
      50%{height:13px;}
    }
    .xiaodaidai-name{
      font-size:15px;
      font-weight:850;
      color:#0f172a;
      line-height:1.35;
    }
    .xiaodaidai-role{
      margin-top:3px;
      font-size:11px;
      color:var(--text-sub);
      line-height:1.5;
    }
    .xiaodaidai-chat-preview{
      display:flex;
      flex-direction:column;
      gap:8px;
      margin-top:2px;
    }
    .xiaodaidai-chat-log{
      min-height:138px;
      display:grid;
      align-content:end;
      gap:8px;
      padding:10px;
      border-radius:18px;
      background:
        radial-gradient(circle at 18% 10%,rgba(255,219,238,.34),transparent 32%),
        linear-gradient(135deg,rgba(255,255,255,.94),rgba(248,250,252,.9));
      border:1px solid rgba(241,245,249,.96);
      box-shadow:0 12px 26px rgba(148,163,184,.16) inset;
      overflow:hidden;
    }
    .xiaodaidai-chat-row{
      display:flex;
      align-items:flex-end;
      gap:6px;
    }
    .xiaodaidai-chat-row.is-user{
      justify-content:flex-end;
    }
    .xiaodaidai-chat-row.is-assistant{
      justify-content:flex-start;
    }
    .xiaodaidai-bubble{
      max-width:92%;
      border-radius:16px;
      padding:9px 10px;
      font-size:11px;
      line-height:1.65;
      color:#334155;
      background:rgba(248,250,252,.96);
      border:1px solid rgba(241,245,249,.96);
      box-shadow:0 10px 22px rgba(148,163,184,.14);
    }
    .xiaodaidai-bubble.is-user{
      border-bottom-right-radius:7px;
      background:rgba(255,255,255,.96);
      border-color:rgba(226,232,240,.96);
    }
    .xiaodaidai-bubble.is-assistant{
      border-bottom-left-radius:7px;
      background:linear-gradient(135deg,rgba(255,246,252,.98),rgba(239,246,255,.96));
      border-color:rgba(255,219,238,.95);
    }
    .xiaodaidai-bubble.is-waiting{
      min-width:54px;
      min-height:38px;
      padding:10px 12px;
    }
    .xiaodaidai-typing{
      display:inline-flex;
      align-items:center;
      gap:4px;
      height:16px;
    }
    .xiaodaidai-typing[hidden]{
      display:none;
    }
    .xiaodaidai-typing span{
      width:4px;
      height:4px;
      border-radius:999px;
      background:linear-gradient(135deg,var(--pink),var(--indigo));
      opacity:.5;
      animation:xiaodaidaiTyping .82s ease-in-out infinite;
    }
    .xiaodaidai-typing span:nth-child(2){animation-delay:.12s;}
    .xiaodaidai-typing span:nth-child(3){animation-delay:.24s;}
    @keyframes xiaodaidaiTyping{
      0%,100%{transform:translateY(0);opacity:.45;}
      45%{transform:translateY(-3px);opacity:1;}
    }
    .xiaodaidai-chat-prompts{
      display:flex;
      flex-wrap:wrap;
      gap:6px;
    }
    .xiaodaidai-chat-prompt{
      flex:1 1 78px;
      min-height:28px;
      border-radius:999px;
      border:1px solid rgba(226,232,240,.96);
      background:rgba(255,255,255,.9);
      color:#64748b;
      font-size:10.5px;
      font-weight:800;
      cursor:pointer;
      box-shadow:0 8px 18px rgba(148,163,184,.12);
      transition:color .16s ease,border-color .16s ease,box-shadow .16s ease,transform .16s ease;
    }
    .xiaodaidai-chat-prompt:hover,
    .xiaodaidai-chat-prompt:focus-visible{
      color:#0f172a;
      border-color:rgba(255,192,224,.96);
      box-shadow:0 10px 20px rgba(255,111,178,.18);
      outline:none;
    }
    .xiaodaidai-chat-prompt.is-active{
      color:#fff;
      border-color:transparent;
      background:linear-gradient(135deg,var(--pink),var(--indigo));
      box-shadow:0 12px 24px rgba(255,111,178,.24);
    }
    .xiaodaidai-status-row{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:7px;
    }
    .xiaodaidai-status{
      border-radius:14px;
      padding:8px 7px;
      text-align:center;
      color:#475569;
      font-size:10px;
      line-height:1.45;
      background:rgba(255,255,255,.86);
      border:1px solid rgba(241,245,249,.96);
    }
    .xiaodaidai-status i{
      display:block;
      color:var(--pink-deep);
      font-size:13px;
      margin-bottom:4px;
    }
    .xiaodaidai-card{
      min-height:164px;
    }
    .xiaodaidai-card .intro-icon{
      background:
        radial-gradient(circle at 24% 18%,rgba(255,255,255,.55),transparent 36%),
        linear-gradient(145deg,var(--pink),var(--indigo));
    }
    .xiaodaidai-note{
      max-width:880px;
      margin:12px auto 0;
      display:flex;
      gap:8px;
      align-items:flex-start;
      border-radius:16px;
      padding:10px 12px;
      background:rgba(239,246,255,.74);
      border:1px solid rgba(219,234,254,.96);
      color:#475569;
      font-size:11px;
      line-height:1.7;
    }
    .xiaodaidai-note i{
      color:var(--indigo);
      margin-top:2px;
      flex:0 0 auto;
    }
    @media(max-width:760px){
      .xiaodaidai-hero{
        grid-template-columns:1fr;
        gap:12px;
        margin-top:12px;
      }
      .xiaodaidai-copy-card,
      .xiaodaidai-visual-card{
        border-radius:20px;
        padding:12px;
      }
      .xiaodaidai-assurance-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:7px;
      }
      .xiaodaidai-card{
        min-height:142px;
      }
    }
    @media(max-width:420px){
      .xiaodaidai-subcopy{
        text-align:left;
      }
      .xiaodaidai-lead{
        font-size:12px;
        line-height:1.75;
      }
      .xiaodaidai-assurance-grid,
      .xiaodaidai-status-row{
        grid-template-columns:1fr;
      }
      .xiaodaidai-assurance{
        min-height:0;
      }
      .xiaodaidai-actions{
        flex-direction:column;
        align-items:stretch;
      }
      .xiaodaidai-actions .bottom-cta-btn{
        width:100%;
        text-align:center;
      }
      .xiaodaidai-provider-row{
        align-items:flex-start;
      }
      .xiaodaidai-provider-pill{
        white-space:normal;
      }
      .xiaodaidai-chat-log{
        min-height:122px;
        padding:9px;
        border-radius:16px;
      }
      .xiaodaidai-bubble{
        max-width:96%;
        font-size:10.8px;
        line-height:1.6;
      }
      .xiaodaidai-chat-prompt{
        flex-basis:72px;
        min-height:27px;
        padding:0 7px;
        font-size:10px;
      }
      .xiaodaidai-avatar{
        width:50px;
        height:50px;
        border-radius:18px;
      }
      .xiaodaidai-avatar img{
        border-radius:14px;
      }
      .xiaodaidai-voice-wave{
        right:-4px;
        bottom:-3px;
        width:22px;
        height:18px;
      }
      .xiaodaidai-note{
        padding:9px 10px;
      }
    }

    .detail-card{
      cursor:pointer;
    }
    .role-block.detail-card{
      transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .role-block.detail-card:hover,
    .role-block.detail-card:focus-visible{
      transform:translateY(-3px);
      border-color:rgba(255,219,238,.96);
      box-shadow:0 16px 32px rgba(148,163,184,.46);
      outline:none;
    }
    .detail-card:focus-visible{
      outline:2px solid rgba(255,111,178,.45);
      outline-offset:3px;
    }

    .why-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:14px;
      font-size:11px;
    }
    @media(max-width:900px){
      .why-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
    }
    @media(max-width:640px){
      .why-grid{grid-template-columns:1fr;}
    }
    .why-card{
      border-radius:18px;
      padding:10px 10px 12px;
      background:rgba(255,255,255,.96);
      border:1px solid rgba(255,219,238,.95);
      box-shadow:0 14px 30px rgba(255,182,213,.55);
      backdrop-filter:blur(14px);
      -webkit-backdrop-filter:blur(14px);
      opacity:0;
      transform:translateY(26px);
      transition:opacity .7s ease, transform .7s ease, box-shadow .7s ease;
    }
    .why-card.visible{
      opacity:1;
      transform:translateY(0);
      box-shadow:0 16px 34px rgba(255,182,213,.7);
    }
    .why-icon{
      width:34px;
      height:34px;
      border-radius:999px;
      background:linear-gradient(145deg,var(--pink),var(--indigo));
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      box-shadow:0 10px 20px rgba(255,111,178,.7);
      margin-bottom:4px;
    }
    .why-icon i{font-size:17px;}
    .why-card h3{
      font-size:13px;
      font-weight:600;
      margin-bottom:3px;
    }
    .why-card p{
      font-size:11px;
      color:var(--text-sub);
      line-height:1.7;
    }

    .creator-showcase{
      margin-top:34px;
      padding:22px 18px 22px;
      border-radius:26px;
      background:radial-gradient(circle at 0 0,rgba(255,233,246,.9),transparent 60%),
                 radial-gradient(circle at 100% 0,rgba(219,234,254,.9),transparent 60%),
                 rgba(255,255,255,.95);
      border:1px solid rgba(255,255,255,.96);
      box-shadow:0 18px 50px rgba(148,163,184,.45);
      backdrop-filter:blur(20px);
      -webkit-backdrop-filter:blur(20px);
      text-align:center;
      position:relative;
      overflow:hidden;
      opacity:0;
      transform:translateY(30px);
      transition:opacity .7s ease, transform .7s ease, box-shadow .7s ease;
    }
    .creator-showcase.visible{
      opacity:1;
      transform:translateY(0);
      box-shadow:0 22px 60px rgba(148,163,184,.55);
    }
    .creator-title{
      font-size:18px;
      font-weight:650;
      margin-bottom:4px;
    }
    .creator-sub{
      font-size:12px;
      color:var(--text-sub);
      margin-bottom:10px;
    }

    .creator-bg-bubble{
      position:absolute;
      border-radius:999px;
      background:rgba(255,255,255,.85);
      opacity:.9;
      box-shadow:0 0 16px rgba(148,163,184,.4);
      animation:creatorBubble 18s linear infinite;
    }
    .creator-bg-bubble.b1{width:18px;height:18px;left:8%;top:32%;animation-delay:0s;}
    .creator-bg-bubble.b2{width:22px;height:22px;left:20%;top:12%;animation-delay:3s;}
    .creator-bg-bubble.b3{width:16px;height:16px;right:12%;top:20%;animation-delay:6s;}
    .creator-bg-bubble.b4{width:20px;height:20px;right:6%;bottom:24%;animation-delay:9s;}
    .creator-bg-bubble.b5{width:14px;height:14px;left:14%;bottom:18%;animation-delay:12s;}
    @keyframes creatorBubble{
      0%{transform:translateY(0);opacity:.1;}
      30%{opacity:.9;}
      60%{opacity:.5;}
      100%{transform:translateY(-32px);opacity:0;}
    }

    .works-part{position:relative;z-index:1;}
    .creator-subtitle{
      font-size:13px;
      font-weight:600;
      text-align:center;
      margin:4px auto 6px;
      max-width:780px;
    }
    .creator-subtitle span{
      font-size:12px;
      color:var(--text-sub);
      font-weight:400;
    }

    .works-grid{
      width:100%;
      max-width:780px;
      min-width:0;
      margin:0 auto 18px;
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px 16px;
      font-size:11px;
      text-align:left;
    }
    @media(max-width:720px){ .works-grid{grid-template-columns:1fr;} }
    .showcase-empty-state{
      width:100%;
      box-sizing:border-box;
      padding:14px 16px;
      border-radius:16px;
      background:rgba(255,255,255,.74);
      border:1px dashed rgba(255,173,204,.86);
      color:var(--text-sub);
      font-size:11.5px;
      line-height:1.7;
      text-align:center;
      box-shadow:0 10px 24px rgba(148,163,184,.22);
    }
    .works-grid .showcase-empty-state,
    .creator-list .showcase-empty-state{
      grid-column:1 / -1;
    }
    .work-card{
      display:flex;
      align-items:flex-start;
      min-width:0;
      max-width:100%;
      box-sizing:border-box;
      border-radius:16px;
      padding:8px 9px;
      background:rgba(255,255,255,.96);
      border:1px solid rgba(255,219,238,.9);
      box-shadow:0 10px 24px rgba(148,163,184,.35);
      text-decoration:none;
      color:var(--text-main);
      cursor:pointer;
      transition:transform .16s ease, box-shadow .16s ease;
    }
    .work-card:hover{
      transform:translateY(-3px);
      box-shadow:0 16px 30px rgba(148,163,184,.55);
    }
    .work-cover{
      width:86px;
      height:64px;
      border-radius:12px;
      flex-shrink:0;
      overflow:hidden;
      background:rgba(248,250,252,.96);
    }
    .work-cover > img{
      width:100%;
      height:100%;
      display:block;
      border-radius:inherit;
      object-fit:contain;
    }
    .work-info{
      flex:1;
      min-width:0;
      margin-left:10px;
      text-align:left;
    }
    .work-title{font-size:12px;font-weight:600;margin-bottom:3px;}
    .work-meta{font-size:11px;color:var(--text-sub);line-height:1.6;}

    .creator-list-part{position:relative;z-index:1;margin-top:4px;}
    .creator-list{
      width:100%;
      max-width:880px;
      min-width:0;
      margin:0 auto;
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      font-size:11px;
      text-align:left;
    }
    @media(max-width:960px){ .creator-list{grid-template-columns:repeat(2,minmax(0,1fr));} }
    @media(max-width:720px){ .creator-list{grid-template-columns:1fr;} }
    .creator-card{
      min-width:0;
      max-width:100%;
      box-sizing:border-box;
      border-radius:18px;
      padding:9px 10px;
      background:rgba(255,255,255,.98);
      border:1px solid rgba(255,219,238,.95);
      box-shadow:0 10px 24px rgba(148,163,184,.35);
      display:flex;
      align-items:flex-start;
      gap:10px;
      cursor:pointer;
      transition:transform .16s ease, box-shadow .16s ease;
      text-decoration:none;
      color:inherit;
    }
    .creator-card:hover{
      transform:translateY(-3px);
      box-shadow:0 16px 32px rgba(148,163,184,.6);
    }
    .creator-avatar-round{
      width:46px;
      height:46px;
      border-radius:50%;
      flex-shrink:0;
      background-size:cover;
      background-position:center;
      position:relative;
    }
    .creator-avatar-round > img,
    .creator-avatar > img{
      width:100%;
      height:100%;
      display:block;
      border-radius:inherit;
      object-fit:cover;
    }
    .creator-avatar-round::after{
      content:'';
      position:absolute;
      inset:0;
      border-radius:50%;
      border:2px solid rgba(255,255,255,.9);
    }
    .creator-verified-mark{
      position:absolute;
      right:-1px;
      bottom:-1px;
      z-index:3;
      width:16px;
      height:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:var(--pink-deep);
      font-size:13px;
      line-height:1;
      pointer-events:none;
      text-shadow:
        0 1px 0 #fff,
        1px 0 0 #fff,
        0 -1px 0 #fff,
        -1px 0 0 #fff,
        0 5px 10px rgba(255,111,178,.30);
    }
    .creator-verified-mark-img{
      width:100%;
      height:100%;
      display:block;
      object-fit:contain;
      filter:drop-shadow(0 2px 5px rgba(255,111,178,.34));
    }

    .creator-info-main{
      flex:1;
      min-width:0;
      text-align:left;
    }
    .creator-name-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      margin-bottom:2px;
      gap:8px;
    }
    .creator-name{
      font-size:12px;
      font-weight:600;
      min-width:0;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .creator-badges{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:6px;
      min-width:0;
      max-width:100%;
      flex:0 0 auto;
      flex-wrap:wrap;
    }
    .creator-tag{
      font-size:10px;
      padding:2px 7px;
      border-radius:999px;
      background:rgba(255,246,252,1);
      border:1px solid rgba(255,219,238,.9);
      color:var(--pink-deep);
      flex:0 0 auto;
    }
    .creator-verify-badge{
      display:inline-flex;
      align-items:center;
      gap:4px;
      font-size:10px;
      padding:2px 7px;
      border-radius:999px;
      background:linear-gradient(135deg,#fff1f7,#ffe4ef);
      border:1px solid rgba(255,173,204,.95);
      color:#be185d;
      box-shadow:0 6px 14px rgba(255,111,178,.18);
      flex:0 0 auto;
    }
    .creator-verify-badge-icon{
      width:15px;
      height:15px;
      display:block;
      flex:0 0 15px;
      object-fit:contain;
      transform:translateY(-1px);
      filter:drop-shadow(0 2px 5px rgba(255,111,178,.26));
    }
    .contract-certification-inline{
      display:inline-flex;
      align-items:center;
      gap:4px;
      white-space:nowrap;
      vertical-align:-2px;
    }
    .contract-certification-inline-icon{
      width:14px;
      height:14px;
      display:block;
      flex:0 0 14px;
      object-fit:contain;
      filter:drop-shadow(0 2px 5px rgba(255,111,178,.24));
    }
    .creator-desc{
      font-size:11px;
      color:var(--text-sub);
      line-height:1.5;
      margin-bottom:4px;
    }
    .creator-stats{
      font-size:10.5px;
      color:#9ca3af;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }

    .creator-cloud-part{
      position:relative;
      z-index:1;
      margin-top:14px;
    }
    .creator-cloud-part .creator-cloud-note{
      max-width:780px;
      margin:4px auto 0;
      font-size:11px;
      color:var(--text-sub);
      text-align:center;
      line-height:1.7;
    }
    .creator-avatars-wrap{
      position:relative;
      width:100%;
      height:190px;
      max-width:580px;
      margin:8px auto 6px;
      overflow:hidden;
    }
    .creator-avatars-wrap.is-empty{
      height:auto;
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .creator-avatar{
      position:absolute;
      width:74px;
      height:74px;
      border-radius:999px;
      overflow:hidden;
      box-shadow:0 14px 32px rgba(148,163,184,.75);
      cursor:pointer;
      transform-origin:center;
      animation:avatarFloat 7s ease-in-out infinite;
      transition:transform .18s ease,box-shadow .18s ease;
      background-size:cover;
      background-position:center;
    }
    .creator-avatar:hover{
      transform:scale(1.05);
      box-shadow:0 18px 40px rgba(148,163,184,.85);
    }
    .creator-avatar .creator-verified-mark{
      right:7px;
      bottom:6px;
      width:18px;
      height:18px;
      font-size:16px;
    }
    .creator-avatar:nth-child(1){left:4%;top:22%;animation-delay:0s;}
    .creator-avatar:nth-child(2){left:24%;top:4%;animation-delay:.4s;}
    .creator-avatar:nth-child(3){left:46%;top:18%;animation-delay:.8s;}
    .creator-avatar:nth-child(4){left:68%;top:6%;animation-delay:1.2s;}
    .creator-avatar:nth-child(5){left:14%;top:58%;animation-delay:1.6s;}
    .creator-avatar:nth-child(6){left:38%;top:64%;animation-delay:2s;}
    .creator-avatar:nth-child(7){left:60%;top:54%;animation-delay:2.4s;}
    .creator-avatar:nth-child(8){left:80%;top:32%;animation-delay:2.8s;}
    .work-card.showcase-media-pending,
    .creator-card.showcase-media-pending,
    .creator-avatar.showcase-media-pending{
      visibility:hidden;
      opacity:0;
      pointer-events:none;
    }
    .work-card.showcase-media-ready,
    .creator-card.showcase-media-ready,
    .creator-avatar.showcase-media-ready{
      visibility:visible;
      opacity:1;
    }
    @keyframes avatarFloat{
      0%{transform:translate3d(0,0,0);}
      50%{transform:translate3d(0,-10px,0);}
      100%{transform:translate3d(0,0,0);}
    }

    @media(max-width:760px){
      .works-grid,
      .creator-list,
      .creator-avatars-wrap{
        max-width:100%;
      }
    }

    @media(max-width:420px){
      .work-card{
        padding:7px 8px;
      }
      .work-cover{
        width:74px;
        height:58px;
      }
      .creator-card{
        gap:8px;
        padding:8px;
      }
      .creator-name-row{
        min-width:0;
        flex-wrap:wrap;
      }
      .creator-badges{
        justify-content:flex-start;
        flex:1 1 100%;
      }
      .creator-tag,
      .creator-verify-badge{
        max-width:100%;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
      }
      .creator-avatars-wrap:not(.is-empty){
        height:auto;
        min-height:0;
        display:grid;
        grid-template-columns:repeat(4,minmax(0,1fr));
        gap:10px 8px;
        align-items:center;
        justify-items:center;
        padding:4px 0;
      }
      .creator-avatar{
        position:relative;
        left:auto !important;
        top:auto !important;
        width:62px;
        height:62px;
      }
    }

    .care-section{
      margin-top:34px;
      border-radius:26px;
      padding:22px 18px 24px;
      background:radial-gradient(circle at 10% 0,rgba(255,233,246,.9),transparent 60%),
                 radial-gradient(circle at 90% 100%,rgba(219,234,254,.9),transparent 60%),
                 rgba(255,255,255,.96);
      border:1px solid rgba(255,255,255,.96);
      box-shadow:0 18px 50px rgba(148,163,184,.45);
      backdrop-filter:blur(20px);
      -webkit-backdrop-filter:blur(20px);
      text-align:center;
      position:relative;
      overflow:hidden;
      opacity:0;
      transform:translateY(30px);
      transition:opacity .7s ease, transform .7s ease, box-shadow .7s ease;
    }
    .care-section.visible{
      opacity:1;
      transform:translateY(0);
      box-shadow:0 22px 60px rgba(148,163,184,.55);
    }
    .care-section-title{
      font-size:18px;
      font-weight:650;
      margin-bottom:4px;
    }
    .care-section-title span{
      font-size:16px;
      color:var(--pink-deep);
    }
    .care-section-sub{
      font-size:12px;
      color:var(--text-sub);
      margin-bottom:14px;
    }
    .care-bubbles-wrap{
      position:relative;
      max-width:720px;
      margin:0 auto;
      height:210px;
    }
    .care-bubble{
      position:absolute;
      max-width:260px;
      padding:7px 11px;
      border-radius:18px;
      font-size:12px;
      text-align:left;
      color:var(--text-main);
      background:rgba(255,255,255,.96);
      border:1px solid rgba(255,219,238,.9);
      box-shadow:0 10px 24px rgba(148,163,184,.45);
      opacity:0;
      transform:translateY(6px) scale(.94);
      animation:careBubbleInOut 8s ease-in-out forwards;
      line-height:1.8;
    }
    .care-bubble.me{
      background:linear-gradient(135deg,var(--pink-soft),#fff);
      border-color:rgba(255,182,213,.9);
    }
    .care-bubble::before{content:none;}
    @keyframes careBubbleInOut{
      0%{opacity:0;transform:translateY(10px) scale(.94);}
      10%{opacity:1;transform:translateY(0) scale(1);}
      70%{opacity:1;transform:translateY(-6px) scale(1);}
      100%{opacity:0;transform:translateY(-10px) scale(.96);}
    }
    .care-bottom-note{
      margin-top:10px;
      font-size:11px;
      color:var(--text-sub);
    }

    .bottom-cta{
      margin-top:30px;
      border-radius:18px;
      padding:10px 16px;
      background:rgba(255,255,255,.94);
      border:1px solid rgba(255,255,255,.95);
      box-shadow:0 12px 28px rgba(255,182,213,.6);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      font-size:13px;
      opacity:0;
      transform:translateY(26px);
      transition:opacity .7s ease, transform .7s ease, box-shadow .7s ease;
    }
    .bottom-cta.visible{
      opacity:1;
      transform:translateY(0);
      box-shadow:0 16px 34px rgba(255,182,213,.7);
    }
    .bottom-cta strong{font-size:14px;}
    .bottom-cta-actions{
      display:flex;
      align-items:center;
      gap:8px;
      flex:0 0 auto;
    }
    .bottom-cta-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:7px 16px;
      border-radius:999px;
      border:none;
      background:linear-gradient(135deg,var(--pink),var(--pink-deep));
      color:#fff;
      font-size:13px;
      font-weight:650;
      cursor:pointer;
      box-shadow:0 10px 24px rgba(255,111,178,.7);
      white-space:nowrap;
      text-decoration:none;
      position:relative;
      overflow:hidden;
      transition:box-shadow .18s ease,transform .12s ease;
    }
    .bottom-cta-btn.secondary{
      background:rgba(255,255,255,.94);
      color:var(--text-main);
      border:1px solid rgba(209,213,219,.95);
      box-shadow:0 8px 18px rgba(148,163,184,.35);
    }
    .bottom-cta-btn::after{
      content:'';
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 10% 0%,rgba(255,255,255,.7),transparent 60%);
      opacity:0;
      transition:opacity .2s ease;
    }
    .bottom-cta-btn:hover::after{opacity:1;}
    .bottom-cta-btn:hover{box-shadow:0 14px 30px rgba(255,111,178,.8);}
    .bottom-cta-btn:active{transform:scale(.97);}
    @media(max-width:720px){
      .bottom-cta{
        flex-direction:column;
        align-items:flex-start;
      }
      .bottom-cta-actions{
        width:100%;
        flex-direction:column;
      }
      .bottom-cta-btn{
        width:100%;
        text-align:center;
      }
    }

    .site-footer{
      margin-top:auto;
      padding-top:18px;
      padding-bottom:10px;
      text-align:center;
      font-size:11px;
      color:#6b7280;
    }
    .site-footer-links{margin-bottom:6px;}
    .site-footer a{
      color:#9ca3af;
      text-decoration:none;
      margin:0 4px;
      transition:color .18s ease;
    }
    .site-footer a:hover{
      text-decoration:underline;
      color:#6b7280;
    }
    .footer-info{margin-top:4px;line-height:1.6;}
    .footer-support{
      display:inline-flex;
      align-items:center;
      gap:4px;
      vertical-align:middle;
    }
    .footer-support-icon{
      width:14px;
      height:14px;
      object-fit:contain;
      flex:0 0 14px;
      vertical-align:middle;
      filter:drop-shadow(0 0 3px rgba(255,111,178,.32));
      animation:footerSupportIconGlow 3.8s ease-in-out infinite;
    }
    .footer-support-text{
      color:#e0007a;
      font-weight:700;
      background:linear-gradient(90deg,#7c3aed 0%,#e0007a 28%,#ff8cc7 48%,#7c3aed 68%,#e0007a 100%);
      background-size:220% 100%;
      -webkit-background-clip:text;
      background-clip:text;
      -webkit-text-fill-color:transparent;
      animation:footerSupportFlow 3.4s linear infinite;
      text-shadow:0 0 10px rgba(255,111,178,.2);
    }
    @keyframes footerSupportFlow{
      0%{background-position:220% 50%;}
      100%{background-position:0% 50%;}
    }
    @keyframes footerSupportIconGlow{
      0%,100%{filter:drop-shadow(0 0 3px rgba(255,111,178,.28));}
      50%{filter:drop-shadow(0 0 6px rgba(124,58,237,.42));}
    }
    .footer-icp-line{
      margin-top:6px;
      line-height:1.8;
      color:#9ca3af;
      font-size:11px;
    }
    .footer-icp-line a{color:#9ca3af;text-decoration:none;}
    .footer-icp-line a:hover{color:#6b7280;text-decoration:underline;}
    .police-icon{
      width:14px;
      height:14px;
      vertical-align:middle;
      margin:0 3px 0 6px;
    }

    /* Toast */
    .toast{
      position:fixed;
      left:50%;
      bottom:22px;
      transform:translateX(-50%);
      background:rgba(15,23,42,.96);
      color:#e5e7eb;
      padding:7px 13px;
      border-radius:999px;
      font-size:11px;
      border:1px solid rgba(148,163,184,.5);
      box-shadow:0 12px 26px rgba(15,23,42,.85);
      opacity:0;
      pointer-events:none;
      transition:opacity .25s ease;
      z-index:80;
      max-width:calc(100% - 24px);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .toast.show{opacity:1;}

    html.detail-open body{overflow:hidden;}
    .detail-mask{
      position:fixed;
      inset:0;
      background:
        radial-gradient(circle at 50% 18%,rgba(255,214,236,.34),transparent 34%),
        rgba(15,23,42,.48);
      backdrop-filter:blur(12px);
      -webkit-backdrop-filter:blur(12px);
      z-index:86;
      opacity:0;
      pointer-events:none;
      transition:opacity .2s ease;
    }
    .detail-modal{
      position:fixed;
      left:50%;
      top:50%;
      width:calc(100% - 24px);
      max-width:580px;
      max-height:calc(100vh - 42px);
      transform:translate(-50%,-50%) translateY(14px) scale(.98);
      border-radius:26px;
      background:
        linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,255,255,.96)),
        #fff;
      border:1px solid rgba(255,255,255,.96);
      box-shadow:
        0 34px 110px rgba(15,23,42,.32),
        0 1px 0 rgba(255,255,255,.9) inset;
      z-index:87;
      opacity:0;
      pointer-events:none;
      overflow:hidden;
      transition:opacity .2s ease, transform .2s ease;
    }
    .detail-modal::before{
      content:'';
      position:absolute;
      inset:0 0 auto 0;
      height:132px;
      background:
        radial-gradient(circle at 16% 0,rgba(255,111,178,.22),transparent 54%),
        radial-gradient(circle at 86% 8%,rgba(99,102,241,.2),transparent 52%),
        linear-gradient(135deg,rgba(255,246,252,.94),rgba(239,246,255,.92));
      pointer-events:none;
    }
    .detail-modal::after{
      content:'';
      position:absolute;
      left:18px;
      right:18px;
      top:0;
      height:3px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--pink),var(--indigo),#38bdf8);
      opacity:.8;
      pointer-events:none;
    }
    .detail-open .detail-mask{
      opacity:1;
      pointer-events:auto;
    }
    .detail-open .detail-modal{
      opacity:1;
      pointer-events:auto;
      transform:translate(-50%,-50%) translateY(0) scale(1);
    }
    .detail-modal-head{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:auto minmax(0,1fr) auto;
      gap:12px;
      align-items:flex-start;
      padding:18px 18px 14px;
    }
    .detail-modal-badge{
      width:48px;
      height:48px;
      border-radius:18px;
      background:
        radial-gradient(circle at 24% 18%,rgba(255,255,255,.82),transparent 42%),
        linear-gradient(145deg,var(--pink),var(--indigo));
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:
        0 16px 34px rgba(255,111,178,.38),
        0 1px 0 rgba(255,255,255,.4) inset;
      flex:0 0 auto;
    }
    .detail-modal-badge i{font-size:20px;}
    .detail-modal-kicker{
      display:inline-flex;
      align-items:center;
      min-height:22px;
      padding:0 9px;
      border-radius:999px;
      background:rgba(255,255,255,.82);
      border:1px solid rgba(255,219,238,.92);
      color:var(--pink-deep);
      font-size:10px;
      font-weight:850;
      letter-spacing:.5px;
      margin-bottom:7px;
      box-shadow:0 8px 18px rgba(255,182,213,.22);
    }
    .detail-modal-title{
      font-size:18px;
      font-weight:800;
      line-height:1.4;
      color:#0b1220;
      margin:0;
    }
    .detail-modal-subline{
      margin-top:5px;
      font-size:11px;
      line-height:1.6;
      color:#64748b;
    }
    .detail-modal-close{
      width:36px;
      height:36px;
      border-radius:999px;
      border:1px solid rgba(226,232,240,.9);
      background:rgba(255,255,255,.9);
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#334155;
      flex:0 0 auto;
      box-shadow:0 10px 22px rgba(148,163,184,.22);
      transition:transform .14s ease, box-shadow .16s ease, background .16s ease;
    }
    .detail-modal-close:hover{
      background:#fff;
      transform:translateY(-1px);
      box-shadow:0 14px 26px rgba(148,163,184,.32);
    }
    .detail-modal-body{
      position:relative;
      z-index:1;
      padding:0 18px 18px;
      overflow:auto;
      max-height:calc(100vh - 188px);
    }
    .detail-modal-cover{
      display:none;
      align-items:center;
      justify-content:center;
      margin:0 0 12px;
      padding:8px;
      border-radius:20px;
      background:
        linear-gradient(135deg,rgba(255,246,252,.96),rgba(239,246,255,.94)),
        #fff;
      border:1px solid rgba(255,255,255,.98);
      box-shadow:
        0 18px 36px rgba(148,163,184,.2),
        0 1px 0 rgba(255,255,255,.95) inset;
    }
    .detail-modal-cover.is-visible{
      display:flex;
    }
    .detail-modal-cover img{
      display:block;
      width:auto;
      height:auto;
      max-width:100%;
      max-height:min(52vh,430px);
      border-radius:16px;
      object-fit:contain;
      box-shadow:0 12px 28px rgba(15,23,42,.14);
      background:#fff;
    }
    .detail-modal-summary{
      border-radius:20px;
      padding:13px 14px;
      background:rgba(255,255,255,.82);
      border:1px solid rgba(255,255,255,.98);
      box-shadow:
        0 16px 34px rgba(148,163,184,.18),
        0 1px 0 rgba(255,255,255,.95) inset;
      margin-bottom:12px;
    }
    .detail-modal-text{
      font-size:12px;
      color:#334155;
      line-height:1.85;
      margin:0;
    }
    .detail-modal-tags{
      display:flex;
      flex-wrap:wrap;
      gap:7px;
      margin:0 0 12px;
    }
    .detail-modal-tags span{
      padding:5px 10px;
      border-radius:999px;
      background:linear-gradient(135deg,#fff7fb,#f8fbff);
      border:1px solid rgba(255,219,238,.95);
      color:#be185d;
      font-size:10.5px;
      font-weight:800;
      box-shadow:0 8px 16px rgba(255,182,213,.18);
    }
    .detail-section-title{
      display:flex;
      align-items:center;
      gap:7px;
      margin:2px 0 8px;
      color:#0f172a;
      font-size:12px;
      font-weight:800;
    }
    .detail-section-title i{
      width:20px;
      height:20px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:rgba(255,111,178,.12);
      color:var(--pink-deep);
      font-size:10px;
    }
    .detail-modal-list{
      list-style:none;
      display:grid;
      gap:8px;
      margin:0 0 12px;
      padding:0;
      counter-reset:detailPoint;
    }
    .detail-modal-list li{
      counter-increment:detailPoint;
      position:relative;
      padding:10px 11px 10px 42px;
      border-radius:16px;
      background:
        linear-gradient(135deg,rgba(255,255,255,.96),rgba(248,250,252,.94));
      border:1px solid rgba(241,245,249,.98);
      color:#475569;
      font-size:11.5px;
      line-height:1.68;
      box-shadow:0 10px 22px rgba(148,163,184,.16);
    }
    .detail-modal-list li::before{
      content:counter(detailPoint);
      position:absolute;
      left:11px;
      top:50%;
      width:22px;
      height:22px;
      transform:translateY(-50%);
      border-radius:999px;
      background:linear-gradient(135deg,var(--pink),var(--indigo));
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:10px;
      font-weight:850;
      box-shadow:0 8px 16px rgba(255,111,178,.28);
    }
    .detail-modal-note{
      display:flex;
      gap:8px;
      align-items:flex-start;
      margin:0 0 14px;
      padding:9px 11px;
      border-radius:16px;
      background:rgba(239,246,255,.78);
      border:1px solid rgba(219,234,254,.96);
      color:#475569;
      font-size:11px;
      line-height:1.65;
    }
    .detail-modal-note i{
      color:var(--indigo);
      margin-top:2px;
      flex:0 0 auto;
    }
    .detail-modal-actions{
      display:flex;
      gap:9px;
      justify-content:flex-end;
      padding-top:2px;
    }
    .detail-modal-actions button,
    .detail-modal-actions a{
      min-height:36px;
      padding:0 15px;
      border-radius:999px;
      border:1px solid rgba(226,232,240,.9);
      background:rgba(255,255,255,.95);
      color:#334155;
      font-size:12px;
      font-weight:800;
      text-decoration:none;
      cursor:pointer;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      box-shadow:0 10px 22px rgba(148,163,184,.18);
      font-family:inherit;
      transition:transform .14s ease, box-shadow .16s ease;
    }
    .detail-modal-actions button:hover,
    .detail-modal-actions a:hover{
      transform:translateY(-1px);
      box-shadow:0 14px 26px rgba(148,163,184,.28);
    }
    .detail-modal-actions a.primary,
    .detail-modal-actions button.primary{
      border:none;
      color:#fff;
      background:linear-gradient(135deg,var(--pink),var(--pink-deep));
      box-shadow:0 14px 28px rgba(255,111,178,.42);
    }
    @media(max-width:640px){
      .detail-modal{
        width:calc(100% - 18px);
        border-radius:22px;
      }
      .detail-modal-head{
        grid-template-columns:auto minmax(0,1fr) auto;
        padding:15px 13px 12px;
        gap:10px;
      }
      .detail-modal-badge{
        width:42px;
        height:42px;
        border-radius:16px;
      }
      .detail-modal-title{font-size:16px;}
      .detail-modal-body{
        padding:0 13px 14px;
        max-height:calc(100vh - 176px);
      }
      .detail-modal-actions{flex-direction:column-reverse;}
      .detail-modal-actions button,
      .detail-modal-actions a{width:100%;}
    }

    .reset-mask{
      position:fixed;
      inset:0;
      background:rgba(15,23,42,.38);
      backdrop-filter:blur(9px);
      -webkit-backdrop-filter:blur(9px);
      z-index:86;
      opacity:0;
      pointer-events:none;
      transition:opacity .18s ease;
    }
    .reset-modal{
      position:fixed;
      left:50%;
      top:50%;
      width:calc(100% - 24px);
      max-width:430px;
      border-radius:24px;
      background:rgba(255,255,255,.98);
      border:1px solid rgba(255,255,255,.96);
      box-shadow:0 30px 90px rgba(15,23,42,.25);
      transform:translate(-50%,-50%) translateY(10px);
      z-index:87;
      opacity:0;
      pointer-events:none;
      overflow:hidden;
      transition:opacity .18s ease, transform .18s ease;
    }
    .reset-open .reset-mask{
      opacity:1;
      pointer-events:auto;
    }
    .reset-open .reset-modal{
      opacity:1;
      pointer-events:auto;
      transform:translate(-50%,-50%) translateY(0);
    }
    .reset-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:14px 15px 12px;
      background:radial-gradient(circle at 0 0,rgba(255,233,246,.82),transparent 60%),#fff;
      border-bottom:1px solid rgba(241,245,249,.95);
    }
    .reset-title{
      font-size:14px;
      font-weight:850;
      color:#0f172a;
    }
    .reset-sub{
      margin-top:2px;
      font-size:11px;
      color:#64748b;
      line-height:1.6;
    }
    .reset-close{
      width:34px;
      height:34px;
      border-radius:999px;
      border:1px solid rgba(226,232,240,.9);
      background:rgba(255,255,255,.96);
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#64748b;
    }
    .reset-body{
      padding:13px 15px 15px;
    }
    .reset-actions{
      display:flex;
      gap:10px;
      margin-top:12px;
    }
    .reset-actions button{
      flex:1;
      border-radius:999px;
      min-height:38px;
      border:1px solid rgba(226,232,240,.9);
      background:#fff;
      color:#475569;
      font-weight:800;
      cursor:pointer;
    }
    .reset-actions .primary{
      border:0;
      color:#fff;
      background:linear-gradient(135deg,var(--pink),var(--pink-deep));
      box-shadow:0 12px 24px rgba(255,111,178,.42);
    }
    .reset-actions button:disabled{
      opacity:.55;
      cursor:not-allowed;
      box-shadow:none;
    }

    /* ✅ 结合版：快手授权弹层（避免白屏） */
    .ks-mask{
      position:fixed;inset:0;
      background:rgba(15,23,42,.38);
      backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
      z-index:90;
      opacity:0;pointer-events:none;
      transition:opacity .18s ease;
    }
    .ks-modal{
      position:fixed;left:50%;top:50%;
      transform:translate(-50%,-50%) translateY(8px);
      width:calc(100% - 24px);max-width:420px;
      border-radius:22px;
      background:rgba(255,255,255,.98);
      border:1px solid rgba(255,255,255,.96);
      box-shadow:0 30px 90px rgba(15,23,42,.25);
      z-index:91;
      opacity:0;pointer-events:none;
      transition:opacity .18s ease, transform .18s ease;
      overflow:hidden;
    }
    .ks-modal .hd{
      display:flex;align-items:center;justify-content:space-between;
      padding:12px 14px;
      background:radial-gradient(circle at 0 0,rgba(255,233,246,.75),transparent 60%), #fff;
      border-bottom:1px solid rgba(241,245,249,.95);
    }
    .ks-modal .hd .ttl{font-size:13px;font-weight:800;color:#0b1220;letter-spacing:.6px;}
    .ks-modal .hd .x{
      width:34px;height:34px;border-radius:999px;border:1px solid rgba(226,232,240,.9);
      background:rgba(255,255,255,.96);cursor:pointer;
      display:flex;align-items:center;justify-content:center;
    }
    .ks-modal .bd{padding:12px 14px 14px;text-align:center;}
    .ks-badge{
      width:56px;height:56px;border-radius:18px;margin:6px auto 8px;
      background:linear-gradient(145deg,rgba(17,24,39,.96),rgba(55,65,81,.96));
      display:flex;align-items:center;justify-content:center;
      box-shadow:0 18px 40px rgba(15,23,42,.18);
    }
    .ks-badge img{width:26px;height:26px;border-radius:8px;}
    .ks-text{font-size:12px;color:#334155;line-height:1.8;}
    .ks-actions{margin-top:10px;display:flex;gap:10px;}
    .ks-actions button{
      flex:1;
      padding:9px 10px;border-radius:999px;border:1px solid rgba(226,232,240,.9);
      background:rgba(255,255,255,.96);
      font-size:12px;font-weight:750;cursor:pointer;
      box-shadow:0 10px 22px rgba(148,163,184,.18);
    }
    .ks-actions button.primary{
      border:none;color:#fff;
      background:linear-gradient(135deg,#111827,#374151);
      box-shadow:0 14px 30px rgba(15,23,42,.22);
    }
    .ks-open .ks-mask{opacity:1;pointer-events:auto;}
    .ks-open .ks-modal{opacity:1;pointer-events:auto;transform:translate(-50%,-50%) translateY(0);}

    @media (prefers-reduced-motion: reduce){
      *{animation:none !important;transition:none !important;}
      .xiaodaidai-avatar.is-speaking .xiaodaidai-voice-wave{
        opacity:1;
        transform:none;
      }
      .xiaodaidai-avatar.is-speaking .xiaodaidai-voice-wave span{
        height:9px;
      }
    }

    @media(max-width:430px){
      :root{--navH:72px;}
      body{
        padding-left:8px;
        padding-right:8px;
        padding-bottom:max(72px,calc(56px + env(safe-area-inset-bottom)));
      }
      .top-bar{
        width:calc(100% - 12px);
        padding:7px 8px;
        gap:6px;
        align-items:center;
      }
      .logo-side{gap:6px;align-items:center;min-width:0;}
      .logo-side img{height:30px;margin-top:0;}
      .logo-text{min-width:0;max-width:128px;}
      .logo-text-main{font-size:12.5px;line-height:1.2;letter-spacing:.2px;}
      .logo-text-sub{
        display:block;
        max-width:128px;
        margin-top:1px;
        font-size:9px;
        line-height:1.2;
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
      }
      .top-right-mobile{gap:5px;margin-top:0;}
      .nav-toggle{width:34px;height:34px;}
      .top-auth-pill.compact{padding:2px;gap:1px;}
      .top-auth-pill.compact .top-auth-btn{min-height:32px;padding:0 8px;gap:4px;font-size:11px;}
      .top-auth-pill.compact .top-auth-divider{height:16px;}
      .nav-drawer{top:78px;width:calc(100% - 12px);}
      input,select,textarea{font-size:16px;}
    }

    @media(max-width:360px){
      .top-bar{padding-left:6px;padding-right:6px;gap:4px;}
      .logo-side{gap:5px;}
      .logo-side img{height:28px;}
      .logo-text{max-width:112px;}
      .logo-text-main{font-size:12px;}
      .logo-text-sub{max-width:112px;font-size:8.5px;}
      .top-right-mobile{gap:4px;}
      .nav-toggle{width:32px;height:32px;}
      .top-auth-pill.compact .top-auth-btn{min-height:30px;padding:0 6px;gap:3px;font-size:10.5px;}
    }
