/* --- DANTROPY centered hero --- */
.hero{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:72px 18px;
  gap:14px;
}

.hero-logo{
  width:min(520px, 86vw);
  height:auto;
  display:block;
  margin-bottom:8px;
}

.hero-name{
  font-size: clamp(28px, 4.5vw, 44px);
  letter-spacing: 0.18em;
  font-weight: 800;
  margin-top: 6px;
}

.hero-slogan{
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #333;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  margin-top: 4px;
}

.hero-text{
  max-width: 56ch;
  color: #222;
  font-size: 16px;
  margin: 10px 0 2px;
}

.hero-strong{
  font-weight: 800;
}

.hero-soon{
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.hero-mail{
  margin-top: 10px;
  display:inline-block;
  text-decoration:none;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #111;
  font-weight: 800;
  color: #111;
}

.hero-mail:hover{
  background:#111;
  color:#fff;
}
