:root {
  --page: #fff5f8;
  --ink: #2d3748;
  --rose: #d97793;
  --muted: #718096;
  --soft: #a0aec0;
  --line: #fce7f0;
  --pink: #e89eb3;
  --pink-2: #f8d7e3;
  --pink-3: #fdf2f6;
  --white: #ffffff;
  --shadow: 0 12px 32px rgba(217, 119, 147, 0.08);
  --radius: 16px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, #fdf2f6 0, transparent 35%),
    var(--page);
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", sans-serif;
  line-height: 1.75;
}
a { color: var(--rose); }
img { max-width: 100%; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: #fff; padding: 8px 12px; z-index: 80; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: .04em;
}
.nav-links { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.nav-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  font-size: .92rem;
  transition: all .2s ease-in-out;
}
.nav-links a:hover,
.nav-links a.is-active {
  background: var(--pink-3);
  color: var(--rose);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-toggle {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .92rem;
  transition: all .2s ease-in-out;
  gap: 6px;
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.is-active .nav-dropdown-toggle,
.nav-dropdown-toggle:hover {
  background: var(--pink-3);
  color: var(--rose);
}
.nav-dropdown.is-current .nav-dropdown-toggle {
  background: var(--pink-3);
  color: var(--rose);
  font-weight: 700;
}
.nav-arrow {
  width: 10px;
  height: 6px;
  display: inline-block;
  transition: transform 0.25s ease;
  vertical-align: middle;
  flex-shrink: 0;
}
.nav-dropdown:hover .nav-arrow,
.nav-dropdown.is-active .nav-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(217, 119, 147, 0.16);
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 100;
  margin-top: 6px;
}
/* Invisible hover bridge to prevent losing hover when moving mouse from toggle to menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-active .nav-dropdown-menu {
  display: flex;
}
.nav-dropdown-item:hover,
.nav-dropdown-item.is-active {
  background: var(--pink-3) !important;
}
.nav-dropdown-item:hover .nav-item-title,
.nav-dropdown-item.is-active .nav-item-title {
  color: var(--rose) !important;
}
.nav-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
}
.nav-item-badge {
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--pink-2);
  color: var(--rose);
  font-weight: 700;
}
.nav-item-badge.hot {
  background: var(--rose);
  color: #ffffff;
}
.nav-item-desc {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.4;
}

.nav-cta {
  background: var(--rose) !important;
  color: #fff !important;
  font-weight: 700;
}
.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--rose);
  font-weight: 700;
}

.hero {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--page) 100%);
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px 56px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--pink-3);
  color: var(--rose);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.hero h1 {
  margin: 14px 0 16px;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.16;
  color: var(--ink);
  letter-spacing: -.03em;
}
.hero-lead {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 36rem;
}
.hero-actions, .cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  transition: all .2s ease-in-out;
}
.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 8px 20px rgba(217, 119, 147, 0.25);
}
.btn-ghost {
  background: #fff;
  color: var(--muted);
  border-color: var(--line);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary:hover { background: var(--pink); }
.btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.price-chip { margin-top: 18px; color: var(--soft); font-size: .95rem; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px 88px; }
.section { padding-top: 72px; scroll-margin-top: 80px; }
[id] { scroll-margin-top: 80px; }
.section-label {
  margin: 0 0 8px;
  color: var(--rose);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  color: var(--ink);
  letter-spacing: -.02em;
}
.lead { width: 100%; color: var(--muted); margin: 0 0 28px; }

.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px; }
.trust div { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px; min-height: 72px; }
.trust b { display: block; color: var(--ink); }
.trust span { color: var(--soft); font-size: .88rem; }

.grid-3, .grid-2 { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: all .2s ease-in-out;
  min-height: 180px;
}
.card:hover, .plan:hover { transform: translateY(-3px); border-color: var(--pink-2); box-shadow: 0 12px 36px rgba(217, 119, 147, 0.12); }
.card strong, .plan h3 { color: var(--ink); font-size: 1.18rem; margin: 0; }
.card span, .plan p { color: var(--muted); margin: 0; }
.plan { min-height: 420px; }
.plan.featured {
  border-color: var(--pink-2);
  background: linear-gradient(180deg, #fff 0%, var(--pink-3) 100%);
}
.badge {
  align-self: flex-start;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--pink-3);
  color: var(--rose);
  font-size: .78rem;
  font-weight: 700;
}
.plan .amount { font-size: 2.3rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1.1; }
.plan .amount small { font-size: 1rem; font-weight: 600; color: var(--soft); margin-left: 4px; }
.plan ul { margin: 12px 0 24px; padding-left: 18px; color: var(--muted); flex: 1; }
.plan li { margin: 8px 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.caption { color: var(--soft); font-size: .88rem; margin-top: 10px; }

.pain-list { display: grid; gap: 14px; }
.pain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.pain .before { color: var(--soft); }
.pain .after { color: var(--rose); font-weight: 600; }
.day-cost { font-size: .92rem; color: var(--soft); margin-top: 4px; }

.cta-band {
  margin-top: 56px;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, var(--pink-3));
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-band h2 { margin-bottom: 16px; color: var(--ink); }

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.faq p { color: var(--muted); margin: 8px 0 4px; }

.form-grid { display: grid; gap: 14px; }
.form-ok { display: none; padding: 14px 16px; border-radius: 14px; background: var(--pink-3); color: var(--rose); font-weight: 700; margin-top: 12px; }
label { display: block; font-weight: 700; color: var(--muted); font-size: .9rem; margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: all .2s ease-in-out;
}
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px var(--pink-3);
}
.side-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: var(--shadow); }

.day-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 12px;
}
.day-item b { color: var(--rose); font-size: 1.1rem; }
.day-item strong { color: var(--ink); font-size: 1.1rem; display: block; margin-bottom: 4px; }
.day-item p { margin: 0; color: var(--muted); }

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}
.site-footer a { color: var(--muted); text-decoration: none; font-weight: 500; transition: color .2s; }
.site-footer a:hover { color: var(--rose); }
.site-footer h4 { margin: 0 0 16px; color: var(--ink); font-size: 1.05rem; }
.site-footer p { margin: 0 0 12px; font-size: .95rem; line-height: 1.6; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 10px 0; font-size: .95rem; }
.copy { margin-top: 48px; text-align: center; color: var(--soft); font-size: .88rem; border-top: 1px solid var(--line); padding-top: 24px; }

@media (max-width: 980px) {
  .hero-inner, .grid-3, .grid-2, .split, .footer-inner, .trust, .pain { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 16px 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
    .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 12px;
  }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--pink-3);
    border-radius: 14px;
    margin: 4px 0 8px;
    padding: 6px;
    min-width: auto;
  }
  .nav-dropdown.is-active .nav-dropdown-menu {
    display: flex;
  }
  .day-item { grid-template-columns: 1fr; }
}
.plan-quote {
  font-size: 0.95rem;
  color: var(--rose);
  font-weight: 600;
  background: var(--pink-3);
  padding: 12px 16px;
  border-radius: 12px;
  margin: 12px 0;
  line-height: 1.5;
}

.risk-note {
  margin-top: 12px;
  color: var(--rose);
  font-size: .88rem;
  font-weight: 600;
}
.loss-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--pink-3);
  border-left: 4px solid var(--rose);
  border-radius: 0 12px 12px 0;
  color: var(--ink);
  font-weight: 600;
}
.authority-note {
  color: var(--soft);
  font-size: .92rem;
  margin: -16px 0 24px;
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  position: relative;
}
.step-num {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step h3 { color: var(--ink); font-size: 1.1rem; margin: 0 0 8px; }
.step p { color: var(--muted); margin: 0; font-size: .95rem; }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr; } }

.compare-table-wrapper {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 12px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 760px;
}
.compare-table th, .compare-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}
.compare-table th {
  font-weight: 700;
  color: var(--ink);
  background: var(--page);
  border-radius: 12px;
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table td {
  color: var(--muted);
  font-size: .95rem;
}
.compare-table td:first-child {
  font-weight: 600;
  color: var(--ink);
}
.compare-table .check {
  color: var(--rose);
  font-weight: 800;
  font-size: 1.2rem;
}
.compare-table .category-row td {
  background: var(--pink-3);
  color: var(--rose);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 24px;
}
.compare-table .dash {
  color: var(--soft);
  font-weight: 800;
}

.feature-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, border-color 0.2s;
}
.feature-box:hover {
  transform: translateY(-4px);
  border-color: var(--pink-2);
}
.feature-box .icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-3);
  color: var(--rose);
  width: 64px;
  height: 64px;
  border-radius: 16px;
}
.feature-box h3 {
  color: var(--ink);
  font-size: 1.25rem;
  margin: 0 0 12px 0;
}
.feature-box p {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}
.brand-text strong {
  font-size: .95rem;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}
.brand-text small {
  font-size: .68rem;
  color: var(--rose);
  font-weight: 700;
  letter-spacing: .03em;
}

/* 平板 Mockup 外框 */
.tablet-mockup {
  position: relative;
  background: #2a2a32;
  border-radius: 28px;
  padding: 14px 14px 18px 14px;
  box-shadow: 0 20px 50px rgba(217, 119, 147, 0.22), 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid #3f3f4a;
  margin: 0 auto;
  max-width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tablet-mockup:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(217, 119, 147, 0.28), 0 15px 30px rgba(0, 0, 0, 0.18);
}

.tablet-mockup::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #525260;
  border-radius: 50%;
  z-index: 2;
}

