/* xz-shell.css — 自 styles.css 抽出的頁首/頁尾規則，讓 WP 外殼頁與靜態頁完全一致（自動產生 20260902）*/
@font-face {
  font-family: "Bakudai";
  src: url("/assets/fonts/Bakudai-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "KouzanGyousho";
  src: url("/assets/fonts/KouzanGyousho.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


:root {
  /* Typography rule: no visible text should be set below 16px. */
  --font-min: 16px;
  --font-brush: "Bakudai", "Ma Shan Zheng", "Noto Serif TC", serif;
  --font-script: "KouzanGyousho", "Bakudai", "Ma Shan Zheng", "Noto Serif TC", serif;
  --ink: #173c73;
  --ink-2: #1f4f8f;
  --blue: #2a6fbd;
  --blue-2: #12345f;
  --cyan: #9fc3ee;
  --bronze: #dca23b;
  --accent: #f2b23d;
  --accent-2: #ffc857;
  --line-green: #06c755;
  --line-green-dark: #05a846;
  --paper: #f7f4ec;
  --paper-cool: #f4f7fa;
  --paper-line: rgba(23, 60, 115, .075);
  --white: #ffffff;
  --text: #21364c;
  --muted: #62758c;
  --line: #d8e3ef;
  --dark-line: rgba(255, 255, 255, .13);
  --shadow: 0 24px 70px rgba(23, 60, 115, .18);
  --soft-shadow: 0 18px 48px rgba(23, 60, 115, .09);
  --max: 1380px;
  --tr: .24s ease;
}


.container {
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 14px max(18px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  /* ① 背景：深藍 + 極淡網格 */
  background:
    linear-gradient(90deg, rgba(42, 111, 189, .06) 1px, transparent 1px),
    linear-gradient(0deg,  rgba(42, 111, 189, .04) 1px, transparent 1px),
    rgba(10, 24, 52, .97);
  background-size: 48px 48px, 48px 48px, auto;
  backdrop-filter: blur(20px);
  /* ② 底部亮線：漸層光條 */
  border-bottom: none;
  box-shadow:
    0 1px 0 rgba(42, 111, 189, .55),
    0 2px 0 rgba(42, 111, 189, .12),
    0 1px 32px rgba(10, 24, 52, .6);
  /* ③ 掃描動畫 */
  overflow: hidden;
}


/* ③ header 掃描光 */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(42, 111, 189, .08) 30%,
    rgba(42, 111, 189, .16) 50%,
    rgba(42, 111, 189, .08) 70%,
    transparent 100%
  );
  background-size: 300% 100%;
  animation: headerScan 6s linear infinite;
  opacity: .7;
}


@keyframes headerScan {
  0%   { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}


.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}


/* ④ 品牌印章：紅印風 + 光暈 */
.brand-seal {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(155, 46, 39, .72);
  border-radius: 4px;
  color: #e05a50;
  font-family: var(--font-brush);
  font-size: 22px;
  box-shadow:
    0 0 0 1px rgba(155, 46, 39, .2),
    0 0 14px rgba(155, 46, 39, .28),
    inset 0 0 8px rgba(155, 46, 39, .08);
  transition: box-shadow .3s;
}


.brand:hover .brand-seal {
  box-shadow:
    0 0 0 1px rgba(155, 46, 39, .4),
    0 0 24px rgba(155, 46, 39, .48),
    inset 0 0 10px rgba(155, 46, 39, .12);
}


.brand-name {
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
  font-size: 25px;
  letter-spacing: .05em;
}


.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}


/* ⑤ nav 連結：Noto Serif TC（同品牌名）+ 底線滑動 */
.site-nav a {
  position: relative;
  padding: 8px 7px;
  color: rgba(255, 255, 255, .75);
  font-family: 'Noto Serif TC', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: color .18s, text-shadow .18s;
}


.site-nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(180, 220, 255, .7), 0 0 28px rgba(120, 180, 255, .4);
}


.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 13px;
  right: 13px;
  height: 1px;
  background: rgba(42, 111, 189, .9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s cubic-bezier(0.22, 1, 0.36, 1);
}


.site-nav a:hover::after {
  transform: scaleX(1);
}


.site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(242, 178, 61, .13);
  border-color: rgba(242, 178, 61, .32);
  box-shadow: inset 0 0 0 1px rgba(242, 178, 61, .1), 0 0 20px rgba(242, 178, 61, .1);
}


.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}


.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr), border-color var(--tr);
}


/* ⑥ status dot：系統運作中呼吸綠點 */
.nav-status {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ecf8e;
  margin-right: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(62, 207, 142, .5);
  animation: statusPulse 2.4s ease-out infinite;
}


@keyframes statusPulse {
  0%   { box-shadow: 0 0 0 0 rgba(62, 207, 142, .55); }
  70%  { box-shadow: 0 0 0 6px rgba(62, 207, 142, 0); }
  100% { box-shadow: 0 0 0 0 rgba(62, 207, 142, 0); }
}


