@font-face {
  font-display: swap;
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/GeneralSans-Regular.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "General Sans";
  font-style: normal;
  font-weight: 600;
  src: url("assets/fonts/GeneralSans-Semibold.woff") format("woff");
}

:root {
  color-scheme: light;
  font-family: "General Sans", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: "General Sans", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1338px;
  width: 100%;
}

.site-header,
.hero,
.preview-section,
.content-section,
.faq-section,
.cta-section,
.site-footer {
  max-width: 100vw;
  overflow: hidden;
}

h2,
h3,
h4,
h5,
h6,
p {
  color: #fff;
  font-family: "General Sans", Arial, Helvetica, sans-serif;
  font-style: normal;
  line-height: normal;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0;
  text-align: center;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: 0.02813rem;
}

h3 {
  font-size: 1.75rem;
  letter-spacing: 0.02188rem;
}

h4 {
  font-size: 1.25rem;
  letter-spacing: 0.01563rem;
}

h5 {
  font-size: 1rem;
  letter-spacing: 0.0125rem;
}

h6 {
  font-size: 0.75rem;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
}

p {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
  text-align: center;
}

.site-header {
  left: 0;
  padding: 24px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.site-nav {
  align-items: center;
  display: flex;
  font-family: "General Sans", Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 600;
  justify-content: space-between;
  letter-spacing: 0.0375rem;
  line-height: normal;
  max-width: 1180px;
  text-transform: uppercase;
}

.site-nav__brand {
  display: inline-flex;
}

.site-nav__brand img {
  display: block;
  height: 24px;
  width: auto;
}

.site-nav__links {
  align-items: center;
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__links a,
.button {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-family: "General Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.0375rem;
  line-height: normal;
  text-decoration: none;
  text-transform: uppercase;
}

.button {
  border-radius: 999px;
  gap: 0.625rem;
  justify-content: center;
  padding: 0.5rem 1.375rem;
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.button:hover {
  opacity: 0.88;
}

.button:active {
  transform: translateY(1px);
}

.button--light {
  background: #fff;
  color: #17131b;
}

.site-nav .site-nav__links a.button--light,
.site-nav .site-nav__links a.button--light:visited {
  color: #17131b;
}

.hero {
  --hero-top-offset: 164px;

  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: var(--hero-top-offset);
  min-height: 443px;
  overflow: visible;
  padding: 96px 24px 56px;
  position: relative;
}

.hero__background {
  height: calc(443px + var(--hero-top-offset));
  inset: calc(var(--hero-top-offset) * -1) 0 auto;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.hero__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 780px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
}

.hero h1 {
  color: #fff;
  margin: 0;
  font-family: "General Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  max-width: 100%;
  text-wrap: balance;
}

.hero p {
  color: #fff;
  font-family: "General Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
  margin: 24px 0 0;
  max-width: 720px;
  text-align: center;
}

.hero__button {
  margin-top: 32px;
}

.hero__community-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
  line-height: 1.45;
  margin-top: 16px;
  max-width: 620px;
}

.preview-section {
  background: #000;
  display: grid;
  padding-bottom: 72px;
  padding-top: 52px;
  place-items: center;
}

.preview-section img {
  display: block;
  height: auto;
  max-width: 100%;
  width: min(100%, 1014px);
}

.content-section,
.faq-section,
.cta-section {
  background: #000;
  padding-bottom: 96px;
  padding-top: 24px;
}

.content-section__inner,
.faq-section__inner {
  margin: 0 auto;
  max-width: 860px;
  text-align: center;
}

.content-section--compact {
  padding-top: 0;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.0375rem;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.content-section h2,
.faq-section h2,
.cta-section h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.content-section p:not(.eyebrow),
.cta-section p {
  line-height: 1.45;
  margin: 24px auto 0;
  max-width: 760px;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 24px;
  text-align: left;
}

.faq-item summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 1.125rem;
  font-weight: 600;
  justify-content: space-between;
  letter-spacing: 0;
  line-height: 1.25;
  list-style: none;
  text-align: left;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  color: rgba(255, 255, 255, 0.64);
  content: "+";
  flex: 0 0 auto;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  margin-left: 18px;
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item summary:focus-visible {
  border-radius: 4px;
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 6px;
}

.faq-item p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.45;
  margin-top: 12px;
  text-align: left;
}

.cta-section {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 112px;
  text-align: center;
}

.cta-section .button {
  margin-top: 28px;
}

.site-footer {
  background: #000;
  display: grid;
  overflow: hidden;
  place-items: center;
}

.site-footer img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.starter-popup {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 24px;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 50;
}

.starter-popup:target {
  opacity: 1;
  pointer-events: auto;
}

.starter-popup__backdrop {
  background: rgba(0, 0, 0, 0.74);
  inset: 0;
  position: absolute;
}

.starter-popup__dialog {
  background: #f6f6f6;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  max-height: calc(100vh - 48px);
  max-width: 440px;
  overflow-y: auto;
  position: relative;
  width: min(100%, 440px);
  z-index: 1;
}

.starter-popup__close {
  align-items: center;
  background: #000;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  height: 34px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 12px;
  text-decoration: none;
  top: 12px;
  width: 34px;
  z-index: 2;
}

.ml-form-embedSubmitLoad {
  display: inline-block;
  height: 20px;
  width: 20px;
}

.ml-form-embedSubmitLoad::after {
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
  border: 4px solid #fff;
  border-color: #fff #fff #fff transparent;
  border-radius: 50%;
  content: " ";
  display: block;
  height: 11px;
  margin: 1px;
  width: 11px;
}

@keyframes ml-form-embedSubmitLoad {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

#mlb2-39040674.ml-form-embedContainer {
  box-sizing: border-box;
  display: table;
  margin: 0 auto;
  position: static;
  width: 100% !important;
}

#mlb2-39040674.ml-form-embedContainer h4,
#mlb2-39040674.ml-form-embedContainer p,
#mlb2-39040674.ml-form-embedContainer span,
#mlb2-39040674.ml-form-embedContainer button {
  letter-spacing: normal !important;
  text-transform: none !important;
}

#mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper {
  background-color: #f6f6f6;
  border: 0 solid transparent;
  border-radius: 12px;
  box-sizing: border-box;
  display: inline-block !important;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

#mlb2-39040674.ml-form-embedContainer .ml-form-align-center {
  text-align: center;
}

#mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
#mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  padding: 34px 24px 24px;
}

#mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
#mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  margin: 0 0 20px;
  padding-right: 28px;
  text-align: left;
}

#mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
#mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  color: #000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.16;
  margin: 0 0 10px;
  text-align: left;
  word-break: break-word;
}

#mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
#mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  color: #000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  text-align: left;
}

#mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
  margin: 0;
  width: 100%;
}

#mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent {
  margin: 0 0 20px;
  width: 100%;
}

#mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
  margin: 0;
  width: 100%;
}

#mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  background-color: #fff !important;
  border-color: #ccc;
  border-radius: 4px !important;
  border-style: solid !important;
  border-width: 1px !important;
  box-sizing: border-box !important;
  color: #333 !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px !important;
  height: auto;
  line-height: 21px !important;
  margin: 0;
  max-width: 100% !important;
  padding: 10px !important;
  width: 100% !important;
}

#mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::placeholder {
  color: #333;
}

#mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  float: left;
  margin: 0 0 24px;
  width: 100%;
}

#mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  background-color: #000 !important;
  border: none !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  color: #fff !important;
  cursor: pointer;
  font-family: "Open Sans", Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  height: auto;
  line-height: 21px !important;
  padding: 10px !important;
  width: 100% !important;
}

#mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {
  display: none;
}

#mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
  background-color: #333 !important;
}

.ml-error input,
.ml-error textarea,
.ml-error select {
  border-color: red !important;
}

@media (max-width: 640px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  h2 {
    font-size: 1.875rem;
    letter-spacing: 0.02344rem;
  }

  h3 {
    font-size: 1.5rem;
    letter-spacing: 0.01875rem;
  }

  h4 {
    font-size: 1.125rem;
    letter-spacing: 0.01406rem;
  }

  h5 {
    font-size: 0.9375rem;
    letter-spacing: 0.01172rem;
  }

  h6 {
    font-size: 0.6875rem;
    letter-spacing: 0.03438rem;
  }

  p {
    font-size: 1rem;
  }

  .site-header {
    padding: 18px 14px;
    position: absolute;
  }

  .site-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-nav__brand img {
    height: 18px;
  }

  .site-nav__links {
    flex-wrap: wrap;
    gap: 8px 10px;
    justify-content: flex-start;
    width: 100%;
  }

  .site-nav__links a {
    font-size: 0.5625rem;
    letter-spacing: 0.01875rem;
  }

  .hero {
    min-height: 520px;
    padding: 136px 18px 56px;
  }

  .hero h1 {
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1.08;
    max-width: 22rem;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 24px;
    max-width: 21rem;
  }

  .hero__button {
    margin-top: 32px;
  }

  .hero__community-note {
    font-size: 0.875rem;
    max-width: 21rem;
  }

  .preview-section {
    padding-bottom: 52px;
    padding-top: 36px;
  }

  .content-section,
  .faq-section,
  .cta-section {
    padding-bottom: 64px;
    padding-top: 20px;
  }

  .content-section p:not(.eyebrow),
  .cta-section p {
    font-size: 1rem;
    max-width: 21rem;
  }

  .faq-list {
    gap: 12px;
    margin-top: 28px;
  }

  .faq-item {
    padding: 18px;
  }

  .faq-item summary {
    font-size: 1rem;
  }

  .faq-item p {
    font-size: 0.9375rem;
  }

  .starter-popup {
    padding: 16px;
  }

  .starter-popup__dialog {
    max-height: calc(100vh - 32px);
  }

  #mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
  #mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
    padding: 32px 18px 20px;
  }

  #mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
  #mlb2-39040674.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
    font-size: 24px;
  }
}
