/* =========================================================
   LOYALTY CHIPS — Luxury V2
   Slate + ivory + deep navy. Aurora lighting. Glass surfaces.
   Loaded after styles.css — overrides selectively.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---------- Tokens ---------- */
.theme-white-slate,
.theme-dark-app,
body {
  --lx-ink:        #0A1530;
  --lx-ink-2:      #1A2647;
  --lx-slate:      #475572;
  --lx-slate-2:    #6B7891;
  --lx-mist:       #94A2BB;
  --lx-line:       rgba(15, 27, 56, .08);
  --lx-line-2:     rgba(15, 27, 56, .14);
  --lx-line-soft:  rgba(15, 27, 56, .05);

  --lx-cream:      #F8F5EE;
  --lx-paper:      #FAFBFC;
  --lx-mist-bg:    #F1F4F9;

  --lx-blue:       #1E3A8A;
  --lx-blue-2:     #2A4FB7;
  --lx-blue-3:     #3D6FE0;
  --lx-aurora-1:   rgba(61, 111, 224, .26);
  --lx-aurora-2:   rgba(120, 167, 255, .22);
  --lx-aurora-3:   rgba(199, 168, 105, .14);

  --lx-gold:       #C7A869;
  --lx-gold-soft:  #E5D4A4;

  --lx-radius-sm:  10px;
  --lx-radius:     16px;
  --lx-radius-lg:  22px;
  --lx-radius-xl:  28px;

  --lx-shadow-1:   0 1px 2px rgba(10, 21, 48, .04), 0 1px 1px rgba(10, 21, 48, .03);
  --lx-shadow-2:   0 12px 32px -12px rgba(10, 21, 48, .12), 0 4px 12px -4px rgba(10, 21, 48, .06);
  --lx-shadow-3:   0 32px 64px -24px rgba(10, 21, 48, .22), 0 12px 24px -8px rgba(10, 21, 48, .08);
  --lx-shadow-glow:0 30px 80px -20px rgba(61, 111, 224, .35), 0 12px 32px -8px rgba(10, 21, 48, .18);

  --lx-ease:       cubic-bezier(.2, .7, .2, 1);
  --lx-ease-out:   cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Public site (white-slate) base ---------- */
.theme-white-slate {
  background: var(--lx-paper);
  color: var(--lx-slate);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01' on, 'cv11' on;
}

.theme-white-slate h1,
.theme-white-slate h2,
.theme-white-slate h3,
.theme-white-slate h4,
.theme-white-slate h5 {
  font-family: 'Fraunces', 'Outfit', Georgia, serif;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--lx-ink);
  font-feature-settings: 'ss01' on, 'ss02' on;
}

.theme-white-slate h1 {
  font-size: clamp(46px, 6.4vw, 88px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500;
  max-width: none;
}

.theme-white-slate h2 {
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -.028em;
  font-weight: 500;
}

.theme-white-slate h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.12;
  letter-spacing: -.018em;
  font-weight: 500;
}

.theme-white-slate p,
.theme-white-slate .muted,
.theme-white-slate .lede,
.theme-white-slate .sub {
  color: var(--lx-slate);
  font-family: 'Inter', system-ui, sans-serif;
}

.theme-white-slate .lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--lx-slate);
  max-width: 56ch;
}

.theme-white-slate .accent {
  color: var(--lx-ink);
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-weight: 400;
}

.theme-white-slate .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lx-slate-2);
  font-weight: 600;
}

/* ---------- Aurora lighting ---------- */
.lx-aurora {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.lx-aurora::before,
.lx-aurora::after {
  content: '';
  position: absolute;
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
  opacity: .9;
  border-radius: 50%;
  will-change: transform;
}

.lx-aurora::before {
  width: 70vw;
  height: 70vw;
  max-width: 1200px;
  max-height: 1200px;
  top: -22%;
  left: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(closest-side, var(--lx-aurora-1), transparent 75%),
    radial-gradient(closest-side at 30% 60%, var(--lx-aurora-3), transparent 70%);
  animation: lx-drift 38s ease-in-out infinite alternate;
}

.lx-aurora::after {
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  top: -10%;
  right: -15%;
  background: radial-gradient(closest-side, var(--lx-aurora-2), transparent 70%);
  animation: lx-drift-2 46s ease-in-out infinite alternate;
}

@keyframes lx-drift {
  0%   { transform: translate(-50%, 0) scale(1); }
  100% { transform: translate(-46%, 4%) scale(1.08); }
}
@keyframes lx-drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-4%, 6%) scale(1.12); }
}

/* Spotlight that follows the cursor */
.lx-spotlight {
  position: relative;
  isolation: isolate;
}
.lx-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    600px circle at var(--lx-mx, 50%) var(--lx-my, 0%),
    rgba(61, 111, 224, .14),
    transparent 60%
  );
  transition: background .2s var(--lx-ease);
  pointer-events: none;
}

.lc-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .42s var(--lx-ease), transform .48s var(--lx-ease-out);
}

.lc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle grid + grain overlay */
.lx-grid-bg {
  background-image:
    linear-gradient(var(--lx-line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--lx-line-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: 50% 0;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 70%);
}

.lx-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .04 0 0 0 0 .08 0 0 0 0 .18 0 0 0 .55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.5'/></svg>");
  opacity: .35;
  mix-blend-mode: multiply;
  z-index: 0;
}

/* ---------- Buttons ---------- */
.theme-white-slate .btn,
.theme-dark-app .btn {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: -.005em;
  border-radius: var(--lx-radius-sm);
  transition: transform .25s var(--lx-ease), box-shadow .25s var(--lx-ease), background .25s var(--lx-ease), border-color .25s var(--lx-ease), color .25s var(--lx-ease);
  border-width: 1px;
  border-style: solid;
}

.theme-white-slate .btn-primary {
  background: linear-gradient(180deg, var(--lx-ink-2) 0%, var(--lx-ink) 100%);
  color: var(--lx-cream);
  border-color: var(--lx-ink);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 8px 24px -10px rgba(10, 21, 48, .35);
}
.theme-white-slate .btn-primary:hover {
  background: linear-gradient(180deg, #243363 0%, #15224A 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 14px 32px -10px rgba(10, 21, 48, .45);
  transform: translateY(-1px);
}

.theme-white-slate .btn-ghost {
  background: rgba(255,255,255,.6);
  border: 1px solid var(--lx-line-2);
  color: var(--lx-ink);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.theme-white-slate .btn-ghost:hover {
  background: #fff;
  border-color: var(--lx-ink);
  transform: translateY(-1px);
  box-shadow: var(--lx-shadow-2);
}

/* ---------- Nav ---------- */
.theme-white-slate .nav {
  background: rgba(250, 251, 252, .72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--lx-line);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset;
}

.theme-white-slate .nav-inner {
  padding-top: 18px;
  padding-bottom: 18px;
}

.theme-white-slate .nav-links a {
  color: var(--lx-slate);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.005em;
  position: relative;
}
.theme-white-slate .nav-links a:hover {
  color: var(--lx-ink);
}
.theme-white-slate .nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--lx-ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--lx-ease);
}
.theme-white-slate .nav-links a:hover::after { transform: scaleX(.6); }

/* ---------- Pill / Chip ---------- */
.theme-white-slate .pill,
.theme-white-slate .badge {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--lx-line-2);
  color: var(--lx-ink);
  border-radius: 999px;
  padding: 6px 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.theme-white-slate .pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--lx-blue-3);
  box-shadow: 0 0 0 3px rgba(61, 111, 224, .15);
  animation: lx-pulse 2.4s ease-in-out infinite;
}

@keyframes lx-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(.85); }
}

/* ---------- Hero (luxury) ---------- */
.lx-hero {
  position: relative;
  padding: clamp(64px, 9vw, 140px) 0 clamp(72px, 10vw, 160px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(250, 251, 252, .9) 0%, rgba(247, 249, 253, .72) 48%, rgba(250, 251, 252, .95) 100%);
}

.lx-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.lc-hero-breaklight {
  position: absolute;
  inset: -18% -10% -8%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: .98;
}

.lc-hero-breaklight::before {
  content: '';
  position: absolute;
  left: -8%;
  right: -8%;
  top: -7%;
  height: 42%;
  background:
    linear-gradient(180deg, rgba(234, 241, 250, .98) 0%, rgba(213, 224, 241, .78) 54%, transparent 100%),
    radial-gradient(ellipse 90% 58% at 45% 10%, rgba(255,255,255,.95) 0%, rgba(211, 224, 241, .72) 48%, transparent 72%),
    radial-gradient(ellipse 64% 48% at 78% 24%, rgba(255,255,255,.72) 0%, rgba(156, 176, 205, .3) 55%, transparent 78%);
  filter: blur(20px);
  transform: translateY(-2%);
  mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
}

.lc-hero-breaklight::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,21,48,.08) 0%, transparent 18%, transparent 80%, rgba(10,21,48,.08) 100%),
    linear-gradient(180deg, transparent 0%, transparent 64%, rgba(250,251,252,.72) 94%);
}

.lc-light-cloud {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 2%;
  height: 23%;
  background:
    linear-gradient(105deg, transparent 0%, rgba(10,21,48,.08) 24%, transparent 44%, rgba(255,255,255,.46) 62%, transparent 84%),
    linear-gradient(170deg, rgba(255,255,255,.7), rgba(203, 214, 232, .32), transparent 76%);
  filter: blur(18px);
  opacity: .56;
  transform: skewY(-2deg);
}

.lc-light-cloud-b {
  left: -2%;
  right: 28%;
  top: 8%;
  height: 18%;
  opacity: .38;
  transform: skewY(3deg) translateX(-4%);
}

.lc-light-shaft {
  position: absolute;
  top: 3%;
  height: 104%;
  width: min(46vw, 640px);
  transform-origin: 50% 0;
  clip-path: polygon(42% 0, 60% 0, 100% 100%, 8% 100%);
  background:
    linear-gradient(90deg, transparent 0%, rgba(10,21,48,.04) 15%, rgba(255,255,255,.66) 48%, rgba(199,168,105,.18) 58%, rgba(10,21,48,.035) 76%, transparent 100%),
    linear-gradient(180deg, rgba(255,255,255,.8) 0%, rgba(204,219,245,.38) 28%, rgba(199,168,105,.14) 52%, transparent 86%);
  filter: blur(12px);
  mix-blend-mode: screen;
  opacity: .68;
  animation: lc-breaklight-drift 16s ease-in-out infinite alternate;
}

