*{box-sizing:border-box}
html,body{margin:0;min-height:100%}
body{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  background:#0b0f14;
  color:#f4f7fb;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif
}
.wrap{
  flex:1;
  display:grid;
  place-items:center;
  padding:32px 18px
}
.card{
  width:min(680px,100%);
  text-align:center;
  padding:52px 30px;
  border:1px solid #252b34;
  border-radius:20px;
  background:#11161d;
  box-shadow:0 24px 70px rgba(0,0,0,.35)
}
.logo{
  display:inline-block;
  padding:8px 12px;
  border:1px solid #334155;
  border-radius:9px;
  color:#93c5fd;
  font-size:13px;
  font-weight:800;
  letter-spacing:.16em
}
h1{
  margin:20px 0 12px;
  font-size:clamp(34px,7vw,56px);
  line-height:1.05
}
p{
  margin:0;
  color:#9ca9b8;
  font-size:18px
}
.links{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap
}
a{
  color:#0b0f14;
  background:#93c5fd;
  text-decoration:none;
  font-weight:700;
  padding:11px 16px;
  border-radius:10px
}
a:hover{filter:brightness(1.08)}
footer{
  padding:20px;
  text-align:center;
  color:#667382;
  font-size:13px
}
