@charset "UTF-8";
:root {
  --max-width: 1200px;
  --top-height: 400px;

  /* THEME COLORS */
  --accent-color-1: #3a4256;
  --accent-color-2: #816139;

  /* BACKGROUND */
  --background: white;
  --background-alt: transparent;
  --item-background: white;

  /* HEADER */
  --header-background: #f4f3d5;
  --header-text: #3a4256;
  --header-text-hover: black;

  /* BUTTON COLORS */
  --button-color: #3a4256;
  --button-text: white;
  --button-hover-color: black;
  --button-hover-text: white;

  /* FONTS */
  --font-default: "Inter", Arial, Helvetica, sans-serif;
  --font-heading: "Libre Baskerville", Times, Arial, Helvetica, serif;

  /* TEXT COLOR */
  --text-default: #575757;
  --text-default-dark: white;

  /* SEARCH BOX */
  --searchbox-background: white;
  --searchbox-border: 1px solid lightgray;
  --searchbox-text: black;

  /* FOOTER */
  --footer-background: white;
  --footer-text: #3a4256;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-default);
  width: 100%;

  /* CUSTOMIZE */
  background: url("../images/bg-top.jpg") no-repeat top center var(--background);
  background-size: 100% auto;
  color: var(--text-default);
  max-width: 100vw;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: normal;
  letter-spacing: -0.5pt;
}

a,
.button {
  cursor: pointer;
  text-decoration: none;
}

/* Quick classes */

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}
.u-pull-right {
  float: right;
}
.u-pull-left {
  float: left;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #e1e1e1;
}

hr.spacer {
  border: none;
  margin: 25px;
}

/* HEADER */

header {
  width: 100%;
  top: 0;
  z-index: 9999;
  background: var(--header-background);
  border-bottom: 1px solid #3a42561c;
}

body.subpage header {
}

header .navbar {
  padding: 15px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.navbar-site-title {
  display: none;
}

.navbar-logo {
  /* flex: 1; */
}

.navbar-logo img {
  width: auto;
  max-height: 40px;
}

#togglemenu {
  display: none;
}

.navbar-cta {
  display: none;
}

.menu-toggle {
  display: block;
  height: 26px;
  width: 32px;
  top: 17px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: var(--header-text);
}

.menu-toggle .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.menu-toggle .line2 {
  transition: transform 0.2s ease-in-out;
}

.menu-toggle .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

#togglemenu:checked ~ .menu-toggle .line {
  border-radius: 10px;
  background: var(--header-text);
}

#togglemenu:checked ~ .menu-toggle .line1 {
  transform: rotate(45deg);
}

#togglemenu:checked ~ .menu-toggle .line2 {
  transform: scaleY(0);
}

#togglemenu:checked ~ .menu-toggle .line3 {
  transform: rotate(-45deg);
}

.navbar-menu {
  justify-items: flex-end;
  z-index: 9999;
}

.navbar-menu {
  position: fixed;
  width: 100%;
  background: var(--header-background);
  padding: 0 10px;
  text-align: center;
  top: 75px;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.5s;
  right: 0;
}

.navbar-menu .menu {
  display: block;
  list-style: none;
  padding: 0;
  margin: auto;
}

.navbar-menu .menu .menu-item {
  display: block;
  width: 100%;
  padding: 10px 0;
}

#togglemenu:checked ~ .navbar-menu {
  max-height: 1000px;
}

.navbar-menu .menu .menu-item,
.navbar-menu .menu .menu-item a {
  display: block;
  width: 100%;
  color: var(--header-text);
  font-family: var(--font-default);
  font-weight: 300;
}

.navbar-menu .menu .menu-item a.btn {
  max-width: 300px;
  margin: auto;
  color: var(--button-text);
}

.navbar-menu .menu .menu-item a:hover {
  color: var(--header-text-hover);
}

.navbar-menu .menu .menu-item a.btn:hover {
  color: var(--button-hover-text);
}

/* DEFAULTS */

#content {
  margin: auto;
  width: 100%;
}

.ornament {
  display: none;
}

section {
  padding: 60px 30px 70px;
  position: relative;
}

section.alt {
  background: var(--background-alt);
  color: var(--text-default-dark);
}

section#subpage {
  padding: 20px 30px 60px;
}

