:root {
  --ink: #171410;
  --cream: #FBF6EC;
  --white: #fff;
  --red: #E4483A;
  --red-dark: #C43124;
  --red-shadow: #B8362A;
  --yellow: #EFC33F;
  --yellow-light: #F7DC8A;
  --yellow-shadow: #C89F26;
  --muted: #5C5346;
  --faint: #8A7F6A;
  --max: 1180px;
  --pad: clamp(20px, 5vw, 40px);
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Noto Sans TC", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6
}

img {
  max-width: 100%;
  display: block
}

a {
  color: var(--red);
  text-decoration: none
}

a:hover {
  color: var(--red-dark)
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -.02em;
  text-wrap: pretty
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad)
}

.hide {
  display: none;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 236, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(23, 20, 16, .1)
}

.header-in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px var(--pad);
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px)
}

.logo img {
  height: clamp(34px, 7vw, 44px);
  width: auto
}

.nav {
  display: none;
  gap: 22px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 500
}

.nav a {
  color: var(--ink)
}

.nav a:hover {
  color: var(--red)
}

.header-cta {
  margin-left: auto;
  flex: none
}

@media(min-width:900px) {
  .nav {
    display: flex
  }

  .header-cta {
    margin-left: 0
  }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 99px;
  font-size: 17px;
  font-weight: 700;
  transition: .15s ease;
  white-space: nowrap
}

.btn-sm {
  padding: 11px 18px;
  font-size: 15px
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 5px 0 var(--red-shadow)
}

.btn-red:hover {
  background: var(--red-dark);
  color: #fff
}

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 5px 0 var(--yellow-shadow)
}

.btn-yellow:hover {
  background: var(--yellow-light);
  color: var(--ink)
}

.btn-cream {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 5px 0 rgba(0, 0, 0, .24)
}

.btn-cream:hover {
  background: #fff;
  color: var(--ink)
}

.btn-ghost {
  border: 1.5px solid rgba(251, 246, 236, .4);
  color: var(--cream)
}

.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(251, 246, 236, .08);
  color: var(--cream)
}

.btn-outline {
  border: 1.5px solid rgba(23, 20, 16, .24);
  color: var(--ink)
}

.btn-outline:hover {
  border-color: var(--ink);
  background: rgba(23, 20, 16, .05);
  color: var(--ink)
}

.btn-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.btn-row-center {
  justify-content: center
}

/* promo marquee */
.promo {
  background: var(--ink);
  color: var(--yellow-light);
  overflow: hidden;
  padding: 9px 0
}

.promo-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em
}

.promo-run {
  display: flex;
  gap: 34px;
  padding-right: 34px
}

.promo i {
  opacity: .45;
  font-style: normal
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@media(prefers-reduced-motion:reduce) {
  .promo-track {
    animation: none
  }
}

/* pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 8px 15px;
  border-radius: 99px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em
}

.pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow-light)
}

.pill-dark {
  background: var(--ink);
  color: var(--yellow-light)
}

/* placeholders */
.thumb {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: repeating-linear-gradient(135deg, #EFE7D6 0 9px, #E5DBC6 9px 18px);
  display: grid;
  place-items: center;
  padding: 16px;
  text-align: center
}

.thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.ph {
  font: 500 11px/1.7 var(--mono);
  color: var(--faint);
  letter-spacing: .06em
}

.thumb-dark {
  background: repeating-linear-gradient(135deg, #2A2520 0 10px, #231F1A 10px 20px);
  border: 1px solid rgba(251, 246, 236, .14)
}

.thumb-dark .ph {
  color: rgba(251, 246, 236, .5);
  font-size: 12px
}

.sq {
  aspect-ratio: 1
}

/* hero A */
.hero-a {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden
}

.moon {
  position: absolute;
  top: -90px;
  right: -70px;
  width: min(58vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 32%, #FBEBBE 0%, var(--yellow) 52%, #D9A521 100%);
  box-shadow: 0 0 120px 60px rgba(239, 195, 63, .22)
}

.hero-a-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 8vw, 88px) var(--pad) clamp(48px, 7vw, 80px);
  display: grid;
  gap: clamp(30px, 5vw, 56px)
}

.hero-a h1 {
  margin-top: 20px;
  font-size: clamp(38px, 10vw, 72px);
  line-height: 1.08;
  font-weight: 900
}

.hero-a h1 em {
  font-style: normal;
  color: var(--yellow)
}

.hero-a .lede {
  margin: 18px 0 0;
  max-width: 30em;
  font-size: clamp(15px, 4vw, 18px);
  line-height: 1.85;
  color: rgba(251, 246, 236, .76)
}

.ticks {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: rgba(251, 246, 236, .82)
}

.ticks li {
  display: flex;
  gap: 10px;
  align-items: baseline
}

.ticks li::before {
  content: "✓";
  color: var(--yellow);
  font-weight: 700
}

.hero-a-art {
  position: relative;
  animation: float 7s ease-in-out infinite
}

.hero-shot {
  aspect-ratio: 4/5;
  border-radius: 24px;
  padding: 20px
}

.price-chip {
  position: absolute;
  bottom: -14px;
  left: -14px;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .34)
}

.price-chip span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #7A6F5C
}

