/* ============================================================
   HeartMath Coach / Mentor Certification
   Design tokens mirrored from HeartMind Leadership™
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --ink:      #1a1916;
  --ink-m:    #6b6860;
  --ink-f:    #a8a49e;
  --cream:    #f7f4ef;
  --cream-d:  #ede9e2;
  --cb:       #ddd8d0;
  --gold:     #b8936a;
  --gl:       #f2e8dc;
  --gd:       #8a6a47;
  --sage:     #7a8f7e;
  --white:    #ffffff;
  --sb-w:     238px;
  --top-h:    52px;
  --danger:   #c0392b;
  --checkin:  #7a8f7e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  overflow: hidden;
}

/* ── AUTH SCREEN ──────────────────────────────────────────── */
#auth-screen {
  position: fixed; inset: 0;
  background: #1a1916;
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
}
.auth-box {
  background: var(--cream);
  border-radius: 4px;
  padding: 40px 36px;
  width: 360px;
  text-align: center;
}
.auth-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 4px;
}
.auth-logo span { color: var(--gold); font-style: italic; }
.auth-sub {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-m);
  margin-bottom: 28px;
}
.auth-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 8px;
}
.auth-box p { font-size: 13px; color: var(--ink-m); margin-bottom: 20px; }
.auth-field {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--cb);
  border-radius: 3px;
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s;
}
.auth-field:focus { border-color: var(--gold); }
.auth-btn {
  width: 100%;
  padding: 12px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 16px;
}
.auth-btn:hover { background: #333; }
.auth-error { font-size: 13px; color: var(--danger); display: none; margin-bottom: 8px; }
.auth-note { font-size: 12px; color: var(--ink-f); line-height: 1.5; }
.auth-note a { color: var(--gold); }

/* ── APP SHELL ────────────────────────────────────────────── */
#app {
  display: none;
  height: 100vh;
  flex-direction: column;
}
#app.visible { display: flex; }

/* ── TOP NAV ──────────────────────────────────────────────── */
#topnav {
  height: var(--top-h);
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 0 20px;
  flex-shrink: 0;
  gap: 16px;
  z-index: 100;
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--gold); font-style: italic; }
.nav-sub {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.nav-spacer { flex: 1; }
.nav-user {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.nav-signout {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  font-family: inherit;
}
.nav-signout:hover { color: rgba(255,255,255,0.8); }
.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
}

/* ── BODY LAYOUT ──────────────────────────────────────────── */
#body-wrap {
  display: flex;
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* ── SIDEBAR ──────────────────────────────────────────────── */
#sidebar {
  width: var(--sb-w);
  background: var(--cream-d);
  border-right: 1px solid var(--cb);
  overflow-y: auto;
  flex-shrink: 0;
  padding: 16px 0 40px;
  transition: transform 0.3s ease;
}
.sb-prog {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 14px;
  border-bottom: 1px solid var(--cb);
  margin-bottom: 12px;
}
.sb-prog-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-m); }
.sb-prog-pct { font-size: 12px; color: var(--ink-m); }
.sb-lesson-group { margin-bottom: 4px; }
.sb-lesson-title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-m);
}
.sb-lesson-badge {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 10px;
  background: var(--cb);
  color: var(--ink-m);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.sb-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 16px 7px 24px;
  font-size: 13px;
  color: var(--ink-m);
  cursor: pointer;
  line-height: 1.35;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.sb-item:hover { background: rgba(0,0,0,0.04); color: var(--ink); }
.sb-item.active {
  background: rgba(184,147,106,0.12);
  color: var(--ink);
}
.sb-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
}
.sb-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cb);
  flex-shrink: 0;
  margin-top: 4px;
  transition: background 0.2s;
}
.sb-item.active .sb-dot { background: var(--gold); }
.sb-item.done .sb-dot { background: var(--sage); }
.sb-item.locked {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}
.sb-lock {
  font-size: 10px;
  color: var(--ink-f);
  margin-left: auto;
  flex-shrink: 0;
}
.sb-badge {
  font-size: 9px;
  padding: 2px 5px;
  border-radius: 3px;
  background: var(--sage);
  color: white;
  flex-shrink: 0;
  margin-top: 2px;
}
.sb-badge.checkin { background: var(--gold); }

