/* ========== Tokens ========== */
:root {
    --brand-blue: #1B4FE0;
    --brand-blue-deep: #0A2DAD;
    --brand-blue-soft: #E8F0FF;
    --brand-blue-hero: #B8D4FF;
    --brand-purple: #7B3FE4;
    --brand-purple-deep: #5B22B8;
    --brand-purple-soft: #F3EBFF;
    --brand-gold: #F5B829;
    --brand-gold-deep: #D9941A;
    --brand-orange: #E8731B;
    --ink-900: #0E1118;
    --ink-700: #2A2F3A;
    --ink-500: #5C6172;
    --ink-300: #B7BCC9;
    --ink-200: #DCE0EA;
    --ink-100: #EEF1F7;
    --ink-50: #F7F9FC;
    --bg-cool: #95B8E0;
    --bg-cyan: #7CB6D9;
    --bg-dark: #1B1F2A;
    --bg-darker: #0E1118;
    --up: #E84B4B;
    --down: #21B573;
    --candle-orange: #F5A032;
    --candle-purple: #8B5CF6;
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 6px rgba(14, 17, 24, 0.06);
    --shadow: 0 8px 24px rgba(14, 17, 24, 0.08);
    --shadow-lg: 0 20px 60px rgba(14, 17, 24, 0.16);
    --gradient-purple-orange: linear-gradient(90deg, #7B3FE4 0%, #B452C9 35%, #D8508C 65%, #E8731B 100%);
    --gradient-blue-purple: linear-gradient(135deg, #1B4FE0 0%, #5B22B8 100%);
    --font-sans: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
    --font-mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
}

/* ========== Reset ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--ink-900);
    background: #ffffff;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

h1,
h2,
h3,
h4 {
    line-height: 1.25;
    margin: 0 0 .5rem;
    font-weight: 600;
}

p {
    margin: 0 0 1rem;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 860px) {
    .container {
        padding: 0 16px;
    }
}

.section-h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

/* ========== Hero ========== */
.hero {
    background: linear-gradient(180deg, #C9DDF6 0%, #B8D4FF 60%, #A8C8F5 100%);
    padding: 56px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(27, 79, 224, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 79, 224, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    text-align: center;
}

.hero-headline {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--ink-900);
    margin: 0;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

.hero-sub {
    margin-top: 14px;
    font-size: 17px;
    color: var(--ink-700);
    letter-spacing: 0.04em;
}

.hero-devices {
    position: relative;
    margin: 40px auto 0;
    width: 1100px;
    height: 500px;
    max-width: 100%;
}

.hero-laptop {
    position: absolute;
    left: 250px;
    top: 50px;
    width: 600px;
    height: 340px;
}

.hero-laptop-screen {
    width: 100%;
    height: 280px;
    background: linear-gradient(180deg, #1B1F2A 0%, #0E1118 100%);
    border: 8px solid #2A2F3A;
    border-radius: 12px 12px 4px 4px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
}

.hero-laptop-status {
    display: flex;
    justify-content: space-between;
    color: #7C8398;
    font-size: 9px;
    font-family: var(--font-mono);
    margin-bottom: 6px;
}

.status-live {
    color: #21B573;
}

.hero-mini-chart {
    width: 100%;
    height: calc(100% - 16px);
    display: block;
}

.hero-laptop-base {
    width: calc(100% + 80px);
    margin-left: -40px;
    height: 18px;
    background: linear-gradient(180deg, #C7CDDB 0%, #9BA3B5 100%);
    border-radius: 0 0 12px 12px;
}

.hero-phone {
    position: absolute;
    width: 160px;
    height: 320px;
    background: #0E1118;
    border: 4px solid #1B1F2A;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    padding: 8px;
}

.hero-phone-left {
    left: 390px;
    top: 150px;
}

.hero-phone-right {
    left: 570px;
    top: 150px;
}

.hero-phone-screen {
    background: #0E1118;
    height: 100%;
    border-radius: 14px;
    padding: 10px;
    color: #fff;
    font-size: 9px;
}

.phone-price {
    color: #F5B829;
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-mono);
}

.phone-change {
    color: #E84B4B;
    font-size: 9px;
    margin-bottom: 8px;
}

.phone-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid #1B1F2A;
}

.phone-row span:first-child {
    color: #B7BCC9;
}

.phone-row .up {
    color: #21B573;
    font-family: var(--font-mono);
}

.phone-row .dn {
    color: #E84B4B;
    font-family: var(--font-mono);
}

.hero-phone-screen-r {
    background: linear-gradient(180deg, #1B1F2A 0%, #0E1118 100%);
    height: 100%;
    border-radius: 14px;
    padding: 10px;
    color: #fff;
    font-size: 10px;
}

.phone-r-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.phone-r-head strong {
    color: #F5B829;
    font-weight: 700;
}

.phone-r-head span {
    color: #7C8398;
    font-size: 9px;
}

.phone-r-row {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    border-bottom: 1px solid #2A2F3A;
}

.phone-r-row i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #F5B829;
}

.phone-r-row span {
    color: #DCE0EA;
    font-size: 9px;
    flex: 1;
}

.phone-r-cta {
    margin-top: 10px;
    width: 100%;
    padding: 8px;
    background: #E84B4B;
    color: #fff;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
}

.hero-bubble {
    position: absolute;
    background: #fff;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-700);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(14, 17, 24, 0.1);
    line-height: 1.3;
}

.bubble-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--brand-blue-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    flex-shrink: 0;
}

/* Zig-zag 三层布局：内 / 外 / 内 */
.hero-bubble-1 {
    left: 18%;
    top: 16.5%;
}

.hero-bubble-4 {
    right: 20.5%;
    top: 21%;
}

.hero-bubble-2 {
    left: 10%;
    top: 31%;
}

.hero-bubble-5 {
    right: 9%;
    top: 35%;
}

.hero-bubble-3 {
    left: 21.5%;
    top: 46%;
}

.hero-bubble-6 {
    right: 17.5%;
    top: 49.5%;
}

.hero-features {
    display: flex;
    justify-content: space-around;
    margin: 40px auto 0;
    max-width: 900px;
    font-size: 15px;
    color: var(--ink-700);
    font-weight: 500;
}

.hero-disclaimer {
    margin: 16px auto 0;
    font-size: 12px;
    color: #FFFFFF;
    text-align: center;
    max-width: 800px;
}

/* ========== Hero CTAs (位于 Hero 底部，距离上方有 margin) ========== */
.hero-ctas-row {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: #373a41;
    color: #fff;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    position: relative;
    text-decoration: none;
    border: none;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 17, 24, 0.18);
}

.cta-sep {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.25);
}

.cta-qr-pop {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s;
    z-index: 5;
}

.cta-qr-pop::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #fff;
}

.cta-btn[data-cta-qr]:hover .cta-qr-pop,
.cta-btn[data-cta-qr]:focus-within .cta-qr-pop {
    opacity: 1;
}

.cta-qr-pop>.qr-tip-inline {
    text-align: center;
    font-size: 12px;
    color: var(--ink-700);
    margin-top: 6px;
}

/* ========== Hot Activities ========== */

/* ----- Swiper（保留组件样式以备其他 section 使用，本页未启用） ----- */
.swiper-wrap {
    position: relative;
    padding: 0 8px;
}

.swiper-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 4px 16px;
}

.swiper-track::-webkit-scrollbar {
    display: none;
}

.swiper-slide {
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: 0;
    scroll-snap-align: start;
}

.swiper-nav {
    position: absolute;
    top: calc(50% - 16px);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--ink-700);
    box-shadow: 0 4px 12px rgba(14, 17, 24, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background .15s, color .15s, transform .15s;
}

.swiper-nav:hover {
    background: var(--brand-blue);
    color: #fff;
}

.swiper-prev {
    left: -20px;
}

.swiper-next {
    right: -20px;
}

.swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.swiper-pagination .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ink-200);
    transition: background .15s, width .15s;
    cursor: pointer;
}

.swiper-pagination .dot.is-active {
    background: var(--brand-blue);
    width: 24px;
    border-radius: 4px;
}

.hot-img-content {
    position: absolute;
    inset: 0;
    padding: 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hot-img-1 {
    background: linear-gradient(135deg, #6B5BE8 0%, #9B7FE8 50%, #C499E8 100%);
}

.hot-img-2 {
    background: linear-gradient(135deg, #2D1B5E 0%, #5B22B8 50%, #C04AB8 100%);
}

.hot-img-3 {
    background: linear-gradient(135deg, #1B4FE0 0%, #2A6FE8 50%, #4ABDE8 100%);
}

.hot-img-4 {
    background: linear-gradient(135deg, #E8731B 0%, #F5A032 50%, #F5B829 100%);
}

.hot-badge {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    font-size: 11px;
    margin-bottom: 8px;
}

.hot-sub {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.hot-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    align-self: flex-end;
}

/* ========== Live Chart ========== */

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.4);
    }
}

/* === K 线降级状态：徽章 / banner / 蒙层 === */

.stat-gold {
    color: var(--brand-gold) !important;
}

.stat-purple {
    color: var(--candle-purple) !important;
}

/* 复用 .cta-qr-pop 的样式，hover 时显示 */

/* ========== Features ========== */
.features {
    padding: 64px 0;
    background: #fff;
}

.features .section-h2 {
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 24px;
}

.features-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.features-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.feature-card {
    background: var(--bg-cyan);
    padding: 48px 32px;
    min-height: 280px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform .2s, box-shadow .2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(124, 182, 217, 0.4);
}

.feature-card-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 14px;
}

.feature-card-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #000;
    font-weight: 500;
}

/* 底部 2 张宽卡 —— 紧贴拼接（无 gap、无圆角、无分割线） */
.features-grid-joined {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-bottom: 0;
}

.feature-card-wide {
    background: var(--bg-cyan);
    padding: 48px 32px;
    min-height: 280px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 32px;
}

.v-title {
    writing-mode: vertical-rl;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.25em;
    flex-shrink: 0;
}

.v-desc {
    font-size: 13px;
    line-height: 1.8;
    color: #000;
    font-weight: 500;
}

/* ========== Download Section ========== */

.download-title-accent {
    color: var(--brand-blue);
    margin-left: 12px;
}

.download-phone-frame {
    width: 100%;
    height: 100%;
    background: #0E1118;
    border: 6px solid #2A2F3A;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 22px;
    background: #0E1118;
    border-radius: 11px;
    z-index: 2;
}

.download-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0E1118 0%, #1A1F2C 100%);
    border-radius: 28px;
    overflow: hidden;
    color: #fff;
    font-size: 11px;
    padding: 16px;
    padding-top: 28px;
    position: relative;
}

.dp-status {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #fff;
    margin-bottom: 12px;
}

.dp-status>span:last-child {
    display: flex;
    gap: 4px;
}

.dp-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.dp-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.dp-tab-list {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #DCE0EA;
}

.dp-tab-list span.dp-tab-active {
    color: #fff;
    font-weight: 600;
}

.dp-search {
    margin-left: auto;
    color: #7C8398;
}

.dp-promo {
    background: linear-gradient(135deg, #1B4FE0 0%, #5B22B8 100%);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 12px;
}

.dp-promo-title {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
}

.dp-promo-sub {
    font-size: 9px;
    opacity: 0.85;
}

.dp-card {
    background: #2A2F3A;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 8px;
}

.dp-card-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dp-tag {
    background: var(--brand-blue);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 9px;
}

.dp-card-title {
    color: var(--brand-gold);
    font-weight: 700;
    font-size: 14px;
}

.dp-card-sub {
    font-size: 9px;
    color: #7C8398;
    margin-top: 4px;
}

.dp-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 12px;
}

.dp-cell {
    background: #2A2F3A;
    padding: 8px;
    border-radius: 6px;
}

.dp-cell-l {
    font-size: 9px;
    color: #7C8398;
}