/* ── LINE 官方色 CTA ── */
.header-cta {
  position: relative;
  font-family: 'Noto Serif TC', serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
  background: var(--line-green);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 4px;
  padding: 10px 22px;
  box-shadow: 0 12px 28px rgba(6, 199, 85, .28);
  overflow: visible;
}


.header-cta::before,
.header-cta::after {
  display: none;
}


.header-cta:hover {
  background: var(--line-green-dark);
  box-shadow: 0 16px 34px rgba(6, 199, 85, .34);
  transform: translateY(-1px);
}


.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}


.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  border: 0;
  background: transparent;
  padding: 8px;
}


.menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--white);
}


@keyframes scrollUnfurl {
  from { clip-path: inset(0 0 100% 0); opacity: .6; }
  to   { clip-path: inset(0 0 0% 0);   opacity: 1; }
}


@keyframes tagBounceIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.88);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


@keyframes googleQueryCycle {
  0% { opacity: 0; transform: translateY(110%); }
  8%, 28% { opacity: 1; transform: translateY(0); }
  36%, 100% { opacity: 0; transform: translateY(-110%); }
}


@keyframes googleResultRise {
  0%, 8% {
    opacity: 0;
    transform: translateY(244px) scale(.985);
    box-shadow: 0 10px 24px rgba(26, 115, 232, .08);
  }

  12% {
    opacity: 1;
    transform: translateY(244px) scale(.985);
    box-shadow: 0 10px 24px rgba(26, 115, 232, .08);
  }

  28%, 70% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 44px rgba(26, 115, 232, .2);
  }

  84% {
    opacity: 0;
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 44px rgba(26, 115, 232, .16);
  }

  85%, 100% {
    opacity: 0;
    transform: translateY(244px) scale(.985);
    box-shadow: 0 10px 24px rgba(26, 115, 232, .08);
  }
}


@keyframes googleAiOverviewFrame {
  0%, 18% {
    transform: scale(.992);
    box-shadow: none;
  }

  28%, 70% {
    transform: scale(1);
    box-shadow: 0 14px 34px rgba(26, 115, 232, .1);
  }

  84% {
    transform: scale(.992);
    box-shadow: none;
  }

  85%, 100% {
    transform: scale(.992);
    box-shadow: none;
  }
}


@keyframes googleAiBodyFocus {
  0%, 18% {
    opacity: .56;
    filter: blur(2.8px) saturate(.72);
  }

  28%, 70% {
    opacity: 1;
    filter: blur(0) saturate(1);
  }

  84%, 100% {
    opacity: .56;
    filter: blur(2.8px) saturate(.72);
  }
}


@keyframes googleAiSourceOne {
  0%, 32% {
    opacity: 0;
    transform: translateY(9px) scale(.96);
  }

  38%, 70% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  84%, 100% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
}


@keyframes googleAiSourceTwo {
  0%, 37% {
    opacity: 0;
    transform: translateY(9px) scale(.96);
  }

  43%, 70% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  84%, 100% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
}


@keyframes googleAiSourceThree {
  0%, 42% {
    opacity: 0;
    transform: translateY(9px) scale(.96);
  }

  48%, 70% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  84%, 100% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
}


@keyframes competitorCovered {
  0%, 24%, 88%, 100% {
    opacity: 1;
    transform: translateY(0);
    filter: none;
  }

  34%, 78% {
    opacity: .28;
    transform: translateY(0);
    filter: saturate(.7);
  }
}


@keyframes googleResultFocus {
  0%, 100% { opacity: .25; }
  50% { opacity: .9; }
}
.pain-section,
.services-section,
.brand-wall-section,
.training-section{
  position: relative;
}
.pain-section > .container,
.services-section > .container,
.brand-wall-section > .container,
.training-section > .container{
  position: relative;
  z-index: 1;
}
.pain-section::after,
.services-section::after,
.brand-wall-section::after,
.work-section::after,
.ai-section::after,
.training-section::after,
.final-cta::after{
  content: var(--section-mark, "");
  position: absolute;
  right: var(--mark-right, clamp(18px, 8vw, 120px));
  top: var(--mark-top, clamp(22px, 6vw, 86px));
  z-index: 0;
  pointer-events: none;
  color: rgba(217, 154, 34, .135);
  font-family: var(--font-brush);
  font-size: var(--mark-size, clamp(128px, 20vw, 300px));
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.06em;
  transform: rotate(var(--mark-rotate, -7deg));
  white-space: nowrap;
}

.brand-wall-section { --section-mark: "群策"; --mark-top: 44px; --mark-right: 5vw; --mark-size: clamp(130px, 18vw, 270px); }


.services-section,
.brand-wall-section,
.training-section {
  background:
    radial-gradient(circle at 14% 20%, rgba(23, 60, 115, .028) 0 1px, transparent 1.8px),
    radial-gradient(circle at 80% 72%, rgba(217, 154, 34, .034) 0 1px, transparent 2px),
    linear-gradient(90deg, rgba(23, 60, 115, .024) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 60, 115, .02) 1px, transparent 1px),
    var(--paper);
  background-size: 35px 35px, 49px 49px, 104px 104px, 104px 104px, auto;
}