/* ── MAIN CONTENT ─────────────────────────────────────────── */
#main-content {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  background: var(--cream);
}
.page { display: none; padding: 40px 48px 80px; max-width: 820px; margin: 0 auto; }
.page.active { display: block; }

/* ── PAGE HEADER ──────────────────────────────────────────── */
.page-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
}
.page-subtitle {
  font-size: 13px;
  color: var(--ink-m);
  font-style: italic;
  margin-bottom: 28px;
}
.page-divider {
  height: 1px;
  background: var(--cb);
  margin-bottom: 28px;
}

/* ── VIDEO ────────────────────────────────────────────────── */
.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #111;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 32px;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── CONTENT SECTIONS ─────────────────────────────────────── */
.content-section { margin-bottom: 28px; }
.content-section h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
}
.content-section h4 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.content-section p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 12px;
}
.content-section ul, .content-section ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.content-section li {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 4px;
}
.content-section strong { font-weight: 500; }
.content-section em { font-style: italic; color: var(--ink-m); }
blockquote {
  border-left: 3px solid var(--gold);
  padding: 10px 16px;
  background: var(--gl);
  border-radius: 0 3px 3px 0;
  font-style: italic;
  color: var(--ink-m);
  font-size: 14px;
  margin: 16px 0;
}
.steps-list { padding-left: 0; list-style: none; counter-reset: steps; }
.steps-list li {
  counter-increment: steps;
  padding: 10px 12px 10px 48px;
  position: relative;
  background: var(--cream-d);
  border-radius: 3px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}
.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 14px;
  top: 10px;
  width: 22px; height: 22px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.key-insights {
  background: var(--gl);
  border: 1px solid var(--cb);
  border-radius: 3px;
  padding: 16px 20px;
  margin: 16px 0;
}
.key-insights h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--cream-d);
  border: 1px solid var(--cb);
  border-radius: 3px;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  margin: 12px 0;
}
.download-link:hover { background: var(--gl); border-color: var(--gold); color: var(--gd); }
.audio-player {
  width: 100%;
  margin: 12px 0;
  accent-color: var(--gold);
}

