/* ==========================================================================
   home.css — styles for the homepage (index.html)
   Split out of style.css. Loaded AFTER style.css, so these rules win on the homepage.
   Shared blocks (hero / features / cta / news / calc / faq) are copies here;
   the originals stay in style.css for the other pages that reuse them.
   ========================================================================== */

/* ========== Reset ========== */
.section-h3 {
    font-size: clamp(20px, 1.88vw, 36px);
    font-weight: 700;
    margin: 0 0 clamp(32px, 2.97vw, 57px);
}
.section-sub {
    margin-top: 12px;
    font-size: 15px;
    color: #030bd7;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}
/* ========== Hero ========== */
.hero {
    background: linear-gradient(180deg, #C9DDF6 0%, #B8D4FF 60%, #A8C8F5 100%);
    padding: 56px 0 40px;
    position: relative;
    overflow: hidden;
}
.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-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;
}
.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 (bottom of hero) ========== */
.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;
}
/* ========== Promo Banner ========== */
.promo-banner {
    background: #044ff6;
    color: #fff;
    padding: 40px 0;
    margin-top: 32px;
}
.promo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.promo-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.04em;
    color: #fff;
}
.promo-text p {
    margin: 8px 0 0;
    font-size: 15px;
    opacity: 0.9;
}
.promo-btn {
    min-width: 240px;
    padding: 14px 56px;
    background: #fff;
    color: var(--brand-blue);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    transition: transform .15s;
    text-align: center;
}
.promo-btn:hover {
    transform: translateX(4px);
}
/* ========== Hot Activities ========== */
.hot-activities {
    padding: 0 0 clamp(73px, 6.77vw, 130px);
    background: #f3f6f8;
}
.hot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(15px, 1.35vw, 26px);
}
.hot-card {
    cursor: pointer;
}
.hot-img {
    height: clamp(121px, 11.2vw, 215px);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 8px rgba(14, 17, 24, 0.06);
}
.hot-card:hover .hot-img {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(14, 17, 24, 0.15);
}
.hot-label {
    margin: clamp(14px, 1.25vw, 24px) 0 0;
    font-size: clamp(10px, 0.94vw, 18px);
    color: #6C788B;
    text-align: center;
    font-weight: bold;
}
/* ========== Live Chart ========== */
.live-chart {
    padding: 0;
    background: #f3f6f8;
    padding-bottom: clamp(81px, 7.45vw, 143px);
}
.live-chart .section-h2 {
    color: #333333;
    font-size: clamp(26px, 2.4vw, 46px);
}
.live-chart .section-sub {
    margin-top: clamp(12px, 1.09vw, 21px);
    font-size: clamp(14px, 1.25vw, 24px);
    color: #7F879F;
    margin-bottom: clamp(47px, 4.38vw, 84px);
}
.chart-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    color: #fff;
}
.chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.chart-title {
    font-size: 14px;
    font-weight: 500;
    color: #DCE0EA;
}
.chart-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #21B573;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #21B573;
    animation: pulse 1.6s ease-in-out infinite;
}
.chart-card {
    position: relative;
}
.chart-live.is-loading {
    color: #7C8398;
}
.chart-live.is-loading .pulse-dot {
    background: #7C8398;
}
.chart-live.is-stale {
    color: #F5B829;
}
.chart-live.is-stale .pulse-dot {
    background: #F5B829;
    animation-duration: .9s;
}
.chart-live.is-down {
    color: #E84B4B;
}
.chart-live.is-down .pulse-dot {
    background: #E84B4B;
    animation: none;
}
.chart-status-banner {
    background: rgba(245, 184, 41, 0.12);
    border: 1px solid rgba(245, 184, 41, 0.45);
    color: #F5B829;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 6px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}
.chart-status-banner[hidden] {
    display: none;
}
.chart-status-banner::before {
    content: '⚠';
    font-size: 14px;
}
.chart-canvas-wrap {
    position: relative;
}
.chart-status-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 17, 24, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    border-radius: 8px;
    pointer-events: none;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.chart-status-overlay[hidden] {
    display: none;
}
.chart-status-msg {
    color: #DCE0EA;
    text-align: center;
    line-height: 1.6;
    padding: 0 24px;
}
.chart-status-msg strong {
    color: #fff;
    font-size: 18px;
    display: block;
    margin-bottom: 6px;
}
.chart-status-msg .sub {
    color: #7C8398;
    font-size: 12px;
    margin-top: 2px;
}
.kline-chart {
    width: 100%;
    height: clamp(325px, 30.05vw, 577px);
    display: block;
    background: #f5f5f5;
    padding: clamp(7px, 0.63vw, 12px);
}
.chart-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(10px, 0.94vw, 18px);
    margin-top: clamp(10px, 0.94vw, 18px);
    margin-bottom: clamp(10px, 0.94vw, 18px);
}
.stat-card {
    background: #F4F6FF;
    /* border: 1px solid #2A2F3A; */
    border-radius: clamp(6px, 0.52vw, 10px);
    padding: 16px;
}
.stat-label {
    font-size: clamp(8px, 0.73vw, 14px);
    color: #939BA8;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-weight: bold;
}
.stat-coin {
    color: var(--brand-gold);
}
.stat-coin-green {
    color: #21B573;
}
.stat-value {
    font-size: clamp(14px, 1.25vw, 24px);
    font-weight: 700;
    font-family: var(--font-mono);
    color: #fff;
}
.stat-up {
    color: #21B573 !important;
}
.stat-dn {
    color: #E84B4B !important;
}
.stat-sub {
    font-size: clamp(8px, 0.73vw, 14px);
    color: #A6AAB7;
    margin-top: 4px;
    font-weight: 400;
}
.chart-table {
    /* margin-top: 24px; */
    background: #F7F8FF;
    /* border: 1px solid #2A2F3A; */
    border-radius: clamp(6px, 0.52vw, 10px);
    overflow: hidden;
}
.chart-tr {
    display: grid;
    grid-template-columns: 1.14fr .86fr 1fr;
    padding: 14px 20px 14px clamp(45px, 4.17vw, 80px);
    border-bottom: 1px solid rgba(32, 81, 255, 0.2);
    font-size: 13px;
}
.chart-tr-head {
    background: #2051FF;
    color: #FFFFFF;
    font-size: clamp(11px, 1.04vw, 20px);
    font-weight: 500;
}
.chart-tr-head>div {
    display: flex;
    align-items: center;
    gap: 8px;
}
.chart-tr>div:first-child {
    color: #6C788B;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: clamp(9px, 0.83vw, 16px);
}
.chart-tr>div:nth-child(2) {
    font-family: var(--font-mono);
    font-weight: 600;
    color: #fff;
    font-size: clamp(9px, 0.83vw, 16px);
}
.chart-tr>div:nth-child(3) {
    color: #6C788B;
    font-size: clamp(9px, 0.83vw, 16px);
    font-weight: 500;
}
.chart-tr.chart-tr-head>div:first-child,
.chart-tr.chart-tr-head>div:nth-child(3) {
    color: #fff;
}
.chart-tr-last {
    border-bottom: none;
}
.chart-qr-block {
    margin-top: clamp(8px, 0.73vw, 14px);
    text-align: center;
}
.chart-qr-tip {
    font-size: clamp(8px, 0.73vw, 14px);
    color: #A2ADC0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: clamp(26px, 2.45vw, 47px);
}
.chart-download-wrap {
    display: flex;
    justify-content: center;
    margin: 0 0 clamp(11px, 0.99vw, 19px);
}
.chart-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 280px;
    padding: 14px 36px;
    background: #2051FF;
    color: #FFFFFF;
    font-weight: 400;
    border-radius: clamp(23px, 2.08vw, 40px);
    font-size: clamp(16px, 1.46vw, 28px);
    transition: filter .15s, transform .15s, box-shadow .15s;
    position: relative;
    cursor: pointer;
}
.chart-download-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 184, 41, 0.4);
}
.chart-download-btn[data-cta-qr]:hover .cta-qr-pop,
.chart-download-btn[data-cta-qr]:focus-within .cta-qr-pop {
    opacity: 1;
}
.chart-download-hint {
    /* margin-top: 12px; */
    text-align: center;
    font-size: clamp(8px, 0.73vw, 14px);
    color: #A2ADC0;
    text-underline-offset: clamp(2px, 0.21vw, 4px);
    text-decoration: underline;
}
.chart-download-hint {}
/* ========== 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;
}
.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-section {
    background: linear-gradient(180deg, #1B1F2A 0%, #0E1118 100%);
    color: #fff;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.download-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(27, 79, 224, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(123, 63, 228, 0.12), transparent 40%);
    pointer-events: none;
}
.download-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    gap: 48px;
    align-items: center;
}
.download-left {
    text-align: center;
}
.download-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-align: center;
}
.download-bullets {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 24px;
    font-size: 15px;
    color: #DCE0EA;
    text-align: left;
}
.download-btn-pill {
    width: 65%;
    justify-content: center;
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #fff;
    transition: background .15s;
}
.download-btn-pill:hover {
    background: rgba(255, 255, 255, 0.14);
}
.download-btn-pill .cta-sep {
    background: rgba(255, 255, 255, 0.2);
}
.download-phone {
    width: 280px;
    height: 560px;
    margin: 0 auto;
    position: relative;
}
.download-right {
    text-align: center;
}
.qr-with-corners {
    position: relative;
    display: inline-block;
    padding: 12px;
}
.qrc {
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--brand-orange);
    border-style: solid;
}
.qrc-tl {
    top: -2px;
    left: -2px;
    border-width: 2px 0 0 2px;
}
.qrc-tr {
    top: -2px;
    right: -2px;
    border-width: 2px 2px 0 0;
}
.qrc-bl {
    bottom: -2px;
    left: -2px;
    border-width: 0 0 2px 2px;
}
.qrc-br {
    bottom: -2px;
    right: -2px;
    border-width: 0 2px 2px 0;
}
.qr-frame {
    display: inline-block;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
}
.qr-tip {
    margin-top: 16px;
    font-size: 14px;
    color: #DCE0EA;
}
.qr-tip-strong {
    margin-top: 4px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}
.download-app-info {
    margin-top: 32px;
    padding: 16px;
    font-size: 12px;
    color: #b8b2b2;
    text-align: center;
    line-height: 1.8;
}
/* ========== News ========== */
.news-section {
    padding: clamp(64px, 5.89vw, 113px) 0 clamp(54px, 5vw, 96px);
    background: #f3f6f8;
}
.news-section.section-h2 {
    font-size: clamp(26px, 2.4vw, 46px);
    color: #333333;
}
.news-section .section-sub {
    font-size: clamp(14px, 1.25vw, 24px);
    color: #7F879F;
    margin-top: clamp(12px, 1.09vw, 21px);
    margin-bottom: clamp(33px, 3.02vw, 58px);
}
.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);
}
/* ========== 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;
}
.calculator .section-sub {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #7F879F;
  margin-top: clamp(12px, 1.09vw, 21px);
  margin-bottom: clamp(22px, 2.03vw, 39px);
}
.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: #3a3e5a;
    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 {
    padding: 64px 0;
    background: #fff;
}
.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;
}
.faq-more {
    text-align: center;
    margin-top: 24px;
    color: var(--ink-500);
    font-size: 14px;
    cursor: pointer;
}
.faq-more:hover {
    color: var(--brand-purple);
}
/* ========== Responsive ========== */
@media (max-width: 1200px) {
    .hero-headline {
        font-size: 44px;
    }

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

    .download-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .download-left {
        padding-left: 0;
        text-align: center;
    }

    .download-bullets {
        justify-content: center;
    }

    .download-phone {
        display: none;
    }

    .hot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 860px) {
    .hero-devices {
        transform: scale(0.62);
        transform-origin: top center;
        height: 320px;
    }

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

    .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;
    }

    .chart-stats {
        grid-template-columns: 1fr 1fr;
    }

    .chart-tr {
        grid-template-columns: 1fr 1fr;
    }

    .chart-tr>div:nth-child(3) {
        display: none;
    }

    .promo-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .download-bullets {
        grid-template-columns: 1fr 1fr;
    }

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

    .calc-result {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}
