/* ==========================================================================
   Clash Verge 官方网站 - 更新日志时间轴风 / 版本迭代与开源发布中心 (Changelog & Version Timeline Theme)
   ========================================================================== */

:root {
  --bg-page: #090d16;
  --bg-card: #131b2e;
  --bg-card-hover: #1b2640;
  --bg-subtle: #0c1220;
  --bg-header: rgba(9, 13, 22, 0.95);
  --bg-timeline-step: #162238;
  --bg-badge: rgba(56, 189, 248, 0.12);
  
  --border-subtle: #22304a;
  --border-strong: #334668;
  --border-timeline: #38bdf8;
  --border-cyan: #38bdf8;
  --border-emerald: #10b981;
  --border-indigo: #818cf8;
  --border-purple: #c084fc;
  
  --text-main: #f1f5f9;
  --text-sub: #94a3b8;
  --text-dim: #64748b;
  --text-link: #38bdf8;
  
  --color-cyan: #38bdf8;
  --color-emerald: #10b981;
  --color-indigo: #818cf8;
  --color-purple: #c084fc;
  --color-amber: #f59e0b;
  
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "JetBrains Mono", monospace;
  
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --max-w: 1200px;
  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.75);
  --shadow-glow: 0 0 28px rgba(56, 189, 248, 0.28);
  --shadow-timeline: 0 0 35px rgba(129, 140, 248, 0.25);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-main);
  background-color: var(--bg-page);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-page);
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(56, 189, 248, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 25%, rgba(192, 132, 252, 0.08) 0%, transparent 45%),
    linear-gradient(180deg, #090d16 0%, #05080e 100%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* 顶部发布更新通知条 */
.release-top-bar {
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.45rem 0;
  font-size: 0.82rem;
  color: var(--text-sub);
}

.release-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.release-badges-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
}

.release-pill {
  font-size: 0.72rem;
  padding: 0.12rem 0.6rem;
  border-radius: var(--radius-xs);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.release-pill.cyan {
  background: rgba(56, 189, 248, 0.14);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.release-pill.emerald {
  background: rgba(16, 185, 129, 0.14);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.release-pill.purple {
  background: rgba(192, 132, 252, 0.14);
  color: #c084fc;
  border: 1px solid rgba(192, 132, 252, 0.35);
}

/* 顶部导航 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.05rem;
  box-shadow: 0 2px 10px rgba(56, 189, 248, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-sub);
  padding: 0.35rem 0.2rem;
  position: relative;
}

.nav-item:hover,
.nav-item.active {
  color: #ffffff;
}

.nav-item.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #38bdf8;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.8);
}

.nav-btn-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mobile-toggle {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  font-size: 1.1rem;
}

/* 按钮规范 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.72rem 1.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 50%, #38bdf8 100%);
  color: #ffffff;
  border: 1px solid rgba(125, 211, 252, 0.35);
  box-shadow: 0 2px 14px rgba(56, 189, 248, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 50%, #0ea5e9 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.45);
}

.btn-secondary {
  background: #131b2e;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: #1e2d4d;
  border-color: var(--border-strong);
  color: #ffffff;
}

.btn-sm {
  padding: 0.4rem 0.95rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 0.9rem 2.25rem;
  font-size: 1.02rem;
}

/* Hero 首屏 (更新日志时间轴风) */
.hero-section {
  padding: 4.8rem 0 3.8rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-version-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 0.3rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: #38bdf8;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
}

.hero-heading {
  font-size: 3.35rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.hero-heading .gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-sub);
  margin-bottom: 1.85rem;
}

.hero-desc strong {
  color: #ffffff;
}

/* 时间轴首屏速览卡片 (Hero Timeline Highlights) */
.hero-timeline-hub {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.85rem;
  border-left: 3px solid #38bdf8;
}

.hero-timeline-node {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
}

.node-tag {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.12rem 0.55rem;
  border-radius: var(--radius-xs);
  font-family: var(--font-mono);
  flex-shrink: 0;
  margin-top: 2px;
}

.node-tag.release {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.4);
}

.node-tag.meta {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.node-tag.tun {
  background: rgba(192, 132, 252, 0.15);
  color: #c084fc;
  border: 1px solid rgba(192, 132, 252, 0.4);
}

.node-text {
  color: var(--text-sub);
  line-height: 1.5;
}

.node-text strong {
  color: #ffffff;
}

/* 时间轴视窗卡片 */
.timeline-window-frame {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
  transition: var(--transition);
}

.timeline-window-frame:hover {
  border-color: var(--border-cyan);
  transform: translateY(-3px);
}

.timeline-window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.15rem;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-sub);
  font-family: var(--font-mono);
}

.timeline-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #10b981;
  font-weight: 600;
  font-size: 0.75rem;
}

.timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.7);
}

/* 数据背书区 */
.endorsement-section {
  padding: 2.75rem 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.25rem;
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  border-color: var(--border-cyan);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.stat-val {
  font-size: 2.15rem;
  font-weight: 900;
  background: linear-gradient(135deg, #38bdf8 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
  font-family: var(--font-mono);
}

.stat-tit {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.stat-inf {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* 常用 Section 结构 */
.section {
  padding: 4.8rem 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.25rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-xs);
  margin-bottom: 0.85rem;
  font-family: var(--font-mono);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 0.85rem;
}

.section-desc {
  font-size: 1.02rem;
  color: var(--text-sub);
  line-height: 1.7;
}

/* 核心能力卡片网格 */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-cyan);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #38bdf8;
}

.feature-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
}