.dp-cell-v {
    font-size: 11px;
    color: var(--brand-gold);
    font-weight: 600;
}

.dp-btn-primary {
    width: 100%;
    padding: 10px;
    background: var(--brand-blue);
    color: #fff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.dp-btn-second {
    width: 100%;
    margin-top: 6px;
    padding: 10px;
    background: #2A2F3A;
    color: #DCE0EA;
    border-radius: 6px;
    font-size: 11px;
}

.dp-foot {
    margin-top: 10px;
    font-size: 8px;
    color: #5C6172;
    text-align: center;
}

.dp-info {
    background: #2A2F3A;
    padding: 6px;
    border-radius: 6px;
    text-align: center;
    color: #DCE0EA;
    font-size: 9px;
    margin-top: 8px;
}

/* ========== News ========== */
.news-section {
    padding: clamp(64px, 5.89vw, 113px) 0 clamp(54px, 5vw, 96px);
    background: #fff;
}

.news-section.section-h2 {
    font-size: clamp(26px, 2.4vw, 46px);
    color: #333333;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    transition: box-shadow .15s, border-color .15s, transform .15s;
}

.news-item:hover {
    border-color: var(--brand-purple);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    transform: translateX(4px);
}

.news-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #9d5cfe;
    flex-shrink: 0;
}

.news-text {
    flex: 1;
    font-size: 15px;
    color: var(--ink-900);
    font-weight: bold;
}

.news-arrow {
    color: var(--ink-300);
    display: flex;
    transition: color .15s;
}

.news-item:hover .news-arrow {
    color: var(--brand-purple);
}

/* ========== Financial Analysis Page ========== */

.analysis-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 72px;
}

.analysis-pagination .page-link {
    min-width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-300);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
    transition: color .15s, background .15s;
}

.analysis-pagination .page-link.is-active {
    color: var(--ink-900);
    background: rgba(17, 24, 39, .04);
}

.analysis-pagination .page-link:not(.page-disabled):hover {
    color: var(--brand-purple);
    background: rgba(157, 92, 254, .08);
}

.analysis-pagination .page-disabled {
    opacity: .36;
    cursor: default;
}

/* ========== Calculator (浅紫卡片 / 渐变滑块 / 单列布局) ========== */
.calculator {
    padding: clamp(48px, 4.43vw, 85px) 0 clamp(53px, 4.9vw, 94px);
    background: #E4EAF9;
}

.calculator .section-h2 {
  font-size: clamp(26px, 2.4vw, 46px);
  color: #333333;
}

.calc-card {
    background: #FFFFFF;
    border: 1px solid #E9D8FF;
    border-radius: 14px;
    padding: 32px 36px;
    max-width: 920px;
    margin: 0 auto;
    color: var(--ink-700);
    box-shadow: 0 12px 40px rgba(123, 63, 228, 0.08);
    position: relative;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
}

.calc-grid-full {
    grid-column: 1 / -1;
}

.calc-field {
    margin-bottom: 0;
}

.calc-label {
    font-size: 13px;
    color: var(--ink-700);
    margin-bottom: 8px;
    font-weight: 500;
}

.calc-label strong {
    color: var(--brand-purple-deep);
    font-family: var(--font-mono);
    font-weight: 700;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.calc-input,
.calc-select {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border: 2px solid #3150ff;
    border-radius: 8px;
    outline: none;
    background: #fff;
    color: var(--ink-900);
    transition: border-color .15s, box-shadow .15s;
    font-family: inherit;
}

.calc-input {
    font-family: var(--font-mono);
}

.calc-input:focus,
.calc-select:focus {
    border-color: var(--brand-purple);
    box-shadow: 0 0 0 3px rgba(123, 63, 228, 0.1);
}

.calc-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%237B3FE4' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

/* 渐变滑块 —— 橙到紫（与原渐变颜色顺序相反） */
.calc-slider {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    height: 7px;
    border-radius: 999px;
    outline: none;
    background: linear-gradient(90deg, #83DBF6 0%, #3059FF 100%);
    margin: 6px 0 0;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #9640EF;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(150, 64, 239, 0.35);
}

.calc-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #9640EF;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(150, 64, 239, 0.35);
}

.calc-range-row {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: var(--ink-500);
}

/* 结果区改为浅色单行 */
.calc-result {
    margin-top: 24px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #E9D8FF;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.calc-result-l {
    font-size: 12px;
    color: var(--ink-500);
}

.calc-result-v {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-mono);
    margin-top: 4px;
}

.calc-blue {
    color: var(--brand-blue);
}

.calc-green {
    color: #21B573;
}

.calc-red {
    color: #E84B4B;
}

.calc-result-v[data-calc-out="days"] {
    color: var(--ink-900);
}

.calc-submit {
    margin-top: 20px;
    width: 100%;
    padding: 16px 0;
    background: #2051ff;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .15s, box-shadow .15s, filter .15s;
    position: relative;
}

.calc-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 12px 28px rgba(123, 63, 228, 0.35);
}

/* ========== FAQ ========== */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    transition: box-shadow .15s, border-color .15s;
}

.faq-item.faq-open {
    border-color: var(--brand-purple);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    color: var(--ink-900);
}

.faq-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #9d5cfe;
    flex-shrink: 0;
}

.faq-q-text {
    flex: 1;
}

.faq-chev {
    color: var(--ink-500);
    display: flex;
    transition: transform .25s;
}

.faq-item.faq-open .faq-chev {
    transform: rotate(180deg);
}

.faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease;
}

.faq-item.faq-open .faq-a {
    max-height: 240px;
}

.faq-a-inner {
    padding: 0 24px 20px 50px;
    color: var(--ink-500);
    font-size: 14px;
    line-height: 1.7;
}

/* ========== Article Detail ========== */

.article-cover-default {
    min-height: 260px;
    background: #f4f7fb;
    border: 1px solid var(--ink-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-cover-default img {
    width: min(280px, 52%);
    max-height: 180px;
    object-fit: contain;
}

/* ========== FAQ Page ========== */

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========== About Template ========== */

.about-copy {
    max-width: 1040px;
    color: #111827;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 500;
}

.about-copy p {
    margin: 0 0 18px;
}

.about-copy p:last-child {
    margin-bottom: 0;
}

.about-intro-visual {
    position: absolute;
    right: 1px;
    top: 108px;
    width: 340px;
    height: 402px;
    object-fit: contain;
    display: block;
}

@keyframes aboutHistorySheen {
    0% {
        opacity: 0;
        transform: translate3d(-45%, 0, 0) skewX(-10deg);
    }
    28% {
        opacity: .8;
    }
    100% {
        opacity: 0;
        transform: translate3d(45%, 0, 0) skewX(-10deg);
    }
}

@keyframes aboutHistoryTextIn {
    0% {
        opacity: 0;
        transform: translate3d(18px, 0, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.about-awards-section {
    padding: 64px 0 48px;
    background: #fff;
}

.about-awards-section .awards-title {
    margin-bottom: 40px;
}

.about-awards-track {
    animation-duration: 38s;
}

.about-awards-section .award-text {
    min-width: 218px;
}

/* ========== Software Download Template ========== */

.software-hero-panel {
    border-radius: 14px;
    background: #a8cbfb;
    min-height: 640px;
    padding: 104px 48px 48px;
    text-align: center;
    overflow: hidden;
}

.software-hero-panel h1 {
    margin: 0 0 18px;
    color: #111827;
    font-size: 46px;
    font-weight: 900;
    letter-spacing: 0;
}

.software-hero-panel p {
    margin: 0;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
}

.software-screen {
    width: min(980px, 88%);
    height: 410px;
    margin: 48px auto 34px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.software-screen img {
    width: 1180px;
    max-width: none;
    height: auto;
    transform: translateX(78px);
}

.software-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 360px;
    min-height: 52px;
    padding: 14px 42px;
    border-radius: 999px;
    background: #30343e;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    transition: transform .18s, box-shadow .18s, background .18s;
}

.software-download-btn:hover {
    transform: translateY(-2px);
    background: #242832;
    box-shadow: 0 12px 28px rgba(36, 40, 50, .28);
}

/* ========== Modal ========== */
.auth-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 17, 24, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadein .2s ease;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideup {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.auth-card {
    width: 420px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: slideup .25s ease;
}

.auth-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-500);
    border-radius: 6px;
    transition: background .15s;
}

.auth-close:hover {
    background: var(--ink-50);
}

.auth-tabs {
    display: flex;
    gap: 24px;
    border-bottom: 1px solid var(--ink-100);
    margin-bottom: 24px;
}

.auth-tab {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink-500);
    cursor: pointer;
    position: relative;
    background: none;
    border: none;
    font-family: inherit;
}

.auth-tab.is-active {
    color: var(--ink-900);
    font-weight: 600;
}

.auth-tab.is-active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand-blue);
    border-radius: 1px;
}

.auth-field {
    margin-bottom: 16px;
}

.auth-label {
    font-size: 13px;
    color: var(--ink-700);
    margin-bottom: 8px;
}

.auth-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid var(--ink-200);
    border-radius: 8px;
    outline: none;
    transition: border-color .15s;
    font-family: inherit;
}

.auth-input:focus {
    border-color: var(--brand-blue);
}

.auth-input-row {
    display: flex;
    gap: 8px;
}

.auth-cc {
    width: 80px;
    flex: none;
    text-align: center;
}

.auth-pwd-wrap {
    position: relative;
}

.auth-pwd-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ink-500);
}

.auth-code-btn {
    padding: 0 16px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.auth-helper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--ink-500);
    margin-bottom: 20px;
}

.auth-link {
    color: var(--brand-blue);
    cursor: pointer;
}

.auth-submit {
    width: 100%;
    padding: 14px 0;
    background: var(--gradient-blue-purple);
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: transform .15s, box-shadow .15s;
}

.auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 79, 224, 0.3);
}

.auth-agreement {
    margin-top: 16px;
    font-size: 12px;
    color: var(--ink-500);
    text-align: center;
    line-height: 1.6;
}

/* ========== Academy List Template ========== */

.academy-news-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #9d5cfe;
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
    .software-hero-panel {
        min-height: 560px;
        padding-top: 76px;
    }

    .software-screen {
        width: 96%;
        height: 330px;
    }

    .software-screen img {
        width: 980px;
        transform: translateX(60px);
    }

    .hero-headline {
        font-size: 44px;
    }

    .hero-devices {
        transform: scale(0.86);
        transform-origin: top center;
        height: 430px;
    }

    .swiper-slide {
        flex: 0 0 calc((100% - 40px) / 3);
    }
}

