:root {
    --red: #c8392b;
    --red-light: #f5e6e4;
    --red-dark: #8b2519;
    --gold: #b8860b;
    --gold-light: #fdf8ec;
    --ink: #1a1208;
    --ink-60: rgba(26, 18, 8, 0.6);
    --ink-30: rgba(26, 18, 8, 0.3);
    --ink-10: rgba(26, 18, 8, 0.08);
    --paper: #faf8f4;
    --white: #ffffff;
    --green: #1a6b3c;
    --green-light: #e8f5ee;
    --mono: 'DM Mono', monospace;
    --serif: "Noto Serif TC", serif;
    --sans: "Inter", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
    background: var(--white);
    border-bottom: 1px solid var(--ink-10);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* 独立用户信息弹窗样式 - 无冲突专用 */
* {
    box-sizing: border-box;
}

/* 遮罩层 */
.user-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(3px);
}

/* 弹窗容器 */
.user-modal-card {
    width: auto;
    min-width: 380px;
    background: linear-gradient(145deg, #1a1208, #120d07);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid #332618;
    animation: user-modal-fade 0.3s ease forwards;
}

@keyframes user-modal-fade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 关闭按钮 */
.user-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
}

.user-modal-close:hover {
    color: #c8392b;
}

/* 头像区域 */
.user-modal-avatar-wrap {
    text-align: center;
    margin-bottom: 20px;
}

.user-modal-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #332618;
}

/* 信息行 */
.user-modal-info-row {
    padding: 12px 0;
    border-bottom: 1px solid #291f11;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.user-modal-info-row:last-child {
    border-bottom: none;
}

/* 标签 + 值 */
.user-modal-label {
    color: #bcac97;
    font-size: 14px;
}

.user-modal-value {
    color: #e0d5c8;
    font-size: 14px;
    font-weight: 500;
    text-align: right;
    max-width: 200px;
    word-break: break-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

/* VIP 样式 */
.user-modal-vip-tag {
    background-color: #c8392b;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.user-modal-vip-expire {
    color: #c86a5f !important;
}

/* 空值 */
.user-modal-empty {
    color: #665a4a !important;
    font-style: italic;
}

.logo {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 0.5px;
    text-decoration: none;
}

.password-box {
    position: relative;
    width: 100%;
    /* 你可以自己改宽度 */
}

/* 小眼睛按钮 */
.eye-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo span {
    color: var(--ink);
    font-weight: 400;
}

/* 用户头像盒子 */
.user-info-box {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* 头像样式 */
.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
}

/* 用户名 */
.name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 13.5px;
    color: var(--ink-60);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switcher {
    display: flex;
    border: 1px solid var(--ink-10);
    border-radius: 4px;
    overflow: hidden;
}

.lang-opt {
    font-size: 11px;
    font-family: var(--mono);
    color: var(--ink-60);
    background: transparent;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.15s;
    border-right: 1px solid var(--ink-10);
}

.lang-opt:last-child {
    border-right: none;
}

.lang-opt:hover {
    background: var(--paper);
    color: var(--ink);
}

.lang-opt.active {
    background: var(--ink);
    color: #fff;
}

.lang-btn {
    font-size: 12px;
    color: var(--ink-60);
    border: 1px solid var(--ink-10);
    background: transparent;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.download-btn {
    font-size: 13px;
    font-weight: 500;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.download-btn:hover {
    background: var(--red-dark);
}

.login-btn {
    font-size: 13px;
    font-weight: 500;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink-30);
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.login-btn:hover {
    border-color: var(--ink);
    background: var(--paper);
}

/* HERO */
.hero-wrap {
    background: var(--white);
    border-bottom: 1px solid var(--ink-10);
}

.hero {
    padding: 5rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background: var(--red);
}

.hero h1 {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 1.25rem;
}

.hero h1 em {
    font-style: normal;
    color: var(--red);
}

.hero-desc {
    font-size: 15px;
    color: var(--ink-60);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 380px;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2rem;
}

.pill-tag {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-60);
    border: 1px solid var(--ink-10);
    padding: 4px 12px;
    border-radius: 2px;
    background: var(--paper);
}

.hero-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 11px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--red-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink-30);
    padding: 11px 28px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--ink);
}

