/* RESET + GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  background-color: #000;
  height: 100%;
  overflow-x: hidden;
}

/* HERO SECTION */
.hero {
  /*background: url('background.png') no-repeat center center / cover;*/
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* OVERLAY LAYER */
.overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 2rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* BRANDING */
.pitch .logo {
  width: 220px;
  margin-bottom: 1rem;
}

.branding h1 {
  font-size: 2.5rem;
  color: #fff;
}

.tagline {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-top: 0.5rem;
}

/* PITCH SECTION */
.pitch {
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
}

.pitch h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.pitch p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

/* FOOTER */
footer {
  margin-top: auto;
  padding-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .branding h1 {
    font-size: 2rem;
  }
  .pitch h2 {
    font-size: 1.5rem;
  }
  .pitch p {
    font-size: 0.95rem;
  }
}
