* {
    border: 1px dashed hotpink;
}
html {
  border: none;
}
body {
  margin: 0;
  padding: 40px;
  background: #F8F8F4;
  color: #000;
  font-family: 'Courier New', Courier, monospace;
  font-size: 18px;
  line-height: 1.5;
}

main {
  max-width: 1080px;
  margin: auto;
  border: none;
}

h1 {
  font-size: 74px;
  font-weight: 900;
  margin-bottom: 40px;
  text-align: center;
}
h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-align: center; 
}
p {
  margin-bottom: 24px;
}

form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input[type="email"] {
  padding: 10px;
  border: 2px solid #000;
  background: #fff;
  font-family: inherit;
  font-size: 16px;
}
textarea {
    padding: 10px;
    border: 2px solid #000;
    background: #fff;
    font-family: inherit;
    font-size: 16px;
    resize: none;
}

button {
  padding: 10px;
  border: 2px solid #000;
  background: #fff;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
}

button:hover {
  background: #000;
  color: #fff;
}

.brandbook {
  border-radius: 10rem;
  margin-bottom: .5rem;
  border: 12px solid black;
}

.x {
    opacity: 0.4;
    position: absolute;
    color: darkred;
    font-size: 100vh;
    top: 20%;
    left: 25%;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}
.traction-grid {
    text-align: center;
    border-color: mediumslateblue;
}
.business-model {
    width: fit-content;
    margin: 2rem auto;
    text-align: left;
    list-style-type: circle;
}
.legal-grid {
    text-align: center; 
    margin-top: 2rem; 
    padding: 1rem;
    border: none;
}
.legal-grid p {
    border: none;
    font-size: larger;
}
.business-contact {
    font-size: xx-large;
    color: indianred;
    font-weight: bold;
    margin: auto;
    text-align: center;
}
.sales-grid {
  padding: 0.5rem;
  border: 55px dashed indianred;
}
.sales-grid p {
  margin: 0;
  overflow-x: hidden;
}
.note {
  margin-top: 40px;  
  text-align: center;;
  font-size: 14px;
  color: #444;
  border: none;
  p {
    border: none;
  }
}

.revenue-grid {
    display: flex; 
    flex-wrap: wrap;
}
.branding-101 {
    width: auto;
    margin: auto;
    flex: 1;
    text-align: center;
    z-index: -2;
}
.branding-102 {
    flex: 1;
}
.full-on {
    text-align: justify;
    font-size: 3vw;
}
.full-on:after {
    
    display: inline-block;
    width: 100%;
}

.vision-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: space-between; 
}
.vision-grid img {
    flex: 1 1 calc(33.333% - 10px);
    object-fit: cover;
    max-width: 100%;
    max-height: 350px;
    height: auto;
    border: 2px solid black;
    background: #fff;    
}

.bmc-btn-container {  
  margin: 2rem;
  text-align: center;
  border: none;
}
.bmc-btn-container span {
  border: none;
}
.hate-bots {
  font-size: 0.0001px;
  opacity: 0.0001;
}

@media (max-width: 768px) {
    .vision-grid {
      flex-direction: column;
    }
  
    .vision-grid img {
      flex: 1 1 100%;
    }

    .revenue-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .branding-101,
    .branding-102 {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 1rem;
    }

    .branding-101 {
      backdrop-filter: invert(1);
    }

    .full-on {
        font-size: 6vw;
    }
  }
  @media (max-width: 480px) {
    body {
      font-size: 16px;
      line-height: 1.4;
      letter-spacing: 0.5px;
      padding: 2rem;
    }
  
    h1 {
      font-size: 2.1rem;
    }
  
    h2 {
      font-size: 1.5rem;
      backdrop-filter: invert(1);
      color: blanchedalmond;
    }
    .brandbook {
      border: 6px solid black;
    }
    .branding-101 img {
      height: auto;
      object-fit: cover;
      width: 100%;
    }
    .x {
      left: 0;
      top: 15%;
      font-size: 75vh;
    }
    .sales-grid {
      padding: 0.3rem;
      border: 10px dashed indianred;
    }
  }