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

body {
  font-family: 'Inter', sans-serif;
  background-color: #f6f1f1;
  color: #eee;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

header {
  max-width: 600px;
}

.logo {
  display: block;
  margin: 0 auto 1rem auto;
  max-width: 350px;
  width: 100%;
  height: auto;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #ccc;
}

.cta-button {
  text-decoration: none;
  color: #111;
  background-color: #eee;
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #ddd;
}

footer {
  position: absolute;
  bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

