@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src:
    url("fonts/Inter-Regular.77812e2fead777db0dc806b1eaabc7fd.woff2")
      format("woff2"),
    url("fonts/Inter-Regular.41cd7069d7f578a69690178b818c0a2c.woff")
      format("woff");
}
html {
  --grey-100: #f1f3f5;
  --grey-200: #dde0e5;
  --grey-400: #8e9bb0;
  --grey-700: #355689;
  --grey-900: #142f57;
  --accent-100: #fff4e4;
  --accent-300: #ffe1b3;
  --accent-500: #f8bb60;
  --accent-900: #49320f;
  --header-height: 80px;
  --box-shadow-small: 0px 2px 0px 0px var(--grey-200);
}

body {
  font-weight: 400;
  font-family: Inter;
  letter-spacing: -0.011em; /* https://rsms.me/inter/dynmetrics/ */
  margin: 0px;
  padding: 0px;
  line-height: 24px;
  font-size: 16px;
  max-width: 1280px;
  margin: 0px auto;
}

.cancel_body_margins,
footer,
section.quotes,
.hero,
.header {
  margin-left: min((1280px - (100vw + 0px)) / 2, 0px);
  margin-right: min((1280px - (100vw + 0px)) / 2, 0px);
  padding-left: max((100vw - 1280px) / 2 + 32px, 32px);
  padding-right: max((100vw - 1280px) / 2 + 32px, 32px);
}
@media (max-width: 1080px) {
  .cancel_body_margins,
  footer,
  section.quotes,
  .hero,
  .header {
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.header {
  display: flex;
  align-items: center;
  height: var(--header-height);
  color: var(--grey-100);
  gap: 2rem;
}
.header > a {
  color: var(--grey-100);
}
@media (max-width: 1080px) {
  .header > a {
    display: none;
  }
}
.header button {
  background-color: var(--grey-900);
  color: var(--grey-100);
  font-weight: 600;
}

a {
  text-decoration: none !important;
}
a:hover {
  color: inherit;
  filter: brightness(1.1) !important;
  background-color: unset !important;
  text-decoration: underline !important;
}

.hero_container {
  background: linear-gradient(
    225deg,
    #0a1429 0%,
    #142f57 40%,
    #1e3a72 80%,
    #2845a3 100%
  );
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: min(60vh, 800px);
  background-image: url("/static/images/notes-full.eabe62fe2ba95a555f6cff890bd2f50e.svg");
  background-repeat: no-repeat;
  background-position: initial;
  background-size: max(50vw, 400px);
  border-bottom: 80px solid transparent;
  color: var(--grey-100);
  padding-top: 96px;
  padding-bottom: 96px;
}
.hero h1 {
  font-size: 44px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 20px;
}
@media (max-width: 1080px) {
  .hero h1 {
    margin-top: 24px;
  }
}
.hero h2 {
  opacity: 0.7;
}
.hero > * {
  flex: 1;
}
@media (max-width: 1080px) {
  .hero {
    flex-direction: column;
    min-height: unset;
    padding-top: 12px;
  }
}
.hero .demo_panel {
  max-width: 480px;
  margin: 0px 48px;
  padding: 48px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  color: white;
}
@media (max-width: 1080px) {
  .hero .demo_panel {
    margin: 0px;
    padding: 24px;
    margin-top: 48px;
  }
}
.hero .demo_panel h3 {
  margin-bottom: 24px;
  color: var(--accent-500);
  font-size: 28px;
}
.hero .demo_panel .another_demo_button {
  background-color: var(--grey-900);
  color: var(--grey-100);
}
.hero .demo_panel label {
  color: var(--grey-100);
}
.hero .signup_panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  padding: 0px;
}
@media (max-width: 1080px) {
  .hero .signup_panel {
    flex-direction: column;
  }
}
.hero .signup_panel > * {
  flex: 1;
  padding: 48px;
}
@media (max-width: 1080px) {
  .hero .signup_panel > * {
    padding: 24px;
  }
}
.hero .signup_panel > *:first-child {
  display: flex;
  align-items: center;
  color: var(--grey-100);
  justify-content: center;
  text-align: left;
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 1080px) {
  .hero .signup_panel > *:first-child {
    font-size: 1.4rem;
    padding: 24px 36px;
    display: block;
  }
  .hero .signup_panel > *:first-child br {
    display: none;
  }
}
.hero .signup_panel > *:nth-child(2) {
  background: white;
}

.button_full,
.button_outline {
  font-size: 16px;
  font-weight: bold;
  display: block;
  width: 100%;
}

.button_full {
  background-color: var(--accent-500);
  color: var(--grey-900);
  border: 0px;
}

.button_outline {
  background-color: var(--grey-900);
  color: var(--accent-500);
  border: 2px solid var(--accent-500);
}

.panel {
  background-color: white;
  color: var(--grey-900);
  box-shadow:
    0px 2px 12px 20px rgba(8, 5, 31, 0.06),
    0px 2px 6px 8px rgba(168, 168, 168, 0.04);
  border-radius: 12px;
  padding: 24px;
}
.panel h3 {
  font-size: 28px;
  font-weight: bold;
  color: var(--grey-800);
}
.panel p {
  margin-bottom: 32px;
  opacity: 0.8;
  font-size: 17px;
}
.panel.video_panel {
  padding: 0px;
  line-height: 0px;
  overflow: hidden;
  border: 1px solid var(--grey-200);
}

.accent_500_color {
  color: var(--accent-500) !important;
}

a.accent_500_color:hover {
  color: var(--accent-300) !important;
}

button,
input[type="submit"] {
  padding: 12px 32px;
  border-radius: 8px;
  border: 1px solid currentColor;
}
button:hover,
input[type="submit"]:hover {
  filter: brightness(0.9);
  cursor: pointer;
}

section.quotes {
  background-color: var(--grey-100);
  padding-top: 36px;
  padding-bottom: 36px;
  overflow: auto;
  width: 100vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1080px) {
  section.quotes {
    grid-template-columns: 1fr;
  }
}
section.quotes .quote {
  background-color: white;
  border-radius: 24px;
  padding: 24px 36px;
  border: 1px solid var(--grey-200);
  border-bottom-width: 3px;
  display: flex;
  flex-direction: column;
  min-width: 380px;
}
section.quotes .quote q {
  margin-bottom: 64px;
  display: block;
}
section.quotes .quote q div {
  display: inline;
}
section.quotes .quote .quote_footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
section.quotes .quote .author {
  font-size: 0.85 rem;
  font-weight: 600;
}
section.quotes .quote .author .author_role {
  font-size: 0.75 rem;
  font-weight: 600;
}
section.quotes .quote .author .author_role a {
  display: block;
}
section.quotes .quote .logo {
  height: 80px;
  width: auto;
  margin-left: 8px;
}

section.feature {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  margin-top: 64px;
  margin-bottom: max(20vh, 164px);
}
section.feature > * {
  margin: 24px;
}
@media (max-width: 1080px) {
  section.feature {
    min-height: unset;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 64px;
    margin-bottom: 96px 0px;
  }
}
section.feature h1 {
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
  margin-bottom: 18px;
  color: var(--grey-900);
}
section.feature h1::before {
  content: "";
  display: block;
  width: 48px;
  border-bottom: 3px solid var(--accent-500);
  margin-bottom: 24px;
}
section.feature.feature_image_right > *:nth-child(1) {
  flex: 0 1 30%;
}
section.feature.feature_image_right > *:nth-child(2) {
  flex: 0 1 70%;
}
section.feature.feature_image_left > *:nth-child(1) {
  flex: 0 1 70%;
}
@media (max-width: 1080px) {
  section.feature.feature_image_left > *:nth-child(1) {
    order: 2;
  }
}
section.feature.feature_image_left > *:nth-child(2) {
  flex: 0 1 30%;
}
@media (max-width: 1080px) {
  section.feature.feature_image_left > *:nth-child(2) {
    order: 1;
  }
}
section.feature article {
  font-size: 1.25rem;
  line-height: 2rem;
  opacity: 0.9;
}
section.feature ul {
  padding-left: 24px;
  list-style: none;
  font-size: 1.125rem;
  line-height: 2rem;
  margin-top: 16px;
}
section.feature ul li::before {
  content: "";
  background-color: var(--accent-500);
  border-radius: 20px;
  padding: 3px;
  border: 6px solid var(--accent-100);
  display: inline-block;
  margin-right: 16px;
  vertical-align: text-top;
}

section.pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
  margin-bottom: max(15vh, 80px);
}
@media (max-width: 1080px) {
  section.pricing {
    padding: 24px;
  }
}
section.pricing .panel {
  padding-left: 48px;
  padding-right: 48px;
  max-width: 100%;
  width: 480px;
}
@media (max-width: 1080px) {
  section.pricing .panel {
    padding-left: 24px;
    padding-right: 24px;
  }
}
section.pricing .panel .panel_header {
  margin: -48px;
  border-radius: 8px 8px 0px 0px;
  background-color: var(--grey-900);
  display: block;
  color: var(--grey-100);
  padding: 24px;
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 1080px) {
  section.pricing .panel .panel_header {
    margin: -48px -24px 24px;
  }
}
section.pricing .panel h5 {
  font-size: 1.25rem;
  font-weight: bold;
}
section.pricing .panel h6 {
  font-size: 1rem;
  color: var(--color-500);
}
section.pricing h2 {
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: bold;
  line-height: 1.2em;
  color: var(--grey-900);
}
section.pricing h2::before {
  content: "";
  display: block;
  width: 64px;
  border-bottom: 4px solid var(--accent-500);
  margin: 0px auto 32px;
}
section.pricing h4 {
  margin-bottom: 48px;
  font-size: 1.25rem;
}
section.pricing table {
  margin-bottom: 16px;
  width: 100%;
}
section.pricing table td {
  padding: 16px 32px 16px 0px;
  border-bottom: 1px solid var(--grey-100);
}
section.pricing table td:nth-child(1) {
  opacity: 0.8;
  font-size: 16px;
}
section.pricing table td:nth-child(2) {
  text-align: right;
  font-size: 1.25rem;
  font-weight: 600;
}
section.pricing table td:nth-child(2) input {
  width: 70px;
  background-color: var(--grey-100);
  color: var(--grey-900);
  border: 0px;
  padding: 6px 8px;
  border-radius: 4px;
  text-align: right;
}
section.pricing table tr.pricing_table_row_condensed td {
  padding: 4px 8px 4px 0px;
  border-bottom: 0px;
}
section.pricing .footnote {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: 16px;
  display: inline-block;
}
section.pricing .footnote::before {
  content: "";
  background-color: var(--accent-500);
  border-radius: 20px;
  padding: 6px;
  display: inline-block;
  margin-right: 16px;
}

