:root {
  --paper: #efe9db;
  --paper-deep: #e6ddcb;
  --ink: #050505;
  --muted: #625d52;
  --hair: #090d20;
  --cream: #fffdf4;
  --lavender: #b7bad6;
  --line: #06c755;
  --line-deep: #04a946;
  --stroke: 3px solid var(--ink);
  --shadow: 10px 10px 0 rgba(9, 13, 32, 0.12);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.028) 0 1px, transparent 1px 18px),
    var(--paper);
  background-attachment: fixed;
  font-family: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.65;
  /* 中文逐字換行=正常排版(瀏覽器預設);長英文字/網址塞不下才硬斷。
     ⚠️ 別用 word-break:keep-all / line-break:strict——CJK 會變成「整段不可斷」,窄螢幕(尤其 iPhone WebKit /
     Facebook 內建瀏覽器)會橫向溢出、右側內容被切掉(2026-06-17 FB 連結點開破版事故)。 */
  word-break: normal;
  overflow-wrap: break-word;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.26) 1px, transparent 1px);
  background-size: 52px 52px;
  mix-blend-mode: soft-light;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 16px max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: rgba(239, 233, 219, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(5, 5, 5, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}

.brand-avatar {
  position: relative;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  width: 48px;
  height: 48px;
  background: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.brand-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
  transform: scale(1.58);
  transform-origin: 50% 10%;
}

/* header logo:外圍 3px 圓圈 + 毛筆字「助」(七龍珠衣字徽章感) */
.brand-mark {
  /* logo 改用自含的 SVG(圓框/底色/「助」字形都在 /logo.svg 裡);這裡只定尺寸與佔位。
     凍成向量=任何裝置/網速都一致,不再依賴 Google Fonts webfont(沒載到會掉成歪的 fallback)。 */
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #27231e;
  font-weight: 700;
  font-size: 15px;
}

.desktop-nav a,
.text-link {
  border-bottom: 2px solid transparent;
}

.desktop-nav a:hover,
.text-link:hover {
  border-color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: var(--stroke);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 rgba(5, 5, 5, 0.15);
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(5, 5, 5, 0.18);
}

.button-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 14px;
  box-shadow: 3px 3px 0 rgba(5, 5, 5, 0.14);
}

.button-line {
  background: var(--line);
  color: #031109;
}

.button-line:hover {
  background: #13d964;
}

.button-cream {
  background: var(--cream);
}

.button-dark {
  background: var(--hair);
  color: var(--cream);
}

.section-band,
.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: 24px;
}

/* 錨點落點往下留空,避免被 sticky header 蓋住標題 */
section[id] {
  scroll-margin-top: 84px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 48px;
  min-height: calc(100vh - 78px);
  align-items: center;
  padding-top: 58px;
  padding-bottom: 84px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--line-deep);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 8em;
  margin-bottom: 12px;
  font-size: clamp(42px, 7vw, 78px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.5vw, 58px);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.hero-subtitle {
  margin-bottom: 18px;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 900;
  line-height: 1.25;
}

/* Hero 的「不用換工具,繼續用 LINE」那行調大 */
.hero .eyebrow {
  font-size: 18px;
}

.hero-text,
.section-heading p,
.day-copy p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 560px;
  margin: 0;
  border: var(--stroke);
  background: rgba(255, 253, 244, 0.72);
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 14px 16px;
}

.trust-strip div + div {
  border-left: 2px solid var(--ink);
}

.trust-strip dt {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: block;
  align-self: center;
}

/* Hero 右側:LINE 對話示意(老闆指令 + 毛毛回應,展示能力) */
.line-chat {
  width: 100%;
  background: var(--cream);
  border: var(--stroke);
  border-radius: 16px;
  box-shadow: 14px 14px 0 rgba(9, 13, 32, 0.16);
  overflow: hidden;
}

.line-chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  background: var(--hair);
  color: var(--cream);
}

.line-chat-head .head-ava {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid var(--cream);
  border-radius: 50%;
  background: var(--cream);
  object-fit: cover;
  object-position: 50% 28%;
}

.line-chat-head strong {
  display: block;
  line-height: 1.15;
}

.line-chat-head small {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #8fe6b3;
  font-size: 12px;
  font-weight: 700;
}

