/* ==========================================================================
   WE Corporate College Connect Portal — Design System
   Signature: "Network Graph" motif — colleges and companies as connected
   nodes, echoing the tagline "Connecting Colleges. Empowering Careers."
   ========================================================================== */

:root {
  /* Brand palette — derived from the actual WE Corporate logo (black + cyan) */
  --primary: #087577;
  --primary-dark: #055559;
  --primary-glow: #0DEBEC;
  --secondary: #00C896;
  --accent: #FFB800;

  /* Surfaces */
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --dark: #0A0A0A;
  --dark-surface: #171F2E;

  /* Neutrals */
  --slate-900: #0F172A;
  --slate-700: #334155;
  --slate-500: #64748B;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;

  /* Type */
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 0 1px rgba(8, 117, 119, 0.08), 0 20px 40px rgba(8, 117, 119, 0.12);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 28px;

  --header-h: 76px;
}

[data-theme="dark"] {
  --bg: #0B1120;
  --surface: #131B2C;
  --slate-900: #F8FAFC;
  --slate-700: #CBD5E1;
  --slate-500: #94A3B8;
  --slate-300: #334155;
  --slate-200: #1E293B;
  --slate-100: #17223B;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--slate-900);
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(0, 200, 150, 0.15);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--slate-900);
}

.display-1 {
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}
.display-2 { font-size: clamp(2rem, 3.4vw, 2.9rem); }
.display-3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }

p.lead {
  font-size: 1.15rem;
  color: var(--slate-500);
  line-height: 1.65;
  max-width: 640px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #0DEBEC 100%);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 44px rgba(8, 117, 119, 0.22); }
.btn-secondary {
  background: var(--surface);
  color: var(--slate-900);
  border: 1px solid var(--slate-200);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--slate-700);
  padding: 13px 18px;
}
.btn-ghost:hover { color: var(--primary); }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; border-radius: var(--radius-md); }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(248, 250, 252, 0.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  transition: background 0.3s ease, border-color 0.3s ease;
}
/* Dark-glass variant — worn permanently on login.html, and toggled by
   scroll position on index.html while the 3D hero is in view. Deliberate,
   not a side effect of the system light/dark toggle. */
.site-header.on-dark {
  background: rgba(10, 10, 10, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header.on-dark .brand { color: #fff; }
.site-header.on-dark .nav-links a { color: #CBD5E1; }
.site-header.on-dark .nav-links a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.site-header.on-dark .theme-toggle { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); color: #fff; }
.site-header.on-dark .btn-ghost { color: #CBD5E1; }
.site-header.on-dark .btn-ghost:hover { color: #fff; }
.site-header.on-dark .btn-secondary { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.16); }
[data-theme="dark"] .site-header {
  background: rgba(11, 17, 32, 0.72);
  border-bottom: 1px solid rgba(30, 41, 59, 0.7);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.05rem; font-family: var(--font-display); }
.brand-mark {
  width: 46px; height: 46px; border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(13,235,236,0.25), 0 0 16px rgba(13,235,236,0.35);
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { background: var(--slate-100); color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--slate-200);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--slate-700);
}
.theme-toggle svg { width: 18px; height: 18px; }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: flex; width: 40px; height: 40px; border-radius: 10px;
    border: 1px solid var(--slate-200); background: var(--surface);
    align-items: center; justify-content: center; cursor: pointer;
  }
}

/* ---------- Cards / Glass ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(8, 117, 119,0.18); }

.glass {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}
[data-theme="dark"] .glass {
  background: rgba(23, 31, 46, 0.55);
  border: 1px solid rgba(51, 65, 85, 0.5);
}

/* ---------- Skeleton loading ---------- */
.skeleton {
  position: relative;
  overflow: hidden;
  background: var(--slate-200);
  border-radius: var(--radius-sm);
}
.skeleton::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ---------- Toasts ---------- */
.toast-stack {
  position: fixed; top: 92px; right: 20px; z-index: 300;
  display: flex; flex-direction: column; gap: 10px;
  max-width: 360px;
}
.toast {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--surface);
  border: 1px solid var(--slate-200);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  font-size: 0.9rem;
  animation: toast-in 0.25s ease;
}
.toast.error { border-left-color: #EF4444; }
.toast.warn { border-left-color: var(--accent); }
@keyframes toast-in { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }

/* ---------- Section rhythm ---------- */
section { padding: 96px 0; position: relative; }
.section-head { max-width: 640px; margin: 0 0 52px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-top: 14px; }

/* ---------- Network-node divider (signature motif, reused) ---------- */
.node-divider {
  display: flex; align-items: center; gap: 10px;
  color: var(--slate-300);
  margin: 0 0 40px;
}
.node-divider .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--slate-300); flex: none; }
.node-divider .line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--slate-300), transparent); }

