/* --------------------------------------------------------------
/* =SUPER GLOBAL
-------------------------------------------------------------- */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  line-height: 1.6;
  padding: 0;
  margin: 0;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Helvetica,Arial,sans-serif;
  background: #ffffff ;
  color: #292934;
}
::selection {
  color: #000000;
  background: rgba(0,0,0,0.15);
}
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}
.row {
  display: flex;
}
.full-row-border-top, .full-col-border-top {
  position: relative;
}
.full-row-border-top::before {
  content: "";
  background: rgba(0, 0, 0, 0.08);
  height: 1px;
  width: calc(100% - 30px);
  top: 0;
  left: 15px;
  position: absolute;
}
.full-col-border-top::before {
  content: "";
  background: rgba(0, 0, 0, 0.08);
  height: 1px;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.col-50 {
  width: 50%;
  padding: 0 15px;
  max-width: 50%;
}
.col-25 {
  width: 25%;
  padding: 0 15px;
  max-width: 25%;
}
.col-75 {
  width: 75%;
  padding: 0 15px;
  max-width: 75%;
}
.col-100 {
  width: 100%;
  padding: 0 15px;
}
.right-padded-col {
  padding-right: 60px;
}
img.fluid-img {
  display: block;
  width: 100%;
  height: auto;
}
p {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  margin: 20px 0;
  letter-spacing: -0.03em;
}
.text-color-primary {
  color: #292934;
}
.text-color-white {
  color: #ffffff;
}
.text-color-secondary {
  opacity: 0.7;
}
.text-small {
  font-size: 12px;
}
.text-regular {
  font-size: 20px;
}
.text-large {
  font-size: 28px;
}
.no-margin {
  margin: 0;
}
a {
  color: #292934;
  text-decoration: underline;
  cursor: pointer;
  outline: none;
}
a:hover {
  opacity: 0.5;
}
h1.site-headline {
  font-size: 5vw;
  line-height: 100%;
  letter-spacing: -0.04em;
}
h2 {
  font-size: 28px;
  margin: 10px 0;
  letter-spacing: -0.04em;
}
.padded-section {
  padding: 10vh 0;
}
.large-padding-bottom {
  padding-bottom: 8vh;
}
.large-padding-top {
  padding-top: 8vh;
}
.small-padding-botton {
  padding-bottom: 2vh;
}
.small-padding-top {
  padding-top: 2vh;
}
.no-margin {
  margin: 0;
}
.badge {
  border: 1px solid #292934;
  color: #292934;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 18px;
}

/* --------------------------------------------------------------
/* =Page specific stuff
-------------------------------------------------------------- */
.logo-tagline {
  max-width: 300px;
  line-height: 140%;
}
.cover-container {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 15%;
  flex: 0 1 15%;
  min-width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cover {
  display: block;
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: perspective(300px);
  transform: perspective(300px);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.button {
  padding: 16px 90px 16px 24px;
  background: #000000;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  outline: none;
  border-radius: 40px;
  background-image: url('img/arrow-right-icon.svg');
  background-position: 90% center;
  background-repeat: no-repeat;
}
.download-link {
  background-image: url('img/download-icon.svg');
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 16px auto;
  padding: 0 0 0 24px;
  margin-right: 16px;
}
.download-link-light {
  background-image: url('img/download-icon-white.svg');
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 16px auto;
  padding: 0 0 0 24px;
  margin-right: 16px;
  color: #ffffff;
}
.book-section__eyebrow {
  text-transform: uppercase;
  opacity: 0.5;
  font-weight: bold;
  font-size: 12px;
}
.book-section__title {
  font-size: 3vw;
  margin-bottom: 0;
  margin-top: 3vw;
  line-height: 100%
}
.coming-soon-label {
  background: rgba(255, 255, 255, 0.2);
  padding: 16px 90px 16px 24px;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  outline: none;
  border-radius: 40px;
  background-image: url('img/bookmark-icon.svg');
  background-position: 90% center;
  background-repeat: no-repeat;
  display: inline-block;
}
.coming-soon-label.dark {
  background-color: rgba(0, 0, 0, 0.5);
}
.book-section__author {
  margin: 0 0 6vh 0;
}
.hero-blurb {
  margin-bottom: 40px;
}
.book-section {
  padding: 15vh 0;
}
.header {
  padding: 32px 0 0 0;
}
header a {
  text-decoration: none;
}
.nav-separator {
  margin: 0 4px;
  opacity: 0.2;
}
.logo-ish {
  font-weight: bold;
}
.status {
  position: relative;
  padding-left: 24px;
}
.status::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #121212;
  top: 7px;
  left: 0;
  animation: linear 1s infinite alternate blink-animation;
  -webkit-animation: linear 1s infinite alternate blink-animation;
}
@keyframes blink-animation {
  from {
    opacity: 0;
  } to {
    opacity: 1;
  }
}
@-webkit-keyframes blink-animation {
  from {
    opacity: 0;
  } to {
    opacity: 1;
  }
}

/* --------------------------------------------------------------
/* =SMARTPHONE
-------------------------------------------------------------- */
@media screen and (max-width: 821px) {
  .text-small {
    font-size: .8rem;
  }
  .text-regular {
    font-size: 1rem;
  }
  .text-large {
    font-size: 2rem;
  }
  .padded-section {
    padding: 6vw 0;
  }
  h2 {
    font-size: 20px;
  }
  .row {
    display: block;
  }
  .col-50, .col-25, .col-75 {
    width: 100%;
    max-width: 100%;
  }
  .right-padded-col {
    padding-right: 15px;
  }
  .button {
    display: block;
    width: 100%;
  }
  .cover {
    width: 300px;
  }
  .cover-container {
    padding: 40px 0 80px 0;
  }
  .status {
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid #f0f0f0;
  }
  .status::before {
    top: 15px;
  }
  .book-section {
    padding: 5vh 0;
  }
  .book-section__title {
    font-size: 8vw;
  }
  .download-link {
    display: block;
    margin-top: 10px;
  }
  .book-section__author {
    margin: 0 0 4vh 0;
  }
  h1.site-headline {
    font-size: 15vw;
  }
  .coming-soon-label {
    display: block;
  }
}