.line-thread {
  display: grid;
  align-content: start; /* 列固定從頂部排;高度鎖定後,泡泡縮放(打字中⇄內容)不會讓其他列被重新分配位置 */
  overflow-y: auto;     /* 內容剛好裝滿時不會出現捲軸;訊息若再變多才在框內捲。
                           ⚠️ 別加 overscroll-behavior: contain——它會吃掉滾輪事件,讓滑鼠在對話框上滾不動整頁 */
  gap: 11px;
  padding: 20px 18px;
  background:
    radial-gradient(circle at 18px 18px, rgba(9, 13, 32, 0.05) 1.4px, transparent 1.6px) 0 0 / 26px 26px,
    var(--paper-deep);
}

.line-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.line-row.boss {
  justify-content: flex-end;
}

.line-ava {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
  object-fit: cover;
  object-position: 50% 28%;
}

.line-msg {
  max-width: 76%;
  padding: 11px 14px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: #fff;
  font-weight: 700;
  line-height: 1.55;
}

.line-row.boss .line-msg {
  border-bottom-right-radius: 5px;
}

.line-row.mao .line-msg {
  background: #eafce1;
  border-bottom-left-radius: 5px;
}

.line-msg small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

/* 對話動畫:訊息逐則跳出(老闆→毛毛打字中→毛毛回覆,JS 控制節奏) */
.line-thread.animated .line-row {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.line-thread.animated .line-row.show {
  opacity: 1;
  transform: translateY(0);
}

/* 毛毛打字中(⋯)指示泡泡 */
.line-row.typing .line-msg {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 22px;
  padding: 13px 16px;
}

.typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  animation: typing-bounce 1s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* 偏好減少動態的使用者:直接全部顯示、不播動畫 */
@media (prefers-reduced-motion: reduce) {
  .line-thread.animated .line-row {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-pad {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 680px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.message-stack,
.summary-panel {
  min-height: 340px;
  padding: 26px;
  border: var(--stroke);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.messy {
  display: grid;
  align-content: center;
  gap: 13px;
  transform: rotate(-1deg);
}

.mini-message {
  width: fit-content;
  max-width: 88%;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
}

.mini-message:nth-child(even) {
  margin-left: auto;
  background: #e8ffd9;
}

.mini-message.faded {
  opacity: 0.46;
}

.summary-panel {
  display: grid;
  align-content: center;
  background: #f8f6ed;
}

.panel-label,
.form-badge {
  width: fit-content;
  margin-bottom: 20px;
  padding: 6px 10px;
  border: 2px solid var(--ink);
  border-radius: 99px;
  background: var(--lavender);
  font-size: 13px;
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 900;
}

.check-list span {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--line);
}

/* 跨群來源標籤(毛毛跨群整理後,每項標出來自哪個群) */
.check-list li em {
  flex: 0 0 auto;
  padding: 3px 9px;
  border: 1.5px solid var(--ink);
  border-radius: 99px;
  background: var(--lavender);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

/* 痛點區左側:太多 LINE 群組(每張卡 = 一個群) */
.group-stack {
  display: grid;
  align-content: center;
  gap: 13px;
  min-height: 340px;
  padding: 24px;
  border: var(--stroke);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.group-card {
  padding: 13px 15px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
}

.group-card:nth-child(even) {
  background: #f1f7ec;
}

.group-card.faded {
  opacity: 0.5;
}

.group-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 10px;
  border: 2px solid var(--ink);
  border-radius: 99px;
  background: var(--lavender);
  font-size: 12px;
  font-weight: 900;
}

.group-card p {
  margin: 4px 0 0;
  font-weight: 700;
}

.steps,
.feature-grid,
.audience-grid,
.conversion-grid {
  display: grid;
  gap: 20px;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.steps article,
.feature-card,
.audience-grid article,
.form-panel,
.not-card,
.faq details {
  border: var(--stroke);
  border-radius: 8px;
  background: rgba(255, 253, 244, 0.82);
  box-shadow: 7px 7px 0 rgba(5, 5, 5, 0.12);
}

.steps article {
  padding: 24px;
}

.step-num,
.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--line);
  font-weight: 900;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 24px;
}

.feature-card p,
.audience-grid p,
.steps p,
.timeline-item p,
.not-card li,
.faq p {
  color: var(--muted);
}

.quote-line {
  margin-top: auto;
  padding-top: 18px;
  border-top: 2px dashed rgba(5, 5, 5, 0.22);
  font-weight: 900;
}

.day-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 16px;
  border-left: var(--stroke);
  padding-left: 26px;
}

.timeline-item {
  position: relative;
  padding: 18px 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--cream);
}

.timeline-item::before {
  position: absolute;
  left: -41px;
  top: 22px;
  width: 22px;
  height: 22px;
  content: "";
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--line);
}

.timeline-item time {
  display: block;
  color: var(--line-deep);
  font-weight: 900;
}

.timeline-item strong {
  display: block;
  margin: 4px 0;
  font-size: 20px;
}

.dialogue-stack {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.dialogue-bubble {
  width: fit-content;
  max-width: 92%;
  margin: 0;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.55;
}

.dialogue-bubble.boss {
  justify-self: end;
  background: #fff;
}

.dialogue-bubble.maomao {
  justify-self: start;
  background: #eefbe9;
}

.audience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.audience-grid article {
  padding: 24px;
}

/* 誰適合:行業卡可點 → 手機畫面 popup 看對話範例 */
.audience-grid .aud-item {
  padding: 24px;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease;
}
.audience-grid .aud-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 rgba(5, 5, 5, 0.16);
}
.aud-item p { color: var(--muted); }
.aud-hint {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 800;
  color: var(--line-deep);
}

/* 對話範例 popup:置中手機畫面 */
.chat-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
}
.chat-modal[hidden] { display: none; }
.chat-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 13, 32, 0.55);
  backdrop-filter: blur(3px);
}
.chat-phone {
  position: relative;
  width: min(400px, 100%);
}
.chat-phone .line-chat {
  border-radius: 24px;
  box-shadow: 16px 16px 0 rgba(9, 13, 32, 0.28);
}
.chat-phone .line-thread {
  max-height: min(560px, 68vh);
  overflow-y: auto;
}
.chat-close {
  position: absolute;
  top: -14px;
  right: -10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(5, 5, 5, 0.2);
}
.who-sub { margin: 46px 0 18px; }
.who-sub:first-of-type { margin-top: 8px; }
.who-sub-title {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--line);
  font-size: 18px;
}
.who-sub-desc { margin: 0; color: var(--muted); font-size: 17px; }
.feature-grid-4 { grid-template-columns: repeat(2, 1fr); }
.feature-grid-4 .feature-card { min-height: 0; }

