:root {
  --guava-500: #f45d48;
  --guava-100: #fff3ef;
  --error-800: #b41d08;
  --error-500: #d5351f;
  --error-100: #fff3ef;
  --warning-100: #fffaf2;
  --warning-500: #e9b550;
  --kale-100: #f3fafb;
  --kale-400: #2babad;
  --kale-500: #0a8080;
  --kale-800: #005961;
  --salt-1000: #1c1c1c;
  --salt-900: #525257;
  --salt-800: #6c6c72;
  --salt-700: #919197;
  --salt-600: #bababc;
  --salt-500: #dcdcdc;
  --salt-400: #eaeaea;
  --salt-300: #f4f4f3;
  --salt-200: #fbfafa;
  --salt-100: #fff;
}

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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 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 root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--salt-400);
  font: 300 1.6rem/1.5 "gcentra", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--salt-900);
  line-height: 1.5;
}

.main-container {
  display: grid;
  grid-template-areas: "header" "content";
  grid-template-rows: auto 1fr;
  height: 100vh;
}

.main {
  grid-area: content;
}

.header {
  z-index: 1;
}
.header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.375rem;
  line-height: 1.5;
  box-shadow: 0 0.0625rem 0.625rem rgba(0, 0, 0, 0.06);
  border-bottom: 0.0625rem solid var(--salt-400);
  padding: 0 1.875rem;
  vertical-align: middle;
  background-color: var(--salt-100);
  grid-area: header;
}
.header .header-button {
  background-color: #F7F5F2;
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-weight: 400;
  border-radius: 0.4rem;
}
.header .header-link {
  display: inline-block;
}
.header .header-logo {
  width: 110px;
  height: 40px;
}
.header .header-actions {
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: space-between;
}
.header .header-actions a {
  color: var(--salt-1000);
}
.header .header-actions li {
  padding-right: 0.5em;
  padding-bottom: 0;
}
@media (min-width: 600px) {
  .header .header-actions li {
    padding-right: 2.5rem;
  }
}
.header .header-actions li.optional-header-action {
  display: none;
}
@media (min-width: 600px) {
  .header .header-actions li.optional-header-action {
    display: inline;
  }
}

.nav {
  background-color: var(--salt-300);
  border-right: 0.0625rem solid var(--salt-400);
  padding: 2.5rem 2rem;
  min-height: 1vh;
  grid-area: nav;
}
.nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.nav ul li {
  margin: 0;
  cursor: pointer;
  padding: 0 0 0.5rem 0;
}
.nav a {
  text-decoration: none;
  transition: color 125ms ease-in-out;
  color: var(--salt-800);
}
.nav .active {
  color: var(--salt-1000);
  font-weight: bold;
}

.main-content {
  padding: 3.75rem 5.625rem;
}
.pages.index .main-content {
  padding: 0;
}

.inner-layout {
  background-color: var(--salt-100);
}

.centered-container {
  display: flex;
  justify-content: center;
}

.notification {
  padding: 2em;
  border-radius: 0.4rem;
  text-align: center;
  margin-bottom: 1em;
  align-self: flex-start;
}
.notification.success {
  border: solid 1px var(--kale-400);
  background-color: var(--kale-100);
}
.notification.error {
  border: solid 1px var(--error-500);
  background-color: var(--error-100);
}
.notification.info {
  border: solid 1px var(--salt-900);
  background-color: var(--salt-300);
}
.notification.warning {
  border: solid 1px var(--warning-500);
  background-color: var(--salt-1000);
}

form > div {
  margin-bottom: 1em;
}

.modal-mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-container {
  background-color: #fff;
  border-radius: 0.5rem;
  margin: 0 2rem;
  max-width: 80rem;
}
.modal-container h2 {
  padding: 0.4rem 2.4rem;
}
.modal-container section {
  padding: 2.4rem;
}
.modal-container footer {
  padding: 1.6rem 2.4rem;
  border-top: 1px solid var(--salt-500);
  display: flex;
  justify-content: center;
}
.modal-container footer input[type=submit] {
  background-color: var(--kale-500);
  border: none;
  padding: 1.2rem 4rem;
  border-radius: 0.4rem;
  color: var(--salt-100);
}

