/* Buy Buy Buy Group — premium dark luxury landing (scoped to .lp) */

.lp {
  --lp-bg: #07111e;
  --lp-bg-elevated: #0b1726;
  --lp-primary: #6f5bea;
  --lp-secondary: #aa9cff;
  --lp-profit: #5ad8a6;
  --lp-text: #ffffff;
  --lp-muted: #a9b7ca;
  --lp-muted-2: #78879b;
  --lp-glass: rgba(8, 19, 34, 0.86);
  --lp-glass-border: rgba(170, 156, 255, 0.2);
  --lp-glass-border-strong: rgba(170, 156, 255, 0.42);
  --lp-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --lp-glow: 0 0 40px rgba(124, 58, 237, 0.35);
  --lp-font: "DM Sans", "Segoe UI", sans-serif;
  --lp-display: "Syne", "DM Sans", sans-serif;
  --lp-max: 1180px;
  color: var(--lp-text);
  background: var(--lp-bg);
  font-family: var(--lp-font);
  min-height: 100vh;
  overflow-x: clip;
}

.public-frame--bare {
  background: var(--lp-bg, #081121);
}

.lp-nav {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  width: min(calc(100% - 1.5rem), var(--lp-max));
  border-radius: 1rem;
  border: 1px solid transparent;
  background: transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.lp-nav.is-scrolled {
  background: var(--lp-glass);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  border-color: var(--lp-glass-border);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.38);
}

.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1rem;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--lp-text);
  flex-shrink: 0;
}

.lp-brand:hover {
  color: #fff;
}

.lp-brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 0.7rem;
  background: linear-gradient(145deg, var(--lp-secondary) 0%, var(--lp-primary) 55%, #4c1d95 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--lp-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: #fff;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.45);
}

.lp-brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.15;
}

.lp-brand-text strong {
  font-family: var(--lp-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-nav-links {
  display: none;
  align-items: center;
  gap: 0.1rem;
}

.lp-nav-links a {
  color: rgba(226, 232, 240, 0.78);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.65rem;
  border-radius: 0.5rem;
  transition: color 180ms ease, background 180ms ease;
}

.lp-nav-links a:hover {
  color: #fff;
  background: rgba(159, 103, 255, 0.12);
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-nav-signin {
  color: rgba(226, 232, 240, 0.9);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.lp-nav-signin:hover {
  color: #fff;
}

.lp-nav-cta,
.lp .btn-primary {
  background: linear-gradient(135deg, var(--lp-primary), #6d28d9);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
  text-decoration: none;
}

.lp .btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #8b5cf6, var(--lp-primary));
  color: #fff;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.55);
}

.lp .btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  text-decoration: none;
}

.lp .btn-secondary:hover:not(:disabled) {
  background: rgba(159, 103, 255, 0.12);
  border-color: rgba(159, 103, 255, 0.45);
  color: #fff;
}

.lp-nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.lp-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #e2e8f0;
  border-radius: 1px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.lp-nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.lp-nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.lp-nav-drawer {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-nav-drawer[hidden] {
  display: none;
}

.lp-nav-drawer a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 550;
  padding: 0.6rem 0.25rem;
}

.lp-nav-drawer .btn {
  margin-top: 0.35rem;
  text-align: center;
}

@media (min-width: 960px) {
  .lp-nav-links {
    display: flex;
  }

  .lp-nav-toggle,
  .lp-nav-drawer {
    display: none !important;
  }
}

/* Hero */
.lp-hero {
  position: relative;
  padding: clamp(7rem, 13vh, 9.25rem) clamp(1rem, 4vw, 2.5rem) clamp(3rem, 6vh, 4.5rem);
  overflow: hidden;
}

.lp-hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 48% at 8% 18%, rgba(111, 91, 234, 0.3), transparent 62%),
    radial-gradient(ellipse 42% 38% at 92% 12%, rgba(91, 75, 190, 0.24), transparent 58%),
    radial-gradient(ellipse 50% 45% at 72% 90%, rgba(28, 67, 110, 0.34), transparent 62%),
    linear-gradient(165deg, #06101c 0%, #07111e 48%, #0a1830 100%);
}

.lp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.55;
  animation: lp-drift 18s ease-in-out infinite;
}

.lp-orb--a {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  top: -8%;
  right: -6%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.55), transparent 68%);
}

