@charset 'UTF-8';

@import url('https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css');

:root {
  /* Theme */
  --ssk-f-family: 'Family', serif;
  --ssk-f-bulma-original: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans',
    'Droid Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --ssk-c-primary: darkorange;
  --ssk-c-primary--hover: #fd7e14;
  --ssk-c-secondary: orange;
  --ssk-c-secondary--hover: #e19302;
  --ssk-c-dark: #444;
  --ssk-c-light: #f5f5f5;

  /* Primary */
  --ssk-c-blue: #3e8ed0;
  --ssk-c-blue--hover: #3274aa;
  --ssk-c-grey: #dadada;
  --ssk-c-grey-light: #d3d3d3;
  --ssk-c-white: #fff;
}

* {
  word-break: auto-phrase;
}

body,
input,
optgroup,
select,
textarea {
  font-family: var(--ssk-f-family);
  font-size: 1.3rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
footer,
.button,
.title,
.subtitle,
.navbar,
.footer,
.notification {
  font-family: var(--ssk-f-bulma-original);
  font-size: 1.1rem;
}

/*
 * ---
 * HAS
 * ---
 */

ul.has-diviser > li:not(:last-child) {
  border-bottom: 1px solid var(--ssk-c-light);
}

.has-text-gradient {
  color: var(--ssk-c-primary);
  background: linear-gradient(to right, var(--ssk-c-primary), var(--ssk-c-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.has-background-gradient {
  position: relative;
  background: var(--ssk-c-primary);
  background: linear-gradient(to right, var(--ssk-c-primary), var(--ssk-c-secondary) 40%);
  z-index: 1;
}

.has-background-gradient > * {
  position: relative;
  z-index: 3;
}

a.has-background-gradient.is-hoverable:hover {
  color: var(--ssk-c-white) !important;
}

.has-background-gradient.is-hoverable:hover::before {
  opacity: 1;
}

.has-background-image-blue {
  background-image: url('/png/background-geometrical-blue.png');
  background-clip: border-box;
  background-size: cover;
}

.has-background-image-grey {
  background-image: url('/png/background-geometrical-grey.png');
  background-clip: border-box;
  background-size: cover;
}

.has-shadow {
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.4);
}

.has-max-width-800 {
  max-width: 800px;
  margin: 0 auto;
}

.has-position-relative {
  position: relative !important;
}

.has-background-primary {
  background-color: var(--ssk-c-primary) !important;
}

/*
 * ---
 * IS
 * ---
 */

.is-serif {
  font-family: var(--ssk-f-family) !important;
  font-size: 1.3rem;
}

.is-sans {
  font-family: var(--ssk-f-bulma-original) !important;
  font-size: 1rem;
}

.is-italic {
  font-style: italic !important;
}

.is-rounded {
  border-radius: 8px;
}

.is-rounded-top {
  border-radius: 8px 8px 0 0;
}

.is-overflow-hidden {
  overflow: hidden;
}

.is-highlighted {
  position: relative;
  white-space: nowrap;
}

.is-highlighted::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: calc(100% + 1px);
  background-color: var(--ssk-c-primary);
  border-radius: 8px;
  transform: rotate(-2deg) translateY(-8px);
  opacity: 0.3;
  z-index: -1;
}

.is-popular {
  box-shadow: 0 0 16px var(--ssk-c-white);
}

.is-nowrap {
  white-space: nowrap !important;
}

.is-sup {
  transform: translateY(-1rem);
}

/*
 * ---
 * SECTION
 * ---
 */

.section__entice {
  position: relative;
}

.section__entice::after {
  content: '';
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: white;
}

.section__mailerlite,
.footer {
  background-color: var(--ssk-c-grey);
}

/*
 * ---
 * HERO
 * ---
 */

.hero {
  position: relative;
  z-index: 2;
}

.hero .logo {
  max-width: 200px;
  border-radius: 8px;
}

.hero .image.is-desktop {
  max-width: 920px;
  min-height: 300px;
  margin: 0 auto;
}

.hero + .section {
  position: relative;
  background-color: var(--ssk-c-white);
  z-index: 5;
}

.hero .navbar {
  background-color: var(--ssk-c-light);
}

.has-dotted-background {
  background-image: url('/png/dotted-background.png');
  background-position: top;
  background-repeat: repeat-x;
  background-size: cover;
}

@media screen and (min-width: 769px) {
  .hero .navbar {
    backdrop-filter: blur(5px);
    background-color: rgba(245, 255, 245, 0.3);
  }
}

.hero-body {
  padding-top: 96px;
}

/*
 * ---
 * CARD
 * ---
 */

.card {
  border-radius: 8px;
  overflow: hidden;
}

/*
 * ---
 * STRIPE
 * ---
 */

.stripe-climate-badge {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: bottom;
}

/*
 * ---
 * NAVBAR
 * ---
 */

.navbar-item img {
  max-height: 2.75rem;
}

.navbar .navbar-brand img {
  height: 100px;
}

/*
 * ---
 * BLOG
 * ---
 */

.blog-sidebar.is-sticky {
  position: sticky;
  top: 30px;
}

article {
  min-height: 70vh;
}

.article-content header {
  text-align: center;
  padding: 48px;
}

.article-content article {
  max-width: 800px;
  margin: 0 auto;
}

/*
 * ---
 * PRICING
 * ---
 */

.pricing__badge {
  /* color: white; */
  font-weight: 700;
  /* background: #3e8ed0; */
  background: #ffd970;
  display: inline-block;
  width: 120px;
  padding: 4px 8px;
  position: absolute;
  right: -6px;
  top: 38px;
  transform: rotate(45deg);
  box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 8px;
  z-index: 5;
}

.pricing__badge::before,
.pricing__badge::after {
  /* border: 16px solid #3e8ed0; */
  border: 16px solid #ffd970;
  content: '';
  display: block;
  position: absolute;
  height: 31px;
  width: 31px;
  transform: rotate(0deg);
  z-index: -1;
}

.pricing__badge::before {
  border-top-color: transparent;
  border-left-color: transparent;
  left: -32px;
  top: 0px;
}

.pricing__badge::after {
  border-right-color: transparent;
  border-top-color: transparent;
  right: -32px;
  top: 0px;
}

/*
 * ---
 * PRODUCT-PAGE
 * ---
 */

.product-page {
  .is-highlighted::after {
    background-color: var(--ssk-c-blue);
  }
}

.product-page__cta-box {
  position: sticky;
  top: 60px;

  transform: translateY(-62px);

  z-index: 100;

  .box {
    border: 1px solid var(--ssk-c-grey-light);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

/*
 * ---
 * BUTTON
 * ---
 */

.button {
  transition: all 0.3s ease;
}

.button.is-primary {
  background-color: var(--ssk-c-primary);
}

.button.is-primary.is-hovered,
.button.is-primary:hover {
  background-color: var(--ssk-c-primary--hover);
}

.button.is-primary.is-outlined {
  border-color: var(--ssk-c-primary);
  color: var(--ssk-c-primary);
}

.button.is-primary.is-outlined.is-focused,
.button.is-primary.is-outlined.is-hovered,
.button.is-primary.is-outlined:focus,
.button.is-primary.is-outlined:hover {
  background-color: var(--ssk-c-primary--hover);
  border-color: var(--ssk-c-primary--hover);
}

.button.has-background-gradient:hover {
  background: var(--ssk-c-secondary);
}

.button.is-info {
  background-color: var(--ssk-c-blue);
  border-color: transparent;
  color: #fff;
}

.button.is-info:hover {
  background-color: var(--ssk-c-blue--hover);
}

/*
 * ---
 * TABS
 * ---
 */

@media screen and (min-width: 769px) {
  .tabs.is-vertical ul {
    /* flex-direction: column; */
    /* align-items: flex-end; */
    display: block;
    border-bottom-color: transparent;
  }

  .tabs.is-vertical ul a {
    justify-content: flex-end;
  }
}

.tabs li.is-active a {
  border-bottom-color: var(--ssk-c-secondary);
  color: var(--ssk-c-secondary);
}

/*
 * ---
 * OTHERS
 * ---
 */

a {
  position: relative;
  z-index: 0;
}

.fa.fa-star {
  text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 3px;
}

.fa.fa-star + .fa.fa-star {
  margin-left: -8px;
}

.discount-coupon {
  border: 1px solid var(--ssk-c-grey-light);
  border-radius: 4px;
  padding: 8px;
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
  background: linear-gradient(to right, var(--ssk-c-light), var(--ssk-c-grey-light) 200%);
  border-left: 4px solid var(--ssk-c-secondary);
  border-right: 2px dashed var(--ssk-c-grey-light);
  transform: rotate(-4deg);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.discount-coupon > code {
  background: transparent;
}

.founder-signature {
  margin: 48px auto 0;
  max-width: 600px;
}

.founder-signature figure {
  max-width: 160px;
}

.testimonial {
  padding-top: 48px;
  background: url('/svg/stars.svg') no-repeat center 16px #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.4);
  min-height: 215px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;

  > p:first-child {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: bold;
  }

  > p + p {
    margin-top: 8px;
    font-style: normal;
    font-size: 0.8rem;
  }

  &.is-rotate-left {
    transform: rotate(-2deg);
  }

  &.is-rotate-right {
    transform: rotate(2deg);
  }

  &.is-on-top {
    position: relative;
    transform: scale(1.1);
    z-index: 2;
  }
}
