/* CCRM × S50 Proposal — utility-doc styling with CCRM brand polish */

:root {
  --c-ink: #1f2a2a;
  --c-ink-soft: #4a5757;
  --c-ink-muted: #6f7a7a;
  --c-line: #e6dfd5;
  --c-line-soft: #efe9df;
  --c-bg: #fbf6ee;
  --c-bg-card: #ffffff;
  --c-bg-warm: #f6ecdf;
  --c-bg-soft: #faf3e8;

  --c-brand: #0e3d3a;
  --c-brand-deep: #0a2d2b;
  --c-brand-soft: #d9e3df;
  --c-accent: #ef9a85;
  --c-accent-soft: #fbe1d6;

  --c-foundation: #0e3d3a;
  --c-foundation-soft: #d9e3df;
  --c-build: #b85c3f;
  --c-build-soft: #f5dccd;
  --c-activate: #6b8e6e;
  --c-activate-soft: #dde8df;

  --radius: 10px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(20, 40, 38, 0.04);
  --shadow-md: 0 6px 18px rgba(20, 40, 38, 0.06);

  --font-display: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --font-sans: "Inter Tight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--c-brand); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--c-accent); }

button { font: inherit; cursor: pointer; }

.app { max-width: 1200px; margin: 0 auto; padding: 36px 32px 120px; }

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 36px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark .logo {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--c-brand);
  color: #fbf6ee;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
}
.brand-mark .label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-ink-muted);
}
.brand-mark .title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -0.005em;
  margin-top: 2px;
}
.header-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-ink-muted);
}
.header-meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--c-accent); }

/* ---------- Hero ---------- */
.hero {
  margin-bottom: 56px;
}
.hero .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--c-ink);
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--c-brand);
}
.hero .lede {
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.6;
  color: var(--c-ink-soft);
  margin: 0;
}

/* ---------- View toggle ---------- */
.view-toggle {
  display: inline-flex;
  background: var(--c-bg-card);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 28px;
}
.view-toggle button {
  border: 0;
  background: transparent;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink-soft);
  letter-spacing: 0.01em;
  transition: all 0.18s ease;
}
.view-toggle button.active {
  background: var(--c-brand);
  color: #fbf6ee;
}

/* ---------- Section heads ---------- */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 24px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 0;
}
.section-head .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
}

/* ---------- How we work ---------- */
.how-we-work {
  background: var(--c-bg-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 64px;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 22px;
}
@media (max-width: 800px) { .how-grid { grid-template-columns: 1fr; gap: 28px; } }
.how-block h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 12px;
  color: var(--c-ink);
}
.how-block p {
  margin: 0 0 14px;
  color: var(--c-ink-soft);
  font-size: 14.5px;
}
.how-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.how-block li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 13.5px;
  color: var(--c-ink-soft);
  border-top: 1px dashed var(--c-line-soft);
  line-height: 1.5;
}
.how-block li:first-child { border-top: 0; }
.how-block li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
}

/* ---------- Roadmap ---------- */
.roadmap {
  background: var(--c-bg-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 36px 40px 40px;
  margin-bottom: 56px;
}
.roadmap-intro {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 28px;
}
.roadmap-intro p {
  margin: 0;
  font-size: 14px;
  color: var(--c-ink-muted);
  max-width: 50ch;
}
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .roadmap-grid { grid-template-columns: 1fr; } }

.roadmap-phase {
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line-soft);
  position: relative;
  overflow: hidden;
}
.roadmap-phase[data-phase="foundation"] { background: var(--c-foundation-soft); }
.roadmap-phase[data-phase="build"] { background: var(--c-build-soft); }
.roadmap-phase[data-phase="activate"] { background: var(--c-activate-soft); }

.roadmap-phase .phase-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
}
.roadmap-phase h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 4px 0 8px;
}
.roadmap-phase p.tagline {
  font-size: 13px;
  color: var(--c-ink-soft);
  margin: 0 0 18px;
  line-height: 1.5;
}
.roadmap-projects {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.roadmap-project-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(20, 40, 38, 0.06);
  border-radius: 8px;
  padding: 12px 14px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.18s ease;
}
.roadmap-project-card:hover {
  background: #ffffff;
  border-color: rgba(20, 40, 38, 0.18);
  transform: translateY(-1px);
}
.roadmap-project-card .num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-brand);
  flex-shrink: 0;
  width: 22px;
}
.roadmap-project-card .name {
  font-size: 13.5px;
  color: var(--c-ink);
  font-weight: 500;
  line-height: 1.35;
}
.roadmap-project-card .arrow {
  margin-left: auto;
  color: var(--c-ink-muted);
  font-size: 14px;
  flex-shrink: 0;
}