.lc-light-shaft-a {
  left: 30%;
  transform: rotate(-12deg);
}

.lc-light-shaft-b {
  left: 52%;
  width: min(38vw, 520px);
  opacity: .5;
  transform: rotate(9deg);
  animation-duration: 19s;
}

.lc-light-shaft-c {
  left: 2%;
  top: 10%;
  width: min(34vw, 420px);
  opacity: .3;
  transform: rotate(-22deg);
  animation-duration: 23s;
}

@keyframes lc-breaklight-drift {
  0%   { translate: -1.2% 0; opacity: .42; }
  100% { translate: 1.4% 2%; opacity: .64; }
}

.lx-hero-copy { max-width: 640px; }

.lx-hero-copy .pill { margin-bottom: 22px; }

.lx-hero-title {
  margin: 0 0 24px;
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 6.6vw, 96px);
  line-height: .96;
  letter-spacing: -.038em;
  color: var(--lx-ink);
  font-weight: 500;
}

.lx-hero-title .lx-italic {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--lx-ink) 0%, var(--lx-blue-2) 50%, var(--lx-ink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lx-hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--lx-slate);
  max-width: 540px;
  margin: 0 0 14px;
}

.lx-hero-points {
  display: grid;
  gap: 8px;
  margin: 18px 0 28px;
  font-size: 16px;
  color: var(--lx-slate);
  line-height: 1.5;
}

.lx-hero-points span {
  display: block;
  color: var(--lx-ink);
  font-weight: 500;
}

.lx-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}

.lx-hero-cta .btn { padding: 14px 22px; min-height: 50px; font-size: 15px; }

.lx-hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--lx-slate-2);
  align-items: center;
}

.lx-hero-trust span { display: inline-flex; align-items: center; gap: 8px; }

.lx-hero-trust span::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--lx-mist);
}

/* Hero visual — floating product on glass plinth */
.lx-hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lx-hero-stage {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--lx-radius-xl);
  background:
    radial-gradient(140% 100% at 50% 0%, rgba(255,255,255,.9) 0%, rgba(241, 244, 249, .9) 60%, rgba(225, 232, 244, .8) 100%);
  border: 1px solid var(--lx-line);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -40px 80px -40px rgba(10, 21, 48, .08),
    var(--lx-shadow-3);
  overflow: hidden;
  isolation: isolate;
}

.lx-hero-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 30% at 30% 22%, rgba(255,255,255,.9), transparent 60%),
    radial-gradient(50% 40% at 75% 80%, rgba(61, 111, 224, .12), transparent 70%);
  pointer-events: none;
}

.lx-hero-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(118deg, rgba(255,255,255,.46) 0%, rgba(255,255,255,.28) 20%, transparent 42%),
    radial-gradient(ellipse 58% 28% at 58% 68%, rgba(255,255,255,.34) 0%, rgba(199,168,105,.12) 52%, transparent 76%);
  mix-blend-mode: screen;
}

.lx-hero-stage img {
  position: absolute;
  z-index: 0;
  inset: 4% 4% 18% 4%;
  width: 92%;
  height: 78%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 30px 40px rgba(10, 21, 48, .18)) drop-shadow(0 8px 16px rgba(10, 21, 48, .1));
}

.lx-hero-stage .lx-hero-tags {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 18px;
  z-index: 2;
}

.lx-hero-stage .lx-hero-tags span {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lx-slate);
  background: rgba(255,255,255,.85);
  border: 1px solid var(--lx-line);
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-weight: 500;
}

/* ---------- Section heads ---------- */
.theme-white-slate section { padding: clamp(72px, 9vw, 140px) 0; }

.lx-section-head {
  max-width: 740px;
  margin: 0 auto clamp(40px, 6vw, 72px);
  text-align: center;
}

.lx-section-head .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
}

.lx-section-head h2 {
  margin: 0 0 18px;
}

.lx-section-head .lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Cards ---------- */
.lx-card {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #FAFBFD 100%);
  border: 1px solid var(--lx-line);
  border-radius: var(--lx-radius-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: transform .35s var(--lx-ease), box-shadow .35s var(--lx-ease), border-color .35s var(--lx-ease);
  isolation: isolate;
  overflow: hidden;
}

.lx-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    400px circle at var(--lx-mx, 50%) var(--lx-my, 0%),
    rgba(61, 111, 224, .08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .4s var(--lx-ease);
}

.lx-card:hover {
  transform: translateY(-4px);
  border-color: var(--lx-line-2);
  box-shadow: var(--lx-shadow-3);
}
.lx-card:hover::before { opacity: 1; }

.lx-card.is-highlight {
  border-color: var(--lx-ink);
  box-shadow: var(--lx-shadow-glow);
  background:
    linear-gradient(180deg, #fff 0%, #FAFBFD 100%),
    radial-gradient(80% 60% at 50% 0%, rgba(61, 111, 224, .12), transparent 60%);
}

/* ---------- Product grid (luxury) ---------- */
.lx-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

@media (min-width: 960px) {
  .lx-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.lx-product {
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (min-width: 720px) {
  .lx-product { min-height: 420px; }
}

.lx-product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: -36px -36px 24px;
  border-bottom: 1px solid var(--lx-line);
  background:
    radial-gradient(80% 60% at 50% 30%, rgba(255,255,255,1) 0%, var(--lx-mist-bg) 100%);
  overflow: hidden;
  border-radius: var(--lx-radius-lg) var(--lx-radius-lg) 0 0;
}

.lx-product-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 35% at 50% 100%, rgba(10, 21, 48, .12), transparent 70%);
  pointer-events: none;
}

.lx-product-media img {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(10, 21, 48, .16));
  transition: transform .6s var(--lx-ease-out);
}
.lx-product:hover .lx-product-media img { transform: scale(1.04) translateY(-2px); }

.lc-product-media-photo picture,
.lc-product-media-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.lc-product-media-photo img {
  object-fit: cover;
  object-position: 50% 58%;
  filter: saturate(.94) contrast(1.03);
}
.lc-product-media-photo::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,.24), transparent 38%),
    radial-gradient(60% 42% at 50% 100%, rgba(10, 21, 48, .16), transparent 70%);
}
.lx-product:hover .lc-product-media-photo img {
  transform: scale(1.035);
}

.lx-product .lx-eyebrow-tag {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lx-slate-2);
  font-weight: 500;
  margin-bottom: 8px;
}

.lx-product h3 {
  font-size: 22px;
  margin: 0 0 8px;
}

.lx-product .lx-price {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--lx-blue-2);
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -.005em;
  flex: 0 0 auto;
}

.lx-product p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--lx-slate);
  margin: 0 0 18px;
}

.lx-product > p:not(.lx-price) {
  flex: 1;
}

.lx-product .lx-product-cta {
  margin-top: auto;
}

.lx-product .lx-product-cta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--lx-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -.005em;
}

.lx-product .lx-product-cta::after {
  content: '→';
  transition: transform .3s var(--lx-ease);
}

.lx-product:hover .lx-product-cta::after { transform: translateX(4px); }

/* ---------- Loop / How it works ---------- */
.lx-loop {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

@media (max-width: 880px) {
  .lx-loop { grid-template-columns: 1fr; }
}

.lx-loop-step {
  position: relative;
  padding: 32px 28px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--lx-line);
  border-radius: var(--lx-radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lx-loop-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 60px;
  line-height: 1;
  color: var(--lx-blue-2);
  font-weight: 300;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--lx-blue-3), var(--lx-ink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lx-loop-step h4 {
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--lx-ink);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -.018em;
}

.lx-loop-step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--lx-slate);
  margin: 0;
}

/* ---------- Segments band (used by) ---------- */
.lx-segments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--lx-line);
  border: 1px solid var(--lx-line);
  border-radius: var(--lx-radius);
  overflow: hidden;
}
@media (max-width: 900px) {
  .lx-segments { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .lx-segments { grid-template-columns: 1fr; }
}

.lx-segments .seg {
  background: rgba(255,255,255,.92);
  padding: 22px 18px;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  letter-spacing: -.012em;
  color: var(--lx-ink);
  font-weight: 500;
  transition: background .3s var(--lx-ease), color .3s var(--lx-ease);
  font-style: italic;
}
.lx-segments .seg:hover { background: var(--lx-mist-bg); color: var(--lx-blue); }

/* ---------- Final CTA ---------- */
.lx-final {
  text-align: center;
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}

.lx-final h2 {
  max-width: 18ch;
  margin: 0 auto 18px;
}

.lx-final-card {
  position: relative;
  margin: 0 auto;
  max-width: 780px;
  padding: clamp(36px, 5vw, 64px);
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(61, 111, 224, .12), transparent 60%),
    linear-gradient(180deg, #0A1530 0%, #15224A 100%);
  color: var(--lx-cream);
  border-radius: var(--lx-radius-xl);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--lx-shadow-3);
  overflow: hidden;
  isolation: isolate;
}

.lx-final-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(61, 111, 224, .25), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(199, 168, 105, .15), transparent 50%);
  z-index: -1;
}

.lx-final-card .eyebrow { color: var(--lx-gold-soft); }

.lx-final-card h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  margin: 14px auto 18px;
}

.lx-final-card p {
  color: rgba(248, 245, 238, .82);
  max-width: 50ch;
  margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.5;
}

.lx-final-card .btn-primary {
  background: linear-gradient(180deg, #fff 0%, #F0EFEA 100%);
  color: var(--lx-ink);
  border-color: rgba(255,255,255,.4);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.6);
}
.lx-final-card .btn-primary:hover {
  background: #fff;
  transform: translateY(-1px);
}

.lx-final-card .btn-ghost {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: var(--lx-cream);
}
.lx-final-card .btn-ghost:hover {
  background: rgba(255,255,255,.16);
  color: #fff;
}

/* ---------- Footer ---------- */
.theme-white-slate footer {
  background: linear-gradient(180deg, var(--lx-paper) 0%, #ECF0F6 100%);
  border-top: 1px solid var(--lx-line);
  padding: clamp(56px, 7vw, 96px) 0 28px;
  margin-top: 0;
}

.theme-white-slate footer h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lx-slate-2);
  font-weight: 600;
  margin-bottom: 14px;
}

