body{margin:0}
.page {
  min-height: 100vh;
  color: #191919;
  background: #f4f3f8;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

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

.lp {
  container-type: inline-size;
  width: min(1024px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 42px rgb(44 23 86 / 10%);
}

.lpPage {
  position: relative;
  margin: 0;
  background: #fff;
  scroll-margin-top: 16px;
}

.imageFrame {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.lpImage {
  display: block;
  width: 100%;
  height: auto;
}

/* Keep the approved artwork, but remove its baked-in, overlapping controls.
   The matching text and controls below each crop use normal document flow. */
.heroVisual {
  aspect-ratio: 992 / 1298;
}

.heroVisual .lpImage {
  position: absolute;
  inset: 0 auto auto 0;
}

.ctaPanel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3cqi, 30px);
  padding: clamp(24px, 4cqi, 40px) clamp(20px, 5cqi, 52px) clamp(36px, 5cqi, 52px);
  background: #fff;
  text-align: center;
}

.feeBadge {
  margin: 0;
  padding: 8px 18px;
  color: #6d27e8;
  background: #faf6ff;
  border: 1px solid #ded0ff;
  border-radius: 999px;
  font-size: clamp(14px, 1.8cqi, 18px);
  font-weight: 700;
  line-height: 1.5;
}

.primaryButton {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2cqi, 24px);
  width: 100%;
  max-width: 860px;
  min-height: 76px;
  padding: clamp(18px, 2.5cqi, 26px) clamp(16px, 3cqi, 32px);
  color: #fff;
  background: linear-gradient(110deg, #6d27e8, #e82f96 55%, #ff9e24);
  border: 2px solid rgb(255 255 255 / 75%);
  border-radius: 999px;
  box-shadow: 0 6px 0 #7a2e91, 0 12px 24px rgb(109 39 232 / 22%), inset 0 2px 0 rgb(255 255 255 / 20%);
  font-family: inherit;
  font-size: clamp(16px, 2.4cqi, 24px);
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: box-shadow .16s ease, transform .16s ease, filter .16s ease;
}

/* Animate only the glow so the visible button and its tap target stay aligned. */
.primaryButton::before {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  box-shadow: 0 10px 28px rgb(232 47 150 / 35%);
  content: "";
  pointer-events: none;
  animation: buttonGlow 3.2s ease-in-out infinite;
}

@keyframes buttonGlow {
  0%, 100% { opacity: .2; }
  50% { opacity: .8; }
}

.primaryButton > span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.buttonArrow {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #6d27e8;
  background: #fff;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
}

.primaryButton:focus-visible {
  outline: 3px solid #6d27e8;
  outline-offset: 8px;
}

.primaryButton:active {
  box-shadow: 0 2px 0 #7a2e91, 0 5px 12px rgb(109 39 232 / 20%);
  transform: translateY(4px);
}

.primaryButton:active::before {
  animation: none;
  opacity: 0;
}

.registration {
  padding: clamp(32px, 5cqi, 52px) clamp(16px, 5cqi, 52px) clamp(40px, 6cqi, 64px);
  background: linear-gradient(#fff, #faf6ff);
}

.registrationPanel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3cqi, 32px);
  padding: clamp(24px, 4cqi, 40px) clamp(16px, 3cqi, 32px) clamp(32px, 4cqi, 40px);
  background: #fff;
  border: 1px solid #e4d4ff;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgb(74 33 123 / 10%);
  text-align: center;
}

.registrationTitle {
  margin: 0;
  color: #6d27e8;
  background: linear-gradient(110deg, #6d27e8, #e82f96);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(24px, 4cqi, 40px);
  font-weight: 800;
  line-height: 1.5;
  text-wrap: balance;
}

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (hover: hover) {
  .primaryButton:hover:not(:active) {
    filter: brightness(1.05);
    box-shadow: 0 8px 0 #7a2e91, 0 16px 28px rgb(109 39 232 / 28%);
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .primaryButton {
    transition: none;
  }

  .primaryButton::before {
    animation: none;
    opacity: 0;
  }

  .primaryButton:hover:not(:active),
  .primaryButton:active {
    transform: none;
  }
}
