:root {
    --bg: #f6f7f4;
    --paper: #fffdfa;
    --paper-strong: #ffffff;
    --ink: #101417;
    --muted: #66706d;
    --muted-2: #8a938f;
    --line: #dde3dd;
    --line-dark: rgba(255, 255, 255, .16);
    --accent: #F4155C;
    --accent-dark: #C30944;
    --accent-2: #fff1f6;
    --accent-soft-strong: #ffe3ed;
    --blue: #b7073d;
    --dark: #111514;
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow: 0 32px 90px rgba(39, 48, 45, .13);
    --shadow-soft: 0 18px 52px rgba(39, 48, 45, .10);
    --ease: cubic-bezier(.22, .72, 0, 1);
}

[x-cloak] {
    display: none !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: "Noto Sans TC", "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .42;
    background-image:
        linear-gradient(rgba(16, 20, 23, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 20, 23, .035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

picture {
    display: block;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.lp-skip {
    position: fixed;
    left: 18px;
    top: 18px;
    z-index: 120;
    transform: translateY(-140%);
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    font-weight: 900;
    transition: transform .45s var(--ease);
}

.lp-skip:focus {
    transform: translateY(0);
}

.lp-container {
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto;
}

.lp-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 80;
    padding: 18px 20px 0;
}

.lp-nav-shell {
    width: min(1180px, 100%);
    min-height: 66px;
    margin: 0 auto;
    padding: 0 10px 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(16, 20, 23, .08);
    border-radius: 999px;
    background: var(--paper);
    box-shadow: 0 20px 70px rgba(39, 48, 45, .12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Outfit", "Noto Sans TC", sans-serif;
    font-size: 20px;
    font-weight: 900;
}

.lp-brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 14px;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 8px 22px rgba(230, 11, 79, .16);
}

.lp-brand-name {
    color: var(--accent-dark);
    letter-spacing: 0;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.lp-nav-links a:not(.lp-button):hover {
    color: var(--ink);
}

.lp-menu-button {
    display: none;
    position: relative;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(16, 20, 23, .10);
    border-radius: 999px;
    background: var(--paper-strong);
    color: var(--ink);
}

.lp-menu-button span {
    position: absolute;
    left: 13px;
    right: 13px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform .55s var(--ease), opacity .55s var(--ease);
}

.lp-menu-button span:nth-child(1) {
    top: 16px;
}

.lp-menu-button span:nth-child(2) {
    top: 22px;
}

.lp-menu-button span:nth-child(3) {
    top: 28px;
}

.lp-menu-button.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.lp-menu-button.is-open span:nth-child(2) {
    opacity: 0;
}

.lp-menu-button.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.lp-mobile-panel {
    position: fixed;
    inset: 90px 18px auto;
    z-index: 90;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(16, 20, 23, .08);
    border-radius: 28px;
    background: var(--paper);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.lp-mobile-panel a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 16px;
    font-weight: 900;
}

.lp-mobile-panel a:hover {
    background: var(--accent-2);
}

.lp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 18px 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .55s var(--ease), box-shadow .55s var(--ease), background .55s var(--ease), color .55s var(--ease), border-color .55s var(--ease);
}

.lp-button:focus-visible,
.lp-menu-button:focus-visible,
.lp-faq-button:focus-visible {
    outline: 3px solid rgba(230, 11, 79, .24);
    outline-offset: 3px;
}

.lp-button:active {
    transform: scale(.985) translateY(1px);
}

.lp-button-primary {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 18px 42px rgba(230, 11, 79, .24);
}

.lp-button-primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 22px 52px rgba(230, 11, 79, .30);
}

.lp-button-secondary {
    color: var(--ink);
    border-color: rgba(16, 20, 23, .10);
    background: #fff;
}

.lp-button-secondary:hover {
    border-color: rgba(230, 11, 79, .24);
    background: var(--accent-2);
}

.lp-button-dot {
    width: 30px;
    height: 30px;
    display: grid !important;
    place-items: center;
    margin-left: 12px;
    border-radius: 999px;
    color: currentColor !important;
    background: rgba(255, 255, 255, .14);
    transition: transform .55s var(--ease), background .55s var(--ease);
}

.lp-button-dot::before {
    content: attr(data-icon);
}

.lp-button-secondary .lp-button-dot {
    background: rgba(16, 20, 23, .06);
}

.lp-button:hover .lp-button-dot {
    transform: translate(3px, 0px) scale(1.04);
}

.lp-text-link {
    display: inline-flex;
    align-items: center;
    min-height: 50px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.lp-text-link:hover {
    color: var(--ink);
}

.lp-eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}

.lp-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.lp-hero {
    min-height: 100dvh;
    padding: 132px 0 74px;
    display: flex;
    align-items: center;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
    gap: 54px;
    align-items: center;
}

.lp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 12px;
    border: 1px solid rgba(230, 11, 79, .18);
    border-radius: 999px;
    background: var(--accent-2);
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 900;
}

.lp-hero h1 {
    max-width: 820px;
    margin: 0;
    font-family: "Outfit", "Noto Sans TC", sans-serif;
    font-size: clamp(44px, 6vw, 70px);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: 0;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.lp-hero-copy {
    max-width: 690px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.78;
    font-weight: 600;
}

.lp-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.lp-proof-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 36px;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.lp-proof-point {
    min-height: 104px;
    padding: 16px;
    border-radius: 20px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(16, 20, 23, .07);
}

.lp-proof-point b {
    display: block;
    font-family: "Outfit", "Noto Sans TC", sans-serif;
    font-size: 18px;
    font-weight: 900;
}

.lp-proof-point span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 700;
}

.lp-mobile-trust,
.lp-mobile-path {
    display: none;
}

.lp-stage {
    position: relative;
    min-height: 610px;
}

.lp-stage-shell,
.lp-shot-shell {
    border: 1px solid rgba(16, 20, 23, .08);
    border-radius: var(--radius-xl);
    background: #fff;
    padding: 8px;
    box-shadow: var(--shadow);
}

.lp-stage-main {
    overflow: hidden;
    border-radius: 27px;
    background: var(--dark);
}

.lp-stage-main img {
    width: 100%;
    aspect-ratio: 1904 / 907;
    object-fit: cover;
    object-position: center top;
}

.lp-stage-main picture {
    width: 100%;
}

.lp-mobile-art {
    display: block;
}

.lp-stage-phone {
    position: absolute;
    right: -22px;
    bottom: 18px;
    width: min(210px, 34vw);
    padding: 8px;
    border: 1px solid rgba(16, 20, 23, .10);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(17, 21, 20, .18);
}

.lp-stage-phone img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: top;
    border-radius: 23px;
}