.team-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.team-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  text-align: center;
  border: var(--stroke);
  border-radius: 8px;
  background: rgba(255, 253, 244, 0.82);
  box-shadow: 7px 7px 0 rgba(5, 5, 5, 0.12);
}

.team-avatar {
  width: 108px;
  height: 108px;
  margin: 0 auto 16px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
}

.team-card h3 {
  margin: 0 0 4px;
  font-size: 24px;
}

.team-card .name-zh {
  font-size: 19px;
  font-weight: 800;
  color: var(--muted);
}

.team-tagline {
  margin: 0 0 12px;
  font-weight: 800;
  color: var(--line-deep);
}

.team-card p {
  color: var(--muted);
}

.team-fit {
  margin-top: auto;
  padding-top: 10px;
}

.team-fit strong {
  color: var(--ink);
}

.team-badge {
  display: inline-block;
  margin: 14px auto 0;
  padding: 4px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper-deep);
  font-size: 14px;
  font-weight: 800;
}

.team-badge.open {
  background: var(--line);
}

.team-cta {
  margin-top: 12px;
}

.not-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  background: var(--hair);
  color: var(--cream);
}

.not-card .eyebrow {
  color: var(--line);
}

.not-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
  font-size: 19px;
  font-weight: 800;
}

.not-card li {
  color: #f2eddf;
}

/* 智慧提議:寬螢幕左右排(文案左、對話右,類似 hero);窄螢幕疊直 */
.suggest-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.suggest-section .section-heading {
  margin-bottom: 0;
}

.suggest-chat {
  width: 100%;
  max-width: 640px;
  justify-self: end;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.output-grid article {
  min-height: 280px;
  padding: 24px;
  border: var(--stroke);
  border-radius: 8px;
  background: rgba(255, 253, 244, 0.82);
  box-shadow: 7px 7px 0 rgba(5, 5, 5, 0.12);
}

.output-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 10px;
  border: 2px solid var(--ink);
  border-radius: 99px;
  background: var(--line);
  font-size: 13px;
  font-weight: 900;
}

