* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px;
}

.brand {
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 40px;
  color: #444;
}

h1 {
  font-weight: 300;
  font-size: 42px;
  margin-bottom: 25px;
}

.tagline {
  font-size: 18px;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
}

.divider {
  width: 60px;
  height: 1px;
  background: #ddd;
  margin: 50px auto;
}

.coming-soon {
  font-size: 16px;
  margin-bottom: 30px;
  color: #666;
}

.contact {
  font-size: 15px;
  color: #555;
}

.contact a {
  text-decoration: none;
  color: #222;
  border-bottom: 1px solid #ddd;
  transition: opacity 0.3s ease;
}

.contact a:hover {
  opacity: 0.6;
}

footer {
  padding: 30px 20px;
  font-size: 13px;
  color: #888;
}