footer {
  border-top: 8px solid var(--accent-500);
  background-color: var(--grey-900);
  font-size: 0.875rem;
  color: var(--grey-400);
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
}
footer > * {
  flex: 1;
}
footer h2 {
  font-size: 1.125rem;
  color: var(--accent-500);
  margin-bottom: 32px;
}
footer a {
  font-size: 1rem;
  color: var(--grey-100);
  display: block;
  line-height: 2rem;
}
footer a.emphasize {
  color: var(--accent-500);
  text-decoration: underline;
}
footer section {
  margin-bottom: 32px;
}
footer article {
  margin-bottom: 16px;
}
footer h3 {
  color: var(--accent-500);
  margin-bottom: 32px;
}
@media (max-width: 1080px) {
  footer {
    flex-direction: column;
  }
}

.loading::after {
  -webkit-animation: spinAround 0.5s infinite linear;
  animation: spinAround 0.5s infinite linear;
  border: 2px solid currentColor;
  border-radius: 290486px;
  border-right-color: transparent !important;
  border-top-color: transparent !important;
  content: "";
  display: block;
  height: 1em;
  position: relative;
  width: 1em;
}

@keyframes spinAround {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
body.fill_vertical_page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.fill_vertical_page .hero_container {
  flex: 1;
}

@media (max-width: 768px) {
  .remove_on_phone {
    display: none !important;
  }
}
@media (max-width: 1080px) {
  .reduce_hero_padding_on_phone {
    padding: 0px;
  }
  .reduce_hero_padding_on_phone .hero {
    padding: 8px;
  }
  .reduce_hero_padding_on_phone .signup_panel {
    width: 100%;
  }
}