.output-grid p {
  color: var(--muted);
}

.conversion-grid {
  grid-template-columns: minmax(0, 820px);
  align-items: start;
}

.conversion .section-heading {
  max-width: 1120px;
}

.title-line {
  display: block;
}

.form-panel {
  padding: 26px;
  scroll-margin-top: 96px;
}

.waitlist-done {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
  scroll-margin-top: 96px;
}

.waitlist-done[hidden] {
  display: none;
}

.waitlist-done .done-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--line);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.waitlist-done h3 {
  margin: 0;
}

.waitlist-done p {
  color: var(--muted);
  max-width: 36ch;
}

.form-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.form-heading h3 {
  margin-bottom: 0;
}

.form-heading p {
  color: var(--muted);
}

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 16px; /* 固定 16px:避免手機 focus 自動放大造成版面跳動 */
  font-family: inherit;
}

/* focus 用圓角 box-shadow 取代方形 outline:不觸發 reflow、貼合圓角,切換欄位不會「跳一下」 */
input:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(6, 199, 85, 0.3);
}

/* Honeypot:真人完全看不到也對不到焦,但不是 display:none(bot 才會略過 display:none 的欄位) */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

fieldset {
  border: 2px dashed rgba(5, 5, 5, 0.36);
  border-radius: 8px;
  padding: 18px;
}

legend {
  padding: 0 8px;
}

.checkbox {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  color: var(--muted);
  font-weight: 700;
}

.checkbox input {
  width: 20px;
  min-height: 20px;
}

.conditional-input[hidden] {
  display: none;
}

/* fieldset 預設 display:grid 會蓋掉 [hidden],隱藏題組要顯式關掉 */
fieldset[hidden] {
  display: none;
}

/* 預期用途:選項卡(radio) */
.usage-picker .radio-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
  padding: 12px 14px;
  border: 2px solid rgba(5, 5, 5, 0.22);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
}

.usage-picker .radio-card:has(input:checked) {
  border-color: var(--ink);
  background: rgba(6, 199, 85, 0.08);
}

.usage-picker .radio-card input {
  width: 20px;
  min-height: 20px;
  margin: 0;
}

.usage-picker .radio-card span {
  display: grid;
  gap: 2px;
}

.usage-picker .radio-card small {
  color: var(--muted);
  font-weight: 600;
}

.conditional-input:not(label) {
  margin-top: 8px;
}

.form-message {
  min-height: 28px;
  margin: 16px 0 0;
  font-weight: 900;
}

.form-message.success {
  color: #05652e;
}

.form-message.error {
  color: #a32515;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 0 22px;
}

.faq summary {
  cursor: pointer;
  padding: 20px 0;
  font-size: 19px;
  font-weight: 900;
}

.faq p {
  margin-bottom: 22px;
}

/* FAQ 內條列(資料安全等多點說明) */
.faq-points {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--muted);
}

.faq-points strong {
  color: var(--ink);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 36px 24px 48px;
  border-top: 2px solid rgba(5, 5, 5, 0.12);
}

.footer p {
  margin: 4px 0 0;
  color: var(--muted);
}

.invite-page {
  min-height: calc(100vh - 82px);
}

