/* Independent official website styles. Keep this file scoped to body.website-page. */
body.website-page *,
body.website-page *::before,
body.website-page *::after {
    box-sizing: border-box;
}

body.website-page {
    --website-bg: #f2f7f6;
    --website-paper: #fffdf8;
    --website-ink: #15201d;
    --website-muted: #65736f;
    --website-line: rgba(21, 32, 29, 0.14);
    --website-accent: #0f8f84;
    --website-accent-deep: #074f49;
    --website-coral: #e86f4d;
    --website-blue: #2d6cdf;
    --website-amber: #f4b84a;
    --website-soft: #e2f4ef;
    margin: 0;
    color: var(--website-ink);
    background: linear-gradient(135deg, #eef8f5 0%, #f8fbff 38%, #fff6e8 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.5;
}

body.website-page a {
    color: inherit;
}

.website-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    min-height: 74px;
    padding: 14px clamp(18px, 5vw, 68px);
    background: rgba(255, 253, 248, 0.9);
    border-bottom: 1px solid rgba(21, 32, 29, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 36px rgba(21, 32, 29, 0.06);
}

.website-brand,
.website-nav-links,
.website-nav-actions,
.website-hero-actions,
.website-cta-actions,
.website-footer {
    display: flex;
    align-items: center;
}

.website-brand {
    gap: 11px;
    min-width: 0;
    color: var(--website-ink);
    font-size: 1rem;
    font-weight: 850;
    white-space: nowrap;
}

.website-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(21, 32, 29, 0.12);
    overflow: hidden;
}

.website-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.website-nav-links {
    justify-content: center;
    gap: 6px;
    min-width: 0;
}

.website-nav-links a,
.website-link-button {
    min-height: 38px;
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--website-muted);
    font-size: 0.92rem;
    font-weight: 750;
    white-space: nowrap;
}

.website-nav-links a:hover,
.website-link-button:hover {
    color: var(--website-accent-deep);
    background: rgba(15, 127, 114, 0.08);
}

.website-nav-actions,
.website-hero-actions,
.website-cta-actions {
    gap: 10px;
}

.website-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border: 1px solid var(--website-line);
    border-radius: 999px;
    font-weight: 850;
    white-space: nowrap;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.website-button-dark {
    color: #fff;
    border-color: #101c1a;
    background: #101c1a;
    box-shadow: 0 16px 34px rgba(16, 28, 26, 0.28);
}

body.website-page a.website-button-dark,
body.website-page button.website-button-dark,
body.website-page .website-cta a.website-button-dark,
body.website-page .website-cta button.website-button-dark {
    color: #fff;
}

.website-button-dark:hover {
    background: #07110f;
    border-color: #07110f;
}

.website-button-light {
    color: var(--website-ink);
    border-color: rgba(21, 32, 29, 0.12);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 24px rgba(21, 32, 29, 0.08);
}

.website-button-light:hover {
    background: #fff;
}

.website-hero,
.website-section,
.website-footer {
    width: min(1320px, calc(100% - 36px));
    margin-inline: auto;
}

.website-flash {
    width: min(1320px, calc(100% - 36px));
    margin: 18px auto 0;
    padding: 14px 18px;
    border: 1px solid rgba(15, 127, 114, 0.22);
    border-radius: 16px;
    color: var(--website-accent-deep);
    background: rgba(230, 241, 237, 0.92);
    font-weight: 850;
}

.website-flash.error {
    color: #8c2a1f;
    border-color: rgba(140, 42, 31, 0.26);
    background: #fff0ed;
}

.website-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    min-height: 74dvh;
    padding: clamp(40px, 7vw, 86px) 0 clamp(54px, 7vw, 92px);
}

.website-hero-copy {
    max-width: 760px;
}

.website-kicker {
    margin: 0 0 14px;
    color: var(--website-accent-deep);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.website-hero h1,
.website-section h2,
.website-cta h2 {
    margin: 0;
    color: var(--website-ink);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
}

.website-hero h1 {
    max-width: 740px;
    font-size: 4.8rem;
}

.website-hero h1::selection,
.website-section h2::selection {
    color: #fff;
    background: var(--website-coral);
}

.website-lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--website-muted);
    font-size: 1.14rem;
    line-height: 1.82;
}

.website-hero-actions {
    flex-wrap: wrap;
    margin-top: 32px;
}

.website-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 660px;
    margin: 44px 0 0;
}

.website-proof div {
    padding: 17px 18px;
    border: 1px solid rgba(21, 32, 29, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.56);
}

.website-proof dt {
    margin: 0;
    font-size: 1.28rem;
    font-weight: 900;
}

.website-proof dd {
    margin: 5px 0 0;
    color: var(--website-muted);
    font-size: 0.9rem;
}

.website-hero-visual {
    position: relative;
    min-height: 640px;
}

.website-photo-strip {
    position: absolute;
    inset: 0 0 96px 56px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(7, 79, 73, 0.02), rgba(7, 79, 73, 0.62)), url("/assets/website-hero.jpg") center/cover;
    box-shadow: 0 34px 80px rgba(15, 88, 82, 0.22);
}

