:root {
  --black: #050505;
  --black-soft: #0d0d0f;
  --ink: #171717;
  --off-white: #eeeee5;
  --white: #f7f7f2;
  --muted: #b9b9b5;
  --orange: #ff5a00;
  --orange-soft: #ff7d42;
  --pink: #e7a5ef;
  --rose: #e99bb4;
  --purple: #b987ee;
  --line: rgba(255, 255, 255, .24);
  --gradient: linear-gradient(100deg, #d6a9f3 0%, #ef9ca7 48%, #ff5a00 100%);
  --content-width: 1295px;
  --container: min(var(--content-width), calc(100% - 48px));
  --shadow: 0 24px 70px rgba(0, 0, 0, .36);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  max-width: 100%;
  overflow-x: hidden;
  background-color: #000000;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--white);
  background: #000000;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
main { background-color: #000000; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, summary { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.centered { text-align: center; }
.gradient-text {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Brand */
.brand, .section-logo, .hero-logo, .mini-logo, .footer-logo { display: inline-flex; align-items: baseline; line-height: .9; white-space: nowrap; }
.brand-pro { font-weight: 300; letter-spacing: -.08em; }
.brand-mkt { font-weight: 900; font-style: italic; letter-spacing: -.09em; }
.brand-ai { margin-left: .08em; color: var(--orange); font-weight: 900; letter-spacing: -.08em; }
.brand .brand-pro, .brand .brand-mkt, .section-logo .brand-pro, .section-logo .brand-mkt, .hero-logo .brand-pro, .hero-logo .brand-mkt, .mini-logo .brand-pro, .mini-logo .brand-mkt, .footer-logo .brand-pro, .footer-logo .brand-mkt {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}
.brand { font-size: 36px; }
.hero-logo { font-size: clamp(64px, 5.8vw, 104px); }
.section-logo { font-size: clamp(52px, 5vw, 88px); }
.logo-small { font-size: clamp(40px, 3.5vw, 60px); }
.logo-inline { font-size: 1.12em; vertical-align: -.05em; }
.mini-logo { font-size: 44px; margin: 14px 0 20px; }
.footer-logo { font-size: 48px; }

/* SVG logo assets */
.has-svg-logo {
  align-items: center;
  line-height: 1;
}
.has-svg-logo .logo-svg {
  display: block;
  width: 100%;
  height: auto;
}
.brand.has-svg-logo {
  width: 180px;
  font-size: 0;
  flex: 0 0 auto;
}
.hero-logo.has-svg-logo {
  width: clamp(360px, 30vw, 520px);
  font-size: 0;
}
.section-logo.has-svg-logo:not(.logo-inline) {
  width: clamp(300px, 26vw, 450px);
  font-size: 0;
}
.section-logo.logo-small.has-svg-logo {
  width: clamp(250px, 21vw, 350px);
}
.mini-logo.has-svg-logo {
  width: 190px;
  margin: 14px auto 20px;
  font-size: 0;
}
.logo-inline.has-svg-logo {
  width: auto;
  height: .92em;
  vertical-align: -.08em;
}
.logo-inline.has-svg-logo .logo-svg {
  width: auto;
  height: 100%;
}
.footer-logo.has-svg-logo {
  width: 286px;
  max-width: 100%;
  font-size: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(20,20,22,.76), rgba(12,12,14,.48));
  box-shadow: 0 8px 28px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.07);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
  backdrop-filter: blur(24px) saturate(155%);
}
.nav-shell {
  position: relative;
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 10px 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: auto;
}
.nav-shell::before { content: none; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(24px, 4vw, 64px); margin-left: auto; font-size: 16px; font-weight: 700; }
.main-nav a { color: rgba(255,255,255,.9); text-shadow: 0 1px 8px rgba(0,0,0,.32); transition: color .2s ease, transform .2s ease; }
.main-nav a:hover { color: var(--orange-soft); transform: translateY(-1px); }
.site-header .button-small { border-radius: 4px; box-shadow: 0 8px 24px rgba(255,90,0,.12); }

/* Buttons */
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .02em;
  transition: transform .2s ease, filter .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.05); }
