:root {
    --primary: #6f6fe8;
    --secondary: #6846df;
    --ink: #202236;
    --muted: #5f6377;
    --line: rgba(32, 34, 54, 0.1);
    --soft: #f7f8fc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --shadow: 0 24px 70px rgba(104, 70, 223, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.65;
}

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

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

.ga_container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.ga_site_header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(32, 34, 54, 0.08);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(32, 34, 54, 0.04);
}

.ga_site_header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent 8%, rgba(111, 111, 232, 0.62) 50%, transparent 92%);
}

.ga_nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 18px;
}

.ga_brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
    letter-spacing: 0;
}

.ga_brand_mark {
    position: relative;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(111, 111, 232, 0.14);
    border-radius: 10px;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 20px rgba(104, 70, 223, 0.12);
    overflow: visible;
    flex: 0 0 auto;
}

.ga_brand_mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ga_brand_mark::after {
    content: "";
    position: absolute;
    right: -3px;
    bottom: -3px;
    width: 10px;
    height: 10px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #6f6fe8;
    box-shadow: 0 0 0 2px rgba(111, 111, 232, 0.16);
}

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

.ga_brand_copy strong {
    font-size: 21px;
    font-weight: 850;
}

.ga_brand_copy strong span {
    color: var(--primary);
}

.ga_brand_copy small {
    margin-top: 5px;
    color: #6f7387;
    font-size: 11px;
    font-weight: 600;
}

.ga_nav_links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 4px;
    border: 1px solid #e6e8f1;
    border-radius: 8px;
    color: #454050;
    background: #f7f8fc;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.ga_nav_links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 11px;
    border-radius: 6px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.ga_nav_links a:hover {
    color: #6846df;
    background: #fff;
    box-shadow: 0 5px 14px rgba(32, 34, 54, 0.08);
}

.ga_nav_links a > i {
    color: #979caf;
    font-size: 16px;
    transition: color 0.2s ease;
}

.ga_nav_links a:hover > i {
    color: var(--primary);
}

.ga_nav_links a::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 5px;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.ga_nav_links a:hover::after,
.ga_nav_links a:focus-visible::after {
    transform: scaleX(1);
}

.ga_nav_actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.ga_header_status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #6f7387;
    font-size: 12px;
    font-weight: 650;
    white-space: nowrap;
}

.ga_header_status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6f6fe8;
    box-shadow: 0 0 0 4px rgba(111, 111, 232, 0.12);
    animation: ga_status_pulse 2s ease-in-out infinite;
}

@keyframes ga_status_pulse {
    50% {
        box-shadow: 0 0 0 7px rgba(111, 111, 232, 0.03);
    }
}

.ga_header_cta {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(111, 111, 232, 0.2);
}

.ga_menu_toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(32, 34, 54, 0.12);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.ga_menu_toggle i {
    display: block;
}

.ga_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.ga_btn i {
    font-size: 18px;
    line-height: 1;
}

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

.ga_btn_primary {
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 16px 34px rgba(104, 70, 223, 0.24);
}

.ga_btn_ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(111, 111, 232, 0.22);
}

.ga_stage {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 78px);
    display: grid;
    align-items: center;
    padding: 70px 0 92px;
    background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 78%);
}

.ga_stage_layout {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
    align-items: center;
    gap: 46px;
}

.ga_stage_content {
    position: relative;
    z-index: 6;
    max-width: 580px;
}

.ga_stage_meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.ga_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #6846df;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.ga_eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    flex: 0 0 auto;
    background: #6f6fe8;
}

.ga_stage h1 {
    display: flex;
    flex-direction: column;
    margin: 0;
    line-height: 1.12;
    letter-spacing: 0;
}

.ga_hero_lead,
.ga_hero_emphasis {
    font-size: 56px;
    font-weight: 800;
}

.ga_hero_lead {
    color: #202236;
}

.ga_gradient_text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ga_hero_emphasis {
    position: relative;
    z-index: 0;
    width: fit-content;
    margin-top: 4px;
    color: #6f6fe8;
}

.ga_hero_emphasis::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 2px;
    bottom: 3px;
    width: 132px;
    height: 9px;
    border-radius: 2px;
    background: rgba(111, 111, 232, 0.12);
    transform: skewX(-18deg);
}

