*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --cream: #F5F0E8; --warm-white: #FDFAF4; --ink: #1E1A14; --ink-soft: #4A4237;
    --accent: #C84B31; --accent-dk: #A83825; --accent-bg: #FBE9E4;
    --border: rgba(30,26,20,0.12); --text-soft: #6B5F50; --green-bg: #E8F5EF; --gold-bg: #FDF3DC;
    --shadow-sm: 0 1px 3px rgba(30,26,20,0.06); --shadow-md: 0 10px 34px rgba(30,26,20,0.08);
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Noto Sans TC', sans-serif; background: var(--warm-white); color: var(--ink); line-height: 1.85; -webkit-font-smoothing: antialiased; }
  a { color: var(--accent); }
  ::selection { background: var(--accent-bg); }

  nav { position: sticky; top: 0; z-index: 100; background: rgba(253,250,244,0.82); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--border); padding: 0.7rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
  .nav-logo { display: flex; align-items: center; gap: 0.5rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--ink); text-decoration: none; }
  .nav-logo img { width: 28px; height: 28px; border-radius: 7px; }
  .nav-logo .tld { color: var(--accent); }
  .nav-cta { background: var(--accent); color: #fff !important; border: none; padding: 0.5rem 1.2rem; border-radius: 999px; font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: transform 0.12s, box-shadow 0.15s; }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(200,75,49,0.3); }

  .crumb { max-width: 960px; margin: 0 auto; padding: 1.5rem 1.5rem 0; font-size: 0.84rem; color: var(--text-soft); }
  .crumb a { color: var(--text-soft); text-decoration: none; }
  .crumb a:hover { color: var(--accent); }

  .article { max-width: 960px; margin: 0 auto; padding: 1.5rem 1.5rem 4rem; }
  .ghero { text-align: center; padding: 1.5rem 0 2.5rem; }
  .ghero img { width: 84px; height: 84px; margin-bottom: 1rem; }
  .ghero .kick { font-family: 'Space Grotesk', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem; }
  .ghero h1 { font-size: clamp(1.9rem, 5vw, 2.8rem); font-weight: 900; line-height: 1.3; letter-spacing: -0.01em; max-width: 720px; margin: 0 auto; }
  .ghero .sub { font-size: 1.05rem; color: var(--text-soft); margin-top: 1rem; max-width: 640px; margin-left: auto; margin-right: auto; }

  .prose { max-width: 760px; margin: 0 auto; }
  .prose h2 { font-size: 1.5rem; font-weight: 900; margin: 2.5rem 0 0.6rem; letter-spacing: -0.01em; }
  .prose p { margin-bottom: 1rem; color: var(--ink-soft); }
  .prose strong { color: var(--ink); }
  .callout { background: var(--gold-bg); border: 1px solid rgba(199,139,46,0.3); border-radius: 14px; padding: 1.1rem 1.4rem; margin: 1.5rem 0; font-size: 0.92rem; color: #7A5C1A; }

  /* table */
  .table-wrap { overflow-x: auto; margin: 1.5rem 0 0.6rem; border: 1px solid var(--border); border-radius: 16px; }
  table.cmp { width: 100%; border-collapse: collapse; min-width: 680px; font-size: 0.92rem; background: var(--warm-white); }
  table.cmp th, table.cmp td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
  table.cmp thead th { font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; background: var(--cream); position: sticky; top: 0; }
  table.cmp thead th.mast { color: var(--accent); }
  table.cmp td:first-child, table.cmp th:first-child { font-weight: 700; color: var(--ink); background: var(--cream); white-space: nowrap; }
  table.cmp .col-mast { background: var(--accent-bg); }
  table.cmp tr:last-child td { border-bottom: none; }
  .yes { color: #2A7D4F; font-weight: 700; } .no { color: #B23B2E; font-weight: 700; } .mid { color: #7A5C1A; font-weight: 700; }
  .cap { font-size: 0.8rem; color: var(--text-soft); text-align: center; margin-bottom: 1.5rem; }

  .verdict { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
  @media (max-width: 700px) { .verdict { grid-template-columns: 1fr; } }
  .vc { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 1.4rem; }
  .vc.pick { background: var(--accent-bg); border-color: var(--accent); }
  .vc h3 { font-size: 1.1rem; font-weight: 900; margin-bottom: 0.3rem; }
  .vc .who { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin-bottom: 0.5rem; }
  .vc p { font-size: 0.9rem; color: var(--ink-soft); }

  .cta { background: var(--ink); color: var(--cream); text-align: center; padding: 4rem 1.5rem; border-radius: 20px; margin-top: 2.5rem; }
  .cta h2 { color: var(--cream); font-size: 1.6rem; font-weight: 900; margin-bottom: 0.6rem; }
  .cta p { color: rgba(245,240,232,0.7); margin-bottom: 1.5rem; }
  .btn-light { background: var(--cream); color: var(--ink); border: none; padding: 0.8rem 2rem; border-radius: 999px; font-size: 1rem; font-weight: 700; text-decoration: none; display: inline-block; transition: transform 0.12s; }
  .btn-light:hover { transform: translateY(-2px); background: #fff; }
  .xlinks { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.75rem 0 0; max-width: 760px; }
  @media (max-width: 560px) { .xlinks { grid-template-columns: 1fr; } }
  .xcard { display: block; text-decoration: none; color: inherit; background: var(--cream); border: 1px solid var(--border); border-radius: 14px; padding: 1.2rem 1.4rem; transition: transform 0.15s, box-shadow 0.15s; }
  .xcard:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .xcard h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
  .xcard p { font-size: 0.86rem; color: var(--text-soft); }

  footer { background: #141210; color: rgba(245,240,232,0.5); padding: 3rem 1.5rem 2rem; margin-top: 3rem; }
  .foot-inner { max-width: 1200px; margin: 0 auto; }
  .foot-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
  @media (max-width: 760px) { .foot-cols { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
  @media (max-width: 440px) { .foot-cols { grid-template-columns: 1fr; } }
  .foot-brand img { width: 36px; height: 36px; border-radius: 9px; margin-bottom: 0.7rem; }
  .foot-brand p { font-size: 0.84rem; line-height: 1.7; }
  .foot-col h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,232,0.4); margin-bottom: 0.8rem; }
  .foot-col a { display: block; color: rgba(245,240,232,0.72); text-decoration: none; font-size: 0.88rem; padding: 0.22rem 0; }
  .foot-col a:hover { color: var(--cream); }
  .foot-bottom { border-top: 1px solid rgba(245,240,232,0.12); padding-top: 1.25rem; font-size: 0.8rem; color: rgba(245,240,232,0.4); text-align: center; }