.button-small { min-height: 44px; padding-inline: 18px; }
.button-gradient { color: #181818; background: var(--gradient); }
.button-light { color: #171717; background: var(--off-white); }
.button-outline-dark { color: var(--ink); border-color: #777; background: transparent; }
.button-block { width: 100%; margin-top: auto; }

/* Hero */
.hero {
  position: relative;
  min-height: max(980px, 56.25vw);
  overflow: hidden;
  isolation: isolate;
  background: #020202;
}
/*
 * Fill layer: the same artwork is enlarged and softened behind the main image.
 * It only fills unused space created by responsive aspect-ratio differences.
 */
.hero::before {
  content: "";
  position: absolute;
  inset: -5%;
  z-index: -3;
  background: #020202 url("assets/Hero-page_BG.webp") center top / cover no-repeat;
  filter: blur(34px) brightness(.42) saturate(1.12);
  transform: scale(1.06);
  opacity: .72;
}
/* Main artwork: always rendered at full width and its complete 16:9 height. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/Hero-page_BG.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  pointer-events: none;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2,2,2,0) 0%, rgba(2,2,2,0) 72%, rgba(2,2,2,.62) 91%, #020202 100%),
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.68) 29%, rgba(0,0,0,.16) 51%, rgba(0,0,0,0) 72%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: max(980px, 56.25vw);
  padding-top: 90px;
}
.hero-copy { width: min(650px, 54vw); margin-left: clamp(0px, 8vw, 106px); }
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 3px 14px 4px;
  margin-bottom: 38px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
}
.eyebrow-pill span { color: #111; background: var(--gradient); border-radius: 999px; padding: 1px 11px; margin-left: -10px; }
.hero h1 { margin: 18px 0 22px; font-size: clamp(56px, 4.6vw, 80px); line-height: 1.16; letter-spacing: -.045em; }
.hero p { max-width: 640px; margin: 0; font-size: clamp(16px, 1.05vw, 18px); color: rgba(255,255,255,.82); }
.hero p strong { color: var(--orange); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; }
.limited-offer {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - var(--content-width)) / 2));
  bottom: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 18px;
  padding: 16px 22px;
  color: #111;
  font: inherit;
  text-align: left;
  border: 0;
  border-radius: 34px 34px 34px 8px;
  background: var(--gradient);
  box-shadow: var(--shadow);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.limited-offer:hover {
  transform: translateY(-4px);
  filter: brightness(1.06) saturate(1.08);
  box-shadow: 0 18px 42px rgba(0,0,0,.34), 0 0 24px rgba(255,90,0,.22);
}
.limited-offer:active { transform: translateY(-1px) scale(.99); }
.limited-offer:focus-visible {
  outline: 3px solid rgba(255,255,255,.96);
  outline-offset: 4px;
}
.limited-offer strong { font-size: 24px; line-height: 1.1; }
.limited-offer span { grid-column: 1; font-size: 14px; font-weight: 900; }
.limited-offer b { grid-column: 2; grid-row: 1 / 3; }

/* Common sections */
.section-content { position: relative; z-index: 1; padding: 120px 0; }
.section-content h2, .faq-container h2, .cta-copy h2 { margin: 0 0 50px; font-size: clamp(40px, 3vw, 48px); line-height: 1.2; letter-spacing: -.035em; }
.kicker { margin: 0 0 15px; color: var(--orange); font-size: 14px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.kicker::before { content: "•"; margin-right: 8px; }
.cards { display: grid; gap: 24px; }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.section-statement { margin: 44px auto 0; font-size: clamp(20px, 1.55vw, 24px); font-weight: 900; text-align: center; }
.section-statement.compact { margin-top: 40px; }
.section-black { background: #000; }

/* Pain */
.pain-section { position: relative; min-height: 760px; overflow: hidden; background: #05040b; }
.ambient { position: absolute; inset: 0; pointer-events: none; }
.ambient-pain {
  background:
    radial-gradient(60% 90% at 85% 50%, rgba(249, 159, 180, .74), transparent 58%),
    radial-gradient(55% 85% at 58% 52%, rgba(255, 89, 0, .82), transparent 57%),
    radial-gradient(55% 90% at 4% 50%, rgba(32, 49, 119, .58), transparent 58%);
  filter: blur(24px);
}
.pain-section .section-content { padding-top: 92px; }
.glass-card {
  min-height: 250px;
  padding: 34px 38px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(32,31,48,.72), rgba(104,70,60,.58));
  backdrop-filter: blur(10px);
}
.glass-card-hot { background: linear-gradient(145deg, rgba(104,41,14,.74), rgba(255,92,10,.64)); }
.glass-card-soft { background: linear-gradient(145deg, rgba(116,66,61,.66), rgba(204,133,148,.56)); }
.icon-badge, .core-icon, .outline-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 16px;
  color: var(--pink);
  font-size: 24px;
}
.icon-badge {
  overflow: hidden;
  padding: 0;
  border: 0;
}
.icon-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.glass-card h3 { margin: 0 0 22px; font-size: 24px; line-height: 1.2; }
.glass-card p { margin: 0; color: rgba(255,255,255,.82); font-size: 16px; }
.pain-section .section-statement { font-size: clamp(40px, 3vw, 48px); line-height: 1.2; letter-spacing: -.035em; }

/* Positioning */
.positioning {
  position: relative;
  overflow: hidden;
  margin-bottom: 52px;
  background-color: #000000;
  background-image: url("assets/positioning-bg.png");
  background-repeat: no-repeat;
  background-position: center 68%;
  background-size: cover;
}
.positioning::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,0) 58%,
    rgba(0,0,0,.36) 78%,
    #000000 100%);
}
.positioning::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0), #000000 88%);
}
.positioning .section-content {
  position: relative;
  z-index: 1;
  padding-top: 130px;
  padding-bottom: 120px;
}
.positioning h2 { margin-top: 35px; }

@media (max-width: 1100px) {
  .positioning {
    margin-bottom: 40px;
    background-size: 140% auto;
    background-position: center 72%;
  }
}

@media (max-width: 820px) {
  .positioning {
    margin-bottom: 30px;
    background-size: 180% auto;
    background-position: center 76%;
  }
}