@keyframes panelFromNext {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes panelFromPrev {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}


.brand-proof-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: -12px auto 34px;
}


.brand-wall-section .section-head {
  max-width: var(--max);
  text-align: center;
}


.brand-wall-title {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(30px, 3.4vw, 48px);
  text-align: center;
  white-space: nowrap;
}


.brand-proof-stat {
  padding: 18px 16px;
  border: 1px solid rgba(42, 111, 189, .16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(42, 111, 189, .026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(42, 111, 189, .022) 1px, transparent 1px),
    rgba(255, 255, 255, .86);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: var(--soft-shadow);
  text-align: center;
}


.brand-proof-stat strong {
  display: block;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 900;
  line-height: 1;
}


.brand-proof-stat > span {
  display: block;
  margin-top: 9px;
  color: var(--ink);
  font-family: "Noto Serif TC", serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
}


.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}


.brand-grid figure {
  display: grid;
  grid-template-rows: 158px auto;
  gap: 14px;
  margin: 0;
  padding: 22px 20px 20px;
  border: 0;
  background: var(--white);
  text-align: center;
  box-shadow: var(--soft-shadow);
  transition: var(--tr);
  overflow: hidden;
}


.brand-grid figure:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 98, 212, .36);
}


.brand-grid img {
  width: 100%;
  height: 158px;
  object-fit: contain;
  padding: 18px;
  border: 1px solid rgba(42, 111, 189, .13);
  background:
    linear-gradient(90deg, rgba(42, 111, 189, .018) 1px, transparent 1px),
    linear-gradient(0deg, rgba(42, 111, 189, .016) 1px, transparent 1px),
    #ffffff;
  background-size: 32px 32px;
  transform: none;
}


.brand-grid .logo-dark img {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, .12), transparent 36%),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 32px 32px, 32px 32px, auto;
  padding: 26px;
}


.brand-grid .logo-green img {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, .10), transparent 36%),
    #2d6a2d;
  padding: 26px;
}


.brand-grid figcaption {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}


/* ── Footer ── */
.site-footer {
  padding: 60px 0 0;
  color: rgba(255, 255, 255, .55);
  background:
    linear-gradient(90deg, rgba(42, 111, 189, .07) 1px, transparent 1px),
    linear-gradient(0deg,  rgba(42, 111, 189, .06) 1px, transparent 1px),
    #06111f;
  background-size: 40px 40px, 40px 40px, auto;
  border-top: 1px solid rgba(42, 111, 189, .22);
  position: relative;
  overflow: hidden;
}


.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(42, 111, 189, .16);
  margin-bottom: 40px;
}


.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}


.footer-brand strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 2px;
}


.footer-brand p {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, .38);
}


.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(42, 111, 189, .12);
  margin-bottom: 28px;
}


.footer-col h4 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}


.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .44);
  font-size: 16px;
  text-decoration: none;
  transition: color .2s;
}


.footer-col a:hover {
  color: rgba(42, 111, 189, .9);
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 16px;
  color: rgba(255, 255, 255, .24);
}


.footer-bottom p { margin: 0; }


/* Footer proposal board */
.footer-proposal-stage {
  padding: 72px 0 0;
  background:
    linear-gradient(180deg, rgba(247, 244, 236, 0) 0%, rgba(247, 244, 236, .92) 18%, rgba(247, 244, 236, .92) 100%);
}


.footer-choice-label {
  width: min(100% - 44px, var(--max));
  margin: 0 auto 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
}


.footer-choice-label span {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}


.footer-choice-label strong {
  color: rgba(23, 60, 115, .72);
  font-family: "Noto Serif TC", serif;
  font-size: 18px;
  letter-spacing: .04em;
}