.feature-text {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.7;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

.chip {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-xs);
  background: var(--bg-subtle);
  color: var(--text-sub);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
}

/* 图文展示区 */
.showcase-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.showcase-row.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.showcase-content h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.15rem;
  line-height: 1.3;
}

.showcase-content p {
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 1.65rem;
  font-size: 0.98rem;
}

.sec-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.sec-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.sec-check-item svg {
  color: #38bdf8;
  flex-shrink: 0;
  margin-top: 4px;
}

/* 时间轴列表容器 (Changelog Timeline Track) */
.timeline-track {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding-left: 2.5rem;
}

.timeline-track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 11px;
  width: 2px;
  background: linear-gradient(180deg, #38bdf8 0%, #818cf8 50%, #22304a 100%);
}

.timeline-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.85rem;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.timeline-card:hover {
  border-color: var(--border-cyan);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 2rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #38bdf8;
  border: 3px solid #090d16;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
  margin-left: 5px;
}

.timeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.timeline-ver-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ver-tag {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-mono);
}

.ver-status {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-xs);
  font-family: var(--font-mono);
}

.ver-status.current {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.4);
}

.ver-status.lts {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.ver-date {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.timeline-body ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-sub);
}

.timeline-body li {
  position: relative;
  padding-left: 1.25rem;
}

.timeline-body li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #38bdf8;
  font-weight: bold;
}

/* 平台支持区 */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.75rem 1.15rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  transition: var(--transition);
}

.platform-card:hover {
  border-color: var(--border-cyan);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.platform-icon {
  font-size: 2rem;
}

.platform-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.platform-meta {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.platform-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-xs);
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.4);
  font-family: var(--font-mono);
}

/* FAQ 常见问题区 */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  max-width: 1040px;
  margin: 0 auto;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.75rem;
  transition: var(--transition);
}

.faq-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}

.faq-q {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-q .q-tag {
  color: #38bdf8;
  font-weight: 800;
  font-family: var(--font-mono);
}

.faq-a {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.7;
}

/* 底部 CTA 横幅 */
.timeline-cta-banner {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-top: 3px solid #38bdf8;
}

.cta-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.95rem;
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--text-sub);
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* 内页 Hero 头部 */
.page-hero {
  padding: 4.25rem 0 3.5rem;
  text-align: center;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero h1 {
  font-size: 2.75rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.95rem;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-sub);
  max-width: 740px;
  margin: 0 auto 1.65rem;
}

/* 教程步骤卡片 */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  max-width: 920px;
  margin: 0 auto;
}

.step-box {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 2.25rem;
  transition: var(--transition);
  border-left: 3px solid #38bdf8;
}

.step-box:hover {
  border-color: var(--border-strong);
  border-left: 3px solid #10b981;
  background: var(--bg-card-hover);
}

.step-idx {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: #162238;
  border: 1px solid var(--border-subtle);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  font-weight: 900;
  font-family: var(--font-mono);
}

.step-main h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.85rem;
}

.step-main p {
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.step-pic-box {
  margin-top: 1.25rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

/* 下载卡片矩阵 */
.dl-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.dl-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  border-top: 3px solid var(--border-strong);
}

.dl-card.featured {
  border-color: #38bdf8;
  border-top: 3px solid #38bdf8;
  box-shadow: var(--shadow-glow);
}

.dl-hot-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-xs);
  font-family: var(--font-mono);
}

.dl-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.35rem;
}

.dl-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  font-size: 1.5rem;
}

.dl-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.dl-card-sub {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.dl-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.65rem;
  flex-grow: 1;
}

.dl-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.95rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  font-size: 0.85rem;
  font-family: var(--font-mono);
}

.dl-spec-k {
  color: var(--text-sub);
}

.dl-spec-v {
  color: #ffffff;
  font-weight: 600;
}

.dl-btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* 对比表格 */
.table-responsive-box {
  width: 100%;
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.client-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.client-compare-table th,
.client-compare-table td {
  padding: 1.25rem 1.65rem;
  border-bottom: 1px solid var(--border-subtle);
}

.client-compare-table th {
  background: var(--bg-subtle);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.client-compare-table tr:last-child td {
  border-bottom: none;
}

.client-compare-table tr:hover td {
  background: var(--bg-card-hover);
}

/* 页脚 */
.site-footer {
  margin-top: auto;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  padding: 4.25rem 0 2.25rem;
  color: var(--text-sub);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3.25rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.footer-brand p {
  color: var(--text-dim);
  line-height: 1.65;
  font-size: 0.85rem;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.footer-links a {
  color: var(--text-dim);
}

.footer-links a:hover {
  color: var(--text-link);
}

.footer-bottom {
  padding-top: 1.85rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* 响应式适配 */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.75rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(3, 1fr); }
  .dl-matrix-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #090d16;
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    gap: 1rem;
  }
  .nav-links.active { display: flex; }
  .hero-heading { font-size: 2.4rem; }
  .features-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .dl-matrix-grid { grid-template-columns: 1fr; }
  .showcase-row, .showcase-row.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .step-box { grid-template-columns: 1fr; gap: 1.25rem; }
  .timeline-track { padding-left: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