@media (max-width: 520px) {
  .positioning {
    margin-bottom: 22px;
    background-size: 240% auto;
    background-position: center 79%;
  }
}
.position-scale {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin: 52px 110px 30px;
  color: #fff;
  font-weight: 900;
}
.position-scale::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: 50%;
  height: 8px;
  border-radius: 99px;
  background: var(--gradient);
  transform: translateY(-50%);
  box-shadow:
    0 0 18px rgba(233, 155, 180, .18),
    0 0 44px rgba(255,107,38,.14),
    0 0 32px rgba(209,158,236,.12);
}
.position-scale span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  min-width: 134px;
  height: 58px;
  padding: 0 24px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 22px;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(65,36,48,.34);
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.94) 0%,
      rgba(255,255,255,.64) 22%,
      rgba(255,255,255,.20) 51%,
      rgba(255,255,255,.42) 72%,
      rgba(255,255,255,.76) 100%);
  box-shadow:
    0 8px 18px rgba(0,0,0,.22),
    0 0 0 1px rgba(255,255,255,.24) inset,
    0 2px 3px rgba(255,255,255,.88) inset,
    0 -7px 12px rgba(228,166,218,.36) inset;
  backdrop-filter: blur(15px) saturate(165%);
  -webkit-backdrop-filter: blur(15px) saturate(165%);
}
.position-scale span::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 2px 4px auto;
  height: 43%;
  border-radius: 18px 18px 50% 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.12));
  box-shadow: 0 1px 0 rgba(255,255,255,.92) inset;
  pointer-events: none;
}
.position-scale span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 9px;
  right: 9px;
  bottom: 2px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.42);
  filter: blur(5px);
  pointer-events: none;
}
.position-scale span:nth-child(1) {
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.48) 0%,
      rgba(255,255,255,.20) 32%,
      rgba(207,153,238,.18) 70%,
      rgba(207,153,238,.34) 100%),
    linear-gradient(135deg,
      rgba(255,255,255,.22),
      rgba(207,153,238,.16));
  box-shadow:
    0 10px 24px rgba(0,0,0,.22),
    0 0 0 1px rgba(255,255,255,.28) inset,
    0 2px 4px rgba(255,255,255,.72) inset,
    0 -10px 18px rgba(207,153,238,.30) inset,
    0 0 22px rgba(207,153,238,.16);
}
.position-scale span:nth-child(2) {
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.48) 0%,
      rgba(255,255,255,.20) 32%,
      rgba(239,156,167,.18) 70%,
      rgba(239,156,167,.34) 100%),
    linear-gradient(135deg,
      rgba(255,255,255,.22),
      rgba(239,156,167,.16));
  box-shadow:
    0 10px 24px rgba(0,0,0,.22),
    0 0 0 1px rgba(255,255,255,.28) inset,
    0 2px 4px rgba(255,255,255,.72) inset,
    0 -10px 18px rgba(239,156,167,.30) inset,
    0 0 22px rgba(239,156,167,.16);
}
.position-scale span:nth-child(3) {
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.48) 0%,
      rgba(255,255,255,.20) 32%,
      rgba(255,90,0,.20) 70%,
      rgba(255,90,0,.38) 100%),
    linear-gradient(135deg,
      rgba(255,255,255,.22),
      rgba(255,90,0,.18));
  box-shadow:
    0 10px 24px rgba(0,0,0,.22),
    0 0 0 1px rgba(255,255,255,.28) inset,
    0 2px 4px rgba(255,255,255,.72) inset,
    0 -10px 18px rgba(255,90,0,.34) inset,
    0 0 22px rgba(255,90,0,.18);
}
.compare-cards { position: relative; z-index: 2; align-items: stretch; }
.compare-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 325px;
  padding: 34px;
  overflow: hidden;
  isolation: isolate;
  text-align: left;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.045) 44%, rgba(255,255,255,.075) 100%),
    linear-gradient(180deg, rgba(12,12,14,.50) 0%, rgba(8,8,10,.28) 100%);
  box-shadow:
    0 24px 44px rgba(0,0,0,.34),
    0 0 0 1px rgba(255,255,255,.05) inset,
    0 1px 0 rgba(255,255,255,.18) inset,
    0 -18px 34px rgba(255,255,255,.035) inset;
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}
.compare-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(130deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.04) 24%, rgba(255,255,255,0) 48%),
    radial-gradient(70% 52% at 50% 108%, rgba(255,255,255,.16), rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.compare-card::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 1px;
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent);
  opacity: .7;
  pointer-events: none;
}
.compare-card small { color: var(--orange); font-weight: 900; }
.compare-card h3 { margin: 28px 0 16px; font-size: 24px; line-height: 1.2; }
.compare-card p { margin: 0 0 28px; color: rgba(255,255,255,.72); font-size: 16px; }
.featured-card {
  border: 2px solid rgba(255,90,0,.95);
  background:
    linear-gradient(145deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.05) 46%, rgba(255,90,0,.08) 100%),
    linear-gradient(180deg, rgba(14,12,14,.54) 0%, rgba(10,9,10,.30) 100%);
  box-shadow:
    0 0 0 1px rgba(255,126,54,.16),
    0 24px 48px rgba(0,0,0,.34),
    0 0 26px rgba(255,90,0,.10),
    inset 0 1px 0 rgba(255,255,255,.20),
    inset 0 0 42px rgba(255,90,0,.07);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.chips span { padding: 4px 14px; border-radius: 999px; color: #222; background: linear-gradient(#eee, #8f8f8b); font-size: 13px; font-weight: 900; }
.chips-gradient span { background: var(--gradient); }
.win { position: relative; z-index: 2; margin: 16px 0 0; color: var(--orange); font-size: 24px; font-weight: 900; text-shadow: 0 0 18px rgba(255,106,0,.24); }

/* Core */
.core-section {
  position: relative;
  overflow: hidden;
  contain: paint;
  background-color: #000000;
  background-image:
    radial-gradient(ellipse 34% 30% at -3% 63%, rgba(232,205,255,.92) 0%, rgba(232,205,255,.50) 18%, rgba(232,205,255,.12) 40%, rgba(232,205,255,0) 68%),
    radial-gradient(ellipse 30% 28% at 103% 32%, rgba(232,170,204,.78) 0%, rgba(232,170,204,.36) 22%, rgba(232,170,204,.08) 44%, rgba(232,170,204,0) 70%),
    linear-gradient(180deg,
      #000000 0%,
      #090301 7%,
      #2d0d02 15%,
      #6f2004 28%,
      #b63602 42%,
      #ff5a00 57%,
      #c63a02 68%,
      #742004 80%,
      #2b0d04 90%,
      #090504 96%,
      #000000 100%);
}
.core-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, #000000 0%, rgba(0,0,0,0) 9%, rgba(0,0,0,0) 88%, #000000 100%),
    linear-gradient(90deg, rgba(0,0,0,.18) 0%, rgba(255,255,255,.025) 50%, rgba(0,0,0,.18) 100%);
}
.core-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0), #000000 92%);
}
.core-glow { position: absolute; z-index: 2; width: 430px; height: 430px; border-radius: 50%; filter: blur(55px); opacity: .62; }
.core-glow-left { left: -210px; top: 42%; background: #eac8ff; }
.core-glow-right { right: -170px; top: 15%; background: #e4b2ce; }
.core-section > .section-content { position: relative; z-index: 3; }
.core-primary { margin-top: 55px; }
.core-card {
  position: relative;
  min-height: 270px;
  padding: 46px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(92,32,10,.62), rgba(198,58,4,.56));
}
.number { color: var(--pink); font-size: 20px; font-weight: 900; }
.number-orange { color: var(--orange-soft); }
.core-icon { position: absolute; right: 32px; top: 30px; margin: 0; }
.core-card h3 { margin: 22px 0 0; font-size: 24px; line-height: 1.2; }
.core-card h4 { margin: 4px 0 16px; font-size: 16px; line-height: 1.5; }
.core-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 16px; }
.feature-heading { margin-top: 62px; }
.feature-heading h2 { margin: 8px 0 48px; }
.feature-card {
  min-height: 240px;
  padding: 30px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(83,34,14,.72), rgba(47,30,25,.74));
}
.core-icon,
.outline-icon {
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
}
.core-icon {
  width: 54px;
  height: 54px;
}
.outline-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}
.core-icon img,
.outline-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature-card h3 { margin: 0 0 15px; font-size: 20px; line-height: 1.25; }
.feature-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 16px; }

