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

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0e1116;
  color: #ffffff;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 900px;
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 3rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.7;
  margin-bottom: 40px;
}

.cta {
  display: inline-block;
  padding: 14px 28px;
  background: #ff5a2f;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta:hover {
  opacity: 0.85;
}