.survey {
  background-color: var(--salt-400);
  display: flex;
  padding: 2.5rem 0;
  justify-content: center;
}
.survey div {
  display: flex;
  justify-content: center;
  max-width: 132rem;
  align-items: center;
}
.survey span {
  border-radius: 2rem;
  letter-spacing: 0.07rem;
  background-color: var(--kale-500);
  font-size: 1.2rem;
  width: fit-content;
  padding: 0.4rem 1.2rem;
  color: var(--salt-100);
  font-weight: 400;
}
.survey p {
  padding-left: 1rem;
  font-size: 1.5rem;
}

.landing-hero {
  display: flex;
  width: 100%;
  max-height: 44rem;
  background-color: var(--kale-800);
  color: var(--salt-100);
  margin-bottom: 7rem;
  justify-content: space-between;
}
.landing-hero section {
  max-width: 50%;
}
.landing-hero img {
  height: 100%;
  object-position: top;
  object-fit: cover;
  width: 50vw;
}
.landing-hero .welcome-text {
  padding: 12rem 12rem 0 12rem;
}
.landing-hero .welcome-text h1 {
  font-family: clearface;
  line-height: 6rem;
  font-weight: normal;
  font-size: 5rem;
  padding: 0;
  margin: 0 0 2rem 0;
  color: var(--salt-100);
}

.features {
  display: flex;
  padding: 0 12rem;
  margin-bottom: 17rem;
  justify-content: center;
}

.feature-card {
  max-width: 37.7rem;
  margin-right: 3rem;
}
.feature-card img {
  margin-bottom: 2.4rem;
}
.feature-card h3 {
  font-size: 1.6rem;
}
.feature-card p {
  font-size: 1.6rem;
}

.join-gusto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 7.4rem;
}
.join-gusto h2 {
  font-size: 5rem;
  font-weight: normal;
  font-family: "clearface";
}
.join-gusto p {
  max-width: 63.7rem;
  text-align: center;
}

.integrations {
  display: flex;
  flex-wrap: wrap;
  padding: 0 12rem;
  margin-bottom: 14rem;
  justify-content: center;
}
.integrations .integration {
  width: 11.4rem;
  height: 13.5rem;
  margin: 0 2.2rem 4.3rem 2.2rem;
  text-align: center;
  padding-top: 2.6rem;
  background: #FFFFFF;
  box-shadow: 0px 4px 8px rgba(28, 28, 28, 0.1);
  border-radius: 4px;
}
.integrations .integration img {
  max-width: 45px;
  display: inline-block;
  text-align: center;
}

.testimonials {
  background-color: #fdefe8;
  padding-top: 6.1rem;
  display: flex;
  flex-wrap: wrap;
}
.testimonials h2 {
  font-family: "clearface";
  font-size: 5rem;
  font-weight: normal;
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
  flex-basis: 100%;
}
.testimonials .love-button {
  flex-basis: 100%;
  text-align: center;
}
.testimonials .love-button a {
  padding: 1.2rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: var(--salt-100);
  color: var(--salt-1000);
}
.testimonials .tweets {
  margin-top: 4rem;
  width: 25%;
  padding-left: 2rem;
}
.testimonials .highlight {
  color: var(--kale-400);
}
.testimonials .tweet {
  display: flex;
  flex-wrap: wrap;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  background-color: var(--salt-100);
}
.testimonials .tweet .avatar {
  padding-right: 1rem;
}
.testimonials .tweet .avatar img {
  width: 4.5rem;
  border-radius: 50%;
}
.testimonials .tweet .handle {
  color: var(--salt-700);
}
.testimonials .tweet .content {
  margin-top: 1rem;
  font-size: 1.6rem;
}

.pricing {
  margin-top: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pricing p {
  font-size: 1.6rem;
  color: var(--guava-500);
}
.pricing h2 {
  font-size: 5rem;
  font-weight: normal;
  max-width: 55rem;
  text-align: center;
  font-family: "clearface";
}
.pricing a {
  padding: 1.2rem 2rem;
  background-color: var(--guava-500);
  color: var(--salt-100);
  border-radius: 0.5rem;
  font-size: 1.4rem;
}

.landing-footer {
  margin-top: 12rem;
  display: flex;
  padding: 2rem;
}
.landing-footer a {
  font-size: 1.4rem;
}
.landing-footer span {
  display: block;
  font-size: 1.4rem;
  color: var(--salt-800);
}
.landing-footer ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  list-style-position: inside;
}
.landing-footer li {
  margin-bottom: 1rem;
}
.landing-footer section {
  padding: 0 4rem;
  width: 25%;
}
.landing-footer h3 {
  font-size: 1.6rem;
}