.lp-orb--b {
  width: min(36vw, 300px);
  height: min(36vw, 300px);
  bottom: 4%;
  left: -5%;
  background: radial-gradient(circle, rgba(159, 103, 255, 0.4), transparent 70%);
  animation-delay: -7s;
}

.lp-orb--c {
  width: min(24vw, 200px);
  height: min(24vw, 200px);
  top: 48%;
  left: 48%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  animation-delay: -11s;
}

.lp-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, #000 10%, transparent 75%);
  opacity: 0.5;
  animation: lp-mesh-shift 28s linear infinite;
}

.lp-hero-layout {
  position: relative;
  z-index: 1;
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

@media (min-width: 960px) {
  .lp-hero-layout {
    grid-template-columns: 1.08fr 0.92fr;
  }
}

.lp-hero-copy {
  animation: lp-rise 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(159, 103, 255, 0.35);
  background: rgba(124, 58, 237, 0.16);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ddd6fe;
}

.lp-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-secondary);
  box-shadow: 0 0 0 4px rgba(159, 103, 255, 0.22);
}

.lp-headline {
  margin: 0 0 1.1rem;
  font-family: var(--lp-display);
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: #fff;
  max-width: 13ch;
}

.lp-grad {
  display: inline;
  background: linear-gradient(120deg, #c4b5fd 0%, var(--lp-secondary) 45%, var(--lp-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-lead {
  margin: 0 0 1.75rem;
  max-width: 48ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #b6c2d2;
}

.lp-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.lp-cta-primary,
.lp-cta-secondary {
  min-width: 9.5rem;
  padding: 0.8rem 1.35rem;
  text-decoration: none;
}

.lp-hero-preview {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-hero-preview.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.lp-preview-chrome {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--lp-glass-border);
  border-bottom: 0;
  border-radius: 1rem 1rem 0 0;
  background: rgba(12, 24, 41, 0.85);
  backdrop-filter: blur(12px);
}

.lp-preview-dots {
  display: flex;
  gap: 5px;
}

.lp-preview-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.45);
}

.lp-preview-dots i:first-child {
  background: #f87171;
}

.lp-preview-dots i:nth-child(2) {
  background: #fbbf24;
}

.lp-preview-dots i:nth-child(3) {
  background: #34d399;
}

.lp-preview-title {
  flex: 1;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lp-muted);
  letter-spacing: 0.02em;
}

.lp-preview-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(170, 156, 255, 0.28);
  border-radius: 0 0 1rem 1rem;
  background: linear-gradient(160deg, rgba(18, 28, 48, 0.92), rgba(8, 17, 33, 0.95));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.025);
}

@media (min-width: 520px) {
  .lp-preview-card {
    grid-template-columns: 140px 1fr;
  }
}

.lp-preview-media {
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.lp-preview-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  color: var(--lp-muted);
}

.lp-preview-name {
  margin: 0 0 0.75rem;
  font-family: var(--lp-display);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.3;
  color: #fff;
}

.lp-preview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 0.75rem;
  margin: 0 0 0.85rem;
}

.lp-preview-stats dt {
  font-size: 0.68rem;
  color: var(--lp-muted-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-preview-stats dd {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  font-weight: 650;
  color: #fff;
}

.lp-preview-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 0.55rem;
}

.lp-preview-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lp-primary), var(--lp-secondary));
}

.lp-preview-note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--lp-muted);
}

/* Trust row */
.lp-trust-row {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1rem, 4vw, 2.5rem) clamp(2rem, 4vw, 3rem);
}

.lp-trust {
  list-style: none;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  max-width: var(--lp-max);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.5rem;
  border: 1px solid var(--lp-glass-border);
  border-radius: 1rem;
  background: rgba(10, 23, 40, 0.8);
  backdrop-filter: blur(10px);
}

.lp-trust li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.875rem;
  color: var(--lp-muted);
}

.lp-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lp-secondary);
  box-shadow: 0 0 8px rgba(159, 103, 255, 0.6);
}

/* Sections */
.lp-section {
  position: relative;
  padding: clamp(3.25rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2.5rem);
}

.lp-section-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
}

.lp-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-secondary);
}

.lp-section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--lp-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  color: #fff;
}

