@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.45;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

:root {
  --color-bg: hsl(42, 63%, 95%);
  --color-nav-bg: hsl(46, 92%, 97%);
  --color-fg: hsl(0, 0%, 0%);
  --color-heading: hsl(0, 0%, 25%);
  --color-heading-alt: 48, 12%, 48%;
  --color-highlight: hsl(51, 95%, 66%);
  --font-family: "Nunito", sans-serif;
  --font-size-lg: 1.1rem;
  --container-padding-xs: 1.25rem;
  --container-padding-lg: 2rem;
}

html {
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-family);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}

a {
  color: hsl(210, 100%, 47%);
  text-underline-offset: 0.215rem;
  text-decoration-thickness: 0.05rem;
}

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

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

.mt-2 {
  margin-top: 2rem !important;
}

.highlight {
  background-color: var(--color-highlight);
  padding-left: 0.1625em;
  padding-right: 0.1625em;
  display: inline-block;
}

.container {
  padding-left: var(--container-padding-xs);
  padding-right: var(--container-padding-xs);
}

.font-size-lg {
  font-size: var(--font-size-lg);
}

.heading {
  color: var(--color-heading);
}

.heading--black {
  font-weight: 1000;
}

.heading--md {
  font-size: 1.45rem;
  font-weight: 800;
}

.heading--lg {
  font-size: 2rem;
  line-height: 1.2em;
  margin: 2.15rem 0;
}

.heading--xl {
  font-size: 2.5rem;
}

.heading-leading {
  margin: 1.95rem 0 0.5rem 0;
}

.heading--uppercase {
  text-transform: uppercase;
  font-size: 1.15rem;
  font-weight: 400;
  color: hsl(var(--color-heading-alt));
}

.heading--lined {
  text-align: center;
  margin: 1.5rem 0 1rem 0;
  border-bottom: 1px solid hsla(var(--color-heading-alt), 20%);
  span {
    display: inline-block;
    background: var(--color-bg);
    position: relative;
    top: 0.55em;
    padding: 0 0.85rem;
  }
}

.-mb-05 {
  margin-bottom: -0.5rem;
}

.text-larger {
  font-size: 1.2em;
}

@media (min-width: 600px) {
  .container {
    padding-left: var(--container-padding-lg);
    padding-right: var(--container-padding-lg);
  }
}
@media (min-width: 1024px) {
  html {
    font-size: 20px;
  }
  .hidden-lg {
    display: none;
  }
  .container {
    max-width: 74rem;
    margin: 0 auto;
  }
  .container--sm {
    max-width: 46rem;
    margin: 0 auto;
  }
  .text-center--lg {
    text-align: center;
  }
}
.signature {
  margin: 1rem 0.35rem;
  display: inline-block;
}

.hero {
  width: 100%;
  text-wrap: pretty;
  h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03rem;
  }
  h2 {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-heading);
    margin: 0.5rem 0;
  }
}