@media (max-width: 560px) {
    .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;
    }

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

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

    .download-bullets {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 860px) {
    .hero-sub {
        font-size: 15px;
        padding: 0 8px;
    }

    .hero-disclaimer {
        font-size: 11px;
        padding: 0 12px;
        line-height: 1.6;
    }

    .hero-bubble {
        padding: 6px 10px;
        font-size: 11px;
        gap: 6px;
    }

    .hero-ctas-row {
        gap: 14px;
        margin-top: 28px;
    }

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

    .promo-banner {
        padding: 32px 0;
        margin-top: 24px;
    }

    .promo-text h2 {
        font-size: 22px;
    }

    .promo-text p {
        font-size: 14px;
    }

    .promo-btn {
        min-width: 200px;
        padding: 12px 36px;
        font-size: 14px;
    }

    .hot-activities {
        padding: 44px 0 16px;
    }

    .section-h3 {
        font-size: 20px;
        margin-bottom: 18px;
        text-align: center;
    }

    .hot-img {
        height: 140px;
    }

    .hot-label {
        font-size: 13px;
    }

    .live-chart {
        padding: 48px 0;
    }

    .chart-card {
        padding: 16px;
        border-radius: 8px;
    }

    .kline-chart {
        height: 240px;
    }

    .chart-stats {
        gap: 12px;
        margin-top: 18px;
    }

    .stat-card {
        padding: 12px;
    }

    .stat-value {
        font-size: 18px;
    }

    .stat-label {
        font-size: 11px;
    }

    .chart-tr {
        padding: 12px 14px;
        font-size: 12px;
    }

    .chart-tr-head {
        font-size: 11px;
    }

    .chart-qr-block {
        margin-top: 22px;
    }

    .chart-download-btn {
        min-width: 240px;
        padding: 12px 28px;
        font-size: 14px;
    }

    .chart-download-hint {
        font-size: 12px;
    }

    .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-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 {
        padding: 48px 0;
    }

    .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;
    }

    .news-item .news-arrow {
        flex-shrink: 0;
        align-self: center;
    }

    .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;
    }

    .faq-item.faq-open .faq-a {
        max-height: 600px;
    }
}
@media (max-width: 560px) {
    .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;
    }

    .promo-banner {
        padding: 24px 0;
    }

    .promo-text h2 {
        font-size: 18px;
        letter-spacing: 0.02em;
    }

    .promo-text p {
        font-size: 13px;
    }

    .promo-btn {
        width: 100%;
        min-width: 0;
        padding: 12px 24px;
    }

    .hot-activities {
        padding: 36px 0 8px;
    }

    .hot-img {
        height: 150px;
    }

    .live-chart {
        padding: 36px 0;
    }

    .chart-card {
        padding: 12px;
    }

    .kline-chart {
        height: 200px;
    }

    .chart-header {
        margin-bottom: 12px;
    }

    .chart-title {
        font-size: 13px;
    }

    .chart-stats {
        gap: 10px;
        margin-top: 14px;
    }

    .stat-card {
        padding: 10px;
    }

    .stat-value {
        font-size: 16px;
    }

    .chart-tr {
        padding: 10px 12px;
        font-size: 12px;
    }

    .chart-download-btn {
        min-width: 0;
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .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 {
        padding: 36px 0;
    }

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

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

    .faq-more {
        font-size: 13px;
        margin-top: 18px;
    }

    .section-sub {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .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;
    }

    .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;
    }

    .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-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;
    }

    .download-section {
        padding: 38px 0;
    }

    .download-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .download-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .download-bullets {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px 8px;
        max-width: 360px;
        margin: 18px auto 0;
        text-align: center;
        font-size: 12px;
    }

    .download-btn-pill {
        width: 100%;
        max-width: 320px;
        margin-top: 22px;
        justify-content: center;
    }

    .download-right {
        display: grid;
        justify-items: center;
        gap: 12px;
    }

    .download-app-info {
        margin-top: 0;
        padding: 0 10px;
        font-size: 12px;
        line-height: 1.65;
    }
}
@media (max-width: 560px) {
    .hero-headline {
        font-size: 30px;
    }

    .hero-devices {
        height: 250px;
    }

    .download-title {
        font-size: 24px;
    }
}
/* ========== Home Hero final cascade ========== */
body .hero {
    background: #f3f6f8;
    padding: 0 0 0;
    overflow: visible;
}
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;
    }
}
@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 {
    position: relative;
    z-index: 10;
    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] {
    position: relative;
    z-index: 11;
    color: #fff;
    background: #044ff6;
    border: 1px solid #044ff6;
    box-shadow: none;
}
body .hero-ctas-row .cta-btn[data-cta-qr] .cta-qr-pop {
    z-index: 30;
}
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: #f3f6f8;
}
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;
}
body .home-features::after {
    display: none;
}
body .home-features .container {
    position: relative;
    z-index: 1;
    width: clamp(675px, 62.5vw, 1200px);
    max-width: calc(100% - 40px);
    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;
    }
}
/* ========== Home Promo Banner final cascade ========== */
body .promo-banner {
    margin: 0;
    padding: clamp(56px, 5.21vw, 100px) 0 clamp(46px, 4.219vw, 81px);
    background: #f3f6f8;
    color: #fff;
}
body .promo-inner {
    position: relative;
    display: block;
    width: clamp(675px, 62.5vw, 1200px);
    max-width: calc(100% - 40px);
    height: clamp(220px, 16.198vw, 311px);
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    border-radius: clamp(20px, 1.5625vw, 30px);
    background: #0b7ff6 url("../img/home-promo/promo-blue-gradient-panel-bg.webp") center / 100% 100% no-repeat;
}
body .hot-activities .container {
    width: clamp(675px, 62.5vw, 1200px);
    max-width: calc(100% - 40px);
    padding: 0;
}
/* Live Chart: same width as promo/hot so the column edges line up */
body .live-chart .container {
    width: clamp(675px, 62.5vw, 1200px);
    max-width: calc(100% - 40px);
    padding: 0;
}
body .hot-grid {
    grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 1081px) {
    body .hot-grid.hot-grid-two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body .hot-grid.hot-grid-two .hot-img {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}
body .hot-card {
    display: block;
    color: inherit;
    text-decoration: none;
}
body .hot-thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body .promo-text {
    position: absolute;
    left: 5.833%;
    top: 16.4%;
    z-index: 2;
}
body .promo-text h2 {
    margin: 0;
    color: #fff;
    font-family: MiSans-Heavy, MiSans, var(--font-sans);
    font-size: clamp(32px, 2.396vw, 46px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}
body .promo-text p {
    margin: clamp(14px, .99vw, 19px) 0 0;
    color: #fff;
    font-family: MiSans-Regular, MiSans, var(--font-sans);
    font-size: clamp(18px, 1.25vw, 24px);
    font-weight: 400;
    line-height: 1;
    opacity: 1;
}
body .promo-btn {
    position: absolute;
    left: 5.833%;
    top: 57.23%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(206px, 15.156vw, 291px);
    min-width: 0;
    height: clamp(59px, 4.323vw, 83px);
    padding: 0;
    color: #0364fc;
    background: #fff;
    border-radius: 41.01px;
    font-family: MiSans-Regular, MiSans, var(--font-sans);
    font-size: clamp(20px, 1.458vw, 28px);
    font-weight: 400;
    line-height: 1;
    text-align: center;
    transition: transform .15s;
}
body .promo-btn:hover {
    transform: translateY(-2px);
}
body .promo-gift {
    position: absolute;
    z-index: 1;
    right: 6.25%;
    top: 10.93%;
    width: clamp(176px, 12.969vw, 249px);
    height: auto;
    pointer-events: none;
}
@media (max-width:1080px) {
    body .promo-banner {
        padding: 0 0 36px;
    }

    body .promo-inner {
        width: calc(100% - 28px);
        max-width: 640px;
        height: auto;
        min-height: 310px;
        border-radius: 20px;
        background-size: cover;
    }

    body .promo-text {
        position: relative;
        left: auto;
        top: auto;
        padding: 30px 24px 0;
        max-width: 100%;
        text-align: left;
    }

    body .promo-text h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    body .promo-text p {
        margin-top: 12px;
        font-size: 16px;
        line-height: 1.45;
    }

    body .promo-btn {
        left: 24px;
        top: auto;
        bottom: 30px;
        width: 190px;
        height: 54px;
        font-size: 18px;
    }

    body .promo-gift {
        right: 14px;
        top: auto;
        bottom: 16px;
        width: min(40vw, 180px);
    }
}
@media (max-width:560px) {
    body .promo-inner {
        min-height: 286px;
    }

    body .promo-text {
        padding: 26px 20px 0;
    }

    body .promo-text h2 {
        font-size: 24px;
    }

    body .promo-text p {
        font-size: 14px;
        max-width: 260px;
    }

    body .promo-btn {
        left: 20px;
        bottom: 26px;
        width: 168px;
        height: 48px;
        font-size: 16px;
    }

    body .promo-gift {
        right: 6px;
        bottom: 16px;
        width: min(42vw, 150px);
    }
}
/* ========== Home FAQ final cascade ========== */
body #faq.faq {
    padding: clamp(72px, 5.208vw, 100px) 0 0;
    background: #f3f6f8;
}
body #faq .container {
    max-width: 1200px;
}
body #faq .section-h2 {
    margin: 0;
    color: #333;
    font-family: MiSans-Bold, MiSans, var(--font-sans);
    font-size: clamp(19px, 5.19vw, 56px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
}
body #faq .section-sub {
    max-width: none;
    margin: clamp(16px, 1.094vw, 21px) auto 0;
    color: #7f879f;
    font-family: MiSans-Regular, MiSans, var(--font-sans);
    font-size: clamp(18px, 1.25vw, 24px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
}
body #faq .faq-list {
    width: min(52.448vw, 1007px);
    max-width: calc(100% - 40px);
    margin: clamp(42px, 3.073vw, 59px) auto 0;
    gap: 14px;
}
body #faq .faq-item {
    height: auto;
    min-height: 0;
    overflow: hidden;
    background: #fff;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(140, 175, 210, .2);
    transition: box-shadow .15s ease;
}
body #faq .faq-item+.faq-item {
    margin-top: -2px;
}
body #faq .faq-item.faq-open {
    height: auto;
    min-height: 0;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(140, 175, 210, .2);
}
body #faq .faq-q {
    min-height: clamp(72px, 5.156vw, 99px);
    height: auto;
    padding: 0 clamp(32px, 2.5vw, 48px) 0 clamp(24px, 1.823vw, 35px);
    gap: clamp(14px, .99vw, 19px);
    color: #686e7f;
    font-family: MiSans-Semibold, MiSans, var(--font-sans);
    font-size: clamp(16px, 1.042vw, 20px);
    font-weight: 600;
    line-height: 1.35;
}
body #faq .faq-q-text {
    min-width: 0;
    overflow: hidden;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}
