/* Pinky 公開頁（SEO/GEO）共用樣式：memo2 §10 設計語言，純靜態、無 JS */
:root {
  --void: #06060d;
  --ink: #0b0912;
  --land: #1b1538;
  --panel: #191527;
  --line: #302843;
  --paper: #f3eef9;
  --haze: #9a91b4;
  --pinky: #ff4f9a;
  --fire: #ff9a3c;
  --zk: #5fe0ce;
  --lilac: #c9bef0;
  --amber: #ffc54d;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { background: var(--ink); }
body {
  margin: 0;
  font-family: 'Noto Sans TC', system-ui, -apple-system, 'Microsoft JhengHei', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--paper);
  background: var(--ink);
}
a { color: var(--lilac); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--paper); }
h1, h2, h3 {
  font-family: 'Bricolage Grotesque', 'Noto Sans TC', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin: 0;
}
h1 { font-size: clamp(28px, 5vw, 40px); }
h2 { font-size: clamp(20px, 3vw, 26px); margin-top: 48px; padding-top: 12px; border-top: 1px solid var(--line); }
h3 { font-size: 17px; margin-top: 28px; color: var(--lilac); }
p { margin: 12px 0; }
code, .mono { font-family: 'DM Mono', ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.92em; }
code { background: var(--panel); border: 1px solid var(--line); border-radius: 5px; padding: 1px 6px; }
pre { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; overflow-x: auto; font-size: 14px; }
pre code { background: none; border: 0; padding: 0; }
.wrap { max-width: 760px; margin: 0 auto; padding: 24px 20px 64px; }
header.top {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 14px 0 22px; border-bottom: 1px solid var(--line); margin-bottom: 36px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--paper); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 20px; }
.brand .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--pinky); box-shadow: 0 0 12px var(--pinky); }
nav.site a { color: var(--haze); text-decoration: none; margin-left: 16px; font-size: 14px; }
nav.site a[aria-current] { color: var(--paper); }
nav.site a:hover { color: var(--paper); }
.lede { font-size: 19px; color: var(--paper); margin: 14px 0 6px; }
.meta { color: var(--haze); font-size: 13px; }
.kicker { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--haze); margin-bottom: 8px; }
.fire { color: var(--fire); } .zk { color: var(--zk); } .lilac { color: var(--lilac); } .pinky { color: var(--pinky); } .amber { color: var(--amber); }
table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 15px; }
th, td { text-align: left; vertical-align: top; padding: 9px 10px; border-bottom: 1px solid var(--line); }
th { color: var(--haze); font-weight: 500; font-size: 13px; }
.table-wrap { overflow-x: auto; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; margin: 16px 0; }
.card.promise { border-left: 3px solid var(--lilac); }
.card.cost { border-left: 3px solid var(--fire); }
ul, ol { padding-left: 22px; }
li { margin: 6px 0; }
dl.faq dt { font-weight: 600; margin-top: 26px; font-size: 17px; }
dl.faq dd { margin: 8px 0 0; color: #ddd6ea; }
.cta { display: inline-block; margin-top: 8px; padding: 10px 18px; border-radius: 999px; background: var(--pinky); color: #fff; text-decoration: none; font-weight: 600; }
.cta:hover { color: #fff; filter: brightness(1.08); }
.cta.ghost { background: transparent; border: 1px solid var(--line); color: var(--paper); margin-left: 8px; }
footer.site { margin-top: 64px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--haze); font-size: 13px; }
footer.site a { color: var(--haze); }
footer.site p { margin: 6px 0; }
.legend { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 14px; margin: 10px 0; }
.legend span::before { content: '●'; margin-right: 6px; }
.legend .fire::before { color: var(--fire); } .legend .lilac::before { color: var(--lilac); } .legend .pinky::before { color: var(--pinky); } .legend .zk::before { color: var(--zk); }
