@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K6z9mXg.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K6z9mXg.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K6z9mXg.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K6z9mXg.woff2") format("woff2");
}

.vp-newhome {
  --vp-ink: #07111f;
  --vp-muted: #526073;
  --vp-line: #e7eaf0;
  --vp-soft: #f5f8fc;
  --vp-blue: #0b63ff;
  --vp-lime: #c9ff62;
  color: var(--vp-ink);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.vp-newhome,
.vp-newhome * {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.vp-newhome a.vp-button,
.vp-newhome a.vp-button:hover,
.vp-newhome a.vp-button:focus {
  text-decoration: none !important;
}

.vp-newhome a.vp-button--primary,
.vp-newhome a.vp-button--primary:hover,
.vp-newhome a.vp-button--primary:focus,
.vp-newhome a.vp-button--orange,
.vp-newhome a.vp-button--orange:hover,
.vp-newhome a.vp-button--orange:focus {
  color: #fff !important;
}

.vp-newhome a.vp-link-button,
.vp-newhome a.vp-link-button:hover,
.vp-newhome a.vp-link-button:focus {
  color: #000 !important;
  text-decoration-line: underline !important;
  text-decoration-style: solid !important;
  text-underline-offset: 3px !important;
}

.vp-newhome * {
  box-sizing: border-box;
}

.vp-container {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.vp-hero {
  overflow: hidden;
  padding: 50px 0 0;
  background: #fff;
}

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

.vp-kicker {
  margin: 0 0 14px;
  color: #777;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vp-hero h1,
.vp-section h2,
.vp-final-cta h2 {
  margin: 0;
  color: var(--vp-ink);
  font-weight: 700;
  letter-spacing: 0;
}

.vp-hero h1 {
  max-width: 1245px;
  margin: 0 auto;
  color: #000;
  font-size: 64px;
  line-height: 70px;
  font-weight: 600;
}

.vp-lead {
  max-width: 1245px;
  margin: 40px auto 0;
  color: #334155;
  font-size: 18px;
  line-height: 29.7px;
  font-weight: 400;
}

.vp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 52px;
}

.vp-button {
  display: inline-flex;
  min-width: 180px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50px;
  padding: 12px 24px;
  color: var(--vp-ink);
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  text-decoration: none;
}

.vp-button--primary {
  background: #375efb;
  color: #fff;
}

.vp-hero .vp-button {
  min-width: 178px;
}

.vp-newhome .vp-link-button {
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 20.8px;
  font-weight: 500;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-offset: 3px;
}

.vp-newhome .vp-link-button:hover,
.vp-newhome .vp-link-button:focus {
  color: #000;
  text-decoration-line: underline;
}

.vp-marquee {
  width: 100vw;
  height: 510px;
  margin-top: 60px;
  overflow: hidden;
  padding: 55px 0;
  background: #fff;
}

.vp-marquee__track {
  display: flex;
  width: max-content;
  gap: 24px;
  padding: 10px;
  transform: translateX(-38px);
  animation: vp-marquee 26s linear infinite;
}

.vp-marquee img {
  display: block;
  width: 380px;
  height: 380px;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  object-fit: cover;
  flex: 0 0 auto;
}

.vp-marquee img:nth-child(odd) {
  margin-top: 0;
}

.vp-marquee img:nth-child(even) {
  margin-top: 35px;
}

@keyframes vp-marquee {
  from {
    transform: translateX(-38px);
  }
  to {
    transform: translateX(-1654px);
  }
}

.vp-section {
  padding: clamp(72px, 8vw, 112px) 0;
  background: #fff;
}

.vp-section--workflow {
  background: #fff;
}

.vp-section__head {
  max-width: 1280px;
  margin-bottom: 40px;
}

.vp-section__head--center {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.vp-section__head h2 {
  font-size: 36px;
  line-height: 46.8px;
  font-weight: 600;
}

.vp-section__head p:not(.vp-kicker) {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--vp-muted);
  font-size: 16px;
  line-height: 26.4px;
  font-weight: 400;
}

.vp-workflow-layout {
  display: grid;
  grid-template-columns: 633px 1fr;
  gap: 0;
  align-items: start;
}

.vp-workflow-media img {
  display: block;
  width: 450px;
  height: 450px;
  border-radius: 0;
  object-fit: cover;
}

.vp-workflow-media .vp-button {
  width: 180px;
  margin-top: 40px;
  border-radius: 28px;
}

.vp-step-list {
  display: grid;
  gap: 40px;
}

.vp-step {
  display: grid;
  grid-template-columns: 30px minmax(0, 550px);
  gap: 20px;
  min-height: 87px;
  align-items: start;
  text-align: left;
}

.vp-step img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-top: 0;
  margin-bottom: 0;
}

.vp-step h3,
.vp-category-card h3,
.vp-faq article h3 {
  margin: 0;
  color: var(--vp-ink);
  font-size: 25px;
  line-height: 32.5px;
  font-weight: 500;
}

.vp-step p,
.vp-faq article p,
.vp-final-cta p {
  margin: 8px 0 0;
  color: var(--vp-muted);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

.vp-section--promo {
  background: #fff;
  padding-top: 20px;
}

.vp-promo {
  overflow: hidden;
  display: grid;
  grid-template-columns: 433px minmax(0, 1fr);
  gap: 0;
  align-items: center;
  height: 600px;
  min-height: 600px;
  border-radius: 30px;
  background: #00008e;
  padding: 0;
}

.vp-promo__copy {
  color: #fff;
  padding-left: 40px;
}

.vp-promo h2 {
  margin: 0;
  color: #fff;
  font-size: 36px;
  line-height: 46.8px;
  font-weight: 600;
}

.vp-promo p {
  margin: 36px 0 0;
  color: #fff;
  font-size: 16px;
  line-height: 26.4px;
  font-weight: 400;
}

.vp-button--orange {
  margin-top: 36px;
  width: 186px;
  min-height: 42px;
  padding-top: 12px;
  padding-bottom: 12px;
  white-space: nowrap;
  border-radius: 28px;
  background: #e54918;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
}

.vp-promo > img {
  display: block;
  justify-self: end;
  width: 680px;
  max-width: 100%;
  height: 480px;
  object-fit: contain;
  object-position: center;
  min-width: 0;
}

.vp-section--faq {
  background: #fff;
  padding-top: 0;
}

.vp-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}

.vp-faq .vp-section__head {
  margin-bottom: 0;
}

.vp-faq__grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--vp-line);
}