/* INDEX PANEL */
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--ink-10);
    border-radius: 8px;
    background: var(--paper);
    overflow: hidden;
}

.idx-header {
    padding: 14px 20px;
    border-bottom: 1px solid var(--ink-10);
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-60);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
}

.idx-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--ink-10);
    gap: 1rem;
    transition: background 0.15s;
}

.idx-row:last-child {
    border-bottom: none;
}

.idx-row:hover {
    background: rgba(255, 255, 255, 0.6);
}

.idx-name {
    font-size: 13.5px;
    color: var(--ink);
}

.idx-val {
    font-family: var(--mono);
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
    text-align: right;
}

.idx-chg {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 2px;
    min-width: 72px;
    text-align: center;
}

.chg-up {
    background: var(--green-light);
    color: var(--green);
}

.chg-down {
    background: #fae0de;
    color: #ff0000;
}

.chg-dn {
    background: var(--red-light);
    color: var(--red-dark);
}

.chg-na {
    background: var(--ink-10);
    color: var(--ink-60);
}

.idx-note {
    padding: 10px 20px;
    font-size: 11px;
    color: var(--ink-30);
    font-family: var(--mono);
    border-top: 1px solid var(--ink-10);
}

/* FEATURES BAND */
.features-band {
    background: var(--ink);
    padding: 3.5rem 2rem;
}

.features-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feat-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feat-icon {
    width: 48px;
    height: 48px;
}

.feat-title {
    font-family: var(--serif);
    font-size: 17px;
    color: #fff;
}

.feat-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* ILLUSTRATION SECTION */
.illus-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3.5rem 2rem 0;
}

.illus-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.illus-card {
    border: 1px solid var(--ink-10);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.illus-card-wide {
    border: 1px solid var(--ink-10);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    margin-bottom: 2rem;
}

.illus-body {
    padding: 1.75rem;
}

.illus-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
    display: block;
}

.illus-title {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.illus-sub {
    font-size: 13px;
    color: var(--ink-60);
    line-height: 1.6;
}

/* MAIN */
.main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.sec-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-60);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
}

.sec-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--ink-10);
}

.sec-more {
    font-size: 11px;
    color: var(--red);
    text-decoration: none;
    font-family: var(--mono);
    float: right;
    margin-top: -24px;
}

.search-wrap {
    grid-column: 1 / -1;
    background: var(--white);
    border: 1px solid var(--ink-10);
    border-radius: 8px;
    padding: 1.5rem;
}

.search-title {
    font-family: var(--serif);
    font-size: 16px;
    margin-bottom: 1rem;
    color: var(--ink);
}

.search-row {
    display: flex;
    gap: 8px;
}

.search-row input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--ink-10);
    border-radius: 4px;
    font-size: 14px;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    outline: none;
    transition: border-color 0.2s;
}

.search-row input:focus {
    border-color: var(--red);
}

.search-row input::placeholder {
    color: var(--ink-30);
}

.search-row button {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.block-card {
    background: var(--white);
    border: 1px solid var(--ink-10);
    border-radius: 8px;
    padding: 1.5rem;
}

.block-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.mkt-badge {
    font-family: var(--mono);
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 2px;
    letter-spacing: 1px;
}

.badge-hk {
    background: var(--red-light);
    color: var(--red-dark);
}

.badge-us {
    background: #e8f0fb;
    color: #1a3a7a;
}

.blk-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--ink-10);
    font-size: 13.5px;
}

.blk-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blk-name {
    color: var(--ink-60);
}

.blk-pct {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
}

.pct-up {
    color: var(--green);
}

.pct-dn {
    color: var(--red);
}

.voices-wrap {
    grid-column: 1 / -1;
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.voice-card {
    background: var(--white);
    border: 1px solid var(--ink-10);
    border-radius: 10px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.voice-stars {
    font-size: 13px;
    color: #b8860b;
    letter-spacing: 1px;
}

.voice-text {
    font-size: 13px;
    color: var(--ink-60);
    line-height: 1.7;
    flex: 1;
    font-family: var(--serif);
}

.voice-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.voice-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--red-light);
    color: var(--red-dark);
    font-size: 13px;
    font-weight: 500;
    font-family: var(--serif);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.voice-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
}

.voice-role {
    font-size: 11px;
    color: var(--ink-30);
    font-family: var(--mono);
}

