/* verge-rev.css - Clash Verge Rev 专属样式 (紫色基调) */

.verge-hero {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 70px 20px 30px;
}

.verge-hero .badge {
    display: inline-block;
    background: #f5f3ff;
    color: #7c3aed;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid #ddd6fe;
    margin-bottom: 22px;
}

.verge-hero h1 {
    font-size: 2.5rem;
    color: #0f0a2e;
    line-height: 1.35;
    margin-bottom: 22px;
    font-weight: 800;
    letter-spacing: -0.6px;
}

.verge-hero .hero-desc {
    font-size: 1.06rem;
    color: #475569;
    max-width: 780px;
    margin: 0 auto 32px;
    text-align: justify;
    text-indent: 2em;
    line-height: 1.75;
}

.verge-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* 界面示意图 */
.hero-visual {
    margin-top: 20px;
}

.ui-mockup {
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    border-radius: 14px;
    padding: 20px 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    background: #7c3aed;
    border-radius: 50%;
}

.mockup-line {
    width: 60px;
    height: 4px;
    background: #c4b5fd;
    border-radius: 4px;
}

.mockup-line.short {
    width: 40px;
}

.mockup-caption {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 10px;
    text-indent: 0;
}

/* 界面亮点网格 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 28px 0;
}

.feature-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-item:hover {
    border-color: #ddd6fe;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.feature-item strong {
    display: block;
    font-size: 1rem;
    color: #0f0a2e;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.9rem;
    color: #475569;
    text-indent: 0;
    margin: 0;
}

/* 重构对比表格 */
.rev-compare-table {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.rev-compare-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.94rem;
}

.rev-compare-table thead {
    background: #f5f3ff;
}

.rev-compare-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    color: #0f0a2e;
}

.rev-compare-table td {
    padding: 12px 16px;
    border-top: 1px solid #f1f5f9;
    color: #334155;
}

.rev-compare-table tbody tr:hover {
    background: #faf9ff;
}

/* 三卡片布局 */
.trio-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 28px 0;
}

.trio-card {
    background: #faf9ff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 26px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.trio-card:hover {
    border-color: #ddd6fe;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.trio-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
}

.trio-card h3 {
    font-size: 1.15rem;
    color: #0f0a2e;
    margin-bottom: 12px;
    font-weight: 600;
}

.trio-card p {
    text-indent: 0;
    font-size: 0.92rem;
    color: #475569;
    margin: 0;
}

/* 系统徽章 */
.os-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.os-badges span {
    background: #f5f3ff;
    color: #4c1d95;
    border: 1px solid #ddd6fe;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* 步骤列表 */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}

.step-indicator {
    width: 32px;
    height: 32px;
    background: #7c3aed;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step h4 {
    font-size: 1.05rem;
    color: #0f0a2e;
    margin-bottom: 6px;
}

.step p {
    text-indent: 0;
    font-size: 0.94rem;
    color: #475569;
    margin: 0;
}

/* 版本时间线 */
.timeline-verge {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.tl-item {
    border-left: 3px solid #7c3aed;
    padding-left: 18px;
    position: relative;
}

.tl-item::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: #7c3aed;
    border-radius: 50%;
}

.tl-version {
    font-weight: 700;
    color: #7c3aed;
    background: #f5f3ff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-right: 12px;
}

.tl-date {
    color: #64748b;
    font-size: 0.85rem;
}

.tl-item p {
    margin-top: 8px;
    text-indent: 0;
    font-size: 0.92rem;
    color: #334155;
    margin-bottom: 0;
}

/* 信任徽章 */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.trust-badges span {
    background: #ede9fe;
    color: #4c1d95;
    border: 1px solid #c4b5fd;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* 响应式 */
@media (max-width: 768px) {
    .verge-hero h1 {
        font-size: 1.8rem;
    }
    .feature-grid,
    .trio-cards {
        grid-template-columns: 1fr;
    }
    .rev-compare-table table {
        font-size: 0.82rem;
    }
}