.price-chip strong {
  font-family: Outfit, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@media(prefers-reduced-motion:reduce) {
  .hero-a-art {
    animation: none
  }
}

@media(min-width:900px) {
  .hero-a-inner {
    grid-template-columns: 1.15fr .85fr
  }
}

/* hero B */
.hero-b {
  position: relative;
  /* background: var(--cream); */
  background: #252632;
  overflow: hidden
}

.moon-b {
  position: absolute;
  top: clamp(-40px, -4vw, 0px);
  left: 50%;
  transform: translateX(-50%);
  width: min(88vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  /* background: var(--yellow-light); */
  background: radial-gradient(circle at 34% 32%, #FBEBBE 0%, var(--yellow) 52%, #D9A521 100%);
  /* opacity: .5 */
}

.hero-b-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(36px, 7vw, 72px) var(--pad) clamp(44px, 6vw, 72px);
  text-align: center
}

.hero-b h1 {
  margin: 20px auto 0;
  max-width: 16em;
  font-size: clamp(40px, 11vw, 84px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--red);
  text-wrap: balance
}

.hero-b h1 .small {
  display: block;
  font-size: clamp(15px, 4vw, 18px);
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--ink)
}

.hero-b h1 em {
  font-style: normal;
  color: var(--ink)
}

.hero-b .lede {
  margin: 18px auto 0;
  max-width: 16em;
  font-size: clamp(15px, 4vw, 18px);
  line-height: 1.85;
  color: var(--muted)
}

.hero-b-grid {
  margin-top: clamp(34px, 6vw, 56px);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr)
}

@media(min-width:700px) {
  .hero-b-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .hero-b .lede {

    max-width: 26em;

  }
}


/* countdown */
.countdown {
  background: var(--red);
  color: #fff
}

.countdown-in {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 28px) var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  text-align: center
}

.cd-label {
  font-size: clamp(15px, 4vw, 18px);
  font-weight: 700
}

.cd-boxes {
  display: flex;
  gap: 8px
}

.cd-box {
  min-width: 64px;
  padding: 10px 8px;
  border-radius: 14px;
  background: rgba(0, 0, 0, .22)
}

.cd-box b {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1
}

.cd-box span {
  display: block;
  font-size: 11px;
  opacity: .8;
  margin-top: 3px
}

.cd-note {
  font-size: 13px;
  opacity: .86
}

/* perks */
.perks {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 72px) var(--pad) clamp(12px, 3vw, 24px);
  display: grid;
  gap: 14px
}

.perk {
  padding: 24px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(23, 20, 16, .08)
}

.perk .num {
  font-family: Outfit, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--red)
}

.perk h3 {
  margin-top: 10px;
  font-size: 19px;
  font-weight: 700
}

.perk p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted)
}

@media(min-width:820px) {
  .perks {
    grid-template-columns: repeat(3, 1fr)
  }
}

/* tiers */
.tier {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 60px) var(--pad)
}

.tier-head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 14px
}

.tier-head h2 {
  font-size: clamp(26px, 7vw, 40px);
  font-weight: 900
}

.tier-range {
  font-family: Outfit, sans-serif;
  font-size: clamp(15px, 4vw, 19px);
  font-weight: 700;
  color: var(--red)
}

.tier-desc {
  margin: 0 0 0 auto;
  font-size: 14px;
  color: var(--muted);
  max-width: 24em
}

.grid-cards {
  margin-top: 22px;
  display: grid;
  gap: clamp(14px, 3vw, 22px);
  grid-template-columns: repeat(1, 1fr)
}

@media(min-width:500px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:700px) {
  .grid-cards {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(min-width:1000px) {
  .grid-cards {
    grid-template-columns: repeat(4, 1fr)
  }
}

.card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(23, 20, 16, .08);
  color: var(--ink);
  transition: .16s ease
}

.card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(23, 20, 16, .1);
  color: var(--ink)
}

.card .thumb {
  border-radius: 0;
  aspect-ratio: 1
}

.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 99px;
  background: var(--ink);
  color: var(--yellow-light);
  font-size: 11px;
  font-weight: 700
}

.cbody {
  padding: clamp(13px, 3vw, 18px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1
}

.cname {
  font-size: clamp(14px, 3.6vw, 16px);
  font-weight: 700;
  line-height: 1.5
}

.cprice {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap
}

.price {
  font-family: Outfit, sans-serif;
  font-size: clamp(19px, 5vw, 23px);
  font-weight: 800;
  color: var(--red)
}

.pnote {
  font-size: 11px;
  color: var(--faint)
}

.cbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 99px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700
}

