:root{
  --bg: #0A0A0A;
  --ink: #FFFFFF;
  --muted: rgba(255,255,255,.72);
  --soft: rgba(255,255,255,.55);
  --line: rgba(255,255,255,.10);
  --max: 860px;
}

*{ box-sizing: border-box; }
html, body{ height:100%; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 22px 34px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

/* HERO */
.hero{
  text-align: center;
  padding: 18px 0 6px;
}

.logo{
  width: min(520px, 88vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 22px 55px rgba(0,0,0,.55));
}

.coming{
  margin: 18px auto 0;
  text-align: center;
  color: var(--muted);
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .82rem;
}


/* SECTIONS */
.section{
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 26px;
}

/* make only socials centered */
.section--center{
  text-align: center;
}

.section--center p{
  margin-left: auto;
  margin-right: auto;
  max-width: 68ch;
}

h2{
  margin: 0 0 12px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

p{
  margin: 0 0 12px;
  color: var(--muted);
  max-width: 72ch;
}

.tagline{
  margin: 18px 0 0;
  text-align: center;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: italic;
  color: rgba(255,255,255,.78);
  letter-spacing: -0.01em;
}


.muted{ color: var(--soft); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.btn:hover{
  transform: translateY(-1px);
}

.btn.primary{
  background: rgba(255,255,255,.92);
  color: #0A0A0A;
  border-color: rgba(255,255,255,.28);
}

.btn.primary:hover{
  background: rgba(255,255,255,1);
}

.signup{
  margin-top: 18px;
  display: flex;
  justify-content: center;
}


/* SOCIALS */
.socials{
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: center; /* <-- this centres the links */
  margin-top: 4px;
}

.socials a{
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 2px;
  font-weight: 560;
}

.socials a:hover{
  border-bottom-color: rgba(255,255,255,.85);
}

/* FOOTER */
.footer{
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
  color: var(--soft);
  font-size: .92rem;
}

@media (max-width: 520px){
  .wrap{ padding-top: 44px; }
  .section{ padding-top: 22px; }
}