.ga_stage_copy {
    margin: 26px 0 0;
    max-width: 515px;
    padding-left: 16px;
    border-left: 2px solid rgba(111, 111, 232, 0.2);
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.ga_stage_actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.ga_stage_actions .ga_btn {
    min-height: 50px;
    padding: 0 21px;
    border-radius: 8px;
}

.ga_stage_actions .ga_btn_primary {
    background: #6f6fe8;
    box-shadow: 0 14px 28px rgba(111, 111, 232, 0.22);
}

.ga_stage_actions .ga_btn_ghost {
    border-color: transparent;
    background: transparent;
}

.ga_stage_actions .ga_btn_ghost i {
    color: #6846df;
    transition: transform 0.2s ease;
}

.ga_stage_actions .ga_btn_ghost:hover {
    box-shadow: none;
}

.ga_stage_actions .ga_btn_ghost:hover i {
    transform: translateX(4px);
}

.ga_stage_metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 48px;
    max-width: 620px;
}

.ga_metric {
    padding-top: 16px;
    border-top: 1px solid rgba(32, 34, 54, 0.13);
}

.ga_metric strong {
    display: block;
    font-size: 26px;
    line-height: 1.1;
}

.ga_metric span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
}

.ga_stage_visual {
    position: relative;
    min-height: 600px;
    isolation: isolate;
}

.ga_stage_visual::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 82px;
    left: 62px;
    width: calc(100% - 112px);
    height: 430px;
    border: 1px solid rgba(111, 111, 232, 0.1);
    border-radius: 6px;
    background: #f0f1fb;
    transform: rotate(-2deg);
}

.ga_stage_visual::after {
    content: "角色 · 对话 · 陪伴";
    position: absolute;
    z-index: 4;
    right: 26px;
    bottom: 30px;
    padding-left: 24px;
    color: #85899d;
    background: linear-gradient(90deg, #7773df 0 15px, transparent 15px);
    font-size: 11px;
    font-weight: 700;
}

.ga_visual_spark {
    position: absolute;
    z-index: 4;
    top: 58px;
    left: 48px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(111, 111, 232, 0.15);
    border-radius: 50%;
    color: #6f6fe8;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(32, 34, 54, 0.09);
    font-size: 17px;
    transition: transform 0.3s ease;
}

.ga_visual_dots {
    position: absolute;
    z-index: 4;
    top: 106px;
    right: 18px;
    display: grid;
    gap: 7px;
}

.ga_visual_dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c8cad6;
}

.ga_visual_dots span:first-child {
    height: 18px;
    border-radius: 999px;
    background: #7773df;
}

.ga_visual_corner {
    position: absolute;
    z-index: 0;
    left: 48px;
    bottom: 36px;
    width: 68px;
    height: 28px;
    border-left: 2px solid rgba(111, 111, 232, 0.34);
    border-bottom: 2px solid rgba(111, 111, 232, 0.34);
}

.ga_stage_visual:hover .ga_visual_spark {
    transform: rotate(10deg) scale(1.05);
}

.ga_phone {
    position: absolute;
    padding: 6px;
    border: 1px solid rgba(32, 34, 54, 0.1);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(32, 34, 54, 0.12);
    transition: transform 0.35s ease;
}

.ga_phone::after {
    position: absolute;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(32, 34, 54, 0.09);
    border-radius: 50%;
    color: #75798d;
    background: #fff;
    box-shadow: 0 8px 18px rgba(32, 34, 54, 0.08);
    font-size: 9px;
    font-weight: 800;
}

.ga_phone img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 18px;
}

.ga_phone_main {
    z-index: 3;
    top: 18px;
    left: 50%;
    width: 292px;
    box-shadow: 0 24px 60px rgba(32, 34, 54, 0.17);
    transform: translateX(-50%);
}

.ga_phone_main::after {
    content: "01";
    right: -14px;
    top: 54px;
}

.ga_phone_back_left {
    z-index: 1;
    top: 142px;
    left: 2px;
    width: 184px;
    opacity: 0.9;
    transform: rotate(-5deg);
}

.ga_phone_back_left::after {
    content: "02";
    left: -14px;
    bottom: 72px;
}

.ga_phone_back_right {
    z-index: 1;
    top: 165px;
    right: 2px;
    width: 184px;
    opacity: 0.9;
    transform: rotate(5deg);
}

.ga_phone_back_right::after {
    content: "03";
    right: -14px;
    bottom: 72px;
}

.ga_stage_visual:hover .ga_phone_main {
    transform: translateX(-50%) translateY(-5px);
}

.ga_stage_visual:hover .ga_phone_back_left {
    transform: rotate(-4deg) translateX(-4px);
}