.lp-stage-admin {
    position: absolute;
    left: -26px;
    bottom: -34px;
    width: min(370px, 52vw);
    padding: 8px;
    border: 1px solid rgba(16, 20, 23, .09);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 26px 70px rgba(39, 48, 45, .16);
}

.lp-stage-admin img {
    width: 100%;
    height: 205px;
    object-fit: cover;
    object-position: top;
    border-radius: 19px;
}

.lp-stage-admin picture {
    width: 100%;
}

.lp-float-note {
    position: absolute;
    top: -18px;
    right: 32px;
    max-width: 210px;
    padding: 16px;
    border-radius: 22px;
    color: #fff;
    background: var(--dark);
    box-shadow: 0 20px 54px rgba(17, 21, 20, .20);
}

.lp-float-note strong {
    display: block;
    font-size: 18px;
    font-weight: 900;
}

.lp-float-note span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 700;
}

.lp-section {
    padding: 98px 0;
}

.lp-section-tight {
    padding-top: 48px;
}

.lp-section-head {
    max-width: 760px;
    margin-bottom: 40px;
}

.lp-section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.lp-title {
    margin: 0;
    font-family: "Outfit", "Noto Sans TC", sans-serif;
    font-size: clamp(34px, 4.8vw, 62px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
    text-wrap: balance;
}

.lp-copy {
    max-width: 680px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
    font-weight: 600;
}

.lp-section-head.center .lp-copy {
    margin-left: auto;
    margin-right: auto;
}

.lp-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
}

.lp-showcase {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border-radius: var(--radius-xl);
    background: var(--paper-strong);
    box-shadow: inset 0 0 0 1px rgba(16, 20, 23, .07);
}

.lp-showcase img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: top;
    transition: transform .9s var(--ease);
}

.lp-showcase picture {
    width: 100%;
    height: 100%;
}