.footer-concept {
  margin: 0 0 34px;
  padding: 0;
  color: rgba(232, 241, 255, .72);
  background:
    radial-gradient(circle at 78% 12%, rgba(111, 169, 238, .18), transparent 34%),
    radial-gradient(circle at 24% 88%, rgba(216, 169, 83, .12), transparent 34%),
    linear-gradient(90deg, rgba(111, 169, 238, .07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(111, 169, 238, .055) 1px, transparent 1px),
    linear-gradient(180deg, #0b2444 0%, #071b34 64%, #051326 100%);
  background-size: auto, auto, 56px 56px, 56px 56px, auto;
  border-top: 1px solid rgba(111, 169, 238, .28);
  border-bottom: 1px solid rgba(216, 169, 83, .22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 28px 70px rgba(5, 19, 38, .18);
}


.footer-concept .container {
  position: relative;
  z-index: 2;
  padding-top: 34px;
}


.footer-scarf {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background: url("/assets/footer-lunjin-scarf.svg") center / contain no-repeat;
  opacity: .42;
  filter:
    drop-shadow(0 22px 26px rgba(0, 0, 0, .24))
    drop-shadow(0 0 28px rgba(174, 215, 255, .14));
  animation: footerScarfFloat 7.2s ease-in-out infinite;
}


.footer-version {
  margin: 0 0 18px;
  color: rgba(242, 178, 61, .92);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}


.footer-command,
.footer-main,
.footer-b-grid,
.footer-hero-line {
  position: relative;
  z-index: 2;
}


.footer-command {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(320px, 1.15fr) auto;
  align-items: center;
  gap: 28px;
  padding: 12px 0 30px;
  border-bottom: 1px solid rgba(111, 169, 238, .18);
}


.footer-brand-block,
.footer-hero-line {
  display: flex;
  align-items: center;
  gap: 14px;
}


.footer-brand-block strong,
.footer-b-brand strong {
  display: block;
  color: #ffffff;
  font-family: "Noto Serif TC", serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.25;
  text-shadow: 0 0 20px rgba(111, 169, 238, .28);
}


.footer-brand-block p {
  margin: 2px 0 0;
  color: rgba(232, 241, 255, .58);
  font-family: "Noto Serif TC", serif;
  font-size: 16px;
}


.footer-script {
  margin: 0;
  color: #f2b23d;
  font-family: var(--font-script);
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 1;
  letter-spacing: .02em;
  text-align: center;
  text-shadow:
    0 0 18px rgba(242, 178, 61, .2),
    0 8px 20px rgba(0, 0, 0, .22);
}


.footer-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .18), transparent),
    linear-gradient(135deg, var(--line-green), var(--line-green-dark));
  box-shadow:
    0 18px 40px rgba(6, 199, 85, .24),
    inset 0 1px 0 rgba(255, 255, 255, .28);
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}


.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 52px;
  padding: 34px 0 18px;
}


.footer-statement span {
  color: rgba(159, 195, 238, .7);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .16em;
}


.footer-statement h2,
.footer-b-brand h2 {
  margin: 12px 0 12px;
  color: #ffffff;
  font-family: "Noto Serif TC", serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.28;
  letter-spacing: .04em;
}


.footer-statement p {
  margin: 0;
  max-width: 540px;
  color: rgba(232, 241, 255, .66);
  font-size: 17px;
}


.footer-concept .footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
  border: 0;
}


.footer-concept .footer-col {
  padding-top: 14px;
  border-top: 1px solid rgba(111, 169, 238, .16);
}


.footer-concept .footer-col h4 {
  color: rgba(255, 255, 255, .88);
  font-family: "Noto Serif TC", serif;
  font-size: 17px;
  letter-spacing: .1em;
  text-transform: none;
}


.footer-concept .footer-col a {
  color: rgba(232, 241, 255, .58);
  font-size: 16px;
}


.footer-concept .footer-col a:hover {
  color: #ffffff;
}


.footer-col-soon {
  color: rgba(232, 241, 255, .3);
  font-size: 16px;
  cursor: default;
  letter-spacing: inherit;
}


.footer-concept .footer-bottom {
  margin-top: 28px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(111, 169, 238, .16);
  color: rgba(232, 241, 255, .38);
}


.footer-concept-a .footer-scarf {
  right: -120px;
  top: 24px;
  width: min(54vw, 720px);
  height: 260px;
  transform: rotate(-7deg);
}


.footer-concept-b {
  background:
    radial-gradient(circle at 50% 0%, rgba(111, 169, 238, .24), transparent 36%),
    radial-gradient(circle at 22% 38%, rgba(216, 169, 83, .12), transparent 30%),
    linear-gradient(90deg, rgba(111, 169, 238, .075) 1px, transparent 1px),
    linear-gradient(0deg, rgba(111, 169, 238, .055) 1px, transparent 1px),
    linear-gradient(180deg, #0f315d 0%, #08203d 54%, #051326 100%);
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
}


.footer-concept-b .footer-scarf {
  left: 50%;
  top: 18px;
  width: min(70vw, 860px);
  height: 280px;
  opacity: .34;
  transform: translateX(-50%) rotate(2deg);
}


.footer-hero-line {
  justify-content: center;
  gap: 22px;
  min-height: 150px;
  padding: 16px 0 24px;
  border-bottom: 1px solid rgba(111, 169, 238, .18);
}


.footer-concept-b .footer-script {
  font-size: clamp(48px, 7vw, 96px);
}


.footer-b-grid {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 46px;
  padding: 34px 0 12px;
}


.footer-b-brand h2 {
  max-width: 520px;
}


@keyframes footerScarfFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}
@media (max-width: 980px){
  .footer-command,
  .footer-main,
  .footer-b-grid {
    grid-template-columns: 1fr;
  }


  .footer-command {
    justify-items: start;
    gap: 18px;
  }


  .footer-script {
    text-align: left;
  }


  .footer-concept .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .footer-hero-line {
    justify-content: flex-start;
    flex-wrap: wrap;
  }


  .footer-concept-b .footer-script {
    flex-basis: 100%;
  }}
