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

body {
  font-family: "Lato", sans-serif;
  background:
    radial-gradient(
      circle at center,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.6) 50%,
      rgba(0,0,0,0.95) 100%
    ),
    url("../images/honeycomb-pattern.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  overflow-x: hidden;
  overflow-y: auto;
}

body, button, input, textarea, select {
  font-family: "Lato", sans-serif;
}
a, li, ul { font-family: inherit; }

section {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 24px;
}

section .header {
  padding: 10px 20px 0;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

section .header a img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}

.vstack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.hstack {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 48px;
}


section > .hstack {
  justify-content: center;
  gap: 15vw;

  width: 100%;
  margin: 0 auto;

  align-items: flex-start;
}

section > .hstack > .vstack:first-child {
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 50vh;
}

h1 {
  color: white;
  font-family: "Lato", sans-serif;
  font-weight: 700;  /* or 900 for extra punch */
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  text-align: center;
  margin-top: 20%;
}


.cta-button img {
  height: 55px;
  width: auto;
  display: block;
  object-fit: contain;

  transition: filter 0.25s ease, transform 0.25s ease;
}


.cta-button:hover img {
  filter: drop-shadow(0 0 12px rgba(255, 180, 60, 0.8));
  transform: translateY(-1px);
}

#mission-screen {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  section > .hstack {
    flex-direction: column;
    align-items: flex-start;
  }
  h1 {
    margin-top: 10%;
  }
}


@media (max-width: 767px) {
   
  .phone-mock {
    display: none;
  }

  section > .hstack {
    gap: 0;
    align-items: center;
  }

  section > .hstack > .vstack:first-child {
    height: auto;
  }

  h1 {
    margin-top: 12vh;
  }

  .cta-button img {
    height: 44px;
  }

  section .header a img {
    height: 30px;
  }

 
}