.ga_stage_visual:hover .ga_phone_back_right {
    transform: rotate(4deg) translateX(4px);
}

.ga_section {
    padding: 96px 0;
}

.ga_section_soft {
    background: var(--soft);
}

.ga_section_head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 42px;
    text-align: center;
}

.ga_section_head > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ga_section_title {
    position: relative;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    max-width: 720px;
    padding: 0 28px 18px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.16;
    letter-spacing: 0;
    text-align: center;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.ga_section_title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 70px;
    height: 4px;
    border-radius: 999px;
    background: var(--gradient);
    transform: translateX(-50%);
    box-shadow: 0 8px 18px rgba(104, 70, 223, 0.24);
}

.ga_section_desc {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    text-align: center;
}

.ga_feature_card,
.ga_review_card,
.ga_faq_item {
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 14px 42px rgba(32, 34, 54, 0.06);
}

.ga_showcase_strip {
    display: flex;
    gap: 16px;
    counter-reset: ga_showcase;
}

.ga_showcase_item {
    --showcase-accent: #7773df;
    --showcase-bg: #f5f5ff;
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 10px 38px;
    overflow: hidden;
    border: 1px solid rgba(32, 34, 54, 0.09);
    border-radius: 8px;
    background: var(--showcase-bg);
    box-shadow: 0 14px 36px rgba(32, 34, 54, 0.07);
    counter-increment: ga_showcase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ga_showcase_item:nth-child(2) {
    --showcase-accent: #d46d83;
    --showcase-bg: #fff7f8;
}

.ga_showcase_item:nth-child(3) {
    --showcase-accent: #3d9b73;
    --showcase-bg: #f4fbf8;
}

.ga_showcase_item:nth-child(4) {
    --showcase-accent: #697184;
    --showcase-bg: #f7f8fa;
}

.ga_showcase_item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--showcase-accent);
}

.ga_showcase_item::after {
    content: "0" counter(ga_showcase);
    position: absolute;
    right: 14px;
    bottom: 10px;
    color: var(--showcase-accent);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.ga_showcase_item img {
    width: 100%;
    border: 1px solid #e6e8f1;
    border-radius: 4px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ga_showcase_item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(32, 34, 54, 0.12);
}

.ga_showcase_item:hover img {
    transform: scale(1.025);
}

.ga_showcase_caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px 14px;
    border-radius: 16px;
    color: #fff;
    font-weight: 800;
    background: rgba(32, 34, 54, 0.62);
    backdrop-filter: blur(12px);
}

.ga_features_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ga_feature_card {
    min-height: 238px;
    padding: 28px;
    border-radius: 24px;
}

.ga_feature_icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 16px;
    color: #fff;
    background: var(--gradient);
    font-size: 24px;
    font-weight: 900;
}

.ga_feature_card h3,
.ga_review_card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.28;
}

.ga_feature_card p,
.ga_review_card p {
    margin: 0;
    color: var(--muted);
}

.ga_reviews_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ga_review_card {
    padding: 26px;
    border-radius: 24px;
}

.ga_stars {
    margin-bottom: 16px;
    color: #f4a11f;
    letter-spacing: 2px;
}

.ga_reviewer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.ga_reviewer strong {
    display: block;
    line-height: 1.25;
}

.ga_reviewer span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
}

.ga_faq_list {
    display: grid;
    gap: 14px;
    max-width: 880px;
    margin: 0 auto;
}

.ga_faq_item {
    border-radius: 20px;
    overflow: hidden;
}

.ga_faq_question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    border: 0;
    color: var(--ink);
    background: #fff;
    font: inherit;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.ga_faq_question span:last-child {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--gradient);
    flex: 0 0 auto;
    transition: transform 0.2s ease;
}

.ga_faq_answer {
    display: none;
    padding: 0 24px 24px;
    color: var(--muted);
}

.ga_faq_item.ga_is_open .ga_faq_answer {
    display: block;
}

.ga_faq_item.ga_is_open .ga_faq_question span:last-child {
    transform: rotate(45deg);
}

.ga_site_footer {
    color: #aeb2c2;
    background: #202236;
}

.ga_footer_inner {
    font-size: 14px;
}

.ga_footer_main {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto auto;
    align-items: center;
    gap: 42px;
    padding: 44px 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ga_footer_brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    width: fit-content;
}

.ga_footer_brand img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
}

.ga_footer_brand > span,
.ga_footer_brand strong,
.ga_footer_brand small {
    display: block;
}