.vp-faq-item {
  border: 0;
  border-bottom: 1px solid var(--vp-line);
  border-radius: 0;
  background: #fff;
  padding: 0;
}

.vp-faq-item summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px;
  color: #1f2124;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 26.4px;
  font-weight: 400;
}

.vp-faq-item summary::after {
  content: "+";
  width: 18px;
  height: 18px;
  line-height: 16px;
  border: 1px solid currentColor;
  border-radius: 50%;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
}

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

.vp-faq-item p {
  margin: 0;
  padding: 0 10px 18px;
  color: var(--vp-muted);
  font-size: 16px;
  line-height: 26.4px;
  font-weight: 400;
}

.vp-newhome .shop-the-collection-container {
  padding-bottom: 0;
}

@media (min-width: 1281px) and (max-width: 1440px) {
  .vp-section--workflow .vp-container,
  .vp-section--promo .vp-container,
  .vp-section--faq .vp-container {
    width: min(90%, 1280px);
  }
}

@media (max-width: 1180px) {
  .vp-container {
    width: min(100% - 10vw, 1280px);
  }

  .vp-workflow-layout {
    grid-template-columns: minmax(320px, 480px) minmax(0, 1fr);
    gap: 64px;
  }
}

@media (max-width: 900px) {
  .vp-workflow-layout,
  .vp-promo,
  .vp-faq {
    grid-template-columns: 1fr;
  }

  .vp-workflow-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .vp-promo {
    height: auto;
    min-height: 0;
    padding: 40px;
  }

  .vp-promo__copy {
    padding-left: 0;
  }

  .vp-promo > img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 640px) {
  .vp-container {
    width: min(100% - 32px, 1280px);
  }

  .vp-hero h1 {
    font-size: 42px;
    line-height: 48px;
  }

  .vp-actions {
    gap: 22px;
    margin-top: 36px;
  }

  .vp-marquee img {
    width: 280px;
    height: 280px;
  }

  .vp-step {
    grid-template-columns: 36px 1fr;
  }
}
