/* ============================================================
   download.css — 下载页专属样式
   ============================================================ */

/* ── 大字背景文字 ────────────────────────────────────────── */
.giant-text {
    font-size: 18vw;
    line-height: 0.8;
    letter-spacing: -0.06em;
    color: #111111;
}

/* ── 平台 Tab 切换栏 ─────────────────────────────────────── */
.platform-tab { transition: all 0.2s ease; }

.platform-tab.active {
    background-color: #111111;
    color: #ffffff;
}

.platform-tab:not(.active):hover {
    background-color: #f1f3f4;
}

/* ── 平台内容面板 ────────────────────────────────────────── */
.platform-panel        { display: none; }
.platform-panel.active { display: block; }

/* ── 客户端卡片悬浮 ──────────────────────────────────────── */
.client-card { transition: all 0.25s ease; }

.client-card:hover { transform: translateY(-3px); }

/* ── 主下载按钮脉冲效果 ──────────────────────────────────── */
@keyframes subtle-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(26, 115, 232, 0); }
    50%       { box-shadow: 0 0 0 6px rgba(26, 115, 232, 0.1); }
}

.btn-pulse { animation: subtle-pulse 3s ease-in-out infinite; }

/* ── 步骤连接线 ──────────────────────────────────────────── */
.step-line::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: -20px;
    width: 1px;
    background: linear-gradient(to bottom, #e5e7eb, transparent);
}

/* ── Sticky Tab 栏（毛玻璃效果） ─────────────────────────── */
.sticky-tabs {
    position: sticky;
    top: 64px; /* mobile nav height (h-16) */
    z-index: 40;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #f1f3f4;
}

@media (min-width: 768px) {
    .sticky-tabs { top: 80px; } /* desktop nav height (h-20) */
}

/* ── 格式徽章 ────────────────────────────────────────────── */
.format-chip {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.05em;
}
