/* HeartBug presentation stylesheet 25 (extracted from inline <style>) */

  /* ─── INDICATIONS constellation hub (scoped) ─────────── */
  /* 0731 版式重构：舞台改 3 列网格（左节点列 | 核心列 | 右节点列），节点标题物理上到不了核心；
     详情卡改为停靠在文档流中的面板（舞台与声明条之间），任何视口都不会遮挡节点或核心 */
  .hub-slide .inner{width:100%;height:100%;max-width:none;display:flex;flex-direction:column;
    padding:0 clamp(24px,4.5vw,64px);overflow-y:auto;scrollbar-width:none;-ms-overflow-style:none}
  .hub-slide .inner::-webkit-scrollbar{display:none}
  .hub-head{padding-top:2px;display:flex;align-items:flex-end;justify-content:space-between;gap:20px;flex-wrap:wrap}
  .hub-hint{font-size:11px;font-weight:600;letter-spacing:.28em;text-transform:uppercase;color:var(--dim);display:flex;align-items:center;gap:10px;padding-bottom:10px}
  .hub-hint i{width:7px;height:7px;border-radius:50%;background:var(--red);animation:hubBeat 1.5s infinite}
  @keyframes hubBeat{0%{transform:scale(1)}30%{transform:scale(1.55)}45%{transform:scale(1)}100%{transform:scale(1)}}
  /* 舞台：三列网格，左列节点右对齐、右列节点左对齐，核心居中列独占两行 */
  .hub-stage{position:relative;flex:1;min-height:clamp(170px,25vh,300px);margin-top:2px;
    display:grid;grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);grid-template-rows:1fr 1fr;
    align-items:center;column-gap:clamp(20px,3vw,52px)}
  .hub-stage svg{position:absolute;inset:0;width:100%;height:100%;pointer-events:none;z-index:1}
  .hub-wire{fill:none;stroke:var(--ink);stroke-opacity:.3;stroke-width:1.3;stroke-linecap:round;
    stroke-dasharray:var(--len);stroke-dashoffset:var(--len);
    transition:stroke .35s var(--ease),stroke-opacity .35s var(--ease),stroke-dashoffset .5s var(--ease)}
  .is-active .hub-wire{animation:hubDraw .9s var(--ease) forwards;animation-delay:var(--d)}
  .hub-stage.wires-static .hub-wire{animation:none!important;stroke-dashoffset:0!important}
  @keyframes hubDraw{to{stroke-dashoffset:0}}
  .hub-wire.on{stroke:var(--red);stroke-opacity:.95;stroke-width:1.7}
  .hub-wire.dim{stroke-opacity:.07}
  /* core：网格中列，尺寸随视口弹性缩放，不再绝对定位 */
  .hub-core{position:relative;z-index:5;grid-column:2;grid-row:1/span 2;align-self:center;justify-self:center;
    width:clamp(118px,10.5vw,152px);aspect-ratio:1}
  .hub-core .corner{position:absolute;width:24px;height:24px;border:1.6px solid rgba(20,17,20,.55);transition:all .5s var(--ease)}
  .hub-core .c-tl{top:0;left:0;border-right:0;border-bottom:0}
  .hub-core .c-tr{top:0;right:0;border-left:0;border-bottom:0}
  .hub-core .c-bl{bottom:0;left:0;border-right:0;border-top:0}
  .hub-core .c-br{bottom:0;right:0;border-left:0;border-top:0}
  .hub-core.hot .corner{border-color:var(--red)}
  .hub-core.hot .c-tl{transform:translate(-7px,-7px)}
  .hub-core.hot .c-tr{transform:translate(7px,-7px)}
  .hub-core.hot .c-bl{transform:translate(-7px,7px)}
  .hub-core.hot .c-br{transform:translate(7px,7px)}
  .hub-core .bug{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:62%;aspect-ratio:1;display:grid;place-items:center}
  .hub-core .bug img{width:100%;height:auto;display:block;
    filter:drop-shadow(0 12px 22px rgba(20,17,20,.22));
    animation:hubFloat 4.2s ease-in-out infinite;transform-origin:50% 60%;
    transition:transform .35s var(--ease)}
  .hub-core .bug:hover img{animation-play-state:paused;transform:scale(1.14) rotate(-6deg)}
  .hub-core .bug::after{content:"";position:absolute;inset:-4px;border-radius:50%;border:1.5px solid rgba(228,0,43,.45);animation:hubRing 2.4s infinite}
  @keyframes hubFloat{0%,100%{transform:translateY(0) rotate(0deg)}25%{transform:translateY(-4px) rotate(-2.4deg)}50%{transform:translateY(-6px) rotate(0deg)}75%{transform:translateY(-4px) rotate(2.4deg)}}
  @keyframes hubRing{0%{transform:scale(.82);opacity:0}30%{opacity:.8}100%{transform:scale(1.45);opacity:0}}
  .hub-core .tick{position:absolute;background:var(--ink);opacity:.35}
  .hub-core .t-n{top:-14px;left:50%;width:1px;height:7px}.hub-core .t-s{bottom:-14px;left:50%;width:1px;height:7px}
  .hub-core .t-w{left:-14px;top:50%;width:7px;height:1px}.hub-core .t-e{right:-14px;top:50%;width:7px;height:1px}
  /* nodes：分布在左右两列，标题允许换行（max-width 约束），永远不会伸进核心列 */
  .hub-node{position:relative;z-index:6;cursor:pointer;opacity:0;align-self:center;max-width:100%}
  .is-active .hub-node{animation:hubIn .7s var(--ease) forwards;animation-delay:var(--d)}
  @keyframes hubIn{from{opacity:0;translate:0 10px}to{opacity:1;translate:0 0}}
  .hub-node.left{grid-column:1;justify-self:end;text-align:right}
  .hub-node.right{grid-column:3;justify-self:start;text-align:left}
  .hub-node .dot{position:absolute;top:50%;width:9px;height:9px;border-radius:50%;background:var(--ink);
    transform:translateY(-50%);transition:all .35s var(--ease);
    box-shadow:0 0 0 3.5px #fff,0 0 0 4.5px rgba(20,17,20,.35)}
  .hub-node.right .dot{left:0}.hub-node.left .dot{right:0}
  .hub-node .txt{padding:0 15px;transition:opacity .3s var(--ease),transform .4s var(--ease)}
  .hub-node.right .txt{transform-origin:left center}
  .hub-node.left .txt{transform-origin:right center}
  .hub-node h3{font-size:clamp(14px,1.25vw,18px);font-weight:700;letter-spacing:-.01em;line-height:1.22;
    max-width:24ch;transition:color .3s var(--ease)}
  .hub-node.left h3{margin-left:auto}
  .hub-node .idx{font-size:9.5px;font-weight:700;letter-spacing:.24em;color:var(--dim);display:block;margin-bottom:3px;transition:color .3s}
  .hub-node:hover .dot,.hub-node.active .dot{background:var(--red);transform:translateY(-50%) scale(1.7);
    box-shadow:0 0 0 3.5px #fff,0 0 0 7px rgba(228,0,43,.35)}
  .hub-node:hover h3,.hub-node.active h3{color:var(--red)}
  .hub-node:hover .idx,.hub-node.active .idx{color:var(--red)}
  .hub-stage.has-focus .hub-node:not(.active):not(:hover) .txt{opacity:.32;transform:scale(.84)}
  .hub-stage.has-focus .hub-node:not(.active):not(:hover) h3{color:var(--dim)}
  .hub-stage.has-focus .hub-node:not(.active):not(:hover) .dot{opacity:.25}
  .hub-node.active .txt{transform:scale(1.14)}
  /* 0731：详情面板停靠在文档流中（舞台与声明条之间），只换内容不换位置，杜绝悬浮遮挡 */
  .hub-detail{flex:none;margin:6px auto 0;max-width:1080px;width:100%;min-height:clamp(70px,9vh,98px);
    border:1px solid var(--line);border-radius:12px;background:var(--card);
    display:flex;align-items:center;gap:clamp(14px,1.8vw,22px);
    padding:clamp(10px,1.4vh,16px) clamp(16px,2vw,24px);
    box-shadow:0 18px 44px -32px rgba(20,17,20,.2);
    transition:border-color .3s var(--ease),box-shadow .3s var(--ease)}
  .hub-detail.on{border-color:var(--line-r);box-shadow:0 18px 44px -26px rgba(228,0,43,.22)}
  .hub-detail .hc-num{width:34px;height:34px;border-radius:50%;flex:none;border:1.4px solid var(--line);color:var(--dim);
    display:grid;place-items:center;font-size:13px;font-weight:800;transition:all .3s var(--ease)}
  .hub-detail.on .hc-num{border-color:var(--red);color:var(--red)}
  .hub-detail .hd-main{flex:1;min-width:0}
  .hub-detail h4{font-size:clamp(15px,1.3vw,18px);font-weight:700;line-height:1.25;letter-spacing:-.01em;transition:color .3s}
  .hub-detail h4.dim{color:var(--dim);font-weight:600}
  .hub-detail .hc-body{margin-top:5px;display:flex;flex-wrap:wrap;gap:3px 20px}
  .hub-detail .hc-body li{list-style:none;font-size:clamp(12.5px,1.02vw,14px);color:var(--ink2);line-height:1.5;padding-left:13px;position:relative}
  .hub-detail .hc-body li::before{content:"";position:absolute;left:0;top:.62em;width:7px;height:1.5px;background:var(--red)}
  .hub-detail .hc-tag{flex:none;padding:4px 13px;font-size:10px;font-weight:700;
    letter-spacing:.2em;text-transform:uppercase;color:var(--red);border:1px solid var(--line-r);border-radius:99px}
  /* 0730-2：Indication Statement 独立声明条（4 组适应症的依据，常驻底部） */
  .hub-stmt{margin:6px auto 2px;max-width:1080px;width:100%;border:1.5px solid var(--line-r);border-radius:14px;background:#fff;
    padding:clamp(8px,1.2vh,13px) clamp(16px,2vw,26px);box-shadow:0 18px 44px -26px rgba(228,0,43,.28);text-align:center;flex:none}
  .hub-stmt .hs-tag{display:inline-block;margin-bottom:5px;font-size:10px;font-weight:800;letter-spacing:.26em;text-transform:uppercase;color:var(--red)}
  .hub-stmt p{font-size:clamp(12px,1.05vw,14.5px);font-weight:400;color:var(--ink2);line-height:1.6}
  .hub-stmt p b{color:var(--red);font-weight:700}
  @media (max-width:900px){
    /* 窄屏/平板竖屏：核心与连线隐藏，节点变纵向列表，详情面板自然跟在列表后 */
    .hub-stage{flex:none;display:block;padding-bottom:6px;min-height:0}
    .hub-stage svg,.hub-core{display:none}
    .hub-node{position:relative;transform:none;text-align:left;opacity:1!important;animation:none!important;max-width:none;
      padding:14px 0 14px 20px;border-left:1.5px solid var(--line)}
    .hub-node.left,.hub-node.right{text-align:left;justify-self:auto}
    /* position:relative 让圆点以节点为定位上下文；统一吸附在左侧竖线上 */
    .hub-node.left .dot,.hub-node.right .dot{left:-5px;right:auto}
    .hub-node.left h3,.hub-node.right h3{max-width:none;margin-left:0}
    .hub-node .txt{padding:0}
    /* 移动端列表不做聚焦调光，保持全部可读 */
    .hub-stage.has-focus .hub-node:not(.active):not(:hover) .txt{opacity:1;transform:none}
    .hub-stage.has-focus .hub-node:not(.active):not(:hover) h3{color:var(--ink)}
    .hub-stage.has-focus .hub-node:not(.active):not(:hover) .dot{opacity:1}
    .hub-detail{margin-top:12px;min-height:0}
    .hub-detail .hc-body{flex-direction:column;gap:3px}
  }
  