:root {
    --pink: #ff3f9f;
    --rose: #ff5b7f;
    --blue: #2582ff;
    --text: #2f3338;
    --muted: #686f7a;
    font-family: Inter, 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    background: radial-gradient(circle at 6% 6%, rgba(255, 63, 159, 0.2), transparent 34rem), radial-gradient(circle at 92% 12%, rgba(75, 174, 255, 0.18), transparent 30rem), url('assets/images/page-bg.png') center top / 100% auto no-repeat, #fbfcff;
    overflow-x: hidden;
}

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

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

#top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 0 50px;
    width: 100%;
    overflow: hidden;
}

.hero {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    margin: 0 auto;
    gap: 140px;
    width: 100%;
    max-width: 1200px;
}
#top::before,
#top::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

#top::before {
    width: 240px;
    height: 240px;
    right: 10%;
    top: 10;
    background-image: radial-gradient(rgba(43, 174, 255, 0.22) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.9;
}

#top::after {
    width: 190px;
    height: 190px;
    left: 10%;
    bottom: 10%;
    background-image: radial-gradient(rgba(181, 107, 255, 0.18) 2px, transparent 2px);
    background-size: 18px 18px;
}

.hero-copy {
    flex: 1 1 50%;
    min-width: 0;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 33px;
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(222, 202, 241, 0.72);
    font-size: 13px;
    font-weight: 500;
}

.wp-dot {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: #fff;
    background: var(--blue);
    font: 700 12px Georgia, serif;
}

.share-dot {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    color: #7f8591;
    background: rgba(230, 220, 233, 0.8);
    font-size: 18px;
    cursor: pointer;
}

.hero h1 {
    margin: 0 0 24px;
    color: var(--text);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.hero h1 span {
    display: block;
}

.hero h1 span:nth-child(2) {
    margin-top: 0.14em;
    font-size: 0.8em;
    opacity: 0.9;
}

.hero h1 em {
    background: linear-gradient(135deg, #ff6b73 30%, #ff3bd2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}

.hero-copy p {
    max-width: 520px;
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin: 0 0 32px;
    padding: 0;
    color: #3d4654;
    list-style: none;
}

.hero-features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
}

.hero-features span {
    color: #222936;
    font-weight: 900;
}

.hero-price {
    display: flex;
    align-items: end;
    gap: 9px;
    margin: 0 0 24px;
    color: #ff6d72;
}

.hero-price strong {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    background: linear-gradient(135deg, #ff7b6d 30%, var(--pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
}

.hero-price small {
    font-size: 24px;
}

.hero-price > span:not(.sale-badge) {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 900;
}

.sale-badge {
    align-self: flex-start;
    margin: -8px 0 0 8px;
    padding: 4px 9px;
    border-radius: 999px;
    color: #fff;
    background: #ff367e;
    font-size: 13px;
    font-weight: 900;
}

.hero-price del {
    margin-bottom: 6px;
    color: #747b87;
    font-size: 16px;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 0 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    height: 42px;
    padding: 0 30px;
    border: 0;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: 0.25s ease;
    outline: none;
}

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

.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, #ff876f, #ff2f91);
    box-shadow: 0 12px 28px -8px rgba(255, 61, 110, 0.5);
}

.btn.trial {
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.04);
}

.btn.trial b {
    padding: 3px 8px;
    border-radius: 999px;
    color: #fff;
    background: #ff881b;
    font-size: 12px;
}

.btn.demo {
    min-width: auto;
    padding: 0 4px;
    color: var(--muted);
    background: transparent;
    font-weight: 400;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.hero-trust span::first-letter {
    color: var(--blue);
}

.hero-stage {
    flex: 1 1 50%;
    min-width: 0;
    position: relative;
    transition-delay: 0.2s !important;
    perspective: 1500px;
    height: 500px;
    z-index: 3;
}

.showcase-3d {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    will-change: transform;
    max-width: 600px;
    margin: auto;
}

.device {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    user-select: none;
    pointer-events: none;
    filter: drop-shadow(0 28px 32px rgba(32, 38, 58, 0.22));
    will-change: transform;
    transition: transform .8s cubic-bezier(0.11, 0.61, 0.59, 0.97);
}

.device-pc {
    z-index: 1;
    top: -2%;
    left: 20%;
    transform: translate3d(var(--mx, 0px), var(--my, 0px), 36px) scale(1.2);
}

.device-tablet {
    z-index: 3;
    top: 30%;
    left: -28%;
    transform: translate3d(calc(var(--mx, 0px) * 10), calc(var(--my, 0px) * 10), 76px) scale(0.7);
}

.device-phone {
    z-index: 4;
    top: 10%;
    left: 60%;
    transform: translate3d(calc(var(--mx, 0px) * 15), calc(var(--my, 0px) * 15), 130px) scale(0.7);
}

.float-chip {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #ff856d, #ff3d81);
    box-shadow: 0 16px 28px rgba(255, 83, 113, 0.28);
    font-weight: 900;
    transform: translateZ(150px);
}

.chip-like {
    right: 10%;
    top: 9%;
}

.chip-cart {
    left: 19%;
    top: 47%;
    background: linear-gradient(135deg, #ff7d55, #ffb02d);
}

.chip-hot {
    right: 1%;
    top: 41%;
    background: linear-gradient(135deg, #2fd6d3, #2f8cff);
}

@media (max-width: 960px) {
    #top {
        padding: 30px;
    }
    .hero {
        flex-direction: column;
    }

    .hero-stage,
    .hero-copy {
        width: 100%;
        max-width: 100%;
        flex: 1 1 auto;
    }

    .device-pc {
        top: 10%;
        max-width: 90% !important;
        left: 2% !important;
        right: 2% !important;
        margin: 0 auto;
    }

    .device-tablet {
        top: auto;
        bottom: -30%;
    }
    .device-phone {
        z-index: 4;
        top: 30%;
    }

    .hero-copy {
        order: 2;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-badges {
        margin-bottom: 24px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .float-chip {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}