.lp-section-lead {
  margin: 0 0 2rem;
  max-width: 48ch;
  color: var(--lp-muted);
  line-height: 1.55;
}

.lp-admin-note {
  margin: -1rem 0 1.5rem;
  max-width: 72ch;
  padding: 0.75rem 0.9rem;
  border-left: 3px solid var(--lp-secondary);
  border-radius: 0 0.65rem 0.65rem 0;
  background: rgba(170, 156, 255, 0.07);
  font-size: 0.82rem;
  color: var(--lp-muted);
  line-height: 1.5;
}

/* Live deals */
.lp-deals {
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(124, 58, 237, 0.12), transparent 55%),
    var(--lp-bg);
}

.lp-filters {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(10, 23, 40, 0.68);
}

.lp-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.lp-filter-chip {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--lp-muted);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.lp-filter-chip:hover {
  color: #fff;
  border-color: rgba(159, 103, 255, 0.4);
}

.lp-filter-chip.is-active {
  color: #fff;
  background: rgba(124, 58, 237, 0.28);
  border-color: rgba(159, 103, 255, 0.55);
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.25);
}

.lp-filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lp-filter-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-muted-2);
}

.lp-select {
  min-width: 9.5rem;
  padding: 0.5rem 0.7rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 17, 33, 0.9);
  color: #fff;
  font: inherit;
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.lp-deal-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 760px) {
  .lp-deal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .lp-deal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lp-deal-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid var(--lp-glass-border);
  background: linear-gradient(165deg, rgba(15, 29, 49, 0.96), rgba(7, 17, 30, 0.98));
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease, box-shadow 180ms ease;
}

.lp-deal-card.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.lp-deal-card:hover {
  border-color: var(--lp-glass-border-strong);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 28px rgba(124, 58, 237, 0.18);
  transform: translateY(-3px);
}

.lp-deal-card[hidden] {
  display: none !important;
}

.lp-deal-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #fff;
}

.lp-deal-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.lp-demo-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 1;
  padding: 0.2rem 0.5rem;
  border-radius: 0.4rem;
  background: rgba(8, 17, 33, 0.85);
  border: 1px solid rgba(251, 191, 36, 0.55);
  color: #fde68a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-demo-badge--inline {
  position: static;
  background: rgba(251, 191, 36, 0.12);
}

.lp-live-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 1;
  padding: 0.2rem 0.5rem;
  border-radius: 0.4rem;
  background: rgba(8, 17, 33, 0.85);
  border: 1px solid rgba(52, 211, 153, 0.55);
  color: #a7f3d0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-live-badge--inline {
  position: static;
  background: rgba(52, 211, 153, 0.12);
}

.lp-stock {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lp-preview-meta .lp-stock {
  position: static;
}

.lp-stock--in {
  background: rgba(16, 185, 129, 0.18);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.lp-stock--limited {
  background: rgba(245, 158, 11, 0.18);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.lp-stock--out {
  background: rgba(239, 68, 68, 0.18);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.lp-deal-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1rem 1.05rem 1.15rem;
  flex: 1;
}

.lp-deal-topline {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--lp-muted);
}

.lp-deal-brand {
  font-weight: 700;
  color: #ddd6fe;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-deal-name {
  margin: 0;
  font-family: var(--lp-display);
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #fff;
}

.lp-deal-retailer {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
}

.lp-deal-retailer-logo {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.lp-deal-retailer-fallback {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.35);
  font-size: 0.7rem;
  font-weight: 700;
}

.lp-deal-specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.75rem;
}

.lp-deal-specs li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.lp-deal-specs span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lp-muted-2);
}

.lp-deal-specs strong {
  font-size: 0.8rem;
  font-weight: 600;
  color: #e2e8f0;
  overflow-wrap: anywhere;
}

.lp-deal-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.7rem;
  border-radius: 0.75rem;
  background: rgba(170, 156, 255, 0.075);
  border: 1px solid rgba(170, 156, 255, 0.2);
}

.lp-price-label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lp-muted);
  margin-bottom: 0.15rem;
}

.lp-deal-pricing strong {
  font-size: 0.95rem;
  color: #fff;
}

.lp-price-payout {
  color: #c4b5fd !important;
}

.lp-price-profit {
  color: var(--lp-profit) !important;
}

