/* ============================================================
   LOVERBYTE — Landing v3
   Nav: restored to our raised-pill version
   Hero: keep Claude's shine + motion
   ============================================================ */

@import url("./colors_and_type.css");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  min-height: 100vh;
  background: var(--bg-page);
  position: relative;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.lb-build{
  position: fixed;
  left: 12px;
  bottom: 12px;
  z-index: 9999;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,224,211,0.86);
  background: rgba(11,11,15,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  pointer-events: none;
  opacity: 0.78;
}

/* ============================================================
   NAV (restored)
   ============================================================ */
.lb-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: #0b0b0f;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lb-nav--scrolled {
  background: rgba(11,11,15,0.8);
  backdrop-filter: blur(8px);
}

.lb-nav__container {
  width: min(1280px, 100%);
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lb-nav__brand {
  display: inline-flex;
  align-items: center;
}

.lb-nav__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
}

.lb-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--tracking-normal);
}

.lb-nav__link {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  font-weight: 500;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
}

.lb-nav__link:hover { color: rgba(255,255,255,1); }

.lb-nav__cta,
.signup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111114;
  color: #ffffff;
  border: 2px solid var(--lb-luna-pink);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: var(--tracking-normal);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow:
    0 6px 0 rgba(255,79,191,0.45),
    0 0 18px rgba(255,79,191,0.18);
}

.lb-nav__cta:hover,
.signup-button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 7px 0 rgba(255,79,191,0.5),
    0 0 22px rgba(255,79,191,0.24);
}

.lb-nav__cta:active,
.signup-button:active {
  transform: translateY(0);
  box-shadow:
    0 5px 0 rgba(255,79,191,0.4),
    0 0 14px rgba(255,79,191,0.16);
}

.lb-nav__brand:focus-visible,
.lb-nav__link:focus-visible,
.lb-nav__cta:focus-visible {
  outline: 2px solid rgba(0,224,211,0.9);
  outline-offset: 3px;
  border-radius: 10px;
}

/* ============================================================
   HERO (Claude shine)
   ============================================================ */
.lb-page { display: block; }

.lb-hero {
  position: relative;
  padding: 120px 24px 140px;
  display: flex;
  justify-content: center;
}

.lb-hero::before,
.lb-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform, opacity;
}
.lb-hero::before {
  width: 720px;
  height: 520px;
  left: 50%;
  top: 8%;
  transform: translate(-58%, 0);
  background: radial-gradient(closest-side, rgba(255,79,191,0.55), rgba(255,79,191,0) 70%);
  animation: lb-drift-a 22s ease-in-out infinite alternate;
}
.lb-hero::after {
  width: 640px;
  height: 480px;
  left: 50%;
  top: 22%;
  transform: translate(-42%, 0);
  background: radial-gradient(closest-side, rgba(79,102,255,0.50), rgba(79,102,255,0) 70%);
  animation: lb-drift-b 28s ease-in-out infinite alternate;
}

@keyframes lb-drift-a {
  0% { transform: translate(-60%, 0) scale(1); opacity: 0.50; }
  100% { transform: translate(-52%, -16px) scale(1.06); opacity: 0.62; }
}
@keyframes lb-drift-b {
  0% { transform: translate(-44%, 0) scale(1); opacity: 0.45; }
  100% { transform: translate(-36%, 14px) scale(1.04); opacity: 0.55; }
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.lb-hero__container {
  position: relative;
  z-index: 2;
  max-width: 880px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lb-hero__label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--lb-nerdy-teal);
  margin: 0 0 28px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(0,224,211,0.06);
  border: 1px solid rgba(0,224,211,0.22);
  box-shadow: 0 0 24px rgba(0,224,211,0.10);
  opacity: 0;
  transform: translateY(8px);
  animation: lb-fade-up 900ms cubic-bezier(.2,.7,.2,1) 80ms forwards;
}
.lb-hero__label::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lb-nerdy-teal);
  box-shadow: 0 0 10px rgba(0,224,211,0.9);
  margin-right: 10px;
  vertical-align: 1px;
}

.lb-hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6.6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--fg-1);
  text-wrap: balance;
}

.lb-hero__headlineLine {
  display: block;
  opacity: 0;
  transform: translateY(14px);
  animation: lb-fade-up 1000ms cubic-bezier(.2,.7,.2,1) forwards;
}
.lb-hero__headlineLine--muted {
  color: var(--fg-1);
  animation-delay: 220ms;
  text-shadow: 0 1px 0 rgba(255,255,255,0.02);
}
.lb-hero__headlineLine--grad {
  background: linear-gradient(92deg, #FFB2E6 0%, #FF4FBF 32%, #B968FF 62%, #4F66FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation-delay: 360ms;
  filter: drop-shadow(0 0 22px rgba(255,79,191,0.18));
}

.lb-hero__subheadline {
  margin: 28px 0 0;
  max-width: 600px;
  font-family: var(--font-ui);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.55;
  color: var(--fg-2);
  opacity: 0;
  transform: translateY(8px);
  animation: lb-fade-up 1000ms cubic-bezier(.2,.7,.2,1) 520ms forwards;
}

.lb-hero__hl {
  position: relative;
  font-weight: 500;
  color: var(--fg-1);
  white-space: nowrap;
  padding-bottom: 1px;
}
.lb-hero__hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  border-radius: 1px;
  opacity: 0.85;
}
.lb-hero__hl--teal {
  color: var(--lb-nerdy-teal);
  text-shadow: 0 0 18px rgba(0,224,211,0.25);
}
.lb-hero__hl--teal::after {
  background: linear-gradient(90deg, transparent, var(--lb-nerdy-teal) 20%, var(--lb-nerdy-teal) 80%, transparent);
  box-shadow: 0 0 8px rgba(0,224,211,0.55);
}
.lb-hero__hl--pink {
  color: var(--lb-glow-pink);
  text-shadow: 0 0 18px rgba(255,79,191,0.30);
  background: linear-gradient(
    100deg,
    var(--lb-glow-pink) 0%,
    var(--lb-glow-pink) 40%,
    #FFFFFF 50%,
    var(--lb-glow-pink) 60%,
    var(--lb-glow-pink) 100%
  );
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: lb-shimmer 6.5s ease-in-out infinite;
}
.lb-hero__hl--pink::after {
  background: linear-gradient(90deg, transparent, var(--lb-luna-pink) 20%, var(--lb-glow-pink) 80%, transparent);
  box-shadow: 0 0 8px rgba(255,79,191,0.55);
}

@keyframes lb-fade-up { to { opacity: 1; transform: translateY(0); } }
@keyframes lb-shimmer { 0%,100% { background-position: 100% 0; } 50% { background-position: 0% 0; } }

