
/* Redshift Space Systems website stylesheet */
:root{
  --bg:#0F0F0F;
  --red-dark:#9E1B1F;
  --red-bright:#D7262E;
  --white:#F2F2F2;
  --muted:#9aa0a6;
  --max-width:980px;
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family: "Exo", system-ui;
  background:var(--bg);
  color:var(--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(--muted);
  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);
}

.btn-primary{
  background:linear-gradient(90deg,var(--red-bright),var(--red-dark));
  color:var(--white);
}

.btn-ghost{
  background:transparent;
  color:var(--white);
}

.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}
}