.legal-footer {
  color: var(--salt-600);
  padding: 0;
  text-align: center;
}
@media (min-width: 600px) {
  .legal-footer {
    padding: 6rem;
    text-align: initial;
  }
}
.legal-footer span {
  color: var(--salt-700);
}
.legal-footer a {
  display: inline-block;
  margin-left: 1rem;
  color: var(--salt-600);
}

.form-field label {
  color: var(--salt-800);
  font-weight: normal;
}

.form-field input, .form-field select, .form-field textarea {
  background: var(--salt-100);
  border: 1.5px solid var(--salt-700);
  border-radius: 4px;
  padding: 10px;
}
.form-field .form-field__info {
  color: var(--salt-700);
  font-size: 14px;
  margin-bottom: 10px;
  margin-top: -5px;
}

.first-last-name-fields {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.first-last-name-fields > * {
  flex: 1;
}

.checkbox-field {
  display: flex;
  gap: 1em;
}
.checkbox-field label[for=terms_of_service_agreement] {
  font-weight: 400;
}

.radio-fields {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.radio-fields .radio-fields-options {
  display: flex;
  flex-direction: column;
}
.radio-fields .radio-fields-options label {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 400;
}
.radio-fields .radio-fields-options label input {
  max-width: 24px;
  height: 24px;
  width: 100%;
}
.radio-fields .radio-fields-options .radio-option-container {
  display: flex;
  flex-direction: column;
}
.radio-fields .radio-fields-options .radio-option-container .radio-option-details {
  font-size: 14px;
}
.radio-fields .box {
  width: 200px;
  height: 50px;
  background-color: white;
  border: 1px solid black;
  transition: all 250ms ease;
  will-change: transition;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.radio-fields div {
  display: flex;
  justify-content: space-between;
}
.radio-fields div label {
  display: inline-block;
}

.authorization-container {
  max-width: 765px;
  width: 100%;
  min-height: 500px;
  background: var(--salt-100);
  border: 1px solid var(--salt-f500);
  box-sizing: border-box;
  box-shadow: 0px 3px 8px rgba(34, 37, 37, 0.1);
  border-radius: 4px;
  padding: 48px;
  margin-bottom: 40px;
}
.authorization-container > header, .authorization-container > h2 {
  margin-bottom: 30px;
}
.authorization-container label {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}
.authorization-container input, .authorization-container select {
  width: 100%;
  margin-bottom: 20px;
}
.authorization-container input[type=checkbox], .authorization-container select[type=checkbox] {
  width: 22px;
  height: 22px;
  margin-right: 0;
}
.authorization-container .actions input[type=submit],
.authorization-container .actions .button,
.authorization-container .actions button {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 50px;
  border: none;
  background: var(--kale-500);
  border-radius: 4px;
  color: var(--salt-100);
  margin-top: 40px;
}
.authorization-container .actions input[type=submit].button--delete,
.authorization-container .actions .button.button--delete,
.authorization-container .actions button.button--delete {
  background-color: var(--error-800);
}
.authorization-container .actions input[type=submit].button--neutral,
.authorization-container .actions .button.button--neutral,
.authorization-container .actions button.button--neutral {
  background-color: var(--salt-600);
}
.authorization-container .auth-links {
  text-align: right;
}
.authorization-container .auth-links a {
  display: block;
}
.authorization-container a {
  text-decoration: underline;
}

.sign-up-link {
  text-align: center;
}

.auth-notice {
  padding: 2em;
  border: solid 1px var(--kale-400);
  border-radius: 0.4rem;
  background-color: var(--kale-100);
  text-align: center;
  margin-bottom: 1em;
}

.existing-account-links {
  display: flex;
  justify-content: center;
  margin-top: 2em;
}

@font-face {
  font-family: "gcentra";
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: local("gcentra"), url(/assets/gcentra-book-15ae54355cb7887271384616986ba63e3047347df3af83cba13c09ac74739c72.woff2) format("woff2"), url(/assets/gcentra-book-75a7fad55d8037d81e9604530684de3d7a56f21bebea30898c9a0cd80806ea41.woff) format("woff");
}
@font-face {
  font-display: swap;
  font-family: "gcentra";
  font-style: normal;
  font-weight: 425;
  src: local("gcentra Medium"), url(/assets/gcentra-medium-2fc40c62b168c2d15e50b2a0aadb003acb8be61a1bdfd805f6604886a724f251.woff2) format("woff2"), url(/assets/gcentra-medium-c7160fee6f1c31252be618240a3eada4c94c1a28f5228aa7f6a16b6342202f21.woff) format("woff");
}
@font-face {
  font-family: "gusto-icons";
  font-style: normal;
  font-weight: normal;
  src: url(/assets/gusto-icons-ae1d7369ade5d40e84563799f3678b89dc40332173ac01bbf04131cc748dd62a.woff2) format("woff2"), url(/assets/gusto-icons-8bc411edb0f29dc6154cbbdf543e1c066dd5e0d266de0f39ee5661d0a6300900.woff) format("woff");
  unicode-range: U+E600-EB00;
}
@font-face {
  font-family: "clearface";
  font-style: normal;
  font-weight: 700;
  src: url(/assets/clearface-bold-cdf2e4cb6ee3589147017253c5ea91f6d39a405117bfeaa01ac670a032b28062.woff2) format("woff2"), url(/assets/clearface-bold-d4a8dc029561376186b6c3b5e9148c7f1a739f300e6fe92d04fff31a41be8d3a.woff) format("woff");
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--salt-1000);
  font-weight: 600;
  margin-top: 0;
}

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.4rem;
}

a {
  color: var(--kale-500);
  text-decoration: none;
  transition: color 125ms ease-in-out;
}

hr {
  border: none;
  border-top: 1px solid var(--salt-500);
  margin: 1em 0;
}

button:hover {
  cursor: pointer;
}

.animation:not(.animated) {
  opacity: 0;
}
.animation.fade-in,
.animation .fade-in {
  transition: opacity 200ms cubic-bezier(0.22, 0, 0.34, 0.98);
}
.animation.fade-up, .animation.fade-up-15px,
.animation .fade-up,
.animation .fade-up-15px {
  transform: translateY(20px);
  transition: opacity 500ms cubic-bezier(0.22, 0, 0.34, 0.98), transform 500ms cubic-bezier(0.22, 0, 0.34, 0.98);
}
.animation.fade-up.animated, .animation.animated.fade-up-15px,
.animation .fade-up.animated,
.animation .animated.fade-up-15px {
  transform: translateY(0);
}
.animation.fade-up-15px,
.animation .fade-up-15px {
  transform: translateY(15px);
}
.animation.animated .fade-in {
  transform: translateY(0);
}
.animation.animated .fade-up,
.animation.animated .fade-up-15px {
  transform: translateY(0);
}
.animation.animated .fade-up-15px {
  transform: translateY(0);
}
.animation.delay-50,
.animation .delay-50 {
  transition-delay: 50ms !important;
}
.animation.delay-100,
.animation .delay-100 {
  transition-delay: 100ms !important;
}
.animation.delay-200,
.animation .delay-200 {
  transition-delay: 200ms !important;
}

ul.header-actions {
  margin-bottom: 0;
  padding: 0;
}
ul.header-actions li {
  margin-bottom: 0;
}
ul.header-actions li:before {
  content: "";
}

.marketing-header {
  display: none;
  text-align: center;
  background-color: var(--kale-100);
  color: var(--salt-1000);
  padding: 1em;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.01em;
}
.marketing-header a {
  font-weight: 400;
}

.pages.index .marketing-header, .pages.cms_homepage .marketing-header {
  display: flex;
}
.pages.index .main-content, .pages.cms_homepage .main-content {
  padding: 0;
}
.pages.index .header, .pages.cms_homepage .header {
  position: fixed;
  width: 100%;
}
.pages.index .inner-layout, .pages.cms_homepage .inner-layout {
  margin-top: 10rem;
}