@media (max-width: 860px) {
    
    .about-awards-section {
        padding: 56px 0 42px;
    }

    .about-awards-section h2 {
        margin-bottom: 32px;
        font-size: 28px;
    }

    .software-hero-panel {
        border-radius: 10px;
        min-height: 500px;
        padding: 56px 20px 38px;
    }

    .software-hero-panel h1 {
        font-size: 34px;
    }

    .software-screen {
        height: 270px;
        margin: 36px auto 28px;
    }

    .software-screen img {
        width: 810px;
        transform: translateX(48px);
    }

    .software-download-btn {
        min-width: 280px;
        min-height: 48px;
        font-size: 16px;
    }

    .hero-devices {
        transform: scale(0.62);
        transform-origin: top center;
        height: 320px;
    }

    .swiper-slide {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .swiper-prev {
        left: -8px;
    }

    .swiper-next {
        right: -8px;
    }

    .features-grid-3 {
        grid-template-columns: 1fr;
    }

    .features-grid-2 {
        grid-template-columns: 1fr;
    }

    .features-grid-joined {
        grid-template-columns: 1fr;
    }

    .feature-card-wide {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .v-title {
        writing-mode: horizontal-tb;
    }

    .calc-card {
        padding: 24px 20px;
    }

    .calc-result {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

}

@media (max-width: 560px) {
    
    .academy-news-dot {
        width: 10px;
        height: 10px;
    }

    .about-copy {
        font-size: 15px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .about-awards-track {
        gap: 16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .software-hero-panel {
        min-height: 420px;
        padding: 44px 14px 32px;
    }

    .software-hero-panel h1 {
        font-size: 28px;
    }

    .software-hero-panel p {
        font-size: 14px;
    }

    .software-screen {
        height: 210px;
        margin-top: 28px;
    }

    .software-screen img {
        width: 650px;
        transform: translateX(38px);
    }

    .software-download-btn {
        width: 82%;
        min-width: 0;
    }

    .hero-headline {
        font-size: 32px;
    }

    .hero-features {
        flex-wrap: wrap;
        gap: 8px 16px;
        justify-content: center;
    }

    .hero-ctas-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .swiper-slide {
        flex: 0 0 calc(100% - 8px);
    }

    .calc-result {
        grid-template-columns: 1fr;
    }

    .auth-card {
        padding: 24px 20px;
    }
}

@media (max-width: 860px) {

    /* === 汉堡菜单 与 移动端导航面板 === */
    
    /* 头部容器留出汉堡按钮位置 */
    
    /* 头部 actions 紧凑显示 */
    
    /* 移动端导航面板：默认隐藏（保留原 display:none），切换打开后下拉显示 */
    
    /* 打开菜单时禁止页面滚动 */
    body.nav-open {
        overflow: hidden;
    }

    /* === [index.html] 首页 === */
    /* Hero 子标题 */
    .hero-sub {
        font-size: 15px;
        padding: 0 8px;
    }

    /* Hero 免责声明 */
    .hero-disclaimer {
        font-size: 11px;
        padding: 0 12px;
        line-height: 1.6;
    }

    /* Hero 浮动气泡：缩字号节省空间 */
    .hero-bubble {
        padding: 6px 10px;
        font-size: 11px;
        gap: 6px;
    }

    .bubble-icon {
        width: 22px;
        height: 22px;
    }

    /* Hero CTA 按钮收紧 */
    .hero-ctas-row {
        gap: 14px;
        margin-top: 28px;
    }

    .cta-btn {
        padding: 12px 22px;
        font-size: 13px;
        gap: 10px;
    }

    /* Promo Banner */
    
    /* 热门活动 */
    
    .hot-sub {
        font-size: 16px;
    }

    .hot-circle {
        width: 44px;
        height: 44px;
    }

    /* Live Chart */
    
    /* Features 区单列后压缩 */
    .features {
        padding: 48px 0;
    }

    .feature-card {
        padding: 32px 24px;
        min-height: 0;
    }

    .feature-card-title {
        font-size: 20px;
    }

    .feature-card-desc br,
    .v-desc br {
        display: none;
    }

    .feature-card-wide {
        padding: 32px 24px;
        min-height: 0;
    }

    .v-title {
        font-size: 20px;
        letter-spacing: 0.1em;
    }

    /* News 区行情分析（首页） */
    .news-section {
        padding: 48px 0;
    }

    .news-item {
        padding: 14px 16px;
        gap: 10px;
    }

    .news-text {
        font-size: 14px;
    }

    /* 首页计算器表单 */
    .calculator {
        padding: 24px 0 48px;
    }

    .calc-grid {
        gap: 16px;
    }

    /* FAQ 首页 */
    
    .faq-q {
        padding: 16px 18px;
        font-size: 14px;
        gap: 10px;
    }

    .faq-a-inner {
        padding: 0 18px 16px 40px;
        font-size: 13px;
    }

    .faq-item.faq-open .faq-a {
        max-height: 320px;
    }

    /* Awards 跑马灯 */
    
    /* === [about.html] 关于汇鑫 === */
    
    .about-copy {
        font-size: 15px;
        line-height: 1.85;
    }

    .about-copy p {
        margin-bottom: 14px;
    }

    .about-intro-copy,
    .about-intro-visual {
        position: static;
        width: 100%;
    }

    .about-intro-visual {
        height: auto;
        justify-self: end;
    }

    .about-awards-section .marquee-track {
        gap: 36px;
        padding: 10px 20px;
    }

    .about-awards-section .award-text {
        min-width: 180px;
    }

    .about-awards-section .award-cn {
        font-size: 13px;
    }

    .about-awards-section .award-en {
        font-size: 9px;
    }

    .about-awards-section .award-laurel {
        width: 32px;
    }

    /* === [academy-list.html] 学院列表 === */
    
    /* === [analysislist.html] 行情分析列表 === */
    
    .news-item .news-arrow {
        flex-shrink: 0;
        align-self: center;
    }

    .analysis-pagination {
        margin-top: 40px;
        gap: 6px;
        flex-wrap: wrap;
        max-width: 100%;
    }

    .analysis-pagination .page-link {
        min-width: 44px;
        height: 44px;
        font-size: 15px;
        padding: 0 6px;
    }

    /* === [article.html] 文章详情 === */
    
    .article-cover-default {
        min-height: 200px;
    }

    .article-cover-default img {
        width: min(220px, 50%);
        max-height: 140px;
    }

    /* === [articlelist.html] 通用文章列表 === */
    .article-list-page {
        padding: 24px 0 48px;
    }

    .article-list-page .page-header {
        margin-bottom: 20px;
    }

    .article-list-page .page-title {
        font-size: 24px;
        line-height: 1.3;
        margin: 0 0 8px;
    }

    .article-list-page .page-description {
        font-size: 14px;
        color: var(--ink-500);
        margin: 0;
    }

    .article-list-page .article-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .article-list-page .article-item {
        border: 1px solid var(--ink-100);
        border-radius: var(--radius);
        background: #fff;
        overflow: hidden;
    }

    .article-list-page .article-item>a {
        display: block;
        padding: 16px 16px;
        color: inherit;
    }

    .article-list-page .article-item h3 {
        font-size: 16px;
        line-height: 1.45;
        margin: 0 0 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .article-list-page .article-item p {
        font-size: 13px;
        line-height: 1.55;
        color: var(--ink-500);
        margin: 0 0 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .article-list-page .article-item time {
        font-size: 12px;
        color: var(--ink-300);
        font-family: var(--font-mono);
    }

    .article-list-page .article-item:active {
        background: var(--ink-50);
    }

    .article-list-page .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: 28px;
        font-size: 14px;
    }

    .article-list-page .pagination a,
    .article-list-page .pagination span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        border-radius: 8px;
        color: var(--ink-700);
    }

    .article-list-page .empty {
        text-align: center;
        color: var(--ink-500);
        padding: 40px 0;
        font-size: 14px;
    }

    /* === [calculator.html] 收益计算器 === */
    .calc-input,
    .calc-select {
        font-size: 16px;
        padding: 12px 14px;
        min-height: 44px;
    }

    .calc-select {
        background-position: right 12px center;
        padding-right: 34px;
    }

    .calc-slider {
        height: 10px;
        margin: 10px 0 0;
    }

    .calc-slider::-webkit-slider-thumb {
        width: 22px;
        height: 22px;
    }

    .calc-slider::-moz-range-thumb {
        width: 22px;
        height: 22px;
    }

    .calc-label-row {
        flex-wrap: wrap;
        gap: 4px 10px;
    }

    .calc-result-v {
        font-size: 20px;
    }

    /* === [calendar.html] 财经日历 === */
    
    /* === [contract.html] 合约细则 === */
    
    /* === [download.html] 电脑端下载 === */
    
    /* === [mobile_app.html] 手机APP === */
    
    /* === [single.html] 单页内容 === */
    .single-page {
        padding: 36px 0 56px;
    }

    .single-page .page-header {
        margin-bottom: 24px;
    }

    .single-page .page-title {
        font-size: 28px;
        line-height: 1.3;
        word-break: break-word;
    }

    .single-page .page-body {
        font-size: 15px;
        line-height: 1.75;
        color: var(--ink-700);
    }

    .single-page .page-body p {
        margin: 0 0 14px;
    }

    .single-page .page-body h2 {
        font-size: 22px;
        margin: 24px 0 12px;
    }

    .single-page .page-body h3 {
        font-size: 18px;
        margin: 20px 0 10px;
    }

    .single-page .page-body img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 12px auto;
        border-radius: 8px;
    }

    .single-page .page-body table {
        max-width: 100%;
        border-collapse: collapse;
        font-size: 14px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .single-page .page-body table th,
    .single-page .page-body table td {
        padding: 8px 10px;
        border: 1px solid var(--ink-100);
        word-break: break-word;
    }

    .single-page .page-body ul,
    .single-page .page-body ol {
        padding-left: 22px;
        margin: 0 0 14px;
        list-style: disc;
    }

    .single-page .page-body ol {
        list-style: decimal;
    }

    .single-page .page-body a {
        word-break: break-all;
        color: var(--brand-blue);
    }

    .single-page .page-body blockquote {
        margin: 14px 0;
        padding: 10px 14px;
        border-left: 3px solid var(--brand-blue);
        background: var(--ink-50);
        color: var(--ink-700);
        font-size: 14px;
    }

    .single-page .page-body iframe,
    .single-page .page-body video {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 12px auto;
    }

    /* === [supportlist.html] 帮助/常见问题 === */
    
    .faq-item.faq-open .faq-a {
        max-height: 600px;
    }

}

@media (max-width: 560px) {

    /* === 头部紧凑（汉堡尺寸保留） === */
    
    /* === [index.html] 首页 === */
    .hero-inner {
        padding: 0 4px;
    }

    .hero-sub {
        font-size: 13px;
        margin-top: 10px;
    }

    .hero-disclaimer {
        font-size: 10px;
    }

    .hero-devices {
        transform: scale(0.42);
        height: 220px;
        margin-top: 16px;
    }

    .hero-bubble {
        display: none;
    }

    .cta-btn {
        padding: 12px 18px;
        font-size: 13px;
        gap: 8px;
    }

    .cta-sep {
        height: 14px;
    }

    .hot-badge {
        font-size: 10px;
    }

    .hot-sub {
        font-size: 15px;
    }

    .hot-circle {
        width: 40px;
        height: 40px;
    }

    .features {
        padding: 36px 0;
    }

    .feature-card,
    .feature-card-wide {
        padding: 28px 20px;
    }

    .feature-card-title {
        font-size: 18px;
    }

    .feature-card-desc {
        font-size: 12px;
    }

    .v-title {
        font-size: 18px;
    }

    .v-desc {
        font-size: 12px;
    }

    .news-section {
        padding: 36px 0;
    }

    .news-item {
        padding: 12px 14px;
    }

    .news-text {
        font-size: 13px;
        line-height: 1.45;
    }

    .news-arrow svg {
        width: 14px;
        height: 14px;
    }

    .calculator {
        padding: 16px 0 36px;
    }

    .faq-q {
        padding: 14px 14px;
        font-size: 13px;
    }

    .faq-a-inner {
        padding: 0 14px 14px 32px;
        font-size: 12px;
    }

    .section-h2 {
        font-size: 22px;
    }

    /* === [about.html] 关于汇鑫 === */
    
    .about-copy {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-copy p {
        margin-bottom: 12px;
    }

    .about-intro-visual {
        width: min(280px, 100%);
        margin: 28px auto 0;
    }

    .about-awards-section {
        padding: 44px 0 32px;
    }

    .about-awards-section .awards-title {
        margin-bottom: 24px;
        font-size: 22px;
    }

    .about-awards-section .marquee-track {
        gap: 24px;
        padding: 8px 12px;
    }

    .about-awards-section .award-text {
        min-width: 150px;
    }

    .about-awards-section .award-cn {
        font-size: 12px;
    }

    .about-awards-section .award-en {
        font-size: 8px;
        letter-spacing: 0.04em;
    }

    .about-awards-section .award-laurel {
        width: 26px;
    }

    /* === [academy-list.html] 学院列表 === */
    
    /* === [analysislist.html] 行情分析列表 === */
    
    .analysis-pagination {
        margin-top: 32px;
        gap: 4px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 4px 2px;
        scrollbar-width: none;
    }

    .analysis-pagination::-webkit-scrollbar {
        display: none;
    }

    .analysis-pagination .page-link {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
        flex-shrink: 0;
    }

    /* === [article.html] 文章详情 === */
    
    .article-cover-default {
        min-height: 160px;
    }

    /* === [articlelist.html] 通用文章列表 === */
    .article-list-page {
        padding: 16px 0 36px;
    }

    .article-list-page .page-title {
        font-size: 20px;
    }

    .article-list-page .page-description {
        font-size: 13px;
    }

    .article-list-page .article-item>a {
        padding: 14px 12px;
    }

    .article-list-page .article-item h3 {
        font-size: 15px;
    }

    .article-list-page .article-item p {
        font-size: 12px;
        -webkit-line-clamp: 3;
    }

    .article-list-page .pagination a,
    .article-list-page .pagination span {
        min-width: 32px;
        height: 32px;
        padding: 0 8px;
        font-size: 13px;
    }

    /* === [calculator.html] 收益计算器 === */
    .calc-card {
        border-radius: 12px;
    }

    .calc-input,
    .calc-select {
        padding: 11px 12px;
        font-size: 16px;
    }

    .calc-label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .calc-result {
        padding: 14px 14px;
        gap: 10px;
    }

    .calc-result>div {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
    }

    .calc-result-v {
        font-size: 18px;
        margin-top: 0;
        text-align: right;
        word-break: break-all;
    }

    .calc-result-l {
        font-size: 12px;
        flex-shrink: 0;
    }

    .calc-range-row {
        font-size: 11px;
    }

    /* === [calendar.html] 财经日历 === */
    
    /* === [contract.html] 合约细则 === */
    
    /* === [download.html] 电脑端下载 === */
    
    .software-download-btn {
        font-size: 15px;
        padding: 12px 20px;
    }

    /* === [mobile_app.html] 手机APP === */
    
    /* === [single.html] 单页内容 === */
    .single-page {
        padding: 24px 0 44px;
    }

    .single-page .page-header {
        margin-bottom: 18px;
    }

    .single-page .page-title {
        font-size: 22px;
        line-height: 1.35;
    }

    .single-page .page-body {
        font-size: 14px;
        line-height: 1.7;
    }

    .single-page .page-body p {
        margin: 0 0 12px;
    }

    .single-page .page-body h2 {
        font-size: 19px;
        margin: 20px 0 10px;
    }

    .single-page .page-body h3 {
        font-size: 16px;
        margin: 16px 0 8px;
    }

    .single-page .page-body img {
        margin: 10px auto;
        border-radius: 6px;
    }

    .single-page .page-body table {
        font-size: 12px;
    }

    .single-page .page-body table th,
    .single-page .page-body table td {
        padding: 6px 8px;
    }

    .single-page .page-body ul,
    .single-page .page-body ol {
        padding-left: 20px;
    }

    .single-page .page-body blockquote {
        padding: 8px 12px;
        font-size: 13px;
    }

    /* === [supportlist.html] 帮助/常见问题 === */
    
    .faq-dot {
        width: 8px;
        height: 8px;
    }

    .faq-chev svg {
        width: 14px;
        height: 14px;
    }

}

/* ============================================================
 * Final mobile overrides: keep this block at the end of the file.
 * ============================================================ */

@media (max-width: 860px) {
    
    .cta-btn[data-cta-qr] .cta-qr-pop,
    .chart-download-btn[data-cta-qr] .cta-qr-pop {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .analysis-pagination,
    .faq-pagination,
    .academy-pagination {
        justify-content: center !important;
        overflow: visible;
        flex-wrap: wrap;
        padding: 0;
    }

    .hero {
        padding: 34px 0 30px;
    }

    .hero-headline {
        font-size: 34px;
        line-height: 1.15;
        letter-spacing: 0;
    }

    .hero-sub {
        max-width: 320px;
        margin: 10px auto 0;
        font-size: 14px;
        line-height: 1.55;
        letter-spacing: 0;
    }

    .hero-devices {
        width: 100%;
        height: 280px;
        margin-top: 22px;
        transform: none;
    }

    .hero-laptop {
        left: 50%;
        top: 10px;
        width: 320px;
        height: 190px;
        transform: translateX(-50%);
    }

    .hero-laptop-screen {
        height: 152px;
        border-width: 5px;
        padding: 8px;
        border-radius: 9px 9px 3px 3px;
    }

    .hero-laptop-base {
        width: calc(100% + 42px);
        margin-left: -21px;
        height: 12px;
    }

    .hero-phone {
        width: 92px;
        height: 184px;
        border-width: 3px;
        border-radius: 18px;
        padding: 5px;
    }

    .hero-phone-left {
        left: calc(50% - 100px);
        top: 86px;
    }

    .hero-phone-right {
        left: calc(50% + 8px);
        top: 92px;
    }

    .hero-phone-screen,
    .hero-phone-screen-r {
        padding: 6px;
        border-radius: 11px;
        font-size: 7px;
    }

    .phone-price {
        font-size: 15px;
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 12px;
        margin-top: 18px;
        font-size: 12px;
    }

    .hero-ctas-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 320px;
        margin: 22px auto 0;
    }

    .hero-ctas-row .cta-btn {
        width: 100%;
        justify-content: center;
    }

}

@media (max-width: 560px) {
    
    .hero-headline {
        font-size: 30px;
    }

    .hero-devices {
        height: 250px;
    }

    .hero-laptop {
        width: 286px;
    }

    .hero-laptop-screen {
        height: 138px;
    }

    .hero-phone-left {
        left: calc(50% - 92px);
    }

    .hero-phone-right {
        left: calc(50% + 4px);
    }

}

/* ========== Home Hero final cascade ========== */
body .hero {
    background: #f3f6f8;
    padding: clamp(14px, 1.05vw, 20px) 0 0;
    overflow: hidden;
}

body .hero-inner {
    position: relative;
    max-width: 1920px;
    padding: 0 clamp(20px, 1.5625vw, 30px);
    text-align: center;
}

body .hero-banner-panel {
    position: relative;
    min-height: 0;
    padding: clamp(58px, 5.1vw, 98px) 48px 0;
    overflow: hidden;
    border-radius: clamp(30px, 2.2vw, 42px) clamp(30px, 2.2vw, 42px) 0 0;
    background: linear-gradient(180deg, #8eb0ff 0%, #c8dcff 51%, #f3f6f8 100%);
}

body .hero-banner-map {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    min-width: 1200px;
    max-width: none;
    height: clamp(610px, 43.75vw, 840px);
    object-fit: fill;
    transform: translateX(-50%);
    opacity: 1;
    mix-blend-mode: normal;
    pointer-events: none;
}

body .hero-copy {
    position: relative;
    z-index: 2;
}

body .hero-headline {
    margin: 0;
    color: #262626;
    font-family: MiSans-Bold, MiSans, var(--font-sans);
    font-size: clamp(44px, 2.917vw, 56px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-shadow: none;
}

body .hero-sub {
    max-width: none;
    margin: clamp(14px, 1.15vw, 22px) auto 0;
    color: #5f718b;
    font-family: MiSans-Regular, MiSans, var(--font-sans);
    font-size: clamp(17px, 1.25vw, 24px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
}

body .hero-devices {
    position: relative;
    z-index: 2;
    width: clamp(900px, 58.35vw, 1120px);
    max-width: 100%;
    height: clamp(405px, 27.1vw, 520px);
    margin: clamp(44px, 3.95vw, 76px) auto 0;
    transform: none;
}

body .hero-device-laptop {
    position: absolute;
    left: 50%;
    top: 0;
    width: clamp(558px, 43.49vw, 835px);
    max-width: none;
    transform: translateX(-50%);
    filter: drop-shadow(0 18px 20px rgba(53, 82, 137, .16));
}

body .hero-device-phone {
    position: absolute;
    left: 50%;
    top: clamp(74px, 7.45vw, 143px);
    width: clamp(170px, 12.24vw, 235px);
    max-width: none;
    transform: translateX(-48%);
    filter: drop-shadow(0 14px 18px rgba(35, 55, 102, .20));
}

body .hero-bubble {
    position: absolute;
    z-index: 3;
    display: block;
    width: clamp(154px, 10.052vw, 193px);
    height: clamp(90px, 5.833vw, 112px);
    padding: 0;
    color: #575f78;
    font-family: MiSans-Regular, MiSans, var(--font-sans);
    font-size: clamp(13px, .833vw, 16px);
    font-weight: 400;
    line-height: 1.12;
    text-align: left;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

body .hero-bubble-2 {
    width: clamp(162px, 10.573vw, 203px);
    height: clamp(88px, 5.729vw, 110px);
}

body .hero-bubble::before {
    content: none;
}

body .hero-bubble::after {
    content: none;
}

body .hero-bubble-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: drop-shadow(0 6px 12px rgba(59, 98, 174, .10));
    pointer-events: none;
}

body .hero-bubble-icon {
    position: absolute;
    z-index: 1;
    left: 18.13%;
    top: 22.32%;
    width: clamp(29px, 1.875vw, 36px);
    height: clamp(29px, 1.875vw, 36px);
    object-fit: contain;
    transform: none;
}

body .hero-bubble span {
    position: absolute;
    z-index: 1;
    left: 44.04%;
    top: 23.21%;
    width: 33%;
    white-space: nowrap;
}

body .hero-bubble-1 {
    left: clamp(54px, 3.49vw, 67px);
    top: clamp(38px, 2.45vw, 47px);
}

body .hero-bubble-2 {
    left: clamp(1px, .16vw, 3px);
    top: clamp(145px, 9.43vw, 181px);
}

body .hero-bubble-3 {
    left: clamp(54px, 3.49vw, 67px);
    top: clamp(252px, 16.41vw, 315px);
}

body .hero-bubble-4 {
    right: clamp(49px, 3.18vw, 61px);
    top: clamp(38px, 2.45vw, 47px);
}

body .hero-bubble-5 {
    right: clamp(-5px, -.26vw, -4px);
    top: clamp(145px, 9.43vw, 181px);
}

body .hero-bubble-6 {
    right: clamp(49px, 3.18vw, 61px);
    top: clamp(252px, 16.41vw, 315px);
}

body .hero-bubble-4 .hero-bubble-bg,
body .hero-bubble-5 .hero-bubble-bg,
body .hero-bubble-6 .hero-bubble-bg {
    transform: scaleX(-1);
}

@media (min-width:1081px) {
    body .hero-bubble {
        --bubble-duration: 7.2s;
        --bubble-delay: 0s;
        --bubble-x1: 8px;
        --bubble-y1: -8px;
        --bubble-r1: .8deg;
        --bubble-x2: 3px;
        --bubble-y2: 2px;
        --bubble-r2: -.45deg;
        --bubble-x3: -6px;
        --bubble-y3: -4px;
        --bubble-r3: .35deg;
        transform: translate3d(0, 0, 0);
        transform-origin: 50% 60%;
        backface-visibility: hidden;
        will-change: transform;
        animation: heroBubbleFloat var(--bubble-duration) cubic-bezier(.45, 0, .55, 1) infinite;
        animation-delay: var(--bubble-delay);
    }

    body .hero-bubble-bg {
        will-change: opacity;
        animation: heroBubbleBreath 4.8s ease-in-out infinite;
        animation-delay: var(--bubble-delay);
    }

    body .hero-bubble-icon {
        will-change: transform;
        animation: heroBubbleIcon 4.6s ease-in-out infinite;
        animation-delay: var(--bubble-delay);
    }

    body .hero-bubble-1 {
        --bubble-duration: 7.4s;
        --bubble-delay: -1.2s;
        --bubble-x1: 7px;
        --bubble-y1: -9px;
        --bubble-r1: .75deg;
        --bubble-x2: 2px;
        --bubble-y2: 2px;
        --bubble-r2: -.4deg;
        --bubble-x3: -6px;
        --bubble-y3: -5px;
        --bubble-r3: .35deg;
    }

    body .hero-bubble-2 {
        --bubble-duration: 8.1s;
        --bubble-delay: -3.4s;
        --bubble-x1: 9px;
        --bubble-y1: -6px;
        --bubble-r1: .45deg;
        --bubble-x2: 3px;
        --bubble-y2: 3px;
        --bubble-r2: -.35deg;
        --bubble-x3: -7px;
        --bubble-y3: -3px;
        --bubble-r3: .25deg;
    }

    body .hero-bubble-3 {
        --bubble-duration: 7.8s;
        --bubble-delay: -.4s;
        --bubble-x1: 6px;
        --bubble-y1: -7px;
        --bubble-r1: .55deg;
        --bubble-x2: 1px;
        --bubble-y2: 2px;
        --bubble-r2: -.3deg;
        --bubble-x3: -8px;
        --bubble-y3: -4px;
        --bubble-r3: .28deg;
    }

    body .hero-bubble-4 {
        --bubble-duration: 7.7s;
        --bubble-delay: -2.1s;
        --bubble-x1: -7px;
        --bubble-y1: -9px;
        --bubble-r1: -.65deg;
        --bubble-x2: -2px;
        --bubble-y2: 2px;
        --bubble-r2: .38deg;
        --bubble-x3: 6px;
        --bubble-y3: -5px;
        --bubble-r3: -.3deg;
    }

    body .hero-bubble-5 {
        --bubble-duration: 8.4s;
        --bubble-delay: -4.6s;
        --bubble-x1: -10px;
        --bubble-y1: -6px;
        --bubble-r1: -.42deg;
        --bubble-x2: -3px;
        --bubble-y2: 3px;
        --bubble-r2: .34deg;
        --bubble-x3: 7px;
        --bubble-y3: -3px;
        --bubble-r3: -.22deg;
    }

    body .hero-bubble-6 {
        --bubble-duration: 7.9s;
        --bubble-delay: -2.8s;
        --bubble-x1: -7px;
        --bubble-y1: -7px;
        --bubble-r1: -.5deg;
        --bubble-x2: -1px;
        --bubble-y2: 2px;
        --bubble-r2: .32deg;
        --bubble-x3: 8px;
        --bubble-y3: -4px;
        --bubble-r3: -.26deg;
    }
}

@keyframes heroBubbleFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    26% {
        transform: translate3d(var(--bubble-x1), var(--bubble-y1), 0) rotate(var(--bubble-r1));
    }

    54% {
        transform: translate3d(var(--bubble-x2), var(--bubble-y2), 0) rotate(var(--bubble-r2));
    }

    78% {
        transform: translate3d(var(--bubble-x3), var(--bubble-y3), 0) rotate(var(--bubble-r3));
    }
}

@keyframes heroBubbleBreath {

    0%,
    100% {
        opacity: .96;
    }

    50% {
        opacity: 1;
    }
}

@keyframes heroBubbleIcon {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -2px, 0) scale(1.035);
    }
}

@media (prefers-reduced-motion:reduce) {

    body .hero-bubble,
    body .hero-bubble-bg,
    body .hero-bubble-icon {
        animation: none !important;
        transform: none;
        will-change: auto;
    }

    body .hero-bubble-4 .hero-bubble-bg,
    body .hero-bubble-5 .hero-bubble-bg,
    body .hero-bubble-6 .hero-bubble-bg {
        transform: scaleX(-1);
    }
}

body .hero-features {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    max-width: 1210px;
    margin: clamp(22px, 1.78vw, 34px) auto 0;
    color: #7f879f;
    font-family: MiSans-Regular, MiSans, var(--font-sans);
    font-size: clamp(16px, 1.25vw, 24px);
    font-weight: 400;
}

body .hero-feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 0;
    white-space: nowrap;
}

body .hero-feature img {
    width: clamp(26px, 1.67vw, 32px);
    height: clamp(26px, 1.67vw, 32px);
    object-fit: contain;
}

body .hero-ctas-row {
    display: flex;
    justify-content: center;
    gap: clamp(56px, 5.21vw, 100px);
    margin: clamp(44px, 4.48vw, 86px) auto 0;
    flex-wrap: wrap;
}

body .hero-ctas-row .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(280px, 24.063vw, 462px);
    min-height: clamp(58px, 4.427vw, 85px);
    padding: 0 clamp(30px, 2.5vw, 48px);
    gap: clamp(14px, 1.25vw, 24px);
    border-radius: 41.5px;
    font-family: MiSans-Regular, MiSans, var(--font-sans);
    font-size: clamp(18px, 1.25vw, 24px);
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
}

body .hero-ctas-row .cta-link {
    color: #044ff6;
    background: #fff;
    border: 1px solid #044ff6;
    box-shadow: none;
}

body .hero-ctas-row .cta-btn[data-cta-qr] {
    color: #fff;
    background: #044ff6;
    border: 1px solid #044ff6;
    box-shadow: none;
}

body .hero-ctas-row .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(4, 79, 246, .18);
}

body .hero-ctas-row .cta-btn[data-cta-qr]:hover {
    box-shadow: 0 12px 24px rgba(4, 79, 246, .18);
}

body .hero-ctas-row .cta-sep {
    width: 2px;
    height: clamp(22px, 1.615vw, 31px);
    background: #044ff6;
}

body .hero-ctas-row .cta-btn[data-cta-qr] .cta-sep {
    background: #fff;
}

body .cta-icon {
    width: clamp(24px, 1.875vw, 36px);
    height: clamp(24px, 1.771vw, 34px);
    object-fit: contain;
}

body .hero-disclaimer {
    max-width: 910px;
    margin: clamp(20px, 1.875vw, 36px) auto 0;
    color: #9FA6B1;
    font-size: clamp(12px, .84vw, 16px);
    line-height: 1.6;
    text-align: center;
}

@media (max-width:1080px) {
    body .hero {
        padding: 28px 0 30px;
    }

    body .hero-inner {
        padding: 0 14px;
    }

    body .hero-banner-panel {
        height: auto;
        min-height: 0;
        padding: 34px 14px 24px;
        border-radius: 20px 20px 0 0;
    }

    body .hero-banner-map {
        top: 22px;
        width: 180%;
        min-width: 0;
        height: 300px;
        opacity: .44;
    }

    body .hero-headline {
        font-size: 34px;
        line-height: 1.18;
    }

    body .hero-sub {
        max-width: 520px;
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.6;
    }

    body .hero-devices {
        width: 100%;
        height: 282px;
        margin-top: 22px;
    }

    body .hero-device-laptop {
        top: 4px;
        width: min(78vw, 470px);
    }

    body .hero-device-phone {
        top: 76px;
        width: min(34vw, 140px);
    }

    body .hero-bubble {
        display: none;
    }

    body .hero-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 8px;
        width: 100%;
        max-width: 520px;
        margin-top: 12px;
        padding: 0 4px;
        font-size: 13px;
    }

    body .hero-feature {
        justify-content: flex-start;
        gap: 8px;
        white-space: normal;
        text-align: left;
    }

    body .hero-feature img {
        width: 22px;
        height: 22px;
    }

    body .hero-ctas-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 340px;
        margin-top: 22px;
    }

    body .hero-ctas-row .cta-btn {
        width: 100%;
        min-height: 54px;
        padding: 0 24px;
        font-size: 15px;
    }

    body .hero-disclaimer {
        max-width: 520px;
        margin-top: 14px;
        padding: 0 8px;
        font-size: 11px;
    }
}

@media (max-width:560px) {
    
    body .hero-headline {
        font-size: 30px;
    }

    body .hero-sub {
        max-width: 320px;
        font-size: 13px;
    }

    body .hero-devices {
        height: 236px;
    }

    body .hero-device-laptop {
        width: min(86vw, 330px);
    }

    body .hero-device-phone {
        top: 68px;
        width: min(38vw, 112px);
    }

    body .hero-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px 6px;
        font-size: 12px;
    }

    body .hero-ctas-row .cta-btn {
        gap: 10px;
    }

    body .cta-icon {
        width: 22px;
        height: 22px;
    }
}

