/* ===== 基础变量和重置 ===== */
:root {
  --primary: #2563eb;
  --primary-light: #dbeafe;
  --success: #16a34a;
  --success-light: #dcfce7;
  --warning: #d97706;
  --warning-light: #fef3c7;
  --danger: #dc2626;
  --danger-light: #fee2e2;
  --info: #0891b2;
  --info-light: #cffafe;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: var(--gray-50);
  color: var(--gray-900);
  line-height: 1.6;
}

/* ===== 头部 ===== */
.header {
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  color: white;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.project-title { font-size: 20px; font-weight: 700; }
.project-code { font-size: 12px; opacity: 0.8; margin-left: 12px; }
.header-right { display: flex; align-items: center; gap: 16px; }
.phase-badge {
  background: rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
}
.update-time { font-size: 12px; opacity: 0.7; }

/* ===== 标签页 ===== */
.tabs {
  display: flex;
  background: white;
  padding: 0 24px;
  border-bottom: 1px solid var(--gray-200);
  overflow-x: auto;
}
.tab {
  padding: 12px 20px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--gray-500);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
}
.tab:hover { color: var(--primary); }
.tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}

/* ===== 内容区域 ===== */
.tab-content { display: none; padding: 20px 24px; }
.tab-content.active { display: block; }

/* ===== KPI卡片 ===== */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.kpi-card {
  background: white;
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}
.kpi-icon { font-size: 28px; }
.kpi-value { font-size: 22px; font-weight: 700; display: block; }
.kpi-label { font-size: 12px; color: var(--gray-500); }
.kpi-danger { color: var(--danger); }
.kpi-warning { color: var(--warning); }

/* ===== 概览网格 ===== */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

/* ===== 卡片 ===== */
.card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.card h3 { font-size: 15px; margin-bottom: 12px; color: var(--gray-700); }
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.card-header h3 { margin-bottom: 0; }
.card-actions { display: flex; gap: 8px; }
.hint { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }

/* ===== 进度条 ===== */
.progress-bar-container {
  background: var(--gray-200);
  border-radius: 10px;
  height: 20px;
  margin: 8px 0;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  border-radius: 10px;
  background: var(--success);
  color: white;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.5s;
}
.progress-blue { background: var(--primary); }

/* ===== 徽章 ===== */
.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 6px;
}
.badge-success { background: var(--success-light); color: var(--success); }
.badge-danger { background: var(--danger-light); color: var(--danger); }
.badge-warning { background: var(--warning-light); color: var(--warning); }
.badge-info { background: var(--info-light); color: var(--info); }
.badge-secondary { background: var(--gray-100); color: var(--gray-500); }
.status-summary { margin-top: 8px; }

/* ===== 迷你列表 ===== */
.mini-list { margin-top: 8px; }
.mini-item {
  padding: 6px 10px;
  background: var(--danger-light);
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--danger);
}