/* ── COACH NOTES / WORKSHEET ──────────────────────────────── */
.coach-notes {
  background: var(--white);
  border: 1px solid var(--cb);
  border-radius: 4px;
  padding: 24px;
  margin: 32px 0 0;
}
.coach-notes-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.coach-notes-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.coach-notes-sub {
  font-size: 12px;
  color: var(--ink-m);
  margin-bottom: 14px;
}
.notes-field {
  width: 100%;
  min-height: 120px;
  padding: 12px;
  border: 1px solid var(--cb);
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--cream);
  resize: vertical;
  outline: none;
  line-height: 1.6;
  transition: border-color 0.2s;
}
.notes-field:focus { border-color: var(--gold); }
.notes-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  align-items: center;
}
.btn-save {
  padding: 9px 18px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-save:hover { background: #333; }
.btn-download-notes {
  padding: 9px 16px;
  background: transparent;
  color: var(--ink-m);
  border: 1px solid var(--cb);
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-download-notes:hover { border-color: var(--gold); color: var(--gd); background: var(--gl); }
.btn-reset-notes {
  padding: 9px 14px;
  background: transparent;
  color: var(--ink-f);
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: auto;
}
.btn-reset-notes:hover { color: var(--danger); border-color: rgba(192,57,43,0.3); }
.saved-indicator {
  font-size: 12px;
  color: var(--sage);
  display: none;
}

/* ── CHECK-IN SECTION ─────────────────────────────────────── */
.checkin-box {
  background: linear-gradient(135deg, var(--gl) 0%, var(--cream-d) 100%);
  border: 1px solid var(--cb);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 24px;
  margin: 28px 0;
}
.checkin-box h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}
.checkin-box p {
  font-size: 14px;
  color: var(--ink-m);
  margin-bottom: 16px;
  line-height: 1.6;
}
.checkin-field {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--cb);
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.checkin-field:focus { border-color: var(--gold); }
.checkin-textarea {
  width: 100%;
  min-height: 110px;
  padding: 12px 14px;
  border: 1px solid var(--cb);
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  resize: vertical;
  outline: none;
  margin-bottom: 12px;
  line-height: 1.6;
  transition: border-color 0.2s;
}
.checkin-textarea:focus { border-color: var(--gold); }
.btn-checkin {
  padding: 11px 22px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-checkin:hover { background: var(--gd); }
.checkin-sent {
  display: none;
  background: rgba(122,143,126,0.15);
  border: 1px solid var(--sage);
  border-radius: 3px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--sage);
  margin-top: 12px;
}

/* ── MENTORING CALL CTA ───────────────────────────────────── */
.mentoring-cta {
  background: var(--ink);
  color: var(--white);
  border-radius: 4px;
  padding: 24px;
  margin: 28px 0;
}
.mentoring-cta h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.mentoring-cta p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
  line-height: 1.6;
}
.btn-book-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-book-call:hover { background: var(--gd); }

/* ── LOCKED OVERLAY ───────────────────────────────────────── */
.locked-overlay {
  text-align: center;
  padding: 60px 40px;
  max-width: 480px;
  margin: 0 auto;
}
.locked-overlay .lock-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}
.locked-overlay h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}
.locked-overlay p { font-size: 14px; color: var(--ink-m); margin-bottom: 20px; line-height: 1.6; }
.unlock-field {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--cb);
  border-radius: 3px;
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 10px;
  outline: none;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.2s;
}
.unlock-field:focus { border-color: var(--gold); }
.btn-unlock {
  width: 100%;
  padding: 12px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 10px;
}
.unlock-error { font-size: 13px; color: var(--danger); display: none; margin-top: 6px; }

