/* ============================================================
   CoPath Validation Engine — Shared Design System
   Innovate Mississippi
   Version 1.0.0
   ============================================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Inter:wght@400;500;600;700&family=Martian+Mono:wght@400;600&display=swap');

/* === CSS Variables === */
:root {
  /* Brand Colors */
  --im-green:      #16382A;
  --im-green-mid:  #1f5040;
  --im-green-lt:   #2d7a5f;
  --im-green-tint: #e8f2ee;
  --im-amber:      #c97d0a;
  --im-amber-lt:   #f5a623;
  --im-amber-tint: #fef6e4;
  --im-navy:       #0A2540;
  --im-navy-mid:   #0f3460;

  /* Neutrals */
  --bg-base:       #F7FAFC;
  --bg-card:       #FFFFFF;
  --bg-subtle:     #EDF2F7;
  --border:        #E2E8F0;
  --border-mid:    #CBD5E0;
  --text-primary:  #1A202C;
  --text-secondary:#4A5568;
  --text-muted:    #718096;
  --text-inverse:  #FFFFFF;

  /* Semantic */
  --success:       #276749;
  --success-tint:  #C6F6D5;
  --warning:       #C97D0A;
  --warning-tint:  #FEEBC8;
  --danger:        #C53030;
  --danger-tint:   #FED7D7;
  --info:          #2B6CB0;
  --info-tint:     #BEE3F8;

  /* Evidence badge colors */
  --badge-weak:    #C53030;
  --badge-better:  #C97D0A;
  --badge-strong:  #276749;

  /* Confidence colors (Competitive Matrix) */
  --conf-high:     #16382A;
  --conf-high-tint:#e8f2ee;
  --conf-mid:      #c97d0a;
  --conf-mid-tint: #fef6e4;
  --conf-guess:    #718096;
  --conf-guess-tint:#EDF2F7;

  /* Typography */
  --font-display:  'Fraunces', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --font-mono:     'Martian Mono', 'Courier New', monospace;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;

  /* Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;

  /* Shadow */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg:  0 8px 30px rgba(0,0,0,0.12);

  /* Transitions */
  --transition: 0.18s ease;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === Typography === */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--im-navy);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-body); color: var(--text-primary); }

p { color: var(--text-secondary); line-height: 1.7; }

a { color: var(--im-green-lt); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--im-green); text-decoration: underline; }

code, .mono {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--bg-subtle);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.text-kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--im-green-lt);
}

.text-muted { color: var(--text-muted); font-size: 0.9rem; }

/* === Layout === */
.copath-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

.copath-header {
  margin-bottom: var(--space-xl);
}

.copath-header .text-kicker {
  margin-bottom: var(--space-sm);
}

.copath-header h1 {
  margin-bottom: var(--space-sm);
}

.copath-header p.text-muted {
  max-width: 640px;
}

/* === Cards === */
.copath-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.copath-card + .copath-card {
  margin-top: var(--space-md);
}

/* Module cards on dashboard */
.module-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.module-card:hover {
  border-color: var(--im-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.module-card .text-kicker { margin-bottom: var(--space-xs); }
.module-card h3 { font-size: 1.15rem; margin: var(--space-xs) 0; color: var(--im-navy); }
.module-card .module-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--im-amber);
  margin-bottom: var(--space-xs);
}
.module-card p { font-size: 0.875rem; color: var(--text-muted); margin-top: var(--space-xs); }

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--im-green-lt);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--im-green);
  color: var(--text-inverse);
}
.btn-primary:hover {
  background: var(--im-green-mid);
  color: var(--text-inverse);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--im-green);
  border: 2px solid var(--im-green);
}
.btn-secondary:hover {
  background: var(--im-green-tint);
  text-decoration: none;
}

.btn-amber {
  background: var(--im-amber);
  color: var(--text-inverse);
}
.btn-amber:hover {
  background: var(--warning);
  color: var(--text-inverse);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-mid);
}
.btn-ghost:hover {
  background: var(--bg-subtle);
  color: var(--text-primary);
  text-decoration: none;
}

