/* /claim/{slug} — conversion landing (minimal, full-screen, 3G-friendly) */

html.claim-landing-route body > .topbar,
html.claim-landing-route body > .mobile-drawer,
html.claim-landing-route body > .site-footer,
html.claim-landing-route body > .mobile-bottom-nav,
html.claim-landing-route #supportWidget,
html.claim-landing-route .route:not(#claimLandingPage),
html.claim-landing-route .app-section:not(#claimLandingPage) {
  display: none !important;
}

html.claim-landing-route,
html.claim-landing-route body {
  height: 100%;
  overflow: hidden;
  background: #080808;
}

#claimLandingPage {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

#claimLandingPage.section-hidden {
  display: none !important;
}

.claim-landing-bg {
  position: absolute;
  inset: 0;
  background: #111 center / cover no-repeat;
  transform: scale(1.02);
  will-change: transform;
}

.claim-landing-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.15) 0%,
    rgba(8, 8, 8, 0.45) 38%,
    rgba(8, 8, 8, 0.92) 100%
  );
}

.claim-landing-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  padding: 1.25rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom));
  box-sizing: border-box;
}

.claim-landing-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.claim-landing-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.55rem, 5.5vw, 2rem);
  line-height: 1.15;
  font-weight: 700;
}

.claim-landing-meta {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.claim-landing-meta .star {
  color: #f5b301;
}

.claim-landing-stat {
  margin: 0 0 1.15rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
}

.claim-landing-btn {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 12px;
  background: #ff6a00;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.claim-landing-btn:active {
  transform: scale(0.98);
}

.claim-landing-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.claim-landing-form {
  margin-top: 0.25rem;
}

.claim-landing-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.claim-landing-form input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 52px;
  margin-bottom: 0.85rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.05rem;
}

.claim-landing-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.claim-landing-back {
  display: block;
  width: 100%;
  margin-top: 0.55rem;
  padding: 0.65rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  cursor: pointer;
}

.claim-landing-done {
  text-align: center;
  padding: 0.5rem 0 0.25rem;
}

.claim-landing-done-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.18);
  color: #2ecc71;
  font-size: 1.75rem;
  line-height: 56px;
}

.claim-landing-done h2 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
}

.claim-landing-done p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.claim-landing-error {
  margin: 0.75rem 0 0;
  color: #ff8a80;
  font-size: 0.88rem;
}

.claim-landing-loading {
  opacity: 0.7;
  pointer-events: none;
}

.claim-landing-brand {
  position: absolute;
  top: calc(0.75rem + env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 520px) {
  #claimLandingPage {
    align-items: center;
  }

  .claim-landing-panel {
    padding: 2rem;
    border-radius: 18px;
    background: rgba(12, 12, 12, 0.55);
    backdrop-filter: blur(6px);
  }
}
