/* ===== Landing — StakeRefund checkpoint style (our palette) ===== */
.lp *,
.lp *::before,
.lp *::after { box-sizing: border-box; }

.lp {
  margin: 0;
  min-height: 100vh;
  font-family: 'Lato', system-ui, sans-serif;
  color: #f0f0f5;
  background: #050508;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

/* Subtle grid + scanline feel (our dark + gold) */
.lp__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212, 168, 83, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 83, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.8;
}

/* Glitch-style frame: border with offset corners */
.lp__frame {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  padding: 48px 40px 44px;
}

.lp__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 168, 83, 0.45);
  border-radius: 4px;
  pointer-events: none;
}

/* Accent line extensions (broken corner effect) */
.lp__frame::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, #d4a853 8%, #d4a853 92%, transparent 100%);
  opacity: 0.6;
  pointer-events: none;
}

/* Badge */
.lp__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #d4a853;
  margin: 0 0 28px;
}

.lp__badge-line {
  display: block;
  width: 24px;
  height: 1px;
  background: #d4a853;
}

/* Title: solid / outline lines */
.lp__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lp__title-line {
  display: block;
}

.lp__title-line--solid {
  color: #f0f0f5;
  text-shadow: 0 0 20px rgba(240, 240, 245, 0.15);
}

.lp__title-line--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px #d4a853;
  text-stroke: 1.5px #d4a853;
}

/* Body */
.lp__text {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
  max-width: 32em;
}

/* Status line */
.lp__status {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4a853;
  font-family: 'Lato', monospace;
  margin: 0;
}

@media (max-width: 600px) {
  .lp__frame { padding: 36px 24px 32px; }
  .lp__badge { font-size: 0.65rem; letter-spacing: 0.2em; }
  .lp__title { font-size: clamp(2rem, 10vw, 3rem); }
  .lp__text { font-size: 1rem; }
}