body #faq .faq-dot {
    flex: 0 0 clamp(14px, .938vw, 18px);
    width: clamp(14px, .938vw, 18px);
    height: clamp(14px, .938vw, 18px);
    background: #5379ff;
}
body #faq .faq-chev {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    color: #5379ff;
    align-items: center;
    justify-content: center;
    transform: none;
}
body #faq .faq-chev svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}
body #faq .faq-item.faq-open .faq-chev {
    transform: rotate(180deg);
}
body #faq .faq-a {
    max-height: 0;
}
body #faq .faq-item.faq-open .faq-a {
    max-height: 600px;
}
body #faq .faq-a-inner {
    padding: 0 clamp(32px, 2.5vw, 48px) clamp(24px, 1.823vw, 35px) clamp(58px, 4.43vw, 85px);
    color: #686e7f;
    font-family: MiSans-Regular, MiSans, var(--font-sans);
    font-size: clamp(14px, .833vw, 16px);
    line-height: 1.8;
}
body #faq .faq-more {
    display: block;
    width: max-content;
    margin: clamp(29px, 2.71vw, 52px) auto 0;
    color: #2051ff;
    font-family: MiSans-Regular, MiSans, var(--font-sans);
    font-size: clamp(14px, 1.25vw, 24px);
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-decoration: none;
}
body #faq .faq-more:hover {
    color: #2051ff;
}
/* ========== 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;
    }

    /* Calculator card: same width as news/faq so the column edges line up */
    body .calculator .calc-card {
        width: min(52.448vw, 1007px);
        max-width: calc(100% - 40px);
    }

    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;
    }
}
/* ========== Download Section final cascade ========== */
body .download-section {
    position: relative;
    height: clamp(581px, 48.385vw, 929px);
    padding: 0;
    overflow: hidden;
    background: #050b1d url("../img/home-download/section-dark-market-bg.webp") center / cover no-repeat;
    color: #fff;
}
body .download-bg-pattern {
    display: none;
}
body .download-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 7, 24, .08) 0%, rgba(3, 7, 24, 0) 34%, rgba(3, 7, 24, .12) 100%);
    pointer-events: none;
}
body .download-inner {
    position: relative;
    z-index: 1;
    display: block;
    width: clamp(720px, 62.5vw, 1200px);
    max-width: calc(100% - 40px);
    height: 100%;
    margin: 0 auto;
    padding: 0;
}
body .download-left {
    position: static;
    text-align: left;
}
body .download-title {
    position: absolute;
    left: 6.92%;
    top: 20.67%;
    margin: 0;
    color: #fff;
    font-family: MiSans-Bold, MiSans, var(--font-sans);
    font-size: clamp(30px, 2.188vw, 42px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-align: left;
    white-space: nowrap;
}
body .download-bullets {
    position: absolute;
    left: 0;
    top: 33.05%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: clamp(350px, 29.7vw, 570px);
    margin: 0;
    gap: clamp(22px, 1.77vw, 34px) clamp(54px, 5.21vw, 100px);
    color: #fff;
    font-family: MiSans-Regular, MiSans, var(--font-sans);
    font-size: clamp(16px, 1.25vw, 24px);
    font-weight: 400;
    line-height: 1;
    text-align: left;
}
body .download-bullets span {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: clamp(8px, .625vw, 12px);
    white-space: nowrap;
}
body .download-bullets img {
    display: block;
    flex: 0 0 clamp(22px, 1.458vw, 28px);
    width: clamp(22px, 1.458vw, 28px);
    height: clamp(22px, 1.458vw, 28px);
    object-fit: contain;
}
body .download-btn-pill {
    position: absolute;
    left: 3.83%;
    top: 57.59%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(288px, 24.01vw, 461px);
    height: clamp(53px, 4.375vw, 84px);
    margin: 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: 41.5px;
    background: #2051ff;
    box-shadow: none;
    box-sizing: border-box;
    transition: transform .18s, box-shadow .18s, background .18s;
}
body .download-btn-pill:hover {
    transform: translateY(-2px);
    background: #2051ff;
    box-shadow: 0 14px 28px rgba(32, 81, 255, .24);
}
body .download-btn-pill .cta-sep {
    width: 3px;
    height: clamp(24px, 1.667vw, 32px);
    background: rgba(255, 255, 255, .95);
}
body .download-btn-pill 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);
    opacity: 1;
}
body .download-phone {
    position: absolute;
    left: 53.42%;
    top: 13.13%;
    display: block;
    width: clamp(188px, 15.625vw, 300px);
    height: auto;
    margin: 0;
    z-index: 2;
}
body .download-phone-img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 28px 42px rgba(0, 0, 0, .42));
}
body .download-right {
    position: absolute;
    right: .4%;
    top: 30.3%;
    width: clamp(116px, 9.635vw, 185px);
    text-align: center;
    z-index: 3;
}
body .qr-with-corners {
    display: block;
    position: relative;
    width: 100%;
    padding: 0;
}
body .qrc {
    display: none;
}
body .qr-frame {
    display: block;
    width: 100%;
    padding: clamp(4px, .26vw, 5px);
    border-radius: 2px;
    background: #fff;
    box-sizing: border-box;
}
body .qr-frame img {
    display: block;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1;
    object-fit: cover;
}
body .qr-tip {
    margin-top: clamp(10px, .833vw, 16px);
    color: #fff;
    font-family: MiSans-Regular, MiSans, var(--font-sans);
    font-size: clamp(14px, 1.042vw, 20px);
    font-weight: 400;
    line-height: 1.1;
}
body .qr-tip-strong {
    margin-top: 0;
    color: #fff;
    font-family: MiSans-Regular, MiSans, var(--font-sans);
    font-size: clamp(14px, 1.042vw, 20px);
    font-weight: 400;
    line-height: 1.1;
}
body .download-section>.container:last-child {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 89.35%;
    width: clamp(720px, 62.5vw, 1200px);
    max-width: calc(100% - 40px);
    transform: translateX(-50%);
}
body .download-app-info {
    /* width: clamp(520px, 41.354vw, 794px); */
    width: 100%;
    margin: 0 auto;
    padding: 0;
    color: #aebccb;
    font-family: MiSans-Regular, MiSans, var(--font-sans);
    font-size: clamp(10px, .729vw, 14px);
    font-weight: 400;
    line-height: 1.12;
    text-align: center;
}
body .download-app-info-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}
body .download-app-info-link:hover,
body .download-app-info-link:focus-visible {
    color: #fff;
}
@media (max-width:1080px) {
    body .download-section {
        height: auto;
        min-height: 0;
        padding: 44px 0 34px;
        background-position: center;
    }

    body .download-section::after {
        background: rgba(3, 7, 24, .22);
    }

    body .download-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 26px;
        width: calc(100% - 28px);
        max-width: 640px;
        height: auto;
    }

    body .download-title {
        position: relative;
        left: auto;
        top: auto;
        font-size: 28px;
        line-height: 1.18;
        text-align: center;
        white-space: normal;
    }

    body .download-bullets {
        position: relative;
        left: auto;
        top: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        max-width: 430px;
        margin: 0 auto;
        gap: 14px 12px;
        font-size: 13px;
    }

    body .download-bullets span {
        justify-content: flex-start;
    }

    body .download-bullets img {
        flex-basis: 22px;
        width: 22px;
        height: 22px;
    }

    body .download-btn-pill {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 330px;
        height: 54px;
        margin: 0 auto;
        font-size: 15px;
    }

    body .download-phone {
        position: relative;
        left: auto;
        top: auto;
        width: min(62vw, 240px);
        margin: 0 auto;
    }

    body .download-right {
        position: relative;
        right: auto;
        top: auto;
        width: 150px;
        margin: 0 auto;
    }

    body .download-section>.container:last-child {
        position: relative;
        left: auto;
        top: auto;
        width: calc(100% - 28px);
        max-width: 640px;
        margin: 22px auto 0;
        transform: none;
    }

    body .download-app-info {
        width: 100%;
        font-size: 11px;
        line-height: 1.65;
    }
}
@media (max-width:560px) {
    body .download-section {
        padding: 38px 0 30px;
    }

    body .download-title {
        font-size: 24px;
    }

    body .download-bullets {
        grid-template-columns: 1fr;
        max-width: 245px;
    }

    body .download-phone {
        width: min(68vw, 220px);
    }

    body .download-right {
        width: 138px;
    }
}
/* ========== Calculator (mobile) ========== */
@media (max-width: 1080px) {
    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);
    }
}
/* ============================================================
 * Mobile final pass: navigation, CTA, content lists and detail pages
 * ============================================================ */
