.splash .app-description {
  text-align: center;
  --font-weight: 600;
}
.splash .demo-promo {
  margin: 0 auto;
  max-width: 400px;
  text-align: center;
  font-weight: 600;
}
.splash .demo-promo a {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: #FFFFFF;
  border: 1px solid #6F9CEB;
  border-radius: 0.25rem;
  text-decoration: underline;
}
.splash .error-code {
  background-color: #b42f2d;
  color: #FFFFFF;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  max-width: fit-content;
  margin: auto auto 1rem auto;
  box-shadow: 0 0 0.75rem rgba(180, 47, 45, 0.5);
}
.splash .code-form {
  box-sizing: border-box;
  text-align: center;
}
.splash .code-form label {
  display: block;
}
.splash .code-form label + input {
  margin-top: 0.5rem;
}
.splash .code-form input {
  width: 10rem;
}
.splash .cookie-notice {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: #FFFFFF;
  text-align: center;
}
.splash .splash-image img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

@media screen and (max-width: 650px) {
  .splash {
    display: flex;
    flex-direction: column;
  }
  .splash .splash-hero {
    order: 1;
    padding: 2rem;
    margin-bottom: 1rem;
  }
  .splash .code-form {
    order: 2;
    max-width: 450px;
    margin: 0 auto;
  }
  .splash .splash-image {
    order: 3;
    max-width: 400px;
    margin: 2rem auto 0 auto;
  }
  .splash .splash-hero .app-description {
    --font-size: 1.750rem;
  }
}
@media screen and (min-width: 650px) {
  .splash {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 2rem 0;
  }
  .splash .splash-image {
    order: 1;
    flex: 1 auto;
    flex-basis: 50%;
  }
  .splash .splash-hero {
    order: 2;
    flex: 1 auto;
    flex-basis: 50%;
    box-sizing: border-box;
    padding: 1rem;
    display: flex;
    flex-direction: column;
  }
  .splash .splash-hero .app-description {
    font-size: 2rem;
  }
  .splash .splash-hero > div {
    margin: auto;
  }
  .splash .code-form {
    order: 3;
    flex-basis: 100%;
    padding: 2rem;
    margin: 0 1rem;
  }
}


.product-info {
  order: 4;
  margin-top: 3rem;
}
.product-info .info-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 3rem;
  --font-size: 1.250rem;
  --font-weight: 600;
}
.product-info .product-image img {
  max-width: 100%;
  display: block;
}
.product-info .info-row {
  padding: 0 1rem;
}
.info-row:first-of-type {
  margin-top: 2rem;
}
@media screen and (min-width: 600px) {
  .info-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .info-row + .info-row {
    margin-top: 2rem;
  }
  .info-row:nth-of-type(even) .product-image {
    order: 1;
  }
  .info-row:nth-of-type(even) .value-prop {
    order: 2;
  }
}
@media screen and (max-width: 600px) {
  .product-info {
    padding: 0 1rem;
  }
  .product-info .info-row {
    padding: 0;
  }
  .info-row img {
    margin: 1rem auto;
    max-height: 400px;
  }
}