.container {
  width: 100%;
  margin: auto;
  max-width: var(--max-width);
}

.section-heading {
  font-size: 36pt;
  font-weight: normal;
  letter-spacing: -0.5pt;
  margin: 0 0 20px;
}

.section-subheading {
  font-size: 18pt;
  font-weight: normal;
  color: #000000;
  margin-top: -20px;
}

.grid,
.list {
  display: grid;
  gap: 15px;
}

.flex {
  display: flex;
  gap: 15px;
}

.btn {
  border: none;
  width: auto;
  display: inline-block;
  padding: 8px 20px;
  background: var(--button-color);
  border: none;
  font-weight: bold;
  text-transform: none;
  font-family: var(--font-default);
  color: var(--button-text);
  border-radius: 5px;
  transition: all 0.2s;
}

.btn.cta {
  position: relative;
  border-radius: 50px;
  padding-left: 50px;
  z-index: 9999;
}

.btn.cta:before {
  content: "";
  display: block;
  height: 100%;
  width: 100px;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/icons/download.png") no-repeat 5px center;
  background-size: auto 75%;
}

header .btn.cta:hover {
  animation: pulse_once 1.5s 1;
}

.btn:hover {
  background: var(--button-hover-color);
  color: var(--button-hover-text);
}

/* CTA BUTTONS */

header .cta {
  padding: 10px 20px;
}

section .btn.cta {
  padding: 20px 40px 20px 80px;
  font-size: 18pt;

  box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  transform: scale(1);
}

section .btn.cta:before {
  background-position: 8px center;
}

section .btn.cta:hover {
  animation: pulse 3s infinite;
}
section.alt .btn.cta {
  background: var(--button-text);
  color: var(--button-color);
}

section.alt .btn.cta:hover {
  color: black;
}

section.alt .btn.cta:before {
  filter: invert(1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #676f85;
  }

  50% {
    box-shadow: 0 0 0 24px #cd9b5d00;
  }

  60% {
    box-shadow: 0 0 0 0 #ab875b00;
  }

  100% {
    box-shadow: 0 0 0 0 #ab875b00;
  }
}

@keyframes pulse_once {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

/* SUBPAGE */


body.subpage {
  background: var(--background);
}

.subpage-content a {
  color: var(--accent-color-2);
  text-decoration: underline;
}

.subpage-content a:hover {
  color: var(--accent-color-1);
}

/* HOMEPAGE */

/* TOP */

section#top {
  min-height: var(--top-height);
  padding-top: 80px;
}

.top-heading {
  font-size: 42pt;
  color: #3a4256;
  margin-bottom: 0;
}

.top-subheading {
  font-size: 24pt;
  font-weight: normal;
  margin-top: 0;
  color: #000000;
}

.top-content {
  max-width: 600px;
  line-height: 2;
  font-size: 12pt;
  margin: 45px auto;
}

.top-img {
  width: 1000px;
}

.top-cta .btn.cta {
  animation: pulse 3s infinite;
}

.top-cta .btn.cta:hover {
  animation: pulse_once 2s 1;
}

/* FEATURES */

section#features {
  background: transparent linear-gradient(180deg, #ffffff 0%, #ffffe6 54%, #ffffff 100%) 0% 0%
    no-repeat;
}

.features-grid {
  margin: 20px auto;
  row-gap: 50px;
  column-gap: 100px;
}

.features-heading {
  font-size: 20pt;
  margin: 10px auto;
  color: #000000;
}

.features-text {
  line-height: 1.5;
  max-width: 350px;
  margin: auto;
}

/* DONWLOADS */

div#downloads {
  padding-top: 150px;
  padding-bottom: 150px;
  color: var(--text-default-dark);
}

div#downloads .container {
  background: url("../images/bg-bottom.jpg") center no-repeat black;
  background-size: cover;
  max-width: 900px;
  border-radius: 50px;
  padding: 30px 40px;
}

.downloads-box {
  align-items: center;
}

.downloads-box ul {
  margin: 30px auto;
  display: grid;
  gap: 20px;
}
.download-img {
  padding: 20px;
}

section#more div#downloads .section-heading {
  font-size: 30pt;
  margin: 20px auto;
  color: var(--text-default-dark);
  text-align: left;
}
/* MORE */