/* ── BOTTOM NAV ───────────────────────────────────────────── */
.bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--cb);
}
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--cb);
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: var(--ink-m);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-nav:hover { border-color: var(--gold); color: var(--ink); }
.btn-complete {
  padding: 12px 28px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-complete:hover { background: #333; }
.btn-complete.done {
  background: var(--sage);
}
.nav-pos { font-size: 12px; color: var(--ink-f); }

/* ── ACCESS CODE UNLOCK PANEL ─────────────────────────────── */
.code-panel {
  background: var(--cream-d);
  border-top: 1px solid var(--cb);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.code-panel input {
  flex: 1;
  padding: 7px 10px;
  border: 1px solid var(--cb);
  border-radius: 3px;
  font-size: 12px;
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.code-panel button {
  padding: 7px 14px;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: 3px;
  font-size: 12px;
  cursor: pointer;
}
.code-panel-label { font-size: 11px; color: var(--ink-f); white-space: nowrap; }
.code-msg { font-size: 11px; color: var(--sage); display: none; }
.code-err { font-size: 11px; color: var(--danger); display: none; }

/* ── SIDEBAR OVERLAY (MOBILE) ─────────────────────────────── */
#sb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 700px) {
  #sidebar {
    position: fixed;
    top: var(--top-h); bottom: 0; left: 0;
    z-index: 300;
    transform: translateX(-100%);
    width: min(var(--sb-w), 85vw);
  }
  #sidebar.open {
    transform: translateX(0);
    box-shadow: 4px 0 16px rgba(0,0,0,0.2);
  }
  #sb-overlay.open { display: block; }
  .nav-menu-btn { display: block; }
  .page { padding: 24px 20px 60px; }
  #main-content { width: 100%; }
}

/* ── WORKSPACE ────────────────────────────────────────────── */
.ws-header { margin-bottom: 28px; }
.ws-actions { display: flex; gap: 12px; margin-bottom: 32px; }
.btn-dl-all {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: var(--ink); color: var(--white);
  border: none; border-radius: 3px; font-family: "DM Sans", sans-serif;
  font-size: 13px; font-weight: 500; cursor: pointer; transition: background 0.2s;
}
.btn-dl-all:hover { background: #333; }
.ws-empty {
  background: var(--cream-d); border: 1px solid var(--cb); border-radius: 4px;
  padding: 40px; text-align: center;
}
.ws-empty p { font-size: 14px; color: var(--ink-m); line-height: 1.7; margin-bottom: 8px; }
.ws-entry {
  background: var(--white); border: 1px solid var(--cb); border-radius: 4px;
  padding: 20px 24px; margin-bottom: 16px;
}
.ws-entry-label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; font-weight: 500;
}
.ws-entry-text {
  font-size: 14px; color: var(--ink); line-height: 1.7; margin-bottom: 12px;
}
.ws-edit-btn {
  font-size: 12px; color: var(--ink-m); background: none; border: none;
  cursor: pointer; padding: 0; font-family: "DM Sans", sans-serif;
  text-decoration: underline;
}
.ws-edit-btn:hover { color: var(--gold); }

/* ── UNLOCK PAGE ──────────────────────────────────────────── */
.unlock-page { max-width: 520px; }
.unlock-card {
  background: var(--white); border: 1px solid var(--cb); border-radius: 4px;
  padding: 32px; margin-bottom: 24px;
}
.unlock-card h3 {
  font-family: "Cormorant Garamond", serif; font-size: 22px; font-weight: 400;
  margin-bottom: 10px;
}
.unlock-card p { font-size: 14px; color: var(--ink-m); line-height: 1.65; margin-bottom: 20px; }
.unlock-input-row { display: flex; gap: 10px; }
.unlock-input-row input {
  flex: 1; padding: 11px 14px; border: 1px solid var(--cb); border-radius: 3px;
  font-family: "DM Sans", sans-serif; font-size: 14px; color: var(--ink);
  background: var(--cream); outline: none; text-transform: uppercase;
  letter-spacing: 0.08em; transition: border-color 0.2s;
}
.unlock-input-row input:focus { border-color: var(--gold); }
.unlock-input-row button {
  padding: 11px 20px; background: var(--ink); color: white; border: none;
  border-radius: 3px; font-family: "DM Sans", sans-serif; font-size: 13px;
  font-weight: 500; cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.unlock-input-row button:hover { background: #333; }
#code-msg { display:none; margin-top:12px; font-size:14px; color:var(--sage); font-weight:500; }
#code-err { display:none; margin-top:12px; font-size:13px; color:var(--danger); }
.unlock-note {
  background: var(--gl); border: 1px solid var(--cb); border-radius: 4px;
  padding: 16px 20px; font-size: 13px; color: var(--ink-m); line-height: 1.6;
}

/* ── INTERACTIVE CHECKLIST ────────────────────────────────── */
.reflect-checklist { list-style: none; padding: 0; margin: 0; }
.reflect-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--cb); font-size: 14.5px;
  color: var(--ink); line-height: 1.5; cursor: pointer;
}
.reflect-checklist li:last-child { border-bottom: none; }
.reflect-checklist li input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--gold); cursor: pointer;
}
.reflect-checklist li.checked { color: var(--ink-m); text-decoration: line-through; }

/* ── WORKSHEET FIELDS (built-in) ──────────────────────────── */
.worksheet-section { margin: 16px 0; }
.worksheet-section label {
  display: block; font-size: 13px; font-weight: 500; color: var(--ink);
  margin-bottom: 6px;
}
.worksheet-field {
  width: 100%; padding: 10px 12px; border: 1px solid var(--cb); border-radius: 3px;
  font-family: "DM Sans", sans-serif; font-size: 14px; color: var(--ink);
  background: var(--cream); outline: none; resize: vertical; line-height: 1.6;
  transition: border-color 0.2s; min-height: 70px;
}
.worksheet-field:focus { border-color: var(--gold); }
.worksheet-checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0; }
.worksheet-checkbox-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; background: var(--cream-d); border: 1px solid var(--cb);
  border-radius: 3px; font-size: 13.5px; cursor: pointer; transition: all 0.15s;
}
.worksheet-checkbox-item:hover { border-color: var(--gold); background: var(--gl); }
.worksheet-checkbox-item input { accent-color: var(--gold); }