.theme-white-slate footer ul li a,
.theme-white-slate footer .foot a {
  color: var(--lx-slate);
  font-size: 14px;
  transition: color .25s var(--lx-ease);
}

.theme-white-slate footer ul li a:hover,
.theme-white-slate footer .foot a:hover {
  color: var(--lx-ink);
}

.theme-white-slate .foot-bottom {
  border-top: 1px solid var(--lx-line);
  margin-top: 36px;
  padding-top: 22px;
  font-size: 13px;
  color: var(--lx-slate-2);
}

/* ---------- Mobile ---------- */
@media (max-width: 880px) {
  .lx-hero-grid { grid-template-columns: 1fr; }
  .lx-hero-visual { aspect-ratio: 5 / 4; max-height: 420px; margin: 0 -8px; }
  .lx-hero-cta { flex-direction: column; align-items: stretch; }
  .lx-hero-cta .btn { width: 100%; justify-content: center; }
  .lc-hero-breaklight {
    inset: -16% -30% 18%;
    opacity: .74;
  }
  .lc-light-cloud {
    top: 0;
    height: 28%;
    filter: blur(16px);
  }
  .lc-light-shaft {
    top: 2%;
    width: 86vw;
    height: 96%;
    opacity: .34;
  }
  .lc-light-shaft-a {
    left: -8%;
    transform: rotate(-12deg);
  }
  .lc-light-shaft-b {
    left: 26%;
    opacity: .28;
    transform: rotate(10deg);
  }
  .lc-light-shaft-c {
    display: none;
  }
}

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .lx-aurora::before,
  .lx-aurora::after,
  .pill::before,
  .lc-light-shaft { animation: none !important; }
  .lc-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   DARK APP (DASHBOARD) — Luxury overrides
   ========================================================= */
.theme-dark-app {
  --bg: #06091A;
  --surface: rgba(18, 25, 50, .65);
  --surface-2: rgba(24, 33, 64, .55);
  --surface-3: rgba(32, 44, 82, .55);
  --border: rgba(255,255,255,.06);
  --border-strong: rgba(255,255,255,.12);
  --brand: #6F95F5;
  --brand-hover: #94B0FF;
  --cream: #F8F5EE;
  --gold: #C7A869;
  --white: #F0F3FA;
  --ink: #F8F5EE;
  --muted: #A8B2C6;
  --muted-2: #6E7993;
  background: #06091A;
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

.theme-dark-app::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(61, 111, 224, .18), transparent 60%),
    radial-gradient(50% 40% at 10% 90%, rgba(199, 168, 105, .08), transparent 60%),
    linear-gradient(180deg, #06091A 0%, #08102A 100%);
  z-index: -2;
  pointer-events: none;
}

.theme-dark-app::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: -1;
  pointer-events: none;
}

.theme-dark-app h1,
.theme-dark-app h2,
.theme-dark-app h3,
.theme-dark-app h4 {
  font-family: 'Fraunces', 'Outfit', Georgia, serif;
  font-weight: 500;
  letter-spacing: -.022em;
  color: var(--white);
}

.theme-dark-app h1 { font-size: clamp(28px, 3vw, 38px); line-height: 1.05; }
.theme-dark-app h2 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.1; }
.theme-dark-app h3 { font-size: 17px; line-height: 1.2; letter-spacing: -.012em; }

.theme-dark-app .app {
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  min-height: 100vh;
}

.theme-dark-app .sidebar {
  background: rgba(8, 12, 30, .7);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-right: 1px solid rgba(255,255,255,.06);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.theme-dark-app .side-brand {
  padding: 6px 8px 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.theme-dark-app .side-brand .logo-text {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -.022em;
  color: var(--white);
}

.theme-dark-app .side-brand .logo-text em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.theme-dark-app .venue-switcher {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--lx-radius-sm);
  cursor: pointer;
  transition: background .25s var(--lx-ease);
}
.theme-dark-app .venue-switcher:hover { background: rgba(255,255,255,.05); }

.theme-dark-app .v-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--lx-blue-3), var(--lx-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px -4px rgba(61, 111, 224, .5);
}

.theme-dark-app .v-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--white);
}
.theme-dark-app .v-sub {
  font-size: 11.5px;
  color: var(--muted-2);
  margin-top: 2px;
}
.theme-dark-app .v-caret {
  margin-left: auto;
  color: var(--muted-2);
}

.theme-dark-app .side-group-title {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
  padding: 12px 12px 6px;
  margin-top: 6px;
}

.theme-dark-app .side-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--lx-radius-sm);
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 450;
  text-decoration: none;
  position: relative;
  transition: all .25s var(--lx-ease);
}

.theme-dark-app .side-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,.04);
}

.theme-dark-app .side-nav a.active {
  color: var(--white);
  background: linear-gradient(180deg, rgba(61, 111, 224, .22), rgba(61, 111, 224, .08));
  border: 1px solid rgba(61, 111, 224, .28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.theme-dark-app .side-nav a .badge {
  margin-left: auto;
  font-size: 10.5px;
  letter-spacing: .08em;
  background: rgba(255,255,255,.08);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.06);
}

/* Existing nav-icon mask system in styles.css handles --icon-url; we only adjust opacity */
.theme-dark-app .side-nav a .nav-icon,
.theme-dark-app .qa .nav-icon { opacity: .85; }
.theme-dark-app .side-nav a:hover .nav-icon,
.theme-dark-app .side-nav a.active .nav-icon { opacity: 1; }

.theme-dark-app .side-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.theme-dark-app .upgrade-card {
  position: relative;
  padding: 16px;
  border-radius: var(--lx-radius-sm);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(61, 111, 224, .25), transparent 60%),
    rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
}

.theme-dark-app .upgrade-card h5 {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 4px;
}
.theme-dark-app .upgrade-card p {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.4;
}
.theme-dark-app .upgrade-card .btn { padding: 8px 12px; font-size: 12.5px; min-height: 34px; }

/* Main / topbar */
.theme-dark-app .main { min-width: 0; }

.theme-dark-app .topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  background: rgba(8, 12, 30, .6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.theme-dark-app .topbar .search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--lx-radius-sm);
  max-width: 480px;
}

.theme-dark-app .topbar .search input {
  background: transparent;
  border: 0;
  color: var(--white);
  flex: 1;
  font-size: 13.5px;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.theme-dark-app .topbar .search input::placeholder { color: var(--muted-2); }

.theme-dark-app .topbar .actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-dark-app .avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--lx-gold), #B58F4F);
  color: #1A1100;
  font-weight: 600;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .04em;
  box-shadow: 0 4px 12px -4px rgba(199, 168, 105, .35);
}

.theme-dark-app .content { padding: 28px; max-width: 1480px; }

.theme-dark-app .page-head { margin-bottom: 24px; }
.theme-dark-app .page-head p { color: var(--muted); margin-top: 6px; }

/* Cards */
.theme-dark-app .chart-card,
.theme-dark-app .table-card,
.theme-dark-app .set-card {
  background: rgba(18, 25, 50, .55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--lx-radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.theme-dark-app .chart-card::before,
.theme-dark-app .table-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  pointer-events: none;
}

.theme-dark-app .kpi {
  background:
    radial-gradient(80% 60% at 0% 0%, rgba(61, 111, 224, .14), transparent 60%),
    rgba(18, 25, 50, .55);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--lx-radius);
  padding: 20px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.theme-dark-app .kpi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
}

.theme-dark-app .kpi .klabel {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.theme-dark-app .kpi .kval {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -.025em;
  line-height: 1;
  margin-bottom: 6px;
}

.theme-dark-app .kpi .ksub {
  font-size: 12.5px;
  color: var(--muted);
}

.theme-dark-app .kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.theme-dark-app .two-col {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
}

@media (max-width: 1100px) {
  .theme-dark-app .two-col { grid-template-columns: 1fr; }
}

.theme-dark-app .chart-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.theme-dark-app .chart-head .sub {
  font-size: 12.5px;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.theme-dark-app .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 500;
}

.theme-dark-app .tag-good {
  color: #6ED1A8;
  background: rgba(110, 209, 168, .08);
  border-color: rgba(110, 209, 168, .18);
}

.theme-dark-app .tag-good::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #6ED1A8;
  box-shadow: 0 0 0 3px rgba(110, 209, 168, .2);
  animation: lx-pulse 2.4s ease-in-out infinite;
}

.theme-dark-app .tag-brand {
  color: var(--brand);
  background: rgba(111, 149, 245, .1);
  border-color: rgba(111, 149, 245, .22);
}

/* Tables */
.theme-dark-app table {
  width: 100%;
  border-collapse: collapse;
}

.theme-dark-app table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: transparent;
}

.theme-dark-app table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 13.5px;
  color: var(--ink);
}

.theme-dark-app table tbody tr {
  transition: background .25s var(--lx-ease);
}
.theme-dark-app table tbody tr:hover { background: rgba(255,255,255,.025); }

.theme-dark-app .filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.theme-dark-app .filters input {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--lx-radius-sm);
  font-size: 13px;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.theme-dark-app .filters input::placeholder { color: var(--muted-2); }

/* Quick actions */
.theme-dark-app .quick-actions {
  display: grid;
  gap: 10px;
}
.theme-dark-app .qa {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--lx-radius-sm);
  color: var(--white);
  font-size: 13.5px;
  text-decoration: none;
  transition: all .25s var(--lx-ease);
}
.theme-dark-app .qa:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
  transform: translateY(-1px);
}

.theme-dark-app .qa .tag {
  margin-left: auto;
  font-size: 10px;
}

/* Buttons in dashboard */
.theme-dark-app .btn-primary {
  background: linear-gradient(180deg, #5C82E5 0%, #3D6FE0 100%);
  border-color: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 500;
  box-shadow: 0 8px 20px -8px rgba(61, 111, 224, .5), inset 0 1px 0 rgba(255,255,255,.18);
}
.theme-dark-app .btn-primary:hover {
  background: linear-gradient(180deg, #6F95F5 0%, #4D80F0 100%);
  transform: translateY(-1px);
}

.theme-dark-app .btn-ghost {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  color: var(--white);
}
.theme-dark-app .btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}

/* Bars / chart */
.theme-dark-app .bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 180px;
  padding: 12px 0;
}