@media (max-width: 860px) {
    .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-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;
    }

    .download-section {
        padding: 38px 0;
    }

    .download-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .download-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .download-bullets {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 320px;
        margin: 18px auto 0;
        text-align: center;
        font-size: 13px;
    }

    .download-btn-pill {
        width: 100%;
        max-width: 320px;
        margin-top: 22px;
        justify-content: center;
    }

    .download-right {
        display: grid;
        justify-items: center;
        gap: 12px;
    }

    .download-app-info {
        margin-top: 0;
        padding: 0 10px;
        font-size: 12px;
        line-height: 1.65;
    }
}
@media (max-width: 560px) {
    .hero-headline {
        font-size: 30px;
    }

    .hero-devices {
        height: 250px;
    }

    .download-title {
        font-size: 24px;
    }
}
/* ========== Homepage mobile final cascade (<1080px) ========== */
.download-mobile-app-btn {
    display: none;
}
.hero-device-mobile-design {
    display: none;
}
.kline-mobile-design {
    display: none;
}
@media (max-width:1080px) {
    body:has(.hero-banner-panel) .section-h2,
    body:has(.hero-banner-panel) .section-h3 {
        color: #333333;
        font-family: "HarmonyOS Sans SC", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
        font-size: clamp(19px, 5.19vw, 56px);
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0;
        text-align: center;
    }

    body:has(.hero-banner-panel) .section-sub {
        margin: clamp(9px, 2.5vw, 27px) auto 0;
        color: #5F718B;
        font-family: "HarmonyOS Sans SC", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
        font-size: clamp(8px, 2.22vw, 24px);
        font-weight: 400;
        line-height: 1.25;
        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: auto;
        /* max-width: max-content; */
        height: clamp(224px, 59.81vw, 646px);
        max-height: clamp(224px, 59.81vw, 646px);
        margin: clamp(25px, 6.57vw, 71px) 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-device-mobile-design {
        position: absolute;
        display: block;
        left: 50%;
        top: 0;
        width: auto;
        /* max-width: 420px; */
        height: clamp(224px, 59.81vw, 646px);
        max-height: 663px;
        object-fit: contain;
        transform: translateX(-50%);
        pointer-events: none;
    }

    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: clamp(17px, 4.54vw, 49px);
        max-width: clamp(17px, 4.54vw, 49px);
        height: clamp(17px, 4.54vw, 49px);
        max-height: clamp(17px, 4.54vw, 49px);
    }

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

    /* Floating animation on mobile too (same keyframes as desktop) */
    body:has(.hero-banner-panel) .hero-bubble {
        --bubble-duration: 7.6s;
        --bubble-delay: 0s;
        --bubble-x1: 1.3vw;
        --bubble-y1: -1.5vw;
        --bubble-r1: .7deg;
        --bubble-x2: .5vw;
        --bubble-y2: .4vw;
        --bubble-r2: -.4deg;
        --bubble-x3: -1.1vw;
        --bubble-y3: -.8vw;
        --bubble-r3: .3deg;
        will-change: transform;
        animation: heroBubbleFloat var(--bubble-duration) cubic-bezier(.45, 0, .55, 1) infinite;
        animation-delay: var(--bubble-delay);
    }

    body:has(.hero-banner-panel) .hero-bubble-bg {
        animation: heroBubbleBreath 4.8s ease-in-out infinite;
        animation-delay: var(--bubble-delay);
    }

    body:has(.hero-banner-panel) .hero-bubble-icon {
        animation: heroBubbleIcon 4.6s ease-in-out infinite;
        animation-delay: var(--bubble-delay);
    }

    body:has(.hero-banner-panel) .hero-bubble-1 { --bubble-delay: -1.2s; }
    body:has(.hero-banner-panel) .hero-bubble-2 { --bubble-delay: -3.4s; }
    body:has(.hero-banner-panel) .hero-bubble-3 { --bubble-delay: -.4s; }
    body:has(.hero-banner-panel) .hero-bubble-4 { --bubble-delay: -2.1s; }
    body:has(.hero-banner-panel) .hero-bubble-5 { --bubble-delay: -4.6s; }
    body:has(.hero-banner-panel) .hero-bubble-6 { --bubble-delay: -2.8s; }

    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) .promo-banner {
        padding: 0 0 clamp(31px, 8.15vw, 88px);
        background: #f3f6f8;
    }

    body:has(.hero-banner-panel) .promo-inner {
        width: clamp(354px, 94.44vw, 1020px);
        max-width: clamp(354px, 94.44vw, 1020px);
        min-height: clamp(108px, 28.7vw, 310px);
        max-height: clamp(108px, 28.7vw, 310px);
        border-radius: clamp(11px, 2.96vw, 32px);
    }

    body:has(.hero-banner-panel) .promo-text {
        padding: clamp(20px, 5.37vw, 58px) 0 0 clamp(20px, 5.46vw, 59px);
    }

    body:has(.hero-banner-panel) .promo-text h2 {
        /* max-width: 55.463vw; */
        font-size: clamp(15px, 3.89vw, 42px);
        line-height: 1;
    }

    body:has(.hero-banner-panel) .promo-text p {
        margin-top: clamp(7px, 1.76vw, 19px);
        font-size: clamp(8px, 2.22vw, 24px);
        line-height: 1;
    }

    body:has(.hero-banner-panel) .promo-btn {
        left: clamp(20px, 5.46vw, 59px);
        bottom: clamp(18px, 4.72vw, 51px);
        width: clamp(101px, 26.94vw, 291px);
        max-width: clamp(101px, 26.94vw, 291px);
        height: clamp(29px, 7.69vw, 83px);
        max-height: clamp(29px, 7.69vw, 83px);
        font-size: clamp(10px, 2.59vw, 28px);
    }

    body:has(.hero-banner-panel) .promo-gift {
        right: 5vw;
        bottom: 3.333vw;
        width: 23.056vw;
        max-width: 249px;
    }

    body:has(.hero-banner-panel) .hot-activities {
        padding: 0 0 clamp(50px, 13.33vw, 144px);
        background: #f3f6f8;
    }

    body:has(.hero-banner-panel) .hot-activities .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }

    body:has(.hero-banner-panel) .section-h3 {
        margin: 0 0 clamp(23px, 6.02vw, 65px);
    }

    body:has(.hero-banner-panel) .hot-grid {
        display: none;
    }

    body:has(.hero-banner-panel) .hot-activities::after {
        content: none;
        display: none;
    }

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

    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) .live-chart .section-sub {
        /* max-width: 87.315vw; */
    }

    body:has(.hero-banner-panel) .chart-card {
        margin-top: clamp(22px, 5.93vw, 64px);
        padding: clamp(8px, 2.04vw, 22px) clamp(8px, 2.04vw, 22px)
clamp(16px, 4.17vw, 45px)
clamp(8px, 2.04vw, 22px);
        border-radius: clamp(11px, 2.96vw, 32px);
        background: #fff;
        color: #333;
        box-shadow: 0 4px 12px rgba(140, 175, 210, .2);
        border: 0;
    }

    body:has(.hero-banner-panel) .chart-header {
        display: none;
    }

    body:has(.hero-banner-panel) .kline-chart {
        display: block;
        width: 100%;
        height: 44.537vw;
        max-height: 481px;
        border: 1px solid #edf1f7;
        border-radius: .556vw;
        background: #f6f8fb;
        padding: clamp(4px, 1.111vw, 12px);
        box-sizing: border-box;
    }

    body:has(.hero-banner-panel) .kline-mobile-design {
        display: none;
    }

    body:has(.hero-banner-panel) .chart-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(12px, 3.24vw, 35px) clamp(11px, 2.87vw, 31px);
        margin: clamp(11px, 2.87vw, 31px) 0 0;
    }

    body:has(.hero-banner-panel) .stat-card {
        min-height: 17.778vw;
        padding: 3.241vw;
        border: 0;
        border-radius: .741vw;
        background: #f4f6ff;
    }

    body:has(.hero-banner-panel) .stat-label {
        color: #69748b;
        font-size: clamp(8px, 2.22vw, 24px);
    }

    body:has(.hero-banner-panel) .stat-value {
        font-size: clamp(15px, 3.89vw, 42px);
    }

    /* Mock colours: 周期最低 red, 平均价格 amber (mobile only) */
    body:has(.hero-banner-panel) .stat-value[data-stat="low"] {
        color: #E84B4B !important;
    }

    body:has(.hero-banner-panel) .stat-value[data-stat="avg"] {
        color: #F5A032 !important;
    }

    body:has(.hero-banner-panel) .stat-sub {
        font-size: clamp(8px, 2.22vw, 24px);
    }

    body:has(.hero-banner-panel) .chart-table {
        margin-top: clamp(9px, 2.41vw, 26px);
        border: 0;
        border-radius: clamp(3px, 0.93vw, 10px);
        background: #F7F8FF;
        box-shadow: 0 0 0 1px #edf1f7 inset;
    }

    body:has(.hero-banner-panel) .chart-tr {
        grid-template-columns: 1fr 1fr 1fr;
        min-height: 6.759vw;
        padding: 0 5.463vw;
        align-items: center;
        color: #333;
        border-bottom: 1px solid #edf1f7;
        font-size: clamp(9px, 2.222vw, 24px);
    }

    /* Mobile keeps the larger table text (desktop base font was restored to
       its original clamp, so re-apply the mobile size here only) */
    body:has(.hero-banner-panel) .chart-tr > div {
        font-size: clamp(8px, 2.22vw, 24px);
    }

    body:has(.hero-banner-panel) .chart-tr > div:nth-child(2) {
        font-weight: 500;
    }

    body:has(.hero-banner-panel) .chart-tr-head {
        background: #2051ff;
        color: #fff;
    }

    body:has(.hero-banner-panel) .chart-tr > div:first-child,
    body:has(.hero-banner-panel) .chart-tr > div:nth-child(3) {
        color: inherit;
    }

    /* Show the 说明 (description) column on mobile too */
    body:has(.hero-banner-panel) .chart-tr > div:nth-child(3) {
        display: block;
        color: #6C788B;
        padding-left: clamp(29px, 7.78vw, 84px);
    }

    body:has(.hero-banner-panel) .chart-tr-head > div:nth-child(3) {
        color: #fff;
    }

    body:has(.hero-banner-panel) .chart-qr-tip {
        display: none;
    }

    body:has(.hero-banner-panel) .chart-download-btn {
        width: clamp(214px, 52.593vw, 568px);
        min-height: clamp(44px, 11.759vw, 127px);
        border-radius: 999px;
        background: #2051ff;
        color: #fff;
        font-size: clamp(15px, 3.889vw, 42px);
    }

    body:has(.hero-banner-panel) .chart-download-hint {
        color: #e60012;
        font-size: clamp(8px, 2.22vw, 24px);
        text-decoration: none;
        font-weight: bold;
        text-decoration: underline;
        text-underline-offset: clamp(1px, 0.37vw, 4px);
    }

    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-title-desktop-prefix {
        display: none;
    }

    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 clamp(8px, 2.04vw, 22px);
        color: #2051ff;
        font-size: clamp(13px, 3.33vw, 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(8px, 2.22vw, 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) .download-section {
        min-height: 108.611vw;
        padding: 0;
        background: #071121 url("../img/home-download/section-dark-market-bg.webp") center / cover no-repeat;
    }

    body:has(.hero-banner-panel) .download-section::after {
        background: linear-gradient(180deg, rgba(3, 7, 24, .12), rgba(3, 7, 24, .34));
    }

    body:has(.hero-banner-panel) .download-inner {
        position: relative;
        display: block;
        width: 100%;
        max-width: none;
        min-height: 108.611vw;
        padding: 0;
    }

    body:has(.hero-banner-panel) .download-title {
        position: absolute;
        left: 0;
        right: 0;
        top: clamp(28px, 7.59vw, 82px);
        color: #fff;
        font-size: clamp(19px, 5.19vw, 56px);
        line-height: 1;
        text-align: center;
    }

    body:has(.hero-banner-panel) .download-title-desktop-prefix {
        display: none;
    }

    body:has(.hero-banner-panel) .download-bullets {
        position: absolute;
        left: 12.222vw;
        top: 25.741vw;
        display: grid;
        grid-template-columns: 1fr;
        width: auto;
        max-width: none;
        gap: 5.278vw;
        color: #fff;
        font-size: clamp(13px, 3.33vw, 36px);
    }

    body:has(.hero-banner-panel) .download-bullets img {
        flex-basis: clamp(8px, 2.04vw, 22px);
        width: clamp(16px, 4.17vw, 45px);
        height: clamp(16px, 4.17vw, 45px);
    }

    body:has(.hero-banner-panel) .download-btn-pill,
    body:has(.hero-banner-panel) .download-right {
        display: none;
    }

    body:has(.hero-banner-panel) .download-mobile-app-btn {
        position: absolute;
        left: 50%;
        top: 83.278vw;
        display: flex;
        align-items: center;
        justify-content: center;
        width: clamp(214px, 59.259vw, 640px);
        height: clamp(44px, 10.741vw, 116px);
        padding: 0 clamp(18px, 4.63vw, 50px);
        gap: clamp(10px, 2.963vw, 32px);
        border-radius: 999px;
        color: #fff;
        background: #2051ff;
        font-size: clamp(12px, 2.963vw, 32px);
        text-decoration: none;
        transform: translateX(-50%);
        box-sizing: border-box;
    }

    body:has(.hero-banner-panel) .download-mobile-app-btn .cta-sep {
        width: 1px;
        height: clamp(14px, 4.259vw, 46px);
        background: rgba(255, 255, 255, .75);
    }

    body:has(.hero-banner-panel) .download-mobile-app-btn .dl-scan img {
        display: block;
        width: clamp(18px, 4.63vw, 50px);
        height: clamp(18px, 4.63vw, 50px);
        object-fit: contain;
    }

    body:has(.hero-banner-panel) .download-phone {
        position: absolute;
        left: 60.37vw;
        top: 21.389vw;
        width: 26.667vw;
        max-width: 288px;
        margin: 0;
    }

    body:has(.hero-banner-panel) .download-app-info {
        width: 75.648vw;
        max-width: 817px;
        color: #aebccb;
        font-size: clamp(7px, 1.85vw, 20px);
        line-height: 1.25;
    }

    body:has(.hero-banner-panel) .download-section > .container:last-child {
        position: absolute;
        left: 50%;
        top: 98.426vw;
        z-index: 2;
        width: auto;
        max-width: none;
        margin: 0;
        transform: translateX(-50%);
    }

    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 .section-sub {
        color: #7f879f;
        font-size: clamp(10px, 2.222vw, 24px);
        margin-top: clamp(8px, 2.04vw, 22px);
    }

    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;
    }

    /* Reveal results after 计算 is tapped (same flow as calculator.html) */
    body:has(.hero-banner-panel) .calculator .calc-card.calc-has-result .calc-result {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.222vw 2.87vw;
        margin-top: 2.96vw;
        padding: 2.96vw 3.333vw;
        border-radius: 1.111vw;
    }

    body:has(.hero-banner-panel) .calculator .calc-result-l {
        font-size: clamp(9px, 2.222vw, 24px);
        line-height: 1.2;
    }

    body:has(.hero-banner-panel) .calculator .calc-result-v {
        margin-top: .741vw;
        font-size: clamp(11px, 1.35vw, 14px);
        line-height: 1.2;
    }

    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;
        padding: clamp(8px, 1.1vw, 12px) clamp(11px, 1.3vw, 14px);
    }

    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: clamp(40px, 8.5vw, 92px);
        margin-top: clamp(10px, 2.96vw, 32px);
        padding: 0;
        border-radius: clamp(8px, 1.111vw, 12px);
        background: linear-gradient(90deg, #3551ea 0%, #0a57dc 100%);
        gap: clamp(5px, 1.296vw, 14px);
        font-size: clamp(15px, 3.333vw, 36px);
        font-weight: 700;
    }

    body:has(.hero-banner-panel) .calculator .calc-submit svg {
        width: clamp(15px, 3.519vw, 38px);
        height: clamp(15px, 3.519vw, 38px);
    }

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

    body:has(.hero-banner-panel) #faq .section-sub {
        font-size: clamp(10px, 2.593vw, 28px);
    }

    body:has(.hero-banner-panel) #faq .faq-q {
        height: 100%;
        padding: 0 3.796vw 0 6.389vw;
        gap: 2.5vw;
    }

    body:has(.hero-banner-panel) #faq .faq-item {
        height: 10.463vw;
        max-height: 113px;
        min-height: 40px;
    }

    body:has(.hero-banner-panel) #faq .faq-a {
        display: none;
    }

    body:has(.hero-banner-panel) #faq .faq-item.faq-open {
        height: auto;
    }

    body:has(.hero-banner-panel) #faq .faq-item.faq-open .faq-a {
        display: block;
    }

    body:has(.hero-banner-panel) #faq .faq-chev {
        transform: rotate(-90deg);
    }

    body:has(.hero-banner-panel) #faq .faq-more {
        margin-top: 5.37vw;
        font-size: clamp(12px, 3.333vw, 36px);
    }
}