@media (max-width: 680px){
  .footer-proposal-stage {
    padding-top: 42px;
  }


  .footer-choice-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }


  .footer-concept {
    margin-bottom: 26px;
  }


  .footer-concept .container {
    padding-top: 26px;
  }


  .footer-scarf {
    opacity: .28;
  }


  .footer-concept-a .footer-scarf,
  .footer-concept-b .footer-scarf {
    left: 12%;
    right: auto;
    top: 20px;
    width: 92vw;
    height: 220px;
  }


  .footer-command {
    padding-bottom: 22px;
  }


  .footer-main,
  .footer-b-grid {
    gap: 28px;
    padding-top: 26px;
  }


  .footer-concept .footer-links {
    grid-template-columns: 1fr;
    gap: 22px;
  }


  .footer-script,
  .footer-concept-b .footer-script {
    font-size: clamp(38px, 15vw, 58px);
  }


  .footer-line {
    width: 100%;
  }}


@keyframes glowPulse {
  0%, 100% { opacity: .68; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}


@keyframes scan {
  0% { transform: translateY(-80px); }
  100% { transform: translateY(760px); }
}


@keyframes rankClimb {
  0%, 13% {
    transform: translateY(0); opacity: 1;
    box-shadow: 0 12px 30px rgba(23,60,115,.14), 0 0 0 1px rgba(42,111,189,.22);
  }
  16% {
    transform: translateY(-78px); opacity: 1;
    box-shadow: 0 12px 30px rgba(23,60,115,.18), 0 0 0 2px rgba(42,111,189,.5), 0 0 40px rgba(42,111,189,.35);
  }
  16.1%, 25% {
    transform: translateY(-78px); opacity: 1;
    box-shadow: 0 12px 30px rgba(23,60,115,.18), 0 0 0 2px rgba(42,111,189,.5), 0 0 40px rgba(42,111,189,.35);
  }
  28% {
    transform: translateY(-156px); opacity: 1;
    box-shadow: 0 14px 36px rgba(23,60,115,.22), 0 0 0 2px rgba(42,111,189,.7), 0 0 60px rgba(42,111,189,.48);
  }
  28.1%, 37% {
    transform: translateY(-156px); opacity: 1;
    box-shadow: 0 14px 36px rgba(23,60,115,.22), 0 0 0 2px rgba(42,111,189,.7), 0 0 60px rgba(42,111,189,.48);
  }
  40% {
    transform: translateY(-234px); opacity: 1;
    box-shadow: 0 22px 52px rgba(23,60,115,.32), 0 0 0 3px rgba(42,111,189,1), 0 0 30px rgba(42,111,189,.95), 0 0 80px rgba(42,111,189,.72), 0 0 160px rgba(42,111,189,.40);
  }
  40.1%, 63% {
    transform: translateY(-234px); opacity: 1;
    box-shadow: 0 22px 52px rgba(23,60,115,.32), 0 0 0 3px rgba(42,111,189,1), 0 0 30px rgba(42,111,189,.95), 0 0 80px rgba(42,111,189,.72), 0 0 160px rgba(42,111,189,.40);
  }
  70% {
    transform: translateY(-234px); opacity: 0;
    box-shadow: none;
  }
  70.1% {
    transform: translateY(0); opacity: 0;
    box-shadow: none;
  }
  80%, 100% {
    transform: translateY(0); opacity: 1;
    box-shadow: 0 12px 30px rgba(23,60,115,.14), 0 0 0 1px rgba(42,111,189,.22);
  }
}


@keyframes rankBarGrow {
  0%, 37%   { width: 34%; filter: none; }
  40%, 63%  { width: 82%; filter: drop-shadow(0 0 6px rgba(42, 111, 189, .9)); }
  70%, 100% { width: 34%; filter: none; }
}


@keyframes oldRankFade {
  0%, 37%   { opacity: 1; }
  40%, 70%  { opacity: 0; }
  80%, 100% { opacity: 1; }
}


@keyframes newRankFade {
  0%, 37%   { opacity: 0; }
  40%, 63%  { opacity: 1; }
  70%, 100% { opacity: 0; }
}


@keyframes rankTextColor {
  0%, 37%   { color: var(--ink); }
  40%, 63%  { color: var(--blue); }
  70%, 100% { color: var(--ink); }
}


@keyframes rankTextGrow {
  0%, 37%   { font-size: inherit; }
  40%, 63%  { font-size: 115%; }
  70%, 100% { font-size: inherit; }
}


@keyframes finalGlow {
  0%, 100% { opacity: .68; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}


@keyframes boardSweep {
  0% { background-position: -280px 0, 0 0; }
  100% { background-position: 280px 0, 0 0; }
}
@media (max-width: 1100px){
  .site-nav,
  .header-cta {
    display: none;
  }


  .menu-btn {
    display: flex;
  }


  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 720px){
  .container,
  .hero-inner {
    width: min(100% - 32px, var(--max));
  }


  .site-header {
    padding-inline: 16px;
  }
  .pain-grid,
  .work-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }


  .brand-proof-stats {
    grid-template-columns: 1fr;
  }


  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .brand-grid figure {
    grid-template-rows: 132px auto;
    padding: 18px 14px 16px;
  }


  .brand-grid img {
    height: 132px;
    padding: 14px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 28px;
  }


  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }


  .brand-wall-title {
    white-space: normal;
    font-size: clamp(24px, 6.5vw, 36px);
  }}