.theme-dark-app .bars-x {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted-2);
  margin-top: 8px;
}

/* Donut wrapper */
.theme-dark-app .donut {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: conic-gradient(var(--brand) calc(var(--p, 0) * 1%), rgba(255,255,255,.06) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.theme-dark-app .donut-inner {
  width: 100px;
  height: 100px;
  border-radius: 999px;
  background: rgba(8, 12, 30, .9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.06);
}
.theme-dark-app .donut-inner .v {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}
.theme-dark-app .donut-inner .l {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Plan snapshot */
.theme-dark-app .plan-snapshot {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.theme-dark-app .plan-snap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: var(--lx-radius-sm);
}

.theme-dark-app .plan-snap-row strong { color: var(--white); font-weight: 500; }

.theme-dark-app .plan-snap-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.05);
}

/* Activity feed */
.theme-dark-app .feed { display: flex; flex-direction: column; gap: 0; }
.theme-dark-app .feed .row {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  align-items: flex-start;
}
.theme-dark-app .feed .row:last-child { border-bottom: 0; }
.theme-dark-app .feed .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--brand);
  margin-top: 6px;
  box-shadow: 0 0 0 3px rgba(111, 149, 245, .2);
  flex-shrink: 0;
}
.theme-dark-app .feed .body { font-size: 13.5px; color: var(--ink); }
.theme-dark-app .feed .body .t { color: var(--white); }

/* Mobile dashboard */
@media (max-width: 880px) {
  .theme-dark-app .app {
    grid-template-columns: 1fr;
  }
  .theme-dark-app .sidebar {
    position: relative;
    height: auto;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 12px 14px;
    gap: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .theme-dark-app .side-brand,
  .theme-dark-app .venue-switcher,
  .theme-dark-app .side-group-title,
  .theme-dark-app .side-foot { display: none; }
  .theme-dark-app .side-nav {
    display: flex;
    gap: 8px;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .theme-dark-app .side-nav a {
    white-space: nowrap;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,.06);
  }
  .theme-dark-app .side-nav a .badge { display: none; }
  .theme-dark-app .content { padding: 18px; }
  .theme-dark-app .topbar { padding: 12px 18px; }
}

/* =========================================================
   CUSTOMER REWARD PAGE — Luxury overrides
   ========================================================= */
body.reward-page.theme-white-slate {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(61, 111, 224, .12), transparent 60%),
    radial-gradient(60% 40% at 80% 90%, rgba(199, 168, 105, .08), transparent 60%),
    var(--lx-paper);
  min-height: 100dvh;
  position: relative;
}

body.reward-page .reward-stage {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: center;
  padding: clamp(20px, 4vw, 56px) clamp(16px, 4vw, 28px);
  gap: 32px;
  min-height: 100dvh;
}

@media (min-width: 980px) {
  body.reward-page .reward-stage {
    grid-template-columns: minmax(0, 480px) minmax(0, 410px);
    gap: clamp(40px, 6vw, 88px);
    align-items: center;
    justify-items: end;
  }
  body.reward-page .reward-stage .phone-wrap { justify-self: start; }
}

body.reward-page .reward-context {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 460px;
  width: 100%;
}

body.reward-page .reward-context .logo-img {
  height: 32px;
  width: auto;
  margin-bottom: 6px;
}

body.reward-page .reward-context h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -.034em;
  color: var(--lx-ink);
  font-weight: 500;
  margin: 0;
}

body.reward-page .reward-context p {
  color: var(--lx-slate);
  font-size: 16px;
  line-height: 1.55;
}

body.reward-page .reward-context-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.reward-page .reward-context-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--lx-slate);
  line-height: 1.5;
}

body.reward-page .reward-context-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--lx-blue-3);
}

body.reward-page .phone {
  background: linear-gradient(180deg, #0A1530 0%, #15224A 100%);
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 50px 100px -30px rgba(10, 21, 48, .4),
    0 20px 40px -16px rgba(10, 21, 48, .25),
    inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
  position: relative;
}

body.reward-page .phone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 40% at 50% 0%, rgba(61, 111, 224, .25), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body.reward-page .phone .rewards { position: relative; z-index: 1; }

body.reward-page .rew-head {
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.reward-page .venue {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.reward-page .venue-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--lx-gold), #B58F4F);
  color: #1A1100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
}

body.reward-page .venue-meta .n {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  letter-spacing: -.012em;
  color: #fff;
  font-weight: 500;
}
body.reward-page .venue-meta .s {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}

body.reward-page .chip-badge {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lx-gold-soft);
  background: rgba(199, 168, 105, .1);
  border: 1px solid rgba(199, 168, 105, .25);
  padding: 5px 10px;
  border-radius: 999px;
  align-self: flex-start;
  font-weight: 500;
}

body.reward-page .rew-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

body.reward-page .offer {
  text-align: center;
  padding: 22px 18px;
  background: radial-gradient(80% 60% at 50% 20%, rgba(199, 168, 105, .15), transparent 70%);
  border-radius: 20px;
  border: 1px solid rgba(199, 168, 105, .25);
}

body.reward-page .offer .eyebrow {
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--lx-gold-soft);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

body.reward-page .offer h1 {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  letter-spacing: -.028em;
  margin: 0 0 12px;
}

body.reward-page .offer .venue-name {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
}

body.reward-page .countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}

body.reward-page .countdown .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--lx-gold);
  box-shadow: 0 0 0 3px rgba(199, 168, 105, .25);
  animation: lx-pulse 2.4s ease-in-out infinite;
}

body.reward-page .form-card {
  padding: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
}

body.reward-page .form-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 4px;
  letter-spacing: -.018em;
}

body.reward-page .form-card .sub {
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  margin: 0 0 16px;
}

body.reward-page .form-card .or-row {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  text-align: center;
  margin-bottom: 14px;
  position: relative;
}

body.reward-page .form-card .or-row::before,
body.reward-page .form-card .or-row::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: rgba(255,255,255,.08);
}
body.reward-page .form-card .or-row::before { left: 0; }
body.reward-page .form-card .or-row::after { right: 0; }

body.reward-page .field { margin-bottom: 12px; }

body.reward-page .field label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

body.reward-page .field input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .25s var(--lx-ease), background .25s var(--lx-ease);
}

body.reward-page .field input:focus {
  border-color: var(--lx-gold);
  background: rgba(255,255,255,.07);
  box-shadow: 0 0 0 3px rgba(199, 168, 105, .12);
}

body.reward-page .field input::placeholder { color: rgba(255,255,255,.3); }

body.reward-page .consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255,255,255,.65);
  margin: 12px 0;
}

body.reward-page .consent input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--lx-gold);
}

body.reward-page .form-card .btn-primary {
  width: 100%;
  background: linear-gradient(180deg, var(--lx-gold) 0%, #B58F4F 100%);
  color: #1A1100;
  border: 0;
  border-radius: 12px;
  padding: 14px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: transform .25s var(--lx-ease), box-shadow .25s var(--lx-ease);
  box-shadow: 0 10px 24px -8px rgba(199, 168, 105, .4), inset 0 1px 0 rgba(255,255,255,.4);
}

body.reward-page .form-card .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -8px rgba(199, 168, 105, .5), inset 0 1px 0 rgba(255,255,255,.5);
}

/* Success view */
body.reward-page .success {
  text-align: center;
  padding: 24px 12px 8px;
}

body.reward-page .success h1 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -.028em;
  margin: 16px 0 8px;
}

body.reward-page .success .sub {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
  margin: 0 0 18px;
}

body.reward-page .big-chip {
  width: 84px;
  height: 84px;
  margin: 0 auto;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, var(--lx-gold-soft) 0%, var(--lx-gold) 50%, #8C6E37 100%);
  position: relative;
  box-shadow:
    0 20px 40px -10px rgba(199, 168, 105, .4),
    inset 0 -8px 16px rgba(0,0,0,.25),
    inset 0 4px 8px rgba(255,255,255,.4);
}

body.reward-page .big-chip::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,.3);
}

body.reward-page .code-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(199, 168, 105, .25);
  border-radius: 16px;
  padding: 18px;
  margin: 18px 0;
  text-align: center;
}

body.reward-page .code-box .cl {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
}

body.reward-page .code-box .cv {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  letter-spacing: .12em;
  color: var(--lx-gold-soft);
  margin-bottom: 8px;
  font-weight: 500;
}

body.reward-page .code-box .ci {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

body.reward-page .progress-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
}

body.reward-page .progress-card .ring {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.reward-page .progress-card .ring-inner {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(8, 12, 30, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lx-gold-soft);
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 500;
}

body.reward-page .progress-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  color: #fff;
  margin: 0 0 4px;
  font-weight: 500;
}

body.reward-page .progress-card p {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin: 0;
  line-height: 1.45;
}

body.reward-page .progress-card strong {
  color: var(--lx-gold-soft);
}

/* =========================================================
   Additional dashboard surfaces & login polish
   ========================================================= */

/* Bars (capture trend) */
.theme-dark-app .bars > div {
  flex: 1;
  background: linear-gradient(180deg, rgba(111, 149, 245, .8) 0%, rgba(61, 111, 224, .35) 100%);
  border-radius: 4px 4px 0 0;
  min-height: 4px;
  position: relative;
  transition: opacity .25s var(--lx-ease);
}

.theme-dark-app .bars > div:hover {
  opacity: 1;
  background: linear-gradient(180deg, var(--lx-gold-soft) 0%, var(--lx-gold) 100%);
}

/* Redemption grid */
.theme-dark-app .redemption-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.theme-dark-app .redemption-grid .kpi { padding: 14px 16px; }

@media (max-width: 720px) {
  .theme-dark-app .redemption-grid { grid-template-columns: 1fr; }
}

.theme-dark-app .redemption-empty {
  padding: 18px;
  background: rgba(255,255,255,.025);
  border: 1px dashed rgba(255,255,255,.1);
  border-radius: var(--lx-radius-sm);
  text-align: left;
}

.theme-dark-app .redemption-empty strong {
  display: block;
  color: var(--white);
  margin-bottom: 6px;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.018em;
}