@media (prefers-reduced-motion: reduce) {
  .lb-hero::before,
  .lb-hero::after,
  .lb-hero__hl--pink {
    animation: none !important;
  }
  .lb-hero__label,
  .lb-hero__headlineLine,
  .lb-hero__subheadline {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

@media (max-width: 720px) {
  .lb-nav__container { height: 56px; padding: 0 16px; }
  .lb-nav__logo { height: 26px; }
  .lb-hero { padding: 80px 20px 100px; }
  .lb-hero__subheadline { font-size: var(--text-base); }
}

/* ============================================================
   SECTION: Pillars Stage (slides)
   One "frame" that swaps slides, not a long page.
   ============================================================ */
.lb-pillars {
  padding: 0 24px 120px;
  display: flex;
  justify-content: center;
}

.lb-pillars__container {
  width: 100%;
  max-width: 1100px;
}

.lb-stage {
  position: relative;
  height: min(640px, 78vh);
  min-height: 560px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 79, 191, 0.10), transparent 58%),
    linear-gradient(180deg, rgba(18, 18, 24, 0.70), rgba(11, 11, 15, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(79, 102, 255, 0.07) inset;
}

.lb-stage__slide {
  position: absolute;
  inset: 0;
  padding: 28px 28px 54px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  filter: blur(5px);
  transition:
    opacity 1100ms cubic-bezier(.22,.61,.36,1),
    transform 1400ms cubic-bezier(.22,.61,.36,1),
    filter 900ms cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
  overflow-x: hidden;
  overflow-y: auto;
}

.lb-stage__stack {
  width: 100%;
  height: 100%;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* After Hours needs maximum horizontal real estate so replies can orbit wide. */
.lb-stage__slide[data-luna-slide] .lb-stage__stack {
  max-width: 1100px;
}

.lb-stage__header {
  padding-top: 6px;
}

.lb-stage__content {
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 0;
  padding-bottom: 40px; /* keep content clear of slide dots */
}

/* After Hours needs extra clearance for the Luna card + bottom lanes. */
.lb-stage__slide[data-luna-slide] .lb-stage__content {
  padding-bottom: 84px;
  place-items: stretch;
}

.lb-stage__slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.lb-stage__label {
  margin: 0;
  font-size: 12px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--lb-nerdy-teal);
  opacity: 0.92;
}

.lb-stage__blurb {
  margin: 0;
  max-width: 680px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.lb-stage__controls {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(11, 11, 15, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.lb-stage__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.22);
  padding: 0;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.lb-stage__dot:hover { transform: translateY(-1px); }

.lb-stage__dot.is-active {
  background: rgba(255, 79, 191, 0.85);
  border-color: rgba(255, 79, 191, 0.95);
}

.lb-thread {
  position: relative;
  width: min(760px, 100%);
}

.lb-thread--framed {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(79, 102, 255, 0.22);
  background:
    radial-gradient(circle at 50% 18%, rgba(79, 102, 255, 0.08), transparent 56%),
    radial-gradient(circle at 30% 32%, rgba(255, 79, 191, 0.05), transparent 58%),
    rgba(18, 18, 24, 0.55);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(79, 102, 255, 0.10) inset,
    0 0 28px rgba(79, 102, 255, 0.08);
}

/* Reply connector */
.lb-thread::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(0,224,211,0.0),
    rgba(0,224,211,0.22) 18%,
    rgba(255,79,191,0.12) 50%,
    rgba(0,224,211,0.12) 82%,
    rgba(0,224,211,0.0)
  );
  opacity: 0.9;
  pointer-events: none;
}

.lb-thread__item {
  --indent: 0px;
  position: relative;
  margin-left: var(--indent);
  background: rgba(18, 18, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}

.lb-thread__item + .lb-thread__item {
  margin-top: 10px;
}

.lb-thread__item--main {
  padding: 18px;
}

.lb-thread__item--l1 { --indent: 12px; }
.lb-thread__item--l2 { --indent: 20px; }
.lb-thread__item--l3 { --indent: 28px; }

/* Connector "node" per reply */
.lb-thread__item::before {
  content: "";
  position: absolute;
  left: calc(14px - var(--indent));
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(0,224,211,0.55);
  box-shadow: 0 0 0 3px rgba(0,224,211,0.10);
}
.lb-thread__item--main::before { display: none; }

.lb-thread__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  min-height: 22px;
}

.lb-tag {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.07em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: transparent;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 600;
}
.lb-tag--hot { color: var(--lb-luna-pink); }
.lb-tag--question { color: var(--lb-digital-blue); }
.lb-tag--roast { color: #ff5e8d; }
.lb-tag--healing { color: var(--lb-nerdy-teal); }

.lb-meta {
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lb-meta__user { color: rgba(255, 255, 255, 0.78); }
.lb-meta__dot { opacity: 0.5; }
.lb-meta__heart { color: rgba(255, 79, 191, 0.9); }

.lb-text { margin: 0; line-height: 1.45; }
.lb-text--main { font-size: 17px; color: rgba(255, 255, 255, 0.9); }
.lb-text--reply { font-size: 15px; color: rgba(255, 255, 255, 0.8); }
.lb-text--punch { color: rgba(255, 255, 255, 0.88); }
.lb-text--soft { color: rgba(255, 255, 255, 0.72); }

.lb-thread__item--roast { border-color: rgba(255, 94, 141, 0.32); }
.lb-thread__item--soft { border-color: rgba(255, 255, 255, 0.07); }

.lb-typing {
  display: inline-flex;
  gap: 6px;
  margin-top: 12px;
}

.lb-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  animation: lb-pulse 1.25s ease-in-out infinite;
}
.lb-dot:nth-child(2) { animation-delay: 0.12s; }
.lb-dot:nth-child(3) { animation-delay: 0.24s; }

@keyframes lb-pulse {
  0%, 100% { opacity: 0.32; transform: translateY(0); }
  50% { opacity: 0.68; transform: translateY(-1px); }
}

/* Cinematic sequence: one post spotlights, then hands off to the next.
   Replays via JS toggling `.lb-thread--animate` (and removing it at the end). */
.lb-thread {
  --lb-step: 2.25s;
  --lb-ease-cinematic: cubic-bezier(.22,.61,.36,1);
}

.lb-thread--animate .lb-thread__item {
  opacity: 0;
  transform: translateY(14px);
  animation: lb-queue var(--lb-step) var(--lb-ease-cinematic) both;
  animation-delay: calc((var(--seq) - 1) * var(--lb-step));
}

@keyframes lb-queue {
  0% {
    opacity: 0;
    transform: translateY(14px);
    filter: saturate(0.96) brightness(0.96);
  }
  18% {
    opacity: 1;
    transform: translateY(0);
    border-color: rgba(79,102,255,0.22);
    box-shadow:
      0 18px 46px rgba(0,0,0,0.32),
      0 0 0 1px rgba(79,102,255,0.07) inset;
    filter: saturate(1.04) brightness(1.02);
  }
  74% {
    opacity: 1;
    transform: translateY(0);
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
    filter: none;
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lb-thread--animate .lb-thread__item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .lb-dot { animation: none !important; }
  .lb-thread::before { opacity: 0.55; }
}

@media (max-width: 720px) {
  .lb-pillars { padding: 0 16px 96px; }
  .lb-stage { min-height: 520px; }
  .lb-stage__slide { padding: 58px 14px 52px; }
  .lb-stage__blurb { font-size: 13px; }
  .lb-thread::before { left: 12px; }
  .lb-thread--framed { padding: 14px; }
}

@media (max-width: 640px) {
  .lb-hero__container {
    width: min(720px, calc(100% - 32px));
  }
}

/* ============================================================
   SECTION: Dating Card (pillar 02)
   Scoped under `.lb-profile` to avoid collisions.
   ============================================================ */
.lb-profile {
  width: min(760px, 100%);
}

/* ============================================================
   DATING PLATFORM MINI-STORY (inside slide 02)
   Profile → toasts → match → private room + receipt
   ============================================================ */
.lb-dating {
  position: relative;
  width: min(900px, 100%);
  height: 100%;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(79, 102, 255, 0.22);
  background:
    radial-gradient(circle at 50% 18%, rgba(79, 102, 255, 0.09), transparent 60%),
    radial-gradient(circle at 30% 32%, rgba(255, 79, 191, 0.06), transparent 62%),
    rgba(18, 18, 24, 0.40);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(79, 102, 255, 0.10) inset,
    0 0 30px rgba(79, 102, 255, 0.08);
}

.lb-dating__scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.lb-dating__scene--profile{
  /* Make the base dating card live in normal layout so slide 02 can never render “empty”. */
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  pointer-events: auto;
}

.lb-dating__scene--profile { z-index: 1; }
.lb-dating__scene--toasts { z-index: 2; }
.lb-dating__scene--match { z-index: 3; }
.lb-dating__scene--private { z-index: 4; }

.lb-dating__scene.is-active {
  pointer-events: auto;
  animation: lb-dating-scene-in 520ms cubic-bezier(.22,.61,.36,1) both;
}

.lb-dating__scene[hidden] { display: none !important; }

/* When overlays are active, keep the base profile present but de-emphasized (not blurred). */
.lb-dating[data-dating-moment="toasts"] .lb-dating__scene--profile,
.lb-dating[data-dating-moment="match"] .lb-dating__scene--profile,
.lb-dating[data-dating-moment="private"] .lb-dating__scene--profile {
  opacity: 0.55;
  transform: translateY(2px) scale(0.996);
}

@keyframes lb-dating-scene-in{
  from{ opacity: 0; transform: translateY(10px) scale(0.992); filter: saturate(0.98) brightness(0.98); }
  to{ opacity: 1; transform: translateY(0) scale(1); filter: none; }
}

.lb-dating__scene--profile .lb-profile { width: min(820px, 100%); }

.lb-datingToasts {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: none;
  background: transparent;
  padding: 0;
  overflow: visible;
}

.lb-datingToast {
  position: absolute;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(18, 18, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 20px 60px rgba(0,0,0,0.40);
  width: min(340px, calc(100% - 28px));
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
}

.lb-datingToast--pink { border-color: rgba(255, 79, 191, 0.18); }
.lb-datingToast--blue { border-color: rgba(79, 102, 255, 0.18); }

.lb-datingToast__avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.10);
}

.lb-datingToast__title {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 224, 211, 0.86);
}

.lb-datingToast__msg {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255,255,255,0.86);
}

.lb-datingToast__name { color: rgba(255,255,255,0.92); font-weight: 650; }

.lb-datingToast--laneLeft { left: 22px; top: 56px; }
.lb-datingToast--laneRight { right: 22px; top: 178px; }

/* JS drives the sequence (toast 1 → toast 2 → match). */
.lb-datingToast.is-show{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  filter: none;
}

.lb-datingToast.is-in{
  animation: lb-dating-toast-in 520ms cubic-bezier(.22,.61,.36,1) both;
}
.lb-datingToast.is-out{
  animation: lb-dating-toast-out 420ms cubic-bezier(.22,.61,.36,1) both;
}

@keyframes lb-dating-toast-in{
  from{ opacity: 0; transform: translateY(16px) scale(0.97); filter: saturate(0.96) brightness(0.96); }
  to{ opacity: 1; transform: translateY(0) scale(1); filter: saturate(1.04) brightness(1.03); }
}
@keyframes lb-dating-toast-out{
  from{ opacity: 1; transform: translateY(0) scale(1); }
  to{ opacity: 0; transform: translateY(-10px) scale(0.99); }
}

.lb-match {
  width: min(860px, 100%);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 79, 191, 0.14), transparent 56%),
    radial-gradient(circle at 70% 20%, rgba(79, 102, 255, 0.12), transparent 54%),
    rgba(18, 18, 24, 0.78);
  box-shadow: 0 26px 80px rgba(0,0,0,0.42);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 26px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.lb-match__glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 79, 191, 0.10), transparent 55%),
    radial-gradient(circle at 60% 60%, rgba(79, 102, 255, 0.10), transparent 58%);
  pointer-events: none;
}

