/*
 * The public site's one stylesheet.
 *
 * This is the legacy marketing CSS - `shared/_variables`, `_colors`,
 * `_layout`, `_misc`, `_header`, `landing/utilities`, `landing/modules/*`,
 * `landing/landing_page` and `landing/premium` - ported from SCSS to plain
 * CSS with native nesting. Values are legacy's, so the brand is unchanged
 * (the standing decision). Two things are not carried over:
 *
 * - Bulma. Legacy pulled the whole 0.7 framework in for the handful of
 *   classes the text pages use (`hero`, `section`, `container`, `content`,
 *   `title`, `button`, `box`, `column`). Those are reproduced below, at the
 *   values Bulma 0.7 computed, in about a hundred lines. Nothing else of the
 *   framework was ever used on a public page.
 * - The dead rules. `landing_page.scss`'s `// old` half styled a homepage
 *   that has not shipped for years, and `press_kit.scss` belongs to a page
 *   this slice drops.
 */

/* ------------------------------------------------------------------ *
 * Brand values (shared/_colors, shared/_variables)
 * ------------------------------------------------------------------ */
:root {
  --color-primary: #0096ff;
  --color-primary-light: #ffcc24;
  --color-secondary: #263345;
  --color-secondary-light: #9b9b9b;
  --footer-bg: #f8f9fa;
  --main-container-size: 1080px;
  --font-fallback: -apple-system-body, BlinkMacSystemFont, SFUI, "Open Sans",
    Helvetica, Arial, sans-serif;
  --font-proxima-nova: proxima-nova, sans-serif, var(--font-fallback);
  --elevation-100: 0 1px 2px 0 rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  --elevation-200: 0 3px 6px 0 rgba(0, 0, 0, 0.15), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
  --elevation-300: 0 10px 20px 0 rgba(0, 0, 0, 0.15), 0 3px 6px 0 rgba(0, 0, 0, 0.1);
  --elevation-400: 0 15px 25px 0 rgba(0, 0, 0, 0.15), 0 5px 10px 0 rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-proxima-nova);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #5f6b7a;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #3273dc;
  text-decoration: none;

  &:hover {
    color: var(--color-secondary);
  }
}

hr {
  background-color: #f5f5f5;
  border: none;
  display: block;
  height: 2px;
  margin: 1.5rem 0;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.bm__shadow-elevation-100 { box-shadow: var(--elevation-100); }
.bm__shadow-elevation-200 { box-shadow: var(--elevation-200); }
.bm__shadow-elevation-300 { box-shadow: var(--elevation-300); }
.bm__shadow-elevation-400 { box-shadow: var(--elevation-400); }

/* ------------------------------------------------------------------ *
 * The Bulma 0.7 subset the text pages use
 * ------------------------------------------------------------------ */
.container {
  margin: 0 auto;
  position: relative;
  max-width: 960px;
  width: 100%;
  padding: 0 0.75rem;
}

.section {
  padding: 3rem 1.5rem;
}

.hero {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  /* landing.scss overrode Bulma's hero paddings for the whole public site. */
  margin: 4em auto 2em;

  &.is-medium {
    padding: 4em 2em;
    text-align: center;
    margin-top: 0;
  }

  &.is-primary {
    background-color: #00d1b2;
    color: #fff;

    &.is-bold {
      background-image: linear-gradient(141deg, #009e6c 0%, #00d1b2 71%, #00e7eb 100%);
    }
  }

  &.is-success {
    background-color: #23d160;
    color: #fff;
  }

  &.is-fullheight {
    min-height: 100vh;
  }

  & .title {
    color: inherit;
  }

  & .subtitle {
    color: inherit;
  }
}

.hero-head,
.hero-body {
  flex-grow: 1;
  flex-shrink: 0;
}

.hero-body {
  display: flex;
  align-items: center;
  padding: 3rem 1.5rem;
}

.title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.125;
  color: #363636;
  margin: 0 0 1.5rem;
  word-break: break-word;
}

.subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
  color: #4a4a4a;
  margin: 0 0 1.5rem;
}