/* Chip mix list */
.theme-dark-app [data-chip-mix-list] .row,
.theme-dark-app [data-chip-mix-list] > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 13.5px;
}
.theme-dark-app [data-chip-mix-list] > div:last-child { border-bottom: 0; }

/* Billing banner */
.theme-dark-app .billing-banner {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(232, 195, 48, .15), rgba(232, 195, 48, .05));
  border: 1px solid rgba(232, 195, 48, .25);
  border-radius: var(--lx-radius-sm);
  margin-bottom: 18px;
  color: var(--white);
}

.theme-dark-app .billing-banner strong { font-weight: 600; }

/* Customer panel */
.theme-dark-app .panel {
  background: linear-gradient(180deg, rgba(8, 12, 30, .96) 0%, rgba(12, 18, 42, .96) 100%);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-left: 1px solid rgba(255,255,255,.08);
  box-shadow: -32px 0 80px rgba(0,0,0,.5);
}

.theme-dark-app .panel-head {
  padding: 20px 22px 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.theme-dark-app .panel-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -.022em;
}

.theme-dark-app .panel .close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: var(--white);
  cursor: pointer;
}

.theme-dark-app .panel-section {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.theme-dark-app .panel-section h4 {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
  margin: 0 0 12px;
  font-family: 'Inter', sans-serif;
}

.theme-dark-app .kv {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.03);
  font-size: 13.5px;
}
.theme-dark-app .kv:last-child { border-bottom: 0; }
.theme-dark-app .kv .k { color: var(--muted); }
.theme-dark-app .kv .v { color: var(--white); }
.theme-dark-app .kv .v.mono { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; }

/* Owner-today / live tag */
.theme-dark-app .page-head .tag.mono {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0;
  text-transform: none;
}

/* =========================================================
   AUTH / LOGIN PAGE — luxury polish
   ========================================================= */
.theme-white-slate .auth-wrap {
  position: relative;
  isolation: isolate;
}

.theme-white-slate .auth-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 20% 10%, rgba(61, 111, 224, .14), transparent 60%),
    radial-gradient(50% 40% at 90% 90%, rgba(199, 168, 105, .08), transparent 60%);
  pointer-events: none;
}

.theme-white-slate .auth-card {
  border-radius: var(--lx-radius-lg) !important;
  border-color: var(--lx-line) !important;
  box-shadow: var(--lx-shadow-3) !important;
  background: linear-gradient(180deg, #fff 0%, #FAFBFD 100%) !important;
}

.theme-white-slate .auth-card h2 {
  font-family: 'Fraunces', serif !important;
  font-weight: 500;
  letter-spacing: -.022em;
}

.theme-white-slate .auth-side h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -.034em;
  font-size: clamp(40px, 5vw, 64px) !important;
  line-height: 1 !important;
}

.theme-white-slate .auth-tabs {
  border-radius: 999px !important;
  border-color: var(--lx-line) !important;
  background: var(--lx-mist-bg) !important;
}

.theme-white-slate .auth-tabs button.active {
  background: var(--lx-ink) !important;
  box-shadow: 0 4px 12px -4px rgba(10, 21, 48, .35) !important;
}

.theme-white-slate .auth-form input {
  border-radius: 10px !important;
  border-color: var(--lx-line-2) !important;
  font-family: 'Inter', sans-serif;
}

.theme-white-slate .auth-form input:focus {
  border-color: var(--lx-ink) !important;
  box-shadow: 0 0 0 3px rgba(10, 21, 48, .08) !important;
}

.theme-white-slate .auth-side-list li {
  font-size: 14px !important;
  padding-left: 24px !important;
}
.theme-white-slate .auth-side-list li::before {
  content: '' !important;
  width: 14px !important;
  height: 14px !important;
  border-radius: 999px !important;
  background: var(--lx-blue-3) !important;
  top: 5px !important;
  display: block !important;
  font-size: 0 !important;
  box-shadow: 0 0 0 3px rgba(61, 111, 224, .15);
}

/* =========================================================
   PRODUCT TOUR / FEATURES / LP page polish (homepage was already redone) 
   Keep their existing system but match the new typography
   ========================================================= */
.theme-white-slate .features-section,
.theme-white-slate .verticals-section,
.theme-white-slate .case-study-section,
.theme-white-slate .closing,
.theme-white-slate .upgrade-loop-section { padding: clamp(72px, 9vw, 140px) 0; }

.theme-white-slate section .container > .section-head h2,
.theme-white-slate .lp-hero h1 {
  font-family: 'Fraunces', serif !important;
  font-weight: 500 !important;
  letter-spacing: -.028em !important;
}

/* Section/page heads consistent with hero */
.theme-white-slate .section-head .accent { font-style: italic; font-weight: 400; }

/* Small fix: search icon spacing in dashboard topbar */
.theme-dark-app .topbar .search > span:first-child {
  color: var(--muted-2);
  font-size: 14px;
}

.theme-dark-app .topbar .search .mono.small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 2px 6px;
  background: rgba(255,255,255,.05);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.06);
  letter-spacing: .04em;
}

/* Logo mark / logo text in dashboard sidebar */
.theme-dark-app .logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, var(--lx-gold-soft) 0%, var(--lx-gold) 60%, #8C6E37 100%);
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -4px rgba(199, 168, 105, .4);
}

.theme-dark-app .logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Spotlight polish for products grid hover */
.theme-white-slate .lx-product:hover { z-index: 2; }

/* =========================================================
   REWARD PAGE — defeat existing .theme-white-slate .rewards overrides
   ========================================================= */
body.reward-page.theme-white-slate .rewards { background: transparent; }

body.reward-page.theme-white-slate .rewards .rew-head,
body.reward-page.theme-white-slate .rewards .venue-meta .n {
  color: #fff;
}
body.reward-page.theme-white-slate .rewards .venue-meta .s {
  color: rgba(255,255,255,.55);
}