.course-card {
    background: var(--white);
    border: 1px solid var(--ink-10);
    border-radius: 8px;
    padding: 1.5rem;
    min-width: 0;
}

.crs-badge {
    display: inline-block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.crs-basic {
    background: var(--red-light);
    color: var(--red-dark);
}

.crs-tech {
    background: #f0eeff;
    color: #3a2d8a;
}

.crs-trade {
    background: var(--gold-light);
    color: var(--gold);
}

.crs-fin {
    background: var(--green-light);
    color: var(--green);
}

.crs-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--ink-10);
    gap: 12px;
    cursor: pointer;
    min-width: 0;
}

.crs-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.crs-item:hover .crs-name {
    color: var(--red);
}

.crs-name {
    display: block;
    font-size: 13.5px;
    color: var(--ink-60);
    flex: 1;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.15s;
}

.crs-date {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-30);
    flex-shrink: 0;
    margin-left: auto;
}

/* PARTNERS */
.pricing-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-eyebrow::before,
.pricing-eyebrow::after {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: var(--red);
    opacity: 0.4;
}

.pricing-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.plan-card {
    background: var(--white);
    border: 1px solid var(--ink-10);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: border-color 0.2s;
}

.plan-card:hover {
    border-color: var(--ink-30);
}

.plan-card.featured {
    border: 2px solid var(--red);
}

.plan-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1px;
    padding: 3px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-name {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--ink-10);
}

.plan-currency {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--ink-60);
}

.plan-amount {
    font-family: var(--mono);
    font-size: 30px;
    font-weight: 500;
    color: var(--red);
    line-height: 1;
}

.plan-period {
    font-size: 11px;
    color: var(--ink-30);
    font-family: var(--mono);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.5rem;
    flex: 1;
}

.plan-features li {
    font-size: 13px;
    color: var(--ink-60);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.plan-features li::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    margin-top: 6px;
    opacity: 0.7;
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-decoration: none;
}

.plan-btn-fill {
    background: var(--red);
    color: #fff;
}

.plan-btn-fill:hover {
    background: var(--red-dark);
}

.plan-btn-outline {
    background: transparent;
    color: var(--red);
    border: 1px solid var(--red);
}

.plan-btn-outline:hover {
    background: var(--red-light);
}

.partners-bar {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--ink-10);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.ptn-label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-30);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.ptn-items {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.ptn-item {
    font-size: 13px;
    color: var(--ink-60);
    display: flex;
    align-items: center;
    gap: 7px;
}

.ptn-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.6;
}

/* FOOTER */
footer {
    border-top: 1px solid var(--ink-10);
    background: var(--white);
    padding: 2rem;
    margin-top: 1rem;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12.5px;
    color: var(--ink-60);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-copy {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-30);
}

