/*//////////////////////////////////////////////////////////
  47Flare — MODAL
//////////////////////////////////////////////////////////*/

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.50);
  display: none;
  z-index: 70;
  padding: 18px;
  align-items: center;
  justify-content: center;
}
.modal[aria-hidden="false"] { display: flex; }

.modal-card {
  width: min(560px, 96vw);
  background: var(--card2);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px;
}

.modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.modal-title { font-weight: 800; letter-spacing: -0.2px; }
.modal p { margin: 8px 0 14px; color: var(--muted); line-height: 1.55; }

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,199,182,0.35);
  background: linear-gradient(135deg, rgba(0,199,182,0.18), rgba(0,199,182,0.08));
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}
.cta:hover { border-color: rgba(0,199,182,0.55); }