body.reward-page.theme-white-slate .rewards .offer {
  background: radial-gradient(80% 60% at 50% 20%, rgba(199, 168, 105, .15), transparent 70%) !important;
  border-color: rgba(199, 168, 105, .25) !important;
}
body.reward-page.theme-white-slate .rewards .offer h1 { color: #fff; }
body.reward-page.theme-white-slate .rewards .offer .venue-name,
body.reward-page.theme-white-slate .rewards .offer [data-reward-sub] {
  color: rgba(255,255,255,.65);
}
body.reward-page.theme-white-slate .rewards .offer .countdown {
  color: rgba(255,255,255,.7) !important;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
}
body.reward-page.theme-white-slate .rewards .offer .countdown .dot {
  background: var(--lx-gold);
}

body.reward-page.theme-white-slate .rewards .form-card,
body.reward-page.theme-white-slate .rewards .wallet-card,
body.reward-page.theme-white-slate .rewards .error-card {
  background: rgba(255,255,255,.04) !important;
  border-color: rgba(255,255,255,.07) !important;
}
body.reward-page.theme-white-slate .rewards .form-card h3 { color: #fff; }
body.reward-page.theme-white-slate .rewards .form-card .sub { color: rgba(255,255,255,.6); }

body.reward-page.theme-white-slate .rewards .field label,
body.reward-page.theme-white-slate .rewards .or-row {
  color: rgba(255,255,255,.55);
}

body.reward-page.theme-white-slate .rewards .field input {
  color: #fff !important;
  background: rgba(255,255,255,.05) !important;
  border-color: rgba(255,255,255,.08) !important;
}

body.reward-page.theme-white-slate .rewards .field input:focus {
  border-color: var(--lx-gold) !important;
  background: rgba(255,255,255,.07) !important;
  box-shadow: 0 0 0 3px rgba(199, 168, 105, .12) !important;
}

body.reward-page.theme-white-slate .rewards .consent {
  color: rgba(255,255,255,.65);
}

body.reward-page.theme-white-slate .rewards .consent input[type="checkbox"] {
  accent-color: var(--lx-gold);
}

body.reward-page.theme-white-slate .phone-wrap { background: transparent; }

body.reward-page.theme-white-slate .phone {
  background: linear-gradient(180deg, #0A1530 0%, #15224A 100%) !important;
  border-color: rgba(255,255,255,.12) !important;
  box-shadow:
    0 50px 100px -30px rgba(10, 21, 48, .4),
    0 20px 40px -16px rgba(10, 21, 48, .25),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
}

body.reward-page.theme-white-slate .status-bar,
body.reward-page.theme-white-slate .status-bar .right {
  color: rgba(255,255,255,.85) !important;
}

body.reward-page.theme-white-slate .chip-badge {
  color: var(--lx-gold-soft) !important;
  background: rgba(199, 168, 105, .1) !important;
  border-color: rgba(199, 168, 105, .25) !important;
}

body.reward-page.theme-white-slate .venue-logo {
  background: linear-gradient(135deg, var(--lx-gold), #B58F4F) !important;
  color: #1A1100 !important;
  border: 0 !important;
}

body.reward-page.theme-white-slate .form-card .btn-primary {
  background: linear-gradient(180deg, var(--lx-gold) 0%, #B58F4F 100%) !important;
  color: #1A1100 !important;
}

body.reward-page.theme-white-slate .form-card .btn-primary:hover {
  background: linear-gradient(180deg, #D5B97A 0%, #C5A266 100%) !important;
}

body.reward-page.theme-white-slate .rewards .progress-card,
body.reward-page.theme-white-slate .rewards .code-box {
  background: rgba(255,255,255,.04) !important;
  border-color: rgba(255,255,255,.07) !important;
}

body.reward-page.theme-white-slate .rewards .code-box {
  border-color: rgba(199, 168, 105, .25) !important;
}

body.reward-page.theme-white-slate .rewards .code-box .cv {
  color: var(--lx-gold-soft) !important;
}

body.reward-page.theme-white-slate .rewards .code-box .cl,
body.reward-page.theme-white-slate .rewards .code-box .ci {
  color: rgba(255,255,255,.55) !important;
}

body.reward-page.theme-white-slate .rewards .success h1 { color: #fff !important; }
body.reward-page.theme-white-slate .rewards .success .sub { color: rgba(255,255,255,.6) !important; }

/* =========================================================
   DASHBOARD — fix [hidden] for billing banner & similar
   ========================================================= */
.theme-dark-app [hidden] { display: none !important; }
.theme-white-slate [hidden] { display: none !important; }

/* Page head tag wrap */
.theme-dark-app .page-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

/* Page head — better alignment when wrapped */
@media (max-width: 720px) {
  .theme-dark-app .page-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .theme-dark-app .page-head > div:first-child { width: 100%; }
  .theme-dark-app .page-head > div:nth-child(2) { width: 100%; justify-content: flex-start !important; }
}

@media (max-width: 720px) {
  .theme-dark-app .page-head > div:first-child {
    flex: 0 0 auto !important;
    min-width: 0 !important;
  }
  .theme-dark-app .page-head > div:nth-child(2) {
    flex: 0 0 auto !important;
  }
}

/* =========================================================
   SLASH-INSPIRED LAYER — keeps cream + navy palette
   Announcement strip · mega-nav · layered hero mock · sections
   ========================================================= */

/* ---------- Announcement strip ---------- */
.theme-white-slate .lc-announce {
  background: linear-gradient(90deg, #F1E9D2 0%, #F8F1DC 50%, #F1E9D2 100%);
  border-bottom: 1px solid rgba(199, 168, 105, .35);
  color: var(--lx-ink);
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 5;
}
.theme-white-slate .lc-announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 0;
  font-size: 13px;
  flex-wrap: wrap;
}
.theme-white-slate .lc-announce-pill {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--lx-ink);
  color: var(--lx-cream);
  border-radius: 999px;
  padding: 3px 9px;
}
.theme-white-slate .lc-announce-msg {
  color: var(--lx-ink);
  font-weight: 500;
}
.theme-white-slate .lc-announce-link {
  color: var(--lx-ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 21, 48, .3);
  padding-bottom: 1px;
  transition: border-color .2s var(--lx-ease);
}
.theme-white-slate .lc-announce-link:hover { border-color: var(--lx-ink); }

@media (max-width: 720px) {
  .theme-white-slate .lc-announce-inner { padding: 8px 14px; font-size: 12px; gap: 10px; }
}

/* ---------- Slash-style nav (dropdowns + denser links) ---------- */
.theme-white-slate .lc-nav .nav-inner {
  padding-top: 14px;
  padding-bottom: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.theme-white-slate .lc-nav-links {
  justify-content: center;
  gap: 32px;
}
.theme-white-slate .lc-nav-item.has-menu { position: relative; }
.theme-white-slate .lc-nav-trigger {
  background: none;
  border: 0;
  color: var(--lx-slate);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.005em;
  padding: 6px 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color .2s var(--lx-ease);
}
.theme-white-slate .lc-nav-trigger:hover { color: var(--lx-ink); }
.theme-white-slate .lc-caret {
  font-size: 10px;
  color: var(--lx-mist);
  transition: transform .2s var(--lx-ease), color .2s var(--lx-ease);
}
.theme-white-slate .lc-nav-item.has-menu:hover .lc-caret { transform: translateY(2px); color: var(--lx-ink); }

.theme-white-slate .lc-mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 320px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--lx-line-2);
  border-radius: var(--lx-radius-lg);
  box-shadow: var(--lx-shadow-3);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: 10px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s var(--lx-ease), transform .22s var(--lx-ease), visibility 0s linear .22s;
  z-index: 50;
}
.theme-white-slate .lc-nav-item.has-menu:hover .lc-mega,
.theme-white-slate .lc-nav-item.has-menu:focus-within .lc-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.theme-white-slate .lc-mega a {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--lx-ink);
  text-decoration: none;
  transition: background .18s var(--lx-ease);
}
.theme-white-slate .lc-mega a strong {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--lx-ink);
}
.theme-white-slate .lc-mega a span {
  font-size: 12.5px;
  color: var(--lx-slate-2);
  font-weight: 400;
}
.theme-white-slate .lc-mega a:hover { background: rgba(10, 21, 48, .04); }

.theme-white-slate .lc-nav .btn-primary.lc-nav-cta {
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -.005em;
}
.theme-white-slate .lc-nav .btn-ghost {
  background: transparent;
  border: 0;
  color: var(--lx-ink);
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 500;
  backdrop-filter: none;
}

@media (max-width: 980px) {
  .theme-white-slate .lc-nav .nav-inner { grid-template-columns: auto 1fr auto; gap: 14px; }
  .theme-white-slate .lc-mega { display: none; }
  .theme-white-slate .lc-nav-trigger { padding: 10px 0; }
}

/* ---------- Hero — Slash-style stacked composition ---------- */
.lc-hero-slash {
  padding: clamp(28px, 4vw, 56px) 0 clamp(96px, 12vw, 180px);
  overflow: visible;
  overflow-x: clip;
}
.lc-hero-slash .lc-hero-breaklight {
  inset: -18% 0 -8%;
}
.lc-hero-stack {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  text-align: center;
  align-items: center;
}
.lc-hero-copy {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
}
.theme-white-slate .lc-hero-title {
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: .96;
  letter-spacing: -.04em;
  font-weight: 500;
  margin: 0 0 22px;
  text-wrap: balance;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.theme-white-slate .lc-hero-title .lx-italic {
  font-style: italic;
  font-weight: 400;
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--lx-ink);
}
.theme-white-slate .lc-hero-sub {
  font-size: clamp(16px, 1.35vw, 19px);
  color: var(--lx-slate);
  max-width: 620px;
  margin: 0 auto 26px;
  line-height: 1.5;
}
.theme-white-slate .lc-hero-sub sup {
  font-size: .55em;
  color: var(--lx-slate-2);
  margin-left: 1px;
}

/* Inline email capture pill */
.theme-white-slate .lc-hero-capture {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, .85);
  border: 1px solid var(--lx-line-2);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  box-shadow: var(--lx-shadow-2), inset 0 1px 0 rgba(255,255,255,.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  min-width: min(440px, 90vw);
  transition: box-shadow .25s var(--lx-ease), border-color .25s var(--lx-ease);
}
.theme-white-slate .lc-hero-capture:focus-within {
  border-color: rgba(10, 21, 48, .45);
  box-shadow: 0 18px 40px -16px rgba(10, 21, 48, .25), inset 0 1px 0 rgba(255,255,255,.7);
}
.theme-white-slate .lc-hero-capture input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  font: 500 14.5px 'Inter', sans-serif;
  color: var(--lx-ink);
  padding: 10px 6px;
  letter-spacing: -.005em;
}
.theme-white-slate .lc-hero-capture input::placeholder { color: var(--lx-slate-2); }
.theme-white-slate .lc-hero-capture-btn {
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  min-height: 0;
}

/* Unframed product hero */
.lc-hero-product-stage {
  position: relative;
  width: min(1120px, calc(100vw - 32px));
  aspect-ratio: 3 / 2;
  margin: clamp(-24px, -1.6vw, -8px) auto 0;
  isolation: isolate;
  overflow: visible;
  pointer-events: none;
}
.lc-hero-product-stage::before {
  content: '';
  position: absolute;
  left: 9%;
  right: 7%;
  bottom: 5%;
  height: 22%;
  background:
    radial-gradient(ellipse 70% 80% at 50% 45%, rgba(10, 21, 48, .18), transparent 70%),
    radial-gradient(ellipse 86% 70% at 50% 55%, rgba(199, 168, 105, .16), transparent 76%);
  filter: blur(24px);
  opacity: .7;
  transform: translateY(18px);
  z-index: 0;
}
.lc-hero-product-stage::after {
  content: '';
  position: absolute;
  inset: 6% 0 10%;
  background:
    linear-gradient(110deg, transparent 0 32%, rgba(255,255,255,.58) 45%, transparent 58%),
    radial-gradient(ellipse 72% 52% at 54% 42%, rgba(255, 255, 255, .72), transparent 72%);
  mix-blend-mode: screen;
  opacity: .42;
  z-index: 3;
}
.lc-hero-product-glow {
  position: absolute;
  display: block;
  pointer-events: none;
  z-index: 1;
  filter: blur(34px);
  opacity: .55;
}
.lc-hero-product-glow-a {
  left: 8%;
  top: 16%;
  width: 34%;
  height: 40%;
  background: radial-gradient(ellipse at center, rgba(199, 168, 105, .24), transparent 72%);
  animation: lcHeroGlowDrift 10s ease-in-out infinite alternate;
}
.lc-hero-product-glow-b {
  right: 6%;
  bottom: 14%;
  width: 42%;
  height: 36%;
  background: radial-gradient(ellipse at center, rgba(10, 21, 48, .14), transparent 74%);
  animation: lcHeroGlowDrift 12s ease-in-out infinite alternate-reverse;
}
.lc-hero-product-picture {
  position: absolute;
  inset: -3% -2% -4%;
  display: block;
  z-index: 2;
  filter:
    drop-shadow(0 34px 40px rgba(10, 21, 48, .16))
    drop-shadow(0 12px 18px rgba(10, 21, 48, .08));
  transform-origin: 50% 58%;
  animation: lcHeroProductFloat 8s ease-in-out infinite alternate;
}
.lc-hero-product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(.96) contrast(1.03);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 15%, rgba(0,0,0,.46) 25%, #000 36%, #000 76%, rgba(0,0,0,.72) 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, transparent 15%, rgba(0,0,0,.46) 25%, #000 36%, #000 76%, rgba(0,0,0,.72) 88%, transparent 100%);
}

@keyframes lcHeroProductFloat {
  0% { transform: translate3d(0, 4px, 0) rotate(-.35deg) scale(1); }
  100% { transform: translate3d(0, -12px, 0) rotate(.32deg) scale(1.01); }
}
@keyframes lcHeroGlowDrift {
  0% { transform: translate3d(-1.5%, 2%, 0) scale(.98); }
  100% { transform: translate3d(1.5%, -2%, 0) scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  .lc-hero-product-picture,
  .lc-hero-product-glow {
    animation: none !important;
  }
  .lc-hero-product-picture {
    transform: none !important;
  }
}

/* Layered mock — sidebar / chart / transactions / table */
.lc-hero-mock {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  aspect-ratio: 16 / 8.5;
  min-height: 460px;
}
.lc-hero-mock::before {
  /* warm spotlight under the focal panel */
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: 18%;
  bottom: -6%;
  background:
    radial-gradient(ellipse 60% 55% at 50% 55%, rgba(199, 168, 105, .42), transparent 70%),
    radial-gradient(ellipse 80% 70% at 50% 60%, rgba(255, 244, 217, .65), transparent 80%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.lc-hero-mock > * {
  background: #FFFFFF;
  border: 1px solid var(--lx-line-2);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 24px 60px -24px rgba(10, 21, 48, .25),
    0 8px 24px -8px rgba(10, 21, 48, .08);
  text-align: left;
  font-family: 'Inter', sans-serif;
  color: var(--lx-ink);
}

/* Sidebar (back-left) */
.lc-mock-sidebar {
  position: absolute;
  left: 2%;
  top: 8%;
  width: 26%;
  height: 76%;
  padding: 18px 14px;
  background: linear-gradient(180deg, #FAFBFC 0%, #F1F4F9 100%);
  z-index: 1;
  opacity: .9;
  transform: translateX(-3%);
}
.lc-mock-sidebar-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 20px;
  letter-spacing: -.005em;
}
.lc-mock-logo {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--lx-ink-2), var(--lx-ink));
  display: inline-block;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}
.lc-mock-logo-name { font-family: 'Fraunces', serif; font-weight: 500; }
.lc-mock-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 3px;
}
.lc-mock-nav li {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--lx-slate-2);
  padding: 7px 10px 7px 28px;
  border-radius: 8px;
  position: relative;
  letter-spacing: -.005em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.lc-mock-nav li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 1.4px solid currentColor;
  opacity: .55;
}
.lc-mock-nav li.is-icon-home::before { border-radius: 2px 2px 0 0; clip-path: polygon(50% 0, 100% 50%, 100% 100%, 0 100%, 0 50%); }
.lc-mock-nav li.is-icon-card::before { border-radius: 2px; height: 8px; }
.lc-mock-nav li.is-icon-tx::before   { border-radius: 50%; }
.lc-mock-nav li.is-icon-pay::before  { transform: translateY(-50%) rotate(45deg); }
.lc-mock-nav li.is-icon-acct::before { border-radius: 50%; height: 8px; width: 8px; }
.lc-mock-nav li.is-active {
  background: rgba(10, 21, 48, .06);
  color: var(--lx-ink);
}
.lc-mock-nav li.is-active::before { opacity: 1; }
.lc-mock-caret { margin-left: auto; color: var(--lx-mist); font-size: 10px; }
.lc-mock-sidebar-section {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lx-mist);
  margin: 16px 6px 8px;
  font-weight: 600;
}
.lc-mock-nav-sub li { color: var(--lx-slate-2); }
.lc-mock-amount {
  margin-left: auto;
  font-variant-numeric: tabular-nums;
  font-size: 11.5px;
  color: var(--lx-slate);
  font-weight: 500;
}

