/* App layout */
.app { max-width: 720px; margin: 0 auto; padding: 20px 16px 48px; }
.hdr { display: flex; align-items: center; justify-content: space-between; padding: 8px 0 16px; }
.hdr-title { font-size: 20px; font-weight: 700; color: var(--heading); }
.month-nav { display: flex; align-items: center; gap: 8px; }
.mn-btn {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border-2);
  background: var(--glass); color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .16s ease;
}
.mn-btn:hover { background: var(--glass-2); color: var(--text); border-color: var(--border-2); }
.mn-btn:disabled { opacity: .25; pointer-events: none; }
.mn-label { font-size: 14px; font-weight: 600; color: var(--text); min-width: 120px; text-align: center; }
/* Week card */
.wk { margin-bottom: 24px; animation: fadeUp .3s ease; }
@keyframes fadeUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
.sec li { color: var(--text); }
.wk-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.wk-head h2 { font-size: 17px; font-weight: 700; color: var(--heading); flex: 1; }
.wk-date { font-size: 12px; color: var(--muted); margin-top: 2px; }
/* Copy icon — matches investor data room vw-act pattern */
.cp-btn {
  width: 32px; height: 32px; border-radius: var(--r-sm); border: 1px solid var(--border-2);
  background: var(--glass); color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .16s ease; flex-shrink: 0;
}
.cp-btn:hover { background: var(--glass-2); color: var(--text); border-color: var(--border-2); }
/* Section card */
.sec {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 16px; margin-bottom: 10px;
  backdrop-filter: blur(12px) saturate(150%); -webkit-backdrop-filter: blur(12px) saturate(150%);
}
.sec h3 {
  font-size: 11px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: .6px; margin-bottom: 8px;
}
.sec.tldr { background: var(--accent-bg); border-color: var(--accent-bg); }
.sec li {
  font-size: 13px; line-height: 1.65; margin: 5px 0;
  padding-left: 16px; position: relative;
}
.sec li::before { content: '•'; position: absolute; left: 2px; color: var(--accent); font-weight: 700; }
.sec.tldr li::before { content: '→'; color: var(--accent); }
/* Tables */
table { width: 100%; border-collapse: collapse; font-size: 12px; }
th { text-align: left; color: var(--muted); font-weight: 600; padding: 5px 8px; border-bottom: 1px solid var(--border-2); }
td { padding: 5px 8px; border-bottom: 1px solid var(--border); color: var(--text); }
tr:last-child td { border-bottom: none; }
/* Personal & Sig */
.personal {
  font-size: 13px; color: var(--muted); font-style: italic;
  padding: 12px 16px; border-top: 1px solid var(--border); margin-top: 10px;
}
.sig {
  text-align: center; margin-top: 20px; padding-top: 14px;
  border-top: 1px solid var(--border); font-size: 12px; color: var(--muted);
}
.sig strong { color: var(--heading); display: block; margin-bottom: 2px; }
/* Footer */
.footer {
  text-align: center; padding: 24px 0 12px; margin-top: 32px;
  border-top: 1px solid var(--border); font-size: 11px; color: var(--muted);
}
.footer a {
  color: var(--accent); text-decoration: none; font-weight: 600;
}
.footer a:hover { text-decoration: underline; }
