@font-face {
  font-family: "Inter";
  src: url("../../fonts/inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../../fonts/inter/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Martian Mono";
  src: url("../../fonts/martian-mono/MartianMono-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

html {
  font-size: 16px;
}

body {
  min-height: 100vh;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

:root {
  /* colors */
  --neutral-900: #062630;
  --neutral-700: #385159;
  --neutral-200: #E6E1DF;
  --neutral-100: #FAF5F3;
  --neutral-0: #FFF;
  --accent-500: #FEA36F;
  --accent-100: #FFE2D1;
  --accent-50: #FFF5EF;
  --decoration: #9CC9DA;
  --gradient-1: linear-gradient(107deg, #FF9A60 -11.37%, #062630 61.84%);
  --gradient-2: linear-gradient(90deg, #FFE2D1 0%, #FFF5EF 100%);
  /* spacing */
  --spacing-0: 0px;
  --spacing-025: 2px;
  --spacing-050: 4px;
  --spacing-075: 6px;
  --spacing-100: 8px;
  --spacing-150: 12px;
  --spacing-200: 16px;
  --spacing-250: 20px;
  --spacing-300: 24px;
  --spacing-400: 32px;
  --spacing-500: 40px;
  --spacing-600: 48px;
  --spacing-800: 64px;
  --spacing-1000: 80px;
  /* radius */
  --radius-0: 0;
  --radius-4: 4px;
  --radius-5: 5px;
  --radius-6: 6px;
  --radius-8: 8px;
  --radius-10: 10px;
  --radius-12: 12px;
  --radius-16: 16px;
  --radius-20: 20px;
  --radius-24: 24px;
  --radius-25: 25px;
  --radius-full: 999px;
  /* fonts */
  --headings: "Martian Mono", sans-serif;
  --regular-paragraph: "Inter", sans-serif;
}

body {
  font-family: var(--regular-paragraph);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  color: var(--neutral-900);
}

.text-preset-1 {
  font-family: var(--headings);
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.125rem;
}
@media screen and (min-width: 768px) {
  .text-preset-1 {
    font-size: 3.875rem;
  }
}

.text-preset-2 {
  font-family: var(--headings);
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.125rem;
}
@media screen and (min-width: 768px) {
  .text-preset-2 {
    font-size: 3.125rem;
  }
}

.text-preset-3 {
  font-family: var(--headings);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.0625rem;
}
@media screen and (min-width: 768px) {
  .text-preset-3 {
    font-size: 2.125rem;
    line-height: 130%;
  }
}

.text-preset-4-regular {
  font-family: var(--headings);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.0625rem;
}

.text-preset-4-semibold {
  font-family: var(--headings);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.0625rem;
}

.text-preset-5-regular {
  font-family: var(--regular-paragraph);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.03125rem;
}
.text-preset-5-regular strong {
  font-family: var(--regular-paragraph);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.03125rem;
}

.text-preset-6 {
  font-family: var(--headings);
  font-size: 1rem;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.0625rem;
}
@media screen and (min-width: 768px) {
  .text-preset-6 {
    font-size: 1.125rem;
  }
}

.text-preset-7 {
  font-family: var(--headings);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.0625rem;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  position: relative;
  display: inline-block;
  z-index: 0;
}
h1 strong::after,
h2 strong::after,
h3 strong::after,
h4 strong::after,
h5 strong::after,
h6 strong::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 0.6em);
  height: 1.45em;
  transform: translate(-50%, -50%);
  background-image: url("../../images/pattern-circle.png");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (min-width: 768px) {
  main {
    gap: 80px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  main {
    gap: 120px;
  }
}
main section {
  display: flex;
  justify-content: center;
}
main section .section-content-wrapper {
  width: 91.47%;
}
@media screen and (min-width: 768px) {
  main section .section-content-wrapper {
    width: 91.67%;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  main section .section-content-wrapper {
    width: 82.15%;
    max-width: 1440px;
  }
}

.hero {
  position: relative;
  background: url("../../images/pattern-light-bg.svg"), var(--accent-50);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .hero::before {
    content: "";
    position: absolute;
    bottom: -299.956px;
    right: -342px;
    z-index: 0;
    width: 684px;
    height: 684px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    background-color: var(--decoration);
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .hero::before {
    bottom: -226px;
    right: -472px;
  }
}
.hero .section-content-wrapper {
  position: relative;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding-top: 108px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .hero .section-content-wrapper {
    padding-top: 132px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .hero .section-content-wrapper {
    width: 82.39%;
    max-width: 1444px;
    padding-top: 148px;
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
}
@media screen and (min-width: 1200px) {
  .hero .section-content-wrapper .hero-content {
    width: 100%;
    min-width: 0;
    flex: 570 1 0;
  }
}
.hero .section-content-wrapper .hero-content .hero-content-title {
  background: var(--gradient-1);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero .section-content-wrapper .hero-content .hero-content-title strong {
  background: inherit;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .hero .section-content-wrapper .hero-content .hero-content-title {
    width: 80%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .hero .section-content-wrapper .hero-content .hero-content-title {
    width: unset;
  }
}
.hero .section-content-wrapper .hero-content .hero-content-description {
  margin-top: 24px;
  color: var(--neutral-700);
}
@media screen and (min-width: 768px) {
  .hero .section-content-wrapper .hero-content .hero-content-description {
    width: 95%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .hero .section-content-wrapper .hero-content .hero-content-description {
    width: unset;
  }
}
.hero .section-content-wrapper .hero-content .hero-content-button {
  margin-top: 32px;
}
.hero .section-content-wrapper .hero-content .hero-content-social-proof {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .hero .section-content-wrapper .hero-content .hero-content-social-proof {
    width: 55.12%;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .hero .section-content-wrapper .hero-content .hero-content-social-proof {
    width: 68.07%;
  }
}
.hero .section-content-wrapper .hero-content .hero-content-social-proof .hero-content-social-proof-avatars {
  width: 100%;
  min-width: 0;
  flex: 110 1 0;
}
.hero .section-content-wrapper .hero-content .hero-content-social-proof .hero-content-social-proof-rating {
  width: 100%;
  min-width: 0;
  flex: 221 1 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .hero .section-content-wrapper .hero-content .hero-content-social-proof .hero-content-social-proof-rating {
    flex: 266 1 0;
  }
}
.hero .section-content-wrapper .hero-content .hero-content-social-proof .hero-content-social-proof-rating .hero-content-social-proof-rating-stars {
  display: flex;
  justify-content: left;
}
.hero .section-content-wrapper .hero-content .hero-content-social-proof .hero-content-social-proof-rating .hero-content-social-proof-rating-stars img {
  width: 24px;
  height: 24px;
}
.hero .section-content-wrapper .hero-image {
  margin-top: 64px;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .hero .section-content-wrapper .hero-image {
    max-width: 704px;
    border-radius: 10px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .hero .section-content-wrapper .hero-image {
    margin-top: unset;
    width: 100%;
    min-width: 0;
    max-width: unset;
    flex: 540 1 0;
    border-radius: 8px;
  }
}

.image-text .section-content-wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .image-text .section-content-wrapper {
    flex-direction: row;
    gap: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .image-text .section-content-wrapper .image-wrapper {
    flex-basis: 0;
    flex: 560 1 0;
    display: flex;
    align-items: center;
  }
}
.image-text .section-content-wrapper .image-wrapper img {
  border-radius: 12.25px;
}
@media screen and (min-width: 768px) {
  .image-text .section-content-wrapper .image-wrapper img {
    max-width: 704px;
    border-radius: 25.143px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .image-text .section-content-wrapper .image-wrapper img {
    width: 100%;
    border-radius: 20px;
  }
}
.image-text .section-content-wrapper .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .image-text .section-content-wrapper .text-wrapper {
    gap: 34px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .image-text .section-content-wrapper .text-wrapper {
    flex-basis: 0;
    flex: 530 1 0;
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .image-text .section-content-wrapper .text-wrapper .unordered-list {
    width: 81.32%;
  }
}

.text-image .section-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .text-image .section-content-wrapper {
    flex-direction: row;
    gap: 80px;
  }
}
.text-image .section-content-wrapper .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
@media screen and (min-width: 1200px) {
  .text-image .section-content-wrapper .text-wrapper {
    min-width: 0;
    flex-basis: 0;
    flex: 530 1 0;
  }
}
@media screen and (min-width: 1200px) {
  .text-image .section-content-wrapper .image-wrapper {
    min-width: 0;
    flex-basis: 0;
    flex: 560 1 0;
  }
}
.text-image .section-content-wrapper .image-wrapper img {
  border-radius: 12.25px;
}
@media screen and (min-width: 768px) {
  .text-image .section-content-wrapper .image-wrapper img {
    border-radius: 25.143px;
    max-width: 704px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .text-image .section-content-wrapper .image-wrapper img {
    width: 100%;
    border-radius: 20px;
  }
}

.button-light {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 380px;
  padding: 20px 24px;
  background-color: var(--accent-50);
  border: 2px solid var(--neutral-900);
  border-radius: 8px;
  text-transform: uppercase;
  overflow: hidden;
}
.button-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-2);
  opacity: 0;
  transition: opacity 0.3s ease-in;
}
@media screen and (min-width: 1200px) {
  .button-light:hover, .button-light:focus {
    cursor: pointer;
  }
  .button-light:hover::before, .button-light:focus::before {
    opacity: 1;
  }
}
.button-light:focus {
  outline: 2px solid var(--neutral-900);
  outline-offset: 2px;
}
.button-light:link, .button-light:visited, .button-light:hover, .button-light:active {
  color: var(--neutral-900);
  text-decoration: none;
}
.button-light > * {
  position: relative;
  z-index: 1;
}

.unordered-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .unordered-list {
    gap: 24px;
  }
}
.unordered-list li {
  position: relative;
  padding-left: 42px;
  opacity: 0;
  transform: translateY(12px);
  transition: none;
}
.unordered-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 24px;
  background-image: url("../../images/icon-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transform: translateY(-50%) scale(0.8);
}
.unordered-list.is-visible li {
  animation: list-item-in 0.5s ease forwards;
  animation-delay: calc(var(--i) * 0.3s);
}
.unordered-list.is-visible li::before {
  animation: list-icon-in 0.4s ease forwards;
  animation-delay: calc(var(--i) * 0.3s);
}

@keyframes list-item-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes list-icon-in {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .unordered-list li,
  .unordered-list.is-visible li {
    animation: none !important;
    opacity: 1;
    transform: translateY(0);
  }
  .unordered-list li::before,
  .unordered-list.is-visible li::before {
    animation: none !important;
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}
