/* 出海行动清单 */
#page-checklist { max-width: 960px; }

.cl-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%);
  border-radius: 18px;
  padding: 32px 34px;
  color: #fff;
  margin-bottom: 26px;
}
.cl-hero h1 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 10px;
}
.cl-hero p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  opacity: .85;
  max-width: 620px;
}
.cl-progress-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) calc(var(--pct, 0) * 1%), rgba(255,255,255,.15) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.cl-progress-ring::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%);
}
.cl-progress-text {
  position: relative;
  text-align: center;
}
.cl-progress-text .pct { font-size: 26px; font-weight: 800; line-height: 1; }
.cl-progress-text .label { font-size: 11px; opacity: .7; margin-top: 4px; }

.cl-stations {
  display: flex;
  gap: 10px;
  margin: 24px 0 10px;
  flex-wrap: wrap;
}
.cl-station-chip {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s;
}
.cl-station-chip:hover, .cl-station-chip.active {
  background: var(--gold);
  color: #0a1628;
  border-color: var(--gold);
}

.cl-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(10,42,94,.04), 0 6px 18px rgba(10,42,94,.05);
  overflow: hidden;
}
.cl-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
}
.cl-head:hover { background: #f8fafc; }
.cl-num {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: var(--gold);
  color: #0a1628;
  font-size: 14px;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}
.cl-info { flex: 1; }
.cl-title { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 4px; }
.cl-sub { font-size: 12px; color: var(--text3); }
.cl-arrow {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text3);
  transition: transform .25s;
}
.cl-card.open .cl-arrow { transform: rotate(180deg); }
.cl-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.cl-card.open .cl-body { max-height: 2200px; }
.cl-inner { padding: 4px 24px 26px; }

.cl-row {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #f1f5f9;
}
.cl-row:last-child { border-bottom: none; }
.cl-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(201,166,64,.1);
  color: #8a6d28;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.cl-main { flex: 1; }
.cl-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  transition: color .2s, text-decoration .2s;
}
.cl-row.checked .cl-item-title {
  color: var(--text2);
  text-decoration: line-through;
}
.cl-points {
  margin: 0 0 10px;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.75;
}
.cl-points li { margin: 4px 0; }
.cl-tools {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cl-tool {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 5px 11px;
  border-radius: 7px;
  text-decoration: none;
  transition: .2s;
}
.cl-tool:hover { background: rgba(201,166,64,.12); border-color: rgba(201,166,64,.3); }

.cl-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.cl-done-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: var(--text3);
  cursor: pointer;
  transition: .2s;
}
.cl-done-btn:hover { border-color: var(--gold); color: var(--navy); }
.cl-done-btn.completed {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a1628;
}

.cl-foot {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 26px;
  text-align: center;
  margin: 24px 0 10px;
}
.cl-foot h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.cl-foot p { font-size: 13px; color: var(--text2); margin: 0 0 18px; }
.cl-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.cl-btn.primary { background: var(--navy); color: #fff; }
.cl-btn.secondary { background: #f8fafc; color: var(--navy); border: 1px solid #e2e8f0; }
.cl-btn.ghost { background: none; color: var(--text3); font-size: 12px; }

@media print {
  .cl-card { break-inside: avoid; }
  .cl-card .cl-body { max-height: none !important; }
  .cl-hero { background: #0a1628 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .cl-station-chip, .cl-actions .ghost, .back-btn { display: none; }
}