.lb-match__faces {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 1;
}

.lb-match__face {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}
.lb-match__face img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lb-match__face--left { transform: rotate(-2deg); }
.lb-match__face--right { transform: rotate(2deg); }

.lb-match__heart {
  width: 98px;
  height: 98px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,79,191,0.32), transparent 60%),
    radial-gradient(circle at 70% 74%, rgba(79,102,255,0.26), transparent 64%),
    rgba(18, 18, 24, 0.62);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 0 0 10px rgba(255, 79, 191, 0.06),
    0 0 34px rgba(255, 79, 191, 0.22),
    0 0 44px rgba(79, 102, 255, 0.14);
  display: grid;
  place-items: center;
}

.lb-match__scene--match.is-active .lb-match__heart,
.lb-dating__scene--match.is-active .lb-match__heart {
  animation: lb-match-heart-pulse 1.9s ease-in-out infinite;
}

.lb-match__heartIcon {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.44));
}

@keyframes lb-match-heart-pulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.08); filter: brightness(1.10); }
}

.lb-match__copy { position: relative; z-index: 1; }
.lb-match__h {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
}
.lb-match__p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.74);
}
.lb-match__cta {
  appearance: none;
  background: #111114;
  color: #ffffff;
  border: 2px solid var(--lb-luna-pink);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow:
    0 6px 0 rgba(255, 79, 191, 0.35),
    0 0 18px rgba(255, 79, 191, 0.12);
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
  position: relative;
  overflow: hidden;
}

.lb-dating__scene--match.is-active .lb-match__cta {
  animation: lb-match-cta-attn 2.4s ease-in-out infinite;
}

.lb-dating__scene--match.is-active .lb-match__cta::after{
  content:"";
  position:absolute;
  inset: -40% -20%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-55%) rotate(8deg);
  animation: lb-match-cta-shimmer 2.4s ease-in-out infinite;
  pointer-events:none;
}

@keyframes lb-match-cta-attn{
  0%, 100%{ transform: translateY(0); filter: brightness(1); }
  48%, 52%{ transform: translateY(-1px); filter: brightness(1.05); }
}

@keyframes lb-match-cta-shimmer{
  0%, 55%{ opacity: 0; transform: translateX(-55%) rotate(8deg); }
  68%{ opacity: 1; }
  84%{ opacity: 0; transform: translateX(55%) rotate(8deg); }
  100%{ opacity: 0; transform: translateX(55%) rotate(8deg); }
}
.lb-match__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow:
    0 7px 0 rgba(255, 79, 191, 0.38),
    0 0 22px rgba(255, 79, 191, 0.16);
}
.lb-match__cta:active { transform: translateY(0); filter: brightness(0.98); }

.lb-private {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.lb-room {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 30% 0%, rgba(255,79,191,0.10), transparent 58%),
    radial-gradient(circle at 70% 0%, rgba(79,102,255,0.10), transparent 58%),
    rgba(18, 18, 24, 0.78);
  box-shadow: 0 26px 80px rgba(0,0,0,0.40);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.lb-room__head {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lb-room__pair {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lb-room__avatar {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
}
.lb-room__x {
  font-family: var(--font-display);
  color: rgba(255,255,255,0.72);
  font-weight: 700;
}

.lb-room__meta { text-align: right; }
.lb-room__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.01em;
}
.lb-room__sub {
  margin: 2px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.66);
}

.lb-room__chat {
  padding: 16px 18px 18px;
  display: grid;
  gap: 10px;
}

.lb-msg {
  max-width: 88%;
  border-radius: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(11, 11, 15, 0.55);
}
.lb-msg__t {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 224, 211, 0.78);
}
.lb-msg__b { margin: 0; font-size: 13px; line-height: 1.4; color: rgba(255,255,255,0.86); }

.lb-msg--him { justify-self: start; border-color: rgba(79,102,255,0.14); }
.lb-msg--her { justify-self: end; border-color: rgba(255,79,191,0.16); background: rgba(18, 18, 24, 0.72); }
.lb-msg--system { justify-self: center; max-width: 100%; text-align: center; border-style: dashed; opacity: 0.9; }

.lb-receipt {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 24, 0.72);
  box-shadow: 0 26px 80px rgba(0,0,0,0.34);
  overflow: hidden;
  display: grid;
}
.lb-receipt__frame {
  display: grid;
  place-items: center;
  padding: 10px;
}
.lb-receipt__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  max-height: 520px;
  object-fit: contain;
}

@media (max-width: 860px) {
  .lb-match { grid-template-columns: 1fr; text-align: center; }
  .lb-private { grid-template-columns: 1fr; }
  .lb-room__meta { text-align: left; }
  .lb-dating { padding: 14px; }
  .lb-datingToasts { min-height: 460px; padding: 14px; }
  .lb-datingToast { width: min(340px, 86vw); }
  .lb-datingToast--laneLeft { left: 14px; top: 44px; }
  .lb-datingToast--laneRight { right: 14px; top: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  .lb-dating__scene { transition: none !important; opacity: 1 !important; transform: none !important; filter: none !important; position: static !important; pointer-events: auto !important; }
}

/* ============================================================
   SLIDE: Community Earnings (pillar 03)
   Based on Claude's Creator slide — lively, not a dashboard.
   ============================================================ */
.lb-earnings {
  width: min(900px, 100%);
  height: 100%;
  display: grid;
  place-items: center;
}

.lb-earnings__stage {
  position: relative;
  width: min(880px, 100%);
  height: min(480px, 100%);
}

.lb-earnings__avatar {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 168px;
  height: 168px;
  border-radius: 999px;
  background-image:
    radial-gradient(circle at 30% 26%, rgba(255,255,255,0.20), transparent 58%),
    linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.22)),
    url("./assets/earnings-profile.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.46),
    0 0 0 10px rgba(255, 79, 191, 0.06),
    0 0 70px rgba(255, 79, 191, 0.16);
}

.lb-earnings__ring {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid transparent;
  background:
    linear-gradient(135deg, rgba(255, 79, 191, 0.96), rgba(79, 102, 255, 0.92))
    border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.92;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 0 24px rgba(255, 79, 191, 0.12);
}

.lb-earnings__avatar::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 30% 26%, rgba(255,255,255,0.16), transparent 56%),
    radial-gradient(circle at 60% 78%, rgba(79, 102, 255, 0.10), transparent 58%);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.12),
    inset 0 -18px 24px rgba(0,0,0,0.18);
  pointer-events: none;
}

.lb-earnings__status {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--lb-nerdy-teal);
  box-shadow:
    0 0 0 3px rgba(11, 11, 15, 0.92),
    0 0 16px rgba(0, 224, 211, 0.28);
}

.lb-earnings__center {
  position: absolute;
  left: 50%;
  top: calc(46% + 104px);
  transform: translateX(-50%);
  text-align: center;
}

.lb-earnings__handle {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.01em;
}

.lb-earnings__badges {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.lb-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(11, 11, 15, 0.45);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.01em;
  backdrop-filter: blur(10px);
}

.lb-chip__icon {
  width: 14px;
  height: 14px;
  display: inline-block;
}

.lb-chip--teal { color: rgba(0, 224, 211, 0.88); border-color: rgba(0, 224, 211, 0.22); }
.lb-chip--pink { color: rgba(255, 178, 230, 0.92); border-color: rgba(255, 79, 191, 0.22); }
.lb-chip--muted { color: rgba(255,255,255,0.62); }

.lb-earnings__today {
  margin-top: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lb-nerdy-teal);
  font-weight: 600;
}

.lb-earnings__from {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.lb-badge {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translateY(20px) scale(0.94);
  opacity: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(18, 18, 24, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.40), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  transition:
    opacity 700ms cubic-bezier(.22,.61,.36,1),
    transform 900ms cubic-bezier(.22,.61,.36,1),
    border-color 900ms cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--d);
  white-space: nowrap;
}

.lb-badge__icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.84);
  flex: 0 0 auto;
}

.lb-badge__icon--teal { color: rgba(0, 224, 211, 0.92); }

.lb-badge__text {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
}

.lb-badge--money .lb-badge__text { color: var(--lb-nerdy-teal); font-weight: 600; }
.lb-badge--trend { border-color: rgba(255, 79, 191, 0.16); }
.lb-badge--trend .lb-badge__text { color: rgba(255, 255, 255, 0.92); }

/* Only animate-in when the slide is active. */
.lb-stage__slide.is-active .lb-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Motion-ready pulse for money badges (CSS only). */
.lb-badge--pulse { position: absolute; }
.lb-stage__slide.is-active .lb-badge--pulse {
  animation: lb-money-pulse 2.1s ease-in-out infinite;
  animation-delay: calc(var(--d) + 600ms);
}

@keyframes lb-money-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .lb-badge { transition: none !important; opacity: 1 !important; transform: none !important; }
  .lb-stage__slide.is-active .lb-badge--pulse { animation: none !important; }
}

/* ============================================================
   SLIDE: After Hours (pillar 04)
   Luna prompt (typewriter) → chaotic community toasts.
   ============================================================ */