.ga_footer_brand strong {
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
}

.ga_footer_brand small {
    margin-top: 5px;
    color: #9297aa;
    font-size: 12px;
    line-height: 1.4;
}

.ga_footer_links {
    display: flex;
    align-items: center;
    gap: 22px;
    white-space: nowrap;
}

.ga_footer_links a {
    transition: color 0.2s ease;
}

.ga_footer_links a:hover {
    color: #fff;
}

.ga_footer_action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    font-weight: 700;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.ga_footer_action:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
}

.ga_footer_action i {
    font-size: 18px;
}

.ga_footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0 25px;
    color: #818699;
    font-size: 12px;
}

.ga_footer_meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ga_footer_meta span + span {
    position: relative;
    padding-left: 20px;
}

.ga_footer_meta span + span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #676c80;
    transform: translateY(-50%);
}

@media (max-width: 980px) {
    .ga_header_status {
        display: none;
    }

    .ga_nav_links {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        padding: 12px;
        border: 1px solid rgba(32, 34, 54, 0.09);
        border-top: 0;
        border-radius: 0 0 8px 8px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 20px 36px rgba(32, 34, 54, 0.12);
    }

    .ga_site_header.ga_menu_open .ga_nav_links {
        display: grid;
    }

    .ga_nav_links a {
        padding: 12px 14px;
        background: #f7f8fc;
    }

    .ga_nav_links a::after {
        display: none;
    }

    .ga_menu_toggle {
        display: grid;
        place-items: center;
    }

    .ga_stage {
        min-height: auto;
    }

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

    .ga_stage_visual {
        width: min(680px, 100%);
        min-height: 620px;
        margin: 0 auto;
    }

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

    .ga_footer_links {
        grid-column: 1 / -1;
        grid-row: 2;
    }

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

@media (max-width: 640px) {
    .ga_container {
        width: min(100% - 40px, 1180px);
    }

    .ga_nav {
        min-height: 68px;
        gap: 12px;
    }

    .ga_brand_mark {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }

    .ga_brand_copy strong {
        font-size: 19px;
    }

    .ga_brand_copy small {
        display: none;
    }

    .ga_header_cta,
    .ga_menu_toggle {
        min-height: 40px;
        width: 40px;
        height: 40px;
    }

    .ga_header_cta {
        padding: 0;
        border-radius: 8px;
    }

    .ga_header_cta span {
        display: none;
    }

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

    .ga_stage {
        padding: 72px 0 78px;
    }

    .ga_stage_meta {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 20px;
    }

    .ga_hero_lead,
    .ga_hero_emphasis {
        font-size: 40px;
    }

    .ga_hero_emphasis {
        margin-top: 6px;
        line-height: 1.3;
    }

    .ga_hero_emphasis::after {
        width: 96px;
        height: 7px;
    }

    .ga_stage_copy {
        margin-top: 24px;
        font-size: 16px;
    }

    .ga_stage_actions .ga_btn {
        width: 100%;
    }

    .ga_stage_metrics,
    .ga_stage_visual {
        display: none;
    }

    .ga_stage_metrics,
    .ga_features_grid,
    .ga_reviews_grid {
        grid-template-columns: 1fr;
    }

    .ga_section {
        padding: 70px 0;
    }

    .ga_showcase_item img {
        height: 520px;
    }

    .ga_showcase_strip {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 14px;
        padding: 2px 0 18px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .ga_showcase_strip::-webkit-scrollbar {
        height: 0;
    }

    .ga_showcase_item {
        flex: 0 0 min(78vw, 300px);
        scroll-snap-align: start;
    }

    .ga_footer_main {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 38px 0 30px;
    }

    .ga_footer_links {
        grid-column: auto;
        grid-row: auto;
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .ga_footer_action {
        width: fit-content;
    }

    .ga_footer_bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .ga_footer_meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .ga_footer_meta span + span {
        padding-left: 0;
    }

    .ga_footer_meta span + span::before {
        display: none;
    }

    .ga_report_floating {
        right: 14px;
        bottom: 14px;
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
    }
}







/*投诉按钮，严禁改动！！！*/
.ga_report_floating {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(111, 111, 232, 0.18);
    border-radius: 999px;
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 16px 34px rgba(32, 34, 54, 0.16);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ga_report_floating:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(32, 34, 54, 0.2);
}

.ga_report_floating i {
    font-size: 18px;
    line-height: 1;
}
