:root {
    --page-bg: #030208;
    --panel-bg: #141218;
    --policy-panel: #1f1d24;
    --footer-bg: #41001f;
    --white: #ffffff;
    --text: #f7f4f8;
    --muted: rgba(247, 244, 248, 0.42);
    --accent: #e01aa8;
    --accent-hot: #ff7438;
    --container: 930px;
    --policy-container: 1560px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--page-bg);
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--page-bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    letter-spacing: 0;
}

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

button {
    font: inherit;
}

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

.container {
    width: min(var(--container), calc(100% - 216px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 30;
    height: 76px;
    background: transparent;
    transition: background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
    background: rgba(3, 2, 8, 0.74);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
}

.header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.brand img {
    width: 23px;
    height: auto;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 61px;
}

.nav-link {
    position: relative;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 13px;
    font-weight: 500;
    transition: color 180ms ease;
}

.nav-link.active,
.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent);
    opacity: 0;
    transform: scaleX(0.55);
    transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.hero {
    position: relative;
    height: clamp(520px, 56.25vw, 1080px);
    overflow: hidden;
    background: var(--page-bg);
    scroll-margin-top: 0;
}

.hero-media,
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    object-fit: cover;
    opacity: 0;
    transition: opacity 520ms ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 25%;
    background: linear-gradient(180deg, rgba(3, 2, 8, 0), var(--page-bg) 92%);
    pointer-events: none;
}

.hero-layer {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-copy {
    position: absolute;
    top: clamp(150px, 21.3vw, 410px);
    left: 0;
    width: min(520px, 100%);
}

.hero-copy h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(39px, 3.85vw, 74px);
    font-weight: 900;
    line-height: 1.08;
}

.hero-copy h1 span {
    background: linear-gradient(92deg, var(--accent) 3%, var(--accent) 48%, var(--accent-hot) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    margin: clamp(18px, 1.9vw, 36px) 0 0;
    color: rgba(255, 255, 255, 0.34);
    font-size: clamp(16px, 1.47vw, 26px);
    line-height: 1.45;
    font-weight: 500;
}

.tiktok-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: clamp(232px, 20.25vw, 388px);
    height: clamp(54px, 4.7vw, 90px);
    margin-top: clamp(42px, 5.1vw, 96px);
    padding: 0 clamp(18px, 1.7vw, 32px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.08);
}

.tiktok-button img {
    width: clamp(37px, 3.5vw, 68px);
    height: clamp(37px, 3.5vw, 68px);
}

.tiktok-button span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.tiktok-button small {
    font-size: clamp(11px, 1vw, 18px);
    font-weight: 650;
}

.tiktok-button strong {
    margin-top: 2px;
    font-size: clamp(18px, 1.45vw, 28px);
    font-weight: 850;
}

.hero-dots {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: clamp(22px, 2.05vw, 40px);
    display: flex;
    gap: 11px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 13px;
    height: 13px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
}

.hero-dot.active {
    background: rgba(255, 255, 255, 0.72);
}

.section {
    scroll-margin-top: 92px;
}

.trending-section {
    padding: 64px 0 108px;
}

.section-heading h2 {
    margin: 0;
    color: var(--white);
    font-size: 24px;
    font-weight: 760;
    line-height: 1.25;
}

.section-heading p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.36);
    font-size: 16px;
    line-height: 1.35;
}

.section-heading.centered {
    text-align: center;
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 37px;
    margin-top: 36px;
}

.poster-card {
    min-width: 0;
}

.poster-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #141218;
    aspect-ratio: 480 / 853;
}

.poster-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.views {
    position: absolute;
    right: 13px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    line-height: 1;
}

.views img {
    width: 18px;
    height: 18px;
}

.poster-card h3 {
    min-height: 48px;
    margin: 17px 5px 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    font-weight: 760;
    line-height: 1.28;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 5px 0;
}

.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
    line-height: 1;
}

.features-section {
    padding: 0 0 108px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
}

