
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <title>Maintenance</title>
  <meta name="robots" content="noindex, nofollow" />
  <style>
	html, body {
	  height: 100%;
	  margin: 0;
	}
	body {
	  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
	  background: #0f172a; /* slate-900 */
	  color: #e5e7eb;       /* gray-200 */
	  display: grid;
	  place-items: center; /* perfect vertical + horizontal centering */
	  line-height: 1.5;
	}
	.card {
	  width: 80%;          /* mobile: max ~90% of viewport */
	  max-width: 600px;    /* desktop: cap at 800px */
	  text-align: center;
	  padding: 2rem 1.5rem;
	  background: rgba(255,255,255,0.06);
	  border: 1px solid rgba(255,255,255,0.12);
	  border-radius: 14px;
	  backdrop-filter: blur(4px);
	  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
	}
	.logo {
	  display: block;
	  margin: 0 auto 1rem auto;
   

	  height: auto;
	}
	h1 {
	  margin: 0.25rem 0 0.5rem;
	  font-size: clamp(1.5rem, 2.5vw + 1rem, 2.25rem);
	}
	p {
	  margin: 0.25rem 0 0;
	  font-size: clamp(1rem, 0.7vw + 0.9rem, 1.125rem);
	  opacity: 0.95;
	}
	.muted { opacity: 0.75; font-size: 0.95em; }
	@media (prefers-color-scheme: light) {
	  body { background: #f1f5f9; color: #0f172a; }
	  .card { background: #ffffff; border-color: #e2e8f0; box-shadow: 0 10px 30px rgba(2,6,23,0.12); }
	}
  </style>
</head>
<body>
  <main class="card" role="main" aria-label="Maintenance notice">
	<img class="logo" src="susana_logo.png" alt="Project logo" />
	<h1></h1>
	<p class="muted">
	  A scheduled server migration is currently in progress. Our services are temporarily unavailable.
	  Please check back a little later.
	</p>
	<p class="muted">Thank you for your patience – we&rsquo;ll be back soon. <br /><br />Yours sincerely<br />
SuSanA Secretariat</p>
  </main>
</body>
</html>
