/**
 * Interactive App Quick Preview Modal Styles
 */
.app-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.82);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.app-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.app-modal-dialog {
  background: rgba(18, 27, 44, 0.95);
  border: 1px solid rgba(0, 208, 132, 0.3);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 208, 132, 0.15);
  transform: scale(0.92) translateY(15px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.app-modal-overlay.open .app-modal-dialog {
  transform: scale(1) translateY(0);
}
.app-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.btn-modal-close {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: #94a3b8;
  font-size: 1.4rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.btn-modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}
.app-modal-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px;
}
.modal-info-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #00d084;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.modal-info-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #cbd5e1;
}
.modal-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.modal-stat-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.modal-stat-label {
  font-size: 0.72rem;
  color: #94a3b8;
  display: block;
  margin-bottom: 4px;
}
.modal-stat-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
}
.modal-stat-val.highlight {
  color: #00d084;
}
.app-modal-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.modal-risk-note{padding:10px 12px;border-right:3px solid #fbbf24;background:rgba(251,191,36,.08);border-radius:7px;color:#d9c898;font-size:.77rem;line-height:1.7}
.modal-project-facts{display:flex;flex-wrap:wrap;gap:7px}.modal-project-facts span{padding:5px 8px;border:1px solid rgba(255,255,255,.08);border-radius:7px;color:#aebacc;font-size:.72rem}.modal-project-facts b{color:#e2e8f0}