/* Audience */
.audience-section {
  position: relative;
  min-height: 1200px;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  font-family: "Noto Sans CJK TC", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  background-color: #000000;
  background-image:
    radial-gradient(90% 31% at 50% 47%, rgba(255,255,255,.17), rgba(255,255,255,0) 72%),
    linear-gradient(180deg,
      #000000 0%,
      #050505 5%,
      #181919 10%,
      #494a48 16%,
      #878883 22%,
      #c7c7c0 29%,
      #ecece6 38%,
      #eeeeE8 61%,
      #d0d0ca 75%,
      #8f908c 87%,
      #323232 96%,
      #080808 100%);
}
.audience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, #000000 0%, rgba(0,0,0,.72) 7%, rgba(0,0,0,.18) 16%, rgba(0,0,0,0) 25%),
    radial-gradient(70% 44% at 50% 54%, rgba(255,255,255,0) 38%, rgba(255,255,255,.08) 100%);
}
.audience-section::after {
  content: "";
  position: absolute;
  z-index: 5;
  left: -15%;
  width: 130%;
  bottom: -500px;
  height: 640px;
  border-radius: 50% 50% 0 0 / 42% 42% 0 0;
  background: #000000;
  pointer-events: none;
}
.audience-words {
  position: absolute;
  z-index: -1;
  top: 211px;
  left: 0;
  width: 100%;
  overflow: visible;
  font-size: clamp(200px, 12.8vw, 245px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.audience-word-row {
  display: flex;
  transform-origin: left center;
  align-items: center;
  width: max-content;
  min-width: 100%;
}
.word-row-one { transform: translateX(4.3vw) scaleX(1.15); }
.word-row-two { margin-top: 25px; transform: translateX(-2vw) scaleX(1.15); }
.word-row-three { margin-top: 25px; transform: translateX(-8vw) scaleX(1.15); }
.audience-word-row span { display: inline-block; }
.audience-word-row span + span { margin-left: .12em; }
.word-gradient {
  color: transparent;
  background: linear-gradient(95deg, #d698ed 0%, #e69acb 24%, #ee9b9a 50%, #ff5a00 88%);
  -webkit-background-clip: text;
  background-clip: text;
}
.word-outline {
  color: rgba(255,255,255,.015);
  -webkit-text-stroke: 1px rgba(255,255,255,.62);
  text-shadow: 0 0 1px rgba(255,255,255,.12);
}
.audience-content {
  position: relative;
  z-index: 2;
  padding-top: 84px;
  padding-bottom: 0;
}
.audience-content .kicker { margin-bottom: 8px; }
.audience-content h2 {
  margin-bottom: 36px;
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -.045em;
}
.audience-content h2 .logo-inline { margin-left: .12em; font-size: 1.32em; }
.audience-content h2 .brand-ai { font-size: .5em; letter-spacing: -.04em; }
.audience-grid {
  position: relative;
  width: min(1125px, 100%);
  min-height: 780px;
  margin: 0 auto;
}
.persona-card {
  position: absolute;
  width: 332px;
  height: 640px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 0 0 20px 20px;
  color: white;
  background: rgba(35,35,35,.13);
  box-shadow: 12px 14px 15px rgba(0,0,0,.3), 0 28px 46px rgba(0,0,0,.22);
  backdrop-filter: blur(6px);
}
.persona-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.05) 54%, rgba(0,0,0,.22) 100%);
  pointer-events: none;
}
.persona-copy {
  position: relative;
  z-index: 4;
  min-height: 210px;
  padding: 34px 30px 24px;
  background: rgba(36,36,36,.57);
  backdrop-filter: blur(9px);
}
.persona-copy h3 {
  margin: 0 0 22px;
  font-weight: 900;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -.035em;
}
.persona-copy p {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 16px;
  line-height: 1.7;
}
.persona-card img {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  width: 109%;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center bottom;
}
.persona-card strong {
  position: absolute;
  z-index: 4;
  left: 28px;
  bottom: 25px;
  color: white;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.36;
  letter-spacing: -.025em;
  text-shadow: 0 2px 12px #000;
}
.persona-card strong span { color: var(--orange); }
.persona-left strong { color: var(--orange); }
.persona-left strong span { color: white; }
.persona-left { left: 0; top: 56px; }
.persona-center { left: 50%; top: 138px; transform: translateX(-50%); }
.persona-right { right: 0; top: 0; }