.hero__illustration {
  margin: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__file {
  display: flex;
  justify-content: end;
  align-items: center;
}

.hero__browser {
  display: flex;
  justify-content: start;
  align-items: center;
}

.hero__logo {
  width: 15rem;
  filter: drop-shadow(0.125rem 0.125rem 0.125rem hsl(0, 0%, 82%));
}

.icon {
  padding: 0.1rem;
}

.icon--file {
  max-width: 100%;
  width: 6.25rem;
}

.icon--browser {
  max-width: 100%;
  width: 10.5rem;
}

.arrow {
  max-width: 100%;
  margin: 0.75rem;
  display: none;
}

.arrow--xs {
  display: block;
  font-size: 1.2rem;
  margin: 0.35rem;
  color: hsl(0, 48%, 60%);
}

.arrow--left {
  width: 5rem;
  margin-top: 1.15rem;
}

.arrow--right {
  width: 4.75rem;
  margin-left: 0.6rem;
  margin-top: -0.4rem;
}

.hero__about {
  margin: 0 auto;
  /* max-inline-size: 65ch; */
  /* text-wrap: balance; */
}

@media (min-width: 800px) {
  .hero__illustration {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
  .arrow {
    display: block;
  }
  .arrow--xs {
    display: none;
  }
}
@media (min-width: 1024px) {
  .hero__about {
    max-width: 36rem;
  }
}
.features {
  margin-top: 2rem;
  margin-bottom: 2rem;
  h3 {
    text-align: center;
    margin: 1.5rem 0 0.65rem 0;
  }
  ul {
    margin: 0;
    padding-left: 1.45rem;
    list-style: none;
  }
  li:before {
    content: "✓";
    margin-right: 0.5rem;
    margin-left: -1.45rem;
    color: green;
  }
}

.heading--thanks {
  font-weight: 200;
  font-style: italic;
  font-size: 1.55rem;
}

@media (min-width: 1024px) {
  .features__articles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }
  .features {
    h3 {
      text-align: left;
    }
  }
}
.nav {
  background: var(--color-nav-bg);
  padding: 0.35rem 0.75rem;
  min-height: 2rem;
  box-shadow: 0 0 0.18rem hsl(0, 0%, 85%);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.nav__placehoder {
  height: 2.75rem;
}

.nav__items,
.nav__actions {
  list-style: none;
  margin: 0;
  padding: 0;
  a {
    color: currentColor;
    font-weight: 800;
    text-decoration: none;
    display: block;
    padding: 0.3rem;
    &:hover {
      text-decoration: underline;
    }
  }
}

.nav__items {
  overflow: hidden;
  clear: both;
  max-height: 0;
  transition: max-height 0.4s ease-out;
  text-align: center;
}

.nav__icon {
  padding: 0.45rem 0;
  cursor: pointer;
  float: right;
  display: flex;
  align-items: center;
  transition: opacity 0.4s ease-out;
  svg {
    height: 1.15rem;
  }
}

.nav__toggle {
  display: none;
}

.nav__toggle:checked ~ .nav__items {
  max-height: 240px;
}

.nav__toggle:checked ~ .nav__icon {
  opacity: 0.8;
}

.nav__logo {
  display: flex;
  float: left;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  span {
    color: var(--color-heading);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.015rem;
  }
  svg {
    margin-top: 0.25rem;
    height: 1.75rem;
  }
}

.nav__actions {
  display: none;
  justify-content: end;
}

.btn-sign-up {
  --chevron-size: 1.065rem;
  --color-bg: hsl(108, 35%, 44%);
  color: hsl(0, 0%, 100%) !important;
  padding: 0 !important;
  display: flex !important;
  span {
    padding: 0.3rem;
    padding-left: 1.85rem;
    background: var(--color-bg);
    position: relative;
    &:before {
      content: "";
      display: inline-block;
      height: 0;
      width: 0;
      border-top: var(--chevron-size) solid transparent;
      border-bottom: var(--chevron-size) solid transparent;
      border-left: var(--chevron-size) solid var(--color-nav-bg);
      margin-right: calc(-1 * var(--chevron-size));
      position: absolute;
      top: 0;
      left: 0;
    }
  }
  &:after {
    content: "";
    display: inline-block;
    height: 0;
    width: 0;
    border-top: var(--chevron-size) solid transparent;
    border-bottom: var(--chevron-size) solid transparent;
    border-left: var(--chevron-size) solid var(--color-bg);
  }
}

@media (min-width: 600px) {
  .nav {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .nav__logo {
    gap: 0.85rem;
  }
}
@media (min-width: 1024px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
  .nav__logo {
    float: none;
  }
  .nav__icon {
    display: none;
  }
  .nav__items,
  .nav__actions {
    display: flex;
    max-height: none;
    gap: 0.65rem;
  }
}
.footer {
  margin-top: 3rem;
  margin-bottom: 3rem;
  text-align: center;
  ul {
    margin: 0.35rem 0 0;
    padding: 0;
    list-style: none;
  }
  li {
    margin-bottom: 0.25rem;
  }
  p {
    margin-top: 0.35rem;
  }
  h2 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem;
  }
}

.footer__copy {
  margin-top: 2rem !important;
  opacity: 0.65;
}

@media (min-width: 1024px) {
  .footer {
    text-align: left;
    display: grid;
    grid-template-columns: 50% 50%;
    column-gap: 1rem;
    h2 {
      margin-top: 0;
    }
  }
  .footer__nav {
    display: grid;
    grid-template-columns: 50% 50%;
  }
}
.box {
  background: hsl(0, 0%, 100%);
  box-shadow: 0.1rem 0.1rem 0.225rem hsl(0, 0%, 85%);
  padding: 1.65rem;
  margin: 1rem 0;
  border-radius: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  h3 {
    margin: 0 0 0.35rem;
    font-size: 1.45rem;
  }
}

.prices {
  h2 {
    margin: 1.65rem 0 0.5rem;
    font-size: 1.45rem;
  }
  p {
    margin-top: 0;
  }
}

.pricing-example-blocks {
  margin-top: 0.7rem;
  .box {
    text-align: left;
    justify-content: start;
    align-items: start;
    font-size: 0.9rem;
    h4 {
      margin-top: 0;
      font-size: 1.2rem;
    }
  }
  select {
    display: inline-block;
  }
}

@media (min-width: 1024px) {
  .prices > article {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    gap: 2rem;
  }
  .price__description {
    max-width: 32rem;
  }
  .prices {
    h1 {
      margin-bottom: 1rem;
    }
    .box {
      width: 17rem;
      min-height: 10rem;
    }
    h2 {
      margin: 0 0 0.35rem;
      text-align: left;
    }
  }
  .pricing-example-blocks {
    display: flex;
    justify-content: center;
    column-gap: 1.5rem;
    .box {
      width: 32rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
  }
}
.sheet {
  background: white;
  padding: 2rem;
  max-width: 45rem;
  margin: 1.75rem auto;
  box-shadow: 0.1rem 0.1rem 2rem hsl(0, 0%, 89%);
  p:first-child {
    margin-top: 0;
    font-size: 150%;
  }
}

@media (min-width: 1024px) {
  .sheet {
    padding: 4rem;
  }
}

/*# sourceMappingURL=main.css.map */