.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px 12px;
}

.panel-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.panel-copy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.panel-body {
  flex: 1;
  min-height: 0;
  padding: 0 24px 24px;
  overflow: auto;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.hero-strip-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--panel-soft);
  border: 1px solid var(--line);
}

.status-main {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.stack {
  display: grid;
  gap: 14px;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 280px;
  height: 100%;
  padding: 36px 20px;
  text-align: center;
}

.empty-state-compact {
  display: grid;
  place-items: center;
  min-height: 120px;
  height: 100%;
  padding: 20px 16px;
  text-align: center;
}

.empty-state-compact .empty-orb {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
}

.empty-state-compact .empty-orb svg {
  width: 24px;
  height: 24px;
}

.empty-state-compact .empty-title {
  font-size: 16px;
}

.empty-state-compact .empty-copy {
  font-size: 13px;
  margin-top: 4px;
}

.empty-orb {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  background: rgba(14, 116, 144, 0.08);
  color: var(--accent);
}

.empty-orb svg {
  width: 36px;
  height: 36px;
}

.empty-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.empty-copy {
  margin: 8px auto 0;
  max-width: 480px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-6 {
  margin-top: 6px;
}

.gap-12 {
  gap: 12px;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.muted {
  color: var(--muted);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

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