:root{
  --bg:#06182d;
  --text:#f5f7fa;
  --muted:#8290a0;
  --line:rgba(255,255,255,.10);
}

*{box-sizing:border-box}
html,body{margin:0;min-height:100%;}
body{
  min-height:100vh;
  background:var(--bg);
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
}
a{color:inherit;text-decoration:none}

.maintenance{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  background:
    radial-gradient(circle at 50% 42%,rgba(255,255,255,.035),transparent 32%),
    var(--bg);
}

.content{
  width:min(680px,calc(100% - 40px));
  margin:auto;
  text-align:center;
  padding:72px 0;
}

.slano{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  opacity:.96;
}
.slano img{
  display:block;
  width:118px;
  height:auto;
}

.separator{
  width:32px;
  height:1px;
  margin:30px auto 27px;
  background:var(--line);
}

.label{
  margin:0 0 14px;
  color:#9ba7b5;
  font-size:10px;
  font-weight:700;
  letter-spacing:.22em;
}

h1{
  margin:0;
  font-size:clamp(38px,6vw,64px);
  line-height:1.03;
  letter-spacing:-.045em;
  font-weight:700;
}

.text{
  margin:20px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

footer{
  min-height:72px;
  padding:18px clamp(22px,5vw,72px);
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:20px;
  color:#677689;
  font-size:10px;
}

footer span:nth-child(2){text-align:center}
footer span:nth-child(2) a{color:#aab4c0;font-weight:700}
footer>a{text-align:right;color:#8794a4}
footer a:hover{color:#fff}

@media(max-width:700px){
  .content{padding:56px 0}
  .slano img{width:104px}
  footer{
    min-height:auto;
    grid-template-columns:1fr;
    text-align:center;
    gap:8px;
    padding:20px;
  }
  footer span:nth-child(2),footer>a{text-align:center}
}