.lp-showcase:hover img,
.lp-shot:hover img {
    transform: scale(1.035);
}

.lp-showcase-caption {
    position: absolute;
    left: 22px;
    bottom: 22px;
    width: min(380px, calc(100% - 44px));
    padding: 18px;
    border-radius: 22px;
    color: #fff;
    background: var(--dark);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.lp-showcase-caption strong,
.lp-mini-card strong,
.lp-text-card strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
}

.lp-showcase-caption span,
.lp-mini-card span,
.lp-text-card p {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .70);
    line-height: 1.65;
    font-weight: 600;
}

.lp-product-side {
    display: grid;
    gap: 18px;
}

.lp-shot {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(16, 20, 23, .07);
}

.lp-shot img {
    width: 100%;
    height: 285px;
    object-fit: cover;
    object-position: top;
    transition: transform .9s var(--ease);
}

.lp-shot picture {
    width: 100%;
}

.lp-mini-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    color: #fff;
    background: var(--dark);
    box-shadow: var(--shadow-soft);
}

.lp-mini-card span {
    color: rgba(255, 255, 255, .72);
}

.lp-admin-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 22px;
    align-items: center;
}

.lp-admin-stack {
    display: grid;
    gap: 14px;
}

.lp-step-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(16, 20, 23, .07);
}

.lp-step-card b {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    color: #fff;
    background: var(--accent);
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 900;
}

.lp-step-card strong {
    display: block;
    font-size: 18px;
    font-weight: 900;
}

.lp-step-card span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 600;
}

.lp-admin-shot {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.lp-admin-shot .lp-shot img {
    height: 360px;
}

.lp-ai-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
    grid-auto-flow: dense;
    margin-top: 18px;
}

.lp-ai-card {
    min-height: 270px;
    padding: 24px;
    border-radius: 28px;
    background: var(--paper-strong);
    box-shadow: inset 0 0 0 1px rgba(16, 20, 23, .07);
}

.lp-ai-card.is-dark {
    color: #fff;
    background: var(--dark);
    box-shadow: 0 26px 70px rgba(17, 21, 20, .15);
}

.lp-ai-card.is-image {
    overflow: hidden;
    padding: 8px;
}

.lp-ai-card.is-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border-radius: 22px;
    object-fit: cover;
    object-position: top;
}

.lp-ai-card h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 900;
}

.lp-ai-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.72;
    font-weight: 600;
}

.lp-ai-card.is-dark p {
    color: rgba(255, 255, 255, .72);
}

.lp-ai-state {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--accent-dark);
    background: var(--accent-2);
    font-size: 12px;
    font-weight: 900;
}

.lp-span-7 {
    grid-column: span 7;
}

.lp-span-5 {
    grid-column: span 5;
}

.lp-span-4 {
    grid-column: span 4;
}

.lp-reward {
    padding: 42px;
    border-radius: 38px;
    color: #fff;
    background: var(--dark);
    box-shadow: var(--shadow);
}

.lp-reward-grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    gap: 34px;
    align-items: center;
}

.lp-reward .lp-eyebrow,
.lp-reward .lp-copy {
    color: rgba(255, 255, 255, .72);
}

.lp-reward .lp-title {
    color: #fff;
}

.lp-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-flow-card {
    min-height: 190px;
    padding: 22px;
    border-radius: 24px;
    background: #1b2421;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .10);
}

.lp-flow-card b {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 22px;
    border-radius: 999px;
    color: var(--dark);
    background: #fff;
    font-family: "Outfit", sans-serif;
}

.lp-flow-card strong {
    display: block;
    font-size: 20px;
    font-weight: 900;
}

.lp-flow-card span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .68);
    line-height: 1.6;
    font-weight: 600;
}

.lp-case-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.lp-case-card {
    overflow: hidden;
    border-radius: 28px;
    background: var(--paper-strong);
    box-shadow: inset 0 0 0 1px rgba(16, 20, 23, .07), 0 16px 46px rgba(39, 48, 45, .08);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.lp-case-card:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 0 0 1px rgba(16, 20, 23, .07), 0 24px 64px rgba(39, 48, 45, .14);
}

.lp-case-card a {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    color: inherit;
}

.lp-case-card img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: top;
    background: #eef2ee;
}

