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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: #0a0a0f;
  color: #d4d4d8;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  width: 100%;
  padding: 2rem;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #e4e4e7;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.tagline {
  font-size: 1.1rem;
  color: #71717a;
  font-style: italic;
  margin-bottom: 2rem;
}

.divider {
  width: 60px;
  height: 1px;
  background: #27272a;
  margin: 0 auto 2rem;
}

.description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #a1a1aa;
  margin-bottom: 3rem;
}

.coming-soon {
  font-size: 0.9rem;
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  .description {
    font-size: 1rem;
  }
}
