/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #3c1053, #ad5389);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero {
  background: rgba(255,255,255,0.1);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 360px;
}
.logo {
  max-width: 120px;
  margin-bottom: 1rem;
}
h1 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.tagline {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.contact a {
  color: #ffd15c;
  text-decoration: none;
  font-weight: bold;
}
.contact {
  margin-bottom: 0.5rem;
}
.domain {
  font-size: 0.85rem;
  opacity: 0.8;
}