@media (max-width: 440px){  .footer-links {
    gap: 20px;
  }}

@keyframes seoBlink { 0%,100% { opacity:1; } 50% { opacity:.25; } }
/* Small labels follow the same typeface as the navigation. */
.eyebrow,
.mobile-divider,
.mobile-nav-head p,
.mobile-link span:last-child,
.mobile-cta-link,
.header-cta,
.service-panel::before,
.pain-meta span,
.pain-footer small,
.work-card figcaption span,
.map-title span,
.map-node small,
.map-core small,
.seo-dash-header span,
.seo-fstep i,
.seo-keyword-row span,
.tr-map-header span,
.tr-module i,
.tr-module small,
.tr-output span,
.tc-badge,
.footer-col h4{
  font-family: "Noto Serif TC", serif;
}


.pain-section,
.work-section,
.brand-wall-section,
.training-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(242, 178, 61, .07), transparent 28%),
    linear-gradient(90deg, rgba(139, 90, 20, .026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(139, 90, 20, .02) 1px, transparent 1px),
    #f7f4ec;
  background-size: auto, 104px 104px, 104px 104px, auto;
}


.services-section::after,
.ai-section::after,
.final-cta::after,
.pain-section::after,
.work-section::after,
.brand-wall-section::after,
.training-section::after {
  color: rgba(242, 178, 61, .15);
}


.pain-section,
.work-section,
.brand-wall-section,
.training-section,
.services-section,
.ai-section,
.final-cta {
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(139, 90, 20, .018) 1px, transparent 1px),
    linear-gradient(0deg, rgba(139, 90, 20, .014) 1px, transparent 1px),
    #f8f5ed;
  background-size: 112px 112px, 112px 112px, auto;
}


.pain-section::after,
.services-section::after,
.work-section::after,
.brand-wall-section::after,
.ai-section::after,
.training-section::after,
.final-cta::after {
  color: rgba(217, 154, 34, .11);
}


.site-header {
  background: rgba(10, 24, 52, .97);
  background-image: none;
}


.site-header::before {
  display: none;
}


.header-cta,
.btn,
.mobile-cta-link {
  border-radius: 999px;
}


.pain-section,
.services-section,
.work-section,
.brand-wall-section,
.ai-section,
.training-section,
.final-cta {
  color: var(--text);
  background: var(--paper);
}


.pain-section::before,
.services-section::before,
.work-section::before,
.brand-wall-section::before,
.ai-section::before,
.training-section::before,
.final-cta::before {
  display: none;
}


.pain-section::after,
.services-section::after,
.work-section::after,
.brand-wall-section::after,
.ai-section::after,
.training-section::after,
.final-cta::after {
  color: rgba(42, 111, 189, .055);
}


.brand-proof-stat strong {
  color: var(--bronze);
}


/* ── Command header upgrade ─────────────────────────────── */
.site-header {
  min-height: 78px;
  gap: 22px;
  padding-block: 12px;
  background:
    linear-gradient(90deg, rgba(111, 169, 238, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(111, 169, 238, .055) 1px, transparent 1px),
    linear-gradient(180deg, #0b2444 0%, #071b34 68%, #051326 100%);
  background-size: 56px 56px, 56px 56px, auto;
  border-bottom: 1px solid rgba(111, 169, 238, .32);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .08) inset,
    0 18px 42px rgba(5, 19, 38, .38),
    0 2px 0 rgba(242, 178, 61, .28);
}


.site-header > * {
  position: relative;
  z-index: 1;
}


.site-header::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .72;
  background:
    linear-gradient(105deg, transparent 0 18%, rgba(84, 155, 236, .16) 35%, transparent 52%),
    linear-gradient(90deg, transparent 0 78%, rgba(242, 178, 61, .08) 78% 79%, transparent 79% 100%);
  background-size: 260% 100%, 360px 100%;
  animation: headerCommandSweep 8s linear infinite;
}


.site-header::after {
  content: "";
  position: absolute;
  left: max(18px, calc((100vw - var(--max)) / 2));
  right: max(18px, calc((100vw - var(--max)) / 2));
  bottom: 0;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(111, 169, 238, .9), rgba(242, 178, 61, .95), transparent);
  box-shadow: 0 0 18px rgba(111, 169, 238, .45);
}


@keyframes headerCommandSweep {
  0% { background-position: 160% 0, 0 0; }
  100% { background-position: -80% 0, 360px 0; }
}


.brand {
  gap: 12px;
  position: relative;
  isolation: isolate;
  padding: 6px 16px 6px 8px;
  border: 1px solid rgba(111, 169, 238, .22);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)),
    rgba(255, 255, 255, .035);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .045),
    0 10px 26px rgba(0, 0, 0, .16);
}


.brand > * {
  position: relative;
  z-index: 2;
}


.brand::before {
  display: none;
}


.brand::after {
  display: none;
}