.lp-case-card .lp-case-category {
    align-self: flex-start;
    margin: 16px 16px 0;
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--accent-dark);
    background: var(--accent-2);
    font-size: 12px;
    font-weight: 900;
}

.lp-case-card strong {
    display: block;
    margin: 12px 16px 0;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
}

.lp-case-card small {
    display: block;
    margin: 8px 16px 18px;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 700;
}

.lp-inline-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
    padding: 22px;
    border-radius: 28px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(16, 20, 23, .07), 0 18px 52px rgba(39, 48, 45, .09);
}

.lp-inline-cta strong {
    display: block;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.35;
    font-weight: 900;
}

.lp-inline-cta span {
    display: block;
    /* margin-top: 6px; */
    color: var(--muted);
    line-height: 1.65;
    font-weight: 650;
}

.lp-inline-cta .lp-button {
    min-width: 190px;
}

.lp-inline-cta-soft {
    margin-top: 22px;
    background: var(--accent-2);
}

.lp-final-cta {
    margin-top: 28px;
}

.lp-pricing {
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(360px, 1.04fr);
    gap: 28px;
    align-items: center;
    padding: 42px;
    border-radius: 38px;
    background: var(--paper-strong);
    box-shadow: inset 0 0 0 1px rgba(16, 20, 23, .07), var(--shadow-soft);
}

.lp-price-card {
    padding: 30px;
    border-radius: 30px;
    background: #f4f6f3;
    box-shadow: inset 0 0 0 1px rgba(16, 20, 23, .07);
}

.lp-price-card h3 {
    margin: 0 0 18px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 900;
}

.lp-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
}

.lp-price strong {
    font-family: "Outfit", sans-serif;
    font-size: 54px;
    line-height: 1;
    font-weight: 900;
}

.lp-price span,
.lp-price-card p,
.lp-plan-content {
    color: var(--muted);
    line-height: 1.72;
    font-weight: 650;
}

.lp-plan-content {
    margin-top: 16px;
}

.lp-plan-content ul,
.lp-plan-content ol {
    padding-left: 1.3em;
}

.lp-faq-grid {
    display: grid;
    grid-template-columns: minmax(260px, .42fr) minmax(0, .58fr);
    gap: 34px;
    align-items: start;
}

.lp-faq-list {
    display: grid;
    gap: 10px;
}

.lp-faq-item {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(16, 20, 23, .07);
}

.lp-faq-button {
    width: 100%;
    min-height: 66px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.lp-faq-mark {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--accent-dark);
    background: var(--accent-2);
    font-family: "Outfit", sans-serif;
    font-weight: 900;
}

.lp-faq-answer {
    padding: 0 20px 20px;
    color: var(--muted);
    line-height: 1.72;
    font-weight: 600;
}

.lp-footer {
    padding: 52px 0 96px;
    border-top: 1px solid rgba(16, 20, 23, .08);
    background: #fff;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(160px, .4fr));
    gap: 32px;
}

.lp-footer-title {
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    font-weight: 900;
}

.lp-footer p {
    max-width: 410px;
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.72;
    font-weight: 600;
}

.lp-footer h4 {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 900;
}

.lp-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-footer li+li {
    margin-top: 10px;
}

.lp-footer a {
    color: var(--muted);
    font-weight: 750;
}

.lp-footer a:hover {
    color: var(--ink);
}

.lp-mobile-cta {
    position: fixed;
    inset: auto 14px 14px;
    z-index: 95;
    display: none;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    border-radius: 999px;
    color: #fff;
    background: var(--dark);
    box-shadow: 0 18px 48px rgba(17, 21, 20, .26);
    font-weight: 900;
}

.lp-mobile-cta small {
    color: rgba(255, 255, 255, .66);
    font-size: 11px;
    font-weight: 800;
}

.reveal-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.is-enhanced .reveal-on-scroll {
    opacity: 0;
    transform: translateY(34px);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1080px) {
    .lp-nav-links {
        display: none;
    }

    .lp-menu-button {
        display: block;
    }

    .lp-hero-grid,
    .lp-admin-grid,
    .lp-reward-grid,
    .lp-pricing,
    .lp-faq-grid {
        grid-template-columns: 1fr;
    }

    .lp-stage {
        min-height: 540px;
    }

    .lp-ai-grid {
        grid-template-columns: 1fr;
    }

    .lp-case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-span-4,
    .lp-span-5,
    .lp-span-7 {
        grid-column: span 1;
    }
}