/* ========== Home Features final cascade ========== */
body .home-features {
    position: relative;
    padding: 0 0 clamp(74px, 5.625vw, 108px);
    overflow: hidden;
    background: #eef2f5;
}

body .home-features::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: clamp(248px, 20.833vw, 400px);
    background: #0038d6 url("../img/home-features/feature-header-bg.webp") center top / 100% 100% no-repeat;
}

/* 顶部装饰（菱形/光束）已包含在 feature-header-bg.webp 中，停用原 CSS 模拟的 ::after */
body .home-features::after {
    display: none;
}

body .home-features .container {
    position: relative;
    z-index: 1;
    max-width: 1224px;
    padding: 0;
}

body .home-features .section-h2 {
    margin: 0 0 clamp(72px, 5.208vw, 100px);
    padding-top: clamp(84px, 6.5625vw, 126px);
    color: #fff;
    font-family: MiSans-Bold, MiSans, var(--font-sans);
    font-size: clamp(34px, 2.396vw, 46px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-shadow: 0 2px 10px rgba(0, 51, 150, .24);
}

body .home-features .features-grid {
    display: grid;
    gap: clamp(20px, 1.667vw, 32px);
    margin-bottom: clamp(20px, 1.667vw, 32px);
}

body .home-features .features-grid-joined {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 1.667vw, 32px);
}