.brand-seal {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  color: #ff6b5f;
  border-color: rgba(224, 90, 80, .86);
  background:
    linear-gradient(135deg, rgba(155, 46, 39, .2), rgba(155, 46, 39, .055)),
    rgba(4, 13, 26, .36);
  box-shadow:
    0 0 0 1px rgba(224, 90, 80, .22),
    0 0 20px rgba(224, 90, 80, .24),
    inset 0 0 12px rgba(224, 90, 80, .08);
}


.brand-avatar {
  padding: 2px;
  overflow: hidden;
  border-radius: 999px;
  border-color: rgba(216, 169, 83, .82);
  background:
    radial-gradient(circle at 48% 36%, rgba(255, 255, 255, .22), transparent 50%),
    linear-gradient(135deg, rgba(216, 169, 83, .35), rgba(22, 67, 120, .18)),
    rgba(4, 13, 26, .42);
  box-shadow:
    0 0 0 1px rgba(216, 169, 83, .24),
    0 0 20px rgba(111, 169, 238, .22),
    0 0 18px rgba(216, 169, 83, .18),
    inset 0 0 10px rgba(255, 255, 255, .08);
}


.brand-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}


.brand:hover .brand-avatar {
  box-shadow:
    0 0 0 1px rgba(216, 169, 83, .38),
    0 0 26px rgba(111, 169, 238, .32),
    0 0 22px rgba(216, 169, 83, .28),
    inset 0 0 12px rgba(255, 255, 255, .1);
}


.footer-brand .brand-avatar {
  width: 46px;
  height: 46px;
}


.brand-name {
  color: rgba(255, 255, 255, .96);
  text-shadow: 0 0 18px rgba(111, 169, 238, .28);
}


.site-nav {
  position: relative;
  isolation: isolate;
  gap: 0;
  margin-left: auto;
  padding: 5px;
  border: 1px solid rgba(111, 169, 238, .2);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035)),
    rgba(4, 15, 31, .5);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .035),
    0 12px 32px rgba(0, 0, 0, .18);
}


.site-nav > * {
  position: relative;
  z-index: 2;
}


.site-nav::before {
  content: "";
  position: absolute;
  left: -205px;
  top: 50%;
  z-index: 1;
  width: 172px;
  height: 82px;
  pointer-events: none;
  opacity: .92;
  transform: translateY(-50%) rotate(-3deg);
  transform-origin: 22% 64%;
  background: url("/assets/kongming-feather-fan.svg") center / contain no-repeat;
  filter:
    drop-shadow(0 0 18px rgba(200, 225, 255, .55))
    drop-shadow(0 0 8px rgba(160, 200, 255, .35))
    drop-shadow(0 6px 10px rgba(0, 0, 0, .28));
  animation: fanFloat 4.8s ease-in-out infinite;
}


.site-nav::after {
  display: none;
}


@keyframes fanFloat {
  0%, 100% {
    transform: translateY(-50%) rotate(-4deg);
  }
  50% {
    transform: translateY(calc(-50% - 3px)) rotate(-1deg);
  }
}


.nav-status {
  width: 8px;
  height: 8px;
  margin: 0 10px 0 8px;
  background: #6fffb8;
  box-shadow:
    0 0 0 4px rgba(111, 255, 184, .08),
    0 0 18px rgba(111, 255, 184, .5);
}


.site-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(232, 241, 255, .72);
  letter-spacing: .08em;
  text-shadow: none;
  transition:
    color .18s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}


.site-nav a::after {
  left: 18px;
  right: 18px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(242, 178, 61, .58);
}


.site-nav a:hover {
  color: #fff;
  background: rgba(42, 111, 189, .22);
  border-color: rgba(111, 169, 238, .22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035), 0 0 24px rgba(42, 111, 189, .18);
  transform: translateY(-1px);
}


.header-cta {
  min-height: 46px;
  padding-inline: 24px;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, .28);
  background:
    linear-gradient(135deg, var(--line-green), var(--line-green-dark));
  box-shadow:
    0 16px 34px rgba(6, 199, 85, .32),
    inset 0 1px 0 rgba(255, 255, 255, .28);
}


.header-cta:hover {
  border-color: rgba(255, 255, 255, .42);
  box-shadow:
    0 20px 44px rgba(6, 199, 85, .38),
    0 0 0 3px rgba(6, 199, 85, .12),
    inset 0 1px 0 rgba(255, 255, 255, .3);
}


.menu-btn {
  border: 1px solid rgba(111, 169, 238, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}


.menu-btn {
  position: relative;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(242, 178, 61, .2), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035)),
    rgba(4, 15, 31, .58);
}


.menu-btn::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 45% 42%, rgba(255, 223, 147, .16), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 62%);
}


.menu-btn::after {
  content: none;
}


.menu-btn span {
  position: relative;
  z-index: 1;
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #eef7ff, #ffffff, #c6dcf4);
  box-shadow: 0 0 8px rgba(221, 238, 255, .28);
}


/* Brighter command-header text, matching the website-design page. */
.site-header .site-nav a {
  color: rgba(255, 255, 255, .9);
  font-weight: 800;
  text-shadow: 0 0 14px rgba(230, 240, 255, .2);
}