.lb-afterhours {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.lb-afterhours__stage {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 28px;
  box-sizing: border-box;
  padding-bottom: 84px; /* reserve space so bottom lane never clips (dots live below) */
}

.lb-luna {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  justify-items: center;
  width: min(380px, calc(100% - 48px));
  margin: 0 auto;
  z-index: 3;
  text-align: center;
}

.lb-luna__photo {
  width: 92px;
  height: 92px;
  border-radius: 22px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 44px rgba(0,0,0,0.34);
}

.lb-luna__bubble {
  position: relative;
  width: 100%;
  background: rgba(18, 18, 24, 0.94);
  border: 1px solid rgba(79, 102, 255, 0.16);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow:
    0 22px 60px rgba(0,0,0,0.40),
    0 0 0 1px rgba(255, 79, 191, 0.08) inset;
  transition: opacity 600ms cubic-bezier(.22,.61,.36,1), transform 800ms cubic-bezier(.22,.61,.36,1), filter 600ms cubic-bezier(.22,.61,.36,1);
}

.lb-luna__bubble::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 79, 191, 0.14), transparent 56%),
    radial-gradient(circle at 82% 12%, rgba(79, 102, 255, 0.10), transparent 54%);
  opacity: 0.65;
}

.lb-luna__meta {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.lb-luna__name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
}

.lb-luna__badge {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 178, 230, 0.92);
}

.lb-luna__text {
  position: relative;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.86);
}

.lb-stage__slide[data-luna-slide].is-typing .lb-luna__text::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1.15em;
  margin-left: 2px;
  transform: translateY(2px);
  background: var(--lb-nerdy-teal);
  animation: lb-caret 900ms steps(2, end) infinite;
}

@keyframes lb-caret { 50% { opacity: 0; } }

/* If we ever re-enable a "Luna out" phase, fade both photo + bubble together. */
.lb-stage__slide[data-luna-slide].is-luna-out .lb-luna__photo,
.lb-stage__slide[data-luna-slide].is-luna-out .lb-luna__bubble {
  opacity: 0;
  transform: translateY(-8px);
  filter: blur(4px);
}

/* Luna stays centered while the chaos happens around her. */
.lb-stage__slide[data-luna-slide].is-toasts .lb-luna__bubble {
  opacity: 0.98;
  transform: translateY(0);
  filter: none;
}

/* Orbit layout: fixed lanes around a center safe zone (no overlap by construction). */
.lb-afterhours__orbit {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(300px, 380px) minmax(180px, 1fr);
  grid-template-rows: minmax(96px, auto) minmax(120px, auto) minmax(96px, auto);
  gap: 18px 22px;
  align-content: space-between;
  align-items: center;
  pointer-events: none;
  overflow: visible;
}

.lb-afterhours__orbit .lb-luna {
  grid-column: 2;
  grid-row: 2;
  pointer-events: auto;
  align-self: center;
  margin-top: -34px;
}

.lb-toast {
  position: relative;
  width: 100%;
  max-width: 340px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(18, 18, 24, 0.88);
  border: 1px solid rgba(79, 102, 255, 0.14);
  box-shadow: 0 18px 46px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(14px) rotate(var(--r)) scale(0.98);
  overflow: visible;
  min-height: 0;
}

.lb-toast--tl { grid-column: 1; grid-row: 1; justify-self: start; align-self: start; }
.lb-toast--ml { grid-column: 1; grid-row: 2; justify-self: start; align-self: center; }
.lb-toast--bl { grid-column: 1; grid-row: 3; justify-self: start; align-self: end; }
.lb-toast--tr { grid-column: 3; grid-row: 1; justify-self: end; align-self: start; }
.lb-toast--mr { grid-column: 3; grid-row: 2; justify-self: end; align-self: center; }
.lb-toast--br { grid-column: 3; grid-row: 3; justify-self: end; align-self: end; }

/* Keep bottom lane above the dot controls. */
.lb-toast--bl,
.lb-toast--br {
  margin-bottom: 0;
}

.lb-toast__avatar {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255,255,255,0.12);
}

.lb-toast__top {
  margin: 0 0 2px;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: #B7A9E8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lb-toast__user { color: #F7F4FF; font-weight: 650; }
.lb-toast__dot { opacity: 0.45; padding: 0 6px; }

.lb-toast__msg {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #F7F4FF;
  white-space: normal;
  word-break: break-word;
}

.lb-stage__slide[data-luna-slide].is-toasts .lb-toast {
  animation: lb-toast-in 900ms cubic-bezier(.22,.61,.36,1) both;
  animation-delay: var(--d);
}

@keyframes lb-toast-in {
  from { opacity: 0; transform: translateY(18px) rotate(var(--r)) scale(0.96); }
  to { opacity: 1; transform: translateY(0) rotate(var(--r)) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .lb-stage__slide[data-luna-slide].is-typing .lb-luna__text::after { animation: none !important; }
  .lb-stage__slide[data-luna-slide].is-toasts .lb-toast { animation: none !important; opacity: 1 !important; transform: translateY(0) rotate(var(--r)) scale(1) !important; }
}

@media (max-width: 860px) {
  .lb-afterhours__stage { padding: 18px; padding-bottom: 84px; }
  .lb-afterhours__orbit {
    grid-template-columns: minmax(160px, 1fr) minmax(260px, 340px) minmax(160px, 1fr);
    gap: 14px;
    min-height: 520px;
  }
  .lb-toast { max-width: 300px; }
}

.lb-profile .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lb-profile .profile-card {
  width: 100%;
  background: rgba(18, 18, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
  transform: rotate(-1deg);
  transform-origin: 55% 35%;
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 360px;
}

.lb-profile .profile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid transparent;
  background:
    linear-gradient(135deg, rgba(255, 79, 191, 0.20), rgba(79, 102, 255, 0.14))
    border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.26;
}

.lb-profile .profile-card:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.lb-profile .media {
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.lb-profile .media__image {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 60% 16%, rgba(255, 255, 255, 0.08), transparent 44%),
    radial-gradient(circle at 30% 86%, rgba(255, 79, 191, 0.09), transparent 52%),
    url("./assets/datingcardprofile.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
}

.lb-profile .media__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 42% 30%, rgba(0, 224, 211, 0.08), transparent 46%),
    radial-gradient(circle at 74% 44%, rgba(79, 102, 255, 0.08), transparent 52%);
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
}

.lb-profile .media__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 58%);
  pointer-events: none;
}

.lb-profile .media__overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
}

.lb-profile .name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.lb-profile .location {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}

.lb-profile .status {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(18, 18, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.lb-profile .dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 6px;
  z-index: 2;
}

.lb-profile .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.lb-profile .dot--active {
  background: rgba(255, 255, 255, 0.78);
}

.lb-profile .body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
}

.lb-profile .stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lb-profile .stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lb-profile .stat__icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: rgba(0, 224, 211, 0.78);
}

.lb-profile .stat:nth-child(2n) .stat__icon {
  color: rgba(255, 79, 191, 0.7);
}

.lb-profile .prompts {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.lb-profile .prompt-card {
  padding: 10px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.lb-profile .prompt-q {
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.lb-profile .prompt-a {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.lb-profile .crush-cta {
  margin-top: auto;
  width: 100%;
  border-radius: 999px;
  padding: 12px 14px;
  border: 2px solid var(--lb-luna-pink);
  background: rgba(17, 17, 20, 0.65);
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
  box-shadow:
    0 6px 0 rgba(255, 79, 191, 0.32),
    0 0 16px rgba(255, 79, 191, 0.14);
}

.lb-profile .crush-cta:hover { transform: translateY(-1px); filter: brightness(1.06); }
.lb-profile .crush-cta:active { transform: translateY(0); filter: brightness(0.98); }

.lb-profile .crush-cta:focus-visible {
  outline: 2px solid rgba(0, 224, 211, 0.7);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .lb-profile .profile-card {
    grid-template-columns: 1fr;
    min-height: auto;
    transform: none;
  }
  .lb-profile .media {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    aspect-ratio: 4 / 5;
  }
}

/* ============================================================
   Dating split slides (static, mobile-safe)
   ============================================================ */
.dating-slide-container {
  width: 100%;
  min-height: 550px;
  background-color: #0b0b0f;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.slide-header {
  color: #00E0D3;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.slide-sub {
  color: #a0a0a5;
  font-size: 14px;
  margin-bottom: 24px;
}

.dating-scene-base {
  width: 100%;
}

.dating-profile-card {
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(18, 18, 24, 0.8);
}

.dating-profile-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.dating-profile-card__meta {
  padding: 14px 16px 16px;
}

.dating-profile-card__meta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.94);
}

.dating-profile-card__meta p {
  margin: 8px 0 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.toast-slide-center {
  justify-content: flex-start;
}

.toast-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  width: 100%;
}

.dating-toast {
  width: 100%;
  background: #0b0b0f;
  border: 1px solid #4F66FF;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(79, 102, 255, 0.3);
}

.toast-right {
  border-color: #FF4FBF;
  box-shadow: 0 4px 20px rgba(255, 79, 191, 0.3);
}

.toast-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.toast-text {
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}

.static-match {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  width: 100%;
}

.slide-header--left {
  width: 100%;
  text-align: left;
}

.match-avatars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.match-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.match-title {
  color: #ffffff;
  font-size: 36px;
  margin: 0 0 12px;
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.match-text {
  color: #a0a0a5;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 24px;
}

.magical-heart {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF4FBF, #4F66FF);
  flex-shrink: 0;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>') no-repeat center / contain;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>') no-repeat center / contain;
  animation: gentlePulse 2s ease-in-out infinite;
}

@keyframes gentlePulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255, 79, 191, 0.4)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 25px rgba(79, 102, 255, 0.8)); }
}