.website-photo-strip::after {
    content: "扫码 · 下单 · 处理";
    position: absolute;
    left: 26px;
    bottom: 24px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    color: #fff;
    background: rgba(21, 32, 29, 0.42);
    backdrop-filter: blur(12px);
    font-size: 0.9rem;
    font-weight: 850;
}

.website-console {
    position: absolute;
    left: 0;
    right: 42px;
    bottom: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 24px;
    background: rgba(251, 252, 248, 0.92);
    box-shadow: 0 26px 70px rgba(21, 32, 29, 0.22);
    backdrop-filter: blur(20px);
}

.website-console-head,
.website-ticket,
.website-console-stats {
    display: grid;
    align-items: center;
}

.website-console-head {
    grid-template-columns: 1fr auto;
    padding: 4px 4px 14px;
    color: var(--website-muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.website-console-head strong {
    color: var(--website-ink);
}

.website-ticket {
    grid-template-columns: 82px minmax(0, 1fr) auto;
    gap: 12px;
    margin-top: 10px;
    padding: 15px 16px;
    border: 1px solid rgba(21, 32, 29, 0.08);
    border-radius: 16px;
    background: #fff;
}

.website-ticket.is-hot {
    border-color: rgba(15, 127, 114, 0.25);
    background: var(--website-soft);
}

.website-ticket span,
.website-ticket em {
    color: var(--website-muted);
    font-size: 0.86rem;
    font-style: normal;
    font-weight: 800;
}

.website-ticket strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.website-ticket em {
    color: var(--website-accent-deep);
}

.website-console-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.website-console-stats div {
    padding: 16px;
    border-radius: 16px;
    color: #fff;
    background: var(--website-ink);
}

.website-console-stats b,
.website-console-stats span {
    display: block;
}

.website-console-stats b {
    font-size: 1.8rem;
    line-height: 1;
}

.website-console-stats span {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.86rem;
}

.website-section {
    padding: 86px 0;
}

.website-band {
    width: 100%;
    max-width: none;
    padding-inline: max(18px, calc((100% - 1320px) / 2));
    background: var(--website-paper);
    border-block: 1px solid rgba(21, 32, 29, 0.08);
}

.website-section-head {
    display: block;
    max-width: 900px;
    margin-bottom: 34px;
}

.website-section-head.narrow {
    max-width: 820px;
}

.website-section h2,
.website-cta h2 {
    max-width: 850px;
    font-size: 3.1rem;
}

.website-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(226px, auto);
    gap: 14px;
}

.website-feature {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(21, 32, 29, 0.1);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(21, 32, 29, 0.06);
}

.website-feature-large {
    grid-column: span 2;
    grid-row: span 2;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 468px;
    background: linear-gradient(145deg, rgba(8, 40, 37, 0.92) 0%, rgba(13, 118, 108, 0.8) 58%, rgba(45, 108, 223, 0.62) 100%), url("/assets/website-scan.jpg") center/cover;
}

.website-feature-tall {
    grid-row: auto;
    color: #fff;
    overflow: hidden;
    min-height: 226px;
    background: linear-gradient(180deg, rgba(7, 32, 29, 0.9) 0%, rgba(7, 79, 73, 0.72) 62%, rgba(45, 108, 223, 0.42) 100%), url("/assets/website-room.jpg") center/cover;
}

.website-feature:nth-child(2) {
    color: #fff;
    background: linear-gradient(180deg, rgba(6, 31, 50, 0.86) 0%, rgba(45, 108, 223, 0.64) 100%), url("/assets/website-orders.jpg") center/cover;
}

.website-feature:nth-child(3) {
    color: #fff;
    background: linear-gradient(180deg, rgba(54, 23, 15, 0.84) 0%, rgba(232, 111, 77, 0.62) 100%), url("/assets/website-feedback.jpg") center/cover;
}

.website-feature:nth-child(4) {
    color: #fff;
    background: linear-gradient(180deg, rgba(20, 24, 44, 0.86) 0%, rgba(86, 72, 184, 0.58) 100%), url("/assets/website-content.jpg") center/cover;
}

.website-feature span {
    color: var(--website-accent-deep);
    font-size: 0.82rem;
    font-weight: 900;
}

.website-feature-large span {
    color: rgba(255, 255, 255, 0.6);
}

.website-feature-tall span {
    color: rgba(255, 255, 255, 0.68);
}

.website-feature:nth-child(2) span,
.website-feature:nth-child(3) span,
.website-feature:nth-child(4) span {
    color: rgba(255, 255, 255, 0.72);
}

.website-feature h3 {
    margin: 28px 0 10px;
    font-size: 1.32rem;
    line-height: 1.25;
}

.website-feature-large h3 {
    max-width: 420px;
    font-size: 2.45rem;
    line-height: 1.08;
}

.website-feature p,
.website-timeline p,
.website-scene-list span,
.website-cta p {
    margin: 0;
    color: var(--website-muted);
    line-height: 1.75;
}

.website-feature-large p {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.7);
}

