/* 校園大使平台 — 白色簡約風 */
:root {
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --card: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #6b6b6b;
  --line: #ececec;
  --line-strong: #dcdcdc;
  --accent: #1a1a1a;      /* 主色：黑（簡約） */
  --accent-soft: #f2f2f2;
  --paid: #0f8a5f;         /* 有薪標籤 */
  --paid-bg: #e9f7f0;
  --unpaid: #8a6d0f;
  --unpaid-bg: #f7f2e0;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.05);
  --shadow-hover: 0 2px 6px rgba(0,0,0,.06), 0 16px 40px rgba(0,0,0,.09);
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "PingFang TC", "Noto Sans TC", "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 800; font-size: 19px; letter-spacing: -.02em; display: flex; align-items: center; gap: 8px; }
.logo .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink); display: inline-block; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 8px 14px; border-radius: 999px; font-size: 14.5px; color: var(--ink-soft); transition: .15s; }
.nav-links a:hover { background: var(--accent-soft); color: var(--ink); }
/* nav 下拉選單（我是廠商）*/
.nav-dd { position: relative; }
.nav-dd-trigger {
  padding: 8px 14px; border-radius: 999px; font-size: 14.5px; color: var(--ink-soft);
  background: none; border: none; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 5px; transition: .15s;
}
.nav-dd-trigger:hover, .nav-dd.open .nav-dd-trigger { background: var(--accent-soft); color: var(--ink); }
.nav-dd-caret { font-size: 11px; transition: transform .18s; }
.nav-dd.open .nav-dd-caret { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute; top: calc(100% + 6px); right: 0; min-width: 168px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
  padding: 6px; display: none; flex-direction: column; gap: 2px; z-index: 60;
}
.nav-dd.open .nav-dd-menu { display: flex; }
.nav-dd-menu a { padding: 9px 12px; border-radius: 8px; font-size: 14px; color: var(--ink); white-space: nowrap; }
.nav-dd-menu a:hover { background: var(--accent-soft); }
/* 漢堡按鈕（桌機隱藏，手機顯示）*/
.nav-toggle {
  display: none; width: 40px; height: 40px; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line-strong); border-radius: 10px; cursor: pointer;
  color: var(--ink); padding: 0; transition: .15s;
}
.nav-toggle:hover { background: var(--accent-soft); }
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .ico-close { display: none; }
.nav-toggle.open .ico-open { display: none; }
.nav-toggle.open .ico-close { display: block; }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 999px; font-size: 14.5px; font-weight: 600;
  border: 1px solid var(--ink); background: var(--ink); color: #fff; cursor: pointer;
  transition: .18s;
}
.btn:hover { opacity: .86; transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn.ghost:hover { background: var(--accent-soft); opacity: 1; }
.btn.sm { padding: 6px 14px; font-size: 13.5px; }

/* ===== Hero ===== */
.hero { padding: 80px 0 48px; text-align: center; }
.hero .eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; color: var(--ink-soft);
  background: var(--accent-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: 52px; line-height: 1.08; letter-spacing: -.03em; font-weight: 800; }
.hero h1 .hl { position: relative; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: 6px; height: 12px;
  background: #ffe58a; z-index: -1; border-radius: 3px;
}
.hero p { font-size: 18px; color: var(--ink-soft); margin: 20px auto 0; max-width: 560px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; justify-content: center; margin-top: 46px; }
.hero-stats .stat b { font-size: 28px; font-weight: 800; letter-spacing: -.02em; }
.hero-stats .stat span { display: block; font-size: 13.5px; color: var(--ink-soft); margin-top: 2px; }

/* ===== Filters ===== */
.section-head { display: flex; align-items: end; justify-content: space-between; margin: 12px 0 22px; flex-wrap: wrap; gap: 12px; }
.section-head h2 { font-size: 26px; letter-spacing: -.02em; font-weight: 800; }
.section-head .sub { color: var(--ink-soft); font-size: 14.5px; }

.filters { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 7px 15px; border-radius: 999px; font-size: 14px; cursor: pointer;
  border: 1px solid var(--line-strong); background: #fff; color: var(--ink-soft); transition: .15s;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.select-box { position: relative; }
.select-box::after {
  content: "▾"; position: absolute; right: 15px; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: var(--ink-soft); font-size: 13px;
}
.select-box select {
  appearance: none; -webkit-appearance: none;
  padding: 9px 40px 9px 16px; border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: 14.5px; font-family: inherit; background: #fff; color: var(--ink);
  cursor: pointer; outline: none; transition: .15s;
}
.select-box select:hover { border-color: var(--ink); }
.select-box select:focus { border-color: var(--ink); }
.toggle {
  display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: var(--ink-soft);
  padding: 7px 14px; border: 1px solid var(--line-strong); border-radius: 999px; cursor: pointer; user-select: none;
}
.toggle input { accent-color: var(--ink); }
.search-box {
  flex: 1; min-width: 200px; display: flex; align-items: center; gap: 8px;
  padding: 8px 15px; border: 1px solid var(--line-strong); border-radius: 999px;
}
.search-box input { border: none; outline: none; font-size: 14.5px; width: 100%; background: transparent; font-family: inherit; }

/* ===== Grid ===== */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; cursor: pointer; transition: .2s; display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--line-strong); }
.card-top { display: flex; align-items: start; justify-content: space-between; gap: 10px; }
.card-emoji {
  width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0;
}
.fav-btn { background: none; border: none; cursor: pointer; font-size: 20px; line-height: 1; color: var(--line-strong); transition: .15s; padding: 4px; }
.fav-btn:hover { transform: scale(1.15); }
.fav-btn.on { color: #e0245e; }

/* ⋯ 更多選單 */
.card-top-actions { display: flex; align-items: center; gap: 2px; }
.more-wrap { position: relative; }
.more-btn { background: none; border: none; cursor: pointer; font-size: 20px; line-height: 1; color: var(--ink-soft); padding: 4px 6px; border-radius: 8px; transition: .15s; }
.more-btn:hover { background: var(--accent-soft); color: var(--ink); }
.more-menu {
  position: absolute; top: calc(100% + 4px); right: 0; min-width: 168px; z-index: 40;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
  padding: 6px; display: none; flex-direction: column; gap: 2px; text-align: left;
}
.more-wrap.open .more-menu { display: flex; }
.more-menu button { background: none; border: none; text-align: left; cursor: pointer; font-family: inherit;
  font-size: 14px; color: var(--ink); padding: 9px 12px; border-radius: 8px; white-space: nowrap; width: 100%; }
.more-menu button:hover { background: var(--accent-soft); }
.modal-more { position: absolute; top: 18px; left: 22px; }
.modal-more .more-menu { left: 0; right: auto; }
.card h3 { font-size: 17px; font-weight: 700; letter-spacing: -.01em; line-height: 1.35; }
.card .brand { font-size: 13.5px; color: var(--ink-soft); margin-top: 1px; }
.card .desc { font-size: 14px; color: var(--ink-soft); flex: 1; }
.tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-size: 12px; padding: 4px 10px; border-radius: 999px; background: var(--accent-soft); color: var(--ink-soft);
}
.tag.paid { background: var(--paid-bg); color: var(--paid); font-weight: 600; }
.tag.unpaid { background: var(--unpaid-bg); color: var(--unpaid); font-weight: 600; }
.card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--line); }
.deadline { font-size: 13px; color: var(--ink-soft); }
.deadline.soon { color: #d64545; font-weight: 600; }
.deadline.closed { color: #999; }
.recruit-banner { font-size: 13.5px; border-radius: 10px; padding: 10px 14px; margin: 14px 0; }
.recruit-banner.open { background: var(--paid-bg); color: var(--paid); border: 1px solid #cdeadd; }
.recruit-banner.closed { background: #fdeaea; color: #b53535; border: 1px solid #f2cdcd; }
.source-line { margin-top: 14px; font-size: 12px; color: var(--ink-soft); text-align: center; }
.source-line a { text-decoration: underline; }

.empty { text-align: center; padding: 60px 0; color: var(--ink-soft); }

/* ===== Modal (詳情) ===== */
.modal-mask {
  position: fixed; inset: 0; background: rgba(20,20,20,.42); backdrop-filter: blur(3px);
  display: none; align-items: center; justify-content: center; z-index: 100; padding: 20px;
}
.modal-mask.open { display: flex; }
.modal {
  background: #fff; border-radius: 18px; max-width: 620px; width: 100%; max-height: 88vh; overflow-y: auto;
  padding: 34px; position: relative; box-shadow: 0 24px 80px rgba(0,0,0,.28); animation: pop .22s ease;
}
@keyframes pop { from { transform: translateY(14px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close { position: absolute; top: 20px; right: 20px; background: var(--accent-soft); border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 16px; color: var(--ink-soft); }
.modal-close:hover { background: var(--line-strong); }
.modal-emoji { width: 60px; height: 60px; border-radius: 15px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 32px; margin-bottom: 16px; }
.modal h2 { font-size: 24px; letter-spacing: -.02em; }
.modal .m-brand { color: var(--ink-soft); font-size: 15px; margin-top: 3px; }
.modal .m-tags { display: flex; gap: 7px; flex-wrap: wrap; margin: 18px 0; }
.modal h4 { font-size: 14px; font-weight: 700; margin: 22px 0 10px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }
.modal ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.modal ul li { font-size: 15px; padding-left: 22px; position: relative; }
.modal ul li::before { content: "→"; position: absolute; left: 0; color: var(--ink-soft); }
.benefit-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.benefit-pills span { background: var(--paid-bg); color: var(--paid); font-size: 13.5px; padding: 6px 13px; border-radius: 999px; font-weight: 500; }
.meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
.meta-grid .m { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 11px; padding: 12px 15px; }
.meta-grid .m span { font-size: 12.5px; color: var(--ink-soft); display: block; }
.meta-grid .m b { font-size: 15px; font-weight: 600; }
.modal-actions { display: flex; gap: 10px; margin-top: 24px; }
.modal-actions .btn { flex: 1; justify-content: center; }

/* ===== Auth Modal ===== */
.auth-modal { max-width: 420px; }
.auth-tabs { display: flex; gap: 6px; background: var(--accent-soft); padding: 4px; border-radius: 999px; margin-bottom: 22px; }
.auth-tab { flex: 1; padding: 9px; border: none; background: transparent; border-radius: 999px; cursor: pointer; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); font-family: inherit; transition: .15s; }
.auth-tab.active { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.auth-sub { color: var(--ink-soft); font-size: 14.5px; margin-top: 4px; }
.google-btn { width: 100%; justify-content: center; gap: 10px; background: #fff; color: var(--ink); border: 1px solid var(--line-strong); margin-top: 18px; }
.google-btn:hover { background: var(--bg-soft); opacity: 1; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 18px 0 4px; color: var(--ink-soft); font-size: 12.5px; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
/* ===== 全站表單欄位（modal 與表單頁共用；單一來源）===== */
/* 兩種結構都支援：<div class="field"><label>…</label></div> 與 <label class="field">…</label> */
#authForm { margin-top: 22px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field > label { display: flex; flex-direction: column; }
.field label > span, .field > span { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.field .hint { font-weight: 400; color: var(--ink-soft); font-size: 12.5px; }
.field input[type="text"], .field input[type="email"], .field input[type="url"],
.field input[type="password"], .field input[type="date"], .field input[type="datetime-local"],
.field input[type="number"], .field select, .field textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--line-strong); border-radius: 10px;
  font-size: 15px; font-family: inherit; outline: none; transition: .15s; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 84px; line-height: 1.5; }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%23888' d='M6 8L2 4h8z'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.auth-err { color: #d64545; font-size: 13.5px; min-height: 0; }
.auth-err:not(:empty) { min-height: 18px; }
.auth-note { display: block; margin-top: 16px; color: var(--ink-soft); font-size: 12.5px; text-align: center; }

/* 已登入時的 nav 使用者區 */
.user-chip { display: inline-flex; align-items: center; gap: 8px; padding: 6px 8px 6px 14px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 13.5px; }
.user-chip .avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.user-chip .logout { background: none; border: none; cursor: pointer; color: var(--ink-soft); font-size: 13px; padding: 4px 8px; border-radius: 999px; }
.user-chip .logout:hover { background: var(--accent-soft); color: var(--ink); }
.foot-ico { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--ink-soft); transition: .15s; }
.foot-ico:hover { border-color: var(--ink); color: var(--ink); background: var(--accent-soft); }
.foot-ico svg { width: 16px; height: 16px; }
.um-dropdown .um-sep { height: 1px; background: var(--line); margin: 6px 0; }
.um-dropdown a svg.um-ico { width: 15px; height: 15px; vertical-align: -2px; margin-right: 2px; }

/* 右上角使用者選單 */
.user-menu { position: relative; }
.um-trigger { display: inline-flex; align-items: center; gap: 8px; padding: 5px 10px 5px 6px; border: 1px solid var(--line-strong); border-radius: 999px; background: #fff; cursor: pointer; font-family: inherit; font-size: 14px; color: var(--ink); transition: .15s; }
.um-trigger:hover { background: var(--accent-soft); }
.um-emoji, .um-img { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
.um-emoji { background: var(--ink); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; }
.um-img { object-fit: cover; }
.um-name { font-weight: 600; max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.um-caret { color: var(--ink-soft); font-size: 11px; }
.um-dropdown { position: absolute; top: calc(100% + 8px); right: 0; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-hover); padding: 6px; min-width: 168px; display: none; flex-direction: column; gap: 2px; z-index: 60; }
.um-dropdown.open { display: flex; }
.um-dropdown a, .um-dropdown .um-logout { display: block; text-align: left; padding: 9px 12px; border-radius: 8px; font-size: 14px; color: var(--ink); background: none; border: none; cursor: pointer; font-family: inherit; width: 100%; }
.um-dropdown a:hover, .um-dropdown .um-logout:hover { background: var(--accent-soft); }
.um-dropdown .um-logout { color: var(--ink-soft); border-top: 1px solid var(--line); margin-top: 2px; }

/* ===== 表單頁（投稿 / 後台共用）===== */
.page { max-width: 720px; margin: 0 auto; padding: 40px 24px 80px; }
.admin-page { max-width: 960px; }
.page-head { margin-bottom: 8px; }
.page-head h1 { font-size: 32px; letter-spacing: -.02em; }
.page-head p { color: var(--ink-soft); margin-top: 8px; font-size: 15.5px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-soft); font-size: 14px; margin-bottom: 22px; }
.back-link:hover { color: var(--ink); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.form-card .field:last-child { margin-bottom: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.check-line { display: flex; align-items: center; gap: 9px; font-size: 15px; cursor: pointer; }
.check-line input { width: 18px; height: 18px; accent-color: var(--ink); }
.emoji-picker { display: flex; gap: 6px; flex-wrap: wrap; }
.emoji-opt { width: 42px; height: 42px; border: 1px solid var(--line-strong); border-radius: 10px; background: #fff; font-size: 20px; cursor: pointer; transition: .12s; }
.emoji-opt:hover { border-color: var(--ink); }
.emoji-opt.sel { border-color: var(--ink); background: var(--accent-soft); }
.form-msg { padding: 14px 16px; border-radius: 10px; font-size: 14.5px; margin-bottom: 18px; }
.form-msg.ok { background: var(--paid-bg); color: var(--paid); }
.form-msg.err { background: #fdeaea; color: #c0392b; }
.success-box { text-align: center; padding: 50px 20px; }
.success-box .big { font-size: 52px; margin-bottom: 12px; }
.success-box h2 { font-size: 24px; margin-bottom: 10px; }
.success-box p { color: var(--ink-soft); margin-bottom: 24px; }

/* ===== 後台 ===== */
.admin-tabs { display: flex; gap: 8px; margin: 24px 0; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
.admin-tabs::-webkit-scrollbar { height: 0; }
.admin-tab { flex: 0 0 auto; white-space: nowrap; padding: 8px 13px; border-radius: 999px; border: 1px solid var(--line-strong); background: #fff; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--ink-soft); font-family: inherit; }
.admin-tabs .btn { flex: 0 0 auto; }
.admin-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.admin-tab .badge { display: inline-block; margin-left: 6px; background: #d64545; color: #fff; font-size: 11px; padding: 1px 7px; border-radius: 999px; }
.admin-tab.active .badge { background: #fff; color: var(--ink); }
.review-card, .queue-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-bottom: 16px; box-shadow: var(--shadow); }
.queue-card h3 { font-size: 18px; }
.queue-card .q-brand { color: var(--ink-soft); font-size: 14px; margin: 2px 0 12px; }
.queue-card .q-meta { display: flex; gap: 6px; flex-wrap: wrap; margin: 12px 0; }
.queue-card .q-section { margin-top: 12px; }
.queue-card .q-section b { font-size: 13px; color: var(--ink-soft); }
.q-actions { display: flex; gap: 10px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.btn.approve { background: var(--paid); border-color: var(--paid); }
.btn.reject { background: #fff; color: #c0392b; border-color: #f0c9c4; }
.btn.reject:hover { background: #fdeaea; opacity: 1; }
.admin-gate { text-align: center; padding: 70px 20px; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat-grid.four { grid-template-columns: repeat(2, 1fr); max-width: 560px; }
.stat-tile { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px; box-shadow: var(--shadow); }
.stat-tile b { font-size: 30px; font-weight: 800; letter-spacing: -.02em; display: block; }
.stat-tile span { font-size: 13.5px; color: var(--ink-soft); }
.stat-tile small { display: block; font-size: 11.5px; color: var(--ink-soft); margin-top: 2px; }
@media (max-width: 620px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.admin-empty { text-align: center; padding: 50px; color: var(--ink-soft); }
.rev-type-badge { display: inline-block; font-size: 12px; padding: 3px 10px; border-radius: 999px; background: var(--accent-soft); color: var(--ink-soft); font-weight: 600; }
.stars { color: #f5a623; letter-spacing: 2px; }

/* ===== 詳情頁「學長姐怎麼說」===== */
.reviews-block { margin-top: 26px; border-top: 1px solid var(--line); padding-top: 20px; }
.reviews-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.reviews-head h4 { margin: 0; text-transform: none; letter-spacing: 0; font-size: 16px; color: var(--ink); }
.rev-tabs { display: flex; gap: 6px; margin-bottom: 14px; }
.rev-tab { padding: 6px 13px; border-radius: 999px; border: 1px solid var(--line-strong); background: #fff; font-size: 13px; cursor: pointer; color: var(--ink-soft); font-family: inherit; }
.rev-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.rev-item { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 11px; padding: 15px; margin-bottom: 10px; }
.rev-item .rev-who { font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.rev-item .rev-q { font-size: 13px; font-weight: 600; margin-top: 8px; color: var(--ink-soft); }
.rev-item .rev-a { font-size: 14.5px; }
.rev-empty { color: var(--ink-soft); font-size: 14px; padding: 16px 0; text-align: center; }

/* ===== 查稿編號框 ===== */
.track-code-box { background: var(--bg-soft); border: 1px dashed var(--line-strong); border-radius: 12px; padding: 16px; margin: 0 auto 22px; max-width: 420px; }
.track-code-box > span { font-size: 12.5px; color: var(--ink-soft); display: block; margin-bottom: 8px; }
.track-code-row { display: flex; gap: 8px; align-items: center; justify-content: center; }
.track-code-row code { flex: 1; min-width: 0; font-size: 15px; font-weight: 700; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 8px 14px; letter-spacing: .02em; word-break: break-all; text-align: center; }
.track-code-row .btn { white-space: nowrap; flex-shrink: 0; }

/* ===== 計畫比較 ===== */
.cmp-add { transition: .15s; }
.cmp-add.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.cmp-bar {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(90px);
  background: #111; color: #fff; border-radius: 999px; padding: 10px 12px 10px 20px;
  display: flex; align-items: center; gap: 12px; z-index: 95; box-shadow: 0 10px 34px rgba(0,0,0,.25);
  transition: .25s; max-width: calc(100vw - 32px);
}
.cmp-bar.show { transform: translateX(-50%) translateY(0); }
.cmp-bar .cmp-names { font-size: 13.5px; color: #ccc; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 42vw; }
.cmp-bar .btn { background: #fff; color: #111; border-color: #fff; }
.cmp-bar .cmp-clear { background: none; border: none; color: #888; cursor: pointer; font-size: 13px; padding: 6px 8px; }
.cmp-bar .cmp-clear:hover { color: #fff; }
.cmp-modal { max-width: 780px; }
.cmp-table-wrap { overflow-x: auto; margin-top: 18px; }
.cmp-table { border-collapse: collapse; width: 100%; min-width: 560px; }
.cmp-table th, .cmp-table td { border: 1px solid var(--line); padding: 12px 14px; font-size: 14px; text-align: left; vertical-align: top; }
.cmp-table th { background: var(--bg-soft); font-size: 13px; color: var(--ink-soft); white-space: nowrap; width: 92px; }
.cmp-table td .c-title { font-weight: 700; font-size: 15px; }
.cmp-table td .c-brand { color: var(--ink-soft); font-size: 12.5px; }
.cmp-table td ul { margin: 0; padding-left: 16px; }
.cmp-table td ul li { font-size: 13.5px; margin-bottom: 3px; }

/* ===== 創始大使 / 發起第一場 空狀態 ===== */
.founding-state { text-align: center; padding: 56px 24px; background: linear-gradient(160deg, #fbf7ee, #fff); border: 1px dashed #e6d9bd; border-radius: 20px; max-width: 520px; margin: 20px auto; }
.founding-state .fs-badge { font-size: 56px; margin-bottom: 8px; }
.founding-state h3 { font-size: 24px; letter-spacing: -.02em; margin-bottom: 12px; }
.founding-state p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; margin-bottom: 24px; }

/* ===== 名片牆 ===== */
.net-intro { background: linear-gradient(135deg, #111, #333); color: #fff; border-radius: 18px; padding: 30px 32px; margin-bottom: 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.net-intro h2 { font-size: 22px; letter-spacing: -.02em; }
.net-intro p { color: #bbb; font-size: 14.5px; margin-top: 6px; max-width: 460px; }
.net-intro .btn { background: #fff; color: #111; border-color: #fff; white-space: nowrap; }
.profile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.profile-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); cursor: pointer; transition: .2s; display: flex; flex-direction: column; gap: 12px; }
.profile-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--line-strong); }
.pc-top { display: flex; gap: 12px; align-items: center; }
.pc-avatar { width: 54px; height: 54px; border-radius: 50%; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.pc-name { font-size: 17px; font-weight: 700; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pc-school { font-size: 13px; color: var(--ink-soft); }
.pc-headline { font-size: 14px; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.pc-skills { display: flex; gap: 6px; flex-wrap: wrap; }
.badge-v, .badge-f { font-size: 11px; padding: 2px 8px; border-radius: 999px; font-weight: 700; }
.badge-v { background: #e9f2ff; color: #2563c9; }
.badge-f { background: #fff4e0; color: #c97a12; }
.pc-exp { font-size: 12.5px; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 10px; }

/* 專長多選標籤 */
.chip-select { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-select .chip { font-size: 13.5px; padding: 6px 13px; }
.chip-select .chip-add { border-style: dashed; color: var(--ink-soft); }
.chip-select .chip-add:hover { border-color: var(--ink); color: var(--ink); }

/* 頭貼上傳 */
.avatar-upload { display: flex; align-items: center; gap: 14px; }
.avatar-preview { width: 60px; height: 60px; border-radius: 50%; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 30px; flex-shrink: 0; overflow: hidden; border: 1px solid var(--line); }
.avatar-preview img { width: 100%; height: 100%; object-fit: cover; }

/* 名片詳情 modal */
.pm-head { display: flex; gap: 16px; align-items: center; margin-bottom: 6px; }
.pm-avatar { width: 68px; height: 68px; border-radius: 50%; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 34px; }
.pm-exp-item { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 10px 14px; margin-bottom: 8px; font-size: 14px; }
.pm-exp-item b { font-weight: 600; }
.contact-locked { color: var(--ink-soft); font-size: 13.5px; background: var(--bg-soft); border-radius: 10px; padding: 12px 14px; text-align: center; }

/* ===== 活動牆 ===== */
.event-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.event-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); cursor: pointer; transition: .2s; display: flex; flex-direction: column; gap: 12px; }
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.ev-type { display: inline-block; font-size: 12px; padding: 4px 11px; border-radius: 999px; background: var(--accent-soft); color: var(--ink-soft); font-weight: 600; align-self: flex-start; }
.ev-title { font-size: 18px; font-weight: 700; letter-spacing: -.01em; line-height: 1.35; }
.ev-meta { display: flex; flex-direction: column; gap: 5px; font-size: 13.5px; color: var(--ink-soft); }
.ev-meta .row { display: flex; align-items: center; gap: 7px; }
.ev-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 12px; }
.ev-hosts { display: flex; align-items: center; }
.signup-stack { display: flex; align-items: center; }
.signup-stack .mini { width: 28px; height: 28px; border-radius: 50%; background: var(--accent-soft); border: 2px solid #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; margin-left: -8px; }
.signup-stack .mini:first-child { margin-left: 0; }
.signup-count { font-size: 13px; color: var(--ink-soft); margin-left: 8px; }
.ev-cap { font-size: 12.5px; color: var(--ink-soft); }
.ev-cap.full { color: #d64545; font-weight: 600; }

/* 活動詳情 modal 報名者 */
.attendee-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.attendee { display: flex; align-items: center; gap: 8px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px 5px 6px; font-size: 13px; }
.attendee .a-av { width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.ev-host-card { display: flex; align-items: center; gap: 12px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 12px 15px; margin: 6px 0 4px; }
.safety-tip { font-size: 12.5px; color: var(--ink-soft); background: #fffbe9; border: 1px solid #f2e6b8; border-radius: 10px; padding: 10px 13px; margin: 12px 0; }

@media (max-width: 900px) { .profile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .profile-grid, .event-grid { grid-template-columns: 1fr; } }

/* ===== 分享卡生成器 ===== */
.share-layout { display: grid; grid-template-columns: 1fr 340px; gap: 26px; align-items: start; }
.share-preview-wrap { position: sticky; top: 88px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px; padding: 16px; display: flex; justify-content: center; }
#cardCanvas { width: 100%; max-width: 300px; height: auto; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,.2); }
.color-picker { display: flex; gap: 10px; }
.color-opt { width: 44px; height: 44px; border-radius: 12px; border: 2px solid var(--line); cursor: pointer; position: relative; padding: 0; transition: .15s; }
.color-opt.sel { border-color: var(--ink); transform: scale(1.05); }
.color-opt span { position: absolute; right: 5px; bottom: 5px; width: 14px; height: 14px; border-radius: 50%; display: block; }
@media (max-width: 720px) { .share-layout { grid-template-columns: 1fr; } .share-preview-wrap { position: static; order: -1; } #cardCanvas { max-width: 240px; } }

/* ===== Subscribe band ===== */
.subscribe {
  background: #111; color: #fff; border-radius: 22px; padding: 52px 40px; text-align: center; margin: 64px 0;
}
.subscribe h2 { font-size: 30px; letter-spacing: -.02em; }
.subscribe p { color: #b8b8b8; margin: 12px auto 0; max-width: 460px; font-size: 16px; }
.sub-form { display: flex; gap: 10px; max-width: 440px; margin: 28px auto 0; }
.sub-form input {
  flex: 1; padding: 13px 18px; border-radius: 999px; border: none; font-size: 15px; font-family: inherit; outline: none;
}
.sub-form .btn { background: #fff; color: #111; border-color: #fff; }
.subscribe small { display: block; margin-top: 14px; color: #888; font-size: 12.5px; }
/* 追蹤 IG band */
#follow .subscribe p { max-width: 640px; }
.follow-cta { margin-top: 28px; }
.follow-cta .btn { background: #fff; color: #111; border-color: #fff; }
.btn.is-soon { background: rgba(255,255,255,.14); color: #eaeaea; border-color: rgba(255,255,255,.28); cursor: default; }
.btn.is-soon:hover { transform: none; opacity: 1; }

/* ===== 許願池 band ===== */
.wish-band { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; background: #fbf7ee; border: 1px solid #efe4cd; border-radius: 22px; padding: 34px 40px; margin: 30px 0; }
.wish-band h2 { font-size: 23px; letter-spacing: -.02em; }
.wish-band p { color: var(--ink-soft); margin-top: 8px; font-size: 15px; max-width: 460px; }
.wish-band .btn { white-space: nowrap; }

/* ===== Footer ===== */
.foot-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; align-items: center; }
.foot-links a { cursor: pointer; }
footer { border-top: 1px solid var(--line); padding: 38px 0; margin-top: 40px; }
.foot-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; color: var(--ink-soft); font-size: 14px; text-align: center; }
.foot-bottom { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.foot-inner .logo { color: var(--ink); }
.foot-copy { color: var(--ink-soft); font-size: 13.5px; }
.foot-contact { display: flex; align-items: center; justify-content: center; gap: 12px; }
.foot-contact-label { font-size: 14px; font-weight: 700; color: var(--ink); }

/* ===== Toast ===== */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #111; color: #fff; padding: 13px 24px; border-radius: 999px; font-size: 14.5px;
  opacity: 0; pointer-events: none; transition: .25s; z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } .hero h1 { font-size: 40px; } }
@media (max-width: 620px) {
  .grid { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 32px; } .hero h1 { font-size: 33px; }
  .hero-stats { gap: 26px; }
  .sub-form { flex-direction: column; } .subscribe { padding: 40px 24px; }
  .meta-grid { grid-template-columns: 1fr; }

  /* 手機導覽：漢堡選單面板 */
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 26px rgba(0,0,0,.09);
    padding: 10px 20px 18px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; border-radius: 10px; font-size: 15.5px; width: 100%; color: var(--ink); }
  .nav-links a:hover { background: var(--accent-soft); }
  .nav-links a.btn { justify-content: center; margin-top: 8px; }
  /* 「我是廠商」下拉在面板內攤平 */
  .nav-dd { width: 100%; }
  .nav-dd-trigger { width: 100%; justify-content: space-between; padding: 13px 14px; font-size: 15.5px; border-radius: 10px; }
  .nav-dd-menu { position: static; box-shadow: none; border: none; min-width: 0; padding: 2px 0 2px 12px; }
  .nav-dd-menu a { font-size: 14.5px; }
}

/* ============================================================
   ✏️ 關於校園大使頁（about.html）— 蠟筆插畫風（只作用於 .about-* ）
   簡約打底 + 蠟筆點綴：白底黑字不動，加蠟筆色塊 + 手繪感邊框
   ============================================================ */
:root {
  --crayon-yellow: #ffe28a;
  --crayon-yellow-soft: #fff6d9;
  --crayon-peach: #ffcaa8;
  --crayon-peach-soft: #ffe8dc;
  --crayon-blue: #a9d9ea;
  --crayon-blue-soft: #e2f3fa;
  --crayon-pink: #fac0d2;
  --crayon-pink-soft: #fce4ec;
  --crayon-green: #c2e3b3;
  --crayon-green-soft: #e8f4e2;
}
/* 手繪不規則邊框 */
.sketch { border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px; }
.sketch-2 { border-radius: 15px 225px 15px 255px / 255px 15px 225px 15px; }

/* ---- Hero ---- */
.about-hero { padding: 66px 0 40px; }
.about-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.about-hero .eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; color: #7a5a00;
  background: var(--crayon-yellow-soft); padding: 6px 15px;
  border: 1.5px solid var(--crayon-yellow); border-radius: 999px; margin-bottom: 20px;
}
.about-hero h1 { font-size: 46px; line-height: 1.12; letter-spacing: -.03em; font-weight: 800; }
.about-hero h1 .crayon-hl { position: relative; white-space: nowrap; }
.about-hero h1 .crayon-hl::after {
  content: ""; position: absolute; left: -3px; right: -3px; bottom: 4px; height: 14px;
  background: var(--crayon-yellow); z-index: -1;
  border-radius: 255px 12px 225px 12px / 12px 225px 12px 255px; transform: rotate(-.6deg);
}
.about-hero p.lead { font-size: 18.5px; color: var(--ink-soft); margin-top: 20px; max-width: 480px; }
.about-hero-cta { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.about-hero-art svg { width: 100%; height: auto; }

/* 通用 section 節奏 */
.about-sec { padding: 46px 0; }
.about-sec.tint { background: var(--bg-soft); }
.about-sec-head { text-align: center; max-width: 620px; margin: 0 auto 34px; }
.about-sec-head h2 { font-size: 30px; letter-spacing: -.02em; font-weight: 800; }
.about-sec-head h2 .u { position: relative; }
.about-sec-head h2 .u svg { position: absolute; left: 0; right: 0; bottom: -10px; width: 100%; height: 10px; }
.about-sec-head p { color: var(--ink-soft); font-size: 15.5px; margin-top: 14px; }

/* ---- 一天在做什麼（4 格）---- */
.about-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.about-card {
  background: #fff; border: 2px solid var(--ink); padding: 22px 20px 24px; text-align: center;
  box-shadow: 5px 6px 0 rgba(26,26,26,.9); transition: .18s;
}
.about-card:nth-child(1) { --tint: var(--crayon-yellow-soft); }
.about-card:nth-child(2) { --tint: var(--crayon-blue-soft); }
.about-card:nth-child(3) { --tint: var(--crayon-peach-soft); }
.about-card:nth-child(4) { --tint: var(--crayon-green-soft); }
.about-card:nth-child(odd) { transform: rotate(-1.2deg); }
.about-card:nth-child(even) { transform: rotate(1.2deg); }
.about-card:hover { transform: rotate(0) translateY(-4px); box-shadow: 7px 9px 0 rgba(26,26,26,.9); }
.about-card .ill {
  width: 92px; height: 92px; margin: 0 auto 14px; background: var(--tint);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.about-card .ill svg { width: 58px; height: 58px; }
.about-card h3 { font-size: 17px; font-weight: 800; letter-spacing: -.01em; }
.about-card p { font-size: 13.5px; color: var(--ink-soft); margin-top: 7px; line-height: 1.55; }

/* ---- 你會得到什麼 ---- */
.about-perks { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; max-width: 940px; margin: 0 auto; }
.about-perk { text-align: center; padding: 8px; }
.about-perk .pic {
  width: 74px; height: 74px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center;
  background: #fff; border: 2px solid var(--ink); box-shadow: 3px 4px 0 rgba(26,26,26,.85);
}
.about-perk:nth-child(1) .pic { background: var(--crayon-yellow-soft); }
.about-perk:nth-child(2) .pic { background: var(--crayon-peach-soft); }
.about-perk:nth-child(3) .pic { background: var(--crayon-blue-soft); }
.about-perk:nth-child(4) .pic { background: var(--crayon-pink-soft); }
.about-perk:nth-child(5) .pic { background: var(--crayon-green-soft); }
.about-perk .pic svg { width: 42px; height: 42px; }
.about-perk b { display: block; font-size: 14.5px; font-weight: 800; }
.about-perk span { font-size: 12.5px; color: var(--ink-soft); }

/* ---- 破除迷思（3 翻轉卡）---- */
.about-myths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.myth {
  background: #fff; border: 2px solid var(--ink); padding: 24px 22px;
  box-shadow: 5px 6px 0 rgba(26,26,26,.9); position: relative;
}
.myth:nth-child(1) { transform: rotate(-.8deg); }
.myth:nth-child(3) { transform: rotate(.8deg); }
.myth .tag {
  display: inline-block; font-size: 12.5px; font-weight: 700; padding: 4px 12px; margin-bottom: 12px;
  background: var(--crayon-pink-soft); border: 1.5px solid var(--crayon-pink);
  border-radius: 999px; color: #a13a5c;
}
.myth .q { font-size: 17px; font-weight: 800; line-height: 1.4; }
.myth .a { font-size: 14px; color: var(--ink-soft); margin-top: 12px; line-height: 1.66; }
.myth .a b { color: var(--ink); }

/* ---- 怎麼開始（3 步驟）---- */
.about-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; }
.step { background: #fff; padding: 26px 22px; border: 2px dashed var(--line-strong); text-align: center; }
.step .num {
  width: 46px; height: 46px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: #fff; background: var(--ink);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
}
.step:nth-child(1) .num { background: #d9a400; }
.step:nth-child(2) .num { background: #d97a3a; }
.step:nth-child(3) .num { background: #3a89b8; }
.step h3 { font-size: 16.5px; font-weight: 800; }
.step p { font-size: 13.5px; color: var(--ink-soft); margin-top: 8px; line-height: 1.6; }
.step p a { border-bottom: 2px solid var(--crayon-yellow); font-weight: 700; }

/* ---- 學長姐真心話 ---- */
.about-voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.voice {
  background: #fff; border: 2px solid var(--ink); padding: 22px; box-shadow: 5px 6px 0 rgba(26,26,26,.9);
  display: flex; flex-direction: column; gap: 10px;
}
.voice .quote { font-size: 15px; line-height: 1.7; font-weight: 600; }
.voice .quote::before { content: "“"; font-size: 34px; line-height: 0; vertical-align: -12px; color: var(--crayon-peach); margin-right: 2px; }
.voice .who { font-size: 13px; color: var(--ink-soft); font-weight: 700; margin-top: auto; }
.voice .who .stars { color: #e6a700; letter-spacing: 1px; }
/* Dcard 討論分頁（計畫詳情 學長姐怎麼說）*/
.dcard-rev { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 8px; transition: .15s; }
.dcard-rev:hover { border-color: #006aa6; background: #f5fafd; }
.dcard-rev-badge { flex-shrink: 0; font-size: 11.5px; font-weight: 700; color: #fff; background: #006aa6; padding: 3px 9px; border-radius: 999px; }
.dcard-rev-title { flex: 1; font-size: 14px; font-weight: 600; color: var(--ink); }
.dcard-rev-go { flex-shrink: 0; font-size: 12.5px; font-weight: 700; color: #006aa6; }
.dcard-rev-note { font-size: 12px; color: var(--ink-soft); margin-top: 6px; }

/* ---- CTA band ---- */
.about-cta {
  background: var(--ink); color: #fff; text-align: center; padding: 54px 30px;
  border-radius: 255px 20px 225px 20px / 20px 225px 20px 255px; position: relative; overflow: hidden;
}
.about-cta h2 { font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.about-cta p { color: #cfcfcf; margin-top: 12px; font-size: 15.5px; }
.about-cta .about-hero-cta { justify-content: center; margin-top: 26px; }
.about-cta .btn.ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.about-cta .btn.ghost:hover { background: rgba(255,255,255,.12); }
.about-cta .btn.solid { background: var(--crayon-yellow); color: #1a1a1a; border-color: var(--crayon-yellow); }

/* ---- 首頁精華區塊（index 插入）---- */
.home-about { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.home-about-inner { padding: 44px 0; text-align: center; }
.home-about-inner .eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 700; color: #7a5a00;
  background: var(--crayon-yellow-soft); padding: 5px 14px; border: 1.5px solid var(--crayon-yellow);
  border-radius: 999px; margin-bottom: 14px;
}
.home-about-inner h2 { font-size: 26px; font-weight: 800; letter-spacing: -.02em; }
.home-about-inner > p { color: var(--ink-soft); font-size: 15px; margin: 10px auto 26px; max-width: 500px; }
.home-about-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 26px; }
.ha-card { background: #fff; border: 2px solid var(--ink); padding: 20px 18px; text-align: center; box-shadow: 4px 5px 0 rgba(26,26,26,.9); }
.ha-card:nth-child(1) { transform: rotate(-1deg); } .ha-card:nth-child(3) { transform: rotate(1deg); }
.ha-card .pic { width: 66px; height: 66px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.ha-card:nth-child(1) .pic { background: var(--crayon-yellow-soft); }
.ha-card:nth-child(2) .pic { background: var(--crayon-blue-soft); }
.ha-card:nth-child(3) .pic { background: var(--crayon-peach-soft); }
.ha-card .pic svg { width: 40px; height: 40px; }
.ha-card b { display: block; font-size: 15px; font-weight: 800; }
.ha-card p { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }

/* ---- about 響應式 ---- */
@media (max-width: 900px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-hero-art { max-width: 420px; margin: 0 auto; order: -1; }
  .about-cards { grid-template-columns: repeat(2, 1fr); }
  .about-perks { grid-template-columns: repeat(3, 1fr); gap: 20px 12px; }
  .about-myths, .about-steps, .about-voices, .home-about-cards { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .about-hero h1 { font-size: 34px; }
  .about-cards { grid-template-columns: 1fr; }
  .about-perks { grid-template-columns: repeat(2, 1fr); }
  .about-sec-head h2, .home-about-inner h2 { font-size: 24px; }
  .about-cta { padding: 40px 20px; } .about-cta h2 { font-size: 24px; }
}

/* ===== 許願池 2.0 ===== */
.wish-cta { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; }
.wish-cta span { color: var(--ink-soft); font-size: 14.5px; }
.wish-card { display: flex; align-items: stretch; gap: 14px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 18px; margin-bottom: 12px; transition: box-shadow .18s, border-color .18s; }
.wish-card:hover { box-shadow: var(--shadow); }
.wc-main { flex: 1; min-width: 0; }
.wc-brand { font-size: 17px; font-weight: 700; color: var(--ink); }
.wc-reason { font-size: 14px; color: var(--ink-soft); margin-top: 5px; line-height: 1.55; word-break: break-word; }
.wc-by { font-size: 12.5px; color: #9a9a9a; margin-top: 8px; }
.wc-vote { flex: 0 0 auto; align-self: center; display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 58px; padding: 8px 6px; border: 1px solid var(--line-strong); border-radius: 12px; background: #fff;
  cursor: pointer; font-family: inherit; color: var(--ink-soft); transition: .15s; }
.wc-vote:hover { border-color: var(--ink); color: var(--ink); }
.wc-vote.voted { background: var(--ink); border-color: var(--ink); color: #fff; }
.wc-arrow { font-size: 13px; line-height: 1; }
.wc-count { font-size: 16px; font-weight: 700; margin-top: 2px; }
.wc-flash { animation: wcFlash 1.6s ease; }
@keyframes wcFlash { 0%,100% { box-shadow: 0 0 0 0 rgba(26,26,26,0); } 25% { box-shadow: 0 0 0 3px rgba(26,26,26,.18); border-color: var(--ink); } }

/* 檢舉名片文字鈕（低調） */
.report-link { background: none; border: none; cursor: pointer; font-family: inherit; font-size: 13px;
  color: #a0a0a0; padding: 4px 8px; border-radius: 8px; transition: .15s; }
.report-link:hover { color: #d64545; background: #fdf0f0; }

/* 後台：名片 tab 子切換 */
.sub-tabs { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.sub-tab { padding: 6px 14px; border-radius: 999px; border: 1px solid var(--line); background: #fff; cursor: pointer;
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft); font-family: inherit; }
.sub-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.sub-tab .badge { display: inline-block; margin-left: 6px; background: #d64545; color: #fff; font-size: 11px; padding: 1px 7px; border-radius: 999px; }
.mini-del { background: none; border: none; cursor: pointer; font-family: inherit; font-size: 14px; padding: 4px 8px;
  border-radius: 8px; color: var(--ink-soft); transition: .15s; }
.mini-del:hover { color: #d64545; background: #fdf0f0; }