@media (max-width: 720px) {
    .lp-container {
        width: min(1240px, calc(100% - 28px));
    }

    body {
        background: var(--bg);
    }

    .lp-nav {
        padding: 10px 10px 0;
    }

    .lp-nav-shell {
        min-height: 60px;
    }

    .lp-brand {
        font-size: 18px;
    }

    .lp-hero {
        min-height: auto;
        padding: 92px 0 40px;
    }

    .lp-hero-grid {
        gap: 24px;
    }

    .lp-kicker {
        margin-bottom: 14px;
        padding: 7px 10px;
        font-size: 12px;
    }

    .lp-hero h1 {
        font-size: clamp(32px, 9vw, 40px);
        line-height: 1.08;
        text-wrap: balance;
    }

    .lp-hero-copy,
    .lp-copy {
        font-size: 16px;
    }

    .lp-hero-copy {
        margin-top: 16px;
        line-height: 1.68;
    }

    .lp-actions,
    .lp-actions .lp-button {
        width: 100%;
    }

    .lp-actions {
        margin-top: 22px;
        gap: 10px;
    }

    .lp-button {
        min-height: 52px;
    }

    .lp-proof-points {
        display: none;
    }

    .lp-mobile-trust {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 18px;
    }

    .lp-mobile-trust span {
        min-height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        color: #22302b;
        background: rgba(255, 255, 255, .72);
        box-shadow: inset 0 0 0 1px rgba(16, 20, 23, .08), 0 10px 26px rgba(39, 48, 45, .07);
        font-size: 13px;
        font-weight: 900;
    }

    .lp-flow {
        grid-template-columns: 1fr;
    }

    .lp-stage {
        min-height: auto;
        display: grid;
        gap: 0;
        margin-top: 4px;
    }

    .lp-stage-shell {
        padding: 10px;
        border-radius: 34px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .03)),
            #111514;
        box-shadow: 0 30px 80px rgba(17, 21, 20, .20);
    }

    .lp-stage-main {
        padding: 8px;
        border-radius: 26px;
        background: #0d1110;
    }

    .lp-stage-main::before {
        content: "HOHOMY 商城預覽";
        display: flex;
        align-items: center;
        min-height: 34px;
        padding: 0 12px;
        color: rgba(255, 255, 255, .70);
        font-size: 12px;
        font-weight: 900;
    }

    .lp-stage-phone,
    .lp-stage-admin,
    .lp-float-note {
        display: none;
    }

    .lp-stage-phone img {
        height: 360px;
    }

    .lp-stage-admin img,
    .lp-admin-shot .lp-shot img,
    .lp-showcase img,
    .lp-shot img,
    .lp-ai-card.is-image img {
        min-height: 0;
        height: 260px;
    }

    .lp-stage-main .lp-mobile-art,
    .lp-stage-admin .lp-mobile-art,
    .lp-showcase .lp-mobile-art,
    .lp-shot .lp-mobile-art {
        display: flex;
        justify-content: center;
        width: 100%;
        height: auto;
    }

    .lp-stage-main .lp-mobile-art img {
        width: min(100%, 344px);
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
        object-position: center top;
        margin: 0 auto;
        border-radius: 20px;
    }

    .lp-stage-admin .lp-mobile-art img {
        width: min(100%, 309px);
        height: auto;
        object-fit: contain;
        object-position: center top;
        margin: 0 auto;
    }

    .lp-showcase .lp-mobile-art {
        padding: 10px;
        border-radius: 28px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .62));
    }

    .lp-showcase .lp-mobile-art img,
    .lp-shot .lp-mobile-art img {
        width: min(100%, 344px);
        height: auto;
        min-height: 0;
        object-fit: contain;
        object-position: center top;
        margin: 0 auto;
        border-radius: 18px;
    }

    .lp-showcase-caption {
        position: static;
        width: auto;
        margin: 10px;
        padding: 18px;
        color: var(--ink);
        background: #fff;
        box-shadow: inset 0 0 0 1px rgba(16, 20, 23, .07), 0 18px 44px rgba(39, 48, 45, .08);
    }

    .lp-showcase-caption span {
        color: var(--muted);
    }

    .lp-section {
        padding: 58px 0;
    }

    .lp-section-tight {
        padding-top: 44px;
    }

    .lp-title {
        font-size: clamp(28px, 8.4vw, 38px);
        line-height: 1.12;
    }

    .lp-section-head {
        margin-bottom: 22px;
    }

    .lp-mobile-path {
        display: grid;
        gap: 10px;
        margin: 0 0 18px;
        padding: 0;
        list-style: none;
    }

    .lp-mobile-path li {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 12px;
        align-items: center;
        padding: 14px;
        border-radius: 22px;
        background: #fff;
        box-shadow: inset 0 0 0 1px rgba(16, 20, 23, .07), 0 14px 34px rgba(39, 48, 45, .07);
    }

    .lp-mobile-path b {
        grid-row: span 2;
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        border-radius: 14px;
        color: #fff;
        background: var(--dark);
        font-family: "Outfit", sans-serif;
        font-size: 13px;
        font-weight: 900;
    }

    .lp-mobile-path strong {
        font-size: 16px;
        font-weight: 900;
    }

    .lp-mobile-path span {
        color: var(--muted);
        font-size: 13px;
        font-weight: 700;
        line-height: 1.5;
    }

    .lp-product-grid,
    .lp-product-side,
    .lp-admin-shot {
        gap: 12px;
    }

    .lp-mini-card {
        display: none;
    }

    .lp-shot-shell {
        padding: 6px;
        border-radius: 28px;
    }

    .lp-admin-stack {
        gap: 10px;
    }

    .lp-step-card {
        grid-template-columns: 36px minmax(0, 1fr);
        padding: 14px;
        border-radius: 20px;
    }

    .lp-step-card b {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 12px;
    }

    .lp-admin-shot .lp-shot-shell:first-child {
        display: none;
    }

    .lp-ai-grid {
        gap: 10px;
        margin-top: 12px;
    }

    .lp-ai-card {
        min-height: auto;
        padding: 18px;
        border-radius: 22px;
    }

    .lp-ai-card.is-image,
    .lp-ai-card.is-dark {
        display: none;
    }

    .lp-ai-card h3 {
        font-size: 20px;
    }

    .lp-ai-card p {
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.65;
    }

    .lp-reward .lp-copy {
        color: rgba(255, 255, 255, .74);
    }

    .lp-flow {
        gap: 8px;
    }

    .lp-flow-card {
        min-height: auto;
        display: grid;
        grid-template-columns: 36px minmax(0, 1fr);
        column-gap: 12px;
        padding: 16px;
        border-radius: 20px;
    }

    .lp-flow-card b {
        grid-row: span 2;
        width: 36px;
        height: 36px;
        margin-bottom: 0;
    }

    .lp-flow-card strong {
        font-size: 17px;
    }

    .lp-flow-card span {
        margin-top: 4px;
        font-size: 13px;
    }

    .lp-case-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 14px;
        margin-inline: -14px;
        padding: 0 14px 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .lp-case-grid::-webkit-scrollbar {
        display: none;
    }

    .lp-case-card {
        flex: 0 0 82%;
        scroll-snap-align: start;
        border-radius: 24px;
    }

    .lp-case-card:hover {
        transform: none;
    }

    .lp-case-card strong {
        font-size: 17px;
    }

    .lp-case-card img {
        aspect-ratio: 16 / 10;
    }

    .lp-reward,
    .lp-pricing,
    .lp-price-card,
    .lp-inline-cta {
        padding: 22px;
        border-radius: 28px;
    }

    .lp-inline-cta {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .lp-inline-cta .lp-button {
        width: 100%;
        min-width: 0;
    }

    .lp-inline-cta strong {
        font-size: 19px;
    }

    .lp-pricing .lp-actions .lp-button-secondary {
        display: none;
    }

    .lp-price strong {
        font-size: 46px;
    }

    .lp-faq-button {
        min-height: 58px;
        padding: 0 16px;
        font-size: 15px;
    }

    .lp-faq-answer {
        padding: 0 16px 18px;
        font-size: 14px;
    }

    .lp-footer-grid {
        grid-template-columns: 1fr;
    }

    body.show-mobile-cta .lp-mobile-cta {
        display: flex;
    }
}