.match-cta {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #FF4FBF;
  padding: 14px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

/* =========================================
   MOBILE RESPONSIVENESS OVERRIDES
   ========================================= */
@media (max-width: 760px) {
  .lb-stage__slide {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    box-sizing: border-box !important;
    padding: 18px 14px 76px !important;
  }

  .lb-stage {
    height: min(760px, 92vh) !important;
    min-height: 640px !important;
  }

  .lb-stage__content {
    padding-bottom: 56px !important;
  }

  .lb-stage__controls {
    bottom: 10px !important;
    z-index: 30 !important;
  }

  .dating-slide-container {
    min-height: 0 !important;
    height: 100% !important;
    padding: 16px !important;
  }

  .dating-scene-base,
  .dating-profile-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .dating-profile-card__photo {
    max-height: 360px !important;
    object-fit: cover !important;
  }

  .match-text {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .match-title {
    font-size: 30px !important;
  }

  .lb-stage__slide[data-luna-slide] .lb-stage__content {
    padding-bottom: 56px !important;
  }

  .lb-afterhours {
    width: 100% !important;
    max-width: 100% !important;
  }

  .lb-afterhours__stage {
    padding: 12px !important;
    min-height: 0 !important;
  }

  .lb-afterhours__orbit {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    position: relative !important;
    overflow: visible !important;
  }

  .lb-afterhours__orbit .lb-luna {
    order: 1 !important;
    margin: 0 !important;
    width: 100% !important;
    align-self: stretch !important;
  }

  .lb-luna {
    grid-template-columns: 64px 1fr !important;
    gap: 10px !important;
  }

  .lb-luna__photo {
    width: 64px !important;
    height: 64px !important;
    border-radius: 16px !important;
  }

  .lb-luna__bubble {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .lb-toast {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  .lb-stage__slide[data-luna-slide].is-toasts .lb-toast {
    animation: none !important;
    opacity: 1 !important;
  }

  .lb-toast--bl,
  .lb-toast--br {
    margin-bottom: 0 !important;
  }

  .lb-earnings__stage {
    min-height: 520px !important;
  }

  .lb-badge--followers { --x: 6% !important; --y: 12% !important; }
  .lb-badge--likes { --x: 68% !important; --y: 12% !important; }
  .lb-badge--money { --x: 4% !important; --y: 34% !important; }
  .lb-badge--trend { --x: 72% !important; --y: 35% !important; }

  .lb-earnings__handle {
    margin-top: 10px !important;
  }
}

/* ============================================================
   Dating Platform · Private Room (integrated slide asset)
   ============================================================ */
.lb-private-asset {
  position: relative;
  width: min(980px, 100%);
  height: 100%;
  min-height: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #0a0a1f 0%, #000000 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
}

.lb-pr-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lb-private-asset .stars-layer-1,
.lb-private-asset .stars-layer-2 {
  background-repeat: repeat;
  animation: starPulse 6s ease-in-out infinite;
}

.lb-private-asset .stars-layer-1 {
  background-image:
    radial-gradient(1px 1px at 15px 20px, rgba(255, 255, 255, 0.95), transparent),
    radial-gradient(1.5px 1.5px at 75px 110px, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1px 1px at 160px 60px, rgba(255, 255, 255, 0.75), transparent),
    radial-gradient(2px 2px at 220px 150px, rgba(255, 255, 255, 0.65), transparent);
  background-size: 260px 220px;
  opacity: 0.45;
}

.lb-private-asset .stars-layer-2 {
  background-image:
    radial-gradient(1px 1px at 30px 90px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1.2px 1.2px at 130px 40px, rgba(255, 255, 255, 0.85), transparent),
    radial-gradient(1.8px 1.8px at 200px 130px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 250px 70px, rgba(255, 255, 255, 0.7), transparent);
  background-size: 300px 250px;
  animation-duration: 8s;
  opacity: 0.34;
}

.lb-private-asset .radial-overlays {
  background:
    radial-gradient(circle at 18% 14%, rgba(79, 102, 255, 0.2) 0%, transparent 48%),
    radial-gradient(circle at 82% 88%, rgba(255, 79, 191, 0.2) 0%, transparent 52%);
}

.lb-pr-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.lb-pr-particles span {
  position: absolute;
  font-size: 16px;
  opacity: 0.2;
  animation: floatUp 14s linear infinite;
  filter: drop-shadow(0 0 8px rgba(255, 178, 230, 0.35));
}

.lb-pr-particles span:nth-child(1) { left: 6%; bottom: -12%; animation-delay: -3s; }
.lb-pr-particles span:nth-child(2) { left: 18%; bottom: -15%; animation-delay: -8s; }
.lb-pr-particles span:nth-child(3) { left: 35%; bottom: -10%; animation-delay: -4s; }
.lb-pr-particles span:nth-child(4) { left: 48%; bottom: -16%; animation-delay: -10s; }
.lb-pr-particles span:nth-child(5) { left: 64%; bottom: -12%; animation-delay: -6s; }
.lb-pr-particles span:nth-child(6) { left: 80%; bottom: -15%; animation-delay: -1s; }

.lb-pr-header,
.lb-pr-receipt-card,
.lb-pr-chat-card {
  position: relative;
  z-index: 1;
  background: rgba(18, 18, 24, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(79, 102, 255, 0.08);
  backdrop-filter: blur(8px);
}

.lb-pr-header {
  padding: 12px;
  overflow: hidden;
}

.lb-pr-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 79, 191, 0.16), transparent 58%),
    radial-gradient(circle at 84% 0%, rgba(79, 102, 255, 0.16), transparent 60%);
}

.lb-pr-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lb-pr-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lb-pr-connection {
  width: 54px;
  height: 2px;
  border-radius: 999px;
  position: relative;
  background: linear-gradient(90deg, rgba(255, 79, 191, 0.85), rgba(79, 102, 255, 0.85));
}

.lb-pr-heart {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  font-size: 14px;
  filter: drop-shadow(0 0 8px rgba(255, 79, 191, 0.5));
}

.lb-pr-header h2 {
  margin: 10px 0 6px;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 26px;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.lb-pr-header p {
  margin: 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

.lb-pr-countdown {
  margin-top: 10px;
  border-radius: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(79, 102, 255, 0.28);
  background: rgba(11, 11, 15, 0.66);
  display: grid;
  gap: 4px;
  text-align: center;
}

.lb-pr-countdown-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.lb-pr-countdown-value {
  font-family: var(--font-accent);
  color: var(--lb-nerdy-teal);
  font-size: 20px;
  letter-spacing: -0.01em;
}

.lb-pr-grid {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lb-pr-receipt-card {
  padding: 10px;
}

.lb-pr-receipt-img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.lb-pr-chat-card {
  flex: 1;
  min-height: 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lb-pr-chat-thread {
  flex: 1;
  min-height: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lb-pr-msg {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.lb-pr-msg--omar {
  justify-content: flex-end;
  flex-direction: row-reverse;
}

.lb-pr-msg-avatar {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.lb-pr-msg-bubble {
  max-width: 86%;
  border-radius: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 11, 15, 0.7);
}

.lb-pr-msg--mia .lb-pr-msg-bubble { border-color: rgba(255, 79, 191, 0.25); }
.lb-pr-msg--omar .lb-pr-msg-bubble { border-color: rgba(79, 102, 255, 0.28); }

.lb-pr-msg-name {
  margin: 0 0 3px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lb-nerdy-teal);
}

.lb-pr-msg-bubble p {
  margin: 0;
  font-size: 13px;
  line-height: 1.32;
}

.lb-pr-msg--typing .lb-pr-msg-bubble {
  display: grid;
  gap: 6px;
}

.lb-pr-typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lb-pr-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  animation: dotBounce 1.15s ease-in-out infinite;
}

.lb-pr-typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.lb-pr-typing-dots span:nth-child(3) { animation-delay: 0.3s; }

.lb-pr-chat-input-wrap {
  margin-top: auto;
}

.lb-pr-chat-input {
  border-radius: 999px;
  background: rgba(11, 11, 15, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 6px 6px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.lb-pr-input-placeholder {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.56);
}

.lb-pr-chat-input button {
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lb-luna-pink), var(--lb-digital-blue));
  color: #0b0b0f;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 12px;
}

@keyframes starPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.65; }
}

@keyframes floatUp {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 0.28; }
  70% { opacity: 0.2; }
  100% { transform: translateY(-120%); opacity: 0; }
}

@keyframes dotBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.45; }
  40% { transform: translateY(-3px); opacity: 1; }
}

@media (min-width: 920px) {
  .lb-pr-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: stretch;
    gap: 12px;
  }

  .lb-pr-receipt-card {
    display: flex;
    align-items: center;
  }
}