/* ===== 表格 ===== */
.table-responsive { overflow-x: auto; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.data-table th {
  background: var(--gray-50);
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 2px solid var(--gray-200);
  white-space: nowrap;
}
.data-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.data-table tr:hover { background: var(--gray-50); }
.data-table .status-cell { white-space: nowrap; }

/* ===== 按钮 ===== */
.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}
.btn-primary:hover { background: #1d4ed8; }
.btn-secondary {
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}
.btn-sm { padding: 4px 12px; font-size: 12px; }
.btn-icon {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 2px 6px;
}
select {
  padding: 6px 12px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 13px;
  background: white;
}

/* ===== 看板 ===== */
.kanban-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.kanban-col { min-width: 0; }
.kanban-header {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}
.kanban-header span {
  background: rgba(255,255,255,0.5);
  padding: 1px 8px;
  border-radius: 10px;
  margin-left: 6px;
  font-size: 12px;
}
.kanban-todo { background: var(--gray-200); color: var(--gray-700); }
.kanban-doing { background: var(--info-light); color: var(--info); }
.kanban-done { background: var(--success-light); color: var(--success); }
.kanban-items { display: flex; flex-direction: column; gap: 6px; }
.kanban-item {
  padding: 8px 10px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-size: 12px;
}
.kanban-item-name { font-weight: 500; margin-bottom: 2px; }
.kanban-item-meta { color: var(--gray-500); font-size: 11px; }
.kanban-item-progress {
  height: 3px;
  background: var(--gray-200);
  border-radius: 2px;
  margin-top: 4px;
}
.kanban-item-progress-bar {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
}

/* ===== 风险卡片 ===== */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 12px;
}
.risk-card {
  border-radius: 8px;
  padding: 14px;
  border-left: 4px solid;
}
.risk-high { background: var(--danger-light); border-color: var(--danger); }
.risk-medium { background: var(--warning-light); border-color: var(--warning); }
.risk-low { background: var(--info-light); border-color: var(--info); }
.risk-title { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.risk-desc { font-size: 13px; color: var(--gray-700); margin-bottom: 6px; }
.risk-action { font-size: 12px; color: var(--primary); font-weight: 500; }
.risk-level {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 4px;
}
.risk-high .risk-level { background: var(--danger); color: white; }
.risk-medium .risk-level { background: var(--warning); color: white; }
.risk-low .risk-level { background: var(--info); color: white; }

/* ===== 待办事项 ===== */
.action-item {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.action-item:hover { background: var(--gray-50); }
.action-item.urgent { border-left: 4px solid var(--danger); }
.action-item.normal { border-left: 4px solid var(--primary); }
.action-item.done { border-left: 4px solid var(--success); opacity: 0.6; }
.action-info { flex: 1; }
.action-title { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.action-desc { font-size: 13px; color: var(--gray-500); }
.action-meta { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.action-controls { display: flex; gap: 6px; }

/* ===== 时间线 ===== */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item {
  position: relative;
  padding-bottom: 20px;
}
.timeline-dot {
  position: absolute;
  left: -25px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--gray-300);
}
.timeline-dot.done { background: var(--success); box-shadow: 0 0 0 2px var(--success); }
.timeline-dot.current { background: var(--primary); box-shadow: 0 0 0 2px var(--primary); animation: pulse 2s infinite; }
.timeline-dot.future { background: var(--gray-300); }
.timeline-dot.overdue { background: var(--danger); box-shadow: 0 0 0 2px var(--danger); }
.timeline-date { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.timeline-title { font-size: 14px; margin-top: 2px; }
.timeline-desc { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--primary); }
  50% { box-shadow: 0 0 0 6px rgba(37,99,235,0.2); }
}

/* ===== 模态框 ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.modal.active { display: flex; }
.modal-content {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
}
.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--gray-500);
}
.modal-body { padding: 20px; }
.modal-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* ===== 周报内容 ===== */
.report-text {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 16px;
  font-size: 13px;
  line-height: 1.8;
  white-space: pre-wrap;
  font-family: 'Microsoft YaHei', sans-serif;
}

/* ===== 研发图表 ===== */
.dev-chart { display: flex; gap: 8px; margin-bottom: 8px; height: 24px; border-radius: 4px; overflow: hidden; }
.dev-chart-bar { height: 100%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: white; font-weight: 600; }
.dev-chart-done { background: var(--success); }
.dev-chart-doing { background: var(--primary); }
.dev-chart-todo { background: var(--gray-300); }

/* ===== 编辑表单 ===== */
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 13px;
}
.form-group textarea { min-height: 60px; resize: vertical; }

/* ===== 响应式 ===== */
@media (max-width: 768px) {
  .header { flex-direction: column; gap: 8px; align-items: flex-start; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .overview-grid { grid-template-columns: 1fr; }
  .kanban-summary { grid-template-columns: 1fr; }
  .risk-grid { grid-template-columns: 1fr; }
  .tabs { padding: 0 12px; }
  .tab { padding: 10px 14px; font-size: 13px; }
}

/* ===== 系统架构视图 ===== */
.arch-container { margin-bottom: 16px; }
.arch-layer {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 4px;
}
.arch-layer-5 { background: #f0f9ff; border-color: #bae6fd; }
.arch-layer-4 { background: #f0fdf4; border-color: #bbf7d0; }
.arch-layer-3 { background: #fefce8; border-color: #fde68a; }
.arch-layer-2 { background: #fdf4ff; border-color: #f5d0fe; }
.arch-layer-1 { background: #fef2f2; border-color: #fecaca; }
.arch-layer-title { font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--gray-700); }
.arch-modules { display: flex; flex-wrap: wrap; gap: 6px; }
.arch-mod {
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  background: white;
  border: 1px solid var(--gray-200);
  text-align: center;
}
.arch-mod small { display: block; font-size: 10px; color: var(--gray-500); font-weight: 400; }
.arch-mod-blue { background: #dbeafe; border-color: #93c5fd; color: #1e40af; }
.arch-mod-green { background: #dcfce7; border-color: #86efac; color: #166534; }
.arch-mod-orange { background: #fff7ed; border-color: #fdba74; color: #9a3412; }
.arch-mod-red { background: #fee2e2; border-color: #fca5a5; color: #991b1b; }
.arch-mod-gray { background: #f3f4f6; border-color: #d1d5db; color: #374151; }
.arch-arrow {
  text-align: center;
  font-size: 11px;
  color: var(--gray-500);
  padding: 4px 0;
  font-family: var(--mono);
}
.arch-split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.arch-subtitle { font-size: 12px; font-weight: 600; margin-bottom: 6px; color: var(--gray-700); }
.arch-modules-sm { display: flex; flex-wrap: wrap; gap: 4px; }
.arch-mod-sm {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  background: white;
  border: 1px solid var(--gray-200);
  text-align: center;
}
.arch-mod-sm small { display: block; font-size: 9px; color: var(--gray-500); }
.arch-flow { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.arch-flow-step {
  padding: 6px 10px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-size: 12px;
  text-align: center;
}
.arch-flow-step small { font-size: 10px; color: var(--gray-500); }
.arch-flow-arrow { font-size: 16px; color: var(--gray-400); font-weight: 700; }

/* 数据流卡片 */
.dataflow-grid { display: flex; flex-direction: column; gap: 10px; }
.dataflow-card {
  border-radius: 8px;
  padding: 12px;
  border-left: 4px solid;
}
.dataflow-title { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.dataflow-path { font-size: 12px; color: var(--gray-700); line-height: 1.6; }
.dataflow-blue { background: #eff6ff; border-color: var(--primary); }
.dataflow-red { background: #fef2f2; border-color: var(--danger); }
.dataflow-green { background: #f0fdf4; border-color: var(--success); }

/* 数据库网格 */
.db-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 8px; }
.db-item {
  padding: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-size: 13px;
}
.db-item small { color: var(--gray-500); font-size: 11px; }

/* 关键路径 */
.critical-path { display: flex; flex-direction: column; gap: 10px; }
.cp-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cp-node {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  min-width: 100px;
}
.cp-node small { display: block; font-size: 10px; font-weight: 400; }
.cp-arrow { font-size: 18px; color: var(--gray-400); font-weight: 700; }
.cp-high { background: var(--danger-light); color: var(--danger); border: 1px solid #fca5a5; }
.cp-medium { background: var(--warning-light); color: var(--warning); border: 1px solid #fde68a; }
.cp-low { background: var(--success-light); color: var(--success); border: 1px solid #86efac; }
.cp-legend { display: flex; gap: 16px; margin-top: 12px; font-size: 12px; }
.cp-legend-item { display: flex; align-items: center; gap: 4px; }
.cp-legend-item::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.cp-legend-item.cp-high::before { background: var(--danger-light); border: 1px solid #fca5a5; }
.cp-legend-item.cp-medium::before { background: var(--warning-light); border: 1px solid #fde68a; }
.cp-legend-item.cp-low::before { background: var(--success-light); border: 1px solid #86efac; }

/* 拓扑图 */
.topo-container { width: 100%; overflow-x: auto; padding: 8px 0; }
.topo-container svg { display: block; margin: 0 auto; max-width: 100%; height: auto; }
.topo-subtitle { font-size: 13px; color: var(--gray-500); margin-bottom: 8px; text-align: center; }

:root {
  --text: #6b6375;
  --text-h: #08060d;
  --bg: #fff;
  --border: #e5e4e7;
  --code-bg: #f4f3ec;
  --accent: #aa3bff;
  --accent-bg: rgba(170, 59, 255, 0.1);
  --accent-border: rgba(170, 59, 255, 0.5);
  --social-bg: rgba(244, 243, 236, 0.5);
  --shadow:
    rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px;

  --sans: system-ui, 'Segoe UI', Roboto, sans-serif;
  --heading: system-ui, 'Segoe UI', Roboto, sans-serif;
  --mono: ui-monospace, Consolas, monospace;

  font: 18px/145% var(--sans);
  letter-spacing: 0.18px;
  color-scheme: light dark;
  color: var(--text);
  background: var(--bg);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  @media (max-width: 1024px) {
    font-size: 16px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #9ca3af;
    --text-h: #f3f4f6;
    --bg: #16171d;
    --border: #2e303a;
    --code-bg: #1f2028;
    --accent: #c084fc;
    --accent-bg: rgba(192, 132, 252, 0.15);
    --accent-border: rgba(192, 132, 252, 0.5);
    --social-bg: rgba(47, 48, 58, 0.5);
    --shadow:
      rgba(0, 0, 0, 0.4) 0 10px 15px -3px, rgba(0, 0, 0, 0.25) 0 4px 6px -2px;
  }

  #social .button-icon {
    filter: invert(1) brightness(2);
  }
}

body {
  margin: 0;
}

h1,
h2 {
  font-family: var(--heading);
  font-weight: 500;
  color: var(--text-h);
}

h1 {
  font-size: 56px;
  letter-spacing: -1.68px;
  margin: 32px 0;
  @media (max-width: 1024px) {
    font-size: 36px;
    margin: 20px 0;
  }
}
h2 {
  font-size: 24px;
  line-height: 118%;
  letter-spacing: -0.24px;
  margin: 0 0 8px;
  @media (max-width: 1024px) {
    font-size: 20px;
  }
}
p {
  margin: 0;
}

code,
.counter {
  font-family: var(--mono);
  display: inline-flex;
  border-radius: 4px;
  color: var(--text-h);
}

code {
  font-size: 15px;
  line-height: 135%;
  padding: 4px 8px;
  background: var(--code-bg);
}

.counter {
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--accent);
  background: var(--accent-bg);
  border: 2px solid transparent;
  transition: border-color 0.3s;
  margin-bottom: 24px;

  &:hover {
    border-color: var(--accent-border);
  }
  &:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
}

.hero {
  position: relative;

  .base,
  .framework,
  .vite {
    inset-inline: 0;
    margin: 0 auto;
  }

  .base {
    width: 170px;
    position: relative;
    z-index: 0;
  }

  .framework,
  .vite {
    position: absolute;
  }

  .framework {
    z-index: 1;
    top: 34px;
    height: 28px;
    transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg)
      scale(1.4);
  }

  .vite {
    z-index: 0;
    top: 107px;
    height: 26px;
    width: auto;
    transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg)
      scale(0.8);
  }
}

#app {
  width: 1126px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  border-inline: 1px solid var(--border);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

#center {
  display: flex;
  flex-direction: column;
  gap: 25px;
  place-content: center;
  place-items: center;
  flex-grow: 1;

  @media (max-width: 1024px) {
    padding: 32px 20px 24px;
    gap: 18px;
  }
}

#next-steps {
  display: flex;
  border-top: 1px solid var(--border);
  text-align: left;

  & > div {
    flex: 1 1 0;
    padding: 32px;
    @media (max-width: 1024px) {
      padding: 24px 20px;
    }
  }

  .icon {
    margin-bottom: 16px;
    width: 22px;
    height: 22px;
  }

  @media (max-width: 1024px) {
    flex-direction: column;
    text-align: center;
  }
}

#docs {
  border-right: 1px solid var(--border);

  @media (max-width: 1024px) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

#next-steps ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 8px;
  margin: 32px 0 0;

  .logo {
    height: 18px;
  }

  a {
    color: var(--text-h);
    font-size: 16px;
    border-radius: 6px;
    background: var(--social-bg);
    display: flex;
    padding: 6px 12px;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: box-shadow 0.3s;

    &:hover {
      box-shadow: var(--shadow);
    }
    .button-icon {
      height: 18px;
      width: 18px;
    }
  }

  @media (max-width: 1024px) {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;

    li {
      flex: 1 1 calc(50% - 8px);
    }

    a {
      width: 100%;
      justify-content: center;
      box-sizing: border-box;
    }
  }
}

#spacer {
  height: 88px;
  border-top: 1px solid var(--border);
  @media (max-width: 1024px) {
    height: 48px;
  }
}

.ticks {
  position: relative;
  width: 100%;

  &::before,
  &::after {
    content: '';
    position: absolute;
    top: -4.5px;
    border: 5px solid transparent;
  }

  &::before {
    left: 0;
    border-left-color: var(--border);
  }
  &::after {
    right: 0;
    border-right-color: var(--border);
  }
}