.tablet-screen {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: block;
  line-height: 0;
}

.tablet-screen img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* S-Coin Add-ons & Showcase */
.scoin-section {
  background: var(--pink-3);
  padding: 56px 24px;
  border-radius: 28px;
  margin-top: 40px;
}
.addon-category-title {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 32px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.addon-category-title:first-of-type {
  margin-top: 0;
}
.addon-category-title span.emoji {
  font-size: 1.3rem;
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.addon-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 14px rgba(220, 150, 175, 0.08);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.addon-card:hover {
  transform: translateY(-3px);
  border-color: var(--pink-2);
  box-shadow: 0 10px 24px rgba(220, 150, 175, 0.16);
}
.addon-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.addon-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px 0;
  line-height: 1.35;
}
.addon-price {
  white-space: nowrap;
  background: #fff0f5;
  color: var(--rose);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--pink-2);
}
.addon-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 12px 0;
  flex: 1;
}
.addon-included-badge {
  font-size: 0.78rem;
  color: #785363;
  background: #fdf5f8;
  padding: 4px 8px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
}
.mgm-banner {
  background: linear-gradient(135deg, #fff0f5 0%, #ffffff 100%);
  border: 1.5px dashed var(--pink-2);
  border-radius: 20px;
  padding: 24px 28px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}
.mgm-icon {
  font-size: 2.4rem;
}
.mgm-banner h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
}
.mgm-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .mgm-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