.roadmap-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  margin: 18px 0 8px;
}
.roadmap-arrow .line { flex: 1; height: 1px; background: var(--c-line); }
.roadmap-arrow .label { padding: 0 14px; }

/* ---------- Tabs ---------- */
.search-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.search-bar input {
  flex: 1;
  padding: 12px 18px;
  font-size: 14px;
  font-family: var(--font-sans);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: var(--c-bg-card);
  color: var(--c-ink);
  outline: none;
  transition: border-color 0.18s ease;
}
.search-bar input:focus { border-color: var(--c-brand); }
.search-bar .count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  white-space: nowrap;
}
.search-bar .clear-btn {
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  color: var(--c-ink-soft);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.search-bar .clear-btn:hover { background: var(--c-bg-warm); }

.phase-tabs {
  display: inline-flex;
  gap: 6px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 32px;
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}
.phase-tab {
  background: transparent;
  border: 0;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink-soft);
  letter-spacing: 0.01em;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: all 0.18s ease;
}
.phase-tab:hover { color: var(--c-brand); background: var(--c-bg-warm); }
.phase-tab.active {
  color: #fbf6ee;
  background: var(--c-brand);
}
.phase-tab .phase-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  font-weight: 500;
}
.phase-tab.active .phase-eyebrow { color: var(--c-accent); }
.phase-tab .phase-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-ink-muted);
  font-weight: 400;
}

.phase-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--c-ink-soft);
  margin: 0 0 36px;
  max-width: 70ch;
  line-height: 1.5;
}

/* ---------- Project ---------- */
.project {
  background: var(--c-bg-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 32px 36px 28px;
  margin-bottom: 22px;
  scroll-margin-top: 24px;
}
.project-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}
.project-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--c-accent);
  background: var(--c-accent-soft);
  padding: 6px 10px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 4px;
}
.project-head h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--c-ink);
  line-height: 1.2;
}
.project-head .desc {
  margin: 0;
  font-size: 14.5px;
  color: var(--c-ink-soft);
  max-width: 75ch;
  line-height: 1.6;
}
.project-actions {
  margin-left: auto;
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.icon-btn {
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  color: var(--c-ink-soft);
  transition: all 0.18s ease;
  position: relative;
}
.icon-btn:hover {
  background: var(--c-bg-warm);
  color: var(--c-brand);
  border-color: var(--c-brand-soft);
}
.icon-btn .badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--c-accent);
  color: white;
  font-size: 10px;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
}

/* ---------- Section within project ---------- */
.proj-section {
  margin-top: 26px;
  border-top: 1px solid var(--c-line-soft);
  padding-top: 22px;
}
.proj-section h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  margin: 0 0 4px;
}
.proj-section .section-note {
  font-size: 13px;
  color: var(--c-ink-muted);
  font-style: italic;
  margin: 6px 0 14px;
  max-width: 70ch;
}

/* ---------- Workstream (accordion) ---------- */
.workstream {
  border-top: 1px solid var(--c-line-soft);
  padding: 16px 0;
}
.workstream:first-of-type { border-top: 0; padding-top: 12px; }

.workstream-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
}
.workstream-id {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-brand);
  flex-shrink: 0;
  width: 38px;
  margin-top: 3px;
}
.workstream-body {
  flex: 1;
  min-width: 0;
}
.workstream-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--c-ink);
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.35;
}
.workstream-summary {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--c-ink-soft);
  line-height: 1.55;
  max-width: 75ch;
}
.workstream-toggle {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11.5px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-top: 2px;
  white-space: nowrap;
  transition: all 0.18s ease;
}
.workstream-toggle:hover { background: var(--c-bg-warm); color: var(--c-brand); }
.workstream-toggle.open {
  background: var(--c-brand);
  border-color: var(--c-brand);
  color: #fbf6ee;
}