.lp-earn-tip,
.commit-earn-tip,
.qb-earn-tip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
  cursor: help;
  opacity: 0.75;
}

.lp-earn-tip:hover,
.commit-earn-tip:hover,
.qb-earn-tip:hover,
.lp-earn-tip:focus-visible,
.commit-earn-tip:focus-visible,
.qb-earn-tip:focus-visible {
  opacity: 1;
  outline: none;
}

.lp-deal-demo-note {
  margin: 0;
  font-size: 0.72rem;
  color: #fbbf24;
}

.lp-deal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.lp-deal-actions .btn {
  flex: 1 1 auto;
  justify-content: center;
  text-align: center;
}

.lp-deals-empty {
  margin: 1rem 0 0;
  color: var(--lp-muted);
  text-align: center;
}

/* How it works */
.lp-how {
  background:
    radial-gradient(ellipse 40% 50% at 100% 50%, rgba(159, 103, 255, 0.1), transparent 55%),
    var(--lp-bg-elevated);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 860px) {
  .lp-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-step {
  padding: 1.35rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid var(--lp-glass-border);
  background: rgba(12, 24, 41, 0.65);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease, box-shadow 180ms ease;
}

.lp-step.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.lp-step:nth-child(2).is-inview { transition-delay: 80ms; }
.lp-step:nth-child(3).is-inview { transition-delay: 160ms; }
.lp-step:nth-child(4).is-inview { transition-delay: 240ms; }

.lp-step:hover {
  border-color: var(--lp-glass-border-strong);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
}

.lp-step-num {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: var(--lp-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--lp-secondary);
}

.lp-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  color: #fff;
}

.lp-step p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--lp-muted);
}

/* Announcements */
.lp-announcements {
  background: var(--lp-bg);
}

.lp-ann-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 760px) {
  .lp-ann-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-ann-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--lp-glass-border);
  background: rgba(12, 24, 41, 0.7);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease;
}

.lp-ann-card.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.lp-ann-card:nth-child(2).is-inview { transition-delay: 70ms; }
.lp-ann-card:nth-child(3).is-inview { transition-delay: 140ms; }

.lp-ann-card:hover {
  border-color: var(--lp-glass-border-strong);
}

.lp-ann-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.lp-ann-label {
  display: inline-block;
  padding: 0.18rem 0.5rem;
  border-radius: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(124, 58, 237, 0.22);
  color: #ddd6fe;
}

.lp-ann-label--new {
  background: rgba(16, 185, 129, 0.18);
  color: #6ee7b7;
}

.lp-ann-label--updated {
  background: rgba(59, 130, 246, 0.18);
  color: #93c5fd;
}

.lp-ann-label--ending-soon {
  background: rgba(245, 158, 11, 0.18);
  color: #fcd34d;
}

.lp-ann-meta time {
  font-size: 0.75rem;
  color: var(--lp-muted-2);
}

.lp-ann-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.lp-ann-retailer,
.lp-ann-tag {
  display: inline-block;
  padding: 0.18rem 0.5rem;
  border-radius: 0.4rem;
  font-size: 0.72rem;
  font-weight: 650;
}

.lp-ann-retailer {
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-ann-tag {
  background: rgba(159, 103, 255, 0.12);
  color: #c4b5fd;
}

.lp-ann-card h3 {
  margin: 0;
  font-family: var(--lp-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #fff;
}

.lp-ann-excerpt {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--lp-muted);
}

.lp-ann-more {
  align-self: flex-start;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--lp-secondary);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 650;
  cursor: pointer;
}

.lp-ann-more:hover {
  color: #c4b5fd;
}

.lp-ann-full {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-ann-full[hidden] {
  display: none;
}

.lp-ann-full p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--lp-muted);
}

.lp-ann-signin {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-secondary);
}

/* Why join */
.lp-why {
  background:
    radial-gradient(ellipse 45% 40% at 50% 100%, rgba(124, 58, 237, 0.14), transparent 55%),
    var(--lp-bg-elevated);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-why-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .lp-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .lp-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lp-why-card {
  position: relative;
  padding: 1.35rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--lp-glass-border);
  background: rgba(12, 24, 41, 0.65);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease, box-shadow 180ms ease;
}