.invite-layout {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.invite-note {
  padding: 28px;
  border: var(--stroke);
  border-radius: 8px;
  background: rgba(255, 253, 244, 0.82);
  box-shadow: var(--shadow);
}

.invite-note img {
  width: 104px;
  height: 104px;
  margin-bottom: 24px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 36%;
}

.invite-note h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.invite-note p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .compare-grid,
  .day-section,
  .not-card,
  .conversion-grid,
  .suggest-section,
  .invite-layout {
    grid-template-columns: 1fr;
  }

  .suggest-chat {
    justify-self: stretch;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .steps,
  .feature-grid,
  .audience-grid,
  .output-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* 誰適合「看更多行業」按鈕(只在手機出現;桌機一律全展開) */
.aud-toggle {
  display: none;
  width: 100%;
  margin-top: 14px;
  min-height: 48px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(5, 5, 5, 0.14);
}

@media (max-width: 700px) {
  /* 預設只露前 3 張行業卡,其餘收折;點按鈕展開 */
  .audience-grid[data-collapsible].is-collapsed .aud-item:nth-child(n + 4) {
    display: none;
  }
  .aud-toggle {
    display: block;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .section-pad {
    padding-inline: 18px;
  }

  .section-pad {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  h1 {
    font-size: 52px;
  }

  .hero-actions,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .steps,
  .feature-grid,
  .audience-grid,
  .output-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div + div {
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  .line-msg {
    max-width: 82%;
  }

  .message-stack,
  .summary-panel {
    min-height: 280px;
    padding: 20px;
  }
}

/* footer 法務連結(隱私權/條款) */
.footer-links a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-links a:hover { color: var(--ink); }

/* ── 方案費用頁 ── */
.pricing-hero { padding-top: 48px; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  border: var(--stroke);
  border-radius: 8px;
  background: rgba(255, 253, 244, 0.85);
  box-shadow: 7px 7px 0 rgba(5, 5, 5, 0.12);
}
.price-featured {
  background: var(--cream);
  box-shadow: 10px 10px 0 rgba(9, 13, 32, 0.18);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 22px;
  padding: 4px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--line);
  font-size: 13px;
  font-weight: 900;
}
.price-card h3 { margin: 0 0 6px; font-size: 22px; }
.price-amt { margin: 0 0 4px; font-size: 40px; font-weight: 900; line-height: 1; }
.price-amt .cur { font-size: 18px; font-weight: 800; vertical-align: 18px; margin-right: 2px; }
.price-amt .per { font-size: 16px; font-weight: 700; color: var(--muted); }
.price-tag { margin: 0 0 16px; color: var(--muted); font-size: 14px; min-height: 38px; }
.price-feat { margin: 0 0 14px; padding: 0; list-style: none; display: grid; gap: 9px; }
.price-feat li { padding-left: 22px; position: relative; font-size: 15px; }
.price-feat li::before { content: "✓"; position: absolute; left: 0; color: var(--line-deep); font-weight: 900; }
.price-fine { margin: 0 0 18px; color: var(--muted); font-size: 13px; }
.price-card .button { margin-top: auto; width: 100%; }
.price-note {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 980px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .price-grid { grid-template-columns: 1fr; }
}

/* 創始會員 banner + 價格 */
.founding-banner {
  max-width: 760px;
  margin: 18px auto 0;
  padding: 14px 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--line);
  text-align: center;
  font-size: 15px;
  box-shadow: 5px 5px 0 rgba(5, 5, 5, 0.14);
}
.price-orig {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--muted);
}
.price-orig .price-founding { color: var(--line-deep); font-weight: 800; }
.price-amt .per { font-size: 15px; }

/* ── 手機版 header 漢堡選單(把 nav 連結+動作按鈕收進抽屜)─────────────────── */
.nav-drawer { display: flex; align-items: center; gap: 24px; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 46px; height: 42px; align-items: center; justify-content: center; padding: 0;
  background: var(--cream); border: var(--stroke); border-radius: 8px; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2.6px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

@media (max-width: 760px) {
  /* 維持一列:logo 左、漢堡右(蓋掉舊的 column/static 規則) */
  .site-header { flex-direction: row; align-items: center; position: sticky; }
  .nav-toggle { display: inline-flex; }
  /* 抽屜:漢堡點開才出現的下拉面板 */
  .nav-drawer {
    display: none; position: absolute; top: calc(100% + 8px); right: 16px;
    flex-direction: column; align-items: stretch; gap: 4px;
    min-width: 220px; max-width: calc(100vw - 32px);
    background: var(--cream); border: var(--stroke); border-radius: 12px;
    box-shadow: var(--shadow); padding: 12px; z-index: 30;
  }
  .site-header.menu-open .nav-drawer { display: flex; }
  /* 抽屜內:把首頁區塊連結也一起列出來(手機本來看不到) */
  .nav-drawer .desktop-nav { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .nav-drawer .desktop-nav a { padding: 11px 8px; border-bottom: 1px solid rgba(5, 5, 5, 0.08); }
  .nav-drawer .nav-actions { width: 100%; flex-direction: column; align-items: stretch; gap: 10px; margin-top: 8px; white-space: normal; }
  .nav-drawer .nav-actions .button { width: 100%; }
  .nav-drawer .text-link { padding: 11px 8px; }
}

/* 三位助理:可改呼叫方式說明 */
.team-note {
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  border: 2px dashed rgba(5, 5, 5, 0.18);
  border-radius: 10px;
  padding: 14px 18px;
  background: var(--cream);
}
