:root {
    --ink: #17211d;
    --muted: #64716b;
    --paper: #f8faf7;
    --white: #ffffff;
    --coral: #ff6b5d;
    --coral-dark: #e94e43;
    --mint: #43c7aa;
    --green: #0f7666;
    --blue: #4e72e8;
    --line: rgba(23, 33, 29, 0.12);
    --shadow: 0 28px 70px rgba(29, 55, 47, 0.14);
    --page: min(1180px, calc(100% - 48px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: clip;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
    overflow-x: clip;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    content: "";
    pointer-events: none;
    background-image: radial-gradient(rgba(23, 33, 29, 0.08) 0.7px, transparent 0.7px);
    background-size: 22px 22px;
    mask-image: linear-gradient(to bottom, black, transparent 68%);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

:focus-visible {
    outline: 3px solid rgba(78, 114, 232, 0.55);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 99;
    padding: 10px 14px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: relative;
    z-index: 20;
    height: 72px;
}

.site-header__inner {
    display: flex;
    width: var(--page);
    height: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}

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

.brand__logo {
    display: block;
    width: 122px;
    height: 60px;
    object-fit: contain;
    object-position: left center;
}

.site-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 14px;
    font-weight: 650;
}

.site-nav a {
    transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
    color: var(--coral-dark);
    transform: translateY(-1px);
}

.site-nav__action {
    display: inline-flex;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--ink);
    border-radius: 6px;
    align-items: center;
}

.hero {
    position: relative;
    display: flex;
    min-height: calc(100svh - 116px);
    padding: 38px 0 82px;
    align-items: center;
    overflow: clip;
}

.hero::before {
    position: absolute;
    top: -160px;
    right: -8%;
    z-index: -1;
    width: 52vw;
    height: 700px;
    content: "";
    background: radial-gradient(ellipse at center, rgba(67, 199, 170, 0.18), rgba(78, 114, 232, 0.06) 44%, transparent 70%);
}

.hero__inner {
    display: grid;
    width: var(--page);
    margin: 0 auto;
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
    gap: 76px;
    align-items: center;
}

.eyebrow {
    display: flex;
    gap: 10px;
    margin: 0 0 20px;
    color: var(--green);
    align-items: center;
    font-size: 13px;
    font-weight: 750;
}

.eyebrow > span {
    display: inline-block;
    width: 27px;
    height: 2px;
    background: currentColor;
}

.hero h1 {
    max-width: 590px;
    margin: 0;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: 0;
}

.hero-title__brand {
    display: block;
    margin-bottom: 12px;
    color: var(--coral);
    font-size: 26px;
    line-height: 1;
}

.hero-title__main {
    display: block;
    max-width: 8.2em;
}

.hero__lead {
    max-width: 540px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

.hero__actions {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    align-items: center;
}

.button {
    display: inline-flex;
    min-height: 52px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 750;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    gap: 10px;
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 10px 24px rgba(23, 33, 29, 0.18);
}

.button--primary:hover {
    box-shadow: 0 14px 30px rgba(23, 33, 29, 0.26);
}

.button--quiet {
    gap: 12px;
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.62);
}

.wechat-icon-frame {
    display: block;
    width: 22px;
    height: 22px;
    overflow: hidden;
    border-radius: 5px;
    flex: 0 0 auto;
}

.wechat-icon {
    display: block;
    width: auto;
    max-width: none;
    height: 22px;
}

.hero__proof {
    display: flex;
    gap: 22px;
    margin-top: 30px;
    color: var(--muted);
    flex-wrap: wrap;
    font-size: 12px;
}

.hero__proof span {
    display: inline-flex;
    gap: 7px;
    align-items: center;
}

.hero__proof span::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    content: "";
    background: var(--coral);
}

.hero-visual {
    position: relative;
    height: 580px;
}

.orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(15, 118, 102, 0.2);
    border-radius: 50%;
}

.orbit--one {
    top: 36px;
    left: 72px;
    width: 430px;
    height: 430px;
    animation: orbit-spin 16s linear infinite;
}

.orbit--one::after {
    position: absolute;
    top: 40px;
    right: 30px;
    width: 12px;
    height: 12px;
    border: 4px solid var(--paper);
    border-radius: 50%;
    content: "";
    background: var(--coral);
}

.orbit--two {
    top: 94px;
    left: 132px;
    width: 320px;
    height: 320px;
    border-style: dashed;
    animation: orbit-spin 22s linear infinite reverse;
}

.player-shell {
    position: absolute;
    top: 18px;
    left: 50%;
    z-index: 3;
    width: 330px;
    min-height: 530px;
    padding: 22px;
    overflow: hidden;
    border: 8px solid #202a26;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    transform: translateX(-50%) rotate(2.5deg);
    backdrop-filter: blur(14px);
}

