:root {
    --ink: #0A0A0A;
    --ink-2: #161616;
    --coral: #EA5B3C;
    --coral-hover: #D14C30;
    --coral-soft: #FDE8E1;
    --bone: #F3EFEA;
    --canvas: #F6F5F3;
    --muted: #6B6560;
    --line: #E6E1DC;
    --surface: #FFFFFF;
    --text: #121212;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 12px 40px rgba(18, 18, 18, 0.08);
    --font: "PingFang TC", "Microsoft JhengHei", "Noto Sans TC", -apple-system, "Segoe UI", sans-serif;
    --display: -apple-system, "Segoe UI", "PingFang TC", "Microsoft JhengHei", sans-serif;
    --tap: 44px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--canvas);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

:focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: 2px;
}

[hidden] { display: none !important; }

a { color: var(--coral); }

.nav {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(246, 245, 243, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.nav__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text);
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 0.95rem;
}

.brand img { height: 28px; width: auto; }

.nav__links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.35rem 1.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.nav__links a:hover { color: var(--text); }

.nav__links a.is-current { color: var(--text); font-weight: 650; }

.nav__end {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-left: auto;
}

@media (max-width: 860px) {
    .nav__inner { padding: 0.7rem 1rem 0.8rem; }
    .nav__links {
        order: 3;
        flex: 1 1 100%;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0.15rem 0;
    }
    .nav__links::-webkit-scrollbar { display: none; }
    .lang-switch__current { display: none; }
    .nav__end .btn--secondary { display: none; }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__cta .btn { width: 100%; }
}

.lang-switch { position: relative; }

.lang-switch__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 36px;
    padding: 0 0.55rem;
    border: 0;
    background: transparent;
    color: var(--muted);
    font: 500 14px/1.2 var(--font);
    cursor: pointer;
    border-radius: 8px;
    white-space: nowrap;
}

.lang-switch__btn:hover,
.lang-switch__btn[aria-expanded="true"] {
    color: var(--text);
    background: var(--surface);
}

.lang-switch__globe { flex-shrink: 0; }

.lang-switch__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    min-width: 12.5rem;
    max-height: min(70vh, 22rem);
    overflow-y: auto;
    margin: 0;
    padding: 0.35rem;
    list-style: none;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    z-index: 40;
}

.lang-switch__menu a {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.lang-switch__menu a:hover { background: var(--bone); color: var(--text); }

.lang-switch__menu a.is-on {
    font-weight: 700;
    background: var(--bone);
}

/* .nav__links a 權重高於 .btn--primary，否則珊瑚底會套 muted 字色 */
.nav__links a.btn {
    font-weight: 700;
    -webkit-font-smoothing: subpixel-antialiased;
}
.nav__links a.btn--primary,
.nav__links a.btn--primary:hover {
    color: #fff;
}
.nav__links a.btn--secondary,
.nav__links a.btn--secondary:hover {
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--tap);
    padding: 0 1.1rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font: 600 14px/1.2 var(--font);
    text-decoration: none;
    cursor: pointer;
}