.feature-card {
    min-height: 216px;
    padding: 24px 24px 22px;
    border-radius: 8px;
    background: var(--panel-bg);
}

.feature-card img {
    width: 38px;
    height: 38px;
}

.feature-card h3 {
    margin: 23px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 760;
    line-height: 1.28;
}

.feature-card p {
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 13px;
    line-height: 1.34;
}

.site-footer {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.38);
}

.footer-main {
    min-height: 59px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-brand img {
    width: 22px;
    height: auto;
}

.footer-brand strong {
    color: var(--white);
    font-size: 18px;
    font-weight: 850;
    line-height: 1;
}

.footer-brand span {
    margin-left: 2px;
    font-size: 13px;
    line-height: 1;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-bottom {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
}

.policy-page {
    min-height: 100vh;
    color: var(--text);
}

.policy-container {
    width: min(var(--policy-container), calc(100% - 360px));
    margin: 0 auto;
}

.policy-header {
    padding-top: 44px;
}

.policy-header .policy-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.policy-header .brand {
    gap: 12px;
    font-size: 31px;
}

.policy-header .brand img {
    width: 36px;
}

.policy-back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 51px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1;
}

.policy-back svg {
    width: 18px;
    height: 18px;
}

.policy-document {
    margin-top: 22px;
    padding: 51px 50px 56px;
    background: var(--policy-panel);
}

.policy-title {
    margin: 0;
    text-align: center;
    color: var(--white);
    font-size: 38px;
    line-height: 1.2;
    font-weight: 850;
}

.policy-date {
    margin: 18px 0 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    line-height: 1.35;
}

.policy-content {
    margin-top: 38px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 16px;
    line-height: 1.22;
}

.policy-content p {
    margin: 0 0 12px;
}

.policy-content h2,
.policy-content h3,
.policy-content h4 {
    margin: 22px 0 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.22;
    font-weight: 520;
}

.policy-content h3,
.policy-content h4 {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.66);
}

.policy-content ul {
    margin: 0 0 12px 24px;
    padding: 0;
}

.policy-content li {
    margin: 0;
    padding-left: 0;
}

.policy-content strong,
.policy-content b {
    color: rgba(255, 255, 255, 0.74);
    font-weight: 650;
}

.policy-page .site-footer {
    margin-top: 54px;
}

.policy-page .site-footer .container {
    width: min(var(--policy-container), calc(100% - 360px));
    max-width: var(--policy-container);
}

.policy-page .footer-main {
    min-height: 97px;
}

.policy-page .footer-brand img {
    width: 36px;
}

.policy-page .footer-brand strong {
    font-size: 30px;
}

.policy-page .footer-brand span {
    margin-left: 4px;
    font-size: 21px;
}

.policy-page .footer-links {
    gap: 64px;
}

.policy-page .footer-links a {
    font-size: 21px;
}

.policy-page .footer-bottom {
    min-height: 60px;
    font-size: 16px;
}