.player-shell__top {
    display: flex;
    margin-bottom: 18px;
    color: var(--muted);
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
}

.player-shell__status {
    display: inline-flex;
    gap: 5px;
    align-items: center;
}

.player-shell__status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 4px rgba(67, 199, 170, 0.13);
}

.album-art {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    background: #dfe5f5;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 16px 40px rgba(78, 114, 232, 0.18);
    animation: record-spin 24s linear infinite;
}

.album-art::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    border: 7px solid rgba(255, 255, 255, 0.84);
    border-radius: 50%;
    content: "";
    background: var(--coral);
    transform: translate(-50%, -50%);
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.16);
}

.album-art__shine {
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
}

.track-meta {
    margin-top: 18px;
    text-align: center;
}

.track-meta p {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.track-meta span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
}

.waveform {
    display: flex;
    height: 32px;
    gap: 4px;
    margin: 18px 0 12px;
    align-items: center;
    justify-content: center;
}

.waveform i,
.mini-wave i {
    width: 3px;
    height: 9px;
    border-radius: 3px;
    background: var(--coral);
    animation: waveform 1.1s ease-in-out infinite alternate;
}

.waveform i:nth-child(3n), .mini-wave i:nth-child(3n) { height: 24px; animation-delay: -0.2s; }
.waveform i:nth-child(3n + 1), .mini-wave i:nth-child(3n + 1) { height: 15px; animation-delay: -0.5s; }

.now-lyric {
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    border-left: 3px solid var(--coral);
    background: #fff4f1;
    align-items: center;
}

.now-lyric > span {
    color: var(--coral);
    font-size: 18px;
}

.now-lyric p {
    margin: 0;
}

.now-lyric b,
.now-lyric small {
    display: block;
    line-height: 1.5;
}

.now-lyric b { font-size: 11px; }
.now-lyric small { color: var(--muted); font-size: 9px; }

.player-controls {
    display: flex;
    margin-top: 15px;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.player-controls span {
    font-size: 24px;
}

.player-controls b {
    display: grid;
    width: 38px;
    height: 38px;
    padding-left: 2px;
    border-radius: 50%;
    color: var(--white);
    background: var(--ink);
    place-items: center;
    font-size: 11px;
}

.lyric-note {
    position: absolute;
    z-index: 5;
    min-width: 132px;
    padding: 14px 17px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 45px rgba(28, 48, 41, 0.12);
    backdrop-filter: blur(12px);
    animation: float 5s ease-in-out infinite;
}

.lyric-note b,
.lyric-note span {
    display: block;
}

.lyric-note b { font-size: 15px; }
.lyric-note span { margin-top: 3px; color: var(--muted); font-size: 11px; }
.lyric-note--one { top: 78px; left: 0; transform: rotate(-7deg); }
.lyric-note--two { right: -4px; bottom: 82px; transform: rotate(6deg); animation-delay: -2.1s; }

.floating-headphones {
    position: absolute;
    right: 7px;
    bottom: 12px;
    z-index: 6;
    width: 140px;
    filter: drop-shadow(0 20px 18px rgba(23, 33, 29, 0.14));
    transform: rotate(-9deg);
    animation: float-headphones 6s ease-in-out infinite;
}

.hero__next {
    position: absolute;
    bottom: 26px;
    left: 50%;
    display: inline-flex;
    gap: 9px;
    color: var(--muted);
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    transform: translateX(-50%);
}

.hero__next span {
    width: 26px;
    height: 1px;
    background: var(--muted);
}

.ways {
    padding: 110px max(24px, calc((100% - 1180px) / 2)) 120px;
    background: var(--white);
}

.section-heading {
    display: grid;
    margin-bottom: 58px;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.44fr);
    column-gap: 70px;
}

.section-heading .eyebrow {
    grid-column: 1 / -1;
}

.section-heading h2,
.wechat h2 {
    max-width: 720px;
    margin: 0;
    font-size: 44px;
    line-height: 1.25;
    letter-spacing: 0;
}

.section-heading > p:last-child {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}