/* ============================================================
   WHAT IT IS (standalone asset integrated)
   ============================================================ */
.lb-what {
  position: relative;
  padding: 26px 16px 70px;
}

.lb-what__container {
  position: relative;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 24px 20px 34px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 16% 18%, rgba(79,102,255,0.14), transparent 42%),
    radial-gradient(circle at 84% 26%, rgba(255,79,191,0.16), transparent 44%),
    linear-gradient(180deg, #12172f 0%, #090a12 68%);
  overflow: hidden;
}

.lb-what__container::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    radial-gradient(1px 1px at 28px 48px, rgba(255,255,255,0.9), transparent),
    radial-gradient(1.2px 1.2px at 160px 106px, rgba(255,255,255,0.72), transparent),
    radial-gradient(1px 1px at 280px 220px, rgba(255,255,255,0.62), transparent);
  background-size: 340px 260px;
}

.lb-what__kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: var(--lb-nerdy-teal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lb-what__transform {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 68px 1fr;
  gap: 14px;
  align-items: start;
}

.lb-what__state {
  background: rgba(12, 14, 24, 0.62);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 16px;
  backdrop-filter: blur(8px);
}

.lb-what__label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.lb-what__state--after .lb-what__label {
  color: #ffd7f2;
  border-color: rgba(255,79,191,0.55);
  box-shadow: 0 0 14px rgba(255,79,191,0.22);
}

.lb-what__portraitWrap {
  width: min(320px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  margin: 0 auto 14px;
  padding: 10px;
  background: rgba(11,11,15,0.84);
}

.lb-what__portraitWrap--before {
  box-shadow: 0 0 0 1px rgba(79,102,255,0.28), 0 0 24px rgba(79,102,255,0.2);
}

.lb-what__portraitWrap--after {
  box-shadow: 0 0 0 1px rgba(255,79,191,0.36), 0 0 30px rgba(255,79,191,0.35), 0 0 36px rgba(79,102,255,0.22);
  animation: lbWhatPulse 3.2s ease-in-out infinite;
}

.lb-what__portrait {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
}

.lb-what__portrait--before {
  filter: brightness(0.72) saturate(0.84) contrast(0.94);
}

.lb-what__portrait--after {
  filter: saturate(1.08) contrast(1.04);
}

.lb-what__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.lb-what__chips li {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(11,11,16,0.74);
  border-radius: 14px;
  padding: 11px 12px;
  color: rgba(247,244,255,0.95);
  font-size: 14px;
  line-height: 1.35;
}

.lb-what__arrow {
  display: grid;
  place-items: center;
  font-size: 40px;
  color: rgba(245,243,255,0.9);
  text-shadow: 0 0 18px rgba(79,102,255,0.45), 0 0 14px rgba(255,79,191,0.35);
}

.lb-what__line {
  position: relative;
  z-index: 1;
  margin: 28px 0 8px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(21px, 3.1vw, 32px);
  letter-spacing: -0.02em;
}

.lb-what__identity {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: linear-gradient(90deg, #ff4fbf, #ffb2e6 30%, #4f66ff 64%, #00e0d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  overflow: hidden;
}

.lb-what__identity::after {
  content: "";
  position: absolute;
  inset: -15% -42%;
  background: linear-gradient(115deg, transparent 41%, rgba(255,255,255,0.4) 50%, transparent 59%);
  animation: lbWhatSweep 4.4s ease-in-out infinite;
}

.lb-what__support {
  position: relative;
  z-index: 1;
  margin: 10px auto 0;
  max-width: 760px;
  text-align: center;
  color: rgba(255,255,255,0.74);
  font-size: 16px;
  line-height: 1.45;
}

@media (max-width: 1000px) {
  .lb-what__transform {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lb-what__arrow {
    transform: rotate(90deg);
    font-size: 34px;
  }
}

@media (max-width: 560px) {
  .lb-what {
    padding: 20px 12px 52px;
  }

  .lb-what__container {
    padding: 16px 12px 24px;
    border-radius: 20px;
  }

  .lb-what__state {
    padding: 12px;
    border-radius: 16px;
  }

  .lb-what__portraitWrap {
    width: 94%;
    margin-bottom: 12px;
  }

  .lb-what__chips {
    gap: 8px;
  }

  .lb-what__chips li {
    font-size: 13px;
    padding: 10px 11px;
  }
}

@keyframes lbWhatPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}

@keyframes lbWhatSweep {
  0%, 58% { transform: translateX(-65%); opacity: 0; }
  70% { opacity: 0.85; }
  100% { transform: translateX(65%); opacity: 0; }
}

/* ============================================================
   AUDIENCE CARDS (v3 integrated)
   ============================================================ */
.lb-audience {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 34px 16px 56px;
  background:
    radial-gradient(circle at 15% 20%, rgba(79, 102, 255, 0.16), transparent 46%),
    radial-gradient(circle at 82% 22%, rgba(255, 79, 191, 0.16), transparent 44%),
    linear-gradient(180deg, #11162f 0%, #090a12 70%);
}

.lb-audience__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    radial-gradient(1px 1px at 26px 38px, rgba(255,255,255,0.9), transparent),
    radial-gradient(1.2px 1.2px at 140px 100px, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 260px 210px, rgba(255,255,255,0.58), transparent);
  background-size: 320px 250px;
}

.lb-audience__glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
}

.lb-audience__glow--pink {
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(255,79,191,0.25), transparent 70%);
}

.lb-audience__glow--blue {
  bottom: -210px;
  left: -120px;
  background: radial-gradient(circle, rgba(79,102,255,0.25), transparent 70%);
}

.lb-audience__wrap {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.lb-audience__kicker {
  margin: 0 0 16px;
  color: var(--lb-nerdy-teal);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-transform: uppercase;
}

.lb-audience__intro {
  margin-bottom: 22px;
  max-width: 860px;
}

.lb-audience__intro h1 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lb-audience__intro h1 span {
  background: linear-gradient(92deg, #ff4fbf 8%, #ffb2e6 36%, #4f66ff 72%, #00e0d3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lb-audience__missions {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  max-width: 920px;
}

.lb-audience__missions p {
  margin: 0;
  padding: 2px 0 2px 14px;
  border: none;
  background: transparent;
  color: rgba(247, 244, 255, 0.92);
  font-size: 14px;
  line-height: 1.36;
  position: relative;
}

.lb-audience__missions p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 82%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,79,191,0.95), rgba(79,102,255,0.95) 62%, rgba(0,224,211,0.95));
  box-shadow: 0 0 10px rgba(79,102,255,0.35);
}