/* Pricing */
.pricing-section {
  position: relative;
  z-index: 2;
  isolation: isolate;
  overflow: visible;
  background: #000 url("assets/pricing-bg.webp") center 45% / cover no-repeat;
}
.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(180deg, #000 0%, rgba(0,0,0,.34) 22%, rgba(0,0,0,.68) 84%, #000 96%);
}
.pricing-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: clamp(-110px, -7vw, -60px);
  width: 100%;
  height: clamp(120px, 14vw, 220px);
  border-radius: 50%;
  pointer-events: none;
  background: #000;
}
.pricing-content { position: relative; z-index: 1; padding-top: 150px; padding-bottom: 310px; }
.pricing-content h2 { margin-bottom: 28px; }
.section-lead { max-width: 720px; margin: 0 auto 55px; color: rgba(255,255,255,.78); font-size: 18px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; text-align: left; }
.price-card {
  display: flex;
  flex-direction: column;
  min-height: 860px;
  padding: 34px 34px 30px;
  border: 1px solid rgba(255,90,0,.72);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(12,12,12,.64), rgba(80,80,75,.72));
  backdrop-filter: blur(7px);
}
.price-card > small { color: var(--orange); font-weight: 900; }
.price-card h3 { margin: 25px 0 8px; font-size: 40px; line-height: 1.15; }
.plan-for { min-height: 58px; margin: 0 0 30px; color: rgba(255,255,255,.72); font-size: 16px; }
.price-list { display: grid; gap: 18px; }
.price-list-spaced { margin-top: 98px; }
.price-list > div {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 18px 20px;
  border: 1px solid rgba(255,90,0,.52);
  border-radius: 15px;
  background: rgba(15,15,15,.58);
}
.price-list span { grid-column: 1 / -1; color: var(--orange); font-size: 14px; font-weight: 900; }
.price-list strong { font-size: 32px; line-height: 1.15; }
.price-list del { align-self: end; color: rgba(255,255,255,.7); font-size: 14px; }
.plan-details { padding: 28px 0; }
.plan-details h4 { margin: 0 0 4px; font-size: 20px; }
.plan-details p { margin: 0 0 24px; color: rgba(255,255,255,.8); font-size: 16px; }

