:root {
  --bp-mobile: 600px;
  --bp-medium: 960px;
  --bp-hd: 1280px;
  --bp-fhd: 1920px;
  --black: #111111;
  --green: #5ddf9b;
  --green-light: #aff6d1;
  --blue: #96cbf0;
  --blue-light: #cbeaff;
  --red: #e36456;
  --red-light: #ffb3ab;
  --orange: #f8cd5f;
  --violet: #574eb4;
  --gray: #9c9c9c;
  --light-gray: #f0f0f0;
  --medium-gray: #bbbbbb;
  --white: #ffffff;
  --font-m-xxs: 12px;
  --font-m-xs: 14px;
  --font-m-s: 16px;
  --font-m-l: 22px;
  --font-m-xl: 37px;
  --font-root: 18px;
  --font-s: 14px;
  --font-m: 24px;
  --font-l: 30px;
  --font-xl: 55px;
  --font-xxl: 70px;
  --gutter-h: 24px;
  --gutter-v: 32px;
  --body-max-width: 100%;
  --header-h: 72px;
  --gutter-card-h: 24px;
  --gutter-card-v: 30px;
}

@font-face {
  font-family: "Baste";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/BasteA-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/NunitoSans-Regular.ttf") format("truetype");
}
body {
  margin: 0;
  padding: 24px;
  font-family: "Nunito";
  font-size: 18px;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
  padding: 24px;
  height: 66.666vh;
  border-radius: 8px;
  background: linear-gradient(290deg, var(--green) 3%, var(--blue) 34%, var(--white) 90%) no-repeat bottom left;
}
.hero h1 {
  font-family: "Baste";
  text-transform: uppercase;
  font-size: 24px;
}
.hero h1 a {
  text-decoration: underline;
}
.hero h2 {
  font-family: "Baste";
  text-transform: uppercase;
  font-size: 24px;
}
.hero form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero form input {
  min-width: 70%;
  padding: 0 24px;
  height: 48px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.hero form button {
  margin: 16px;
  border: none;
  border-radius: 8px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  box-sizing: border-box;
  white-space: nowrap;
  font-size: 16px;
  font-weight: bold;
  font-family: "Nunito", sans-serif;
  background: var(--black);
  color: var(--white);
  border: 1px solid transparent;
  cursor: pointer;
}
.hero form .nope {
  position: absolute;
  left: -9999px;
}
.hero a {
  color: inherit;
  text-decoration: none;
}

.formMessages .message {
  display: none;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 16px;
  text-align: center;
  font-size: var(--font-m-l);
  font-weight: 600;
  color: var(--black);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}
.formMessages .message:target {
  display: block;
}
.formMessages .success:target {
  background: linear-gradient(250deg, var(--green) 30%, var(--green-light) 80%, var(--white) 100%) no-repeat bottom left;
}
.formMessages .error:target {
  background-color: var(--red-light);
  color: var(--black);
}
.formMessages .warning:target {
  background-color: var(--orange);
  color: var(--black);
}

.mission {
  margin: 48px 0;
  text-align: center;
}
.mission h2 {
  font-size: 18px;
}
.mission p {
  font-family: "Baste";
  text-transform: uppercase;
}

.features .selection {
  margin: 48px 0;
}
.features .selection h2 {
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
}
.features .selection ul {
  list-style-type: none;
  padding: 0;
}
.features .selection ul li {
  margin: 16px 0;
}

.supports h2 {
  font-size: 18px;
}
.supports img {
  max-width: 100%;
}

.br5,
.br6 {
  display: none;
}

footer {
  margin: 48px 0;
  text-align: center;
}

@media (min-width: 600px) {
  :root {
    --body-max-width: 720px;
  }
  .hero {
    height: 50vh;
  }
  .hero h1,
  .hero h2 {
    font-size: 30px;
  }
  .hero h2 {
    margin-top: 0;
  }
  .hero form {
    flex-direction: row;
    gap: 16px;
  }
  .hero form input {
    min-width: 300px;
  }
  .mission {
    margin: 64px 0;
  }
  .mission p {
    font-size: 30px;
  }
  .supports img {
    height: 100px;
  }
  .br2 {
    display: none;
  }
  .br5,
  .br6 {
    display: inline-block;
  }
}
@media (min-width: 960px) {
  :root {
    --body-max-width: 980px;
    --header-h: 120px;
  }
  body {
    padding: 0 calc((100vw - var(--body-max-width)) / 2);
  }
  .hero {
    margin: 48px;
    height: auto;
  }
  .hero h1 {
    margin: 48px auto 0;
  }
  .hero h1,
  .hero h2 {
    font-size: 40px;
  }
  .hero .br1 {
    display: none;
  }
  .hero p {
    margin: 36px auto 0;
  }
  .hero form {
    margin: 16px auto 48px;
  }
  .hero form input {
    min-width: 350px;
  }
  .hero small {
    margin: 0 0 36px;
  }
  .mission p {
    font-size: 36px;
  }
  .features {
    display: grid;
    grid-template-columns: 33% 1fr;
    gap: 96px;
    align-items: start;
  }
  .features .selection {
    margin: 0;
  }
  .features .selection h2 {
    text-align: left;
  }
  .supports {
    margin: 64px 0 0;
  }
  .supports img {
    height: 120px;
  }
}
@media (min-width: 1280px) {
  :root {
    --body-max-width: 1280px;
  }
  .hero form input {
    min-width: 500px;
  }
  .mission p {
    font-size: 40px;
  }
}
@media (min-width: 1920px) {
  :root {
    --body-max-width: 1512px;
  }
}

/*# sourceMappingURL=main.css.map */
