@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Noto+Sans+TC:wght@400;500;600;700&family=Noto+Serif+TC:wght@400;500;600;700&display=swap');
:root {
  --paper: #f6f4ed;
  --white: #fffef9;
  --ink: #243c34;
  --muted: #656e65;
  --line: #d6d9cd;
  --red: #c44730;
  --lime: #d5dd96;
  --sand: #e9e5d8;
  --serif: 'Noto Serif TC', Georgia, serif;
  --sans: 'DM Sans', 'Noto Sans TC', sans-serif;
  --max: 1240px;
  --page-gutter: 40px;
  --header-height: 96px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.8 var(--sans);
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button:disabled {
  cursor: wait;
  opacity: 0.55;
}
img,
svg {
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(40px, 5.2vw, 76px);
}
h2 {
  font-size: clamp(30px, 3.5vw, 48px);
}
h3 {
  font-size: 21px;
  line-height: 1.5;
}
p + p {
  margin-top: 1em;
}
ul {
  padding-left: 1.2em;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  top: -90px;
  left: 16px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 20px;
}
.skip-link:focus {
  top: 10px;
}
.container {
  width: min(var(--max), calc(100% - var(--page-gutter) * 2));
  margin-inline: auto;
}
.site-header.container {
  width: 100%;
  height: var(--header-height);
  padding-inline: max(var(--page-gutter), calc((100% - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline: max(var(--page-gutter), calc((100% - var(--max)) / 2));
  height: 1px;
  background: var(--line);
  pointer-events: none;
}
.wordmark {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}
.wordmark b {
  font:
    700 30px/1 'DM Sans',
    sans-serif;
  letter-spacing: -1.8px;
}
.wordmark b span {
  color: var(--red);
}
.wordmark small {
  font-size: 11px;
  line-height: 1.5;
  border-left: 1px solid var(--line);
  padding-left: 15px;
  letter-spacing: 1px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
}
.desktop-nav a {
  text-decoration: none;
}
.desktop-nav a:hover {
  color: var(--red);
}
.nav-cta {
  border: 1px solid var(--ink);
  padding: 10px 18px;
  border-radius: 2px;
}
.mobile-nav {
  display: none;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}
.eyebrow:before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
}
.red {
  color: var(--red);
}
.dim {
  color: var(--muted);
}
.kicker {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 15px 24px;
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #36584a;
  transform: translateY(-2px);
}
.button.light {
  background: transparent;
  color: var(--ink);
}
.button.light:hover {
  background: var(--sand);
}
.button.red-button {
  background: var(--red);
  border-color: var(--red);
}
.button.white {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}
.text-link {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.hero {
  padding: 80px 0 72px;
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  align-items: center;
  gap: 65px;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.95;
  color: var(--muted);
}
.hero-copy .under-note {
  font-size: 11px !important;
  margin-top: 22px !important;
  letter-spacing: 0.04em;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e3e8db;
  border-radius: 48% 48% 3px 3px;
  isolation: isolate;
  padding: 40px;
}
.hero-visual:before {
  content: '';
  position: absolute;
  border: 1px solid #adbaa4;
  inset: 25px;
  border-radius: 48% 48% 2px 2px;
  z-index: -1;
}
.issue-label {
  position: absolute;
  left: 24px;
  top: 24px;
  font-size: 10px;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}
.spec-card {
  background: var(--white);
  width: 350px;
  box-shadow: 9px 14px 0 #263c3412;
  transform: rotate(-5deg);
  border: 1px solid #bdc5b5;
  padding: 28px;
}
.spec-top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  font-size: 10px;
  letter-spacing: 0.13em;
}
.spec-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 28px 0 12px;
}
.spec-card p {
  font-size: 12px;
  color: var(--muted);
}
.spec-row {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  font-size: 12px;
}
.spec-row:first-of-type {
  margin-top: 24px;
}
.spec-row i {
  font-style: normal;
  color: var(--red);
  font-size: 10px;
}
.small-stamp {
  background: var(--red);
  color: #fff;
  width: 97px;
  height: 97px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font: 500 12px/1.7 var(--serif);
  position: absolute;
  right: 8px;
  bottom: 30px;
  transform: rotate(10deg);
  box-shadow: 0 0 0 6px var(--paper);
}
.note-slip {
  position: absolute;
  right: -18px;
  top: 70px;
  background: var(--lime);
  padding: 17px 22px;
  font-family: var(--serif);
  font-size: 17px;
  transform: rotate(7deg);
  box-shadow: 0 5px 12px #243c3410;
}
.support-visual {
  overflow: hidden;
  color: #eef2e7;
  background:
    radial-gradient(circle at 78% 18%, #55705f 0 1px, transparent 2px),
    radial-gradient(circle at 20% 72%, #55705f 0 1px, transparent 2px),
    #142a24;
  background-size: 28px 28px, 36px 36px, auto;
  border-radius: 3px 48% 3px 3px;
}
.support-visual:before {
  border-color: #668074;
  border-radius: 2px 48% 2px 2px;
}
.support-visual .issue-label {
  color: #d9e4cf;
}
.support-console {
  width: min(390px, 100%);
  padding: 22px;
  border: 1px solid #96a99c;
  background: #f7f4ea;
  color: var(--ink);
  box-shadow: 12px 15px 0 #081a164f;
  transform: rotate(-1.5deg);
}
.support-console-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.status-dot {
  color: #285d49;
}
.status-dot:before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: #3c8d67;
  box-shadow: 0 0 0 4px #3c8d6720;
}
.support-message {
  max-width: 88%;
  margin-top: 17px;
  padding: 13px 15px;
  border: 1px solid #c8cec1;
  background: #fff;
}
.support-message.customer {
  margin-left: auto;
  background: #e5eadf;
}
.support-message.assistant {
  border-color: #305b4b;
  box-shadow: 4px 4px 0 #305b4b1a;
}
.support-message small {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.09em;
}
.support-message p {
  font-size: 12px;
  line-height: 1.7;
}
.support-message b {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}
.support-reading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0 -4px 4px;
  color: #5f6d65;
  font-size: 9px;
  letter-spacing: 0.04em;
}
.support-reading i {
  width: 35px;
  height: 1px;
  overflow: hidden;
  background: #b9c2b8;
}
.support-reading i:after {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--red);
  animation: support-scan 1.8s ease-in-out infinite;
}
@keyframes support-scan {
  50% {
    transform: translateX(21px);
  }
}
.support-stamp {
  position: absolute;
  right: 8px;
  bottom: 28px;
  width: 103px;
  height: 103px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  text-align: center;
  font: 600 10px/1.6 var(--sans);
  letter-spacing: 0.08em;
  transform: rotate(9deg);
  box-shadow: 0 0 0 6px #142a24;
}
.proof-line {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  gap: 25px;
  align-items: center;
  font-size: 12px;
}
.proof-line > div {
  display: flex;
  align-items: center;
  gap: 16px;
}
.proof-line strong {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
}
.proof-line .label {
  color: var(--muted);
  font-size: 12px;
}
.section {
  padding: 100px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 46px;
}
.section-head p {
  max-width: 380px;
  color: var(--muted);
  font-size: 14px;
}
.section-head .eyebrow {
  color: var(--muted);
  margin-bottom: 20px;
}
.product-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-top: 1px solid var(--line);
  padding: 44px 0;
  gap: 64px;
  align-items: center;
}
.product-row:last-child {
  border-bottom: 1px solid var(--line);
}
.product-art {
  min-height: 330px;
  background: var(--sand);
  padding: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-art.green {
  background: #dfe6d9;
}
.book {
  background: var(--ink);
  color: var(--white);
  width: 220px;
  height: 270px;
  transform: rotate(-8deg);
  padding: 25px 24px;
  position: relative;
  box-shadow: 12px 12px 0 #243c3420;
  border-right: 6px solid #3b5448;
}
.book small {
  font-size: 8px;
  letter-spacing: 0.16em;
}
.book h3 {
  font: 500 31px/1.5 var(--serif);
  margin-top: 40px;
}
.book .book-mark {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.book .number {
  position: absolute;
  right: 12px;
  bottom: 3px;
  font: italic 75px/1 Georgia;
  color: #cbd895;
}
.book.orange {
  background: #b95035;
  border-color: #cf7150;
}
.product-text h3 {
  font: 600 clamp(26px, 2.8vw, 36px) / 1.5 var(--serif);
  margin: 10px 0 20px;
}
.product-text > p {
  font-size: 14px;
  color: var(--muted);
  max-width: 470px;
}
.product-text .price {
  font-family: 'DM Sans';
  font-size: 24px;
  color: var(--ink);
  margin-top: 24px;
}
.price small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 10px;
}
.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 23px;
}
.benefits span {
  font-size: 11px;
  padding: 4px 10px;
  background: #e8eadf;
  border-radius: 2px;
}
.editorial {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0;
}
.editorial .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.editorial p {
  color: #c3cec0;
  font-size: 14px;
}
.editorial h2 {
  margin-bottom: 25px;
}
.steps-list {
  border-top: 1px solid #ffffff30;
}
.steps-list > div {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 20px;
  border-bottom: 1px solid #ffffff30;
  padding: 24px 0;
}
.steps-list .num {
  font: italic 20px Georgia;
  color: var(--lime);
}
.steps-list h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 6px;
}
.steps-list p {
  font-size: 12px;
}
.cta-band {
  border: 1px solid var(--line);
  padding: 52px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 80px;
  background: var(--sand);
}
.cta-band h2 {
  font-size: 32px;
}
.cta-band p {
  font-size: 13px;
  margin-top: 13px;
  color: var(--muted);
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 46px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 45px;
}
.footer-top p {
  font-size: 12px;
  max-width: 260px;
  color: var(--muted);
  margin-top: 15px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  font-size: 12px;
}
.footer-links strong {
  font-size: 11px;
  margin-bottom: 10px;
  letter-spacing: 0.12em;
}
.footer-links a {
  text-decoration: none;
  color: var(--muted);
}
.footer-links a:hover {
  color: var(--red);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  margin-top: 38px;
  padding-top: 19px;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.page-intro {
  padding: 70px 0 60px;
  max-width: 900px;
}
.page-intro p:not(.eyebrow) {
  margin-top: 25px;
  max-width: 620px;
  color: var(--muted);
}
.page-intro h1 {
  font-size: clamp(36px, 4.5vw, 62px);
}
.feature-strip {
  background: var(--sand);
  padding: 20px 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  font-size: 12px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 42px;
}
.detail-block {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.detail-block .num {
  font: italic 34px Georgia;
  color: var(--red);
  margin-bottom: 22px;
  display: block;
}
.detail-block p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 15px;
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.split-section h2 {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}
.plain-list {
  margin: 0;
  list-style: none;
  padding: 0;
}
.plain-list li {
  border-bottom: 1px solid var(--line);
  padding: 23px 0;
}
.plain-list li:first-child {
  padding-top: 0;
}
.plain-list b {
  font-size: 17px;
  font-weight: 500;
}
.plain-list p {
  font-size: 13px;
  margin-top: 7px;
  color: var(--muted);
}
.faq {
  max-width: 840px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 23px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  padding-right: 35px;
  position: relative;
}
.faq summary:after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 24px;
  font-weight: 400;
  top: -7px;
}
.faq details[open] summary:after {
  content: '−';
}
.faq details p {
  padding: 17px 36px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.preview-board {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px;
  margin-top: 30px;
  box-shadow: 8px 8px 0 var(--sand);
}
.board-head {
  font-size: 10px;
  letter-spacing: 0.13em;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.board-title {
  font: 500 25px var(--serif);
  margin: 25px 0 15px;
}
.board-answer {
  border-left: 2px solid var(--red);
  padding: 15px 20px;
  background: var(--paper);
  font-size: 13px;
}
.board-tabs {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 23px;
}
.board-tabs button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  padding: 5px 11px;
}
.board-tabs button[aria-pressed='true'] {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.workflow {
  display: flex;
  gap: 0;
  margin-top: 35px;
}
.workflow > div {
  flex: 1;
  border-top: 2px solid var(--ink);
  padding: 20px 20px 0 0;
}
.workflow b {
  font-size: 14px;
}
.workflow p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
.skill-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}
.skill-entry {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
}
.skill-entry > span {
  font: italic 28px Georgia;
  color: var(--red);
}
.skill-entry p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}
.skill-entry h3 {
  font-size: 19px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 75px;
  padding-bottom: 90px;
}
.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.legal-nav a {
  text-decoration: none;
  color: var(--muted);
}
.legal-content {
  font-size: 14px;
  max-width: 790px;
}
.legal-content h2 {
  font: 600 23px var(--serif);
  margin: 42px 0 20px;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content h3 {
  font-size: 17px;
  margin: 23px 0 12px;
}
.legal-content p,
.legal-content li {
  color: var(--muted);
}
.notice {
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  background: var(--white);
  font-size: 13px;
  margin: 24px 0;
}
.checkout-head {
  padding: 44px 0 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.checkout-head h1 {
  font-size: 37px;
}
.checkout-head p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}
.checkout-steps {
  font-size: 11px;
  display: flex;
  gap: 19px;
  align-items: center;
  color: var(--muted);
}
.checkout-steps b {
  color: var(--ink);
  font-weight: 500;
}
.checkout-steps span + span:before {
  content: '—';
  margin-right: 19px;
  color: #acb5a8;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 80px;
}
.checkout-main .panel {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.panel-title {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin-bottom: 18px;
}
.panel-title > span {
  font: italic 20px Georgia;
  color: var(--red);
}
.panel-title h2 {
  font: 600 20px var(--sans);
  letter-spacing: 0;
}
.panel-title small {
  font-size: 11px;
  color: var(--muted);
  margin-left: auto;
}
.product-selected {
  display: flex;
  gap: 23px;
  align-items: center;
}
.mini-cover {
  min-width: 78px;
  width: 78px;
  height: 104px;
  background: var(--ink);
  color: var(--white);
  font: 500 12px/1.7 var(--serif);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 4px solid #527160;
}
.mini-cover.social {
  background: #b95035;
  border-color: #d98465;
}
.mini-cover.support {
  background: #17352d;
  border-color: #91a77e;
}
.mini-cover small {
  font: 8px var(--sans);
  letter-spacing: 0.07em;
}
.selected-detail h3 {
  font-size: 18px;
}
.selected-detail p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 7px;
}
.selected-detail .benefits {
  margin-top: 12px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: 12px;
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 13px;
  min-height: 48px;
  border: 1px solid #b5bfb1;
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  outline-offset: 3px;
  font-size: 14px;
}
.field input::placeholder {
  color: #81887f;
}
.field input[aria-invalid='true'] {
  border-color: var(--red);
}
.field small {
  font-size: 11px;
  color: var(--muted);
}
.field-help {
  font-size: 11px;
  color: var(--muted);
  margin-top: 13px;
}
.checkout-addons {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.addon-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 20px;
  border: 1px solid #cbd1c2;
  background: var(--white);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.addon-card.is-selected {
  border-color: var(--ink);
  background: #e8eddd;
}
.addon-card h3 {
  font-size: 15px;
}
.addon-card p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 7px;
}
.addon-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 11px;
}
.addon-price del {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
}
.addon-toggle {
  align-self: center;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 9px 14px;
  min-width: 78px;
  font-size: 12px;
  border-radius: 2px;
}
.addon-toggle[aria-pressed='true'] {
  background: var(--ink);
  color: #fff;
}
.receipt {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 5px 6px 0 #e9eadf;
}
.receipt-head {
  padding: 25px 28px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.receipt-head h2 {
  font: 600 20px var(--serif);
}
.receipt-head span {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.receipt-body {
  padding: 24px 28px;
}
.receipt-lines {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.receipt-line {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}
.receipt-line > span:last-child {
  white-space: nowrap;
}
.receipt-line small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}
.receipt-total {
  border-top: 1px dashed var(--line);
  padding-top: 23px;
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.receipt-total strong {
  font: 500 31px 'DM Sans';
}
.receipt-total strong small {
  font-size: 11px;
  margin-right: 7px;
}
.receipt-tax {
  font-size: 10px;
  color: var(--muted);
  text-align: right;
  margin-top: 5px;
}
.consent {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.9;
  margin: 24px 0 20px;
}
.consent input {
  width: 16px;
  height: 16px;
  min-width: 16px;
  accent-color: var(--ink);
  margin-top: 4px;
}
.checkout-submit {
  width: 100%;
  padding: 17px 20px;
}
.secure-note {
  text-align: center;
  font-size: 10px;
  color: var(--muted);
  margin-top: 14px;
}
.receipt-footer {
  background: #eff0e6;
  border-top: 1px solid var(--line);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
  font-size: 11px;
}
.receipt-footer strong {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
}
.receipt-footer span {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.8;
  display: block;
}
.checkout-support {
  font-size: 12px;
  text-align: center;
  margin-top: 22px;
  color: var(--muted);
}
.delivery-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.delivery-steps > div {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 12px;
  font-size: 12px;
}
.delivery-steps span {
  color: var(--red);
  font-size: 10px;
}
.delivery-steps p {
  color: var(--muted);
  font-size: 11px;
  margin-top: 4px;
}
.form-error {
  color: #a53623;
  background: #fff0e8;
  padding: 12px 15px;
  border-left: 2px solid var(--red);
  font-size: 12px;
  margin: 16px 0;
}
.form-error:empty {
  display: none;
}
.loading-card {
  padding: 45px 24px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  background: var(--white);
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.result-layout {
  max-width: 950px;
  margin: 70px auto 95px;
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 50px;
}
.result-symbol {
  font: italic 120px Georgia;
  color: var(--red);
  line-height: 1;
}
.result-layout h1 {
  font-size: 42px;
}
.result-layout p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}
.result-layout .result-badge {
  display: inline-block;
  font-size: 11px;
  padding: 4px 12px;
  background: #e4e9d9;
  margin-bottom: 24px;
}
.result-help {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 34px;
}
.result-help > div {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.result-help h3 {
  font-size: 15px;
}
.result-help p {
  font-size: 12px;
  margin-top: 10px;
}
.member-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  padding: 85px 0 100px;
}
.member-story h1 {
  font-size: 47px;
}
.member-story > p {
  margin-top: 22px;
  font-size: 14px;
  color: var(--muted);
}
.member-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 38px;
  box-shadow: 6px 6px 0 var(--sand);
}
.member-card h2 {
  font-size: 25px;
  margin-bottom: 8px;
}
.member-card > p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
}
.member-card .field + .field {
  margin-top: 18px;
}
.member-card .button {
  margin-top: 24px;
  width: 100%;
}
.member-card .gate-foot {
  margin: 20px 0 0;
  font-size: 11px;
}
.member-features {
  border-top: 1px solid var(--line);
  margin-top: 38px;
  padding-top: 24px;
  display: flex;
  gap: 30px;
  font-size: 12px;
}
.member-features b {
  display: block;
  font: 500 24px Georgia;
  margin-bottom: 6px;
}
.member-loaded {
  padding-top: 35px;
}
.empty-page {
  padding: 95px 0 115px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 65px;
  align-items: center;
}
.big-404 {
  font: italic 180px/0.8 Georgia;
  color: var(--red);
  letter-spacing: -0.08em;
}
.empty-page h1 {
  font-size: 44px;
}
.empty-page p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 24px;
}
.admin-shell {
  padding: 45px 0 70px;
}
.admin-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 35px;
}
.admin-heading h1 {
  font-size: 36px;
}
.admin-heading p {
  font-size: 12px;
  color: var(--muted);
}
.admin-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 30px;
}
.admin-tabs button {
  border: 1px solid var(--line);
  background: transparent;
  padding: 9px 18px;
  color: var(--ink);
  font-size: 12px;
}
.admin-tabs button[aria-selected='true'] {
  background: var(--ink);
  color: #fff;
}
.admin-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.admin-metrics > div {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 20px 25px;
  font-size: 11px;
  color: var(--muted);
}
.admin-metrics strong {
  display: block;
  font: 500 31px 'DM Sans';
  color: var(--ink);
}
.admin-order-filters {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}
.admin-order-filters .field {
  min-width: 0;
  margin-bottom: 0;
}
.admin-order-filters select {
  width: 100%;
  min-width: 0;
}
.admin-table {
  overflow-x: auto;
  border: 1px solid var(--line);
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
  background: var(--white);
}
th,
td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th {
  background: #ecefe3;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
}
td small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}
.table-action {
  font-size: 11px;
  padding: 5px 10px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.admin-edit {
  margin: 28px 0;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px;
}
.admin-edit h2 {
  font-size: 24px;
  margin-bottom: 24px;
}
.admin-edit .field-grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.admin-edit .wide {
  grid-column: 1/-1;
}
.admin-empty {
  padding: 40px;
  text-align: center;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.status-pill {
  font-size: 10px;
  padding: 3px 9px;
  background: #e7ecdc;
  display: inline-block;
}
.status-pill.pending {
  background: #f6e6cf;
}
.admin-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
.admin-toolbar input {
  border: 1px solid var(--line);
  padding: 9px 14px;
  font-size: 12px;
  background: var(--white);
  width: 280px;
  max-width: 100%;
}
.reveal {
  animation: arrive 0.65s both;
}
@keyframes arrive {
  from {
    opacity: 0.3;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1500px) {
  .hero {
    padding-top: 95px;
    padding-bottom: 90px;
  }
  .hero-visual {
    min-height: 510px;
  }
}
@media (max-width: 1000px) {
  :root {
    --page-gutter: 24px;
  }
  .desktop-nav {
    gap: 18px;
  }
  .hero {
    gap: 35px;
  }
  .hero-visual {
    min-height: 410px;
    padding: 25px;
  }
  .spec-card {
    width: 100%;
    padding: 23px;
  }
  .note-slip {
    right: -5px;
    top: 35px;
  }
  .hero h1 {
    font-size: 49px;
  }
  .wordmark small {
    display: none;
  }
  .checkout-layout {
    gap: 30px;
    grid-template-columns: 1.15fr 1fr;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .member-layout {
    gap: 45px;
  }
  .legal-layout {
    gap: 40px;
    grid-template-columns: 180px 1fr;
  }
  .product-row {
    gap: 35px;
  }
  .product-art {
    padding: 35px;
  }
  .editorial .container {
    gap: 45px;
  }
  .receipt-body,
  .receipt-head,
  .receipt-footer {
    padding-left: 22px;
    padding-right: 22px;
  }
}
@media (max-width: 740px) {
  :root {
    --page-gutter: 20px;
    --header-height: 78px;
  }
  .wordmark b {
    font-size: 27px;
  }
  .wordmark small {
    display: block;
    font-size: 9px;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .mobile-nav summary {
    font-size: 12px;
    cursor: pointer;
    list-style: none;
    padding: 8px;
    border-bottom: 1px solid var(--ink);
  }
  .mobile-nav nav {
    position: absolute;
    right: var(--page-gutter);
    top: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 22px;
    width: 230px;
    max-height: calc(100dvh - var(--header-height) - 16px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 10px 20px #243c3410;
  }
  .mobile-nav a {
    font-size: 14px;
    text-decoration: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 0 45px;
    gap: 42px;
  }
  .hero h1 {
    font-size: clamp(39px, 9.5vw, 63px);
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 14px;
    margin-top: 22px;
    max-width: 95%;
  }
  .hero-copy .under-note {
    font-size: 10px !important;
  }
  .hero .eyebrow {
    margin-bottom: 22px;
  }
  .hero-visual {
    min-height: 400px;
    width: min(440px, 96%);
    margin: auto;
    padding: 35px;
  }
  .spec-card {
    width: 300px;
  }
  .support-console {
    width: min(320px, 100%);
    padding: 18px;
  }
  .support-stamp {
    width: 82px;
    height: 82px;
    right: -2px;
    bottom: 20px;
    font-size: 8px;
  }
  .note-slip {
    right: 0;
    top: 40px;
    font-size: 15px;
  }
  .small-stamp {
    right: -5px;
    bottom: 25px;
    width: 78px;
    height: 78px;
    font-size: 10px;
  }
  .proof-line {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 23px 0;
  }
  .proof-line > div:first-child {
    grid-column: 1/-1;
    padding-bottom: 5px;
  }
  .proof-line > div {
    gap: 10px;
  }
  .proof-line strong {
    font-size: 25px;
  }
  .proof-line .label {
    font-size: 10px;
  }
  .section {
    padding: 65px 0;
  }
  .section-head {
    display: block;
    margin-bottom: 30px;
  }
  .section-head p {
    margin-top: 20px;
    max-width: 95%;
    font-size: 13px;
  }
  .product-row {
    grid-template-columns: 1fr;
    padding: 30px 0;
    gap: 28px;
  }
  .product-art {
    min-height: 300px;
  }
  .product-text .actions {
    gap: 22px;
  }
  .product-text > p {
    font-size: 13px;
  }
  .editorial {
    padding: 60px 0;
  }
  .editorial .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cta-band {
    padding: 32px 26px;
    display: block;
    margin-bottom: 60px;
  }
  .cta-band h2 {
    font-size: 28px;
  }
  .cta-band .button {
    margin-top: 24px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
    line-height: 2;
  }
  .footer-bottom span {
    display: block;
  }
  .page-intro {
    padding: 45px 0 38px;
  }
  .page-intro h1 {
    font-size: 37px;
  }
  .page-intro p:not(.eyebrow) {
    font-size: 14px;
  }
  .feature-strip {
    font-size: 10px;
    padding: 17px 20px;
    justify-content: start;
    gap: 10px 24px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
    gap: 27px;
  }
  .detail-block .num {
    margin-bottom: 12px;
    font-size: 28px;
  }
  .detail-block p {
    font-size: 13px;
    margin-top: 10px;
  }
  .split-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split-section h2 {
    position: static;
  }
  .skill-list {
    grid-template-columns: 1fr;
  }
  .skill-entry {
    gap: 12px;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 20px;
    border: 0;
    padding: 0;
  }
  .legal-content {
    font-size: 13px;
  }
  .legal-content h2 {
    font-size: 21px;
  }
  .checkout-head {
    display: block;
    padding: 32px 0 24px;
  }
  .checkout-head h1 {
    font-size: 31px;
  }
  .checkout-steps {
    margin-top: 20px;
    font-size: 10px;
    gap: 12px;
  }
  .checkout-steps span + span:before {
    margin-right: 12px;
  }
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 50px;
  }
  .checkout-main .panel {
    padding: 24px 0;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .receipt {
    position: static;
    margin-top: 5px;
  }
  .receipt-head,
  .receipt-body,
  .receipt-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .panel-title h2 {
    font-size: 18px;
  }
  .addon-card {
    padding: 17px;
    gap: 10px;
  }
  .addon-card h3 {
    font-size: 14px;
  }
  .addon-card p {
    font-size: 11px;
  }
  .addon-price {
    font-size: 15px;
  }
  .addon-toggle {
    min-width: 69px;
    padding: 9px 10px;
    font-size: 11px;
  }
  .selected-detail h3 {
    font-size: 16px;
  }
  .selected-detail .benefits span {
    font-size: 10px;
  }
  .product-selected {
    gap: 17px;
  }
  .panel-title small {
    font-size: 10px;
  }
  .consent {
    font-size: 12px;
  }
  .secure-note {
    font-size: 11px;
  }
  .result-layout {
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 45px auto 60px;
  }
  .result-symbol {
    font-size: 70px;
  }
  .result-layout h1 {
    font-size: 34px;
  }
  .result-help {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .member-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 42px 0 65px;
  }
  .member-story h1 {
    font-size: 37px;
  }
  .member-features {
    margin-top: 24px;
    padding-top: 18px;
  }
  .member-card {
    padding: 28px 23px;
  }
  .empty-page {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 60px 0 75px;
  }
  .big-404 {
    font-size: 125px;
  }
  .empty-page h1 {
    font-size: 35px;
  }
  .admin-shell {
    padding-top: 30px;
  }
  .admin-heading h1 {
    font-size: 29px;
  }
  .admin-metrics {
    gap: 10px;
  }
  .admin-metrics > div {
    padding: 15px 12px;
    font-size: 10px;
  }
  .admin-metrics strong {
    font-size: 24px;
  }
  .admin-edit {
    padding: 24px 18px;
  }
  .admin-edit .field-grid {
    grid-template-columns: 1fr;
  }
  .admin-tabs {
    gap: 6px;
  }
  .admin-tabs button {
    font-size: 11px;
    padding: 8px 11px;
  }
  .admin-toolbar {
    flex-wrap: wrap;
  }
  .workflow {
    flex-direction: column;
    gap: 22px;
  }
  .board-answer {
    font-size: 12px;
  }
  .preview-board {
    padding: 22px;
  }
  .board-tabs {
    gap: 5px;
  }
}
@media (max-width: 380px) {
  .site-header .wordmark small {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
.hero > * {
  min-width: 0;
}
.spec-card {
  max-width: 100%;
  min-width: 0;
}

.admin-message:not(:empty) { padding: 16px 20px; background: #e4ebe0; color: #203b30; border-left: 3px solid #203b30; margin: 18px 0; }
.order-actions { display: flex; flex-wrap: wrap; gap: 8px; min-width: 156px; }
.order-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.order-filters [aria-pressed='true'] { background: #203b30; color: #fff; }
.table-action.danger { color: #a53425; border-color: #c9998e; }
.button.danger { background: #a53425; }
.order-confirm { margin: 0 0 24px; border: 1px solid #8b998b; }
.order-confirm h2 { font-size: 24px; }
.order-confirm p { overflow-wrap: anywhere; }
.auto-flow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.keep-together { white-space: nowrap; }
@media (max-width: 900px) { .auto-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .auto-flow { grid-template-columns: 1fr; } }
@media (max-width: 700px) {
  .admin-order-filters { grid-template-columns: 1fr; gap: 12px; }
  #order-results .admin-table { border: 0; overflow: visible; }
  #order-results table, #order-results tbody { display: block; width: 100%; min-width: 0; }
  #order-results thead { display: none; }
  #order-results tr { display: block; margin-bottom: 16px; padding: 12px 0; border: 1px solid var(--line); background: var(--white); }
  #order-results td { display: block; width: auto; max-width: none; border: 0; padding: 7px 16px; overflow-wrap: anywhere; }
  #order-results td:first-child { font-weight: 600; }
  #order-results td:nth-child(3)::before { content: '訂單金額　'; color: var(--muted); }
  #order-results td:nth-child(5)::before { content: '建立時間　'; color: var(--muted); }
  #order-results .order-actions { padding-top: 10px; border-top: 1px solid var(--line); }
  #order-results .order-actions button { min-height: 44px; padding: 10px 14px; }
}
