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

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: #fafafa;
  color: #1a1a2e;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
}

.logo {
  width: 260px;
  margin-bottom: 2.5rem;
}

.tagline {
  font-size: 1.125rem;
  font-weight: 300;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1.5px solid #4B3BF5;
  color: #4B3BF5;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s;
}

.contact:hover {
  background: #4B3BF5;
  color: #fff;
}