.btn-danger {
  background: var(--danger);
  color: var(--text-inverse);
}
.btn-danger:hover {
  background: #9B2C2C;
  color: var(--text-inverse);
  text-decoration: none;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn[disabled], .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* === Form Elements === */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--bg-card);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--im-green-lt);
  box-shadow: 0 0 0 3px rgba(22, 56, 42, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234A5568' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.char-counter {
  text-align: right;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-family: var(--font-mono);
}

.char-counter.near-limit { color: var(--warning); }
.char-counter.at-limit { color: var(--danger); }

/* === Navigation === */
.module-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  gap: var(--space-md);
}

.module-nav-left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.module-nav-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--im-navy);
  text-decoration: none;
}

.module-nav-brand:hover { text-decoration: none; color: var(--im-green); }

.module-nav-kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.module-nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-back-link {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.nav-back-link:hover { color: var(--im-green); }

/* Save status indicator */
.save-status {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 6px;
}

.save-status.saved { color: var(--success); }
.save-status.saving { color: var(--im-amber); }

/* === Footer === */
.global-footer {
  margin-top: var(--space-2xl);
  padding: var(--space-lg);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  gap: var(--space-md);
  flex-wrap: wrap;
}

.global-footer a {
  color: var(--im-green-lt);
}

/* === Toast Notifications === */
.toast {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-success { background: var(--im-green); color: var(--text-inverse); }
.toast-error   { background: var(--danger); color: var(--text-inverse); }
.toast-info    { background: var(--im-navy); color: var(--text-inverse); }
.toast-warning { background: var(--im-amber); color: var(--text-inverse); }

/* === Badges === */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.badge-strong  { background: var(--success-tint); color: var(--success); }
.badge-better  { background: var(--warning-tint); color: var(--warning); }
.badge-weak    { background: var(--danger-tint); color: var(--danger); }

.badge-high-conf  { background: var(--conf-high-tint); color: var(--conf-high); border: 1px solid var(--im-green); }
.badge-mid-conf   { background: var(--conf-mid-tint); color: var(--conf-mid); border: 1px solid var(--im-amber); }
.badge-guess      { background: var(--conf-guess-tint); color: var(--conf-guess); border: 1px solid var(--border-mid); }

.badge-must   { background: var(--danger-tint); color: var(--danger); }
.badge-should { background: var(--warning-tint); color: var(--warning); }
.badge-nice   { background: var(--info-tint); color: var(--info); }

/* === Progress & Score Display === */
.score-card {
  background: var(--im-navy);
  color: var(--text-inverse);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.score-value {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--im-amber-lt);
  white-space: nowrap;
}

.score-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.progress-bar-wrap {
  background: var(--border);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--im-green);
  transition: width 0.5s ease;
}

.progress-bar-fill.warning { background: var(--im-amber); }
.progress-bar-fill.danger  { background: var(--danger); }

/* === Table Styles === */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.data-table th {
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--space-sm) var(--space-md);
  border-bottom: 2px solid var(--border);
  background: var(--bg-subtle);
}

.data-table td {
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-primary);
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg-subtle); }

/* Competitive Matrix specific */
.matrix-table { table-layout: fixed; }
.matrix-table .col-benefit { width: 200px; }
.matrix-table .col-your-product { width: 180px; background: var(--im-green-tint) !important; }
.matrix-table td.your-product-cell { background: var(--im-green-tint); }

.matrix-header-your-product {
  background: var(--im-green) !important;
  color: var(--text-inverse) !important;
}

.matrix-cell {
  position: relative;
}

.matrix-cell .cell-text {
  font-size: 0.85rem;
  line-height: 1.4;
  min-height: 48px;
  padding: 6px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  width: 100%;
  resize: none;
  background: transparent;
  font-family: var(--font-body);
  color: var(--text-primary);
  transition: border-color var(--transition);
}

.matrix-cell .cell-text:focus {
  border-color: var(--im-green-lt);
  background: var(--bg-card);
  outline: none;
}

.matrix-cell .confidence-select {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  font-family: var(--font-mono);
}

/* Segmentation score cells */
.score-cell input[type="number"] {
  width: 60px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  padding: 6px 4px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-primary);
}