.lp-why-card::before {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(170, 156, 255, 0.28);
  border-radius: 0.6rem;
  background: rgba(170, 156, 255, 0.08);
  color: var(--lp-secondary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.lp-why-card:nth-child(1)::before { content: "01"; }
.lp-why-card:nth-child(2)::before { content: "02"; }
.lp-why-card:nth-child(3)::before { content: "03"; }
.lp-why-card:nth-child(4)::before { content: "04"; }
.lp-why-card:nth-child(5)::before { content: "05"; }
.lp-why-card:nth-child(6)::before { content: "06"; }

.lp-why-card.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.lp-why-card:hover {
  border-color: var(--lp-glass-border-strong);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.16);
}

.lp-why-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--lp-display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.lp-why-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--lp-muted);
}

/* FAQ */
.lp-faq {
  background: var(--lp-bg);
}

.lp-faq-inner {
  max-width: 760px;
}

.lp-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lp-acc-item {
  border: 1px solid var(--lp-glass-border);
  border-radius: 0.85rem;
  background: rgba(12, 24, 41, 0.65);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease;
}

.lp-acc-item.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.lp-acc-item.is-open {
  border-color: var(--lp-glass-border-strong);
  background: rgba(18, 28, 48, 0.85);
}

.lp-acc-item h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.lp-acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.15rem;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: var(--lp-font);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.lp-acc-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.lp-acc-icon::before,
.lp-acc-icon::after {
  content: "";
  position: absolute;
  background: var(--lp-secondary);
  border-radius: 1px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.lp-acc-icon::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}

.lp-acc-icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}

.lp-acc-trigger[aria-expanded="true"] .lp-acc-icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

.lp-acc-panel {
  padding: 0 1.15rem 1.1rem;
}

.lp-acc-panel[hidden] {
  display: none;
}

.lp-acc-panel p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--lp-muted);
}

/* CTA band */
.lp-cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 4.75rem) clamp(1rem, 4vw, 2.5rem);
}

.lp-cta-band-glow {
  position: absolute;
  inset: 10% 15%;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.35), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

.lp-cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 1.25rem;
  border: 1px solid var(--lp-glass-border-strong);
  background: rgba(12, 24, 41, 0.75);
  backdrop-filter: blur(16px);
  box-shadow: var(--lp-shadow), var(--lp-glow);
}

.lp-cta-band h2 {
  margin: 0 0 0.75rem;
  font-family: var(--lp-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.025em;
  color: #fff;
}

.lp-cta-band p {
  margin: 0 0 1.5rem;
  color: var(--lp-muted);
}

.lp-cta-band .lp-cta {
  justify-content: center;
}

/* Footer */
.lp-footer {
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2.5rem) 2rem;
  background: #050b14;
  color: var(--lp-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-footer-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .lp-footer-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

.lp-footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.lp-footer-brand strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--lp-display);
  font-size: 1.05rem;
  color: #fff;
}

.lp-footer-brand p {
  margin: 0;
  max-width: 36ch;
  font-size: 0.875rem;
  line-height: 1.5;
}

.lp-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.lp-footer-cols h3 {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-secondary);
}

.lp-footer-cols a {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.875rem;
}

.lp-footer-cols a:hover {
  color: #fff;
}

.lp-footer-disclaimer {
  max-width: var(--lp-max);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--lp-muted-2);
}

.lp-footer-copy {
  max-width: var(--lp-max);
  margin: 0.85rem auto 0;
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.55);
}

@keyframes lp-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lp-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-16px, 12px) scale(1.05);
  }
}

@keyframes lp-mesh-shift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 56px 56px;
  }
}

@media (max-width: 560px) {
  .lp-brand-text span {
    display: none;
  }

  .lp-nav-signin {
    display: none;
  }

  .lp-nav-cta {
    display: none;
  }

  .lp-headline {
    max-width: none;
    font-size: clamp(2.2rem, 12vw, 3.15rem);
  }

  .lp-cta {
    flex-direction: column;
    width: 100%;
  }

  .lp-cta .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-orb,
  .lp-mesh,
  .lp-hero-copy {
    animation: none !important;
  }

  .lp-ann-card,
  .lp-step,
  .lp-why-card,
  .lp-acc-item,
  .lp-deal-card,
  .lp-hero-preview {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
