@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;
}

@media (min-height: 700px) and (min-width: 992px) {
  .lp {
    height: 100vh;
    min-height: 0;
  }
}

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

.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: 18px;
  width: 100%;
  max-width: 1052px;
  margin: 0 auto 28px;
  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%;
  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;
  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;
  display: block;
  width: 100%;
  max-width: 364px;
  height: clamp(220px, 28vw, 300px);
  overflow: hidden;
  border-radius: 20px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  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-frame:focus-visible {
  outline: 3px solid #f2f7ff;
  outline-offset: 4px;
}

.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: 50%;
  width: min(276px, 80%);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -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: 56px;
  margin-top: 14px;
  padding: 12px 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;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 14px clamp(20px, 6vw, 80px);
  background: #f9fafb;
  animation: lp-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.45s backwards;
}

.lp__footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 1216px;
  gap: 16px;
}

.lp__footer-left-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.5vw, 24px);
  justify-self: start;
}

.lp__footer-spacer {
  justify-self: end;
}

a.lp__footer-link {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #4b5563;
  font-feature-settings: 'liga' 0;
  transition: color 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

a.lp__footer-link:hover {
  color: #4c1d95;
}

.lp__copyright {
  margin: 0;
  justify-self: center;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #9ca3af;
  font-feature-settings: 'liga' 0;
}

@media (max-width: 540px) {
  .lp__footer-inner {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .lp__footer-left-links,
  .lp__copyright {
    justify-self: center;
  }

  .lp__footer-spacer {
    display: none;
  }
}

@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,
  a.lp__footer-link {
    transition: none !important;
  }

  .lp__card:hover,
  .lp__button:hover,
  a.lp__footer-link:hover {
    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);
  }
}