.score-cell input[type="number"]:focus {
  border-color: var(--im-green-lt);
  outline: none;
}

.total-score-cell {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1rem;
  color: var(--im-green);
  background: var(--im-green-tint) !important;
}

.total-score-cell.rank-1 { background: var(--success-tint) !important; color: var(--success); }
.total-score-cell.rank-2 { background: var(--warning-tint) !important; color: var(--warning); }

/* === Alerts & Callouts === */
.alert {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid;
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
}

.alert-info    { background: var(--info-tint);    border-color: var(--info);    color: #1A365D; }
.alert-warning { background: var(--warning-tint); border-color: var(--warning); color: #7B341E; }
.alert-danger  { background: var(--danger-tint);  border-color: var(--danger);  color: #742A2A; }
.alert-success { background: var(--success-tint); border-color: var(--success); color: #1C4532; }

/* === Tabs === */
.tab-list {
  display: flex;
  gap: 2px;
  border-bottom: 2px solid var(--border);
  margin-bottom: var(--space-lg);
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-list::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.tab-btn:hover  { color: var(--im-green); }
.tab-btn.active {
  color: var(--im-green);
  border-bottom-color: var(--im-green);
  font-weight: 600;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* === Kanban Board === */
.kanban-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.kanban-col {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  min-height: 300px;
}

.kanban-col-header {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kanban-count {
  font-family: var(--font-mono);
  background: var(--border);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.kanban-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  cursor: grab;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.kanban-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--im-green);
}

.kanban-card.dragging {
  opacity: 0.5;
  cursor: grabbing;
}

.kanban-col.drag-over {
  background: var(--im-green-tint);
  border: 2px dashed var(--im-green-lt);
}

/* === Budget / Valley Specific === */
.vod-metric-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.vod-metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
}

.vod-metric-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--im-green);
  margin-bottom: 4px;
}

.vod-metric-value.danger { color: var(--danger); }
.vod-metric-value.warning { color: var(--im-amber); }

.vod-metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* === Shared Section Headers === */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-count {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: var(--bg-subtle);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

/* === Loading & Empty States === */
.loading-placeholder {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.empty-state {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border: 2px dashed var(--border-mid);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
}

.empty-state h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.empty-state p { font-size: 0.875rem; }

/* === Tooltip === */
.tooltip-wrap { position: relative; display: inline-flex; }
.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 6px;
  background: var(--im-navy);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 50;
}
.tooltip-wrap:hover .tooltip { opacity: 1; }

/* === Admin Panel === */
.admin-header {
  background: var(--im-navy);
  color: white;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header h1 {
  color: white;
  font-size: 1.2rem;
}

.admin-passphrase-wall {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-login-card {
  max-width: 400px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.json-editor {
  width: 100%;
  min-height: 400px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.6;
  padding: var(--space-md);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-md);
  background: #1A202C;
  color: #E2E8F0;
  resize: vertical;
}

.json-editor:focus {
  outline: none;
  border-color: var(--im-green-lt);
}

/* === Reminder Banner === */
.reminder-banner {
  background: var(--warning-tint);
  border: 1px solid var(--im-amber);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
}

.reminder-banner-text { color: #7B341E; }
.reminder-banner-dismiss {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--im-amber);
  font-size: 1.1rem;
  padding: 0;
  flex-shrink: 0;
}

/* === Responsive === */
@media (max-width: 768px) {
  .copath-wrapper { padding: var(--space-lg) var(--space-md); }
  .module-grid { grid-template-columns: 1fr; }
  .kanban-board { grid-template-columns: 1fr; }
  .module-nav { flex-wrap: wrap; gap: var(--space-sm); }
  .vod-metric-row { grid-template-columns: repeat(2, 1fr); }
  .matrix-table { display: block; overflow-x: auto; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  .vod-metric-row { grid-template-columns: 1fr; }
}

/* === Print Styles === */
@media print {
  .no-print { display: none !important; }
  body { background: white; font-size: 12pt; }
  .copath-card { box-shadow: none; border: 1px solid #ccc; }
  .module-nav, .global-footer { display: none; }
}