.lb-audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lb-card {
  background: rgba(13, 14, 24, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 16px;
  backdrop-filter: blur(8px);
}

.lb-card__top {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 14px;
  align-items: start;
}

.lb-card__avatarWrap {
  width: 118px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  padding: 4px;
  background: rgba(10, 11, 18, 0.88);
}

.lb-card--personal .lb-card__avatarWrap {
  box-shadow:
    0 0 0 1px rgba(0, 224, 211, 0.48),
    0 0 24px rgba(0, 224, 211, 0.28),
    0 0 34px rgba(79, 102, 255, 0.22);
}

.lb-card--voice .lb-card__avatarWrap {
  box-shadow:
    0 0 0 1px rgba(79, 102, 255, 0.5),
    0 0 24px rgba(79, 102, 255, 0.25),
    0 0 34px rgba(255, 79, 191, 0.2);
}

.lb-card__avatar {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.lb-card__avatar--personal {
  object-position: 50% 14%;
}

.lb-card__avatar--voice {
  object-position: 50% 22%;
}

.lb-card__introText h2 {
  margin: 0 0 2px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lb-card__badge {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(0,224,211,0.92);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: rgba(8, 10, 16, 0.68);
}

.lb-card__sub {
  margin: 6px 0 10px;
  color: var(--lb-nerdy-teal);
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.lb-card__lede {
  margin: 0;
  color: rgba(247,244,255,0.93);
  font-size: 15px;
  line-height: 1.45;
}

.lb-card__content {
  margin-top: 12px;
}

.lb-card__content p {
  margin: 0 0 10px;
  color: rgba(247,244,255,0.9);
  font-size: 15px;
  line-height: 1.5;
}

.lb-card__section {
  margin: 16px 0 11px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,178,230,0.96);
}

.lb-card__content ul {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.lb-card__content li {
  color: rgba(247,244,255,0.96);
  font-size: 14px;
  line-height: 1.42;
  border: 1px solid rgba(255,255,255,0.1);
  border-left-width: 2px;
  border-radius: 12px;
  background: rgba(10, 10, 14, 0.54);
  padding: 10px 10px 10px 31px;
  position: relative;
}

.lb-card__content li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.82);
}

.lb-card__content li:nth-child(3n + 1) {
  border-left-color: rgba(255,79,191,0.75);
  box-shadow: inset 0 0 0 1px rgba(255,79,191,0.08);
}

.lb-card__content li:nth-child(3n + 1)::before {
  background: rgba(255,79,191,0.9);
  box-shadow: 0 0 10px rgba(255,79,191,0.32);
}

.lb-card__content li:nth-child(3n + 2) {
  border-left-color: rgba(0,224,211,0.75);
  box-shadow: inset 0 0 0 1px rgba(0,224,211,0.08);
}

.lb-card__content li:nth-child(3n + 2)::before {
  background: rgba(0,224,211,0.95);
  box-shadow: 0 0 10px rgba(0,224,211,0.32);
}

.lb-card__content li:nth-child(3n + 3) {
  border-left-color: rgba(79,102,255,0.75);
  box-shadow: inset 0 0 0 1px rgba(79,102,255,0.08);
}

.lb-card__content li:nth-child(3n + 3)::before {
  background: rgba(79,102,255,0.95);
  box-shadow: 0 0 10px rgba(79,102,255,0.3);
}

.lb-card__closer {
  margin-top: 10px;
  color: rgba(247,244,255,0.9);
  font-size: 14px;
  line-height: 1.44;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.13);
  background:
    linear-gradient(135deg, rgba(255,79,191,0.12), rgba(79,102,255,0.1)),
    rgba(10, 10, 15, 0.66);
  box-shadow: 0 0 14px rgba(255,79,191,0.14);
}

@media (max-width: 1040px) {
  .lb-audience__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .lb-audience {
    padding: 24px 12px 40px;
  }

  .lb-audience__missions {
    display: grid;
    gap: 8px;
  }

  .lb-audience__missions p {
    font-size: 13px;
    line-height: 1.33;
    padding-left: 12px;
  }

  .lb-card {
    border-radius: 18px;
    padding: 12px;
  }

  .lb-card__top {
    grid-template-columns: 92px 1fr;
    gap: 10px;
  }

  .lb-card__avatarWrap {
    width: 88px;
    padding: 3px;
  }

  .lb-card__introText h2 {
    font-size: 24px;
  }

  .lb-card__sub {
    font-size: 12px;
    margin-bottom: 7px;
  }

  .lb-card__badge {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .lb-card__lede,
  .lb-card__content p,
  .lb-card__content li,
  .lb-card__closer {
    font-size: 14px;
  }

  .lb-card__section {
    font-size: 13px;
    margin-top: 12px;
  }
}

/* ============================================================
   SOCIAL PROOF FEED (v2 integrated)
   ============================================================ */
.lb-signal {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 34px 16px 56px;
  background:
    radial-gradient(circle at 15% 18%, rgba(79,102,255,0.14), transparent 44%),
    radial-gradient(circle at 84% 26%, rgba(255,79,191,0.15), transparent 44%),
    linear-gradient(180deg, #10142c 0%, #090a12 72%);
}

.lb-signal__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.44;
  background-image:
    radial-gradient(1px 1px at 24px 38px, rgba(255,255,255,.86), transparent),
    radial-gradient(1px 1px at 160px 110px, rgba(255,255,255,.7), transparent),
    radial-gradient(1px 1px at 290px 205px, rgba(255,255,255,.58), transparent);
  background-size: 340px 260px;
}

.lb-signal__glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  filter: blur(88px);
  pointer-events: none;
}

.lb-signal__glow--pink {
  top: -170px;
  right: -130px;
  background: radial-gradient(circle, rgba(255,79,191,0.24), transparent 72%);
}

.lb-signal__glow--blue {
  bottom: -200px;
  left: -120px;
  background: radial-gradient(circle, rgba(79,102,255,0.24), transparent 72%);
}

.lb-signal__wrap {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.lb-signal__kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lb-nerdy-teal);
  font-weight: 600;
}

.lb-signal h1 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.02em;
  text-wrap: balance;
  text-shadow: 0 4px 24px rgba(8, 10, 18, 0.35);
}

.lb-signal h1 span {
  background: linear-gradient(92deg, #FF4FBF 0%, #FFB2E6 40%, #4F66FF 75%, #00E0D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lb-signal__subhead {
  margin: 14px 0 24px;
  max-width: 880px;
  color: rgba(247, 244, 255, 0.9);
  font-size: 17px;
  line-height: 1.5;
  padding: 11px 14px 11px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 13, 22, 0.64);
  position: relative;
  backdrop-filter: blur(6px);
}

.lb-signal__subhead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #FF4FBF, #4F66FF 55%, #00E0D3);
  box-shadow: 0 0 10px rgba(79, 102, 255, 0.35);
}

.lb-feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 14px 16px;
  align-items: start;
}

.lb-sf-card {
  background: rgba(12, 14, 24, 0.72);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 13px;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(4,6,12,.34);
  transform: translateY(18px) rotate(var(--tilt, 0));
  opacity: 0;
  animation: lbSfCardIn .68s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: var(--delay, 0s);
}

.lb-sf-card--one { margin-right: 22px; }
.lb-sf-card--two { margin-left: 18px; }
.lb-sf-card--three { margin-right: 30px; }
.lb-sf-card--four { margin-left: 28px; }

.lb-sf-card__head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.lb-sf-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.2);
  flex-shrink: 0;
}

.lb-sf-card__meta {
  min-width: 0;
  flex: 1;
}

.lb-sf-card__row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.lb-sf-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(10,11,16,.62);
}

.lb-sf-pill--tag {
  animation: lbSfPillFlash .6s ease-out both;
  animation-delay: calc(var(--delay, 0s) + .46s);
}

.lb-sf-card--one .lb-sf-pill--tag { border-color: rgba(255,79,191,.56); color: rgba(255,178,230,.96); }
.lb-sf-card--two .lb-sf-pill--tag { border-color: rgba(79,102,255,.56); color: rgba(175,190,255,.95); }
.lb-sf-card--three .lb-sf-pill--tag { border-color: rgba(0,224,211,.58); color: rgba(145,255,245,.95); }
.lb-sf-card--four .lb-sf-pill--tag { border-color: rgba(255,255,255,.2); color: rgba(247,244,255,.95); }

.lb-sf-pill--live {
  color: rgba(247,244,255,.88);
}

.lb-sf-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #00E0D3;
  margin-right: 6px;
  box-shadow: 0 0 8px rgba(0,224,211,.45);
  animation: lbSfPulseDot 1.6s ease-in-out infinite;
}

.lb-sf-card__stamp {
  margin: 4px 0 0;
  color: rgba(247,244,255,.56);
  font-size: 11px;
  letter-spacing: .03em;
}

.lb-sf-card__quote {
  margin: 0;
  color: rgba(247,244,255,.96);
  font-size: 15px;
  line-height: 1.48;
}

.lb-sf-card__quote .line {
  display: block;
  opacity: 0;
  transform: translateY(4px);
  animation: lbSfLineIn .34s ease-out forwards;
}

.lb-sf-card__quote .line:nth-child(1) { animation-delay: calc(var(--delay, 0s) + .2s); }
.lb-sf-card__quote .line:nth-child(2) { animation-delay: calc(var(--delay, 0s) + .34s); }
.lb-sf-card__quote .line:nth-child(3) { animation-delay: calc(var(--delay, 0s) + .48s); }

.lb-sf-react {
  margin-top: 11px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  opacity: 0;
  transform: translateY(4px);
  animation: lbSfReactIn .3s ease-out forwards;
  animation-delay: calc(var(--delay, 0s) + .72s);
}

.lb-sf-react span {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,11,15,.62);
  color: rgba(247,244,255,.84);
  font-size: 11px;
  padding: 4px 8px;
}

.lb-sf-card--one { box-shadow: 0 12px 28px rgba(4,6,12,.34), 0 0 16px rgba(255,79,191,.11); }
.lb-sf-card--two { box-shadow: 0 12px 28px rgba(4,6,12,.34), 0 0 16px rgba(79,102,255,.11); }
.lb-sf-card--three { box-shadow: 0 12px 28px rgba(4,6,12,.34), 0 0 16px rgba(0,224,211,.1); }
.lb-sf-card--four { box-shadow: 0 12px 28px rgba(4,6,12,.34), 0 0 14px rgba(255,178,230,.08); }

@keyframes lbSfCardIn {
  to {
    opacity: 1;
    transform: translateY(0) rotate(var(--tilt, 0));
  }
}

@keyframes lbSfLineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lbSfReactIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lbSfPillFlash {
  0% { box-shadow: 0 0 0 rgba(255,255,255,0); }
  60% { box-shadow: 0 0 14px rgba(255,178,230,.28); }
  100% { box-shadow: 0 0 0 rgba(255,255,255,0); }
}