/* custom */
.custom {
  background: var(--ink);
  color: var(--cream)
}

.custom-in {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) var(--pad);
  display: grid;
  gap: clamp(28px, 5vw, 52px)
}

.eyebrow {
  margin: 0;
  font-family: Outfit, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--yellow)
}

.custom h2 {
  margin-top: 12px;
  font-size: clamp(28px, 7.5vw, 46px);
  font-weight: 900;
  line-height: 1.14
}

.custom .lede {
  margin: 16px 0 0;
  font-size: clamp(15px, 4vw, 17px);
  line-height: 1.85;
  color: rgba(251, 246, 236, .76);
  max-width: 28em
}

.custom-list {
  margin-top: 28px;
  display: grid;
  gap: 12px
}

.custom-list div {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(251, 246, 236, .07);
  border: 1px solid rgba(251, 246, 236, .12)
}

.custom-list h3 {
  font-size: 16px;
  font-weight: 700
}

.custom-list p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(251, 246, 236, .68)
}

.custom-art {
  aspect-ratio: 3/4;
  border-radius: 24px;
  padding: 20px
}

@media(min-width:820px) {
  .custom-in {
    grid-template-columns: 1fr 1fr
  }
}

/* corporate */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 84px) var(--pad)
}

.section h2 {
  font-size: clamp(28px, 7.5vw, 46px);
  font-weight: 900
}

.section .lede {
  margin: 14px 0 0;
  max-width: 34em;
  font-size: clamp(15px, 4vw, 17px);
  line-height: 1.85;
  color: var(--muted)
}

.steps {
  margin-top: 30px;
  display: grid;
  gap: 14px
}

.step {
  padding: 26px;
  border-radius: 20px;
  background: var(--yellow-light)
}

.step b {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1
}

.step h3 {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700
}

.step p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted)
}

@media(min-width:820px) {
  .steps {
    grid-template-columns: repeat(3, 1fr)
  }
}

.todo {
  margin-top: 20px;
  padding: 20px 22px;
  border-radius: 16px;
  border: 1.5px dashed rgba(23, 20, 16, .24);
  font: 500 13px/1.8 var(--mono);
  color: var(--faint)
}

/* shipping */
.shipping {
  background: var(--white);
  border-top: 1px solid rgba(23, 20, 16, .08);
  border-bottom: 1px solid rgba(23, 20, 16, .08)
}

.spec {
  margin-top: 28px;
  display: grid
}

.spec-row {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(23, 20, 16, .1)
}

.spec-row dt {
  flex: none;
  width: 88px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red)
}

.spec-row dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.8
}

@media(min-width:820px) {
  .spec {
    grid-template-columns: 1fr 1fr;
    column-gap: 44px
  }
}

/* reviews */
.reviews {
  margin-top: 26px;
  display: grid;
  gap: 14px
}

.review {
  padding: 26px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(23, 20, 16, .08)
}

.stars {
  font-size: 22px;
  color: var(--yellow);
  letter-spacing: .1em
}

.review p {
  margin: 14px 0 0;
  font: 500 13px/1.9 var(--mono);
  color: var(--faint)
}

.review cite {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--faint);
  font-style: normal
}

@media(min-width:820px) {
  .reviews {
    grid-template-columns: repeat(3, 1fr)
  }
}

/* final cta */
.final {
  background: var(--red);
  color: #fff
}

.final-in {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 84px) var(--pad);
  text-align: center
}

.final h2 {
  font-size: clamp(28px, 8vw, 48px);
  font-weight: 900;
  text-wrap: balance
}

.final p {
  margin: 14px auto 0;
  max-width: 26em;
  font-size: clamp(15px, 4vw, 17px);
  line-height: 1.8;
  opacity: .9
}

.final .btn {
  margin-top: 28px
}

/* footer */
.site-footer {
  background: var(--ink);
  color: rgba(251, 246, 236, .7)
}

.footer-in {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) var(--pad) 28px;
  display: grid;
  gap: 32px
}

.footer-in img {
  height: 46px;
  width: auto
}

.footer-in p {
  margin: 18px 0 0;
  max-width: 24em;
  font-size: 14px;
  line-height: 1.85
}

.foot-contact {
  display: grid;
  gap: 10px;
  align-content: start;
  font-size: 14px
}

.foot-contact .eyebrow {
  color: var(--yellow)
}

.foot-note {
  font: 500 13px/1.9 var(--mono);
  color: var(--faint)
}

.copyright {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 34px;
  font-size: 12px;
  color: rgba(251, 246, 236, .4)
}

@media(min-width:820px) {
  .footer-in {
    grid-template-columns: 1fr 1fr
  }
}