section#more {
  background: linear-gradient(180deg, #ffffff 60%, #cfd0bd 100%) no-repeat;
}

section#more .section-heading {
  max-width: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #000000;
}

.more-grid {
  margin: 70px 0;
  gap: 50px;
}

.more-grid .grid-item {
  background: white;
  border-radius: 30px;
  padding: 30px 50px;
  box-shadow: 0px 10px 30px #d9dde299;
}

.more-heading {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-default);
  font-size: 16pt;
  letter-spacing: normal;
  font-weight: bold;
  color: #000000;
  margin: 0 auto;
}

.more-heading img {
  width: 62px;
}

.more-text {
  line-height: 1.5;
  margin: 20px auto;
}

/* CTA */

section#cta {
  background: url("../images/bg-cta.jpg") no-repeat #cfd0bd;
  background-size: cover;
}

.cta-img {
  width: 640px;
}

section#cta p {
  font-size: 14pt;
  margin: 30px auto;
}

/* FAQ */

section#faq {
  background: linear-gradient(to bottom, #cfd0bd 0%, #ffffff 60%) no-repeat;
  padding: 100px 20px;
}

section#faq .section-heading {
  color: black;
}

.tab {
  background: #f7f7f7;
  box-shadow: 0px 3px 10px #00000029;
  border-radius: 15px;
  position: relative;
  margin: 30px 10px;
}
.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}
.tab input:checked ~ .tab__content {
  max-height: 20rem;
}

/* Visual styles */
.accordion {
  max-width: 800px;
  margin: 0 auto;
  border: none;
  overflow: hidden;
}
.tab__label,
.tab__close {
  display: flex;
  background: var(--theme);
  cursor: pointer;
}
.tab__label {
  justify-content: space-between;
  padding: 20px 20px;
  font-size: 14pt;
}
.tab__label::after {
  content: "\25B8";
  width: 1em;
  height: 1em;
  text-align: center;
  transform: rotate(90deg);
  transition: all 0.35s;
}

.tab__label:hover {
  color: var(--accent-color-2);
  background: white;
  border-radius: 15px;
}

.tab input:checked + .tab__label {
  color: var(--accent-color-2);
  background: white;
  border-radius: 15px;
  font-weight: bold;
}

.tab input:checked + .tab__label::after {
  transform: rotate(270deg);
}
.tab__content p {
  margin: 0;
  padding: 20px;
  font-size: 12pt;
  line-height: 1.5;
}
.tab__close {
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}
.accordion--radio {
  margin: 50px auto;
  --theme: var(--secondary);
}

/* BOTTOM */

section#bottom {
  background: url("../images/bg-bottom.jpg") center no-repeat black;
  background-size: cover;
}

section#bottom .section-heading {
  font-size: 26pt;
  max-width: 700px;
  letter-spacing: 0;
  margin: 50px auto;
}

/* SUBPAGE */

.subpage-content {
  font-size: 11pt;
}

.subpage-heading {
  font-size: 28pt;
}

.subpage-content * {
  line-height: 1.5;
}

.subpage-content li {
  margin-bottom: 20px;
}

.subpage-content td {
  padding: 10px;
  border: 1px solid lightgray;
}

/* CONTACT FORM */

form {
  background: var(--background-alt);
  border-radius: 10px;
  padding: 50px;
  max-width: 640px;
  margin: 0 auto;
}

form .form-group {
  margin-bottom: 30px;
}

form .form-group input,
form .form-group textarea {
  padding: 10px 15px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid lightgray;
  min-height: 50px;
  font-size: 14pt;
}

form .form-group label {
  text-align: center;
  color: #333;
  display: block;
  margin: 5px auto 5px;
}

form .form-group textarea {
  height: 180px;
  line-height: 1.5;
}

form.contact-us .form-group button {
  color: #fff;
  display: block;
  background: var(--accent-color-2);
  text-transform: uppercase;
  padding: 15px 30px;
  margin: auto;
  font-size: 18px;
  letter-spacing: 1px;
  min-width: 280px;
}

form.contact-us .form-group button:hover {
  background: var(--accent-color-1);
}

.btn-caption {
  margin-top: 10px;
  font-size: 9pt;
  font-style: italic;
  color: gray;
}

/* WAITLIST */

