/* ==========================================================================
   LyricBingo — Landing page (welcome / sales)
   ========================================================================== */

.bd-land {
  --land-bg: #07060e;
  --land-violet: #8b5cf6;
  --land-teal: #2dd4bf;
  --land-lime: #c6ff4a;
  --land-pink: #f472b6;
  --land-max: min(1200px, 100% - 2.5rem);
  --land-ease: cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--land-bg);
  color: #fbf8ff;
  overflow-x: hidden;
}

body.bd-gate-active.bd-account-page:has(.bd-land) .site-header {
  display: none;
}

body.bd-gate-active.bd-account-page:has(.bd-land) main {
  padding-top: 0;
}

/* ── Hero ── */
.bd-land-hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 2rem) clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.bd-land-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bd-land-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% -10%, rgba(139, 92, 246, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(45, 212, 191, 0.18), transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 110%, rgba(244, 114, 182, 0.12), transparent 55%),
    var(--land-bg);
}

.bd-land-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 15%, transparent 75%);
}

.bd-land-float {
  position: absolute;
  pointer-events: none;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  opacity: 0.55;
  animation: bd-land-float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.4));
}

.bd-land-float--1 { top: 12%; left: 8%; animation-delay: 0s; }
.bd-land-float--2 { top: 22%; right: 12%; animation-delay: -1.2s; }
.bd-land-float--3 { bottom: 28%; left: 14%; animation-delay: -2.4s; }
.bd-land-float--4 { bottom: 18%; right: 8%; animation-delay: -3.6s; }
.bd-land-float--5 { top: 45%; right: 22%; animation-delay: -1.8s; font-size: 1.5rem; }

@keyframes bd-land-float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

.bd-land-ball {
  position: absolute;
  width: clamp(2.5rem, 5vw, 3.5rem);
  height: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Bebas Neue", impact, sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #1a1028;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 2px 0 rgba(255, 255, 255, 0.35);
  animation: bd-land-ball-drift 8s ease-in-out infinite;
}

