body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
}

.background {
  background-image: url('your-background.jpg'); /* your background image */
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  position: relative;
  z-index: 0;
}

.overlay {
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  padding: 3rem 1rem;
}

.wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.logo {
  max-width: 200px;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pitch {
  font-size: 1rem;
  line-height: 1.6;
  margin: 1.5rem 0;
}

.cta-label {
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.signup-form input[type="email"] {
  padding: 0.75rem;
  width: 100%;
  max-width: 400px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
}

.signup-form button {
  background-color: #000;
  color: #fff;
  border: 1px solid #ccc;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
}

.signup-form button:hover {
  background-color: #222;
}

.disclaimer {
  font-size: 0.9rem;
  color: #aaa;
}

footer {
  padding: 2rem;
  font-size: 0.85rem;
  background-color: #111;
  color: #aaa;
  text-align: left;
  line-height: 1.5;
  border-top: 1px solid #333;
  position: relative;
  z-index: 1;
}