  /* Dashboard — holographic HUD treatment. Same crimson/holo language as
     holo-theme.css (nav, modals, buttons) applied to the dashboard's own
     content: glass tiles, animated accent bars, glow-on-hover rows. Kept
     in this file (not holo-theme.css) since these selectors are unique to
     #dashboard and don't need to win a cascade fight. */
  #dashboard {
    flex: 1;
    overflow-y: auto;
    padding: 20px 28px 40px;
    position: relative;
    background:
      radial-gradient(ellipse 900px 420px at 15% -10%, rgba(62,90,76,0.08), transparent 60%),
      radial-gradient(ellipse 700px 380px at 100% 0%, rgba(228,221,206,0.06), transparent 55%);
    background-attachment: local;
  }
  #dashboard h2 {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 12px;
    padding-left: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #dashboard h2::before {
    content: "";
    position: absolute; left: 0; top: 1px; bottom: 1px; width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, #3E5A4C, #6b8f7a, #9B958A, #E4DDCE, #3E5A4C);
    animation: holo-spin 5s linear infinite;
    box-shadow: 0 0 8px -1px rgba(62,90,76,0.8);
  }

  /* Stat tiles — glass panels with a holographic top edge and a
     gradient-text numeral (same treatment as #agent-badge). */
  .stat-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-bottom: 26px; }
  .stat-tile {
    background: linear-gradient(160deg, rgba(29,33,44,0.9), rgba(22,25,34,0.75));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .stat-tile::before {
    content: "";
    position: absolute; left: 0; right: 0; top: 0; height: 2px;
    background: linear-gradient(90deg, #3E5A4C, #6b8f7a, #9B958A, #E4DDCE, #3E5A4C);
    animation: holo-spin 6s linear infinite;
  }
  .stat-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(85,124,104,0.35);
    box-shadow: 0 10px 24px -12px rgba(62,90,76,0.45);
  }
  .stat-tile .icon { font-size: 13px; opacity: 0.6; margin-bottom: 6px; }
  .stat-tile .value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(120deg, var(--text), #9B958A 60%, #E4DDCE);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .stat-tile .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-dim); margin-top: 4px; }

  .dashboard-section { margin-bottom: 28px; }

  /* GPU agent grid — same glass-tile language as .stat-tile, one card per
     enrolled linux-agent box. */
  .gpu-agent-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
  .gpu-agent-card {
    background: linear-gradient(160deg, rgba(29,33,44,0.9), rgba(22,25,34,0.75));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    animation: list-row-in 0.3s ease both;
  }
  .gpu-agent-grid .gpu-agent-card:nth-child(1) { animation-delay: 0ms; }
  .gpu-agent-grid .gpu-agent-card:nth-child(2) { animation-delay: 30ms; }
  .gpu-agent-grid .gpu-agent-card:nth-child(3) { animation-delay: 60ms; }
  .gpu-agent-grid .gpu-agent-card:nth-child(4) { animation-delay: 90ms; }
  .gpu-agent-grid .gpu-agent-card:nth-child(n+5) { animation-delay: 120ms; }
  @media (prefers-reduced-motion: reduce) {
    .gpu-agent-card { animation: none; }
  }
  .gpu-agent-card:hover {
    transform: translateY(-2px);
    border-color: rgba(85,124,104,0.35);
    box-shadow: 0 10px 24px -12px rgba(62,90,76,0.45);
  }
  .gpu-agent-card .name-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-family: var(--font-display); font-size: 13px; font-weight: 600; }
  .gpu-agent-card .gpu-line { font-size: 11.5px; color: var(--text-dim); margin-top: 8px; }
  .gpu-agent-card .meta-row { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-dim); margin-top: 6px; }
  .gpu-agent-card .actions { margin-top: 10px; }
  .gpu-agent-card .secondary-btn { padding: 5px 12px; font-size: 11.5px; }

  /* Compact link row replacing what used to be full inline lists (current
     operations, local apps, a projects grid) -- the command bar answers
     those questions conversationally now, this is just fast navigation. */
  .dashboard-quicklinks { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 26px; }
  .quicklink {
    display: flex; align-items: center; gap: 8px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 12.5px;
    color: var(--text);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  }
  .quicklink:hover {
    border-color: var(--accent-2);
    box-shadow: 0 8px 20px -10px rgba(62,90,76,0.45);
    transform: translateY(-2px);
  }
  .quicklink .icon-svg { width: 15px; height: 15px; }
  .quicklink-primary {
    background: linear-gradient(160deg, rgba(62,90,76,0.22), rgba(62,90,76,0.08));
    border-color: rgba(85,124,104,0.4);
    font-weight: 600;
  }
  .quicklink-primary .icon-svg { color: var(--verdigris); }
  .quicklink-primary:hover { border-color: var(--verdigris); }

  .project-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
  .project-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    animation: list-row-in 0.3s ease both;
  }
  .project-cards .project-card:nth-child(1) { animation-delay: 0ms; }
  .project-cards .project-card:nth-child(2) { animation-delay: 30ms; }
  .project-cards .project-card:nth-child(3) { animation-delay: 60ms; }
  .project-cards .project-card:nth-child(4) { animation-delay: 90ms; }
  .project-cards .project-card:nth-child(5) { animation-delay: 120ms; }
  .project-cards .project-card:nth-child(n+6) { animation-delay: 150ms; }
  @media (prefers-reduced-motion: reduce) {
    .project-card { animation: none; }
  }
  .project-card:hover {
    border-color: var(--accent-2);
    box-shadow: 0 8px 20px -10px rgba(62,90,76,0.45);
    transform: translateY(-2px);
  }
  .project-card .name { font-size: 13.5px; font-weight: 700; }
  .project-card .path { font-size: 10.5px; color: var(--text-dim); font-family: var(--mono); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .project-card .stats-row { display: flex; gap: 12px; margin-top: 10px; font-size: 11.5px; color: var(--text-dim); }
  .project-card .stats-row strong { color: var(--text); }
  .project-card .last-active { font-size: 10.5px; color: var(--text-dim); margin-top: 8px; }
  .project-card .progress-track {
    margin-top: 8px;
    height: 5px;
    border-radius: 3px;
    background: var(--panel-2);
    overflow: hidden;
  }
  .project-card .progress-fill {
    display: block;
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2) 60%, #E4DDCE);
  }

  /* Changelog view + the "What's New" dashboard widget share these entry styles */
  .changelog-entry { background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; margin-bottom: 12px; }
  .changelog-entry-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
  .changelog-version { font-size: 14px; font-weight: 700; }
  .changelog-date { font-size: 11px; color: var(--text-dim); }
  .changelog-changes { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 5px; }
  .changelog-changes li { font-size: 12.5px; line-height: 1.5; color: var(--text); }

  #changelog-view { flex: 1; overflow-y: auto; padding: 20px 28px; max-width: 720px; }
  #changelog-view h2 { font-size: 15px; margin: 0 0 4px; }
  #changelog-view .sub { font-size: 12.5px; color: var(--text-dim); margin-bottom: 18px; }