.site-header .site-nav a:hover {
  color: #ffffff;
  text-shadow:
    0 0 12px rgba(230, 240, 255, .48),
    0 0 28px rgba(111, 169, 238, .28);
}


@keyframes mobileFanFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-4deg); }
  50% { transform: translate3d(0, -16px, 0) rotate(2deg); }
}
@media (max-width: 430px){

  .footer-concept-b .footer-hero-line {
    grid-template-columns: 62px 1fr;
    gap: 12px 14px;
  }


  .footer-concept-b .footer-hero-line .brand-avatar {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }


  .footer-concept-b .footer-script {
    font-size: clamp(34px, 12vw, 50px);
  }}


/* Final footer selection: version B, tuned for mobile. */
.footer-choice-label,
.footer-concept-a,
.footer-legacy,
.footer-concept-b .footer-version {
  display: none !important;
}


.footer-proposal-stage {
  padding: 0;
  background: transparent;
}


.footer-concept-b {
  margin: 0;
}


.footer-concept-b .container {
  padding-top: 44px;
}


.footer-concept-b .footer-hero-line .brand-avatar {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
}


.footer-concept-b .footer-b-brand strong {
  margin-bottom: 8px;
}
@media (max-width: 760px){
  .footer-concept-b .container {
    padding-top: 28px;
  }


  .footer-concept-b .footer-scarf {
    left: 8%;
    top: 48px;
    width: 108vw;
    height: 210px;
    opacity: .3;
    transform: rotate(0deg);
  }


  .footer-concept-b .footer-hero-line {
    display: grid;
    grid-template-columns: 74px 1fr;
    align-items: center;
    gap: 14px 18px;
    min-height: 0;
    padding: 18px 0 24px;
  }


  .footer-concept-b .footer-hero-line .brand-avatar {
    width: 70px;
    height: 70px;
    flex-basis: 70px;
  }


  .footer-concept-b .footer-script {
    flex-basis: auto;
    align-self: center;
    margin: 0;
    font-size: clamp(38px, 11.5vw, 58px);
    line-height: 1.08;
    text-align: left;
  }


  .footer-concept-b .footer-line {
    grid-column: 1 / -1;
    width: min(100%, 260px);
    min-height: 46px;
    justify-self: start;
  }


  .footer-concept-b .footer-b-grid {
    display: block;
    padding: 26px 0 10px;
  }


  .footer-concept-b .footer-b-brand {
    margin-bottom: 28px;
  }


  .footer-concept-b .footer-b-brand h2 {
    max-width: none;
    margin-bottom: 0;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.36;
  }


  .footer-concept-b .footer-links {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px;
    width: 100%;
    min-width: 0;
  }


  .footer-concept-b .footer-col {
    min-width: 0;
    padding: 16px 0 0;
  }


  .footer-concept-b .footer-col h4,
  .footer-concept-b .footer-col a {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
    line-height: 1.7;
  }


  .footer-concept-b .footer-col h4 {
    margin-bottom: 8px;
  }


  .footer-concept-b .footer-col a {
    margin-bottom: 7px;
  }


  .footer-concept-b .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }}


/* 

/* ── Footer scarf: 古意煙霧繚繞效果 ────────────────────── */

/* 主繞巾：放大範圍，加入煙霧動態 */
.footer-concept-b .footer-scarf {
  left: 50%;
  top: -40px;
  width: min(110vw, 1300px);
  height: 420px;
  opacity: 0;
  transform: translateX(-50%) rotate(1.5deg);
  filter:
    blur(0.8px)
    drop-shadow(0 0 60px rgba(111, 169, 238, .32))
    drop-shadow(0 40px 60px rgba(0, 0, 0, .28))
    drop-shadow(0 0 120px rgba(140, 190, 255, .18));
  animation: ancientScarfDrift 11s ease-in-out infinite;
}


/* 第一層霧氣 */
.footer-concept-b .footer-scarf::before {
  content: "";
  position: absolute;
  inset: -60px -80px;
  pointer-events: none;
  background:
    radial-gradient(ellipse 160% 80% at 30% 55%, rgba(111, 169, 238, .13), transparent 60%),
    radial-gradient(ellipse 120% 70% at 72% 40%, rgba(80, 140, 220, .10), transparent 55%),
    radial-gradient(ellipse 100% 60% at 55% 80%, rgba(60, 120, 200, .07), transparent 50%);
  filter: blur(22px);
  animation: mistLayerA 13s ease-in-out infinite;
}
.site-header,.site-footer{font-family:"Noto Sans TC",sans-serif}

/* 與靜態頁對齊補丁（Astra 全域 h2/h4/line-height 蓋掉 styles.css 的部分）20260902 */
.site-footer .footer-b-brand h2{font-weight:900}
.site-footer p, .site-footer a, .site-footer li{line-height:1.7}
.site-footer .footer-col h4{line-height:1.7;font-weight:800}
.site-nav > a, .site-nav .nav-sub > a{line-height:1.7}
.brand-name{line-height:1.7}
.site-footer .footer-b-brand h2{line-height:1.28;margin:12px 0}