.has-text-centered { text-align: center; }
.has-text-grey { color: #7a7a7a; }

.box {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
  color: #4a4a4a;
  display: block;
  padding: 1.25rem;
}

.column {
  display: block;
  padding: 0.75rem;
  margin: 0 auto;
}

.is-6 { max-width: 50%; }

@media all and (max-width: 767px) {
  .is-6 { max-width: none; }
}

/*
 * `content` is Bulma's prose block: the terms, privacy, abuse,
 * law-enforcement and FAQ pages are nothing but this.
 */
.content {
  & h3 {
    color: #363636;
    font-size: 1.25em;
    font-weight: 600;
    line-height: 1.125;
    margin-top: 1.7em;
    margin-bottom: 0.5em;
  }

  & p,
  & ul,
  & ol,
  & table {
    margin-top: 0;
    margin-bottom: 1em;
  }

  & ul {
    list-style: disc outside;
    margin-left: 2em;
  }

  & li + li {
    margin-top: 0.25em;
  }

  & strong {
    color: #363636;
    font-weight: 700;
  }
}

.button {
  align-items: center;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  justify-content: center;
  line-height: 1.5;
  padding: calc(0.375em - 1px) 0.75em;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  color: var(--color-secondary);

  &.is-info {
    background-color: #209cee;
    border-color: transparent;
    color: #fff;
  }

  &.is-rounded {
    border-radius: 290486px;
    padding-left: 1em;
    padding-right: 1em;
  }

  &.__navy-blue {
    border: 0;
    color: #fff;
    background-color: var(--color-secondary);
  }

  &.__has-transition {
    transition: 0.1s all ease-in;
  }

  &.__with-shadow {
    box-shadow: 0 0.125em 0.25em 0 rgba(0, 0, 0, 0.2);
  }
}

.is-rounded.__blue {
  border: 0;
  background-color: var(--color-primary);
  color: #fff;
}

/* ------------------------------------------------------------------ *
 * Utilities and layout (landing/utilities, shared/_layout, shared/_misc)
 * ------------------------------------------------------------------ */
@media all and (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

@media all and (min-width: 768px) {
  .hide-desktop { display: none !important; }
}

.display-block { display: block !important; }

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

.bm__middle-container {
  position: relative;
  max-width: 940px;
  padding: 0 20px;
  margin: 0 auto;
}

.bm__big-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.bm__top-bar-spacer {
  padding-top: 60px;
}

.main-container {
  max-width: var(--main-container-size);
  margin: 0 auto;
  padding: 0 20px;
}

.full-page-form {
  & .hero {
    margin-top: 0;
    margin-bottom: 0;
  }

  & .hero.is-success {
    background: #f2f6fa;
    color: inherit;
  }

  & .box {
    margin-top: 5rem;
  }

  & p {
    font-weight: 700;
  }
}

/* ------------------------------------------------------------------ *
 * Buttons (landing/modules/buttons)
 * ------------------------------------------------------------------ */
.bm__button {
  transition: 0.1s all ease-in;

  &:hover {
    transform: scale(1.02);
  }
}

.bm__button__white {
  font-size: 14px;
  color: #0096ff;
  letter-spacing: 0;
  text-align: center;
  line-height: 1;
  background-color: #fff;
  border-radius: 15px;
  padding: 8px 12px;
  min-width: 96px;
  display: inline-block;

  &.__outline {
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent;
  }
}

.bm__button__large {
  font-size: 16px;
  padding: 12px 24px;
  min-width: 96px;
  border-radius: 20px;
}

/* ------------------------------------------------------------------ *
 * Browser-conditional blocks
 *
 * Legacy sniffed the user agent server-side and rendered one of three
 * variants. All three now ship in the markup and `site.js` marks the root
 * element; with no JavaScript the "other" variant - legacy's own fallback -
 * is what stays visible.
 * ------------------------------------------------------------------ */
.bm__browser-choice > .__chrome,
.bm__browser-choice > .__firefox,
.bm__browser-choice > .__other {
  display: none;
}

html.__browser-chrome .bm__browser-choice > .__chrome,
html.__browser-firefox .bm__browser-choice > .__firefox,
html:not(.__browser-chrome, .__browser-firefox) .bm__browser-choice > .__other {
  display: inline-flex;
}

html.__browser-chrome .bm__browser-choice.__text > .__chrome,
html.__browser-firefox .bm__browser-choice.__text > .__firefox,
html:not(.__browser-chrome, .__browser-firefox) .bm__browser-choice.__text > .__other {
  display: inline;
}

/* ------------------------------------------------------------------ *
 * Header (shared/_header)
 * ------------------------------------------------------------------ */
body.__burgerMenu-active {
  overflow: hidden;
}

.main-navigation {
  & ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
  }

  & li {
    vertical-align: middle;
    margin: 0 0.75em;
  }

  & li a {
    font-family: var(--font-proxima-nova);
    font-weight: 400;
    color: #fff;
    line-height: 1;
    text-decoration: none;

    &:hover {
      color: rgba(255, 255, 255, 0.6);
    }
  }
}

.header-bar {
  position: fixed;
  width: 100%;
  z-index: 3;
  transition: all 0.1s ease-in;

  & .main-container {
    height: 3.75em;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  & .burger-menu-icon-container {
    fill: #fff;
    display: none;
  }

  &.__sticky {
    background: #fff;
    border-bottom: 0.5px solid #ebebeb;

    & .bm__button__white.__outline {
      background-color: #fff;
      color: #0096ff;
      border-color: #0096ff;
    }

    & .bm__button__white {
      color: #fff;
      background-color: #0096ff;
    }

    & .burger-menu-icon-container {
      fill: var(--color-secondary);
    }

    & .logo-container a img:first-child {
      display: none;
    }

    & .logo-container a img:last-child {
      display: block;
    }
  }

  & .close-btn {
    display: none;
    position: absolute;
    top: 10px;
    right: 0;
    font-size: 3em;
    padding: 0 0.5em;
    cursor: pointer;
    line-height: 1;
  }
}

@media all and (min-width: 768px) {
  .header-bar.__sticky .main-navigation ul li a {
    color: var(--color-secondary);
  }
}

.header-bar-spacer {
  height: 3.75em;
  display: none;
}

@media all and (max-width: 747px) {
  .header-bar {
    & .close-btn {
      display: block;
    }

    & .bm__button.bm__button__white {
      background: transparent;
      font-weight: bold;
      border: 1px solid #0096ff;

      &:hover {
        color: #0096ff;
      }
    }

    & .main-navigation {
      display: none;
      top: 0;
      position: fixed;
      right: 0;
      height: 100%;
      width: 100%;
      background-color: var(--color-secondary);
      color: #fff;
      padding-top: 10em;
      padding-bottom: 6em;
      overflow: auto;

      &.__burgerMenu-active {
        display: block;
      }

      & ul {
        flex-direction: column;
        align-items: center;
        font-size: 1.3em;
        font-weight: 600;
      }

      & ul li {
        margin: 0.625em;
        font-size: 0.8em;
      }
    }

    & .right-area {
      display: none;
      position: fixed;
      top: 5em;
      left: 0;
      margin: 0 auto;
      right: 0;
      text-align: center;
      background-color: var(--color-secondary);

      &.__burgerMenu-active {
        display: block;
      }
    }

    & .burger-menu-icon-container {
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
    }

    & .burger-menu-icon-container svg {
      width: 24px;
      height: 24px;
    }
  }
}

.logo-container {
  line-height: 1;
  font-size: 0;

  & a {
    display: inline-block;
    text-decoration: none;
    vertical-align: middle;
  }

  & a img {
    display: block;
  }

  & a img:last-child {
    display: none;
  }
}

/* ------------------------------------------------------------------ *
 * Footer (landing/modules/footer)
 * ------------------------------------------------------------------ */
.main-footer {
  background-color: var(--footer-bg);
  padding: 2.5em 0 2.125em;

  & .logo {
    margin-bottom: 1em;
  }

  & .footer-menu {
    display: flex;
    margin: 0 -1.875em;
  }

  & .menu-container {
    padding: 0 1.875em;
    min-width: 200px;
  }

  & .copyright {
    margin-top: 3.75em;
    font-size: 0.875em;
    color: #051c33;
    letter-spacing: 0;
  }
}

@media all and (max-width: 1000px) {
  .main-footer .menu-container {
    margin: 1em 0;
  }

  .main-footer .footer-menu {
    flex-wrap: wrap;
  }
}

.menu-container {
  & .title {
    font-family: var(--font-proxima-nova);
    font-weight: 600;
    font-size: 0.8125em;
    color: #051c33;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
  }

  & ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  & li {
    display: block;
    margin: 1px 6.25em 0 0;

    &:last-child {
      margin-right: 0;
    }
  }

  & li a {
    font-size: 0.875em;
    color: #051c33;
    text-decoration: none;
    letter-spacing: 0;

    &:hover {
      color: var(--color-secondary);
    }
  }
}

/* ------------------------------------------------------------------ *
 * Landing sections (landing/landing_page)
 * ------------------------------------------------------------------ */
.bm__section-title {
  margin: 64px auto 32px;

  &.__blueish-bg .bm__section-title__label {
    color: #a2dafc;
  }

  &.__blueish-bg .bm__section-title__title {
    color: #fff;
  }
}

.bm__section-title__title {
  display: block;
  font-family: var(--font-proxima-nova);
  font-weight: 600;
  font-size: 32px;
  color: #212933;
  text-align: center;
  line-height: 1;
  margin: 0;
}

.bm__section-title__label {
  display: block;
  font-family: var(--font-proxima-nova);
  font-weight: 700;
  font-size: 14px;
  color: #b8c4cd;
  letter-spacing: 0.68px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 4px;
}

.bm__as-seen-on {
  margin-top: 2em;
}

.bm__as-seen-on-links a {
  vertical-align: middle;
  display: inline-block;
  margin: 0 28px;

  &:first-child { margin-left: 0; }
  &:last-child { margin-right: 0; }
}

@media all and (max-width: 940px) {
  .bm__as-seen-on {
    text-align: center;
  }

  .bm__as-seen-on-links a {
    margin: 28px;
  }
}

@media all and (max-width: 767px) {
  .bm__as-seen-on {
    margin-top: 48px;
    text-align: center;
  }

  .bm__as-seen-on-links a {
    margin: 16px !important;
  }
}

.bm__how-it-works .bm__section-title {
  margin: 0 auto;
  padding: 64px 0 32px;
}

.bm__how-it-works__description {
  text-align: center;
  margin-bottom: 32px;

  & p {
    padding: 0 20px;
    color: #212933;
  }
}

.bm__how-it-works__steps {
  display: flex;
}

.bm__how-it-works__step {
  flex: 0 0 280px;
  margin: 0 20px;

  &:first-child { margin-left: 0; }
  &:last-child { margin-right: 0; }
}

@media all and (max-width: 767px) {
  .bm__how-it-works__steps {
    flex-direction: column;
  }

  .bm__how-it-works__step {
    max-width: 320px;
    margin: 24px auto !important;
    flex: 0 0 auto;
  }
}

.bm__how-it-works__step-title {
  font-family: var(--font-proxima-nova);
  font-weight: 500;
  font-size: 16px;
  color: #212933;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 8px;
}

.bm__how-it-works__step-description {
  font-family: var(--font-proxima-nova);
  font-weight: 400;
  font-size: 14px;
  color: #5f6b7a;
  text-align: left;
  line-height: 1.5;
}

.bm__how-it-works__step-number {
  font-family: var(--font-proxima-nova);
  font-weight: 500;
  position: relative;
  font-size: 24px;
  color: #093159;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 8px;

  &::after {
    content: "";
    position: relative;
    display: block;
    margin-top: 6px;
    width: 24px;
    height: 2px;
    background-color: #d4edfc;
    border-radius: 2px;
  }
}

.bm__features {
  background-image: linear-gradient(-180deg, #ffffff 0%, #f5fbff 98%);
}

.bm__features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 0 64px;
}

.bm__feature {
  max-width: 360px;

  &:nth-child(2n) {
    margin-top: 144px;
  }

  & > img {
    margin-bottom: 16px;
  }
}

@media all and (max-width: 767px) {
  .bm__features-container {
    flex-direction: column;
    justify-content: center;
    padding-bottom: 16px;
  }

  .bm__feature {
    max-width: 320px;
    margin: 0 auto 64px !important;
  }

  .bm__feature:nth-child(2n) {
    margin-top: 0 !important;
  }
}

.bm__feature__description {
  font-family: var(--font-proxima-nova);
  font-weight: 400;
  font-size: 16px;
  color: #093159;
  text-align: left;
  line-height: 1.5;
}

.bm__feature__title {
  font-family: var(--font-proxima-nova);
  font-weight: 700;
  font-size: 24px;
  color: #093159;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.bm__testimonials-and-getting-started {
  background-image: linear-gradient(-269deg, #157cd6 0%, #5cbbff 100%);
  color: #fff;
  overflow: auto;
  padding-bottom: 128px;
}

@media all and (max-width: 767px) {
  .bm__testimonials-and-getting-started {
    padding-bottom: 48px;
  }
}

.bm__testimonial {
  max-width: 272px;
  padding: 32px;
  background: #fff;
  box-shadow: var(--elevation-300);
  border-radius: 8px;
  color: #093159;

  & hr {
    margin: 24px 0;
  }
}

.bm__testimonials__wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 45px;

  & .bm__testimonial {
    margin: 0 32px;

    &:nth-child(1) { margin-top: 16px; }
    &:nth-child(2) { margin-top: 86px; }
    &:nth-child(4) { margin-top: 30px; }
  }
}

@media all and (max-width: 1360px) {
  .bm__testimonials__wrapper .bm__testimonial {
    margin: 32px;
  }
}

@media all and (max-width: 767px) {
  .bm__testimonials__wrapper .bm__testimonial {
    margin: 32px !important;
  }
}

.bm__testimonial__quote {
  letter-spacing: -0.1px;
  font-style: italic;
}

.bm__testimonial__meta {
  display: flex;
}

.bm__testimonial__meta__icon {
  margin-right: 8px;
}

.bm__testimonial__meta__name-and-date {
  margin-top: 2px;
}

.bm__testimonial__meta__name {
  font-family: var(--font-proxima-nova);
  font-weight: 500;
  display: block;
  font-size: 14px;
  color: #093159;
  letter-spacing: 0;
  line-height: 1;
}

.bm__testimonial__meta__date {
  font-family: var(--font-proxima-nova);
  font-weight: 600;
  font-size: 12px;
  color: #b8c4cd;
  letter-spacing: 1px;
  line-height: 1;
  margin-top: 2px;
  text-transform: uppercase;
}

.bm__rating {
  line-height: 1;

  & .bm__stars {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    font-size: 0;
  }

  & .bm__stars img {
    margin: 0 2px;

    &:first-child { margin-left: 0; }
    &:last-child { margin-right: 0; }
  }

  & span {
    font-family: var(--font-proxima-nova);
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0;
    line-height: 1.25;
    vertical-align: middle;
  }
}

.bm__rating__subtitle {
  margin-top: 8px;
}

.bm__hero-section {
  position: relative;
  min-height: 580px;
  padding-top: 150px;
  color: #fff;
  background-image: linear-gradient(-180deg, #5cbbff 0%, #157cd6 110%);

  &::before {
    content: "";
    width: 100%;
    height: 100%;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url("/site/assets/hero_bg.svg");
    background-position: center bottom;
    background-repeat: no-repeat;
  }
}

@media all and (min-width: 1921px) {
  .bm__hero-section::before {
    display: none;
  }
}

@media all and (max-width: 767px) {
  .bm__hero-section {
    padding-top: 100px;
  }
}

.bm__hero-section__text {
  max-width: 460px;
  float: left;

  & .bm__install-button,
  & .bm__sign-up-button {
    margin-bottom: 16px;
  }
}

@media all and (max-width: 767px) {
  .bm__hero-section__text {
    float: none;
    margin: 0 auto 48px;
    max-width: 320px;
  }
}

.bm__hero-announcement {
  font-family: var(--font-proxima-nova);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  margin-bottom: 20px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
}

@media all and (max-width: 767px) {
  .bm__hero-announcement {
    font-size: 13px;
    padding: 8px 12px;
  }
}

.bm__hero-announcement__link {
  font-family: var(--font-proxima-nova);
  font-weight: 700;
  margin-left: 8px;
  color: #fff;
  white-space: nowrap;

  &:hover,
  &:focus {
    color: #d4edfc;
  }
}

.bm__hero-section__headline {
  font-family: var(--font-proxima-nova);
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  letter-spacing: -0.45px;
  line-height: 1;
  margin: 0 0 16px;
}

@media all and (max-width: 767px) {
  .bm__hero-section__headline {
    font-size: 24px;
  }
}

.bm__hero-section__subtitle {
  font-family: var(--font-proxima-nova);
  font-weight: 400;
  font-size: 1em;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.375;
  margin: 0 0 2em;
}

@media all and (max-width: 767px) {
  .bm__hero-section__subtitle {
    font-size: 14px;
  }

  .bm__hero-section__subtitle br {
    display: none;
  }
}

.bm__hero-section__illustration {
  float: right;
}

@media all and (max-width: 767px) {
  .bm__hero-section__illustration {
    float: none;
    max-width: 320px;
    margin: 0 auto;
  }
}

.bm__showcase-illustration {
  box-shadow: var(--elevation-400);
  background-color: #fff;
  border-radius: 8px;
  width: 320px;
  margin-right: 48px;
  padding: 32px;
}

@media all and (max-width: 767px) {
  .bm__showcase-illustration {
    max-width: 320px;
    width: 100%;
    margin-right: 0;
  }
}

.bm__showcase-illustration__field__label {
  font-family: var(--font-proxima-nova);
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: #5f6b7a;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0.5;
}

.bm__showcase-illustration__field__input {
  background-color: #fff;
  border: 1px solid #b8c4cd;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.24);
  border-radius: 4px;
  height: 32px;
  position: relative;
  display: flex;
  color: #212933;
  align-items: center;
  padding-left: 8px;
  font-size: 12px;
  line-height: 1;
  opacity: 0.5;

  & img {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 8px;
    top: 8px;
    border-radius: 4px;
  }
}

.bm__showcase-illustration__field {
  margin-bottom: 24px;

  &:last-child {
    margin-bottom: 0;
  }

  &.__email .bm__showcase-illustration__field__label,
  &.__email .bm__showcase-illustration__field__input {
    opacity: 1;
  }

  &.__email .bm__showcase-illustration__field__label {
    color: var(--color-primary);
  }

  &.__email .bm__showcase-illustration__field__input {
    border-color: var(--color-primary);
  }
}

.bm__install-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #0f5b99;
  border-radius: 20px;
  padding: 0 24px 0 54px;
  min-height: 40px;
  transition: 0.1s all ease-in;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);

  &:hover {
    transform: scale(1.01);
    box-shadow: var(--elevation-300);
  }
}

.bm__install-button__text {
  font-family: var(--font-proxima-nova);
  font-weight: 500;
  color: #fff;
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.2;
}

@media all and (max-width: 767px) {
  .bm__install-button__text {
    font-size: 14px;
  }
}

.bm__install-button__icon {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;

  & img {
    width: 24px;
    height: 24px;
  }
}

.bm__email-illustration {
  user-select: none;
}

#email-illustration-img {
  & .bm__email-illustration__loader {
    opacity: 0;
    width: 18px;
    height: 18px;
    top: 7px;
    right: 7px;
    border-radius: 0;
    transition: 0.1s opacity ease-in;
  }

  &.__loading .bm__email-illustration__loader {
    opacity: 1;
  }

  & .bm__email-illustration__cursor {
    width: auto;
    height: 24px;
    right: -3px;
    top: 16px;
    transition: 0.2s transform ease-out;
  }
}