.workstream-detail {
  margin: 14px 0 0 54px;
  padding: 16px 20px;
  background: var(--c-bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--c-line-soft);
}
@media (max-width: 700px) {
  .workstream-detail { margin-left: 0; }
}
.workstream-detail ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.workstream-detail li {
  position: relative;
  padding: 5px 0 5px 18px;
  font-size: 13.5px;
  color: var(--c-ink-soft);
  line-height: 1.55;
}
.workstream-detail li::before {
  content: "";
  position: absolute;
  left: 4px; top: 13px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-ink-muted);
}
.workstream-detail .sub-bullets {
  margin: 6px 0 4px 6px;
  padding: 0;
}
.workstream-detail .sub-bullets li {
  padding: 3px 0 3px 18px;
  font-size: 13px;
  color: var(--c-ink-soft);
}
.workstream-detail .sub-bullets li::before {
  content: "";
  width: 6px;
  height: 1px;
  border-radius: 0;
  top: 14px;
  left: 4px;
  background: var(--c-ink-muted);
}
.workstream-detail .deliverable {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--c-line);
  font-size: 12px;
  color: var(--c-ink-muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.workstream-detail .deliverable .label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-brand);
  flex-shrink: 0;
  margin-top: 2px;
}
.workstream-detail .deliverable .value {
  font-style: italic;
  color: var(--c-ink-soft);
  font-size: 13px;
}

/* ---------- Comments ---------- */
.comments-panel {
  margin-top: 24px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius);
  padding: 20px 22px;
}
/* Nested inside a workstream's detail \u2014 tighter, slightly inset from card */
.workstream-detail .comments-panel {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--c-line);
}
.workstream-detail .comments-panel h5 {
  font-size: 10px;
  margin-bottom: 10px;
}
.workstream-detail .comments-panel .comment-form textarea {
  min-height: 56px;
}
.comments-panel h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.comments-panel h5 .count {
  background: var(--c-brand);
  color: #fbf6ee;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}
.comment {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--c-line-soft);
}
.comment:first-of-type { border-top: 0; padding-top: 0; }
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-brand);
  color: #fbf6ee;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.comment-body { flex: 1; }
.comment-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.comment-meta .author { font-weight: 600; font-size: 13px; color: var(--c-ink); }
.comment-meta .time { font-size: 11.5px; color: var(--c-ink-muted); font-family: var(--font-mono); }
.comment-meta .delete {
  margin-left: auto;
  background: transparent;
  border: 0;
  font-size: 11px;
  color: var(--c-ink-muted);
  cursor: pointer;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.comment-meta .delete:hover { color: var(--c-accent); }
.comment-text {
  font-size: 13.5px;
  color: var(--c-ink-soft);
  line-height: 1.5;
  white-space: pre-wrap;
}

.comment-form {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--c-line-soft);
}
.comment-form .avatar { background: var(--c-accent); color: white; }
.comment-form .input-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.comment-form input.author-input {
  padding: 8px 12px;
  font-size: 13px;
  font-family: var(--font-sans);
  border: 1px solid var(--c-line);
  border-radius: 6px;
  background: white;
  color: var(--c-ink);
  outline: none;
  width: 220px;
}
.comment-form textarea {
  padding: 10px 12px;
  font-size: 13.5px;
  font-family: var(--font-sans);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: white;
  color: var(--c-ink);
  outline: none;
  resize: vertical;
  min-height: 64px;
  line-height: 1.5;
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--c-brand); }
.comment-form .actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.btn-primary {
  background: var(--c-brand);
  color: #fbf6ee;
  border: 0;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.18s ease;
}
.btn-primary:hover { background: var(--c-brand-deep); }
.btn-primary:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-ghost {
  background: transparent;
  color: var(--c-ink-soft);
  border: 1px solid var(--c-line);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.btn-ghost:hover { background: var(--c-bg-warm); color: var(--c-brand); }

/* ---------- Email modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 30, 28, 0.55);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: fadein 0.18s ease;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--c-bg-card);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  padding: 32px 36px 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}
.modal h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 6px;
}
.modal .modal-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  margin-bottom: 6px;
}
.modal label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-ink-soft);
  margin: 16px 0 6px;
  letter-spacing: 0.02em;
}
.modal input, .modal textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-sans);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: white;
  color: var(--c-ink);
  outline: none;
}
.modal textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.modal input:focus, .modal textarea:focus { border-color: var(--c-brand); }
.modal .actions {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.modal .helper {
  font-size: 12px;
  color: var(--c-ink-muted);
  margin: 6px 0 0;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
}

/* ---------- Print ---------- */
@media print {
  body { background: white; }
  .app { padding: 24px; max-width: 100%; }
  .site-header, .view-toggle, .search-bar, .phase-tabs, .project-actions, .roadmap, .site-footer { display: none !important; }
  .hero { margin-bottom: 24px; }
  .phase-tagline { margin-bottom: 18px; }
  .project { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; padding: 18px 22px; margin-bottom: 14px; }
  .workstream-detail { display: block !important; }
  .workstream-toggle { display: none !important; }
  .comments-panel { display: none; }
  .phase-section { page-break-before: always; }
  .phase-section:first-of-type { page-break-before: auto; }
}