body .home-features .feature-card,
body .home-features .feature-card-wide {
    position: relative;
    overflow: hidden;
    color: #25334c;
    border: 1px solid #e1f2ff;
    border-radius: 12px;
    background: linear-gradient(180deg, #E1F2FF 0%, #fff 100%);
    box-shadow: 0 4px 12px rgba(140, 175, 210, .2);
    box-sizing: border-box;
    transition: transform .18s, box-shadow .18s;
}

body .home-features .feature-card:hover,
body .home-features .feature-card-wide:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(44, 89, 150, .18);
}

body .home-features .features-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body .home-features .features-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body .home-features .features-grid-3 .feature-card {
    height: clamp(190px, 12.708vw, 244px);
    min-height: clamp(190px, 12.708vw, 244px);
    padding: clamp(24px, 1.615vw, 31px) 28px 24px;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

body .home-features .features-grid-2 .feature-card,
body .home-features .feature-card-wide {
    height: clamp(145px, 9.688vw, 186px);
    min-height: clamp(145px, 9.688vw, 186px);
    padding: clamp(42px, 2.813vw, 54px) clamp(138px, 7.813vw, 150px) 30px clamp(36px, 2.552vw, 49px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

body .home-features .feature-card-icon {
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 10px rgba(0, 86, 205, .18));
}

body .home-features .features-grid-3 .feature-card-icon {
    position: static;
    width: clamp(58px, 3.958vw, 76px);
    height: clamp(58px, 3.958vw, 76px);
    margin: 0 auto clamp(20px, 1.25vw, 24px);
    transform: none;
}

body .home-features .features-grid-2 .feature-card-icon,
body .home-features .feature-card-wide .feature-card-icon {
    position: absolute;
    right: clamp(54px, 4.271vw, 82px);
    top: 50%;
    width: clamp(72px, 4.896vw, 94px);
    height: clamp(72px, 4.896vw, 94px);
    margin: 0;
    transform: translateY(-50%);
}

body .home-features .feature-card-title,
body .home-features .v-title {
    margin: 0 0 clamp(12px, 1.042vw, 20px);
    color: #2051ff;
    font-family: MiSans-Bold, MiSans, var(--font-sans);
    font-size: clamp(16px, 1.042vw, 20px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    writing-mode: horizontal-tb;
}

body .home-features .feature-card-desc,
body .home-features .v-desc {
    margin: 0;
    color: #6c788b;
    font-family: MiSans-Regular, MiSans, var(--font-sans);
    font-size: clamp(12px, .729vw, 14px);
    font-weight: 400;
    line-height: 1.2;
}

@media (max-width:1080px) {
    body .home-features {
        padding-bottom: 56px;
    }

    body .home-features::before,
    body .home-features::after {
        height: 230px;
    }

    body .home-features .container {
        max-width: 640px;
        padding: 0 18px;
    }

    body .home-features .section-h2 {
        margin-bottom: 36px;
        padding-top: 46px;
        font-size: 26px;
        line-height: 1.25;
    }

    body .home-features .features-grid,
    body .home-features .features-grid-joined {
        gap: 14px;
        margin-bottom: 14px;
    }

    body .home-features .features-grid-3 .feature-card,
    body .home-features .features-grid-2 .feature-card,
    body .home-features .feature-card-wide {
        min-height: 112px;
        padding: 22px 94px 20px 22px;
        align-items: flex-start;
        text-align: left;
    }

    body .home-features .features-grid-3 .feature-card-icon,
    body .home-features .features-grid-2 .feature-card-icon,
    body .home-features .feature-card-wide .feature-card-icon {
        position: absolute;
        right: 22px;
        top: 50%;
        width: 58px;
        height: 58px;
        margin: 0;
        transform: translateY(-50%);
    }

    body .home-features .feature-card-desc br,
    body .home-features .v-desc br {
        display: none;
    }
}

@media (max-width:560px) {
    body .home-features {
        padding-bottom: 42px;
    }

    body .home-features::before,
    body .home-features::after {
        height: 214px;
    }

    body .home-features::after {
        background:
            linear-gradient(45deg, rgba(38, 219, 255, .82) 0 50%, rgba(20, 124, 255, .66) 50% 100%) calc(50% - 130px) 38% / 24px 24px no-repeat,
            linear-gradient(45deg, rgba(38, 219, 255, .78) 0 50%, rgba(20, 124, 255, .62) 50% 100%) calc(50% + 130px) 36% / 22px 22px no-repeat,
            linear-gradient(45deg, rgba(0, 214, 255, .36), transparent 64%) left bottom / 45% 50% no-repeat,
            linear-gradient(315deg, rgba(0, 214, 255, .36), transparent 64%) right bottom / 45% 50% no-repeat;
    }

    body .home-features .section-h2 {
        margin-bottom: 30px;
        padding-top: 40px;
        font-size: 22px;
    }

    body .home-features .features-grid-3 .feature-card,
    body .home-features .features-grid-2 .feature-card,
    body .home-features .feature-card-wide {
        min-height: 104px;
        padding: 20px 80px 18px 18px;
    }

    body .home-features .features-grid-3 .feature-card-icon,
    body .home-features .features-grid-2 .feature-card-icon,
    body .home-features .feature-card-wide .feature-card-icon {
        right: 16px;
        width: 50px;
        height: 50px;
    }

    body .home-features .feature-card-title,
    body .home-features .v-title {
        font-size: 16px;
    }

    body .home-features .feature-card-desc,
    body .home-features .v-desc {
        font-size: 12px;
        line-height: 1.55;
    }
}

/* ========== Software Download final cascade ========== */

body .software-hero-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(430px, .88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: clamp(18px, 2.5vw, 48px);
    min-height: clamp(520px, 40.625vw, 780px);
    margin: 0;
    padding: clamp(56px, 5vw, 96px) 0 clamp(56px, 5vw, 96px) clamp(54px, 5.208vw, 100px);
    overflow: hidden;
    text-align: left;
    border-radius: 14px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .15) 1px, transparent 1px) center / 220px 100% repeat-x,
        linear-gradient(180deg, #b9d9ff 0%, #9ec8fb 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .48);
}

body .software-hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .24) 0 26%, transparent 26.2% 100%),
        linear-gradient(68deg, transparent 0 62%, rgba(255, 255, 255, .16) 62.2% 100%);
}

