:root {
  color-scheme: light;
  background: #061a42;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }

html { background: #061a42; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(219, 178, 81, .28), transparent 32rem),
    linear-gradient(135deg, #021331 0%, #08275b 48%, #020e25 100%);
}

.site-shell {
  min-height: 100vh;
  padding: 0 0 calc(84px + env(safe-area-inset-bottom));
}

.lp {
  position: relative;
  width: min(100%, 750px);
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 52px rgba(0, 0, 0, .42);
}

.lp-image {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}

.cta {
  position: absolute;
  z-index: 2;
  display: block;
  overflow: hidden;
  outline: none;
  border-radius: 14px;
  transform-origin: center;
  box-shadow: 0 0 0 rgba(255, 223, 131, 0);
  animation: page-cta-pop 3.8s ease-in-out var(--cta-delay, 0s) infinite;
}

.cta::after {
  content: "";
  position: absolute;
  top: -90%;
  bottom: -90%;
  left: -50%;
  width: 34%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .96), transparent);
  transform: rotate(17deg) translateX(-560%);
  animation: page-cta-shine 3.8s ease-in-out var(--cta-delay, 0s) infinite;
}

.cta:focus-visible {
  outline: 4px solid #ffca57;
  outline-offset: 4px;
}

/* Coordinates match the supplied, completed LP artwork (2287 × 37000). */
.cta-hero { --cta-delay: 0s; left: 10.45%; top: 5.803%; width: 79.10%; height: 1.000%; }
.cta-middle { --cta-delay: .7s; left: 5.07%; top: 79.324%; width: 89.90%; height: 1.135%; }
.cta-footer { --cta-delay: 1.4s; left: 5.07%; top: 98.584%; width: 89.90%; height: 1.135%; }

.sticky-cta {
  position: fixed;
  z-index: 10;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(10px, env(safe-area-inset-bottom));
  left: max(12px, env(safe-area-inset-left));
  display: block;
  width: min(calc(100% - 24px), 510px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  filter: drop-shadow(0 8px 10px rgba(0, 14, 38, .38));
  transition: transform .18s ease, filter .18s ease;
  animation: cta-pop 3.8s ease-in-out infinite;
}

.sticky-cta::after {
  content: "";
  position: absolute;
  top: -90%;
  bottom: -90%;
  left: -55%;
  width: 26%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .78), transparent);
  transform: rotate(17deg) translateX(-550%);
  animation: cta-shine 3.6s ease-in-out infinite;
}

.sticky-cta:hover { animation-play-state: paused; transform: translateY(-2px) scale(1.02); filter: drop-shadow(0 11px 14px rgba(0, 14, 38, .48)); }
.sticky-cta:focus-visible { outline: 4px solid #ffca57; border-radius: 10px; }

.sticky-cta img { display: block; width: 100%; height: auto; }

.site-footer {
  width: min(100%, 750px);
  margin: 0 auto;
  padding: 26px 18px calc(32px + env(safe-area-inset-bottom));
  color: rgba(255, 255, 255, .88);
  background: #041a43;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.footer-nav a {
  color: #fff;
  font-size: 13px;
  text-underline-offset: 3px;
}

.site-footer p {
  margin: 18px 0 0;
  font-size: 11px;
  letter-spacing: .03em;
}

@keyframes cta-pop {
  0%, 69%, 100% { transform: scale(1); }
  75% { transform: scale(1.085); }
  81% { transform: scale(.978); }
  87% { transform: scale(1.04); }
  93% { transform: scale(1); }
}

@keyframes cta-shine {
  0%, 58% { transform: rotate(17deg) translateX(-550%); }
  78%, 100% { transform: rotate(17deg) translateX(790%); }
}

@keyframes page-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 223, 131, 0); }
  50% { box-shadow: 0 0 23px 6px rgba(255, 223, 131, .96); }
}

@keyframes page-cta-pop {
  0%, 69%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 223, 131, 0); }
  75% { transform: scale(1.055); box-shadow: 0 0 26px 8px rgba(255, 223, 131, 1); }
  81% { transform: scale(.984); box-shadow: 0 0 10px 2px rgba(255, 223, 131, .62); }
  87% { transform: scale(1.028); box-shadow: 0 0 20px 5px rgba(255, 223, 131, .9); }
  93% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 223, 131, 0); }
}

@keyframes page-cta-shine {
  0%, 47% { transform: rotate(17deg) translateX(-440%); }
  72%, 100% { transform: rotate(17deg) translateX(630%); }
}

@media (min-width: 751px) {
  .site-shell { padding-top: 30px; padding-bottom: 30px; }
  .sticky-cta { width: 392px; left: auto; right: 28px; bottom: 24px; margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta, .sticky-cta::after, .cta, .cta::after { animation: none; transition: none; }
}
