* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  font-family: sans-serif;
}

.bg {
  position: fixed;
  inset: 0;

  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;

  z-index: -2;

  background-color: #050914; /* deep navy fallback */

  opacity: 1;
  filter: none;
  transform: none;
}


/* DARK OVERLAY */
/* .overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, 0.65);
  z-index: -1;
} */


/* CONTENT ON TOP */
.content {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.container {
  position: relative;
  text-align: center;
  max-width: 700px;
  padding: 20px;
  z-index: 1;
}

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

.subline {
  font-size: 1.1rem;
  color: #b8c0d9;
  margin-bottom: 30px;
}

.cta {
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #5b7cff, #7a5cff);
  color: white;
  cursor: pointer;
}

.footer {
  position: absolute;
  bottom: 10px;
  width: 50%;
  text-align: center;
  z-index: 1;
}

.footer span {
  font-size: 0.4rem;
  letter-spacing: 2.2px;
  color: rgba(200, 210, 255, 0.2);
}