/* ============================================================
   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;
  }
}

/* ============================================================
   FOUNDER-APPROVED LANDING VISUAL PORT
   Scoped to .lb-visual-port. The final CTA below it retains the
   production selectors and behavior defined above.
   ============================================================ */

.lb-nav {
  background: rgba(5, 5, 10, 0.9);
  border-color: rgba(255,255,255,.05);
}

.lb-nav--scrolled {
  background: rgba(5, 5, 10, 0.78);
  backdrop-filter: blur(18px);
}

.lb-nav__container {
  width: min(1320px, 100%);
  height: 74px;
  padding-inline: clamp(20px, 4vw, 58px);
}

.lb-nav__logo { height: clamp(20px, 2.1vw, 27px); }

.lb-nav__actions { gap: clamp(12px, 1.8vw, 26px); }

.lb-nav__link {
  color: rgba(247,244,255,.58);
  letter-spacing: .05em;
}

.lb-nav__cta,
.signup-button {
  min-height: 42px;
  padding: 0 clamp(15px, 1.6vw, 22px);
  border: 1px solid transparent;
  background:
    linear-gradient(#0c0c14, #0c0c14) padding-box,
    linear-gradient(105deg, #FF4FBF, #B46DFF 40%, #4F66FF 70%, #00E0D3) border-box;
  box-shadow: 0 0 22px rgba(255,79,191,.2);
  font-size: 14px;
  font-weight: 600;
}

.lb-nav__cta:hover,
.signup-button:hover {
  box-shadow: 0 0 30px rgba(255,79,191,.3);
}

.lb-visual-port {
  --design-bg: #05050a;
  --design-panel: #0b0911;
  --design-white: #f7f4ff;
  --design-muted: rgba(247,244,255,.55);
  --design-faint: rgba(247,244,255,.34);
  --design-pink: #FF4FBF;
  --design-pink-soft: #FFB2E6;
  --design-purple: #B46DFF;
  --design-blue: #4F66FF;
  --design-teal: #00E0D3;
  overflow: clip;
  background: var(--design-bg);
  color: var(--design-white);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
}

.lb-design-section {
  position: relative;
  overflow: clip;
  padding: clamp(72px, 8vw, 132px) 0;
  background: var(--design-bg);
  opacity: 1;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}

.lb-design-section--hero {
  background:
    radial-gradient(900px 620px at 26% 20%, rgba(79,102,255,.13), transparent 70%),
    radial-gradient(760px 520px at 84% 34%, rgba(255,79,191,.09), transparent 72%),
    radial-gradient(680px 460px at 50% 92%, rgba(180,109,255,.08), transparent 74%),
    radial-gradient(520px 340px at 8% 62%, rgba(0,224,211,.05), transparent 74%),
    #05050A;
}

.lb-design-section--crush {
  background:
    radial-gradient(860px 580px at 16% 12%, rgba(79,102,255,.12), transparent 72%),
    radial-gradient(720px 500px at 78% 44%, rgba(255,79,191,.09), transparent 74%),
    radial-gradient(940px 620px at 52% 84%, rgba(180,109,255,.09), transparent 76%),
    #05050A;
}

.lb-design-section--meaning {
  background:
    radial-gradient(760px 520px at 22% 8%, rgba(79,102,255,.07), transparent 72%),
    radial-gradient(900px 600px at 52% 46%, rgba(255,79,191,.13), transparent 74%),
    radial-gradient(700px 480px at 78% 88%, rgba(0,224,211,.05), transparent 74%),
    #05050A;
}

.lb-design-section--match {
  --design-bg: #08070D;
  --design-panel: #141220;
  --design-white: #F4F2F8;
  --design-muted: #A79DB3;
  --design-faint: #756D80;
  --design-pink: #FF5DA2;
  --design-pink-soft: #FFB2E6;
  --design-purple: #B06CFF;
  --design-blue: #6F8CFF;
  --design-teal: #00E0D3;
  background:
    radial-gradient(820px 560px at 50% 4%, rgba(255,93,162,.15), transparent 68%),
    radial-gradient(760px 520px at 12% 46%, rgba(111,140,255,.09), transparent 72%),
    radial-gradient(900px 600px at 86% 74%, rgba(176,108,255,.1), transparent 74%),
    #08070D;
}

.lb-design-section.is-revealed {
  opacity: 1;
  transform: none;
}

.lb-design-section + .lb-design-section {
  border-top: 1px solid rgba(255,255,255,.08);
}

.lb-design-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.lb-design-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-size: clamp(12px, 1.3vw, 20px);
  font-weight: 600;
  letter-spacing: clamp(.16em, .4vw, .36em);
  text-transform: uppercase;
}

.lb-design-kicker span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--design-teal);
  box-shadow: 0 0 12px rgba(0,224,211,.85);
}

.lb-design-kicker::after {
  content: "";
  width: clamp(30px, 8vw, 120px);
  height: 1px;
  background: linear-gradient(90deg, rgba(0,224,211,.5), transparent);
}

.lb-design-intro {
  display: grid;
  gap: 7px;
  max-width: 820px;
  margin-top: clamp(30px, 3.4vw, 48px);
  padding-left: clamp(15px, 1.8vw, 26px);
  border-left: 1px solid rgba(247,244,255,.14);
}

.lb-design-intro p {
  margin: 0;
  color: rgba(247,244,255,.68);
  font-size: clamp(17px, 1.9vw, 30px);
  line-height: 1.42;
}

.lb-context-headline {
  position: relative;
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  margin: clamp(54px, 7vw, 94px) 0 0;
  font-family: inherit;
}

.lb-context-headline::before {
  content: "";
  position: absolute;
  inset: -8% -10%;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(79,102,255,.16), rgba(180,109,255,.05) 58%, transparent 76%);
}

.lb-context-block {
  display: grid;
  justify-items: start;
}