/* FAQ */
.faq-section {
  position: relative;
  z-index: 1;
  color: var(--ink);
  background: var(--off-white);
}
.faq-section::before { content: none; }
.faq-container { position: relative; z-index: 1; width: min(900px, calc(100% - 48px)); padding: 180px 0 180px; }
.faq-container h2 { margin-bottom: 20px; }
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 55px;
}
.faq-tab {
  appearance: none;
  min-height: 38px;
  padding: 7px 24px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: #9d9d98;
  background: rgba(255,255,255,.18);
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition:
    color .22s ease,
    background-color .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    transform .22s ease;
}
.faq-tab:hover {
  color: var(--orange);
  background: rgba(255,90,0,.08);
  box-shadow: 0 8px 20px rgba(255,90,0,.12);
  transform: translateY(-2px);
}
.faq-tab:focus-visible {
  outline: 3px solid rgba(255,90,0,.25);
  outline-offset: 3px;
}
.faq-tab.active,
.faq-tab[aria-selected="true"] {
  color: #171717;
  border-color: transparent;
  background: linear-gradient(100deg, #d698ed 0%, #ed9bac 45%, #ff5a00 100%);
  box-shadow: 0 10px 24px rgba(255,90,0,.2);
}
.faq-panel[hidden] { display: none; }
.faq-list { display: grid; gap: 14px; }
.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(22,22,22,.06);
  background: white;
  box-shadow: 0 8px 24px rgba(22,22,22,.04);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.faq-list details:hover {
  border-color: rgba(255,90,0,.22);
  box-shadow: 0 12px 30px rgba(22,22,22,.07);
}
.faq-list summary {
  position: relative;
  list-style: none;
  padding: 20px 68px 20px 32px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 28px; color: var(--orange); font-size: 30px; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list summary b { margin-right: 18px; }
.faq-list details p { margin: 0; padding: 0 32px 22px 75px; font-size: 16px; }

/* CTA */
.cta-section {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  color: var(--ink);
  background-color: var(--off-white);
  background-image: url("assets/Push.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cta-section::before,
.cta-section::after { content: none; }
.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  min-height: 800px;
  padding-top: 110px;
}
.cta-copy { width: min(710px, 58vw); }
.cta-copy h2 { margin-bottom: 18px; }
.cta-copy h3 { margin: 0; font-size: clamp(36px, 3vw, 48px); line-height: 1.2; letter-spacing: -.035em; }
.cta-copy h3 span { color: var(--orange); }
.cta-copy small { display: block; margin-top: 38px; color: #b9b9b2; }

/* Footer */
.site-footer { padding: 70px 0 28px; background: #000; }
.footer-grid { display: grid; grid-template-columns: 2.1fr repeat(3, 1fr); gap: 65px; align-items: start; }
.footer-brand > p { margin: 10px 0 28px 0; color: #bbb; font-size: 20px; }
.socials { display: flex; align-items: center; gap: 12px; font-weight: 900; }
.socials a { display: inline-grid; place-items: center; width: 42px; height: 42px; overflow: hidden; border-radius: 10px; background: #000; }
.socials img { width: 100%; height: 100%; object-fit: cover; }
.footer-links { display: grid; gap: 10px; }
.footer-links h3 { margin: 0 0 10px; color: var(--orange); font-size: 14px; }
.footer-links h3::before { content: "•"; margin-right: 8px; }
.footer-links a { color: #ddd; font-size: 16px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 40px; margin-top: 60px; color: #aaa; font-size: 12px; }

/* Responsive */
@media (max-width: 1100px) {
  .main-nav { gap: 22px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-copy { width: min(650px, 64vw); margin-left: 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
  .price-card { min-height: auto; }
  .price-list-spaced { margin-top: 0; }
  .audience-section { min-height: auto; padding-bottom: 170px; }
  .audience-content { padding-top: 92px; }
  .audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; min-height: auto; }
  .persona-card { position: relative; inset: auto; width: auto; height: 610px; transform: none; }
  .persona-copy { min-height: 205px; padding-inline: 24px; }
  .persona-copy h3 { font-size: 27px; }
  .persona-card strong { left: 24px; font-size: 18px; }
  .audience-section::after { bottom: -535px; }
  .footer-grid { grid-template-columns: 1.6fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 820px) {
  :root { --container: min(calc(100% - 30px), 680px); }
  .site-header { position: fixed; padding: 0; }
  .nav-shell { min-height: 68px; padding: 8px 0; border-radius: 0; }
  .brand { font-size: 28px; }
  .brand.has-svg-logo { width: 145px; }
  .brand.has-svg-logo { width: 150px; }
  .hero-logo.has-svg-logo { width: min(82vw, 400px); }
  .section-logo.has-svg-logo:not(.logo-inline) { width: min(78vw, 380px); }
  .mini-logo.has-svg-logo { width: 170px; }
  .section-logo.logo-small.has-svg-logo { width: min(68vw, 310px); }
  .footer-logo.has-svg-logo { width: 240px; }
  .main-nav { display: none; }
  .site-header .button { margin-left: auto; }
  .hero { min-height: max(900px, 56.25vw); }
  .hero::before {
    inset: -7%;
    background-position: center top;
    filter: blur(26px) brightness(.38) saturate(1.08);
    opacity: .7;
  }
  .hero::after {
    background-position: center top;
    background-size: 100% auto;
  }
  .hero-content {
    min-height: max(900px, 56.25vw);
    align-items: flex-end;
    padding-top: calc(56.25vw + 36px);
    padding-bottom: 105px;
  }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(2,2,2,0) 0%, rgba(2,2,2,.04) 43%, rgba(2,2,2,.84) 62%, #020202 76%, #020202 100%);
  }
  .hero-copy { width: 100%; }
  .hero-logo { font-size: 62px; }
  .hero h1 { font-size: clamp(48px, 10vw, 64px); }
  .eyebrow-pill { font-size: 13px; margin-bottom: 20px; }
  .limited-offer { right: 15px; bottom: 18px; padding: 12px 16px; }
  .limited-offer strong { font-size: 18px; }
  .section-content { padding: 88px 0; }
  .cards-2, .cards-3 { grid-template-columns: 1fr; }
  .position-scale { margin-inline: 0; }
  .core-card { padding: 36px 28px; }
  .audience-section { min-height: auto; padding-bottom: 150px; }
  .audience-content { padding-top: 88px; }
  .audience-content h2 { font-size: 40px; }
  .audience-words { top: 190px; left: -210px; width: calc(100% + 420px); font-size: 116px; opacity: .34; }
  .word-row-one, .word-row-two, .word-row-three { transform: none; }
  .word-row-two, .word-row-three { margin-top: 44px; }
  .audience-grid { grid-template-columns: 1fr; max-width: 500px; gap: 28px; }
  .persona-card { width: min(100%, 390px); height: 640px; margin-inline: auto; }
  .persona-copy { min-height: 205px; padding: 30px 28px 22px; }
  .persona-copy h3 { font-size: 30px; }
  .persona-card img { width: 110%; height: auto; }
  .audience-section::after { bottom: -575px; }
  .pricing-content { padding-bottom: 190px; }
  .faq-container { padding-top: 135px; }
  .pricing-section::after {
    left: -5%;
    width: 110%;
    height: 120px;
    bottom: -60px;
  }
  .price-card h3 { font-size: 36px; }
  .faq-container { padding-bottom: 120px; }
  .cta-section, .cta-content { min-height: 860px; }
  .cta-section {
    background-size: auto 58%;
    background-position: right bottom;
  }
  .cta-copy { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
  html { scroll-padding-top: 88px; }
  .site-header { padding: 0; }
  .nav-shell { min-height: 60px; gap: 10px; padding: 7px 0; border-radius: 0; }
  .brand.has-svg-logo { width: 124px; }
  .site-header .button { min-height: 38px; padding: 0 12px; font-size: 13px; }
  .hero { min-height: max(820px, 56.25vw); }
  .hero::before {
    inset: -9%;
    filter: blur(22px) brightness(.34) saturate(1.06);
  }
  .hero::after {
    background-position: center top;
    background-size: 100% auto;
  }
  .hero-content {
    min-height: max(820px, 56.25vw);
    padding-top: calc(56.25vw + 28px);
    padding-bottom: 90px;
  }
  .hero-logo { font-size: 49px; }
  .brand.has-svg-logo { width: 132px; }
  .hero-logo.has-svg-logo { width: min(88vw, 330px); }
  .section-logo.has-svg-logo:not(.logo-inline) { width: min(84vw, 320px); }
  .mini-logo.has-svg-logo { width: 150px; }
  .section-logo.logo-small.has-svg-logo { width: min(74vw, 270px); }
  .footer-logo.has-svg-logo { width: 220px; }
  .hero h1 { font-size: 46px; line-height: 1.18; }
  .hero p { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .limited-offer { display: none; }
  .section-content h2, .faq-container h2, .cta-copy h2 { font-size: 36px; line-height: 1.22; }
  .cards-4 { grid-template-columns: 1fr; }
  .glass-card, .core-card, .compare-card { padding: 28px 24px; }
  .position-scale span {
    min-width: 88px;
    height: 42px;
    padding-inline: 12px;
    border-radius: 17px;
    font-size: 13px;
  }
  .position-scale span::before { border-radius: 14px 14px 50% 50%; }
  .position-scale span::after { height: 12px; }
  .persona-card img { height: 380px; }
  .price-card { padding: 28px 22px; }
  .price-list > div { padding: 16px; }
  .price-list strong { font-size: 28px; }
  .faq-tabs { gap: 8px; margin-bottom: 36px; }
  .faq-tab { flex: 1 1 auto; min-height: 42px; padding-inline: 16px; font-size: 14px; }
  .faq-list summary { padding-left: 20px; font-size: 16px; }
  .faq-list summary b { margin-right: 8px; }
  .faq-list details p { padding-left: 52px; }
  .cta-section, .cta-content { min-height: 770px; }
  .cta-section {
    background-size: auto 48%;
    background-position: 73% bottom;
  }
  .cta-content { padding-top: 78px; }
  .cta-copy h2 { margin-bottom: 14px; }
  .cta-copy h3 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* fixed: Hero limited-offer button radius */
.hero .limited-offer,
.hero .limited-offer-button,
button.limited-offer,
a.limited-offer {
  border-radius: 40px !important;
}

/* PROMKT_svg_to_html_v33: clean gradient edge for requested buttons only
   修正範圍：
   1. Header「試用 / 訂閱」按鈕
   2. Hero「立即訂閱」按鈕
   做法：移除會造成右側黑線的邊緣覆蓋層，改用完整填滿的漸層底層。 */
.site-header .button-gradient,
.hero .hero-subscribe-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0 !important;
  background: transparent !important;
  background-image: none !important;
  background-color: transparent !important;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.site-header .button-gradient::before,
.hero .hero-subscribe-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--gradient);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.site-header .button-gradient::after,
.hero .hero-subscribe-button::after {
  content: none !important;
  display: none !important;
}

.site-header .button-gradient {
  box-shadow: 0 8px 24px rgba(255,90,0,.12);
}

.hero .hero-subscribe-button {
  box-shadow: 0 12px 30px rgba(255,90,0,.16);
}


/* PROMKT_svg_to_html_v34: remove white edge lines on audience persona cards */
.audience-section .persona-card {
  border: none !important;
  outline: none !important;
  overflow: hidden;
  isolation: isolate;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.audience-section .persona-card::before {
  content: none !important;
  display: none !important;
}

.audience-section .persona-card img {
  display: block;
  background: transparent;
  transform: translateX(-50%) translateZ(0);
  -webkit-transform: translateX(-50%) translateZ(0);
}

.audience-section .persona-copy {
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
}


/* PROMKT_svg_to_html_v35: audience desktop layout lock + persona edge cleanup
   目標：依 TA 參考圖固定桌機版排版，避免 persona 圖片跑版、外溢或產生右側／底部白線。 */
@media (min-width: 1101px) {
  .audience-section {
    min-height: 1200px;
    height: 1200px;
    overflow: hidden;
  }

  .audience-content {
    padding-top: 84px;
    padding-bottom: 0;
  }

  .audience-grid {
    position: relative;
    width: 1125px;
    max-width: 100%;
    height: 780px;
    min-height: 780px;
    margin: 0 auto;
  }

  .audience-words {
    top: 211px;
    font-size: clamp(200px, 12.8vw, 245px);
  }

  .persona-card {
    position: absolute;
    width: 332px;
    height: 640px;
    box-sizing: border-box;
    border: 0 !important;
    outline: 0 !important;
    overflow: hidden;
    isolation: isolate;
    contain: paint;
    border-radius: 0 0 20px 20px;
    clip-path: inset(0 round 0 0 20px 20px);
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  .persona-left {
    left: 0;
    right: auto;
    top: 56px;
    transform: none;
  }

  .persona-center {
    left: 50%;
    right: auto;
    top: 138px;
    transform: translateX(-50%);
  }

  .persona-right {
    left: auto;
    right: 0;
    top: 0;
    transform: none;
  }

  .persona-copy {
    box-sizing: border-box;
    width: 100%;
    min-height: 210px;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
  }

  .persona-card img {
    display: block;
    width: calc(109% + 10px);
    max-width: none;
    height: auto;
    left: 50%;
    right: auto;
    bottom: -2px;
    margin: 0;
    object-fit: contain;
    object-position: center bottom;
    background: transparent;
    transform: translateX(-50%) translateZ(0);
    -webkit-transform: translateX(-50%) translateZ(0);
  }

  .persona-card::before {
    content: none !important;
    display: none !important;
  }

  .persona-card::after {
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
  }
}


/* PROMKT_svg_to_html_v36: audience persona cards centered and evenly spaced
   桌機版改為三欄置中等距排版：左右卡片同高，中間卡片較低。 */
@media (min-width: 1101px) {
  .audience-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 332px);
    column-gap: 65px;
    justify-content: center;
    align-items: start;
    width: min(1126px, 100%);
    height: 780px;
    min-height: 780px;
    margin: 0 auto;
  }

  .audience-grid .persona-card {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 332px;
    height: 640px;
    margin: 0;
    transform: none;
    -webkit-transform: none;
  }

  .audience-grid .persona-left,
  .audience-grid .persona-right {
    align-self: start;
    margin-top: 0;
    transform: none;
    -webkit-transform: none;
  }

  .audience-grid .persona-center {
    align-self: start;
    margin-top: 82px;
    transform: none;
    -webkit-transform: none;
  }

  .audience-grid .persona-card img {
    left: 50%;
    right: auto;
    bottom: -2px;
    width: calc(109% + 10px);
    max-width: none;
    transform: translateX(-50%) translateZ(0);
    -webkit-transform: translateX(-50%) translateZ(0);
  }
}


/* PROMKT_svg_to_html_v37: pricing section button edge cleanup
   僅修正 pricing-section section-black 內三個 .button-gradient.button-block。
   使用完整填滿的漸層底層，避免左右側出現多餘邊線。 */
.pricing-section.section-black .price-card .button.button-gradient.button-block {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0 !important;
  outline: 0;
  background: transparent !important;
  background-image: none !important;
  background-color: transparent !important;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.pricing-section.section-black .price-card .button.button-gradient.button-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--gradient);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.pricing-section.section-black .price-card .button.button-gradient.button-block::after {
  content: none !important;
  display: none !important;
}

.pricing-section.section-black .price-card .button.button-gradient.button-block,
.pricing-section.section-black .price-card .button.button-gradient.button-block:visited {
  color: #111;
}

.pricing-section.section-black .price-card .button.button-gradient.button-block:hover {
  filter: brightness(1.04);
}


/* PROMKT_svg_to_html_v38: CTA subscribe button edge cleanup
   僅修正 cta-section 內「立即訂閱」.button.button-gradient。
   使用完整填滿的漸層底層，消除左右側多餘邊線。 */
.cta-section .button.button-gradient {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0 !important;
  outline: 0;
  background: transparent !important;
  background-image: none !important;
  background-color: transparent !important;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.cta-section .button.button-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--gradient);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.cta-section .button.button-gradient::after {
  content: none !important;
  display: none !important;
}

.cta-section .button.button-gradient,
.cta-section .button.button-gradient:visited {
  color: #111;
}

.cta-section .button.button-gradient:hover {
  filter: brightness(1.04);
}


/* PROMKT_svg_to_html_v39: CTA typography/layout refinement
   讓 cta-section 左側文字排版與 Push 參考圖更接近。 */
@media (min-width: 1101px) {
  .cta-content {
    min-height: 820px;
    padding-top: 104px;
    align-items: flex-start;
  }

  .cta-copy {
    width: 760px;
    max-width: 58%;
  }

  .cta-copy h2 {
    display: flex;
    align-items: baseline;
    gap: 22px;
    flex-wrap: nowrap;
    margin: 0 0 38px;
    font-size: clamp(42px, 3.1vw, 58px);
    line-height: 1;
    letter-spacing: -0.065em;
    font-weight: 950;
    color: #050505;
  }

  .cta-copy h2 .section-logo.logo-inline {
    flex: 0 0 auto;
    margin: 0;
    font-size: 1.08em;
    transform: translateY(3px);
  }

  .cta-copy h3 {
    margin: 0;
    font-size: clamp(38px, 2.5vw, 52px);
    line-height: 1.22;
    letter-spacing: -0.052em;
    font-weight: 950;
    color: #111;
  }

  .cta-copy h3 span {
    color: var(--orange);
  }

  .cta-copy .hero-actions {
    margin-top: 72px;
    gap: 26px;
  }

  .cta-copy .button {
    min-width: 218px;
    min-height: 70px;
    padding: 0 30px;
    border-radius: 6px;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.02em;
  }

  .cta-copy small {
    display: block;
    margin-top: 54px;
    font-size: 16px;
    color: rgba(120, 120, 112, .38);
    letter-spacing: -0.01em;
  }
}

@media (max-width: 1100px) {
  .cta-copy h2 {
    gap: 14px;
    margin-bottom: 28px;
    font-size: clamp(44px, 6vw, 64px);
    letter-spacing: -0.055em;
  }

  .cta-copy h3 {
    font-size: clamp(34px, 5vw, 46px);
    line-height: 1.22;
  }

  .cta-copy .hero-actions {
    margin-top: 48px;
  }

  .cta-copy .button {
    min-height: 58px;
    font-size: 20px;
  }
}

@media (max-width: 620px) {
  .cta-copy h2 {
    display: block;
    font-size: 40px;
    line-height: 1.15;
  }

  .cta-copy h2 .section-logo.logo-inline {
    display: inline-block;
    margin: 0 .12em;
    font-size: 1.05em;
    transform: none;
  }

  .cta-copy h3 {
    font-size: 30px;
  }

  .cta-copy .hero-actions {
    gap: 14px;
  }

  .cta-copy .button {
    width: 100%;
    min-width: 0;
  }

  .cta-copy small {
    margin-top: 30px;
  }
}


/* PROMKT_svg_to_html_v44: Footer layout cleanup
   讓 Footer 只依實際存在的內容排版，避免右側因隱藏 div 產生空白。 */
.site-footer {
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.8fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(28px, 4vw, 65px);
  align-items: start;
}

.footer-grid > [hidden],
.footer-grid > [style*="display: none"],
.footer-grid > [style*="display:none"] {
  display: none !important;
}

.footer-links:empty {
  display: none !important;
}

.footer-links {
  min-width: 0;
}

.footer-links a[href="javascript:void(0)"] {
  cursor: default;
}

@media (min-width: 1101px) {
  .footer-grid {
    grid-template-columns: minmax(360px, 2fr) repeat(3, minmax(140px, 1fr));
  }

  .footer-brand {
    max-width: 520px;
  }
}

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}


/* PROMKT_svg_to_html_v45: Footer bottom information aligned right
   將版權、公司資訊、客服資訊移到 Footer 右側。 */
.footer-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 28px;
  text-align: right;
}

.footer-bottom p {
  margin: 0;
  max-width: 620px;
}

.footer-bottom p:first-child {
  margin-left: auto;
}

@media (min-width: 821px) {
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 620px);
    justify-items: end;
  }

  .footer-bottom p:first-child {
    grid-column: 2;
  }

  .footer-bottom p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .footer-bottom {
    align-items: flex-end;
    text-align: right;
  }

  .footer-bottom p {
    margin-left: auto;
  }
}


/* PROMKT_svg_to_html_v46: Footer layout match reference
   Footer 改為左右兩欄：左側品牌與社群，右側版權與客服資訊。
   footer-links 隱藏且不佔位，避免右側空白。 */
.site-footer {
  position: relative;
  padding: 92px 0 72px;
  background: #000;
  overflow: hidden;
}

.site-footer .footer-grid,
.site-footer .footer-bottom {
  width: var(--container);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: minmax(360px, 520px) minmax(420px, 1fr) !important;
  gap: 80px !important;
  align-items: start;
}

.footer-brand {
  grid-column: 1;
  max-width: 520px;
}

.footer-links {
  display: none !important;
}

.footer-bottom {
  position: absolute;
  top: 116px;
  left: 50%;
  transform: translateX(-50%);
  display: grid !important;
  grid-template-columns: minmax(360px, 520px) minmax(420px, 1fr);
  gap: 80px;
  align-items: start;
  justify-content: stretch;
  margin-top: 0 !important;
  text-align: right;
  color: #aaa;
  pointer-events: none;
}

.footer-bottom p {
  grid-column: 2;
  justify-self: end;
  width: min(100%, 620px);
  max-width: 620px;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  text-align: right;
}

.footer-bottom p + p {
  margin-top: 34px;
}

.footer-logo img,
.footer-logo .logo-svg {
  width: 292px;
  max-width: 100%;
  height: auto;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-brand > p {
  margin: 16px 0 38px 0 !important;
  color: #bbb;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.socials {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.socials span {
  margin-right: 6px;
}

.socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
}

.socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .site-footer {
    padding: 76px 0 56px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .footer-bottom {
    position: static;
    transform: none;
    margin-top: 44px !important;
    text-align: left;
    pointer-events: auto;
  }

  .footer-bottom p {
    grid-column: 1;
    justify-self: start;
    text-align: left;
    max-width: 100%;
  }

  .footer-bottom p + p {
    margin-top: 16px;
  }
}

@media (max-width: 520px) {
  .footer-logo img,
  .footer-logo .logo-svg {
    width: 230px;
  }

  .footer-brand > p {
    font-size: 20px;
  }

  .socials {
    font-size: 17px;
    gap: 12px;
  }

  .socials a {
    width: 42px;
    height: 42px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