/* Center chart card (focal) */
.lc-mock-chart {
  position: absolute;
  left: 22%;
  top: 0;
  width: 50%;
  padding: 22px 24px 18px;
  z-index: 3;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 40px 80px -28px rgba(10, 21, 48, .35),
    0 16px 40px -12px rgba(199, 168, 105, .25);
}
.lc-mock-chart-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.lc-mock-chart-amount {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  letter-spacing: -.025em;
  font-weight: 500;
  color: var(--lx-ink);
  margin: 0;
  line-height: 1;
}
.lc-mock-chart-label {
  font-size: 11.5px;
  color: var(--lx-slate-2);
  margin: 6px 0 0;
  font-weight: 500;
  letter-spacing: -.005em;
}
.lc-mock-toggle {
  display: inline-flex;
  background: rgba(10, 21, 48, .05);
  border-radius: 999px;
  padding: 3px;
  font-size: 11px;
  font-weight: 500;
  gap: 2px;
}
.lc-mock-toggle span {
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--lx-slate);
  letter-spacing: -.005em;
}
.lc-mock-toggle span.is-on {
  background: #FFFFFF;
  color: var(--lx-ink);
  box-shadow: var(--lx-shadow-1);
}
.lc-mock-range {
  font-size: 11px;
  color: var(--lx-slate-2);
  border: 1px solid var(--lx-line-2);
  border-radius: 8px;
  padding: 5px 10px;
  font-weight: 500;
  background: #fff;
  align-self: center;
}
.lc-mock-chart-canvas {
  position: relative;
  height: 150px;
  margin: 0 -4px 12px;
}
.lc-mock-chart-canvas svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.lc-mock-grid line {
  stroke: rgba(10, 21, 48, .06);
  stroke-dasharray: 2 4;
}
.lc-mock-line {
  filter: drop-shadow(0 6px 14px rgba(199, 168, 105, .35));
}
.lc-mock-axis text {
  font: 9px 'Inter', sans-serif;
  letter-spacing: .14em;
  fill: var(--lx-mist);
}
.lc-mock-chart-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--lx-line);
  border-radius: 10px;
  font-size: 12px;
  color: var(--lx-slate-2);
  background: rgba(255, 244, 217, .35);
}
.lc-mock-chart-foot strong {
  color: var(--lx-ink);
  font-weight: 600;
  font-family: 'Fraunces', serif;
  font-size: 14px;
}
.lc-mock-chart-foot .lc-mock-caret { margin-left: auto; }