/* ========== Homepage mobile content sync ========== */
@media (max-width: 1080px) {
    body:has(.hero-banner-panel) .hot-activities {
        overflow: hidden;
    }

    body:has(.hero-banner-panel) .hot-activities .hot-grid {
        --hot-mobile-card-width: 78.52vw;
        --hot-mobile-card-gap: 2.6vw;
        display: flex;
        grid-template-columns: none;
        flex-wrap: nowrap;
        justify-content: center;
        gap: var(--hot-mobile-card-gap);
        width: 100%;
        margin: 0;
        overflow: visible;
        touch-action: pan-y;
        user-select: none;
    }

    body:has(.hero-banner-panel) .hot-activities .hot-card {
        display: block;
        flex: 0 0 var(--hot-mobile-card-width);
        width: var(--hot-mobile-card-width);
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        color: inherit;
        text-decoration: none;
        transform: none;
        overflow: visible;
        transition: transform .28s ease, opacity .28s ease;
    }

    /* Sliding track: every card sits in one row and the whole strip eases
       sideways; the card arriving at centre grows to full size so it visibly
       protrudes (taller) the way the mock shows. */
    body:has(.hero-banner-panel) .hot-activities .hot-grid.is-hot-carousel {
        justify-content: flex-start;
        width: max-content;
        gap: var(--hot-mobile-card-gap);
        transform: translate3d(var(--hot-x, 0px), 0, 0);
        transition: transform .55s cubic-bezier(.4, 0, .2, 1);
        will-change: transform;
    }

    /* No easing while the finger drives it or during the seamless loop jump */
    body:has(.hero-banner-panel) .hot-activities .hot-grid.is-hot-carousel.is-dragging,
    body:has(.hero-banner-panel) .hot-activities .hot-grid.is-hot-carousel.is-jumping {
        transition: none;
    }

    body:has(.hero-banner-panel) .hot-activities .hot-grid.is-hot-carousel .hot-card {
        display: block;
    }

    /* Side cards a touch smaller (scaled from their centre so the active one
       sticks out top & bottom); active eases up to full size as it slides in */
    body:has(.hero-banner-panel) .hot-activities .hot-grid.is-hot-carousel .hot-card .hot-img {
        transform: scale(.9);
        transform-origin: center center;
        transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    }

    body:has(.hero-banner-panel) .hot-activities .hot-grid.is-hot-carousel .hot-card.is-active .hot-img {
        transform: scale(1);
    }

    body:has(.hero-banner-panel) .hot-activities .hot-grid.is-hot-carousel.is-dragging .hot-card .hot-img {
        transition: none;
    }

    body:has(.hero-banner-panel) .hot-activities .hot-card:hover {
        box-shadow: none;
        transform: none;
    }

    body:has(.hero-banner-panel) .hot-activities .hot-img {
        display: block;
        width: 100%;
        height: 44.259vw;
        max-height: 478px;
        margin: 0;
        border-radius: clamp(8px, 2.22vw, 24px);
        box-shadow: none;
        overflow: hidden;
    }

    body:has(.hero-banner-panel) .hot-activities .hot-thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    body:has(.hero-banner-panel) .hot-activities .hot-label {
        display: block;
        margin: clamp(19px, 5.09vw, 55px) 0 0;
        color: #6C788B;
        font-size: clamp(13px, 3.33vw, 36px);
        font-weight: 600;
        line-height: 1.2;
        text-align: center;
    }

    body:has(.hero-banner-panel) .hot-activities .hot-grid.is-hot-carousel .hot-card .hot-label {
        opacity: 0;
        pointer-events: none;
        transition: opacity .45s ease;
    }

    body:has(.hero-banner-panel) .hot-activities .hot-grid.is-hot-carousel .hot-card.is-active .hot-label {
        opacity: 1;
    }

    body:has(.hero-banner-panel) .hot-activities::after {
        display: none;
        content: none;
    }

    body:has(.hero-banner-panel) #faq.faq {
        padding: clamp(28px, 7.59vw, 82px) 0 0;
        background: #f3f6f8;
    }

    body:has(.hero-banner-panel) #faq .container {
        width: 100%;
        max-width: 640px;
        padding-left: clamp(12px, 3.15vw, 34px);
        padding-right: clamp(12px, 3.15vw, 34px);
        box-sizing: border-box;
    }

    body:has(.hero-banner-panel) #faq .section-sub {
        color: #999;
        font-size: clamp(10px, 2.59vw, 28px);
        font-weight: 400;
        line-height: 1.45;
    }

    body:has(.hero-banner-panel) #faq .faq-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 100%;
        max-width: none;
        margin: clamp(17px, 4.44vw, 48px) 0 0;
    }

    body:has(.hero-banner-panel) #faq .faq-item,
    body:has(.hero-banner-panel) #faq .faq-item.faq-open {
        height: auto;
        max-height: none;
        min-height: 0;
        border: 0;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 3px 10px rgba(92, 116, 140, .14);
        overflow: hidden;
        transition: none;
    }

    body:has(.hero-banner-panel) #faq .faq-item + .faq-item {
        margin-top: 0;
    }

    body:has(.hero-banner-panel) #faq .faq-q,
    body:has(.hero-banner-panel) #faq .faq-item.faq-open .faq-q {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 56px;
        gap: 0;
        padding: 14px 18px 14px 34px;
        color: #82889A;
        font-family: MiSans-Semibold, MiSans, var(--font-sans);
        font-size: clamp(11px, 2.96vw, 32px);
        font-weight: 700;
        line-height: 1.42;
        cursor: pointer;
    }

    body:has(.hero-banner-panel) #faq .faq-dot {
        position: absolute;
        left: 13px;
        top: 50%;
        flex: none;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #5379FF;
        transform: translateY(-50%);
    }

    body:has(.hero-banner-panel) #faq .faq-q-text {
        display: block;
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
        color: #82889A;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body:has(.hero-banner-panel) #faq .faq-chev {
        position: static;
        display: inline-flex;
        flex: 0 0 18px;
        width: clamp(9px, 2.44vw, 26.37px);
        height: auto;
        align-items: center;
        justify-content: center;
        color: #5f86ff;
        transform: none;
        transition: transform .2s ease;
    }

    body:has(.hero-banner-panel) #faq .faq-chev svg {
        width: 16px;
        height: 16px;
    }

    body:has(.hero-banner-panel) #faq .faq-item.faq-open .faq-q {
        align-items: flex-start;
        padding: clamp(13px, 3.43vw, 37px) clamp(20px, 5.37vw, 58px) clamp(7px, 1.94vw, 21px) clamp(13px, 3.52vw, 38px);
    }

    body:has(.hero-banner-panel) #faq .faq-item.faq-open .faq-dot {
        display: none;
    }

    body:has(.hero-banner-panel) #faq .faq-item.faq-open .faq-q-text {
        overflow: visible;
        white-space: normal;
    }

    body:has(.hero-banner-panel) #faq .faq-item.faq-open .faq-chev {
        position: absolute;
        top: clamp(13px, 3.43vw, 37px);
        right: 18px;
        color: #5f86ff;
        transform: rotate(180deg);
    }

    body:has(.hero-banner-panel) #faq .faq-a {
        display: block;
        overflow: hidden;
        max-height: 0;
        transition: max-height .25s ease;
    }

    body:has(.hero-banner-panel) #faq .faq-item.faq-open .faq-a {
        display: block;
        max-height: 600px;
    }

    body:has(.hero-banner-panel) #faq .faq-a-inner {
        padding: 0 clamp(20px, 5.37vw, 58px) clamp(15px, 4.07vw, 44px) clamp(13px, 3.52vw, 38px);
        color: #8b94a6;
        font-family: MiSans, var(--font-sans);
        font-size: clamp(10px, 2.59vw, 28px);
        font-weight: 400;
        line-height: 1.35;
    }

    body:has(.hero-banner-panel) #faq .faq-more {
        margin-top: clamp(22px, 5.74vw, 62px);
        font-size: clamp(13px, 3.33vw, 36px);
    }

    /* 行情分析 rows: mirror the 答疑专区 cards (here tap = navigate) */
    body:has(.hero-banner-panel) .news-section .news-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 100%;
        max-width: none;
        margin: clamp(17px, 4.44vw, 48px) auto 0;
    }

    body:has(.hero-banner-panel) .news-section .news-item {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 56px;
        gap: 0;
        padding: 14px 18px 14px 34px;
        border: 0;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 3px 10px rgba(92, 116, 140, .14);
        overflow: hidden;
        color: #82889a;
        font-family: MiSans-Semibold, MiSans, var(--font-sans);
        font-size: clamp(11px, 2.96vw, 32px);
        font-weight: 700;
        line-height: 1.42;
        text-decoration: none;
        transform: none;
        transition: box-shadow .15s ease;
    }

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

    body:has(.hero-banner-panel) .news-section .news-item:hover {
        border: 0;
        transform: none;
        box-shadow: 0 6px 16px rgba(92, 116, 140, .2);
    }

    body:has(.hero-banner-panel) .news-section .news-dot {
        position: absolute;
        left: 13px;
        top: 50%;
        flex: none;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #5379ff;
        transform: translateY(-50%);
    }

    body:has(.hero-banner-panel) .news-section .news-text {
        display: block;
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
        color: #82889a;
        font-size: inherit;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body:has(.hero-banner-panel) .news-section .news-arrow {
        position: static;
        display: inline-flex;
        flex: 0 0 18px;
        width: clamp(9px, 2.44vw, 26.37px);
        height: auto;
        align-items: center;
        justify-content: center;
        color: #5f86ff;
        transform: none;
    }

    body:has(.hero-banner-panel) .news-section .news-arrow svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 374px) {
    body:has(.hero-banner-panel) #faq .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    body:has(.hero-banner-panel) #faq .faq-q,
    body:has(.hero-banner-panel) #faq .faq-item.faq-open .faq-q {
        font-size: 15px;
    }

    body:has(.hero-banner-panel) #faq .faq-a-inner {
        font-size: 13px;
    }
}