.footer-disclaimer {
    max-width: 1300px;
    margin: 1rem auto 0;
    font-size: 11px;
    color: var(--ink-30);
    line-height: 1.7;
    border-top: 1px solid var(--ink-10);
    padding-top: 1.25rem;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-left {
    animation: fadeUp 0.6s ease both;
}

.hero-right {
    animation: fadeUp 0.6s 0.15s ease both;
}

.feat-item:nth-child(1) {
    animation: rise 0.5s 0.1s ease both;
}

.feat-item:nth-child(2) {
    animation: rise 0.5s 0.2s ease both;
}

.feat-item:nth-child(3) {
    animation: rise 0.5s 0.3s ease both;
}

@keyframes growBar {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.bar-anim {
    transform-origin: bottom;
    animation: growBar 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bar-anim:nth-child(3) {
    animation-delay: 0.1s;
}

.bar-anim:nth-child(4) {
    animation-delay: 0.18s;
}

.bar-anim:nth-child(5) {
    animation-delay: 0.26s;
}

.bar-anim:nth-child(6) {
    animation-delay: 0.34s;
}

.bar-anim:nth-child(7) {
    animation-delay: 0.42s;
}

.bar-anim:nth-child(8) {
    animation-delay: 0.5s;
}

.bar-anim:nth-child(9) {
    animation-delay: 0.58s;
}

.bar-anim:nth-child(10) {
    animation-delay: 0.66s;
}

@keyframes drawLine {
    from {
        stroke-dashoffset: 600;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.line-anim {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawLine 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.dot-anim {
    animation: popIn 0.3s ease both;
}

.dot-anim:nth-child(1) {
    animation-delay: 0.9s;
}

.dot-anim:nth-child(2) {
    animation-delay: 1s;
}

.dot-anim:nth-child(3) {
    animation-delay: 1.1s;
}

.dot-anim:nth-child(4) {
    animation-delay: 1.2s;
}

.dot-anim:nth-child(5) {
    animation-delay: 1.3s;
}

.dot-anim:nth-child(6) {
    animation-delay: 1.4s;
}

.dot-anim:nth-child(7) {
    animation-delay: 1.5s;
}

.dot-anim:nth-child(8) {
    animation-delay: 1.6s;
}

.mh-rphone {
    border: none;
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--ink-10);
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--sans);
    background: #c8392b;
    color: #fff;
    cursor: pointer;
}

.mh-rphone:hover {
    background-color: #8b2519;
}

/* REGISTER MODAL */
.reg-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(26, 18, 8, 0.55);
    align-items: center;
    justify-content: center;
}

.reg-overlay.open {
    display: flex;
    animation: fadeOverlay 0.2s ease both;
}

@keyframes fadeOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reg-box {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    margin: 1rem;
    overflow: hidden;
    animation: slideUp 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reg-top {
    background: var(--ink);
    padding: 2.25rem 2.25rem 2rem;
    position: relative;
}

.reg-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.reg-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.reg-eyebrow {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reg-eyebrow::before {
    content: "";
    display: block;
    width: 18px;
    height: 1px;
    background: var(--red);
}

.reg-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.4rem;
}

.reg-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.reg-body {
    padding: 1.75rem 2.25rem 2.25rem;
}

.reg-field {
    margin-bottom: 1.1rem;
    flex: 1;
    margin-right: 8px;
}



.reg-fieldcode {
    margin-bottom: 1.1rem;
    flex: 1;
    margin-right: 8px;
    display: flex;
    gap: 8px;
    position: relative;
    /* 关键：让加载动画相对于验证码定位 */
}

.reg-fieldcode input {
    height: 38px;
    flex: 1;
}

.code-img {
    cursor: pointer;
    flex: 1;
    border: 1px #e8e8e8 solid;
    border-radius: 3px;
    transition: all 0.2s;
    height: 38px;
    object-fit: cover;
}

/* ====================== 加载动画样式（集成版） ====================== */
/* 只在验证码图片上显示，不全屏！更美观 */
#codeLoader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border-radius: 3px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 50%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}






/* 加载中状态：变灰 + 不可点 */
.code-img.loading {
    opacity: 0.5;
    filter: blur(2px);
    pointer-events: none;
    /* 防止重复点击 */
    content: "加载中...";
}

.reg-label {
    display: block;
    font-size: 11px;
    font-family: var(--mono);
    letter-spacing: 1px;
    color: var(--ink-60);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.reg-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--ink-10);
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
}

.reg-input:focus {
    border-color: var(--red);
    background: var(--white);
}

.reg-input::placeholder {
    color: var(--ink-30);
}

.reg-row {
    /* display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px; */
    display: flex;
    justify-content: space-between;
}

.reg-agree {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 1.25rem;
    margin-top: 0.25rem;
}

.reg-agree input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--red);
}

.reg-agree label {
    font-size: 12px;
    color: var(--ink-60);
    line-height: 1.5;
}

.reg-agree .oooppp {
    color: var(--red);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.reg-submit {
    width: 100%;
    padding: 12px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--sans);
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.3px;
}

.reg-submit:hover {
    background: var(--red-dark);
}

.reg-login {
    text-align: center;
    margin-top: 1rem;
    font-size: 13px;
    color: var(--ink-60);
}

.reg-login a {
    color: var(--red);
    text-decoration: none;
    font-weight: 500;
}

.reg-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1.1rem 0;
}

.reg-divider::before,
.reg-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--ink-10);
}

.reg-divider span {
    font-size: 11px;
    color: var(--ink-30);
    font-family: var(--mono);
    white-space: nowrap;
}

.reg-perks {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 1rem;
}

.reg-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.reg-perk-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

