:root {
  color-scheme: light;
  --ga-paper-white: #fafaf7;
  --ga-wix-paper: #fbfaf7;
  --ga-warm-off-white: #f5f1e6;
  --ga-ink: #2f2f2f;
  --ga-text: #333333;
  --ga-muted: #706b61;
  --ga-line: #ded6c7;
  --ga-blue-gray: #617ca0;
  --ga-deep-blue-gray: #324158;
  --ga-cta-yellow: #f7d93b;
  --ga-butter: #ffe8a3;
  --ga-surface-page: var(--ga-wix-paper);
  --ga-surface-card: #fffffe;
  --ga-action-primary: var(--ga-cta-yellow);
  --ga-focus: var(--ga-deep-blue-gray);
  --ink: var(--ga-ink);
  --text: var(--ga-text);
  --paper: var(--ga-surface-page);
  --paper-soft: var(--ga-warm-off-white);
  --blue: var(--ga-blue-gray);
  --blue-deep: var(--ga-deep-blue-gray);
  --yellow: var(--ga-action-primary);
  --muted-gold: #b0a986;
  --white: var(--ga-surface-card);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Noto Sans TC", "PingFang TC", "Segoe UI", sans-serif;
  line-height: 1.75;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1130px, calc(100vw - 48px));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--ink);
  background: #8b8b84;
}

.brand-mark::before {
  top: 0;
  left: 0;
}

.brand-mark::after {
  right: 0;
  bottom: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--ink);
  font-size: 15px;
}

.nav-links a {
  padding: 0 18px;
  border-left: 1px solid rgba(0, 0, 0, 0.45);
  text-decoration: none;
}

.nav-links a:first-child {
  border-left: 0;
}

.login-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.login-link::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  box-shadow: inset 0 -8px 0 var(--ink);
}

.hero {
  min-height: 560px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
}

.hero.tall {
  min-height: calc(100vh - 66px);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 250, 247, 0.48) 0%, rgba(251, 250, 247, 0.22) 45%, rgba(251, 250, 247, 0) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1130px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 84px 0;
}

.offer-hero .hero-inner {
  padding: 44px 0 36px;
}

.offer-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.08;
}

.offer-hero .lead {
  max-width: 760px;
  font-size: clamp(18px, 1.75vw, 23px);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.offer-hero .meta-list {
  max-width: 860px;
  gap: 8px;
  margin-top: 18px;
}

.offer-hero .hero-actions {
  margin-top: 20px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: clamp(52px, 7.6vw, 92px);
  line-height: 1.17;
  font-weight: 850;
  text-wrap: balance;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(31px, 4.4vw, 54px);
  line-height: 1.18;
  font-weight: 850;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.28;
  font-weight: 820;
}

.lead {
  max-width: 880px;
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(19px, 2.2vw, 28px);
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
  line-height: 1.2;
  box-shadow: 5px 5px 0 var(--ink);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--ga-butter);
  transform: translate(1px, 1px);
  box-shadow: 4px 4px 0 var(--ink);
}

.button:focus-visible {
  outline: 4px solid rgba(50, 65, 88, 0.28);
  outline-offset: 3px;
}

.button.secondary {
  background: rgba(255, 255, 254, 0.74);
  border-width: 2px;
  box-shadow: none;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--ga-butter);
  box-shadow: 3px 3px 0 var(--ink);
}

.button.disabled {
  cursor: not-allowed;
  background: var(--paper-soft);
  color: var(--text);
}

.section {
  width: min(1040px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 78px 0;
}

.section.wide {
  width: min(1130px, calc(100vw - 48px));
}

.dot-band {
  background-image: url("./wix-original/02-dot-paper-bg.png");
  background-size: 720px 720px;
  background-repeat: repeat;
}

.paper-band {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--paper-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.section-head {
  max-width: 100%;
  margin-bottom: 36px;
}

.section-head p,
.copy p,
.card p {
  max-width: 960px;
  margin: 0;
  color: var(--text);
  font-size: 18px;
}

.nowrap {
  white-space: nowrap;
}

.label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 36px;
  padding: 7px 13px 7px 12px;
  border-left: 8px solid var(--yellow);
  background: rgba(97, 124, 160, 0.12);
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
}

.label::before {
  display: none;
}

.marker {
  display: inline;
  background: linear-gradient(180deg, transparent 58%, rgba(247, 217, 59, 0.72) 58%);
}

.note-box {
  position: relative;
  border: 3px solid var(--ink);
  background: var(--white);
  padding: 30px;
  box-shadow: 8px 8px 0 var(--ink);
}

.pin {
  position: absolute;
  width: 82px;
  height: auto;
  top: -38px;
  right: 28px;
}

.yellow-card {
  border: 3px solid var(--ink);
  background: var(--yellow);
  padding: 30px;
  box-shadow: 8px 8px 0 var(--ink);
}

.notify-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.notify-fields {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 14px;
}

.notify-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.25;
}

