
/* Redshift Space Systems website stylesheet */
:root{
  --red-dark:#9E1B1F;
  --red-bright:#D7262E;
  --off-black:#0F0F0F;
  --off-white:#F2F2F2;
  --light-grey:#b0b0b0;
  --muted:#9a9a9a;
  --max-width:1080px;
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family: "Exo", system-ui;
  background:linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                             url("https://rubin.canto.com/direct/image/dqpcgvvvnt6159r4ctd7uksc7e/vedqkm-UQ9xsf7Dgs47e1Mrk4XA/m800/2050") no-repeat center center fixed;
  background-size:cover;
  color:var(--off-white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:48px 24px;
}

.container{
  width:100%;
  max-width:var(--max-width);
  text-align:center;
  margin:0 auto;
}

.brand {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin-bottom:28px;
}

.brand img.logo-main{
  width:320px;
  max-width:60%;
  height:auto;
  image-rendering:optimizeQuality;
}

.brand img.logo-icon{
  width:72px;
  height:72px;
  object-fit:contain;
}

h1{
  font-size:36px;
  letter-spacing:0.6px;
  margin-bottom:12px;
  font-weight:600;
}

.lead{
  color:var(--light-grey);
  margin-bottom:22px;
  font-size:16px;
  line-height:1.5;
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}

.countdown{
  display:flex;
  gap:12px;
  justify-content:center;
  margin:28px 0 18px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  border:2px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  background:rgba(40,40,40,0.4);
  color:var(--off-white);
}

.background-credit {
  position: fixed;
  bottom: 8px;
  right: 12px;
  font-size: 10px;
  color: #EEE;
  opacity: 0.8;
}

.footer{
  margin-top:40px;
  color:var(--muted);
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

@media (max-width:560px){
  h1{font-size:24px}
  .brand img.logo-main{width:200px}
  .brand img.logo-icon{width:48px;height:48px}
  body{ /* disable fixed background on mobile */
    background-attachment: scroll;
  }
}