.website-feature-tall p {
    color: rgba(255, 255, 255, 0.78);
}

.website-feature:nth-child(2) p,
.website-feature:nth-child(3) p,
.website-feature:nth-child(4) p {
    color: rgba(255, 255, 255, 0.8);
}

.website-workflow {
    display: grid;
    grid-template-columns: minmax(280px, 0.36fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.website-timeline {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--website-line);
}

.website-timeline div {
    display: grid;
    grid-template-columns: 58px minmax(150px, 0.32fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid var(--website-line);
}

.website-timeline span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    background: var(--website-accent);
    font-weight: 900;
}

.website-timeline h3,
.website-scene-list strong {
    margin: 0;
    font-size: 1.1rem;
}

.website-split {
    display: grid;
    grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}

.website-scene-list {
    display: grid;
    gap: 14px;
}

.website-scene-list div {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    padding: 22px 0;
    border-top: 1px solid var(--website-line);
}

.website-cta {
    display: grid;
    grid-template-columns: minmax(320px, 0.86fr) minmax(520px, 0.9fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    margin-bottom: 50px;
    padding: clamp(32px, 5vw, 58px);
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(135deg, #071d1b 0%, #0c6f68 48%, #2d6cdf 74%, #e86f4d 100%);
    box-shadow: 0 26px 90px rgba(15, 88, 82, 0.24);
}

.website-cta h2,
.website-cta .website-kicker {
    color: #fff;
}

.website-cta p {
    max-width: 760px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.website-trial-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    min-width: 0;
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 24px;
    color: var(--website-ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 26px 70px rgba(7, 36, 34, 0.2);
}

.website-trial-form label {
    display: grid;
    gap: 7px;
    min-width: 0;
    color: var(--website-muted);
    font-size: 0.92rem;
    font-weight: 850;
}

.website-trial-form input,
.website-trial-form select {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid rgba(21, 32, 29, 0.16);
    border-radius: 14px;
    color: var(--website-ink);
    background: #fff;
    font: inherit;
}

.website-trial-form input:focus,
.website-trial-form select:focus {
    outline: 2px solid rgba(15, 127, 114, 0.22);
    border-color: var(--website-accent);
}

.website-trial-form .website-button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 52px;
    border-color: #101c1a;
    color: #fff;
    background: #101c1a;
    box-shadow: 0 16px 30px rgba(16, 28, 26, 0.28);
}

.website-cta .website-button-dark {
    color: #fff;
    border-color: #101c1a;
    background: #101c1a;
}

.website-cta .website-button-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.website-footer {
    justify-content: space-between;
    gap: 18px;
    padding: 28px 0 42px;
    color: var(--website-muted);
    font-size: 0.92rem;
}

.website-footer span {
    font-weight: 850;
    color: var(--website-ink);
}

@media (max-width: 1120px) {
    .website-nav {
        grid-template-columns: 1fr auto;
    }

    .website-nav-links {
        display: none;
    }

    .website-hero {
        grid-template-columns: 1fr;
    }

    .website-hero h1 {
        font-size: 3.6rem;
    }

    .website-hero-visual {
        min-height: 560px;
    }

    .website-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .website-workflow,
    .website-split,
    .website-cta {
        grid-template-columns: 1fr;
    }

    .website-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .website-nav {
        position: static;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        padding: 14px 16px;
    }

    .website-brand {
        white-space: normal;
    }

    .website-nav-actions,
    .website-hero-actions,
    .website-cta-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .website-nav-actions,
    .website-trial-form {
        grid-template-columns: 1fr;
    }

    .website-link-button,
    .website-button {
        min-width: 0;
        padding-inline: 12px;
        font-size: 0.9rem;
    }

    .website-hero,
    .website-section,
    .website-footer {
        width: min(100% - 28px, 1320px);
    }

    .website-hero {
        min-height: auto;
        padding: 34px 0 48px;
    }

    .website-hero h1,
    .website-section h2,
    .website-cta h2 {
        font-size: 2.35rem;
        line-height: 1.12;
    }

    .website-lead {
        font-size: 1rem;
        line-height: 1.72;
    }

    .website-proof,
    .website-feature-grid,
    .website-section-head,
    .website-timeline div,
    .website-scene-list div,
    .website-console-stats {
        grid-template-columns: 1fr;
    }

    .website-hero-visual {
        min-height: 520px;
    }

    .website-photo-strip {
        inset: 0 0 132px 0;
        border-radius: 22px;
    }

    .website-console {
        right: 0;
        padding: 14px;
        border-radius: 20px;
    }

    .website-ticket {
        grid-template-columns: 1fr auto;
    }

    .website-ticket strong {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .website-section {
        padding: 58px 0;
    }

    .website-band {
        width: 100%;
        padding-inline: 14px;
    }

    .website-feature,
    .website-cta {
        border-radius: 18px;
    }

    .website-feature-large,
    .website-feature-tall {
        grid-column: auto;
        grid-row: auto;
    }

    .website-feature-large h3 {
        font-size: 1.8rem;
    }

    .website-timeline div {
        gap: 12px;
    }

    .website-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