/* Right transactions panel */
.lc-mock-tx {
  position: absolute;
  right: 1%;
  top: 6%;
  width: 30%;
  padding: 16px 18px;
  z-index: 2;
}
.lc-mock-tx header h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--lx-slate);
  letter-spacing: -.005em;
  margin: 0 0 10px;
}
.lc-mock-tx ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}
.lc-mock-tx li {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 4px;
  border-bottom: 1px solid var(--lx-line-soft);
  font-size: 12px;
}
.lc-mock-tx li:last-child { border-bottom: 0; }
.lc-mock-tx-ico {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--lx-ink);
  background: var(--lx-mist-bg);
  border: 1px solid var(--lx-line);
}
.lc-mock-tx-ico.is-cafe  { background: #FBF4DF; color: #8C6A1C; }
.lc-mock-tx-ico.is-bar   { background: #EBE7F7; color: #3F2F8C; }
.lc-mock-tx-ico.is-diner { background: #FFE3D6; color: #8C3F1C; }
.lc-mock-tx-ico.is-salon { background: #E6F1EB; color: #1F5A3A; }
.lc-mock-tx-ico.is-gym   { background: #DDE6F8; color: #1E3A8A; }
.lc-mock-tx-body {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.lc-mock-tx-body strong {
  font-size: 12.5px;
  color: var(--lx-ink);
  font-weight: 600;
  letter-spacing: -.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lc-mock-tx-body em {
  font-style: normal;
  font-size: 10.5px;
  color: var(--lx-slate-2);
  letter-spacing: -.003em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lc-mock-tx-amt {
  font-size: 11.5px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.005em;
}
.lc-mock-tx-amt.is-pos { color: #1F5A3A; }
.lc-mock-tx-amt.is-neg { color: #8C3F1C; }

/* Bottom campaigns table */
.lc-mock-table {
  position: absolute;
  left: 22%;
  right: 8%;
  bottom: -2%;
  padding: 14px 18px 4px;
  z-index: 4;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
}
.lc-mock-table header,
.lc-mock-table li {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.7fr 0.7fr;
  gap: 12px;
  align-items: center;
}
.lc-mock-table header {
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lx-mist);
  padding: 6px 0 10px;
  border-bottom: 1px solid var(--lx-line);
}
.lc-mock-table ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lc-mock-table li {
  font-size: 12.5px;
  padding: 12px 0;
  border-bottom: 1px solid var(--lx-line-soft);
  color: var(--lx-ink);
  font-weight: 500;
}
.lc-mock-table li:last-child { border-bottom: 0; }
.lc-mock-table li > span:nth-child(2),
.lc-mock-table li > span:nth-child(3) {
  color: var(--lx-slate);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.lc-mock-table-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
}
.lc-mock-table-dot.is-gold  { background: var(--lx-gold); }
.lc-mock-table-dot.is-blue  { background: var(--lx-blue-3); }
.lc-mock-table-dot.is-slate { background: var(--lx-mist); }

.lc-mock-pill {
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  justify-self: end;
  border: 1px solid transparent;
}
.lc-mock-pill.is-active {
  background: rgba(31, 90, 58, .12);
  color: #1F5A3A;
  border-color: rgba(31, 90, 58, .25);
}
.lc-mock-pill.is-active::before {
  content: '●';
  margin-right: 6px;
  color: #1F5A3A;
}
.lc-mock-pill.is-paused {
  background: rgba(10, 21, 48, .05);
  color: var(--lx-slate);
  border-color: var(--lx-line-2);
}

/* Hero footnotes */
.theme-white-slate .lc-hero-foot {
  margin: clamp(48px, 6vw, 80px) auto 0;
  max-width: 880px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 12px;
  color: var(--lx-slate-2);
  text-align: center;
}
.theme-white-slate .lc-hero-foot sup {
  color: var(--lx-ink);
  font-weight: 600;
  margin-right: 2px;
}

/* Responsive hero mock — stack on small screens */
@media (max-width: 1080px) {
  .lc-hero-product-stage {
    width: min(900px, calc(100vw - 24px));
    margin-top: clamp(10px, 2vw, 18px);
  }
  .lc-hero-mock { aspect-ratio: auto; min-height: 0; }
  .lc-hero-mock > * { position: relative !important; left: auto !important; right: auto !important; top: auto !important; bottom: auto !important; width: 100% !important; transform: none !important; opacity: 1 !important; }
  .lc-hero-mock { display: grid; gap: 14px; max-width: 720px; }
  .lc-mock-sidebar { display: none; }
}
@media (max-width: 720px) {
  html, body, .theme-white-slate body, .theme-white-slate html {
    overflow-x: clip !important;
    max-width: 100vw;
  }
  .lc-hero-slash { overflow-x: clip; }
  .theme-white-slate h1.lc-hero-title,
  .theme-white-slate .lc-hero-title {
    font-size: clamp(28px, 7.6vw, 40px) !important;
    line-height: 1.04 !important;
    letter-spacing: -.022em !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: calc(100vw - 48px) !important;
    text-wrap: balance;
  }
  .theme-white-slate .lc-hero-title br { display: none; }
  .theme-white-slate .lc-hero-title .lx-italic {
    /* keep italic but disable any background-clip that could affect layout */
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    color: var(--lx-ink) !important;
  }
  .theme-white-slate .lc-hero-sub { font-size: 15px; padding: 0 8px; }
  .theme-white-slate .lc-hero-capture {
    min-width: 0;
    width: 100%;
    padding: 5px 5px 5px 18px;
    box-sizing: border-box;
  }
  .theme-white-slate .lc-hero-capture input { font-size: 14px; padding: 9px 4px; min-width: 0; }

  .lc-hero-product-stage {
    width: min(620px, calc(100vw + 18px));
    aspect-ratio: 1.28 / 1;
    margin: 18px -9px 0;
  }
  .lc-hero-product-stage::before {
    left: 10%;
    right: 8%;
    bottom: 7%;
    height: 18%;
    filter: blur(18px);
  }
  .lc-hero-product-stage::after {
    inset: 8% 2% 12%;
    opacity: .28;
  }
  .lc-hero-product-picture {
    inset: -1% -12% -3%;
    filter:
      drop-shadow(0 22px 28px rgba(10, 21, 48, .14))
      drop-shadow(0 8px 14px rgba(10, 21, 48, .08));
  }
  .lc-hero-product-image {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 10%, rgba(0,0,0,.52) 20%, #000 31%, #000 80%, rgba(0,0,0,.78) 91%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, transparent 10%, rgba(0,0,0,.52) 20%, #000 31%, #000 80%, rgba(0,0,0,.78) 91%, transparent 100%);
  }

  .lc-hero-mock { padding: 0 4px; box-sizing: border-box; }
  .lc-hero-mock > * { box-sizing: border-box; min-width: 0; }

  /* Chart head: stack vertically on mobile so it doesn't force overflow */
  .lc-mock-chart-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .lc-mock-toggle,
  .lc-mock-range { justify-self: start; }
  .lc-mock-chart-canvas { height: 120px; }

  /* Transactions: drop the amount column on very small screens */
  .lc-mock-tx li { grid-template-columns: 24px 1fr auto; gap: 8px; }
  .lc-mock-tx-body strong { font-size: 12px; }
  .lc-mock-tx-amt { font-size: 11px; }

  /* Campaign table: drop the audience column */
  .lc-mock-table header,
  .lc-mock-table li {
    grid-template-columns: 1.6fr 0.7fr 0.7fr;
    gap: 8px;
  }
  .lc-mock-table header > span:nth-child(2),
  .lc-mock-table li > span:nth-child(2) { display: none; }

  .theme-white-slate .lc-hero-foot { font-size: 11px; gap: 14px; padding: 0 16px; }
  .theme-white-slate .lc-announce-msg { font-size: 11.5px; }
}

/* =========================================================
   RESEARCH LIBRARY + ARTICLES
   ========================================================= */
.theme-white-slate .lc-research-section,
.theme-white-slate .lc-article-list-section,
.theme-white-slate .lc-sources-section {
  padding: clamp(72px, 9vw, 140px) 0;
}

.theme-white-slate .lc-research-band {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--lx-line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 12%, rgba(199, 168, 105, .16), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(61, 111, 224, .10), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(250, 251, 252, .78));
  box-shadow: 0 24px 60px -42px rgba(10, 21, 48, .38);
}

.theme-white-slate .lc-research-head {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.theme-white-slate .lc-research-head .lede {
  margin-left: 0;
  margin-right: 0;
  max-width: 760px;
}

.theme-white-slate .lc-research-grid,
.theme-white-slate .lc-article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.theme-white-slate .lc-evidence-card,
.theme-white-slate .lc-article-card,
.theme-white-slate .lc-aside-card {
  border: 1px solid var(--lx-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 42px -34px rgba(10, 21, 48, .32);
}

.theme-white-slate .lc-evidence-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  padding: 24px;
}

.theme-white-slate .lc-evidence-num {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(199, 168, 105, .44);
  background: rgba(199, 168, 105, .12);
  color: var(--lx-ink);
  font: 700 12px/1 'Inter', sans-serif;
  letter-spacing: .08em;
}

.theme-white-slate .lc-evidence-card h3,
.theme-white-slate .lc-article-card h3 {
  margin: 0 0 10px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -.018em;
  color: var(--lx-ink);
}

.theme-white-slate .lc-evidence-card p,
.theme-white-slate .lc-article-card p,
.theme-white-slate .lc-aside-card p {
  margin: 0;
  color: var(--lx-slate);
  line-height: 1.65;
}

.theme-white-slate .lc-evidence-card a,
.theme-white-slate .lc-article-card a,
.theme-white-slate .lc-back-link,
.theme-white-slate .lc-source-list a,
.theme-white-slate .lc-next-grid a {
  color: var(--lx-ink);
  font-weight: 650;
  text-decoration: none;
}

.theme-white-slate .lc-evidence-card a {
  margin-top: auto;
  padding-top: 20px;
}

.theme-white-slate .lc-evidence-card a::after,
.theme-white-slate .lc-article-card h3 a::after,
.theme-white-slate .lc-source-list a::after,
.theme-white-slate .lc-next-grid a::after {
  content: " ->";
  color: var(--lx-gold);
}

.theme-white-slate .lc-research-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.theme-white-slate .lc-research-page-hero,
.theme-white-slate .lc-article-hero {
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 7vw, 84px);
  overflow: hidden;
}

.theme-white-slate .lc-research-hero-grid,
.theme-white-slate .lc-article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.theme-white-slate .lc-research-hero-copy h1,
.theme-white-slate .lc-article-hero h1 {
  margin: 10px 0 16px;
  max-width: 840px;
  color: var(--lx-ink);
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -.032em;
  line-height: .96;
}

.theme-white-slate .lc-article-hero h1 {
  font-size: clamp(40px, 5.2vw, 78px);
}

.theme-white-slate .lc-research-hero-media,
.theme-white-slate .lc-article-hero-media {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--lx-line);
  background: #fff;
  box-shadow: 0 30px 70px -42px rgba(10, 21, 48, .45);
}

.theme-white-slate .lc-research-hero-media img,
.theme-white-slate .lc-article-hero-media img {
  display: block;
  width: 100%;
  height: clamp(320px, 38vw, 560px);
  object-fit: cover;
}

.theme-white-slate .lc-article-card {
  padding: 24px;
}

.theme-white-slate .lc-article-card > span {
  display: block;
  margin-bottom: 14px;
  color: var(--lx-gold);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.theme-white-slate .lc-source-panel {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--lx-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, rgba(246, 248, 251, .86));
}

.theme-white-slate .lc-source-panel h2 {
  margin: 10px 0 22px;
  color: var(--lx-ink);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -.024em;
}

.theme-white-slate .lc-source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.theme-white-slate .lc-source-list a {
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid var(--lx-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  line-height: 1.45;
}

.theme-white-slate .lc-article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 760px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(54px, 8vw, 96px) 0;
}

.theme-white-slate .lc-article-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
}

.theme-white-slate .lc-aside-card {
  padding: 20px;
}

.theme-white-slate .lc-article-body {
  color: var(--lx-ink);
}

.theme-white-slate .lc-article-body section + section {
  margin-top: 42px;
}

.theme-white-slate .lc-article-body h2 {
  margin: 0 0 14px;
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -.024em;
  line-height: 1.04;
}

.theme-white-slate .lc-article-body p {
  margin: 0 0 18px;
  color: var(--lx-slate);
  font-size: 17px;
  line-height: 1.8;
}

.theme-white-slate .lc-article-callout,
.theme-white-slate .lc-citation-block {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  border: 1px solid var(--lx-line);
  background:
    radial-gradient(circle at 16% 0%, rgba(199, 168, 105, .14), transparent 34%),
    rgba(255, 255, 255, .78);
}

.theme-white-slate .lc-citation-block ul {
  margin: 0;
  padding-left: 20px;
  color: var(--lx-slate);
}

.theme-white-slate .lc-citation-block li + li {
  margin-top: 12px;
}

.theme-white-slate .lc-citation-block a {
  color: var(--lx-ink);
  text-decoration-color: rgba(199, 168, 105, .7);
  text-underline-offset: 3px;
}

.theme-white-slate .lc-back-link {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
}

.theme-white-slate .lc-back-link::before {
  content: "<- ";
  color: var(--lx-gold);
}

.theme-white-slate .lc-next-research {
  padding: 0 0 clamp(70px, 9vw, 120px);
}

.theme-white-slate .lc-next-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.theme-white-slate .lc-next-grid a {
  padding: 20px 22px;
  border: 1px solid var(--lx-line);
  border-radius: 8px;
  background: #fff;
}

@media (max-width: 920px) {
  .theme-white-slate .lc-research-grid,
  .theme-white-slate .lc-article-card-grid,
  .theme-white-slate .lc-source-list,
  .theme-white-slate .lc-research-hero-grid,
  .theme-white-slate .lc-article-hero-grid,
  .theme-white-slate .lc-article-layout,
  .theme-white-slate .lc-next-grid {
    grid-template-columns: 1fr;
  }

  .theme-white-slate .lc-article-aside {
    position: static;
  }

  .theme-white-slate .lc-research-hero-media img,
  .theme-white-slate .lc-article-hero-media img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 720px) {
  .theme-white-slate .lc-research-section,
  .theme-white-slate .lc-article-list-section,
  .theme-white-slate .lc-sources-section {
    padding: 58px 0;
  }

  .theme-white-slate .lc-research-band,
  .theme-white-slate .lc-source-panel {
    padding: 24px;
  }

  .theme-white-slate .lc-evidence-card {
    min-height: 0;
    padding: 20px;
  }

  .theme-white-slate .lc-research-actions .btn,
  .theme-white-slate .lc-next-grid a {
    width: 100%;
    justify-content: center;
  }

  .theme-white-slate .lc-research-page-hero,
  .theme-white-slate .lc-article-hero {
    padding: 58px 0 42px;
  }

  .theme-white-slate .lc-research-hero-copy h1,
  .theme-white-slate .lc-article-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1;
  }

  .theme-white-slate .lc-article-layout {
    padding: 42px 0;
  }

  .theme-white-slate .lc-article-body p {
    font-size: 16px;
    line-height: 1.72;
  }
}
