  /* ===== SLIDE 2: HIGHLIGHTS ===== */
  .metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
    width: 100%;
  }

  .metric-card {
    background:#1E1E1E;
    border-radius: 0;
    border: 1px solid var(--border);
    box-shadow: none;
    padding: 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .metric-value {
    font-family: var(--font-mono);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
  }

  .metric-value.blue { color: var(--blue); }
  .metric-value.green { color: var(--green); }

  .metric-label {
    font-size: 0.74rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.3;
  }