.reg-input2 {
    width: 70%;
    padding: 10px 14px;
    border: 1px solid var(--ink-10);
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
}






/* 加载转圈动画 */
.loading-spin {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #ddd;
    border-top: 2px solid #666;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
}

#phone_regshow,
#email_regshow {
    margin-bottom: 0;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 固定宽度防止抖动 */
.idx-val,
.idx-chg {
    min-width: 75px;
    display: inline-block;
    text-align: right;
}


/* ============================================== */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#article-overlay {
    display: none;
}

#article-overlay.open {
    display: flex !important;
}

#article-modal::-webkit-scrollbar {
    width: 6px;
}

#article-modal::-webkit-scrollbar-thumb {
    background: rgba(26, 18, 8, 0.18);
    border-radius: 10px;
}

#article-modal::-webkit-scrollbar-track {
    background: transparent;
}

.crs-item {
    cursor: pointer;
}

#modal-content h2 {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    margin: 1.5rem 0 0.5rem;
}

#modal-content p {
    margin-bottom: 1rem;
}

#modal-content ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

#modal-content li {
    margin-bottom: 0.4rem;
}

#modal-content strong {
    color: var(--ink);
    font-weight: 500;
}

#modal-content .tip-box {
    background: var(--red-light);
    border-left: 3px solid var(--red);
    padding: 0.75rem 1rem;
    border-radius: 0 6px 6px 0;
    margin: 1rem 0;
    font-size: 14px;
    color: var(--red-dark);
}

#modal-content .about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0 2rem;
}

#modal-content .about-stats .stat {
    border-left: 2px solid var(--red);
    padding: 0.75rem 1rem;
}

#modal-content .about-stats .stat-num {
    font-family: var(--mono);
    font-size: 20px;
    font-weight: 500;
    color: var(--red);
    margin-bottom: 0.2rem;
}

#modal-content .about-stats .stat-label {
    font-size: 12px;
    color: var(--ink-30);
    line-height: 1.4;
}

@media (max-width: 600px) {
    #modal-content .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}

#modal-content .privacy-hero {
    background: var(--ink);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    margin: 0 0 1.5rem;
}

#modal-content .privacy-eyebrow {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

#modal-content .privacy-hero h1 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

#modal-content .privacy-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--mono);
}

#modal-content .privacy-section {
    margin-bottom: 1.75rem;
}

#modal-content .privacy-section h2 {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 0.9rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--ink-10);
}

#modal-content .privacy-section p {
    font-size: 14px;
    color: var(--ink-60);
    line-height: 1.85;
    margin: 0 0 0.75rem;
}

#modal-content .privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
}

#modal-content .privacy-section ul li {
    font-size: 14px;
    color: var(--ink-60);
    line-height: 1.85;
    padding: 0.3rem 0 0.3rem 1.2rem;
    position: relative;
    margin: 0;
}

#modal-content .privacy-section ul li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--red);
}

#modal-content .privacy-highlight {
    background: var(--red);
    color: #fff;
    font-family: var(--mono);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 1rem;
}

#modal-content .privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 13px;
}

#modal-content .privacy-table th {
    text-align: left;
    padding: 8px 12px;
    background: var(--ink);
    color: #fff;
    font-weight: 500;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.5px;
}

#modal-content .privacy-table td {
    padding: 9px 12px;
    border-bottom: 1px solid var(--ink-10);
    color: var(--ink-60);
    vertical-align: top;
    line-height: 1.6;
}

#modal-content .privacy-table tr:last-child td {
    border-bottom: none;
}

#modal-content .privacy-table tr:hover td {
    background: var(--white);
}

#modal-content .privacy-footer {
    border-top: 1px solid var(--ink-10);
    background: var(--white);
    padding: 1.25rem 1.25rem;
    text-align: center;
    font-size: 12px;
    color: var(--ink-30);
    font-family: var(--mono);
    /* border-radius: 10px; */
    margin-top: 1.25rem;
}



.reset-modal-mask-1433 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.reset-modal-mask-1433.show-1433 {
    opacity: 1;
    visibility: visible;
}

/* 弹窗主体 1433 */
.reset-password-modal-1433 {
    width: 100%;
    max-width: 480px;
    background: #202020;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    padding: 30px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.reset-modal-mask-1433.show-1433 .reset-password-modal-1433 {
    transform: translateY(0);
}