.ways__grid {
    display: grid;
    border-top: 1px solid var(--line);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.way {
    position: relative;
    min-width: 0;
    padding: 26px 28px 10px;
    border-right: 1px solid var(--line);
}

.way:first-child { padding-left: 0; }
.way:last-child { padding-right: 0; border-right: 0; }

.way__index {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.way__visual {
    position: relative;
    height: 220px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 6px;
}

.way__visual--music {
    background: #e9f7f1;
}

.way__visual--music img {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 170px;
    filter: drop-shadow(0 22px 20px rgba(15, 118, 102, 0.14));
    transform: translateX(-50%) rotate(-7deg);
}

.mini-wave {
    position: absolute;
    right: 17px;
    bottom: 14px;
    display: flex;
    height: 28px;
    gap: 4px;
    align-items: center;
}

.mini-wave i { background: var(--green); }

.way__visual--scene {
    background: linear-gradient(145deg, #e2f8f3 0%, #edf5ff 52%, #fff8eb 100%);
}

.scene-glow {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: rgba(255, 205, 102, 0.78);
    box-shadow: 0 0 0 22px rgba(255, 205, 102, 0.13);
}

.scene-book {
    position: absolute;
    top: 18px;
    left: 50%;
    z-index: 2;
    width: 164px;
    height: 164px;
    object-fit: contain;
    filter: drop-shadow(0 18px 18px rgba(38, 103, 132, 0.2));
    transform: translateX(-50%) rotate(-6deg);
}

.scene-caption {
    position: absolute;
    left: 22px;
    bottom: 20px;
}

.scene-caption b,
.scene-caption small { display: block; }
.scene-caption b { font-size: 21px; }
.scene-caption small { margin-top: 4px; color: var(--muted); font-size: 11px; }

.scene-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 58px;
    height: 58px;
    padding-left: 4px;
    border-radius: 50%;
    color: var(--white);
    background: #31a9b9;
    box-shadow: 0 12px 30px rgba(49, 169, 185, 0.26);
    transform: translate(-50%, -50%);
    place-items: center;
    font-size: 15px;
}

.way__visual--game {
    display: grid;
    background: #fff1ee;
    place-items: center;
}

.way__visual--game > img {
    z-index: 2;
    width: 86%;
    height: auto;
}

.game-tiles {
    position: absolute;
    inset: auto 12px 14px auto;
    display: flex;
    gap: 4px;
}

.game-tiles i {
    display: grid;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    color: var(--white);
    background: var(--coral);
    place-items: center;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
    transform: rotate(4deg);
}

.way h3 {
    margin: 0 0 13px;
    font-size: 23px;
}

.way > p {
    min-height: 80px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.way__tag {
    display: inline-block;
    margin-top: 20px;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--coral);
    font-size: 12px;
    font-weight: 750;
}

.wechat {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: #173b35;
}

.wechat::before {
    position: absolute;
    top: -170px;
    right: 3%;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.03), 0 0 0 140px rgba(255, 255, 255, 0.025);
}

.wechat__inner {
    position: relative;
    z-index: 2;
    display: grid;
    width: var(--page);
    min-height: 520px;
    margin: 0 auto;
    padding: 96px 0 110px;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 110px;
    align-items: center;
}

.eyebrow--light {
    color: #8ee5d0;
}

.wechat h2 {
    font-size: 48px;
}

.wechat__copy > p:last-child {
    max-width: 520px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.9;
}

.wechat__steps {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.wechat-step {
    display: flex;
    min-height: 86px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    align-items: center;
}

.wechat-step > span {
    display: grid;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    place-items: center;
    font-size: 12px;
}

.wechat-step p { margin: 0; }
.wechat-step b, .wechat-step small { display: block; }
.wechat-step b { font-size: 16px; }
.wechat-step small { margin-top: 4px; color: rgba(255, 255, 255, 0.56); font-size: 11px; }

.search-copy {
    display: inline-flex;
    width: 100%;
    min-height: 54px;
    gap: 10px;
    margin-top: 22px;
    padding: 0 20px;
    border: 0;
    border-radius: 6px;
    color: var(--ink);
    background: #92ead6;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    transition: background 180ms ease, transform 180ms ease;
}

.search-copy:hover {
    background: #b4f3e4;
    transform: translateY(-2px);
}

.wechat__marquee {
    position: absolute;
    right: 0;
    bottom: 12px;
    left: 0;
    width: 100%;
    max-width: 100vw;
    overflow: clip;
    color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    font-size: 60px;
    line-height: 1;
    font-weight: 900;
    pointer-events: none;
    contain: paint;
}

.wechat__marquee div {
    width: max-content;
    animation: marquee 26s linear infinite;
}

.site-footer {
    display: grid;
    width: var(--page);
    min-height: 190px;
    margin: 0 auto;
    padding: 48px 0;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
}

.brand--footer {
    justify-self: start;
}

.brand--footer .brand__logo {
    width: 82px;
    height: 44px;
}

.site-footer > p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.site-footer__legal {
    text-align: right;
}

.site-footer__legal a {
    display: block;
    margin-top: 5px;
}

.js [data-reveal] {
    opacity: 1;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes record-spin { to { transform: rotate(360deg); } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { margin-top: -10px; } }
@keyframes float-headphones { 50% { transform: translateY(-12px) rotate(-5deg); } }
@keyframes waveform { to { height: 28px; } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1020px) {
    .hero__inner {
        grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
        gap: 30px;
    }

    .hero h1 { font-size: 54px; }
    .hero-visual { transform: scale(0.9); transform-origin: center; }
    .lyric-note--one { left: 16px; }
    .lyric-note--two { right: 10px; }
    .wechat__inner { gap: 70px; }
}

@media (max-width: 820px) {
    :root { --page: min(100% - 36px, 680px); }

    .site-nav > a:first-child { display: none; }

    .hero {
        min-height: auto;
        padding: 42px 0 68px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero__copy { text-align: center; }
    .eyebrow, .hero__actions, .hero__proof { justify-content: center; }
    .hero h1, .hero__lead { margin-right: auto; margin-left: auto; }
    .hero h1 { font-size: 52px; }
    .hero-visual { height: 540px; transform: scale(0.94); }
    .hero__next { display: none; }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ways__grid { grid-template-columns: 1fr; }

    .way {
        display: grid;
        padding: 32px 0 38px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        grid-template-columns: 110px 1fr;
        column-gap: 24px;
    }

    .way:last-child { border-bottom: 0; }
    .way__index { grid-column: 1 / -1; }
    .way__visual { width: 110px; height: 150px; margin: 0; grid-row: 2 / 6; }
    .way__visual--music img { top: 27px; width: 110px; }
    .mini-wave { right: 8px; bottom: 8px; }
    .scene-caption { left: 10px; bottom: 14px; }
    .scene-caption b { font-size: 18px; }
    .scene-caption small { display: none; }
    .scene-glow { top: 12px; right: 10px; width: 48px; height: 48px; }
    .scene-book { top: 12px; width: 90px; height: 90px; }
    .scene-play { width: 44px; height: 44px; }
    .way__visual--game > img { width: 112%; max-width: none; }
    .game-tiles { display: none; }
    .way > p { min-height: auto; }
    .way__tag { justify-self: start; }

    .wechat__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .brand--footer { justify-self: center; }
    .site-footer__legal { text-align: center; }
}

@media (max-width: 520px) {
    :root { --page: calc(100% - 32px); }

    .site-header { height: 64px; }
    .brand__logo { width: 96px; height: 50px; }
    .site-nav { gap: 0; }
    .site-nav__action { min-height: 40px; padding: 0 13px; font-size: 12px; }

    .hero { padding-top: 20px; padding-bottom: 20px; }
    .hero__inner { gap: 8px; }
    .eyebrow { margin-bottom: 17px; font-size: 11px; }
    .hero h1 { font-size: 42px; }
    .hero-title__brand { font-size: 20px; }
    .hero__lead { margin-top: 21px; font-size: 15px; line-height: 1.8; }
    .hero__actions { gap: 8px; flex-direction: row; }
    .button { width: auto; min-height: 48px; padding: 0 10px; flex: 1; font-size: 12px; }
    .hero__proof { gap: 9px 16px; margin-top: 12px; }

    .hero-visual { height: 320px; margin: -4px 0 -10px; transform: scale(0.72); transform-origin: top center; }
    .player-shell { top: 0; width: 268px; min-height: 430px; padding: 17px; border-width: 6px; border-radius: 31px; }
    .player-shell__top { margin-bottom: 12px; }
    .album-art { width: 168px; height: 168px; }
    .track-meta { margin-top: 13px; }
    .track-meta p { font-size: 15px; }
    .waveform { margin: 10px 0 7px; }
    .now-lyric { padding: 7px 8px; }
    .player-controls { margin-top: 9px; }
    .lyric-note { min-width: 105px; padding: 10px 12px; }
    .lyric-note b { font-size: 12px; }
    .lyric-note--one { top: 54px; left: -10px; }
    .lyric-note--two { right: -7px; bottom: 40px; }
    .floating-headphones { right: -10px; bottom: -2px; width: 103px; }
    .orbit--one { top: 15px; left: calc(50% - 180px); width: 360px; height: 360px; }
    .orbit--two { top: 70px; left: calc(50% - 130px); width: 260px; height: 260px; }

    .ways { padding-top: 18px; padding-bottom: 78px; }
    .section-heading { margin-bottom: 38px; }
    .section-heading h2, .wechat h2 { font-size: 34px; }
    .section-heading > p:last-child { font-size: 14px; }
    .way { grid-template-columns: 92px 1fr; column-gap: 17px; }
    .way__visual { width: 92px; height: 135px; }
    .way h3 { font-size: 20px; }
    .way > p { font-size: 13px; }

    .wechat__inner { min-height: auto; padding: 78px 0 100px; }
    .wechat h2 { font-size: 36px; }
    .wechat__marquee { font-size: 42px; }
    .js [data-reveal] { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