/* ---------- Forms ---------- */
.form-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: flex-start;
}
.form-rail {
  position: sticky;
  top: calc(var(--header-h) + 32px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-rail a {
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--slate-500);
  border-left: 2px solid transparent;
}
.form-rail a.active {
  color: var(--primary);
  background: rgba(8, 117, 119, 0.06);
  border-left-color: var(--primary);
  font-weight: 600;
}
.form-section {
  scroll-margin-top: calc(var(--header-h) + 24px);
  margin-bottom: 28px;
}
.field-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.field-group.cols-1 { grid-template-columns: 1fr; }
.field-group.cols-3 { grid-template-columns: repeat(3, 1fr); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-700);
}
.field .hint { font-size: 0.78rem; color: var(--slate-500); margin-top: -3px; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field input[type="number"],
.field input[type="password"],
.field input[type="date"],
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.93rem;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
  background: var(--surface);
  color: var(--slate-900);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8, 117, 119, 0.12);
}
.field-invalid { border-color: #EF4444 !important; }
.field-error {
  display: none;
  color: #EF4444;
  font-size: 0.78rem;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.check-item:has(input:checked) {
  border-color: var(--primary);
  background: rgba(8, 117, 119, 0.05);
}
.check-item input { accent-color: var(--primary); width: 16px; height: 16px; }
.radio-row { display: flex; gap: 20px; }
.radio-row label { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; }

/* ---------- Auth / staff pages ---------- */
.auth-shell {
  max-width: 420px;
  margin: 0 auto;
}

/* Dark auth card — used on login.html, forced dark regardless of the
   light/dark toggle, same principle as the hero-3d-* text classes. */
.auth-card-dark {
  background: rgba(19, 27, 44, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(13,235,236,0.06);
}
.auth-card-dark .eyebrow { color: var(--primary-glow); }
.auth-card-dark h1, .auth-card-dark h2, .auth-card-dark h3 { color: #fff; }
.auth-card-dark > p { color: #94A3B8; }
.dark-form .field label { color: #E2E8F0; }
.dark-form .field .hint { color: #94A3B8; }
.dark-form .field input,
.dark-form .field select,
.dark-form .field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
}
.dark-form .field input::placeholder { color: #64748B; }
.dark-form .field input:focus,
.dark-form .field select:focus,
.dark-form .field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8,117,119,0.18);
}
/* Kill the browser's native autofill white-box — this is very likely what
   made the password field look mismatched against the rest of the UI. */
.dark-form .field input:-webkit-autofill,
.dark-form .field input:-webkit-autofill:hover,
.dark-form .field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px rgba(30, 41, 59, 0.9) inset;
  transition: background-color 9999s ease-in-out 0s;
  caret-color: #fff;
}
.dark-form .field-error { color: #FF6B6B; }
.dark-form .btn-ghost-dark { color: #94A3B8; background: none; border: none; font-weight: 600; cursor: pointer; }
.dark-form .btn-ghost-dark:hover { color: #fff; }

.session-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-bottom: 28px;
}
.session-bar .who { display: flex; align-items: center; gap: 10px; }
.avatar-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}
.search-results {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 10px;
}
.search-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  border-bottom: 1px solid var(--slate-200);
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.12s ease;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--slate-100); }
.search-result-item .college-name { font-weight: 600; }
.search-result-item .college-meta { color: var(--slate-500); font-size: 0.8rem; }
.priority-pills { display: flex; gap: 10px; }
.priority-pill {
  flex: 1;
  text-align: center;
  padding: 11px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--slate-500);
}
.priority-pill:has(input:checked) { color: #fff; border-color: transparent; }
.priority-pill.cold:has(input:checked) { background: #3B82F6; }
.priority-pill.warm:has(input:checked) { background: var(--accent); color: var(--slate-900); }
.priority-pill.hot:has(input:checked) { background: #EF4444; }
.priority-pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.selected-college-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(8, 117, 119, 0.05);
  border: 1px solid rgba(8, 117, 119, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.file-drop {
  border: 1.5px dashed var(--slate-300);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  font-size: 0.85rem;
  color: var(--slate-500);
}
.file-drop:hover { border-color: var(--primary); background: rgba(8, 117, 119, 0.03); }
.file-drop.has-file { border-color: var(--secondary); color: var(--slate-700); }
.file-drop input { display: none; }
.captcha-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--slate-100);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.captcha-box [data-captcha-label] {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.progress-track {
  height: 4px;
  background: var(--slate-200);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 6px;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  width: 0%;
  transition: width 0.25s ease;
}
@media (max-width: 900px) {
  .form-shell { grid-template-columns: 1fr; }
  .form-rail { position: static; flex-direction: row; overflow-x: auto; }
  .field-group, .field-group.cols-3 { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Dashboard ---------- */
.stat-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--slate-500);
  font-weight: 600;
}
.stat-card .stat-value { font-size: 1.9rem; }
.chart-card { padding: 24px; }
.chart-card h3 { font-size: 0.95rem; margin-bottom: 4px; }
.chart-card canvas { max-height: 260px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
@media (max-width: 1100px) { .grid-stats { grid-template-columns: repeat(3, 1fr); } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .grid-stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Data table (directory / reports) ---------- */
.table-toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.table-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.table-filters select, .table-filters input {
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
  font-size: 0.85rem;
  background: var(--surface);
  color: var(--slate-900);
}
.data-table-wrap { overflow-x: auto; border: 1px solid var(--slate-200); border-radius: var(--radius-md); }
table.data-table { width: 100%; border-collapse: collapse; font-size: 0.87rem; }
table.data-table th, table.data-table td {
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--slate-200);
}
table.data-table th {
  background: var(--slate-100);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-500);
  cursor: pointer;
  user-select: none;
}
table.data-table th[data-sort-active]::after { content: ' ↓'; }
table.data-table tbody tr { cursor: pointer; transition: background 0.12s ease; }
table.data-table tbody tr:hover { background: var(--slate-100); }
table.data-table tbody tr:last-child td { border-bottom: none; }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
}
.badge-lead, .badge-contacted { background: rgba(100,116,139,0.14); color: var(--slate-700); }
.badge-meeting, .badge-proposal, .badge-negotiation { background: rgba(255,184,0,0.16); color: #B87700; }
.badge-signed, .badge-active { background: rgba(0,200,150,0.16); color: #0B8F6E; }
.badge-dormant, .badge-lost { background: rgba(239,68,68,0.12); color: #DC2626; }
.badge-requested { background: rgba(255,184,0,0.16); color: #B87700; }
.badge-confirmed, .badge-completed { background: rgba(0,200,150,0.16); color: #0B8F6E; }
.badge-rescheduled { background: rgba(8, 117, 119,0.12); color: #087577; }
.badge-cancelled { background: rgba(239,68,68,0.12); color: #DC2626; }
.pagination { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 20px; }
.pagination button {
  width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--slate-200);
  background: var(--surface); cursor: pointer; font-size: 0.85rem;
}
.pagination button.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination button:disabled { opacity: 0.4; cursor: not-allowed; }

/* ---------- Drawer (college detail) ---------- */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(15,23,42,0.45);
  z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(520px, 100%);
  background: var(--bg);
  z-index: 201;
  box-shadow: -20px 0 60px rgba(15,23,42,0.2);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
  padding: 32px;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute; top: 24px; right: 24px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--slate-200); background: var(--surface); cursor: pointer;
}

/* ---------- MOU stepper ---------- */
.mou-stepper { display: flex; flex-wrap: wrap; gap: 6px; margin: 18px 0; }
.mou-step {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  background: var(--slate-100);
  color: var(--slate-500);
  border: 1px solid transparent;
}
.mou-step.current { background: var(--primary); color: #fff; }
.mou-step.passed { background: rgba(8, 117, 119,0.1); color: var(--primary); }
.activity-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--slate-200);
  font-size: 0.85rem;
}
.activity-item:last-child { border-bottom: none; }
.activity-item .who { color: var(--slate-500); font-size: 0.78rem; }

/* ---------- Print ---------- */
@media print {
  .site-header, .mobile-menu, .table-toolbar, .pagination, footer, .no-print { display: none !important; }
  body { background: #fff; }
  .card { box-shadow: none; border: 1px solid #ccc; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