body .software-hero-copy {
    position: relative;
    z-index: 2;
}

body .software-hero-panel h1 {
    margin: 0 0 clamp(16px, 1.25vw, 24px);
    color: #111827;
    font-family: MiSans-Bold, MiSans, var(--font-sans);
    font-size: clamp(36px, 2.5vw, 48px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
    white-space: nowrap;
}

body .software-hero-panel p {
    max-width: 360px;
    margin: 0 0 clamp(34px, 3.542vw, 68px);
    color: #111827;
    font-family: MiSans-Regular, MiSans, var(--font-sans);
    font-size: clamp(16px, 1.042vw, 20px);
    font-weight: 400;
    line-height: 1.5;
}

body .software-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(288px, 24.01vw, 461px);
    min-width: 0;
    height: clamp(53px, 4.375vw, 84px);
    min-height: 0;
    padding: 0 clamp(22px, 1.875vw, 36px);
    gap: clamp(12px, 1.146vw, 22px);
    color: #fff;
    font-family: MiSans-Regular, MiSans, var(--font-sans);
    font-size: clamp(18px, 1.25vw, 24px);
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    border: 0;
    border-radius: 999px;
    background: #2051ff;
    box-shadow: none;
    box-sizing: border-box;
    transition: transform .18s, box-shadow .18s, background .18s;
}

body .software-download-btn:hover {
    transform: translateY(-2px);
    background: #2051ff;
    box-shadow: 0 14px 28px rgba(32, 81, 255, .24);
}

body .software-download-btn .cta-sep {
    width: 3px;
    height: clamp(24px, 1.667vw, 32px);
    background: rgba(255, 255, 255, .95);
}

body .software-download-btn img {
    display: block;
    flex: 0 0 clamp(26px, 1.875vw, 36px);
    width: clamp(26px, 1.875vw, 36px);
    height: clamp(21px, 1.51vw, 29px);
    object-fit: contain;
    filter: brightness(0) invert(1);
}

body .software-screen {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: auto;
    margin: 0;
    overflow: visible;
}

body .software-screen img {
    display: block;
    width: min(840px, 56vw);
    max-width: none;
    height: auto;
    transform: translateX(clamp(36px, 4.479vw, 86px));
    filter: drop-shadow(0 30px 44px rgba(37, 76, 132, .24));
}

@media (max-width:1080px) {
    
    body .software-hero-panel {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 46px 24px 36px;
        text-align: center;
    }

    body .software-hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    body .software-hero-panel h1 {
        font-size: 30px;
        line-height: 1.18;
        white-space: normal;
    }

    body .software-hero-panel p {
        max-width: 100%;
        margin-bottom: 24px;
        font-size: 15px;
    }

    body .software-download-btn {
        width: 100%;
        max-width: 330px;
        height: 54px;
        font-size: 15px;
    }

    body .software-screen {
        justify-content: center;
        margin-top: 28px;
        min-width: 0;
        overflow: hidden;
    }

    body .software-screen img {
        width: 100%;
        max-width: 620px;
        transform: translateX(0);
    }

}

@media (max-width:560px) {
    
    body .software-hero-panel {
        border-radius: 10px;
        padding: 38px 18px 30px;
    }

    body .software-hero-panel h1 {
        font-size: 26px;
    }

    body .software-download-btn {
        height: 52px;
        font-size: 14px;
    }

    body .software-screen img {
        max-width: 540px;
    }
}

/* ========== Home News List aligns with Home FAQ on desktop ========== */
@media (min-width:1081px) {
    body .news-section .news-list {
        width: min(52.448vw, 1007px);
        max-width: calc(100% - 40px);
        margin: clamp(42px, 3.073vw, 59px) auto 0;
        gap: 14px;
    }

    body .news-section .news-item {
        height: clamp(72px, 5.156vw, 99px);
        padding: 0 clamp(32px, 2.5vw, 48px) 0 clamp(24px, 1.823vw, 35px);
        gap: clamp(14px, .99vw, 19px);
        overflow: hidden;
        background: #fff;
        border: 0;
        border-radius: 20px;
        box-shadow: 0 4px 12px rgba(140, 175, 210, .2);
        color: #686e7f;
        font-family: MiSans-Semibold, MiSans, var(--font-sans);
        font-size: clamp(16px, 1.042vw, 20px);
        font-weight: 600;
        line-height: 1;
        transition: box-shadow .15s ease;
    }

    body .news-section .news-item+.news-item {
        margin-top: -2px;
    }

    body .news-section .news-item:hover {
        border-color: transparent;
        box-shadow: 0 4px 12px rgba(140, 175, 210, .2);
        transform: none;
    }

    body .news-section .news-dot {
        flex: 0 0 clamp(14px, .938vw, 18px);
        width: clamp(14px, .938vw, 18px);
        height: clamp(14px, .938vw, 18px);
        background: #5379ff;
    }

    body .news-section .news-text {
        color: #686e7f;
        font-family: MiSans-Semibold, MiSans, var(--font-sans);
        font-size: clamp(16px, 1.042vw, 20px);
        font-weight: 600;
        line-height: 1;
    }

    body .news-section .news-arrow {
        flex: 0 0 16px;
        width: 16px;
        height: 28px;
        color: #5379ff;
        align-items: center;
        justify-content: center;
    }

    body .news-section .news-arrow svg {
        width: 16px;
        height: 28px;
        stroke-width: 2;
    }

    body .news-section .news-item:hover .news-arrow {
        color: #5379ff;
    }
}

/* ========== Lanhu page restore: download / contract / academy content only ========== */
body .software-template,
body .contract-template,
body .academy-list-template {
    --restore-blue: #044ff6;
    --restore-blue-2: #2051ff;
    --restore-text: #111827;
    --restore-muted: #6c788b;
    --restore-page: #eef2f5;
    --restore-line: #8cafed;
    background: var(--restore-page);
    font-family: MiSans, "Noto Sans SC", var(--font-sans);
}

body .software-hero-panel {
    display: block;
    position: relative;
    height: 1236px;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    text-align: center;
    border-radius: 28px;
    background:
        radial-gradient(circle at 17% 24%, rgba(255, 255, 255, .36) 0 1px, transparent 2px) 0 0 / 18px 18px,
        linear-gradient(90deg, rgba(255, 255, 255, .2) 1px, transparent 1px) center / 220px 100% repeat-x,
        linear-gradient(180deg, #9fc7ff 0%, #eaf4ff 83%, #f3f6f8 100%);
    box-shadow: none;
}

body .software-hero-panel::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .26), transparent 62%),
        radial-gradient(ellipse at 18% 42%, rgba(255, 255, 255, .24), transparent 30%),
        radial-gradient(ellipse at 78% 34%, rgba(255, 255, 255, .2), transparent 28%);
}

body .software-hero-copy {
    position: absolute;
    left: 0;
    right: 0;
    top: 100px;
    z-index: 3;
    text-align: center;
}

body .software-hero-panel h1 {
    margin: 0 0 28px;
    color: var(--restore-text);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.12;
    white-space: normal;
}

body .software-hero-panel p {
    max-width: none;
    margin: 0;
    color: #6f8199;
    font-size: 24px;
    line-height: 1.35;
}

body .software-showcase {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 940px;
    margin: 0;
}

body .software-screen {
    position: absolute;
    left: 50%;
    top: 293px;
    bottom: auto;
    width: 835px;
    max-width: none;
    justify-content: center;
    transform: translateX(-50%);
}

body .software-screen img {
    width: 100%;
    max-width: none;
    transform: none;
    filter: drop-shadow(0 28px 34px rgba(40, 80, 128, .24));
}

body .software-callout {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    min-width: 193px;
    min-height: 112px;
    align-items: center;
    gap: 18px;
    padding: 24px 30px;
    color: #8190a6;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.28;
    text-align: left;
    border-radius: 999px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 4px 0 12px rgba(140, 175, 210, 1);
    box-sizing: border-box;
}

