/* Consent screen */
.consent-header { margin-bottom: 20px; }
.consent-badge {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  background: var(--lavender);
  padding: 6px 14px;
  border-radius: 5px;
  display: inline-block;
  border: 2px solid var(--border);
  box-shadow: 2px 2px 0 var(--border);
  margin-bottom: 14px;
}
.consent-title { font-size: 24px; font-weight: 800; }
.consent-body { flex: 1; }
.consent-text { font-size: 14px; line-height: 1.7; margin-bottom: 12px; max-width: 560px; }
.consent-checks { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  transition: all .12s;
}
.check-row:hover { background: #fff3d1; transform: translate(-1px,-1px); box-shadow: 3px 3px 0 var(--border); }
.check-row input { display: none; }
.checkmark {
  width: 22px;
  height: 22px;
  border: 2.5px solid var(--border);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--card);
  transition: all .12s;
}
.check-row input:checked ~ .checkmark { background: var(--green); border-color: var(--border); }
.check-row input:checked ~ .checkmark::after { content: '✓'; font-size: 13px; font-weight: 800; color: var(--ink); }
.check-label { font-size: 13px; font-weight: 600; }
