*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background: #fff;
}

body {
  min-width: 320px;
  padding-bottom: calc(76px + env(safe-area-inset-bottom));
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-text-size-adjust: 100%;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.lp {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.lp-image {
  width: 100%;
  overflow: hidden;
}

.lp-image img {
  opacity: 0;
  transform: translate3d(0, 54px, 0) scale(0.985);
  transition:
    opacity 0.95s ease,
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.lp-image.is-visible img {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.lp-mint-block {
  background: #d6fff5;
}

.lp-image--mint {
  background: #d6fff5;
}

.lp-image--mint + .lp-image--mint {
  margin-top: -8px;
  padding-top: 8px;
}

.lp-beige-block {
  background: #fcf2e0;
}

.lp-image--beige {
  background: #fcf2e0;
}

.lp-image--beige + .lp-image--beige {
  margin-top: -8px;
  padding-top: 8px;
}

.first-view {
  animation: firstViewZoomOut 0.8s ease both;
  transform-origin: center top;
}

.first-view img {
  opacity: 1;
  transform: none;
  transition: none;
}

.fixed-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}

.fixed-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 10px 8px;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transform: translateZ(0);
}

.fixed-cta__button--line {
  background: #06c755;
}

.fixed-cta__button--apply {
  background: #e84b2c;
}

.seo-footer {
  padding: 48px 20px 64px;
  background: #fff;
  color: #8b8b8b;
  text-align: center;
}

.seo-footer h2 {
  margin: 0 0 14px;
  color: #777;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.seo-footer p {
  max-width: 34em;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.9;
}

@keyframes firstViewZoomOut {
  from {
    opacity: 0;
    transform: scale(1.04) translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-image img,
  .first-view {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
