/* Reset & Body Styles */
html, body {
  margin: 0;
  padding: 0;
  background: black; /* Full screen background is solid black */
  font-family: 'Segoe UI', sans-serif;
  color: white;
  height: 100%;
}

/* Main Container */
.container {
  
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* Full height */
  padding: 10px;
  background-image:url('bg.jpg');  /* Global bg */
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
}

  background-image: 
    url('planet.png'),         
    url('bg.jpg');          
  background-position: 
    right center,              
    center center;             
  background-repeat: 
    no-repeat, 
    repeat;                    
  background-size: 
    contain, 
    cover;                  
  position: relative;
}
/* Planet Image */
.planet {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 500px;
  max-width: 50%;
  z-index: 0;
}

/* Content Block */
.content {
  position: relative;

  max-width: 520px;
  padding: 40px;
  border-radius: 12px;

  background-image: url('planet.png');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;


  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

/* Headline */
.content h1 {
  font-size: 36px;
  margin-top: 0;
  color: #79dfff;
}

.price {
  font-weight: bold;
  color: #5ad6ff;
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.checklist li {
  margin: 10px 0;
  font-size: 16px;
}

/* Form */
.contact-form {
  margin: 30px 0;
}

.contact-form h2 {
  color: #79dfff;
  margin-bottom: 10px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  background: #42c9ff;
  color: black;
  border: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #1fb2f5;
}

/* Pitch Section */
.pitch h2 {
  color: #79dfff;
  margin-top: 30px;
}

.pitch p {
  line-height: 1.6;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  .planet {
    position: relative;
    width: 100%;
    max-width: 320px;
    right: 0;
    top: 0;
    transform: none;
    margin: 20px auto;
  }

.content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 40px;
  border-radius: 12px;

  background-image: url('planet.png');
  background-repeat: no-repeat;
  background-position: right  top 80px;
  background-size: contain;
}


  background-color: rgba(0, 0, 0, 0.6); /* Darkens it for readability */
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}
}
.logo {
  text-align: center;
  margin-bottom: 30px;
}

.logo img {
  width: 480px; /* was 300px */
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 12px #00f5ff);
  margin-bottom: 20px;
}

.site-footer {
  background-color: #0a0a0a;
  color: #ccc;
  text-align: center;
  padding: 10px 10px;
  font-size: 14px;

}

.site-footer a {
  color: #66ccff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}