@media (max-width: 980px) {
    .container,
    .policy-container,
    .policy-page .site-footer .container {
        width: calc(100% - 40px);
    }

    .site-header {
        height: auto;
    }

    .header-inner {
        height: 68px;
    }

    .top-nav {
        gap: 22px;
    }

    .hero-copy {
        top: 155px;
    }

    .poster-grid,
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .poster-grid {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .features-section {
        padding-bottom: 72px;
    }

    .feature-card {
        min-height: 0;
    }

    .footer-main,
    .policy-page .footer-main {
        min-height: 102px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 18px;
        padding: 22px 0;
    }

    .policy-header .brand {
        font-size: 24px;
    }

    .policy-header .brand img {
        width: 28px;
    }

    .policy-document {
        padding: 34px 22px 40px;
    }

    .policy-title {
        font-size: 30px;
    }

    .policy-page .footer-brand img {
        width: 24px;
    }

    .policy-page .footer-brand strong {
        font-size: 20px;
    }

    .policy-page .footer-brand span,
    .policy-page .footer-links a,
    .policy-page .footer-bottom {
        font-size: 13px;
    }
}

@media (max-width: 620px) {
    .container,
    .policy-container,
    .policy-page .site-footer .container {
        width: calc(100% - 32px);
    }

    .brand {
        font-size: 16px;
    }

    .brand img {
        width: 20px;
    }

    .nav-link {
        font-size: 12px;
    }

    .hero {
        height: 610px;
    }

    .hero-copy {
        top: 138px;
        width: 310px;
    }

    .hero-copy h1 {
        font-size: 36px;
    }

    .hero-copy p {
        font-size: 15px;
    }

    .tiktok-button {
        min-width: 220px;
        height: 54px;
    }

    .trending-section {
        padding-top: 48px;
    }

    .footer-brand {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .footer-links {
        gap: 24px;
    }
}

/* Figma desktop calibration: frame 1920 x 3435. */
body.home-page {
    --design-scale: 1;
    --scaled-home-height: 3435px;
    --stage-left: 0px;
    position: relative;
    min-height: var(--scaled-home-height);
    height: var(--scaled-home-height);
    overflow-x: hidden;
    background: #030109;
}

.home-page .home-design {
    position: absolute;
    top: 0;
    left: var(--stage-left);
    width: 1920px;
    height: 3435px;
    overflow: hidden;
    background: #030109;
    transform: scale(var(--design-scale));
    transform-origin: top left;
}

.home-page .container {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
}

.home-page .site-header {
    position: absolute;
    inset: auto;
    top: 0;
    left: 0;
    z-index: 30;
    width: 1920px;
    height: 120px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.home-page .site-header.scrolled {
    border: 0;
    background: transparent;
    backdrop-filter: none;
}

.home-page .header-inner {
    position: static;
    width: 1920px;
    height: 120px;
}

.home-page .brand {
    position: absolute;
    left: 180px;
    top: 42px;
    width: 175px;
    height: 36px;
    gap: 12px;
    align-items: flex-start;
    color: #ffffff;
    font-family: "Avanti", "PingFang SC", Arial, sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
}

.home-page .brand img {
    width: 36px;
    height: 36px;
}

.home-page .brand span {
    margin-top: 6px;
}

.home-page .top-nav {
    position: absolute;
    left: 1322px;
    top: 46px;
    display: flex;
    gap: 99px;
    align-items: flex-start;
}

.home-page .nav-link {
    width: auto;
    height: 28px;
    padding: 0;
    color: rgba(255, 255, 255, 0.5);
    font-family: "PingFang SC", Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}

.home-page .nav-link.active {
    color: #ffffff;
    font-weight: 500;
}

.home-page .nav-link::after {
    left: 3px;
    right: auto;
    top: 34px;
    bottom: auto;
    width: 50px;
    height: 3px;
    border-radius: 0;
    background: #d2248d;
}

.home-page .hero {
    position: absolute;
    left: 0;
    top: 0;
    width: 1920px;
    height: 1080px;
    overflow: hidden;
    background: #030109;
}

.home-page .hero::after {
    content: none;
}

.home-page .hero-media,
.home-page .hero-slide {
    position: absolute;
    inset: 0;
    width: 1920px;
    height: 1080px;
}

.home-page .hero-slide {
    object-fit: cover;
}

.home-page .hero-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 1920px;
    height: 1080px;
}

.home-page .hero-copy {
    position: static;
    width: 1920px;
    height: 1080px;
}

.home-page .hero-title {
    position: absolute;
    left: 180px;
    top: 391px;
    width: 620px;
    height: 248px;
    margin: 0;
    color: #ffffff;
    font-family: "Alibaba PuHuiTi", "PingFang SC", Arial, sans-serif;
    font-weight: 800;
    font-size: 70px;
    line-height: 96px;
}

.home-page .hero-title-line {
    position: absolute;
    left: 0;
    height: 96px;
    line-height: 96px;
    white-space: nowrap;
    background: none;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.home-page .hero-title .line-one {
    top: 0;
    width: 332px;
}

.home-page .hero-title .line-two {
    top: 76px;
    width: 496px;
    background: linear-gradient(91.16deg, #d2248d 49.3%, #f98f4d 97.55%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.home-page .hero-title .line-three {
    top: 152px;
    width: 543px;
}

.home-page .hero-copy p {
    position: absolute;
    left: 180px;
    top: 655px;
    width: 568px;
    height: 84px;
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-family: "PingFang SC", Arial, sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 42px;
}

.home-page .tiktok-button {
    position: absolute;
    left: 180px;
    top: 839px;
    width: 390px;
    min-width: 0;
    height: 90px;
    margin: 0;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    background: transparent;
    color: #ffffff;
}

.home-page .tiktok-button img {
    position: absolute;
    left: 30px;
    top: 16px;
    width: 60px;
    height: 60px;
}

.home-page .tiktok-button span {
    position: absolute;
    left: 112px;
    top: 12px;
    display: block;
}

.home-page .tiktok-button small {
    display: block;
    width: 223px;
    height: 31px;
    font-family: "PingFang SC", Arial, sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 31px;
}

.home-page .tiktok-button strong {
    display: block;
    width: 106px;
    height: 26px;
    margin-top: 6px;
    font-size: 24px;
    line-height: 26px;
    font-weight: 800;
}

.home-page .hero-dots {
    left: 905px;
    top: 1026px;
    bottom: auto;
    gap: 25px;
    transform: none;
}

.home-page .hero-dot {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

.home-page .hero-dot.active {
    background: rgba(255, 255, 255, 0.6);
}

.home-page .section {
    scroll-margin-top: 0;
}

.home-page .trending-section {
    position: absolute;
    left: 0;
    top: 1180px;
    width: 1920px;
    height: 1160px;
    padding: 0;
}

.home-page .trending-section > .container {
    position: absolute;
    inset: 0;
    width: 1920px;
    height: 1160px;
}

.home-page .section-heading.left {
    position: absolute;
    left: 180px;
    top: 0;
    width: 604px;
    text-align: left;
}

.home-page .section-heading h2 {
    margin: 0;
    color: #ffffff;
    font-family: "PingFang SC", Arial, sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 50px;
}

.home-page .section-heading.left p {
    position: absolute;
    left: 0;
    top: 60px;
    width: 169px;
    height: 36px;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-family: "PingFang SC", Arial, sans-serif;
    font-size: 26px;
    line-height: 36px;
}

.home-page .poster-grid {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 1920px;
    height: 1160px;
    margin: 0;
}

.home-page .poster-card {
    position: absolute;
    top: 156px;
    width: 480px;
    height: 1020px;
}

.home-page .poster-card:nth-child(1) {
    left: 180px;
}

.home-page .poster-card:nth-child(2) {
    left: 720px;
}

.home-page .poster-card:nth-child(3) {
    left: 1260px;
}

.home-page .poster-image {
    width: 480px;
    height: 853px;
    aspect-ratio: auto;
    border-radius: 20px;
}

.home-page .poster-image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 480px;
    height: 96px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 50.48%, rgba(0, 0, 0, 0.6) 100%);
}

.home-page .poster-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-page .views {
    right: 25px;
    bottom: 20px;
    z-index: 1;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-family: "PingFang SC", Arial, sans-serif;
    font-size: 26px;
    line-height: 36px;
}

.home-page .views img {
    width: 34px;
    height: 34px;
}

.home-page .poster-card h3 {
    position: absolute;
    left: 10px;
    top: 873px;
    min-height: 0;
    margin: 0;
    color: #ffffff;
    font-family: "PingFang SC", Arial, sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 42px;
}

.home-page .poster-card:nth-child(1) h3 {
    width: 317px;
    height: 42px;
}

.home-page .poster-card:nth-child(2) h3 {
    width: 374px;
    height: 42px;
}

.home-page .poster-card:nth-child(3) h3 {
    width: 470px;
    height: 84px;
}

.home-page .tag-row {
    position: absolute;
    left: 10px;
    top: 925px;
    display: flex;
    gap: 10px;
    margin: 0;
}

.home-page .poster-card:nth-child(3) .tag-row {
    top: 967px;
}

.home-page .tag-row span {
    min-height: 0;
    height: 40px;
    padding: 0 16px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    font-family: "PingFang SC", Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
}

.home-page .features-section {
    position: absolute;
    left: 0;
    top: 2523px;
    width: 1920px;
    height: 552px;
    padding: 0;
}

.home-page .features-section > .container {
    position: absolute;
    inset: 0;
    width: 1920px;
    height: 552px;
}

.home-page .section-heading.centered {
    position: absolute;
    left: 0;
    top: 0;
    width: 1920px;
    text-align: center;
}

.home-page .section-heading.centered h2 {
    width: 645px;
    height: 50px;
    margin: 0 auto;
}

.home-page .section-heading.centered p {
    position: absolute;
    left: 658px;
    top: 60px;
    width: 604px;
    height: 72px;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-family: "PingFang SC", Arial, sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 36px;
}

.home-page .feature-grid {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 1920px;
    height: 552px;
    margin: 0;
}

.home-page .feature-card {
    position: absolute;
    top: 192px;
    width: 360px;
    min-height: 0;
    height: 360px;
    padding: 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.home-page .feature-card:nth-child(1) {
    left: 180px;
}

.home-page .feature-card:nth-child(2) {
    left: 579px;
}

.home-page .feature-card:nth-child(3) {
    left: 980px;
}

.home-page .feature-card:nth-child(4) {
    left: 1380px;
}

.home-page .feature-card img {
    position: absolute;
    left: 40px;
    top: 40px;
    width: 60px;
    height: 60px;
}

.home-page .feature-card h3 {
    position: absolute;
    left: 40px;
    top: 130px;
    width: 280px;
    height: 34px;
    margin: 0;
    color: #ffffff;
    font-family: "PingFang SC", Arial, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    white-space: nowrap;
}

.home-page .feature-card p {
    position: absolute;
    left: 40px;
    top: 174px;
    width: 280px;
    height: 84px;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-family: "PingFang SC", Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}

.home-page .site-footer {
    position: absolute;
    left: 0;
    top: 3255px;
    width: 1920px;
    height: 180px;
    background: #2a021c;
}

.home-page .footer-main {
    position: absolute;
    inset: 0;
    width: 1920px;
    min-height: 0;
    height: 180px;
    display: block;
}

.home-page .footer-brand {
    position: absolute;
    left: 180px;
    top: 30px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    height: 36px;
}

.home-page .footer-brand img {
    width: 36px;
    height: 36px;
}

.home-page .footer-brand strong {
    margin-top: 6px;
    color: #ffffff;
    font-family: "Avanti", "PingFang SC", Arial, sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
}

.home-page .footer-brand span {
    margin-top: 7px;
    margin-left: -2px;
    color: rgba(255, 255, 255, 0.5);
    font-family: "PingFang SC", Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}

.home-page .footer-links {
    position: absolute;
    left: 1500px;
    top: 34px;
    display: flex;
    gap: 53px;
}

.home-page .footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-family: "PingFang SC", Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.home-page .footer-bottom {
    position: absolute;
    left: 740px;
    top: 127px;
    width: 440px;
    min-height: 0;
    height: 25px;
    border-top: 0;
    color: rgba(255, 255, 255, 0.3);
    font-family: "PingFang SC", Arial, sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
}

.home-page .site-footer::after {
    content: "";
    position: absolute;
    left: 0;
    top: 97px;
    width: 1920px;
    height: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Figma policy calibration: frame 1920 x 2204, footer begins at 2024. */
body.policy-page {
    --design-scale: 1;
    --scaled-policy-height: 2204px;
    --stage-left: 0px;
    position: relative;
    min-height: var(--scaled-policy-height);
    height: var(--scaled-policy-height);
    overflow-x: hidden;
    background: #030109;
    color: #ffffff;
}

.policy-page .policy-design {
    position: absolute;
    top: 0;
    left: var(--stage-left);
    width: 1920px;
    min-height: 2204px;
    overflow: visible;
    background: #030109;
    transform: scale(var(--design-scale));
    transform-origin: top left;
}

.policy-page .policy-container,
.policy-page .site-footer .container {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
}

.policy-page .policy-header {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 1920px;
    height: 167px;
    padding: 0;
}

.policy-page .policy-header .policy-container {
    position: relative;
    display: block;
    width: 1920px;
    height: 167px;
}

.policy-page .policy-header .brand {
    position: absolute;
    left: 180px;
    top: 42px;
    display: flex;
    width: 175px;
    height: 36px;
    gap: 12px;
    align-items: flex-start;
    color: #ffffff;
    font-family: "Avanti", "PingFang SC", Arial, sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
}

.policy-page .policy-header .brand img {
    width: 36px;
    height: 36px;
}

.policy-page .policy-header .brand span {
    margin-top: 6px;
}

.policy-page .policy-back {
    position: absolute;
    left: 190px;
    top: 128px;
    display: flex;
    height: 19px;
    margin: 0;
    gap: 10px;
    align-items: center;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
}

.policy-page .policy-back svg {
    width: 15px;
    height: 15px;
    color: #6f6f6f;
}

.policy-page main.policy-container {
    position: relative;
    width: 1560px;
    margin-left: 180px;
    padding-top: 167px;
}

.policy-page .policy-document {
    width: 1560px;
    min-height: 1802px;
    margin: 0;
    padding: 50px 50px 56px;
    background: rgba(255, 255, 255, 0.1);
}

.policy-page .policy-title {
    width: 1460px;
    height: 44px;
    margin: 0;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
}

.policy-page .policy-date {
    width: 1460px;
    height: 19px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-family: Inter, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
}

.policy-page .policy-content {
    width: 1460px;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-family: Inter, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
}

.policy-page .policy-content p {
    margin: 0 0 10px;
}

.policy-page .policy-content-privacy > p:nth-of-type(-n+3),
.policy-page .policy-content-terms > p:nth-of-type(-n+2) {
    color: #ffffff;
}

.policy-page .policy-content h2,
.policy-page .policy-content h3,
.policy-page .policy-content h4 {
    margin: 20px 0 10px;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
}

.policy-page .policy-content ul {
    margin: 0 0 10px 24px;
    padding: 0;
}

.policy-page .policy-content li {
    margin: 0;
    padding-left: 0;
}

.policy-page .policy-content strong,
.policy-page .policy-content b {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}

.policy-page .site-footer {
    position: relative;
    width: 1920px;
    height: 180px;
    margin-top: 55px;
    background: #2a021c;
}

.policy-page .footer-main {
    position: absolute;
    inset: 0;
    display: block;
    width: 1920px;
    min-height: 0;
    height: 180px;
}

.policy-page .footer-brand {
    position: absolute;
    left: 180px;
    top: 30px;
    display: flex;
    height: 36px;
    gap: 12px;
    align-items: flex-start;
}

.policy-page .footer-brand img {
    width: 36px;
    height: 36px;
}

.policy-page .footer-brand strong {
    margin-top: 6px;
    color: #ffffff;
    font-family: "Avanti", "PingFang SC", Arial, sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
}

.policy-page .footer-brand span {
    margin-top: 7px;
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-family: "PingFang SC", Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}

.policy-page .footer-links {
    position: absolute;
    left: 1500px;
    top: 34px;
    display: flex;
    gap: 53px;
}

.policy-page .footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-family: "PingFang SC", Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.policy-page .footer-bottom {
    position: absolute;
    left: 740px;
    top: 127px;
    width: 440px;
    min-height: 0;
    height: 25px;
    border-top: 0;
    color: rgba(255, 255, 255, 0.3);
    font-family: "PingFang SC", Arial, sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
}

.policy-page .site-footer::after {
    content: "";
    position: absolute;
    left: 0;
    top: 97px;
    width: 1920px;
    height: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