body .software-callout::after {
    content: "";
    position: absolute;
    bottom: -18px;
    width: 32px;
    height: 32px;
    background: inherit;
    transform: rotate(45deg);
}

body .software-callout-left::after {
    right: 28px;
}

body .software-callout-right::after {
    left: 28px;
}

body .software-callout .callout-icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
}

body .software-callout .callout-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body .software-callout.callout-1 {
    left: 438px;
    top: 340px;
}

body .software-callout.callout-2 {
    left: 372px;
    top: 474px;
}

body .software-callout.callout-3 {
    left: 438px;
    top: 608px;
}

body .software-callout.callout-4 {
    right: auto;
    left: 1237px;
    top: 340px;
}

body .software-callout.callout-5 {
    right: auto;
    left: 1303px;
    top: 474px;
}

body .software-callout.callout-6 {
    right: auto;
    left: 1237px;
    top: 608px;
}

body .software-stat-row {
    z-index: 3;
    display: grid;
    position: absolute;
    left: 50%;
    top: 868px;
    width: 1200px;
    margin: 0;
    transform: translateX(-50%);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    color: #8090a8;
    font-size: 24px;
    line-height: 1.2;
}

body .software-stat-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

body .software-stat-row img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

body .software-download-btn {
    position: absolute;
    left: 50%;
    top: 984px;
    z-index: 3;
    width: 460px;
    height: 83px;
    gap: 28px;
    font-size: 24px;
    border-radius: 999px;
    background: var(--restore-blue-2);
    transform: translateX(-50%);
}

body .software-download-btn:hover {
    transform: translateX(-50%) translateY(-2px);
}

body .software-risk-note {
    position: absolute;
    left: 50%;
    top: 1103px;
    z-index: 3;
    width: 886px;
    max-width: calc(100% - 64px);
    margin: 0;
    transform: translateX(-50%);
    color: #aebccb;
    font-size: 16px;
    line-height: 1.45;
}

@media (max-width:1080px) {
    
    body .software-hero-panel {
        height: auto;
        min-height: 0;
        padding: 48px 20px 42px;
        border-radius: 20px;
    }

    body .software-hero-copy,
    body .software-showcase,
    body .software-stat-row,
    body .software-download-btn,
    body .software-risk-note {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        transform: none;
    }

    body .software-hero-panel h1 {
        font-size: 32px;
    }

    body .software-showcase {
        height: auto;
        margin-top: 32px;
    }

    body .software-callout {
        display: none;
    }

    body .software-screen {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        width: min(760px, 100%);
        max-width: none;
        overflow: visible;
        transform: none;
    }

    body .software-screen img {
        width: 100%;
        max-width: 100%;
        transform: none;
    }

    body .software-stat-row {
        width: min(620px, 100%);
        margin: 28px auto 32px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        font-size: 14px;
    }

    body .software-download-btn {
        width: min(330px, 100%);
        height: 56px;
        margin: 0 auto;
        font-size: 15px;
    }

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

    body .software-risk-note {
        width: min(620px, 100%);
        margin: 22px auto 0;
    }

}

@media (max-width:560px) {
    body .software-hero-panel {
        height: auto;
        padding: 38px 16px 34px;
        border-radius: 14px;
    }

    body .software-hero-panel h1 {
        font-size: 26px;
    }

    body .software-hero-panel p {
        font-size: 14px;
    }

    body .software-stat-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    body .software-stat-row span {
        justify-content: flex-start;
        width: 210px;
        margin: 0 auto;
    }

    body .software-risk-note {
        margin-top: 22px;
        font-size: 11px;
    }

}
.m-appbar { display: none; }

@media (max-width: 1080px) {

    /* ====================== 公共 Header（logo + 蓝色汉堡） ====================== */
    
    /* 桌面行内导航 + 右侧按钮：移动端隐藏（设计稿头部仅 logo + 汉堡） */
    
    /* 汉堡按钮 */
    
    /* 展开的移动端导航面板 */
    
    /* 菜单底部保留 登录 / 立即开户 CTA */
    
    body.nav-open {
        overflow: hidden;
    }

    /* ====================== 计算器页：标题 + 表单卡片 ====================== */
    /* 设计稿：标题 + 卡片置于浅蓝 #E4EAF9 背景之上，卡片为白色圆角 */
    
    /* 表单整体收紧纵向节奏，更贴近设计稿比例（仍保证输入框可点按 ~34px） */
    body .calc-grid {
        gap: clamp(10px, 1.5vw, 18px);
    }

    body .calc-label {
        font-size: clamp(11px, 1.35vw, 14px);
        margin-bottom: clamp(4px, 0.6vw, 7px);
    }

    body .calc-input,
    body .calc-select {
        padding: clamp(8px, 1.1vw, 12px) clamp(11px, 1.3vw, 14px);
        font-size: clamp(13px, 1.45vw, 16px);
        border-width: 1.5px;
        border-radius: clamp(8px, 0.9vw, 10px);
    }

    body .calc-range-row {
        font-size: clamp(10px, 1.2vw, 13px);
        margin-top: clamp(5px, 0.7vw, 8px);
    }

    body .calc-slider {
        margin-top: clamp(4px, 0.6vw, 6px);
    }

    body .calc-slider::-webkit-slider-thumb {
        width: clamp(14px, 1.7vw, 18px);
        height: clamp(14px, 1.7vw, 18px);
        border-width: 2px;
    }

    body .calc-slider::-moz-range-thumb {
        width: clamp(14px, 1.7vw, 18px);
        height: clamp(14px, 1.7vw, 18px);
        border-width: 2px;
    }

    body .calc-result {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(12px, 1.6vw, 16px);
    }

    body .calc-result-v {
        font-size: clamp(16px, 2vw, 22px);
    }

    /* ====================== 公共 Footer：简单3步（药丸下载按钮） ====================== */
    
    /* 卡片之间的 ">" 箭头 */
    
    /* 药丸下载按钮（替换二维码）：下载APP | 安卓版/IOS [扫码] */
    
    /* ====================== 公共 Footer：深色信息区（无链接列） ====================== */
    
    /* 设计稿移动端 footer 无 5 列链接网格 */
    
    /* 链接之间补回设计稿的细竖线分隔符 */
    
    /* ====================== 固定底部下载条 ====================== */
    body .m-appbar {
        display: flex;
        align-items: center;
        gap: clamp(10px, 2vw, 20px);
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 200;
        height: clamp(58px, 16.5vw, 96px);
        padding: 0 clamp(14px, 3vw, 32px);
        background: #fff;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
        box-sizing: border-box;
    }

    body .m-appbar-icon {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: clamp(40px, 8.6vw, 90px);
        height: clamp(40px, 8.6vw, 90px);
        border-radius: clamp(10px, 2.4vw, 22px);
        overflow: hidden;
    }

    body .m-appbar-icon img,
    body .m-appbar-icon svg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    body .m-appbar-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: clamp(2px, 0.5vw, 5px);
        flex: 1;
        min-width: 0;
    }

    body .m-appbar-text strong {
        color: #333;
        font-size: clamp(15px, 4.1vw, 42px);
        font-weight: 800;
        line-height: 1.1;
        white-space: nowrap;
    }

    body .m-appbar-text em {
        color: #333;
        font-size: clamp(11px, 3.33vw, 36px);
        font-style: normal;
        line-height: 1.1;
        white-space: nowrap;
    }

    body .m-appbar-text em b {
        color: #ff2d2d;
        font-weight: 700;
    }

    body .m-appbar-btn {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        height: clamp(36px, 8.4vw, 87px);
        padding: 0 clamp(18px, 4vw, 48px);
        background: #044FF6;
        border-radius: clamp(12px, 2.8vw, 30px);
        color: #fff;
        font-size: clamp(13px, 2.96vw, 32px);
        font-weight: 600;
        white-space: nowrap;
        text-decoration: none;
        box-shadow: none;
    }

    /* 为固定底部条预留空间，避免遮挡 footer 内容 */
    
}

/* ============================================================
 * Mobile final pass: navigation, CTA, content lists and detail pages
 * ============================================================ */
@media (max-width: 860px) {
    
    .analysis-pagination,
    .faq-pagination,
    .academy-pagination {
        justify-content: center !important;
        overflow: visible;
        flex-wrap: wrap;
        padding: 0;
    }

    .hero {
        padding: 34px 0 30px;
    }

    .hero-headline {
        font-size: 34px;
        line-height: 1.15;
        letter-spacing: 0;
    }

    .hero-sub {
        max-width: 320px;
        margin: 10px auto 0;
        font-size: 14px;
        line-height: 1.55;
        letter-spacing: 0;
    }

    .hero-devices {
        width: 100%;
        height: 280px;
        margin-top: 22px;
        transform: none;
    }

    .hero-laptop {
        left: 50%;
        top: 10px;
        width: 320px;
        height: 190px;
        transform: translateX(-50%);
    }

    .hero-laptop-screen {
        height: 152px;
        border-width: 5px;
        padding: 8px;
        border-radius: 9px 9px 3px 3px;
    }

    .hero-laptop-base {
        width: calc(100% + 42px);
        margin-left: -21px;
        height: 12px;
    }

    .hero-phone {
        width: 92px;
        height: 184px;
        border-width: 3px;
        border-radius: 18px;
        padding: 5px;
    }

    .hero-phone-left {
        left: calc(50% - 100px);
        top: 86px;
    }

    .hero-phone-right {
        left: calc(50% + 8px);
        top: 92px;
    }

    .hero-phone-screen,
    .hero-phone-screen-r {
        padding: 6px;
        border-radius: 11px;
        font-size: 7px;
    }

    .phone-price {
        font-size: 15px;
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 12px;
        margin-top: 18px;
        font-size: 12px;
    }

    .hero-ctas-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 320px;
        margin: 22px auto 0;
    }

    .hero-ctas-row .cta-btn {
        width: 100%;
        justify-content: center;
    }

}

@media (max-width: 560px) {
    
    .hero-headline {
        font-size: 30px;
    }

    .hero-devices {
        height: 250px;
    }

    .hero-laptop {
        width: 286px;
    }

    .hero-laptop-screen {
        height: 138px;
    }

    .hero-phone-left {
        left: calc(50% - 92px);
    }

    .hero-phone-right {
        left: calc(50% + 4px);
    }

}

/* ========== Homepage mobile final cascade (<1080px) ========== */