/* 关闭按钮 1433 */
.modal-close-1433 {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.modal-close-1433:hover {
    color: #c8392b;
}

/* 标题 1433 */
.modal-title-1433 {
    text-align: center;
    color: #c8392b;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* 选项卡 1433 */
.reset-tabs-1433 {
    display: flex;
    margin-bottom: 25px;
    background: #222;
    border-radius: 8px;
    padding: 4px;
}

.tab-item-1433 {
    flex: 1;
    padding: 6px;
    text-align: center;
    color: #999;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
}

.tab-item-1433.active-1433 {
    background: #c4382a;
    color: #f1f1f1;
    font-weight: bold;
}

/* 表单 1433 */
.reset-form-1433 {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row-1433 {
    display: flex;
    gap: 10px;
}

.form-group-1433 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-label-1433 {
    color: #ccc;
    font-size: 14px;
}

.form-input-1433 {
    padding: 10px 15px;
    background: #222;
    border: 1px solid #444;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

.form-input-1433:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.form-input-1433::placeholder {
    color: #666;
}

/* 验证码行 1433 */
.code-row-1433 {
    display: flex;
    gap: 10px;
}

.code-input-1433 {
    flex: 1;
}

.code-btn-1433 {
    width: 120px;
    padding: 10px;
    background: #333;
    color: #ffd700;
    border: 1px solid #444;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
    white-space: nowrap;
}

.code-btn-1433:disabled {
    background: #222;
    color: #666;
    cursor: not-allowed;
    border-color: #333;
}

.code-btn-1433:not(:disabled):hover {
    background: #444;
}

/* 提交按钮 1433 */
.submit-btn-1433 {
    padding: 14px;
    background: #c8392b;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.submit-btn-1433:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.submit-btn-1433:disabled {
    background: #666;
    color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 错误提示 1433 */
.error-tip-1433 {
    color: #ff4444;
    font-size: 12px;
    height: 16px;
    line-height: 16px;
}

/* 内容切换 1433 */
.reset-content-1433 {
    display: none;
}

.reset-content-1433.active-1433 {
    display: grid;
    gap: 8px;
}
.fgewre213rcca {
    display: flex;
    
}
/* ========================================================================== */
/* RESPONSIVE */
@media (max-width: 860px) {
    .user-modal-card {
        min-width: auto;
    }

    nav {
        height: auto;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding-bottom: 5px;
    }

    .lang-opt {
        padding: 8px 14px;
    }

    /* .download-btn {
        display: none !important;
      } */

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem 2.5rem;
    }

    .hero h1 {
        font-size: 32px;
    }

    .main {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .voices-wrap {
        grid-column: 1;
    }

    .voices-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }

    .features-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .illus-row {
        grid-template-columns: 1fr;
    }

    .mh-rphone {
        font-size: 14px;
        padding: 0 5px;
        min-width: 110px;
        height: 100%;
    }

    .reg-input {
        padding: 5px 14px;
    }

    .reg-field {
        margin-bottom: 5px;
    }

    .reg-agree {
        margin-bottom: 5px;
    }

    .reg-body {
        padding: 10px 20px;
    }

    .reg-top {
        padding: 10px 20px;
    }

    .reg-input2 {
        padding: 5px 14px;
    }

    .reg-title {
        font-size: 15px;
    }

    .reg-perks {
        margin-top: 5px;
    }

    .reg-divider {
        margin: 8px 0;
    }

    .reg-sub {
        font-size: 12px;
    }
}

.lkmnfenf1 {
    width: fit-content;
    font-size: 13px;
    color: #c8392b;
    margin-top: 0.5rem;
    margin-bottom: 1.1rem;
    cursor: pointer;
}

.btn1138:hover {
    color: #fff !important;
    background-color: #8b2519 !important;
}

@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .academy-grid {
        grid-template-columns: 1fr !important;
    }

    .voices-grid {
        grid-template-columns: 1fr;
    }

    /* nav {
        padding: 0 1rem;
      } */

    .hero {
        padding: 2.5rem 1rem;
    }

    .main {
        padding: 1.5rem 1rem;
    }

    .features-band {
        padding: 2.5rem 1rem;
    }

    .illus-section {
        padding: 2rem 1rem 0;
    }
}