/* -- Reset / scope ---------------------------------------- */
.lj-funnel-hero,
.lj-live-feed,
.lj-result,
.lj-trust {
  box-sizing: border-box;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* -- Hero -------------------------------------------------- */
.lj-funnel-hero {
  background: #0a0f1e;
  padding: 80px 24px 64px;
  text-align: center;
}
.lj-funnel-hero__inner {
  max-width: 920px;
  margin: 0 auto;
}
.lj-funnel-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #BFF902;
  margin: 0 0 20px;
}
.lj-funnel-hero__headline {
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 20px;
}
.lj-funnel-hero__sub {
  font-size: 1.05rem;
  color: #a0aabf;
  line-height: 1.7;
  margin: 0 0 40px;
}

/* -- Domain form ------------------------------------------- */
.lj-domain-form__row {
  display: flex;
  gap: 0;
  border: 2px solid #BFF902;
  border-radius: 6px;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}
.lj-domain-form__input-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  background: #111827;
}
.lj-domain-form__prefix {
  padding: 0 0 0 16px;
  color: #4b5563;
  font-size: 0.95rem;
  white-space: nowrap;
}
.lj-domain-form__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 12px;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
}
.lj-domain-form__input::placeholder {
  color: #4b5563;
}
.lj-domain-form__btn {
  background: #BFF902;
  color: #0a0f1e;
  border: none;
  padding: 16px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.lj-domain-form__btn:hover {
  background: #d4ff1a;
}
.lj-domain-form__note {
  margin: 12px 0 0;
  font-size: 0.8rem;
  color: #4b5563;
}

/* -- Live feed strip --------------------------------------- */
.lj-live-feed {
  background: #060b17;
  border-top: 1px solid #1a2236;
  border-bottom: 1px solid #1a2236;
  padding: 12px 24px;
  overflow: hidden;
}
.lj-live-feed__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.lj-live-feed__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #a0aabf;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lj-live-feed__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #BFF902;
  animation: lj-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes lj-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.lj-live-feed__ticker {
  overflow: hidden;
}
.lj-live-feed__item {
  font-size: 0.85rem;
  color: #d1d8e8;
  animation: lj-fadein 0.4s ease;
}
@keyframes lj-fadein {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -- Result section ---------------------------------------- */
.lj-result {
  background: #0a0f1e;
  padding: 60px 24px;
}
.lj-result__inner {
  max-width: 680px;
  margin: 0 auto;
}

/* Loading */
.lj-result__loading {
  text-align: center;
  color: #a0aabf;
  font-size: 1rem;
}
.lj-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #1a2236;
  border-top-color: #BFF902;
  border-radius: 50%;
  animation: lj-spin 0.7s linear infinite;
  margin: 0 auto 20px;
}
@keyframes lj-spin {
  to { transform: rotate(360deg); }
}

/* Card */
.lj-result__card {
  background: #111827;
  border: 1px solid #1a2236;
  border-radius: 10px;
  padding: 36px;
}
.lj-result__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

/* Logo 100x100 */
.lj-result__logo-wrap {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  background: #1a2236;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lj-result__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lj-result__logo-fallback {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background: #1a2236;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #BFF902;
  text-transform: uppercase;
  flex-shrink: 0;
}
.lj-result__logo-fallback--visible {
  display: flex;
}
.lj-result__company-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
}
.lj-result__company-domain {
  font-size: 0.85rem;
  color: #4b5563;
  margin: 0;
}
.lj-result__intro {
  font-size: 0.95rem;
  color: #a0aabf;
  line-height: 1.6;
  margin: 0 0 28px;
}

/* Stats row */
.lj-result__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.lj-result__stat {
  background: #0a0f1e;
  border: 1px solid #1a2236;
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
}
.lj-result__stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #BFF902;
  line-height: 1;
  margin-bottom: 8px;
  filter: blur(6px);
  user-select: none;
}
.lj-result__stat-label {
  font-size: 0.75rem;
  color: #a0aabf;
  line-height: 1.4;
}

/* Blurred list - all items same blur, CTA overlaid in centre */
.lj-result__blurred-list {
  background: #0a0f1e;
  border: 1px solid #1a2236;
  border-radius: 8px;
  padding: 20px 24px 24px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.lj-result__blurred-label {
  font-size: 0.8rem;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}
.lj-result__names {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lj-result__names li {
  font-size: 0.95rem;
  color: #d1d8e8;
  padding: 10px 0;
  border-bottom: 1px solid #1a2236;
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
  opacity: 1;
}

/* Overlay - centred over the blurred names */
.lj-result__list-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(10,15,30,0.5) 30%,
    rgba(10,15,30,0.95) 60%,
    #0a0f1e 80%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 24px;
}
.lj-result__overlay-btn {
  display: inline-block;
  background: #BFF902;
  color: #0a0f1e;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s ease;
  margin-bottom: 10px;
}
.lj-result__overlay-btn:hover {
  background: #d4ff1a;
  color: #0a0f1e;
}
.lj-result__overlay-small {
  font-size: 0.9rem;
  color: #d1d8e8;
  margin: 0;
  font-weight: 500;
}

/* -- Trust strip ------------------------------------------- */
.lj-trust {
  background: #060b17;
  border-top: 1px solid #1a2236;
  padding: 20px 24px;
}
.lj-trust__inner {
  max-width: 960px;
  margin: 0 auto;
}
.lj-trust__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.lj-trust__item {
  font-size: 0.8rem;
  color: #a0aabf;
  padding: 0 20px;
}
.lj-trust__item--divider {
  width: 1px;
  height: 14px;
  background: #1a2236;
  padding: 0;
}

/* -- Responsive -------------------------------------------- */
@media (max-width: 600px) {
  .lj-domain-form__row {
    flex-direction: column;
    border-radius: 6px;
  }
  .lj-domain-form__btn {
    border-radius: 0;
    width: 100%;
    text-align: center;
  }
  .lj-result__stats {
    grid-template-columns: 1fr;
  }
  .lj-result__card {
    padding: 24px 18px;
  }
  .lj-live-feed__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .lj-trust__list {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .lj-trust__item--divider {
    display: none;
  }
}