@media (max-width:1080px) {
    body:has(.hero-banner-panel) .site-main {
        overflow: hidden;
        background: #fff;
    }

    body:has(.hero-banner-panel) .section-h2,
    body:has(.hero-banner-panel) .section-h3 {
        color: #333;
        font-family: "HarmonyOS Sans SC", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
        font-size: clamp(20px, 5.185vw, 56px);
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0;
        text-align: center;
    }

    body:has(.hero-banner-panel) .hero {
        padding: 0 0 6.944vw;
        background: #f3f6f8;
    }

    body:has(.hero-banner-panel) .hero-inner {
        width: 100%;
        max-width: none;
        padding: 0 2.778vw;
        box-sizing: border-box;
    }

    body:has(.hero-banner-panel) .hero-banner-panel {
        min-height: 0;
        height: auto;
        padding: 7.593vw 0 0;
        overflow: visible;
        border-radius: 4.444vw 4.444vw 0 0;
        background: transparent;
        isolation: isolate;
    }

    body:has(.hero-banner-panel) .hero-banner-panel::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
        width: 100%;
        height: 87.037vw;
        max-height: 940px;
        border-radius: 4.444vw 4.444vw 0 0;
        background: linear-gradient(180deg, #8eb0ff 0%, #c8dcff 51%, #f3f6f8 100%);
        pointer-events: none;
    }

    body:has(.hero-banner-panel) .hero-banner-panel > * {
        position: relative;
        z-index: 1;
    }

    body:has(.hero-banner-panel) .hero-banner-panel > .hero-banner-map {
        position: absolute;
        left: 50%;
        top: 0;
        z-index: 0;
        width: 172.222vw;
        min-width: 0;
        height: 75.37vw;
        opacity: 1;
        object-fit: cover;
        transform: translateX(-50%);
    }

    body:has(.hero-banner-panel) .hero-headline {
        color: #262626;
        font-size: clamp(22px, 5.185vw, 56px);
        line-height: 1;
    }

    body:has(.hero-banner-panel) .hero-sub {
        max-width: 72.963vw;
        margin-top: 2.5vw;
        color: #5f718b;
        font-size: clamp(10px, 2.222vw, 24px);
        line-height: 1.25;
    }

    body:has(.hero-banner-panel) .hero-devices {
        width: 94.444vw;
        max-width: 1020px;
        height: 58.148vw;
        max-height: 628px;
        margin: 7.222vw auto 0;
        overflow: visible;
    }

    body:has(.hero-banner-panel) .hero-device-laptop {
        display: none;
        left: 50%;
        top: 1.111vw;
        width: 77.315vw;
        max-width: 835px;
        transform: translateX(-50%);
    }

    body:has(.hero-banner-panel) .hero-device-phone {
        display: none;
        left: 50%;
        top: 8.981vw;
        width: 21.759vw;
        max-width: 235px;
        transform: translateX(-48%);
    }

    body:has(.hero-banner-panel) .hero-bubble {
        display: block;
        width: 23.426vw;
        max-width: 253px;
        height: 13.426vw;
        max-height: 145px;
        font-size: clamp(8px, 2.222vw, 24px);
        line-height: 1.08;
    }

    body:has(.hero-banner-panel) .hero-bubble-1 {
        left: 6.944vw;
        top: 3.241vw;
    }

    body:has(.hero-banner-panel) .hero-bubble-2 {
        left: .37vw;
        top: 20.093vw;
    }

    body:has(.hero-banner-panel) .hero-bubble-3 {
        left: 5.741vw;
        top: 36.944vw;
    }

    body:has(.hero-banner-panel) .hero-bubble-4 {
        right: 2.593vw;
        top: 2.407vw;
    }

    body:has(.hero-banner-panel) .hero-bubble-5 {
        right: -.37vw;
        top: 19.537vw;
    }

    body:has(.hero-banner-panel) .hero-bubble-6 {
        right: 2.315vw;
        top: 36.667vw;
    }

    body:has(.hero-banner-panel) .hero-bubble-icon {
        left: 18.13%;
        top: 23%;
        width: 3.333vw;
        max-width: 36px;
        height: 3.333vw;
        max-height: 36px;
    }

    body:has(.hero-banner-panel) .hero-bubble span {
        left: 44%;
        top: 22%;
        color: #575f78;
        white-space: nowrap;
    }

    body:has(.hero-banner-panel) .hero-features {
        grid-template-columns: repeat(2, max-content);
        justify-content: space-between;
        gap: 6.39vw 0;
        width: 77.87vw;
        max-width: 841px;
        margin: 10.648vw auto 0;
        padding: 0;
        color: #7f879f;
        font-size: clamp(11px, 3.333vw, 36px);
        line-height: 1;
    }

    body:has(.hero-banner-panel) .hero-feature {
        gap: clamp(6px, 1.481vw, 16px);
        justify-content: flex-start;
        white-space: nowrap;
    }

    body:has(.hero-banner-panel) .hero-feature img {
        width: clamp(12px, 2.963vw, 32px);
        height: clamp(12px, 2.963vw, 32px);
    }

    body:has(.hero-banner-panel) .hero-ctas-row {
        display: flex;
        width: 100%;
        max-width: none;
        margin: 11.852vw auto 0;
        justify-content: center;
        align-items: center;
    }

    body:has(.hero-banner-panel) .hero-ctas-row .cta-link {
        display: none;
    }

    body:has(.hero-banner-panel) .hero-ctas-row .cta-btn[data-cta-qr] {
        width: clamp(214px, 59.259vw, 640px);
        min-height: clamp(44px, 10.741vw, 116px);
        padding: 0 clamp(18px, 4.63vw, 50px);
        gap: clamp(10px, 2.963vw, 32px);
        font-size: clamp(12px, 2.963vw, 32px);
        border-radius: 999px;
        box-shadow: none;
        transform: none;
    }

    body:has(.hero-banner-panel) .hero-ctas-row .cta-sep {
        width: 1px;
        height: clamp(14px, 4.259vw, 46px);
    }

    body:has(.hero-banner-panel) .hero-ctas-row .cta-icon {
        width: clamp(18px, 4.63vw, 50px);
        height: clamp(18px, 4.63vw, 50px);
    }

    body:has(.hero-banner-panel) .hero-disclaimer {
        width: 65.556vw;
        max-width: 708px;
        margin-top: 3.981vw;
        padding: 0;
        color: #9fa6b1;
        font-size: clamp(7px, 1.667vw, 18px);
        line-height: 1.25;
        text-align: center;
    }

    body:has(.hero-banner-panel) .live-chart .container,
    body:has(.hero-banner-panel) .news-section .container,
    body:has(.hero-banner-panel) .calculator .container,
    body:has(.hero-banner-panel) #faq .container {
        width: 100%;
        max-width: none;
        padding: 0 3.704vw;
        box-sizing: border-box;
    }

    body:has(.hero-banner-panel) .home-features {
        padding: 0 0 7.778vw;
        background: #eef7ff;
    }

    body:has(.hero-banner-panel) .home-features::before {
        height: 31.204vw;
        max-height: 337px;
    }

    body:has(.hero-banner-panel) .home-features .container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.31vw;
        width: 91.759vw;
        max-width: 991px;
        margin: 0 auto;
        padding: 0;
    }

    body:has(.hero-banner-panel) .home-features .section-h2 {
        grid-column: 1 / -1;
        margin: 0 0 4.352vw;
        padding-top: 8.426vw;
        color: #fff;
        font-size: clamp(20px, 5.185vw, 56px);
        line-height: 1;
    }

    body:has(.hero-banner-panel) .home-features .features-grid,
    body:has(.hero-banner-panel) .home-features .features-grid-joined {
        display: contents;
    }

    body:has(.hero-banner-panel) .home-features .feature-card,
    body:has(.hero-banner-panel) .home-features .feature-card-wide {
        display: block;
        width: auto;
        height: auto;
        min-height: 35.463vw;
        padding: 4.259vw 3.241vw 3.241vw;
        border-radius: 1.111vw;
        text-align: center;
    }

    body:has(.hero-banner-panel) .home-features .features-grid-joined .feature-card-wide:last-child {
        grid-column: 1 / -1;
        min-height: 24.907vw;
        padding: 6.667vw 38.889vw 4vw 6.852vw;
        text-align: left;
    }

    body:has(.hero-banner-panel) .home-features .feature-card-icon,
    body:has(.hero-banner-panel) .home-features .features-grid-2 .feature-card-icon,
    body:has(.hero-banner-panel) .home-features .feature-card-wide .feature-card-icon {
        position: static;
        display: block;
        width: 10.926vw;
        max-width: 118px;
        height: 10.926vw;
        max-height: 118px;
        margin: 0 auto 3.148vw;
        object-fit: contain;
        transform: none;
    }

    body:has(.hero-banner-panel) .home-features .features-grid-joined .feature-card-wide:last-child .feature-card-icon {
        position: absolute;
        right: 11.389vw;
        top: 5.278vw;
        width: 13.704vw;
        max-width: 148px;
        height: 13.333vw;
        max-height: 144px;
        margin: 0;
    }

    body:has(.hero-banner-panel) .home-features .feature-card-title,
    body:has(.hero-banner-panel) .home-features .v-title {
        margin: 0 0 2.037vw;
        color: #2051ff;
        font-size: clamp(12px, 3.333vw, 36px);
        line-height: 1;
        white-space: nowrap;
    }

    body:has(.hero-banner-panel) .home-features .feature-card-desc,
    body:has(.hero-banner-panel) .home-features .v-desc {
        max-width: 31.852vw;
        margin: 0 auto;
        color: #6c788b;
        font-size: clamp(9px, 2.222vw, 24px);
        line-height: 1.13;
    }

    body:has(.hero-banner-panel) .home-features .features-grid-joined .feature-card-wide:last-child .v-desc {
        max-width: none;
        margin: 0;
    }

    body:has(.hero-banner-panel) .news-section {
        padding: 7.963vw 0 8.148vw;
        background: #fff;
    }

    body:has(.hero-banner-panel) .news-list,
    body:has(.hero-banner-panel) #faq .faq-list {
        width: 94.815vw;
        max-width: 1024px;
        margin: 5.833vw auto 0;
        gap: .185vw;
    }

    body:has(.hero-banner-panel) .news-item,
    body:has(.hero-banner-panel) #faq .faq-item {
        min-height: 10.463vw;
        border: 0;
        border-radius: 0;
        box-shadow: 0 4px 12px rgba(140, 175, 210, .2);
    }

    body:has(.hero-banner-panel) .news-item {
        padding: 0 3.796vw 0 6.389vw;
        gap: 2.5vw;
    }

    body:has(.hero-banner-panel) .news-item:nth-child(n + 9) {
        display: none;
    }

    body:has(.hero-banner-panel) .news-text,
    body:has(.hero-banner-panel) #faq .faq-q-text {
        color: #686e7f;
        font-size: clamp(11px, 2.963vw, 32px);
        line-height: 1.2;
    }

    body:has(.hero-banner-panel) .news-dot,
    body:has(.hero-banner-panel) #faq .faq-dot {
        width: 1.667vw;
        height: 1.667vw;
        background: #5379ff;
    }

    body:has(.hero-banner-panel) .calculator {
        padding: 7.5vw 0 7.963vw;
        background: #e4eaf9;
    }

    body:has(.hero-banner-panel) .calculator .calc-card {
        width: 92.593vw;
        max-width: 1000px;
        margin-top: 4.444vw;
        padding: 2.87vw 3.333vw;
        border: 0;
        border-radius: 2.222vw;
        background: #fff;
        box-shadow: 0 8px 24px rgba(91, 121, 178, .14);
        box-sizing: border-box;
    }

    body:has(.hero-banner-panel) .calculator .calc-grid {
        gap: 1.204vw;
    }

    body:has(.hero-banner-panel) .calculator .calc-label {
        margin-bottom: .556vw;
        font-size: clamp(9px, 1.296vw, 14px);
        line-height: 1.2;
    }

    body:has(.hero-banner-panel) .calculator .calc-field {
        min-width: 0;
    }

    body:has(.hero-banner-panel) .calculator .calc-result {
        display: none;
    }

    body:has(.hero-banner-panel) .calculator .calc-input,
    body:has(.hero-banner-panel) .calculator .calc-select {
        min-height: 3.889vw;
        padding: .556vw 1.296vw;
        border-width: 1px;
        border-radius: .741vw;
        font-size: clamp(10px, 1.389vw, 15px);
        line-height: 1.2;
    }

    body:has(.hero-banner-panel) .calculator .calc-range-row {
        margin-top: .556vw;
        font-size: clamp(8px, 1.111vw, 12px);
    }

    body:has(.hero-banner-panel) .calculator .calc-slider {
        height: .833vw;
        min-height: 5px;
        margin-top: .741vw;
    }

    body:has(.hero-banner-panel) .calculator .calc-slider::-webkit-slider-thumb {
        width: 2.407vw;
        max-width: 26px;
        height: 2.407vw;
        max-height: 26px;
    }

    body:has(.hero-banner-panel) .calculator .calc-slider::-moz-range-thumb {
        width: 2.407vw;
        max-width: 26px;
        height: 2.407vw;
        max-height: 26px;
    }

    body:has(.hero-banner-panel) .calculator .calc-submit {
        min-height: 5.185vw;
        margin-top: 1.574vw;
        padding: 0;
        border-radius: .741vw;
        font-size: clamp(10px, 1.481vw, 16px);
    }

}