.bd-land-ball--b { top: 18%; right: 18%; background: linear-gradient(145deg, #ff6b9d, #ff2d95); animation-delay: 0s; }
.bd-land-ball--i { top: 55%; right: 6%; background: linear-gradient(145deg, #a78bfa, #7c3aed); animation-delay: -2s; color: #fff; }
.bd-land-ball--n { bottom: 32%; left: 6%; background: linear-gradient(145deg, #5eead4, #14b8a6); animation-delay: -4s; }
.bd-land-ball--g { top: 38%; left: 4%; background: linear-gradient(145deg, #fde047, #fbbf24); animation-delay: -1s; }
.bd-land-ball--o { bottom: 14%; right: 28%; background: linear-gradient(145deg, #c6ff4a, #84cc16); animation-delay: -3s; }

@keyframes bd-land-ball-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(8px, -12px) scale(1.04); }
  66% { transform: translate(-6px, 8px) scale(0.98); }
}

.bd-land-eq {
  position: absolute;
  bottom: 12%;
  right: 10%;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
  opacity: 0.5;
}

.bd-land-eq span {
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--land-teal), var(--land-violet));
  animation: bd-land-eq 0.9s ease-in-out infinite;
}

.bd-land-eq span:nth-child(1) { height: 18px; animation-delay: 0s; }
.bd-land-eq span:nth-child(2) { height: 32px; animation-delay: 0.1s; }
.bd-land-eq span:nth-child(3) { height: 24px; animation-delay: 0.2s; }
.bd-land-eq span:nth-child(4) { height: 40px; animation-delay: 0.15s; }
.bd-land-eq span:nth-child(5) { height: 28px; animation-delay: 0.25s; }
.bd-land-eq span:nth-child(6) { height: 36px; animation-delay: 0.05s; }
.bd-land-eq span:nth-child(7) { height: 20px; animation-delay: 0.3s; }

@keyframes bd-land-eq {
  0%, 100% { transform: scaleY(0.45); }
  50% { transform: scaleY(1); }
}

.bd-land-hero__inner {
  position: relative;
  z-index: 1;
  width: var(--land-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .bd-land-hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.bd-land-logo {
  display: inline-flex;
  margin-bottom: 1.25rem;
  line-height: 0;
}

.bd-land-logo img {
  width: min(200px, 58vw);
  height: auto;
}

.bd-land-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--land-lime);
  background: rgba(198, 255, 74, 0.1);
  border: 1px solid rgba(198, 255, 74, 0.25);
  margin-bottom: 1rem;
}

.bd-land-eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--land-lime);
  box-shadow: 0 0 10px var(--land-lime);
  animation: bd-land-pulse 1.4s ease-in-out infinite;
}

@keyframes bd-land-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.bd-land-hero h1 {
  font-family: "Sora", "DM Sans", system-ui, sans-serif;
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.bd-land-hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #fff 0%, var(--land-violet) 40%, var(--land-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bd-land-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: rgba(236, 231, 251, 0.82);
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.bd-land-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.bd-land-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 14px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--land-ease), box-shadow 0.2s var(--land-ease), background 0.2s;
}

.bd-land-btn:active { transform: scale(0.97); }

.bd-land-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #9b6dff 0%, #7c3aed 55%, #6d28d9 100%);
  box-shadow: 0 14px 40px -12px rgba(139, 92, 246, 0.55);
}

.bd-land-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px -10px rgba(139, 92, 246, 0.65);
}

.bd-land-btn--ghost {
  color: #ece7fb;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bd-land-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.bd-land-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  color: #a39cc4;
}

.bd-land-trust strong { color: var(--land-lime); font-weight: 700; }

/* Hero visual card */
.bd-land-showcase {
  position: relative;
  perspective: 1200px;
}

.bd-land-showcase-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(31, 27, 62, 0.7) 0%, rgba(12, 10, 24, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px -24px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(139, 92, 246, 0.15);
  transform: rotateY(-6deg) rotateX(4deg);
  animation: bd-land-card-enter 0.8s var(--land-ease) both;
}

@keyframes bd-land-card-enter {
  from { opacity: 0; transform: rotateY(-6deg) rotateX(4deg) translateY(24px); }
  to { opacity: 1; transform: rotateY(-6deg) rotateX(4deg) translateY(0); }
}

.bd-land-showcase-kicker {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--land-teal);
  margin: 0 0 0.75rem;
}

.bd-land-showcase-song {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.bd-land-showcase-artist {
  font-size: 0.9375rem;
  color: #a39cc4;
  margin: 0 0 1rem;
}

.bd-land-showcase-eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 36px;
  margin-bottom: 1rem;
}

.bd-land-showcase-eq span {
  flex: 1;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--land-violet), var(--land-pink));
  animation: bd-land-eq 0.7s ease-in-out infinite;
}

.bd-land-showcase-eq span:nth-child(odd) { animation-delay: 0.1s; }
.bd-land-showcase-eq span:nth-child(3n) { animation-delay: 0.2s; }

.bd-land-showcase-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.bd-land-showcase-pill {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(198, 255, 74, 0.12);
  color: var(--land-lime);
  border: 1px solid rgba(198, 255, 74, 0.25);
}

/* ── Sections ── */
.bd-land-section {
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 2rem);
}

.bd-land-section--alt {
  background: linear-gradient(180deg, rgba(19, 17, 39, 0.5) 0%, transparent 100%);
}

.bd-land-section__inner {
  width: var(--land-max);
  margin: 0 auto;
}

.bd-land-section__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.bd-land-section__head h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.bd-land-section__head p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #a39cc4;
  margin: 0;
}

/* Features */
.bd-land-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.bd-land-feature {
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(22, 18, 44, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s var(--land-ease), border-color 0.25s, box-shadow 0.25s;
}

.bd-land-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 20px 50px -24px rgba(139, 92, 246, 0.35);
}