@keyframes lbSfPulseDot {
  0%, 100% { opacity: .52; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

@media (max-width: 980px) {
  .lb-feed {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lb-sf-card,
  .lb-sf-card--one,
  .lb-sf-card--two,
  .lb-sf-card--three,
  .lb-sf-card--four {
    margin: 0;
    transform: translateY(16px) rotate(0deg);
  }
}

@media (max-width: 560px) {
  .lb-signal {
    padding: 24px 12px 40px;
  }

  .lb-signal__subhead {
    font-size: 15px;
    line-height: 1.45;
    padding: 10px 10px 10px 14px;
  }

  .lb-sf-card {
    border-radius: 14px;
    padding: 11px;
  }

  .lb-sf-card__quote {
    font-size: 14px;
    line-height: 1.44;
  }
}

/* ============================================================
   FINAL CTA — ENTER LOVERBYTE
   ============================================================ */
.lb-final-cta {
  position: relative;
  padding: clamp(56px, 8vw, 110px) 16px clamp(68px, 9vw, 120px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}

.lb-final-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lb-final-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(70% 55% at 50% 42%, rgba(255,79,191,0.16) 0%, rgba(79,102,255,0.1) 34%, transparent 72%),
    radial-gradient(62% 48% at 52% 60%, rgba(79,102,255,0.14) 0%, transparent 75%);
}

.lb-final-cta__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(247,244,255,0.58);
  box-shadow: 0 0 12px rgba(255,178,230,0.35);
  animation: lbCtaDrift 10s ease-in-out infinite;
}
.lb-final-cta__particle--1 { top: 16%; left: 18%; animation-delay: .2s; }
.lb-final-cta__particle--2 { top: 24%; right: 20%; animation-delay: 1.1s; }
.lb-final-cta__particle--3 { bottom: 24%; left: 24%; animation-delay: 2.6s; }
.lb-final-cta__particle--4 { bottom: 16%; right: 18%; animation-delay: 3.2s; }

.lb-final-cta__stage {
  width: min(1100px, 100%);
  margin: 0 auto;
  position: relative;
}

.lb-final-cta__card {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: min(860px, 100%);
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(160deg, rgba(22,25,42,0.76), rgba(11,13,22,0.84));
  box-shadow:
    0 20px 52px rgba(4,7,16,0.52),
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 0 0 1px rgba(79,102,255,0.14),
    0 0 30px rgba(79,102,255,0.14),
    0 0 24px rgba(255,79,191,0.12);
  backdrop-filter: blur(10px);
  padding: clamp(56px, 6vw, 64px) clamp(22px, 4.6vw, 52px);
  text-align: center;
}

.lb-final-cta__kicker {
  margin: 0 0 14px;
  color: var(--lb-nerdy-teal);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
}

.lb-final-cta__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 5.3vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: rgba(247,244,255,0.98);
  text-shadow: 0 0 18px rgba(79,102,255,0.16);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s ease .08s, transform .55s ease .08s;
}

.lb-final-cta__title span {
  background: linear-gradient(92deg, #FF4FBF 0%, #FFB2E6 38%, #4F66FF 74%, #00E0D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 210% 100%;
  background-position: 0% 0%;
}

.lb-final-cta__subheadline {
  margin: 16px auto 0;
  max-width: 700px;
  color: rgba(247,244,255,0.9);
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.42;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease .18s, transform .55s ease .18s;
}

.lb-final-cta__subheadline span {
  color: rgba(247,244,255,0.95);
}

.lb-final-cta__support {
  margin: 16px auto 0;
  max-width: 700px;
  color: rgba(247,244,255,0.76);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.52;
  opacity: 0;
  transition: opacity .5s ease .28s;
}

.lb-final-cta__actions {
  margin-top: clamp(22px, 3.5vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .56s ease .34s, transform .56s ease .34s;
}

.lb-final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  min-width: min(420px, 92%);
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(104deg, #FF4FBF 0%, #DB5DDE 43%, #4F66FF 100%);
  color: #fdfcff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  box-shadow:
    0 10px 26px rgba(79,102,255,0.3),
    0 8px 24px rgba(255,79,191,0.25);
  position: relative;
  transition: box-shadow .22s ease, filter .22s ease;
}

.lb-final-cta__button::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 1px solid rgba(79,102,255,0.42);
  opacity: 0.75;
  animation: lbCtaButtonGlow 3.2s ease-in-out infinite;
  pointer-events: none;
}

.lb-final-cta__buttonText {
  position: relative;
  z-index: 1;
}

.lb-final-cta__arrow {
  display: inline-block;
  transform: translateX(0);
  transition: transform .22s ease;
  position: relative;
  z-index: 1;
}

.lb-final-cta__button:hover {
  filter: brightness(1.06);
  box-shadow:
    0 12px 28px rgba(79,102,255,0.36),
    0 10px 28px rgba(255,79,191,0.3);
}

.lb-final-cta__button:hover .lb-final-cta__arrow {
  transform: translateX(4px);
}

.lb-final-cta__signin {
  display: inline-block;
  color: rgba(247,244,255,0.84);
  font-size: 15px;
}

.lb-final-cta__signin span {
  color: var(--lb-nerdy-teal);
}

.lb-final-cta__micro {
  margin: 0;
  color: rgba(247,244,255,0.6);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.lb-final-cta__fragment {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(13,16,28,0.46);
  color: rgba(247,244,255,0.60);
  box-shadow: 0 8px 18px rgba(7,10,18,0.26);
  pointer-events: none;
  opacity: .72;
}

.lb-final-cta__fragment--heart {
  top: -4%;
  left: 3%;
  padding: 7px 10px;
}

.lb-final-cta__fragment--chat {
  top: 2%;
  right: 3%;
  padding: 5px 14px 7px;
  color: rgba(0,224,211,0.92);
}

.lb-final-cta__fragment--crush {
  bottom: -2%;
  left: 5%;
  padding: 7px 11px;
  color: rgba(255,178,230,0.9);
}

.lb-final-cta__fragment--tip {
  bottom: 4%;
  right: 5%;
  padding: 7px 11px;
  color: rgba(79,102,255,0.92);
}

.lb-final-cta__fragment--signal {
  bottom: -5%;
  right: 16%;
  padding: 5px 12px 7px;
  color: rgba(247,244,255,0.76);
}

.lb-final-cta.is-visible .lb-final-cta__kicker,
.lb-final-cta.is-visible .lb-final-cta__title,
.lb-final-cta.is-visible .lb-final-cta__subheadline,
.lb-final-cta.is-visible .lb-final-cta__support,
.lb-final-cta.is-visible .lb-final-cta__actions {
  opacity: 1;
  transform: translateY(0);
}

.lb-final-cta.is-visible .lb-final-cta__title span {
  animation: lbCtaTextSweep 1.25s cubic-bezier(.2,.7,.2,1) .46s 1 both;
}

@keyframes lbCtaTextSweep {
  0% { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

@keyframes lbCtaButtonGlow {
  0%, 100% {
    opacity: .55;
    box-shadow: 0 0 0 rgba(79,102,255,0);
  }
  50% {
    opacity: .95;
    box-shadow: 0 0 18px rgba(79,102,255,0.32), 0 0 16px rgba(255,79,191,0.24);
  }
}

@keyframes lbCtaDrift {
  0%, 100% { transform: translateY(0); opacity: .35; }
  50% { transform: translateY(-11px); opacity: .75; }
}

@media (max-width: 760px) {
  .lb-final-cta {
    padding: 48px 12px 62px;
  }

  .lb-final-cta__card {
    border-radius: 22px;
    padding: 32px 18px 34px;
  }

  .lb-final-cta__button {
    width: 100%;
    min-width: 0;
    font-size: 17px;
    min-height: 56px;
  }

  .lb-final-cta__fragment {
    transform: scale(0.92);
    opacity: .46;
  }

  .lb-final-cta__fragment--heart { top: -2%; left: 2%; }
  .lb-final-cta__fragment--chat { top: 6%; right: 2%; }
  .lb-final-cta__fragment--crush { bottom: 8%; left: 2%; }
  .lb-final-cta__fragment--tip { bottom: 14%; right: 2%; }
  .lb-final-cta__fragment--signal { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .lb-final-cta,
  .lb-final-cta__kicker,
  .lb-final-cta__title,
  .lb-final-cta__subheadline,
  .lb-final-cta__support,
  .lb-final-cta__actions,
  .lb-final-cta__button::before,
  .lb-final-cta__particle {
    animation: none !important;
    transition: none !important;
  }

  .lb-final-cta {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   BLACK-BG-SOFT VERSION OVERRIDES
   Keep page black, add only subtle localized section glows.
   ============================================================ */
.lb-page,
.lb-hero,
.lb-pillars,
.lb-what,
.lb-audience,
.lb-signal,
.lb-final-cta {
  background: #0b0b0f !important;
}

.lb-hero::before,
.lb-hero::after,
.lb-audience__stars,
.lb-audience__glow,
.lb-signal__stars,
.lb-signal__glow,
.lb-final-cta__bg {
  display: none !important;
}

.lb-hero__container,
.lb-pillars__container,
.lb-what__container,
.lb-audience__wrap,
.lb-signal__wrap,
.lb-final-cta__card {
  position: relative;
  z-index: 0;
}

.lb-hero__container::before,
.lb-pillars__container::before,
.lb-what__container::before,
.lb-audience__wrap::before,
.lb-signal__wrap::before,
.lb-final-cta__card::after {
  content: "";
  position: absolute;
  inset: -8% -5%;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(58% 44% at 50% 44%, rgba(79,102,255,0.09) 0%, transparent 72%),
    radial-gradient(50% 38% at 50% 54%, rgba(255,79,191,0.07) 0%, transparent 74%);
}

@media (max-width: 760px) {
  .lb-hero__container::before,
  .lb-pillars__container::before,
  .lb-what__container::before,
  .lb-audience__wrap::before,
  .lb-signal__wrap::before,
  .lb-final-cta__card::after {
    inset: -6% -3%;
    background:
      radial-gradient(62% 46% at 50% 44%, rgba(79,102,255,0.08) 0%, transparent 72%),
      radial-gradient(54% 40% at 50% 54%, rgba(255,79,191,0.06) 0%, transparent 74%);
  }
}