.bm__getting-started__wrapper {
  text-align: center;

  & .steps {
    max-width: 46.5625em;
    margin: 0 auto 3.125em;
    display: flex;
    justify-content: space-between;
  }

  & .steps .step {
    padding: 0 1em;
  }

  & .steps .step .oval {
    box-shadow: var(--elevation-200);
    margin: 0 auto 0.694em;
    background-color: #fff;
    color: #093159;
    border-radius: 50%;
    width: 2.222em;
    height: 2.222em;
    font-size: 2.25em;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  & .steps .step .text {
    font-size: 1.125em;
    color: #fff;
    letter-spacing: -0.27px;
    text-align: center;
    line-height: 1.722em;
  }

  & .steps .step .text a {
    font-family: var(--font-proxima-nova);
    font-weight: 700;
    text-decoration: underline;
    color: #fff;
  }

  & .bm__cta-install .bm__install-button,
  & .bm__cta-install .bm__sign-up-button {
    margin-bottom: 8px;
  }
}

@media all and (max-width: 767px) {
  .bm__getting-started__wrapper .steps {
    font-size: 0.9em;
    display: block;
  }

  .bm__getting-started__wrapper .step {
    margin: 3em 0;
  }
}

/* ------------------------------------------------------------------ *
 * Pricing panel (landing/premium) - the domain-forwarding page only
 * ------------------------------------------------------------------ */
.bm__pricing-wrapper {
  margin: 3em auto 6em;

  & .bm__section-title .bm__section-title__title {
    font-weight: 800;
  }

  & .pricing-table {
    flex: 1 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  & .pricing-panel {
    box-shadow: var(--elevation-300);
    flex: 1 0 auto;
    background: #fff;
    padding: 1.25em 1em 2.25em;
    text-align: center;
    border-radius: 0.5em;
    position: relative;
    overflow: hidden;
    margin: 1em;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0.375em;
      background-color: var(--color-primary);
    }
  }

  & .pricing-panel.__premium .button {
    margin-top: 2.5em;
  }

  & .features {
    margin: 2.5em auto 3.125em;
  }

  & .features ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
  }

  & .features li {
    font-size: 0.9375em;
    color: #8c8c8c;
    letter-spacing: 0;
    margin: 0.4375em auto;
  }

  & .features li span {
    font-weight: 700;
    color: var(--color-secondary);
  }

  & .price-container .currency-symbol {
    font-size: 0.875em;
    font-weight: 300;
    color: #434c5d;
    position: relative;
    top: -1em;
    right: -2px;
  }

  & .price-container .price {
    font-size: 2.25em;
    font-weight: 600;
    color: var(--color-secondary);
  }

  & .price-container .billing-period {
    font-weight: 300;
    font-size: 0.875em;
    color: #434c5d;
  }

  & .price-container .discount {
    font-size: 0.75em;
    font-style: italic;
    font-weight: 600;
    color: #0fb5ba;
    letter-spacing: 0;
    text-align: center;
  }
}

@media all and (max-width: 767px) {
  .bm__pricing-wrapper .pricing-table {
    flex-direction: column;
    align-items: center;
  }

  .bm__pricing-wrapper .pricing-panel {
    margin-bottom: 3em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