.lb-context-block--offset { margin-left: clamp(0px, 7vw, 100px); }

.lb-context-block small {
  margin-bottom: 8px;
  color: var(--design-faint);
  font-size: clamp(11px, 1.1vw, 16px);
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
}

.lb-context-block strong {
  font-size: clamp(42px, 7vw, 104px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.lb-context-block__social {
  color: var(--design-teal);
  text-shadow: 0 0 70px rgba(0,224,211,.34);
}

.lb-context-block__dating {
  color: var(--design-pink);
  text-shadow: 0 0 70px rgba(255,79,191,.34);
}

.lb-context-block em {
  margin-top: clamp(8px, 1.1vw, 16px);
  color: rgba(247,244,255,.62);
  font-size: clamp(20px, 3.1vw, 46px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.lb-context-divider {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lb-context-divider i {
  width: clamp(60px, 9vw, 132px);
  height: 1px;
  background: rgba(247,244,255,.16);
}

.lb-context-divider b {
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  background: rgba(247,244,255,.3);
}

.lb-together {
  display: grid;
  justify-items: center;
  margin: clamp(70px, 9vw, 128px) 0 0;
  text-align: center;
  font-size: clamp(34px, 6vw, 88px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.lb-together strong {
  display: inline-block;
  margin-top: 6px;
  padding-bottom: 16px;
  background: linear-gradient(105deg, #FF4FBF, #B46DFF 40%, #4F66FF 72%, #00E0D3) 0 100% / 100% 4px no-repeat;
}

.lb-mosaic-shell {
  margin-top: clamp(58px, 7vw, 104px);
  padding: 1px;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(255,79,191,.3), rgba(180,109,255,.15) 44%, rgba(79,102,255,.26) 72%, rgba(0,224,211,.16));
  box-shadow: 0 70px 150px -55px rgba(79,102,255,.4), 0 0 130px -45px rgba(255,79,191,.16);
}

.lb-feed-mosaic {
  container-type: inline-size;
  position: relative;
  width: 100%;
  aspect-ratio: 1120 / 920;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 25px;
  background:
    radial-gradient(50% 44% at 48% 48%, rgba(79,102,255,.17), transparent 72%),
    radial-gradient(34% 28% at 15% 75%, rgba(255,79,191,.09), transparent 74%),
    #05050a;
}

.lb-post-card {
  position: absolute;
  display: grid;
  gap: .75cqw;
  width: 25%;
  padding: 1.25cqw;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1.5cqw;
  background: #0f1119;
  box-shadow: 0 3.6cqw 8cqw -3.5cqw rgba(0,0,0,.95);
  color: rgba(247,244,255,.92);
  font-size: 1.15cqw;
  line-height: 1.45;
}

.lb-post-card p { margin: 0; }
.lb-post-card p b { color: var(--design-pink-soft); }

.lb-post-head {
  display: flex;
  align-items: center;
  gap: .7cqw;
}

.lb-post-head img {
  width: 3.3cqw;
  height: 3.3cqw;
  flex: 0 0 auto;
  border: .18cqw solid var(--design-pink-soft);
  border-radius: 50%;
  object-fit: cover;
}

.lb-post-head span { display: grid; min-width: 0; }
.lb-post-head strong { overflow: hidden; font-size: 1.05cqw; text-overflow: ellipsis; white-space: nowrap; }
.lb-post-head small { color: rgba(247,244,255,.48); font-size: .8cqw; }

.lb-post-tags,
.lb-reactions,
.lb-post-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: .45cqw;
}

.lb-post-tags span,
.lb-reactions span,
.lb-post-card footer span {
  padding: .28cqw .6cqw;
  border: 1px solid rgba(180,109,255,.32);
  border-radius: 999px;
  background: rgba(12,16,27,.72);
  font-size: .8cqw;
  white-space: nowrap;
}

.lb-post-media {
  width: 100%;
  max-height: 25cqw;
  border-radius: 1cqw;
  object-fit: cover;
  object-position: 50% 25%;
}

.lb-post-card--janie { top: 8%; left: 14%; transform: rotate(1.5deg); }
.lb-post-card--jake { top: 5%; left: 39%; z-index: 4; width: 28%; transform: rotate(-1.5deg); }
.lb-post-card--kendra { top: 7%; right: 13%; transform: rotate(1.2deg); }
.lb-post-card--franky { bottom: 7%; left: 8%; transform: rotate(-1.5deg); }
.lb-post-card--kelly { right: 8%; bottom: 6%; transform: rotate(1.4deg); }

.lb-feed-note {
  position: absolute;
  z-index: 7;
  display: flex;
  gap: .45cqw;
  align-items: center;
  padding: .8cqw 1cqw;
  border: 1px solid rgba(228,226,246,.2);
  border-radius: 1.1cqw;
  background: rgba(12,16,27,.95);
  box-shadow: 0 1.5cqw 3.6cqw -1.8cqw rgba(0,0,0,.95);
  font-size: 1cqw;
}

.lb-feed-note span { display: block; max-width: 15cqw; color: rgba(247,244,255,.65); }
.lb-feed-note--poke { top: 24%; right: 2%; color: var(--design-teal); }
.lb-feed-note--crush { top: 42%; right: 1%; display: grid; color: var(--design-pink); }
.lb-feed-note--reply { bottom: 25%; left: 31%; }
.lb-feed-note--saved { bottom: 11%; left: 33%; color: var(--design-blue); }

.lb-philosophy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 38px);
  width: min(1200px, calc(100% - 40px));
  margin: clamp(68px, 8vw, 118px) auto 0;
  font-size: clamp(17px, 2.2vw, 31px);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.lb-philosophy strong:nth-of-type(2) { color: #FFB2E6; }
.lb-philosophy strong:nth-of-type(3) { background: linear-gradient(90deg, #FFFFFF 0 54%, #FF4FBF 54%); -webkit-background-clip: text; color: transparent; }
.lb-philosophy i { width: 6px; height: 6px; transform: rotate(45deg); background: var(--design-teal); }
.lb-philosophy i:nth-of-type(2) { background: var(--design-pink); }

.lb-deadline-title {
  display: grid;
  margin: 0;
  font-size: clamp(44px, 7vw, 94px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.lb-deadline-title b { color: #fff; }
.lb-deadline-title s { position: relative; color: rgba(247,244,255,.36); text-decoration: none; }
.lb-deadline-title s::after { content: ""; position: absolute; left: 0; right: 0; top: 52%; height: 3px; background: rgba(255,79,191,.62); box-shadow: 0 0 14px rgba(255,79,191,.3); }

.lb-build-list {
  display: grid;
  gap: 28px;
  margin: clamp(70px, 10vw, 132px) 0 0 48px;
  padding: 0;
  color: rgba(247,244,255,.66);
  font-size: clamp(18px, 2vw, 29px);
  list-style: none;
}

.lb-build-list li { position: relative; padding-left: 32px; }
.lb-build-list li::before { content: ""; position: absolute; left: -46px; top: .75em; width: 30px; height: 1px; background: rgba(255,255,255,.14); }
.lb-build-list li::after { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--design-purple); }
.lb-build-list li:first-child::after { border-radius: 1px; border: 0; background: var(--design-purple); }
.lb-build-list li:first-child { color: rgba(255,255,255,.55); }
.lb-build-list li:nth-child(2) { color: rgba(255,255,255,.62); }
.lb-build-list li:last-child { color: rgba(255,255,255,.82); }
.lb-build-list li:last-child::after { border: 0; background: #FFB2E6; box-shadow: 0 0 12px rgba(255,79,191,.75); }

.lb-choice-line {
  display: grid;
  grid-template-columns: auto minmax(20px, 1fr) auto minmax(20px, 1fr) auto;
  align-items: center;
  gap: clamp(10px, 2vw, 28px);
  margin: clamp(80px, 10vw, 140px) 0;
  padding-block: 52px;
  border-block: 1px solid rgba(255,255,255,.1);
  text-transform: uppercase;
}

.lb-choice-line strong,
.lb-choice-line b { font-size: clamp(22px, 3.1vw, 46px); }
.lb-choice-line strong { color: #4F66FF; letter-spacing: .08em; text-shadow: 0 0 32px rgba(79,102,255,.55); }
.lb-choice-line b { color: var(--design-pink); text-align: right; }
.lb-choice-line span { height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.15), rgba(255,79,191,.35)); }
.lb-choice-line small { color: rgba(247,244,255,.3); font-weight: 700; letter-spacing: .4em; }

.lb-crush-origin-title {
  display: grid;
  justify-items: start;
  margin: 0;
  font-size: clamp(30px, 4.2vw, 62px);
  line-height: 1.18;
  text-transform: uppercase;
}

.lb-crush-origin-title span { color: #fff; }
.lb-crush-origin-title small { margin-top: 24px; color: rgba(247,244,255,.7); font-size: .7em; font-weight: 500; }
.lb-crush-origin-title strong { margin-top: 10px; padding: 6px 12px; border-radius: 4px; background-color: rgba(79,102,255,.15); background-image: linear-gradient(92deg, #FFB2E6, #FF4FBF 38%, #4F66FF); background-size: 100% 3px; background-position: 0 100%; background-repeat: no-repeat; }
.lb-crush-origin-title em { margin-top: clamp(70px, 9vw, 126px); color: rgba(247,244,255,.35); font-style: normal; font-size: .7em; }

.lb-story-panel {
  position: relative;
  margin-top: clamp(60px, 8vw, 110px);
  padding: clamp(36px, 5vw, 70px);
  border: 1px solid transparent;
  border-radius: 24px;
  background:
    radial-gradient(55% 50% at 48% 54%, rgba(79,102,255,.12), transparent 75%) padding-box,
    linear-gradient(rgba(4,4,9,.94), rgba(4,4,9,.94)) padding-box,
    linear-gradient(135deg, rgba(255,79,191,.72), rgba(180,109,255,.65) 48%, rgba(79,102,255,.82)) border-box;
  box-shadow: -18px 28px 90px -48px rgba(255,79,191,.48), 18px 38px 100px -48px rgba(79,102,255,.5);
}

.lb-panel-label {
  margin: 0 0 32px;
  font-weight: 600;
}

.lb-panel-label::before { content: ""; display: inline-block; width: 24px; height: 1px; margin-right: 10px; vertical-align: middle; background: linear-gradient(90deg, var(--design-purple), transparent); }

.lb-conversation-flow {
  display: grid;
  grid-template-columns: .9fr 1fr .85fr;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.lb-mini-post {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: #0e1018;
  box-shadow: 0 28px 70px -30px #000;
  color: rgba(247,244,255,.9);
  font-size: clamp(10px, 1.1vw, 14px);
  line-height: 1.45;
}

.lb-mini-post header { display: flex; gap: 9px; align-items: center; }
.lb-mini-post header img { width: 38px; height: 38px; border: 2px solid var(--design-pink); border-radius: 50%; object-fit: cover; }
.lb-mini-post header span { display: grid; }
.lb-mini-post header small { color: var(--design-muted); }
.lb-mini-post p { margin: 0; }
.lb-mini-post > img { width: 100%; max-height: 300px; border-radius: 12px; object-fit: cover; object-position: 50% 24%; }
.lb-mini-post footer { padding: 9px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; font-size: .86em; white-space: nowrap; }
.lb-mini-post--jake { transform: rotate(-2deg); }
.lb-mini-post--kelly { transform: translateY(38px) rotate(1.5deg); }

.lb-crush-receipt,
.lb-accepted-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 22px 18px;
  border: 1px solid transparent;
  border-radius: 20px;
  background:
    linear-gradient(rgba(8,7,14,.97), rgba(8,7,14,.97)) padding-box,
    linear-gradient(145deg, #FF4FBF, #B46DFF 48%, #4F66FF) border-box;
  box-shadow: -12px 18px 44px -28px rgba(255,79,191,.7), 14px 22px 48px -30px rgba(79,102,255,.72);
  text-align: center;
}

.lb-crush-receipt > p {
  color: transparent;
  background: linear-gradient(90deg, #FF4FBF 0 26%, #B46DFF 48%, #4F66FF 74% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: .86em;
  font-weight: 600;
}
.lb-crush-receipt strong,
.lb-accepted-card > strong {
  color: transparent;
  background: linear-gradient(90deg, #FF4FBF 0 26%, #B46DFF 48%, #4F66FF 74% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.4em;
}
.lb-crush-receipt small,
.lb-accepted-card small { color: var(--design-muted); }
.lb-crush-receipt blockquote { margin: 8px 0; color: rgba(247,244,255,.85); }
.lb-crush-receipt em,
.lb-accepted-card em { padding: 8px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 9px; font-style: normal; font-weight: 600; }

.lb-pair-avatars { display: flex; align-items: center; gap: 10px; }
.lb-pair-avatars img {
  width: 52px;
  height: 52px;
  border: 2px solid;
  border-radius: 50%;
  object-fit: cover;
}
.lb-pair-avatars img:first-child { border-color: var(--design-blue); box-shadow: 0 0 14px rgba(79,102,255,.46); }
.lb-pair-avatars img:last-child { border-color: var(--design-pink); box-shadow: 0 0 14px rgba(255,79,191,.42); }

.lb-panel-caption { margin: 38px 0 0; color: var(--design-muted); text-align: center; }

.lb-decision-line {
  max-width: 1050px;
  margin: clamp(76px, 10vw, 140px) auto 0;
  color: rgba(247,244,255,.55);
  font-size: clamp(26px, 4vw, 54px);
  line-height: 1.25;
  text-align: center;
}

.lb-decision-line strong { padding-bottom: 8px; color: #FFFFFF; background: linear-gradient(92deg, #FFB2E6, #FF4FBF 38%, #4F66FF) 0 100% / 100% 2px no-repeat; }

.lb-meaning-title {
  display: grid;
  margin: 0;
  font-size: clamp(42px, 6.8vw, 92px);
  line-height: .98;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.lb-meaning-title span { color: #fff; }
.lb-meaning-title strong { color: rgba(247,244,255,.38); font-weight: 500; }
.lb-meaning-title b { color: #fff; }

.lb-romantic-signal {
  margin: clamp(80px, 9vw, 130px) 0 0;
  padding-top: 34px;
  font-size: clamp(32px, 4.6vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
}

.lb-romantic-signal::before { content: ""; display: block; width: 96px; height: 2px; margin-bottom: 30px; background: #FF4FBF; box-shadow: 0 0 16px rgba(255,79,191,.7); }
.lb-romantic-signal strong { color: var(--design-pink); }

.lb-quiet-part {
  margin: clamp(76px, 9vw, 126px) 0 34px;
  color: var(--design-faint);
  font-size: clamp(13px, 1.6vw, 20px);
  font-weight: 600;
  letter-spacing: .35em;
  text-align: center;
  text-transform: uppercase;
}

.lb-interest-signal {
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid transparent;
  border-radius: 12px;
  box-shadow: -20px 0 80px rgba(255,79,191,.2), 20px 0 80px rgba(79,102,255,.16);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  background-image:
    linear-gradient(92deg, #FFB2E6 0%, #FF4FBF 32%, #B46DFF 62%, #4F66FF 100%),
    linear-gradient(rgba(7,5,12,.82), rgba(7,5,12,.82)),
    linear-gradient(125deg, rgba(255,79,191,.72), rgba(180,109,255,.58) 50%, rgba(79,102,255,.72));
  background-origin: border-box;
  background-clip: text, padding-box, border-box;
  -webkit-background-clip: text;
  color: transparent;
}

.lb-signal-explainer {
  margin: clamp(66px, 7vw, 100px) 0 0;
  color: rgba(247,244,255,.6);
  font-size: clamp(18px, 2.1vw, 29px);
  line-height: 1.5;
}

.lb-signal-explainer strong { padding-bottom: 3px; color: rgba(255,255,255,.92); background: linear-gradient(92deg, #FFB2E6, #FF4FBF 38%, #4F66FF) 0 100% / 100% 2px no-repeat; }

.lb-decision-flow {
  display: grid;
  grid-template-columns: 1fr 1.05fr .8fr;
  align-items: center;
  gap: clamp(22px, 4vw, 56px);
}

.lb-story-panel--decision {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.lb-notification-card,
.lb-decision-card {
  padding: 18px;
  border: 1px solid transparent;
  border-radius: 20px;
  background:
    linear-gradient(rgba(10,9,16,.97), rgba(10,9,16,.97)) padding-box,
    linear-gradient(145deg, rgba(255,79,191,.72), rgba(180,109,255,.64) 48%, rgba(79,102,255,.78)) border-box;
  box-shadow: -8px 18px 44px -34px rgba(255,79,191,.48), 10px 22px 48px -34px rgba(79,102,255,.58);
  font-size: 13px;
}

.lb-notification-card {
  background:
    linear-gradient(rgba(10,9,16,.97), rgba(10,9,16,.97)) padding-box,
    linear-gradient(145deg, rgba(255,79,191,.62), rgba(180,109,255,.56) 42%, rgba(79,102,255,.68) 74%, rgba(0,224,211,.46)) border-box;
}

.lb-notification-card > header { display: flex; justify-content: space-between; align-items: center; font-size: 18px; }
.lb-notification-card > header span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 9px; }
.lb-notification-filters { display: flex; gap: 7px; margin: 16px 0; }
.lb-notification-filters > * { display: grid; min-width: 38px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; font-style: normal; }
.lb-notification-filters b { border-color: var(--design-purple); box-shadow: -4px 0 12px rgba(255,79,191,.24), 4px 0 12px rgba(79,102,255,.26); }
.lb-notification-heading { padding: 11px; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; color: var(--design-muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.lb-notification-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 9px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 13px;
  background:
    linear-gradient(rgba(10,9,16,.94), rgba(10,9,16,.94)) padding-box,
    linear-gradient(135deg, rgba(255,79,191,.7), rgba(180,109,255,.52) 48%, rgba(79,102,255,.65) 78%, rgba(0,224,211,.44)) border-box;
}

.lb-notification-item > img { width: 38px; height: 38px; border: 1px solid var(--design-blue); border-radius: 50%; box-shadow: 0 0 10px rgba(79,102,255,.42); object-fit: cover; }
.lb-notification-item p { display: grid; margin: 0; }
.lb-notification-item p b { color: var(--design-pink); }
.lb-notification-item p small { color: var(--design-muted); }
.lb-notification-item > div { grid-column: 1 / -1; display: flex; gap: 8px; align-items: center; }
.lb-notification-item > div > * { padding: 7px 13px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; font-style: normal; font-weight: 600; }
.lb-notification-item > div span { border: 0; background: linear-gradient(100deg, var(--design-pink), var(--design-purple) 42%, var(--design-blue) 72%, var(--design-teal)); }
.lb-notification-item > div i { margin-left: auto; padding: 0; border: 0; color: var(--design-teal); }
.lb-notification-item--muted { opacity: .42; }

.lb-decision-card > p { margin: 0 0 20px; font-weight: 600; }
.lb-decision-card > header { display: grid; grid-template-columns: 44px 1fr auto; gap: 9px; align-items: center; }
.lb-decision-card > header img { width: 44px; height: 44px; border: 2px solid var(--design-blue); border-radius: 50%; box-shadow: 0 0 12px rgba(79,102,255,.46); object-fit: cover; }
.lb-decision-card > header span { display: grid; }
.lb-decision-card > header small { color: var(--design-muted); }
.lb-decision-card blockquote { display: grid; gap: 7px; margin: 18px 0; padding: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; }
.lb-decision-card blockquote small { color: var(--design-muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.lb-decision-actions { display: grid; gap: 8px; }
.lb-decision-actions > * { padding: 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; font-style: normal; font-weight: 600; text-align: center; }
.lb-decision-actions span { border: 0; background: linear-gradient(100deg, var(--design-pink), var(--design-purple) 42%, var(--design-blue) 72%, var(--design-teal)); box-shadow: -8px 8px 24px -14px rgba(255,79,191,.7), 8px 8px 24px -14px rgba(0,224,211,.62); }
.lb-decision-card footer { margin-top: 14px; color: var(--design-muted); font-size: 11px; text-align: center; }

.lb-accepted-card { align-self: center; }
.lb-accepted-card > strong { white-space: nowrap; }
.lb-accepted-card em { color: var(--design-teal); border-color: rgba(0,224,211,.45); }

.lb-accept-line {
  margin: clamp(80px, 10vw, 140px) 0 0;
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.lb-accept-line strong { color: #FFB2E6; text-shadow: 0 0 46px rgba(255,79,191,.4); }

.lb-match-intro {
  display: grid;
  justify-items: center;
}

.lb-match-intro > p {
  margin: 0 0 66px;
  padding: 9px 18px;
  border: 1px solid rgba(0,224,211,.46);
  border-radius: 999px;
  color: var(--design-teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lb-match-card {
  width: min(480px, 100%);
  padding: clamp(30px, 4vw, 44px);
  border: 2px solid transparent;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 30%, rgba(176,108,255,.08), transparent 58%) padding-box,
    linear-gradient(rgba(20,18,32,.94), rgba(20,18,32,.94)) padding-box,
    linear-gradient(135deg, #FF5DA2, #B06CFF 50%, #6F8CFF) border-box;
  box-shadow: -18px 24px 56px -38px rgba(255,93,162,.58), 20px 28px 64px -36px rgba(111,140,255,.74);
  text-align: center;
}

.lb-match-people { display: flex; align-items: center; justify-content: center; gap: 26px; }
.lb-match-people figure { display: grid; gap: 7px; justify-items: center; margin: 0; font-weight: 600; }
.lb-match-people img { width: 82px; height: 82px; border: 2px solid transparent; border-radius: 50%; object-fit: cover; object-position: 50% 22%; }
.lb-match-people figure:first-child img { border-color: var(--design-blue); box-shadow: 0 0 18px rgba(111,140,255,.48); }
.lb-match-people figure:last-child img { border-color: var(--design-pink); box-shadow: 0 0 18px rgba(255,93,162,.48); }
.lb-match-people span { font-size: 34px; }
.lb-match-card h2 { margin: 24px 0 14px; font-size: clamp(42px, 5vw, 64px); }
.lb-match-card > p { margin: 0 auto; max-width: 350px; color: var(--design-muted); }
.lb-match-card__cta { display: block; margin-top: 24px; padding: 13px 18px; border-radius: 999px; background: linear-gradient(100deg, var(--design-pink) 0 24%, var(--design-purple) 48%, var(--design-blue) 72% 100%); box-shadow: -10px 14px 34px -18px rgba(255,93,162,.68), 10px 14px 34px -18px rgba(111,140,255,.78); font-weight: 700; }

.lb-private-room-story {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 440px);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  margin-top: clamp(110px, 12vw, 170px);
}

.lb-private-room-copy h3 {
  margin: 0;
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: .98;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.lb-private-room-copy h3 strong { background: linear-gradient(96deg, #FFB2E6, #FF5DA2 42%, #6F8CFF); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lb-dead-questions { display: flex; flex-wrap: wrap; gap: 12px; margin: 48px 0; }
.lb-dead-questions s { padding: 7px 14px; border: 1px solid rgba(176,108,255,.22); border-radius: 9px; color: rgba(244,242,248,.2); text-decoration-color: var(--design-pink); }
.lb-private-room-copy > p { color: var(--design-muted); font-size: clamp(18px, 2vw, 28px); line-height: 1.5; }
.lb-private-room-copy hr { margin: 64px 0; border: 0; border-top: 1px solid rgba(255,255,255,.1); }
.lb-seven-days > strong { display: block; font-size: clamp(76px, 10vw, 138px); font-weight: 500; line-height: .9; text-transform: uppercase; }
.lb-seven-days h4 { font-size: clamp(28px, 3.2vw, 44px); line-height: 1.1; text-transform: uppercase; }
.lb-seven-days h4 b { color: var(--design-pink); }
.lb-seven-days p { color: var(--design-muted); font-size: clamp(17px, 1.8vw, 24px); line-height: 1.45; }

.lb-room-phone {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: #08070d;
  box-shadow: 0 45px 100px -45px #000, 0 0 60px rgba(255,93,162,.12);
  font-size: 12px;
}

.lb-room-phone > header {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: start;
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.lb-room-phone > header > span { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.lb-room-phone > header > p { grid-column: 1 / -1; margin: 4px 0 0; color: var(--design-muted); text-align: center; }
.lb-room-pair { display: flex; align-items: center; justify-content: center; gap: 13px; }
.lb-room-pair figure { display: grid; gap: 4px; justify-items: center; margin: 0; font-size: 10px; font-weight: 600; }
.lb-room-pair img { width: 44px; height: 44px; border: 2px solid; border-radius: 50%; object-fit: cover; object-position: 50% 20%; }
.lb-room-pair figure:first-of-type img { border-color: var(--design-blue); box-shadow: 0 0 12px rgba(111,140,255,.48); }
.lb-room-pair figure:last-of-type img { border-color: var(--design-pink); box-shadow: 0 0 12px rgba(255,93,162,.44); }

.lb-room-timer { padding: 8px; border: 1px solid var(--design-pink); border-radius: 12px; text-align: center; box-shadow: inset 0 0 16px rgba(255,93,162,.18); }
.lb-room-timer small { color: var(--design-muted); letter-spacing: .18em; text-transform: uppercase; }
.lb-room-timer p { margin: 4px 0 0; color: var(--design-muted); text-transform: uppercase; }
.lb-room-timer b { color: var(--design-pink); font-size: 18px; }
.lb-room-timer b:nth-of-type(2) { color: var(--design-blue); }
.lb-room-timer b:nth-of-type(3) { color: var(--design-purple); }
.lb-room-timer b:nth-of-type(4) { color: var(--design-teal); }

.lb-room-body {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 610px;
  padding: 18px 14px;
  overflow: hidden;
  background: #08070D;
}

.lb-room-body > :not(.lb-room-portrait-bg) {
  position: relative;
  z-index: 1;
}

.lb-room-portrait-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.lb-room-portrait-bg__person {
  position: absolute;
  top: 0;
  width: 54%;
  height: 100%;
  object-fit: cover;
  opacity: .58;
  filter: blur(1px) saturate(.98);
  will-change: transform;
}

.lb-room-portrait-bg__person--jake {
  left: -5%;
  object-position: 55% 20%;
  -webkit-mask-image: linear-gradient(100deg, rgba(0,0,0,.98) 25%, rgba(0,0,0,0) 86%);
  mask-image: linear-gradient(100deg, rgba(0,0,0,.98) 25%, rgba(0,0,0,0) 86%);
  animation: lb-room-drift-jake 12s ease-in-out infinite alternate;
}

.lb-room-portrait-bg__person--kelly {
  right: -5%;
  object-position: 50% 28%;
  -webkit-mask-image: linear-gradient(260deg, rgba(0,0,0,.98) 25%, rgba(0,0,0,0) 86%);
  mask-image: linear-gradient(260deg, rgba(0,0,0,.98) 25%, rgba(0,0,0,0) 86%);
  animation: lb-room-drift-kelly 14s ease-in-out infinite alternate;
}

.lb-room-portrait-bg__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 15%, rgba(255,93,162,.1), transparent 45%),
    radial-gradient(circle at 78% 82%, rgba(0,224,211,.07), transparent 45%),
    linear-gradient(180deg, rgba(8,7,13,.46), rgba(8,7,13,.66));
}

.lb-room-float {
  position: absolute;
  z-index: 1;
  opacity: 0;
  color: var(--design-pink);
  text-shadow: 0 0 12px rgba(255,93,162,.75);
  animation: lb-room-float 6s ease-in-out infinite;
}

.lb-room-float--heart-one { left: 13%; bottom: 18%; font-size: 12px; animation-delay: .4s; }
.lb-room-float--heart-two { right: 16%; bottom: 34%; font-size: 9px; animation-delay: 3.1s; }
.lb-room-float--spark-one { left: 31%; bottom: 8%; color: var(--design-purple); animation-delay: 1.8s; }
.lb-room-float--spark-two { right: 28%; bottom: 10%; color: var(--design-teal); animation-delay: 4.2s; }

.lb-design-section--match.is-revealed .lb-room-pair > b {
  animation: lb-room-heart-pulse 2.4s ease-in-out infinite;
}

.lb-design-section--match.is-revealed .lb-room-message {
  animation: lb-room-message-in .5s cubic-bezier(.2,.8,.2,1) .45s both;
}

.lb-luna-note { display: flex; gap: 10px; padding: 12px; border: 1px solid transparent; border-radius: 16px; background: linear-gradient(rgba(20,18,32,.72), rgba(20,18,32,.72)) padding-box, linear-gradient(135deg, var(--design-pink-soft), var(--design-teal)) border-box; }
.lb-luna-note img { width: 36px; height: 36px; border: 1px solid var(--design-purple); border-radius: 50%; object-fit: cover; }
.lb-luna-note p { margin: 0; color: rgba(247,244,255,.8); line-height: 1.45; }
.lb-build-up { padding: 15px; border: 1px solid transparent; border-radius: 18px; background: linear-gradient(135deg, rgba(255,93,162,.2), rgba(111,140,255,.18)) padding-box, linear-gradient(rgba(20,18,32,.72), rgba(20,18,32,.72)) padding-box, linear-gradient(135deg, rgba(255,93,162,.72), rgba(176,108,255,.64) 52%, rgba(111,140,255,.78)) border-box; backdrop-filter: blur(8px); }
.lb-build-up > small { display: block; color: var(--design-pink-soft); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.lb-build-up > strong { display: block; margin: 3px 0 12px; }
.lb-build-up > div { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.lb-build-up > div span { display: grid; justify-items: center; padding: 7px 3px; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; background: rgba(255,255,255,.04); }
.lb-build-up > div b { font-size: 15px; }
.lb-build-up > div small { color: var(--design-muted); font-size: 9px; }
.lb-build-up > p { margin: 10px 0 0; color: var(--design-muted); }
.lb-room-day { display: flex; align-items: center; gap: 10px; color: var(--design-faint); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.lb-room-day span { flex: 1; height: 1px; background: rgba(255,255,255,.08); }
.lb-room-event { margin: 0; color: var(--design-muted); text-align: center; }
.lb-room-event time { margin-left: 8px; color: var(--design-faint); }
.lb-room-message { align-self: end; margin: auto 0 0 auto; max-width: 82%; padding: 11px 15px; border: 1px solid rgba(176,108,255,.48); border-radius: 18px 18px 4px 18px; background: linear-gradient(135deg, rgba(255,93,162,.52), rgba(176,108,255,.42) 50%, rgba(111,140,255,.38)); }
.lb-room-message time { display: block; margin-top: 4px; color: var(--design-muted); font-size: 10px; text-align: right; }

@keyframes lb-room-drift-jake {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(1.5%, -1%, 0); }
}

@keyframes lb-room-drift-kelly {
  from { transform: scale(1.04) translate3d(0, -1%, 0); }
  to { transform: scale(1.075) translate3d(-1.5%, 1%, 0); }
}

@keyframes lb-room-heart-pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,93,162,0)); }
  45% { transform: scale(1.14); filter: drop-shadow(0 0 8px rgba(255,93,162,.65)); }
}

@keyframes lb-room-message-in {
  from { opacity: 0; transform: translate3d(12px, 10px, 0) scale(.97); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes lb-room-float {
  0% { opacity: 0; transform: translate3d(0, 8px, 0) scale(.8) rotate(-8deg); }
  24% { opacity: .6; }
  70% { opacity: .25; }
  100% { opacity: 0; transform: translate3d(5px, -58px, 0) scale(1.12) rotate(9deg); }
}

.lb-room-phone > footer { display: grid; grid-template-columns: 32px 32px 1fr 36px; gap: 7px; align-items: center; padding: 12px 10px; border-top: 1px solid rgba(255,255,255,.08); }
.lb-room-phone > footer > span { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.06); }
.lb-room-phone > footer > p { margin: 0; padding: 9px 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; color: var(--design-faint); }
.lb-room-phone > footer > b { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--design-pink), var(--design-blue)); }
.lb-room-phone > footer > small { grid-column: 1 / -1; color: var(--design-muted); }

.lb-outcomes {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  margin-top: clamp(100px, 12vw, 170px);
  padding-top: clamp(50px, 7vw, 90px);
  border-top: 1px solid rgba(255,255,255,.1);
}

.lb-outcomes > div { display: grid; gap: 16px; }
.lb-outcomes > div:last-child { justify-items: end; }
.lb-outcomes small { color: var(--design-faint); font-size: clamp(12px, 1.3vw, 18px); font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.lb-outcomes strong { font-size: clamp(42px, 5vw, 70px); line-height: 1; text-transform: uppercase; }
.lb-outcomes > div:last-child strong { color: var(--design-teal); }
.lb-outcomes > span { width: 92px; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.15), var(--design-teal)); }

.lb-leave-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 78px 0 0;
  font-size: clamp(25px, 3vw, 40px);
}

.lb-leave-line span { min-width: 230px; padding: 11px 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; background: #161422; color: #ff8fa8; font-size: 14px; }

@keyframes lb-mosaic-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -8px, 0); }
}

.lb-feed-note { animation: lb-mosaic-drift 3.8s ease-in-out infinite alternate; }
.lb-feed-note--crush { animation-delay: -1.2s; }
.lb-feed-note--reply { animation-delay: -2.2s; }

@media (max-width: 900px) {
  .lb-conversation-flow,
  .lb-decision-flow { grid-template-columns: 1fr 1fr; }
  .lb-crush-receipt,
  .lb-accepted-card { grid-column: 1 / -1; width: min(420px, 100%); justify-self: center; }
  .lb-private-room-story { grid-template-columns: 1fr; }
  .lb-private-room-copy { max-width: 720px; }
  .lb-room-phone { width: min(440px, 100%); justify-self: center; }
}

@media (max-width: 680px) {
  .lb-nav__container { height: 64px; padding-inline: 16px; }
  .lb-nav__logo { width: 118px; height: auto; }
  .lb-nav__actions { gap: 8px; }
  .lb-nav__link { padding-inline: 3px; font-size: 12px; }
  .lb-nav__cta,
  .signup-button { min-height: 36px; padding-inline: 12px; font-size: 12px; }

  .lb-design-section { padding-block: 72px; }
  .lb-design-shell { width: min(100% - 28px, 1200px); }
  .lb-context-block strong { font-size: clamp(37px, 12.5vw, 70px); }
  .lb-context-block em { font-size: clamp(18px, 6vw, 32px); }
  .lb-context-block--offset { margin-left: 0; }
  .lb-together { font-size: clamp(32px, 10.5vw, 58px); }
  .lb-philosophy { display: grid; justify-items: center; text-align: center; }
  .lb-philosophy i { display: none; }

  .lb-deadline-title { font-size: clamp(38px, 11vw, 64px); }
  .lb-choice-line { grid-template-columns: 1fr; justify-items: start; padding-block: 42px; }
  .lb-choice-line span,
  .lb-choice-line small { display: none; }
  .lb-choice-line b { text-align: left; }
  .lb-crush-origin-title strong { padding-inline: 5px; }

  .lb-story-panel { padding: 20px 14px; border-radius: 18px; }
  .lb-conversation-flow,
  .lb-decision-flow { grid-template-columns: 1fr; }
  .lb-mini-post { width: min(340px, 90%); }
  .lb-mini-post--jake { justify-self: start; }
  .lb-mini-post--kelly { justify-self: end; transform: translateY(0) rotate(1.5deg); }
  .lb-crush-receipt,
  .lb-accepted-card { grid-column: auto; }

  .lb-meaning-title { font-size: clamp(38px, 11vw, 62px); }
  .lb-meaning-title br { display: none; }
  .lb-romantic-signal { font-size: clamp(32px, 9.5vw, 54px); }
  .lb-signal-explainer br { display: none; }

  .lb-match-people { gap: 14px; }
  .lb-match-people img { width: 68px; height: 68px; }
  .lb-private-room-story { gap: 70px; }
  .lb-private-room-copy h3 { font-size: clamp(40px, 12vw, 64px); }
  .lb-seven-days > strong { font-size: clamp(70px, 22vw, 116px); }
  .lb-outcomes { grid-template-columns: 1fr; }
  .lb-outcomes > span { display: none; }
  .lb-outcomes > div:last-child { justify-items: start; }
}

@media (max-width: 430px) {
  .lb-design-section--hero { padding-top: 58px; }
  .lb-design-kicker { letter-spacing: .16em; white-space: nowrap; }
  .lb-design-intro { margin-top: 34px; }
  .lb-context-headline { margin-top: 58px; }
  .lb-context-block strong { font-size: clamp(34px, 11.4vw, 50px); }
  .lb-context-block em { font-size: clamp(17px, 5.7vw, 25px); }
  .lb-together { margin-top: 74px; font-size: clamp(31px, 10vw, 44px); }

  .lb-mosaic-shell { width: calc(100% - 20px); }
  .lb-feed-mosaic { aspect-ratio: 4 / 5; }
  .lb-post-card { font-size: 1.9cqw; width: 37%; padding: 1.8cqw; }
  .lb-post-head img { width: 5.2cqw; height: 5.2cqw; }
  .lb-post-head strong { font-size: 1.55cqw; }
  .lb-post-head small,
  .lb-post-tags span,
  .lb-reactions span,
  .lb-post-card footer span { font-size: 1.15cqw; }
  .lb-post-card--janie { top: 5%; left: 5%; }
  .lb-post-card--jake { top: 4%; left: 32%; width: 40%; }
  .lb-post-card--kendra { top: 5%; right: 2%; }
  .lb-post-card--franky { bottom: 5%; left: 3%; }
  .lb-post-card--kelly { right: 3%; bottom: 4%; }
  .lb-feed-note { font-size: 1.6cqw; }
  .lb-feed-note--poke { top: 39%; }
  .lb-feed-note--crush { top: 50%; }
  .lb-feed-note--reply { left: 24%; bottom: 34%; }
  .lb-feed-note--saved { left: 38%; bottom: 21%; }

  .lb-build-list { margin-left: 28px; }
  .lb-build-list li { padding-left: 20px; }
  .lb-build-list li::before { left: -27px; width: 18px; }
  .lb-interest-signal { padding: 34px 14px; font-size: clamp(31px, 9.4vw, 42px); }
  .lb-notification-card,
  .lb-decision-card { padding: 14px; }
  .lb-accept-line br { display: none; }

  .lb-room-phone { font-size: 10px; }
  .lb-room-pair { gap: 7px; }
  .lb-room-pair img { width: 38px; height: 38px; }
  .lb-room-body { min-height: 560px; }
  .lb-build-up > div { grid-template-columns: repeat(3, 1fr); }
  .lb-room-phone > footer { grid-template-columns: 28px 28px 1fr 32px; }
  .lb-room-phone > footer > span { width: 28px; height: 28px; }
  .lb-room-phone > footer > b { width: 32px; height: 32px; }
  .lb-leave-line { align-items: stretch; flex-direction: column; }
}

@media (max-width: 340px) {
  .lb-nav__logo { width: 100px; }
  .lb-nav__link { font-size: 11px; }
  .lb-nav__cta,
  .signup-button { padding-inline: 9px; font-size: 11px; }
  .lb-design-shell { width: calc(100% - 22px); }
  .lb-design-kicker { font-size: 10px; }
  .lb-context-block strong { font-size: 33px; }
  .lb-context-block em { font-size: 17px; }
  .lb-together { font-size: 30px; }
  .lb-deadline-title,
  .lb-meaning-title { font-size: 35px; }
  .lb-match-card { padding-inline: 18px; }
  .lb-match-people img { width: 58px; height: 58px; }
  .lb-room-phone > header { padding-inline: 8px; }
  .lb-room-pair figure { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .lb-design-section { opacity: 1; transform: none; transition: none; }
  .lb-feed-note { animation: none; }
  .lb-room-portrait-bg__person,
  .lb-room-float,
  .lb-design-section--match.is-revealed .lb-room-pair > b,
  .lb-design-section--match.is-revealed .lb-room-message { animation: none; }
}

/* ============================================================
   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%);
  }
}