.bd-land-feature__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 1.25rem;
  background: rgba(139, 92, 246, 0.15);
  margin-bottom: 1rem;
}

.bd-land-feature h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.bd-land-feature p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #a39cc4;
  margin: 0;
}

/* How it works */
.bd-land-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: land-step;
}

.bd-land-step {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  border-radius: 18px;
  background: rgba(22, 18, 44, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.bd-land-step::before {
  counter-increment: land-step;
  content: counter(land-step);
  position: absolute;
  left: 1.25rem;
  top: 1.35rem;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--land-lime);
  background: rgba(198, 255, 74, 0.12);
  border: 1px solid rgba(198, 255, 74, 0.25);
}

.bd-land-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.bd-land-step p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #a39cc4;
  margin: 0;
}

/* Testimonials */
.bd-land-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.bd-land-quote {
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(22, 18, 44, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bd-land-quote p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ece7fb;
  margin: 0 0 1rem;
  font-style: italic;
}

.bd-land-quote footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bd-land-quote__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.875rem;
  background: linear-gradient(135deg, var(--land-violet), var(--land-teal));
  color: #fff;
}

.bd-land-quote strong {
  display: block;
  font-size: 0.875rem;
}

.bd-land-quote span {
  font-size: 0.75rem;
  color: #6f6890;
}

/* Pricing — reuse welcome price cards with land wrapper */
.bd-land-pricing .bd-welcome-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.bd-land-pricing .bd-welcome-price-card {
  border-radius: 20px;
  background: rgba(22, 18, 44, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s var(--land-ease), box-shadow 0.25s;
}

.bd-land-pricing .bd-welcome-price-card:hover {
  transform: translateY(-4px);
}

.bd-land-pricing .bd-welcome-price-card.is-featured {
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.2), 0 24px 60px -20px rgba(139, 92, 246, 0.35);
}

/* FAQ */
.bd-land-faq {
  max-width: 42rem;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.bd-land-faq-item {
  border-radius: 14px;
  background: rgba(22, 18, 44, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.bd-land-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  color: #fbf8ff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.bd-land-faq-q svg {
  flex-shrink: 0;
  transition: transform 0.25s var(--land-ease);
}

.bd-land-faq-item.is-open .bd-land-faq-q svg {
  transform: rotate(180deg);
}

.bd-land-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--land-ease);
}

.bd-land-faq-item.is-open .bd-land-faq-a {
  max-height: 12rem;
}

.bd-land-faq-a p {
  padding: 0 1.25rem 1.1rem;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #a39cc4;
}

/* Final CTA */
.bd-land-final {
  text-align: center;
  padding: clamp(3rem, 7vw, 4.5rem) clamp(1.25rem, 4vw, 2rem);
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(139, 92, 246, 0.2), transparent 60%),
    rgba(19, 17, 39, 0.6);
}

.bd-land-final h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.75rem;
}

.bd-land-final p {
  color: #a39cc4;
  margin: 0 0 1.5rem;
}

/* Footer */
.bd-land-footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bd-land-footer__inner {
  width: var(--land-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.bd-land-footer__brand img {
  height: 1.75rem;
  width: auto;
  opacity: 0.9;
}

.bd-land-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bd-land-footer__links a {
  font-size: 0.8125rem;
  color: #a39cc4;
  text-decoration: none;
  transition: color 0.15s;
}

.bd-land-footer__links a:hover { color: #ece7fb; }

.bd-land-footer__copy {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: #6f6890;
  margin: 1rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Scroll reveal */
.bd-land-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--land-ease), transform 0.6s var(--land-ease);
}

.bd-land-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .bd-land-float,
  .bd-land-ball,
  .bd-land-eq span,
  .bd-land-showcase-eq span,
  .bd-land-eyebrow i,
  .bd-land-showcase-card {
    animation: none !important;
  }
  .bd-land-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