.notify-form input {
  width: 100%;
  min-height: 54px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
  font-size: 17px;
  font-weight: 650;
  box-shadow: 4px 4px 0 var(--ink);
}

.notify-form input:focus {
  outline: 4px solid rgba(97, 124, 160, 0.32);
  outline-offset: 2px;
}

.notify-consent,
.notify-message {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.notify-submit {
  width: fit-content;
  background: var(--ga-deep-blue-gray);
  color: var(--white);
}

.notify-submit:hover,
.notify-submit:focus-visible {
  background: var(--ga-ink);
  color: var(--white);
}

.notify-submit[disabled] {
  cursor: not-allowed;
  opacity: 0.72;
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.notify-message {
  min-height: 1.6em;
  font-weight: 800;
}

.notify-message.success {
  color: var(--blue-deep);
}

.notify-message.error {
  color: #8b1e1e;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.white-card {
  position: relative;
  min-height: 100%;
  border: 3px solid var(--ink);
  background: rgba(255, 255, 254, 0.86);
  padding: 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price {
  margin: 4px 0 16px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 920;
  line-height: 1;
}

.compact-price {
  font-size: clamp(36px, 4.8vw, 52px);
}

.meta-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
}

.dot {
  width: 10px;
  height: 10px;
  margin-top: 10px;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  background: var(--yellow);
}

.timeline {
  display: grid;
  gap: 22px;
}

.week-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  border-top: 3px solid var(--ink);
  padding-top: 24px;
}

.week-card img {
  width: min(170px, 100%);
  height: auto;
  justify-self: center;
}

.week-label {
  color: var(--blue);
  font-size: 23px;
  font-weight: 900;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.proof-stat-card {
  position: relative;
  min-height: 100%;
  border: 3px solid var(--ink);
  background: var(--white);
  padding: 26px 24px 24px;
  box-shadow: 6px 6px 0 var(--ink);
}

.proof-stat-card::before {
  content: "";
  display: block;
  width: 58px;
  height: 6px;
  margin-bottom: 26px;
  background: var(--yellow);
}

.proof-stat-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--ink);
  background: var(--yellow);
}

.proof-number {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 920;
  line-height: 0.95;
}

.proof-title {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 860;
  line-height: 1.25;
}

.proof-stat-card p {
  margin: 0;
  color: var(--text);
}

.floating-illustration {
  width: 150px;
  max-width: 42vw;
  height: auto;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 3px solid var(--ink);
  background: rgba(255, 255, 254, 0.88);
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq p {
  margin: 10px 0 0;
  color: var(--text);
}

.footer {
  border-top: 3px solid var(--ink);
  background: var(--paper);
}

.footer-inner {
  width: min(1130px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  color: var(--text);
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav,
  .hero-inner,
  .section,
  .section.wide,
  .footer-inner {
    width: min(100vw - 28px, 1130px);
  }

  .nav-links a:not(.button),
  .login-link {
    display: none;
  }

  .hero,
  .hero.tall {
    min-height: 650px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(251, 250, 247, 0.8) 0%, rgba(251, 250, 247, 0.54) 65%, rgba(251, 250, 247, 0.16) 100%);
  }

  .split,
  .cards,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .notify-fields {
    grid-template-columns: 1fr;
  }

  .week-card {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 18px;
  }

  .section {
    padding: 58px 0;
  }
}

@media (max-width: 540px) {
  .brand {
    font-size: 18px;
  }

  .brand span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .lead {
    font-size: 18px;
    letter-spacing: 0.03em;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .week-card {
    grid-template-columns: 1fr;
  }

  .week-card img {
    justify-self: start;
    width: 130px;
  }
}
