  * { box-sizing: border-box; }
  #signup-sticky[hidden] { display: none !important; }
  .cm836-preview-footer { padding: 32px 20px; text-align: center; color: #6d28d9; background: #fbf8ff; }
  .faq-q:focus-visible, .borrow-node:focus-visible { outline: 3px solid #e2761a; outline-offset: 3px; }
  html, body { margin: 0; padding: 0; background: #ffffff; }
  body { -webkit-font-smoothing: antialiased; }
  a { color: #6d28d9; text-decoration: none; }
  a:hover { color: #e2761a; }
  @keyframes spinSlow { to { transform: rotate(360deg); } }
  @keyframes floatUp { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

  /* 活動資訊表格：手機版讓左欄標籤與右欄內容靠近一點 */
  .info-row {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 10px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(224,177,85,.35);
  }
  @media (min-width: 640px) {
    .info-row {
      grid-template-columns: minmax(120px, 170px) 1fr;
      gap: 16px;
      padding: 20px clamp(18px,3vw,30px);
    }
  }

  [style-hover] { transition: all .2s ease; }
  .faq-q:hover span:last-child { color: #6d28d9; }

  /* Hero區塊：手機版單欄（含照片在標題下方），桌機版恢復左右兩欄 */
  .area-badge { grid-area: badge; }
  .area-h1 { grid-area: h1; }
  .area-photo { grid-area: photo; }
  .area-desc { grid-area: desc; }
  .area-info { grid-area: info; }
  .area-cta { grid-area: cta; }
  @media (max-width: 760px) {
    .area-cta { align-items: center; text-align: center; }
    .area-cta .cta-btn-row { justify-content: center; }
  }

  /* 借力使力：以「我」為中心，家人/朋友/同事/客戶/上司/部屬彼此相連，呈現「人人互為貴人」的雙向網絡 */
  .borrow-radial {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }
  .borrow-mesh-line {
    stroke: rgba(226,118,26,.4);
    stroke-width: .55;
    transition: stroke .25s ease, stroke-width .25s ease, opacity .25s ease;
  }
  .borrow-mesh-line.is-lit { stroke: #e2761a; stroke-width: 1; opacity: 1; }
  .borrow-spoke-line {
    stroke: rgba(109,40,217,.28);
    stroke-width: .6;
    stroke-dasharray: 2.2 2.2;
    transition: stroke .25s ease, stroke-width .25s ease;
  }
  .borrow-spoke-line.is-lit { stroke: #6d28d9; stroke-width: 1; }
  .borrow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(135deg, #6d28d9 0%, #e2761a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #fff8ec;
    box-shadow: 0 12px 26px rgba(59,7,100,.28);
    z-index: 2;
    cursor: default;
  }
  .borrow-center .borrow-icon svg { width: clamp(22px,5.5vw,30px); height: clamp(22px,5.5vw,30px); }
  .borrow-center .borrow-label { font-size: clamp(13px,3vw,17px); color: #fff8ec; }
  .borrow-node {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 14px 10px;
    width: 25%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 26%, #fffdf7, #fff 65%);
    box-shadow: 0 8px 18px rgba(59,7,100,.08), inset 0 0 0 1px rgba(232,179,85,.55);
    z-index: 2;
    cursor: pointer;
    transition: box-shadow .25s ease, transform .25s ease;
  }
  .borrow-node:hover,
  .borrow-node.is-active {
    transform: translate(-50%, -50%) scale(1.07);
    box-shadow: 0 10px 24px rgba(59,7,100,.16), inset 0 0 0 1.5px #e2761a;
  }
  .borrow-icon { line-height: 1; flex: none; display: flex; align-items: center; justify-content: center; }
  .borrow-icon svg { width: clamp(19px,5vw,26px); height: clamp(19px,5vw,26px); display: block; }
  .borrow-label { font-family: 'Noto Serif TC', serif; font-size: clamp(12px,3.2vw,16px); font-weight: 700; color: #3b0764; white-space: nowrap; }
  .borrow-caption {
    min-height: 2.6em;
    margin: 22px auto 0;
    max-width: 460px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #7c3aed;
    font-weight: 500;
    transition: opacity .2s ease;
  }
  @media (min-width: 761px) {
    .borrow-radial { max-width: 500px; }
    .borrow-node { padding: 16px; }
    .borrow-label { font-size: 18px; }
    .borrow-icon svg { width: 28px; height: 28px; }
    .borrow-center .borrow-icon svg { width: 32px; height: 32px; }
  }
  @media (min-width: 761px) {
    .hero-grid {
      grid-template-columns: 1.05fr .95fr !important;
      grid-template-areas:
        "badge photo"
        "h1 photo"
        "desc photo"
        "info photo"
        "cta photo" !important;
      column-gap: clamp(28px,4vw,56px);
      row-gap: 18px;
      align-items: center;
    }
    .area-photo { align-self: center; }
  }

  /* 「流年，就像是你的運勢導航」區塊：手機版命盤圖移到標題下方，桌機版恢復左右兩欄 */
  .wa-eyebrow { grid-area: eyebrow; }
  .wa-h2 { grid-area: h2; }
  .wa-chart { grid-area: chart; }
  .wa-desc { grid-area: desc; }
  @media (min-width: 761px) {
    .whatis-grid {
      grid-template-columns: 1fr 1fr !important;
      grid-template-areas:
        "eyebrow chart"
        "h2 chart"
        "desc chart" !important;
      column-gap: clamp(32px,4vw,64px);
      row-gap: 20px;
      align-items: start;
    }
    .wa-chart { align-self: center; }
  }

  /* 問句區塊：仿漫畫台詞框的不規則排列 */
  .qgrid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 680px;
    margin: 0 auto;
  }
  .qbubble {
    position: relative;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(232,179,85,.6);
    box-shadow: 0 10px 26px rgba(59,7,100,.08);
    padding: 22px 26px;
  }
  .qbubble-l { border-bottom-left-radius: 6px; }
  .qbubble-r { border-bottom-right-radius: 6px; }
  .qbubble-l::after {
    content: "";
    position: absolute;
    left: 30px; bottom: -12px;
    width: 0; height: 0;
    border-left: 12px solid transparent;
    border-right: 4px solid transparent;
    border-top: 14px solid #fff;
  }
  .qbubble-r::after {
    content: "";
    position: absolute;
    right: 30px; bottom: -12px;
    width: 0; height: 0;
    border-right: 12px solid transparent;
    border-left: 4px solid transparent;
    border-top: 14px solid #fff;
  }

  /* PC版：對話框改為較窄寬度，一行並排2~3個，手機版維持原本堆疊 */
  @media (min-width: 761px) {
    .qgrid {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      gap: 20px 18px;
      max-width: 1020px;
    }
    .qgrid .qbubble {
      width: calc(33.333% - 12px) !important;
      max-width: 300px;
      min-width: 240px;
      margin-left: 0 !important;
      margin-right: 0 !important;
      padding: 20px 22px;
    }
    .qgrid .qbubble span:last-child { font-size: 16.5px !important; line-height: 1.6 !important; }
  }
