/**
 * WPHeal Pro - Main Design & Layout Engine
 * Optimized for Core Web Vitals (Zero CLS, Minimal TTFB, Instant LCP)
 */

.engineering-card {
  background-color: var(--wpheal-surface-card, #ffffff);
  border: 1px solid var(--wpheal-border-color, #e2e8f0);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow;
}

.engineering-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.terminal-bg {
  background-color: #0f172a;
}

.terminal-header {
  background-color: #1e293b;
}

.glow-sos {
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.35);
}

.glow-sos:hover {
  box-shadow: 0 0 22px rgba(220, 38, 38, 0.55);
}

.accent-gradient {
  background: linear-gradient(90deg, #7B61FF, #D946EF, #FF7A59);
}

#wpheal-terminal-screen::-webkit-scrollbar {
  width: 6px;
}

#wpheal-terminal-screen::-webkit-scrollbar-track {
  background: #0f172a;
}

#wpheal-terminal-screen::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 3px;
}