.btn--primary { background: var(--coral); color: #fff; border-radius: 999px; }
.btn--primary:hover { background: var(--coral-hover); color: #fff; }
.btn--secondary {
    background: transparent;
    border-color: var(--line);
    color: var(--text);
    border-radius: 999px;
}
.btn--secondary:hover { background: var(--surface); color: var(--text); }
.btn--on-dark {
    background: var(--coral);
    color: #fff;
    border-radius: 999px;
}
.btn--on-dark:hover { background: var(--coral-hover); color: #fff; }

.hero {
    overflow: hidden;
    padding: 4.5rem 0 5rem;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    width: 22vw;
    max-width: 280px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--coral);
    opacity: 0.18;
    right: 8%;
    bottom: 10%;
    top: auto;
    pointer-events: none;
}

.hero__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    gap: 2.5rem;
    position: relative;
}

@media (min-width: 960px) {
    .hero__inner {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: center;
        gap: 3.5rem;
    }
    .hero--brand .hero__inner {
        grid-template-columns: 1fr;
    }
}

.hero--brand { padding-bottom: 3.25rem; }
.hero--brand .hero__inner > div { max-width: 42rem; }
.hero--brand h1 { max-width: 14em; }
.hero--brand .hero__sub { max-width: 46ch; }
.hero--brand::before {
    left: auto;
    right: 12%;
    top: 18%;
    bottom: auto;
    opacity: 0.12;
}

.spotlight {
    background: var(--bone);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 4.5rem 0;
}

.spotlight__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.spotlight h2 {
    font-family: var(--display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 650;
    letter-spacing: -0.03em;
    margin: 0 0 0.85rem;
}

.spotlight p {
    color: var(--muted);
    max-width: 42ch;
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
}

.spotlight__cta {
    color: var(--text);
    font-weight: 650;
    text-decoration: none;
}

.spotlight__cta:hover { color: var(--coral); }

.story {
    background: var(--bone);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 4.5rem 0;
}

.story__inner {
    max-width: 40rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.story h2 {
    font-family: var(--display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 650;
    letter-spacing: -0.03em;
    margin: 0 0 1.25rem;
    line-height: 1.2;
}

.story p {
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 0 0 1.15rem;
}

.story p:last-child { margin-bottom: 0; }

.beliefs {
    display: grid;
    gap: 1.75rem;
}

@media (min-width: 800px) {
    .beliefs { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
}

.beliefs article {
    padding-top: 1.1rem;
    border-top: 2px solid var(--coral);
}

.beliefs h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 650;
    line-height: 1.35;
}

.beliefs p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.why-prose h2 {
    margin-top: 2.75rem;
    font-size: 1.25rem;
}

.why-prose h2:first-of-type { margin-top: 2rem; }

.why-prose p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
}

.mark-explain {
    display: flex;
    gap: 1.15rem;
    align-items: flex-start;
    margin-top: 1rem;
    padding: 1.25rem 1.35rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.mark-explain img {
    height: 56px;
    width: auto;
    flex-shrink: 0;
}

.mark-explain p { margin: 0; }

.hero__logo {
    height: clamp(2.5rem, 7vw, 3.75rem);
    width: auto;
    display: block;
    margin-bottom: 1.25rem;
}

.hero__kicker {
    margin: 0 0 0.85rem;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(2rem, 5vw, 3.35rem);
    font-weight: 650;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
    max-width: 10em;
    line-height: 1.15;
}

.hero__sub {
    color: var(--muted);
    margin: 0 0 1.75rem;
    max-width: 40ch;
    font-size: 1.05rem;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.mock {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 280px;
}

.mock__bar {
    display: flex;
    gap: 6px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    background: var(--bone);
}

.mock__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #D4D0C8;
}

.mock__body {
    display: grid;
    grid-template-columns: 72px 1fr;
    min-height: 240px;
}

.mock__side {
    background: var(--bone);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock__nav {
    height: 28px;
    border-radius: 6px;
    background: rgba(18, 18, 18, 0.06);
}

.mock__nav.is-on { background: var(--coral-soft); }

.mock__main { padding: 14px; }

.mock__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.mock__stat {
    background: var(--canvas);
    border-radius: 8px;
    padding: 10px 8px;
}

.mock__stat b { display: block; font-size: 1.1rem; }
.mock__stat span { font-size: 10px; color: var(--muted); }

.mock__tables {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.mock__table {
    aspect-ratio: 1.2;
    border-radius: 8px;
    background: #247A54;
    border: 1px solid #1E6646;
}

.mock__table.is-busy {
    background: #A33B40;
    border-color: #8A3036;
}

.section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 4.5rem 1.25rem;
}

.section--narrow { max-width: 720px; }

.why-prose h1 {
    font-family: var(--display);
    font-size: clamp(1.85rem, 4.5vw, 2.65rem);
    font-weight: 650;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
    line-height: 1.2;
    max-width: 14em;
}

.section h1,
.section h2 {
    font-family: var(--display);
    font-size: clamp(1.6rem, 4vw, 2.15rem);
    font-weight: 650;
    letter-spacing: -0.03em;
    margin: 0 0 0.75rem;
}

.lede {
    color: var(--muted);
    margin: 0 0 2rem;
    max-width: 46ch;
}

.modules {
    display: grid;
    gap: 1rem;
}
@media (min-width: 720px) {
    .modules { grid-template-columns: 1.2fr 1fr 1fr; }
}

.module {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.4rem;
    text-decoration: none;
    color: inherit;
    display: block;
}

.module:hover { border-color: var(--coral); }

.module__status {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--coral);
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.module__status.is-soon { color: var(--muted); }

.module h3 { margin: 0 0 0.4rem; font-size: 1.15rem; }
.module p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.feature {
    display: grid;
    gap: 1.5rem;
    padding: 2.5rem 0;
    border-top: 1px solid var(--line);
}

@media (min-width: 768px) {
    .feature {
        grid-template-columns: 180px 1fr;
        align-items: center;
        gap: 3rem;
    }
}

.feature__visual {
    min-height: 140px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 2rem;
    font-weight: 700;
}

.feature h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.feature p { margin: 0; color: var(--muted); }

.steps { display: grid; gap: 1.25rem; }
.step {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.35rem;
}
.step b { color: var(--coral); }

.legal-block { display: none; }
.legal-block.is-on { display: block; }

.legal h2 { margin-top: 2rem; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--muted); }
.legal ul { padding-left: 1.2rem; }
.notice {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.9rem 1rem;
    font-size: 14px;
    color: var(--muted);
}

.cta {
    background: var(--bone);
    color: var(--text);
    padding: 4rem 1.25rem;
    text-align: center;
    border-top: 1px solid var(--line);
}

.cta h2 {
    font-family: var(--display);
    font-size: clamp(1.6rem, 4vw, 2.15rem);
    margin: 0 0 0.75rem;
}

.cta p { color: var(--muted); margin: 0 0 1.5rem; }

.cta .btn { margin: 0 0.35rem 0.5rem; }

.footer {
    background: var(--canvas);
    color: var(--muted);
    padding: 2rem 1.25rem;
    border-top: 1px solid var(--line);
    font-size: 14px;
}

.footer__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.footer a { color: var(--text); text-decoration: none; }
.footer a:hover { color: var(--coral); }
.footer strong { color: var(--text); letter-spacing: 0.08em; }
.footer nav { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; }

.price {
    display: grid;
    gap: 1rem;
}
@media (min-width: 700px) {
    .price { grid-template-columns: 1fr 1fr; }
}
.price article {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}
.price h3 { margin: 0 0 0.5rem; }
.price p { margin: 0; color: var(--muted); }

.trust {
    display: grid;
    gap: 1rem;
}
@media (min-width: 700px) {
    .trust { grid-template-columns: 1fr 1fr; }
}
.trust article {
    border-top: 1px solid var(--line);
    padding-top: 1.1rem;
}
.trust h3 { margin: 0 0 0.4rem; font-size: 1rem; }
.btn--lg {
    min-height: 52px;
    padding: 0 1.45rem;
    font-size: 15px;
}

#story,
#less { scroll-margin-top: 4.5rem; }

.hero--story {
    padding: 2.75rem 0 3.25rem;
    min-height: 0;
}
.hero--story .hero__inner {
    max-width: 1120px;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.hero--story .hero__h {
    display: flex;
    flex-direction: column;
    gap: 0.12em;
    max-width: none;
    font-size: clamp(1.85rem, 5.4vw, 3.2rem);
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.14;
    margin: 0 0 1rem;
}
.hero--story .hero__name {
    margin: 0 0 0.85rem;
    font-family: var(--display);
    font-weight: 650;
    letter-spacing: 0.04em;
    font-size: 1.05rem;
}
.hero--story .hero__sub {
    max-width: 38rem;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}
.hero--story::before { display: none; }

@media (min-width: 900px) {
    .hero--story {
        padding: 4rem 0 4.5rem;
    }
    .hero--story .hero__inner {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: center;
        gap: 3.25rem;
    }
}

.shot {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--bone);
    box-shadow: var(--shadow);
}
.shot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
.shot--wide img { aspect-ratio: 16 / 9; }

.split {
    max-width: 1120px;
    margin: 0 auto;
    padding: 3rem 1.25rem 4rem;
    display: grid;
    gap: 2rem;
    align-items: start;
}
@media (min-width: 900px) {
    .split {
        grid-template-columns: 1fr 1fr;
        gap: 3.25rem;
        padding: 4rem 1.25rem 5rem;
    }
}

.stage {
    max-width: 40rem;
    margin: 0 auto;
    padding: 3.5rem 1.25rem;
}
.stage--wide { max-width: 44rem; }
.stage--center { text-align: center; max-width: 36rem; }
.stage--page { max-width: 1120px; padding-top: 3rem; padding-bottom: 4rem; }

.beats {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
}
.beats li {
    font-family: var(--display);
    font-size: clamp(1.05rem, 2.2vw, 1.28rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.45;
    margin: 0 0 0.35em;
    color: var(--muted);
}
.beats li:last-child {
    color: var(--text);
    font-weight: 650;
    margin-top: 0.55rem;
}

.turn p {
    font-family: var(--display);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 650;
    letter-spacing: -0.03em;
    line-height: 1.25;
    margin: 0 0 0.2em;
}

.ask,
.ask p,
.mantra,
.mantra p {
    font-family: var(--display);
    font-size: clamp(1.35rem, 3vw, 1.95rem);
    font-weight: 650;
    letter-spacing: -0.03em;
    line-height: 1.3;
    margin: 0;
}
.band .ask,
.band .mantra {
    font-size: clamp(1.35rem, 3vw, 1.95rem);
}

.name-block img {
    height: 56px;
    width: auto;
    margin-bottom: 0.85rem;
}
.name-block__word {
    font-family: var(--display);
    letter-spacing: 0.2em;
    font-weight: 700;
    font-size: clamp(1.7rem, 5vw, 2.6rem);
    margin: 0 0 0.35rem;
}
.name-block__mean {
    color: var(--muted);
    margin: 0 0 1.25rem;
    font-size: 1.02rem;
}
.name-block .lede { margin: 0 auto 0.75rem; max-width: 42ch; }
.name-block .lede:last-of-type { margin-bottom: 0; }

.help-grid {
    display: grid;
    gap: 1rem;
    padding-top: 0.5rem;
}
@media (min-width: 720px) {
    .help-grid { grid-template-columns: 1fr 1fr; gap: 1.15rem; }
}
.help-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.3rem 1.35rem;
}
.help-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.12rem;
    font-weight: 650;
}
.help-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

.products {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 800px) {
    .products { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.product {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.product__body { padding: 1.35rem 1.4rem 1.5rem; }
.product__status {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--coral);
    font-weight: 700;
    margin-bottom: 0.45rem;
}
.product h2 {
    margin: 0 0 0.5rem;
    font-size: 1.55rem;
}
.product p { margin: 0 0 0.9rem; color: var(--muted); }
.product ul {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--text);
    font-size: 0.95rem;
}
.product li { margin: 0.25rem 0; }

.plans {
    display: grid;
    gap: 1.15rem;
    margin-top: 2rem;
}
@media (min-width: 800px) {
    .plans { grid-template-columns: 1.05fr 0.95fr; align-items: stretch; }
}
.plan {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.5rem 1.7rem;
    display: flex;
    flex-direction: column;
}
.plan--featured {
    border-color: var(--coral);
    box-shadow: var(--shadow);
}
.plan__name {
    margin: 0 0 0.65rem;
    font-size: 0.85rem;
    font-weight: 650;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}
.plan__price {
    margin: 0;
    font-family: var(--display);
    font-size: 2.75rem;
    font-weight: 650;
    letter-spacing: -0.04em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.plan__price small {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
    margin-right: 0.15rem;
}
.plan__period {
    margin: 0.45rem 0 1.15rem;
    color: var(--muted);
    font-size: 0.95rem;
}
.plan ul {
    margin: 0 0 1.35rem;
    padding: 0;
    list-style: none;
    flex: 1;
}
.plan li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.35rem;
    border-top: 1px solid var(--line);
    font-size: 0.95rem;
}
.plan li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 7px;
    height: 7px;
    border-radius: 99px;
    background: var(--coral);
}
.plan .btn { align-self: stretch; }

.band {
    background: var(--bone);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.band .stage { padding-top: 5rem; padding-bottom: 5rem; }
.band h2 {
    font-family: var(--display);
    font-size: clamp(1.55rem, 3.6vw, 2.2rem);
    font-weight: 650;
    letter-spacing: -0.03em;
    margin: 0 0 1.1rem;
    line-height: 1.25;
}
.band p {
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 0;
    color: var(--text);
}

.close {
    padding: 6.5rem 1.25rem 5.5rem;
    text-align: center;
}
.close__big {
    font-family: var(--display);
    font-size: clamp(2rem, 5.6vw, 3.45rem);
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.18;
    margin: 0 0 0.55rem;
}
.close__next {
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    color: var(--muted);
    margin: 0 0 3.25rem;
    line-height: 1.45;
}
.close__word {
    font-family: var(--display);
    letter-spacing: 0.2em;
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0 0 0.3rem;
}
.close__hao {
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 650;
    margin: 0 0 2.25rem;
}
.close__end {
    margin: 0 0 0.4rem;
    font-size: 1.15rem;
}
.close__en {
    color: var(--muted);
    letter-spacing: 0.04em;
    margin: 0 0 2.15rem;
    font-size: 0.95rem;
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in,
.reveal.is-in .beats li {
    opacity: 1;
    transform: none;
}
.beats.reveal li {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.beats.reveal.is-in li { opacity: 1; transform: none; }
.beats.reveal.is-in li:nth-child(2) { transition-delay: 0.05s; }
.beats.reveal.is-in li:nth-child(3) { transition-delay: 0.1s; }
.beats.reveal.is-in li:nth-child(4) { transition-delay: 0.15s; }
.beats.reveal.is-in li:nth-child(5) { transition-delay: 0.2s; }
.beats.reveal.is-in li:nth-child(6) { transition-delay: 0.25s; }
.beats.reveal.is-in li:nth-child(7) { transition-delay: 0.3s; }
.beats.reveal.is-in li:nth-child(8) { transition-delay: 0.35s; }
.beats.reveal.is-in li:nth-child(9) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal,
    .beats.reveal li {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
