/* Maintenance page styles */
:root{
  --brand: #04c4cc; /* primary brand color from repo */
  --muted: #6b7280;
  --bg: #ffffff;
  --text-dark: #0b1220;
}
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;background:var(--bg);color:var(--text-dark)}
.center{min-height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:2rem;text-align:center}
.logo{width:220px;max-width:60%;height:auto;margin-bottom:1.25rem}
h1{font-size:1.75rem;color:var(--brand);margin-bottom:0.5rem}
.lead{font-size:1.05rem;color:var(--text-dark);margin-bottom:0.75rem}
.muted{color:var(--muted);font-size:.95rem}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}
@media(min-width:768px){h1{font-size:2.25rem}}