section#waitlist {
  min-height: 80vh;
}

section#waitlist p {
  line-height: 1.5;
}

section#waitlist form input {
  font-size: 18pt;
  font-family: var(--font-default);
  text-align: center;
}

section#waitlist form .btn {
  padding: 15px 20px;
  /* text-transform: uppercase; */
  font-size: 16pt;
  min-width: 400px;
  border-radius: 50px;
  animation: pulse 3s infinite;
}

section#waitlist form {
  padding-top: 20px;
}

section#waitlist form .form-group {
  margin-bottom: 30px;
}

section#waitlist .btn:hover {
  animation: pulse_once 1.5s 1;
}


/* FOOTER */

footer {
  padding: 20px 30px 20px;
  font-size: 10pt;

  /* CUSTOMIZE */
  background: var(--footer-background);
  color: var(--footer-text);
}

body.subpage footer {
  border-top: 1px solid #3a42561c;
}

footer > .container {
  display: flex;
  flex-direction: column;
  justify-items: center;
  gap: 15px;
}

.footer-menu {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 30px;
}

footer a,
footer a:hover {
  /* CUSTOMIZE */
  color: var(--footer-text);
}

/* Mobile first queries */

/* Larger than mobile */
@media (min-width: 400px) {
}

/* Larger than phablet */
@media (min-width: 550px) {
}

/* Larger than tablet */
@media (min-width: 750px) {
  header .navbar {
    padding: 15px 20px;
  }

  section {
    /* padding: 60px 20px; */
  }

  .top-heading {
    font-size: 50pt;
  }

  .section-heading {
    font-size: 42pt;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
  }

  .downloads-box {
    grid-template-columns: 200px 1fr;
    gap: 30px;
  }

  section#downloads .container {
    padding: 30px 60px;
  }

  .more-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .more-grid .grid-item:last-child {
    width: 50%;
    justify-self: center;
    grid-column: 1/3;
  }

  section#cta {
    background-position: top 300px center;
  }

  .tab__content p {
    padding: 30px 40px 30px;
  }
}

/* Larger than desktop */
@media (min-width: 1000px) {
  .menu-toggle {
    display: none;
  }

  .navbar-cta {
    display: block;
    text-align: right;
  }

  .navbar-cta,
  .navbar-logo {
    width: 20%;
  }

  .navbar-menu {
    position: static;
    display: inline-block;
    width: auto;
    height: auto;
    max-height: none;
    background: none;
    flex: 1;
  }

  .navbar-menu .menu .menu-item {
    width: auto;
    display: inline-block;
    padding: 0 10px;
    font-size: 12pt;
    align-items: center;
  }

  .navbar-menu .menu .menu-item.cta {
    display: none;
  }

  .navbar-menu .menu .menu-item:hover {
    color: var(--accent-color-1);
  }
  .downloads-box {
    grid-template-columns: 250px 1fr;
    gap: 50px;
  }
  .more-grid {
    margin: 70px 50px;
  }

  /* ORNAMENTS */

  section#top {
    background: url("../images/bg-side-top-R.png") no-repeat right center;
    background-size: 30% auto;
  }

  section#features {
    background: url("../images/bg-side-ai-R.png") no-repeat right center,
      transparent linear-gradient(180deg, #ffffff 0%, #ffffe6 54%, #ffffff 100%) 0% 0% no-repeat;
    background-size: 25% auto, 100%;
  }

  .ornament {
    display: block;
    position: absolute;
    max-width: 35vw;
  }
  .ornament.right {
    right: -20px;
  }

  .ornament.left {
    left: -20px;
  }

  .ornament img {
    width: 100%;
  }

  section#features .ornament.left {
    max-width: 30vw;
    top: -600px;
  }

  section#more .ornament.right {
    max-width: 30vw;
    top: 20%;
  }

  section#more .ornament.left {
    max-width: 32vw;
    bottom: 50%;
  }

  section#cta .ornament.right {
    max-width: 25vw;
    bottom: 10%;
  }

  section#cta .ornament.left {
    max-width: 20vw;
    bottom: 50%;
  }

  section#bottom .ornament.right {
    bottom: 30%;
  }

  section#bottom .ornament.left {
    bottom: 0;
  }
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
  .features-grid {
    column-gap: 100px;
  }
}
