/* Checklist page */
.cb-checklist {
  max-width: 880px; margin: 0 auto;
}
.cb-checklist__progress {
  background: var(--cb-onyx); color: var(--cb-bone);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  position: sticky; top: 88px; z-index: 10;
  box-shadow: var(--shadow-lg);
}
.cb-checklist__progress__bar {
  height: 10px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  margin-bottom: 12px;
}
.cb-checklist__progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cb-magenta), var(--cb-acid));
  transition: width .4s var(--ease-out);
}
.cb-checklist__progress__copy {
  display: flex; justify-content: space-between; align-items: baseline;
}
.cb-checklist__progress__copy strong {
  font-family: var(--font-display); font-size: 32px; color: var(--cb-acid);
  letter-spacing: 0; line-height: 1; margin-right: 8px;
}
.cb-checklist__progress__copy small { color: #B8B3A8; font-size: 13px; }
.cb-checklist__progress__done {
  background: var(--cb-acid); color: var(--cb-onyx);
  padding: 6px 14px; border-radius: 999px;
  font-weight: 700; font-size: 13px; letter-spacing: .02em;
}

.cb-checklist__section { margin-bottom: 32px; }
.cb-checklist__section h3 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 28px; line-height: 1; letter-spacing: 0;
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cb-onyx);
}
.cb-checklist__section h3 small {
  margin-left: auto;
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: .08em; color: var(--fg-3);
  padding: 4px 10px; background: var(--cb-paper); border-radius: 999px;
}
.cb-checklist__section__icon { font-size: 28px; line-height: 1; }

.cb-checklist__section ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.cb-checklist__section li {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px;
  align-items: start;
  padding: 16px 18px;
  background: white;
  border: 1px solid var(--cb-warm-line);
  border-radius: 8px;
  transition: all .15s;
}
.cb-checklist__section li.is-checked {
  background: rgba(216,255,61,.1);
  border-color: rgba(216,255,61,.4);
}
.cb-checklist__section li.is-checked .cb-checklist__text {
  color: var(--fg-3); text-decoration: line-through;
}

.cb-checklist__check {
  background: none; border: none; padding: 2px 0; cursor: pointer;
}
.cb-checklist__check__box {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border: 2px solid var(--cb-warm-line);
  border-radius: 6px;
  background: white;
  font-size: 15px; font-weight: 700; color: white;
  transition: all .15s;
}
.cb-checklist__section li.is-checked .cb-checklist__check__box {
  background: var(--cb-onyx); border-color: var(--cb-onyx);
}

.cb-checklist__body { cursor: pointer; padding-top: 3px; }
.cb-checklist__text { font-size: 15px; font-weight: 600; line-height: 1.4; }
.cb-checklist__detail {
  margin-top: 6px; font-size: 14px; color: var(--fg-2);
  line-height: 1.55; padding-top: 6px;
  border-top: 1px dashed var(--cb-warm-line);
}

.cb-checklist__info {
  background: none; border: 1px solid var(--cb-warm-line);
  width: 28px; height: 28px; border-radius: 6px;
  cursor: pointer; font-size: 18px; font-weight: 600;
  color: var(--fg-3);
}
.cb-checklist__info:hover { background: var(--cb-paper); }

.cb-checklist__actions {
  display: flex; gap: 12px; justify-content: space-between;
  padding: 32px 0;
  border-top: 2px solid var(--cb-onyx);
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Print styling */
@media print {
  .cb-header, .cb-marquee, .cb-footer, .cb-checklist__info, .cb-checklist__actions, .cb-subhero, .twk-panel { display: none !important; }
  body { background: white; }
  .cb-checklist__progress { position: static; box-shadow: none; background: white; color: black; border: 2px solid black; }
  .cb-checklist__progress__copy strong { color: black; }
  .cb-checklist__section li { break-inside: avoid; }
}
