@keyframes lp-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lp-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes lp-hero-glow {
  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 0.72;
  }
}

body {
  margin: 0;
  min-height: 100vh;
}

.lp {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
}

.lp__hero {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
  padding: 132px clamp(24px, 9vw, 134px) 130px;
  background: linear-gradient(180deg, #e7c349 0%, #633771 46.154%, #4c1d95 61.538%);
  isolation: isolate;
}

.lp__hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 20%, rgba(255, 255, 255, 0.22) 0%, transparent 55%);
  animation: lp-hero-glow 8s ease-in-out infinite;
}

.lp__hero > * {
  position: relative;
  z-index: 1;
}

.lp__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 29px;
  width: 100%;
  max-width: 1052px;
  min-height: 164px;
  margin: 0 auto;
  text-align: center;
}

.lp__title {
  margin: 0;
  width: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 6vw, 60px);
  line-height: 1;
  letter-spacing: -1.5px;
  color: #f2f7ff;
  font-feature-settings: 'liga' 0;
  animation: lp-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.06s backwards;
}

.lp__subtitle {
  margin: 0;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 28px;
  color: #ffffff;
  font-feature-settings: 'liga' 0;
  animation: lp-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.16s backwards;
}

.lp__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 0;
  width: 100%;
  min-height: 535px;
  animation: lp-fade-in 0.6s ease-out 0.2s backwards;
}

.lp__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 364px;
  min-height: 514px;
  text-align: center;
  animation: lp-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.lp__card:nth-child(1) {
  animation-delay: 0.26s;
}

.lp__card:nth-child(2) {
  animation-delay: 0.38s;
}

.lp__card:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.2));
}

.lp__card-frame {
  position: relative;
  width: 100%;
  max-width: 364px;
  height: 330px;
  overflow: hidden;
  border-radius: 20px;
  flex-shrink: 0;
  transition:
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.lp__card:hover .lp__card-frame {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  transform: scale(1.02);
}

.lp__card-img {
  position: absolute;
  left: 50%;
  top: 41px;
  width: 276px;
  height: 275px;
  transform: translateX(-50%);
}

.lp__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp__card:hover .lp__card-img img {
  transform: scale(1.06);
}

.lp__card-text {
  margin-top: 23px;
  width: 100%;
}

.lp__card-title {
  margin: 0 auto;
  max-width: 360px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -0.3px;
  color: #fffbfb;
}

.lp__card:nth-child(2) .lp__card-title {
  color: #ffffff;
}

.lp__card-desc {
  margin: 12px auto 0;
  max-width: 340px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

.lp__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 330px;
  height: 67px;
  margin-top: 16px;
  padding: 15px 45px;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
}

.lp__button:hover {
  transform: translateY(-2px) scale(1.02);
}

.lp__button:active {
  transform: translateY(0) scale(0.98);
}

.lp__button:focus-visible {
  outline: 2px solid #f2f7ff;
  outline-offset: 4px;
}

.lp__button-bg {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  transition:
    filter 0.25s ease,
    box-shadow 0.25s ease;
}

.lp__button:hover .lp__button-bg--grey {
  filter: brightness(1.08);
  box-shadow: 0 8px 24px rgba(156, 163, 175, 0.45);
}

.lp__button:hover .lp__button-bg--gold {
  filter: brightness(1.06);
  box-shadow: 0 8px 24px rgba(231, 195, 73, 0.5);
}

.lp__button-bg--grey {
  background: #d1d5db;
}

.lp__button-bg--gold {
  background: #e7c349;
}

.lp__button-label {
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: normal;
  color: #000000;
  text-align: center;
  letter-spacing: 0.2px;
  white-space: nowrap;
  text-transform: capitalize;
}

.lp__footer {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  max-width: 1440px;
  min-height: 288px;
  flex-shrink: 0;
  align-items: flex-start;
  justify-content: center;
  padding: 64px clamp(24px, 8vw, 112px);
  background: #f9fafb;
  animation: lp-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.45s backwards;
}

.lp__footer-inner {
  display: flex;
  width: 100%;
  max-width: 1216px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.lp__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  overflow: hidden;
}

.lp__logomark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.lp__logomark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp__logomark:hover img {
  transform: scale(1.08) rotate(-3deg);
}

.lp__footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

.lp__links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

a.lp__footer-link {
  margin: 0;
  font-feature-settings: 'liga' 0;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

a.lp__footer-link:hover {
  color: #4c1d95;
  transform: translateX(2px);
}

.lp__copyright {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #d1d5db;
  white-space: nowrap;
  font-feature-settings: 'liga' 0;
}

.lp__badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 176px;
  max-width: 100%;
  overflow: hidden;
}

.lp__badges-title {
  margin: 0;
  width: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: -0.25px;
  color: #000000;
  font-feature-settings: 'liga' 0;
  transition: letter-spacing 0.35s ease;
}

.lp__badges:hover .lp__badges-title {
  letter-spacing: 0;
}

.lp__store-badge {
  position: relative;
  width: 135px;
  height: 40px;
  overflow: hidden;
  flex-shrink: 0;
}

.lp__store-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.3s ease;
}

.lp__store-badge:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .lp__hero::after {
    animation: none;
    opacity: 0.5;
  }

  .lp__title,
  .lp__subtitle,
  .lp__grid,
  .lp__card,
  .lp__footer {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .lp__card,
  .lp__card-frame,
  .lp__card-img img,
  .lp__button,
  .lp__button-bg,
  .lp__logomark img,
  a.lp__footer-link,
  .lp__badges-title,
  .lp__store-badge img {
    transition: none !important;
  }

  .lp__card:hover,
  .lp__button:hover,
  a.lp__footer-link:hover,
  .lp__store-badge:hover img {
    transform: none !important;
    filter: none !important;
  }

  .lp__card:hover {
    filter: none !important;
  }

  .lp__card:hover .lp__card-frame {
    transform: none !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  }
}
