/* ════════════════════════════════════════════════════════════════════════════
   TIER PARTNERS — LANDING PAGE  (marketing/index.html)

   Dark, premium. Every marketing page loads _tokens.css (generated) first,
   then this sheet. Everything is namespaced under `body.lp` / `lp-`.
   Fonts: Bricolage Grotesque (display) + Inter (body). Type sizes come from
   the --t-* roles in _tokens.css -- do not add ad-hoc px sizes for text.
   ════════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.lp {
  /* Surfaces */
  --bg:        #08080a;
  --bg-2:      #0c0c0f;
  --panel:     rgba(255,255,255,0.025);
  --panel-2:   rgba(255,255,255,0.045);
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.14);

  /* Ink */
  --text:      #f4f4f6;
  --muted:     #a4a4ad;
  --muted-2:   #6f6f78;

  /* Brand */
  --accent:        #f59e0b;
  --accent-2:      #fbbf24;
  --accent-deep:   #d97706;
  --accent-tint:   rgba(245,158,11,0.12);
  --accent-line:   rgba(245,158,11,0.30);

  /* Tier hues */
  --t-emerald: #34d399;   /* positive / earnings green */

  /* Type */
  --font-display: 'Bricolage Grotesque', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-sans:    'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  --shell: 1500px;          /* one consistent content rail for every section */
  --pad: clamp(20px, 4.5vw, 80px);
  --measure: 760px;         /* readable text measure for prose/heads */

  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.lp a { color: inherit; text-decoration: none; }
body.lp img, body.lp svg { display: block; }
body.lp ::selection { background: rgba(245,158,11,0.28); color: #fff; }

/* Subtle film grain over the whole page */
.lp-grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.lp-shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.lp .lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; line-height: 1; white-space: nowrap;
  cursor: pointer; border: 1px solid transparent; border-radius: 12px;
  transition: transform .14s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.lp .lp-btn-sm { padding: 10px 16px; font-size: 14px; }
.lp .lp-btn-lg { padding: 15px 26px; font-size: 15.5px; }
.lp .lp-btn-primary {
  background: linear-gradient(180deg, #fbb228, #e58c06);
  color: #1a1102; box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 8px 24px rgba(245,158,11,.28);
}
.lp .lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 14px 34px rgba(245,158,11,.4); }
.lp .lp-btn-primary:active { transform: translateY(0); }
.lp .lp-btn-ghost {
  background: rgba(255,255,255,.04); color: var(--text); border-color: var(--line-2);
  backdrop-filter: blur(6px);
}
.lp .lp-btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); transform: translateY(-2px); }
/* outline button — used for "Log in" */
.lp .lp-btn-line { background: transparent; color: var(--text); border-color: var(--line-2); }
.lp .lp-btn-line:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.28); }

/* ── Header ──────────────────────────────────────────────────────────────── */
.lp-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,10,0.55); backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent; transition: border-color .25s ease, background .25s ease;
}
.lp-header.is-scrolled { background: rgba(8,8,10,0.82); border-bottom-color: var(--line); }
.lp-header-row { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 20px; }

.lp-brand { display: inline-flex; align-items: center; gap: 9px; color: var(--text); }
.lp-brand-mark { flex-shrink: 0; }
.lp-brand-name { font-family: var(--font-display); font-size: var(--t-h3); font-weight: 700; letter-spacing: var(--track-h); }
.lp-brand-tag { font-size: var(--t-micro); font-weight: 600; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--muted-2); padding-top: 3px; }

.lp-nav { display: flex; gap: 2px; align-items: center; }
.lp-nav a { color: var(--muted); font-size: 14px; font-weight: 500; padding: 9px 13px; border-radius: 9px; transition: color .15s ease, background .15s ease; }
.lp-nav a:hover { color: var(--text); background: rgba(255,255,255,.05); }

.lp-header-actions { display: flex; align-items: center; gap: 12px; }
.lp-link-quiet { color: var(--muted); font-size: 14px; font-weight: 500; }
.lp-link-quiet:hover { color: var(--text); }
.lp-burger { display: none; }

/* ── Mobile drawer ───────────────────────────────────────────────────────── */
.lp-drawer-backdrop { position: fixed; inset: 0; z-index: 110; background: rgba(0,0,0,.6); opacity: 0; transition: opacity .26s ease; backdrop-filter: blur(3px); }
.lp-drawer-backdrop.is-open { opacity: 1; }
.lp-drawer {
  position: fixed; top: 0; right: 0; z-index: 120; width: min(84vw, 350px); height: 100dvh;
  background: var(--bg-2); border-left: 1px solid var(--line); box-shadow: -30px 0 70px rgba(0,0,0,.5);
  transform: translateX(102%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; gap: 14px; padding: 90px 24px 30px;
}
.lp-drawer.is-open { transform: translateX(0); }
.lp-drawer-nav { display: flex; flex-direction: column; }
.lp-drawer-nav a { color: var(--text); font-size: 16.5px; font-weight: 600; padding: 15px 6px; border-bottom: 1px solid var(--line); transition: color .15s ease; }
.lp-drawer-nav a:hover { color: var(--accent); }
.lp-drawer-cta-group { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.lp-drawer-cta-group .lp-btn { width: 100%; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
/* ── Hero — live wholesale "trading desk" ──────────────────────────────────── */
.lp-hero { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 104px) 0 clamp(56px, 8vw, 100px); }

.lp-hero-dots {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(120% 80% at 70% 0%, #000 26%, transparent 72%);
  mask-image: radial-gradient(120% 80% at 70% 0%, #000 26%, transparent 72%);
}
/* (removed hero bottom hairline — seamless canvas) */

/* ── hero grid: editorial copy + desk ──────────────────────────────────────── */
/* Capped columns, left-aligned within the shell — keeps copy + desk together
   (no dead gap on wide screens) and keeps the headline flush with the nav. */
.lp-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 580px) minmax(440px, 520px); gap: clamp(40px, 4.5vw, 72px); align-items: center; justify-content: start; }
.lp-hero-copy { max-width: 580px; }

.lp-h1 { font-family: var(--font-display); font-size: var(--t-display); font-weight: 700; letter-spacing: var(--track-display); line-height: 1.04; margin-bottom: 26px; color: #f6f6f8; text-rendering: optimizeLegibility; }
.lp-h1-accent { color: var(--accent); }
.lp-lede { font-size: var(--t-body-lg); color: var(--muted); line-height: 1.66; max-width: 46ch; margin-bottom: 38px; }
.lp-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.lp-hero-cta .lp-btn-lg { padding: 15px 24px; font-size: 15px; letter-spacing: -.005em; }
/* calmer, less "glowy" amber in the hero */
.lp-hero-cta .lp-btn-primary { box-shadow: 0 1px 0 rgba(255,255,255,.22) inset, 0 6px 18px rgba(245,158,11,.16); }
.lp-hero-cta .lp-btn-primary:hover { box-shadow: 0 1px 0 rgba(255,255,255,.28) inset, 0 10px 24px rgba(245,158,11,.24); }
.lp-btn-arrow { transition: transform .18s ease; }
.lp .lp-btn-primary:hover .lp-btn-arrow { transform: translateX(3px); }

/* labeled stat row */
.lp-hero-stats { display: flex; flex-wrap: wrap; align-items: stretch; gap: 0; }
.lp-hero-stats > div { display: flex; flex-direction: column; gap: 3px; padding: 0 22px; border-left: 1px solid var(--line); }
.lp-hero-stats > div:first-child { padding-left: 0; border-left: none; }
.lp-hero-stats dt { font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: -.03em; color: var(--text); line-height: 1; }
.lp-hero-stats > div:first-child dt { color: var(--accent-2); }
.lp-hero-stats dd { font-size: 12px; color: var(--muted-2); letter-spacing: .01em; }

/* ── the desk — flat SaaS data panel (no gradients) ───────────────────────── */
.lp-desk {
  position: relative; justify-self: end; width: 100%; max-width: 520px;
  background: #0f0f13; border: 1px solid var(--line-2); border-radius: 16px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,.4), 0 24px 60px rgba(0,0,0,.45);
  --row-h: 56px; --rows-shown: 5;
}
.lp-desk-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 18px; border-bottom: 1px solid var(--line); background: #131318; }
.lp-desk-title { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; letter-spacing: -.01em; color: var(--text); }
.lp-desk-live { width: 7px; height: 7px; border-radius: 50%; background: var(--t-emerald); box-shadow: 0 0 0 3px rgba(52,211,153,.15); animation: lpPulse 2.6s ease-out infinite; }
.lp-desk-tag { font-family: var(--font-mono, ui-monospace, 'SF Mono', Menlo, Consolas, monospace); font-size: var(--t-micro); font-weight: 600; letter-spacing: var(--track-caps); color: var(--muted-2); border: 1px solid var(--line-2); padding: 4px 9px; border-radius: 6px; }

.lp-desk-cols, .lp-row { display: grid; grid-template-columns: 1.6fr .85fr .9fr 1fr; align-items: center; gap: 8px; }
.lp-desk-cols { padding: 11px 18px; font-size: var(--t-micro); font-weight: 600; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--muted-2); border-bottom: 1px solid var(--line); background: #0c0c10; }
.lp-desk-cols span:not(:first-child), .lp-row > span:not(.lp-row-item) { text-align: right; justify-self: end; }

.lp-desk-feed { position: relative; height: calc(var(--row-h) * var(--rows-shown)); overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent); }
.lp-desk-track { animation: lpFeed 26s linear infinite; will-change: transform; }
.lp-desk:hover .lp-desk-track { animation-play-state: paused; }
.lp-row { height: var(--row-h); padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.045); font-size: 14px; }
.lp-row-item { display: inline-flex; align-items: center; gap: 12px; font-weight: 500; color: var(--text); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lp-row-ic { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; object-fit: contain; padding: 2px;
  background: #16161b; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.lp-row-w { color: var(--muted-2); font-variant-numeric: tabular-nums; font-family: var(--font-display); }
.lp-row-l { color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; font-family: var(--font-display); }
.lp-row-s { display: inline-flex; align-items: center; font-size: 12.5px; font-weight: 700; color: var(--t-emerald); font-variant-numeric: tabular-nums; font-family: var(--font-display);
  background: rgba(52,211,153,.09); border: 1px solid rgba(52,211,153,.20); padding: 4px 9px; border-radius: 7px; }

.lp-desk-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; border-top: 1px solid var(--line); background: #131318; }
.lp-desk-foot span { font-size: 12.5px; color: var(--muted); }
.lp-desk-foot b { display: inline-flex; align-items: center; font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: -.01em; color: var(--t-emerald); font-variant-numeric: tabular-nums;
  background: rgba(52,211,153,.09); border: 1px solid rgba(52,211,153,.20); padding: 6px 11px; border-radius: 8px; }

@keyframes lpFeed { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes lpPulse { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,.5); } 70% { box-shadow: 0 0 0 7px rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }

/* ── Section scaffold ────────────────────────────────────────────────────── */
.lp-section { position: relative; padding: clamp(64px, 9vw, 120px) 0; }
.lp-head { max-width: var(--measure); margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.lp-kicker { display: inline-block; font-size: var(--t-label); font-weight: 600; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.lp-kicker-warn { color: #f87171; }
.lp-h2 { font-family: var(--font-display); font-size: var(--t-h1); font-weight: 700; letter-spacing: var(--track-h); line-height: 1.08; color: var(--text); }
.lp-head-sub { margin-top: 18px; font-size: var(--t-body-lg); color: var(--muted); line-height: 1.62; }
.lp-head-sub a { color: var(--accent); font-weight: 600; }
.lp-head-sub a:hover { text-decoration: underline; }

/* ── Why Tier — incentive bento ──────────────────────────────────────────── */
.lp-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.lp-bento-card { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: 20px; padding: 28px; overflow: hidden; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.lp-bento-card:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--panel-2); }
.lp-bento-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line-2), transparent); }
.lp-bento-lead { grid-column: span 4; display: flex; flex-direction: column; }
.lp-bento-flat { grid-column: span 2; display: flex; flex-direction: column; }
.lp-bento-sm { grid-column: span 2; }
.lp-bento-tag { display: inline-block; align-self: flex-start; font-size: var(--t-caption); font-weight: 600; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--accent-2); background: var(--accent-tint); border: 1px solid var(--accent-line); padding: 5px 11px; border-radius: 999px; margin-bottom: 18px; }
.lp-bento-lead h3 { font-family: var(--font-display); font-size: var(--t-h2); font-weight: 600; letter-spacing: var(--track-h); line-height: 1.12; margin-bottom: 12px; }
.lp-bento-lead p { font-size: var(--t-body); color: var(--muted); line-height: 1.62; max-width: 62ch; }
.lp-bento-flat h3 { font-family: var(--font-display); font-size: var(--t-h3); font-weight: 600; letter-spacing: var(--track-h); margin-bottom: 10px; }
.lp-bento-flat p { font-size: var(--t-sm); color: var(--muted); line-height: 1.6; }
.lp-bento-flat p strong { color: var(--accent-2); font-weight: 700; }
.lp-bento-ic { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; background: var(--accent-tint); border: 1px solid var(--accent-line); color: var(--accent-2); margin-bottom: 18px; }
.lp-bento-ic svg { width: 22px; height: 22px; }
.lp-bento-sm h4 { font-family: var(--font-display); font-size: var(--t-h3); font-weight: 600; letter-spacing: var(--track-h); margin-bottom: 8px; }
.lp-bento-sm p { font-size: var(--t-sm); color: var(--muted); line-height: 1.6; }

/* Margin visual inside the lead tile */
.lp-margin { margin-top: auto; padding-top: 26px; }
.lp-margin-leg { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); }
.lp-margin-leg b { margin-left: auto; font-family: var(--font-display); font-weight: 600; font-variant-numeric: tabular-nums; color: var(--text); }
.lp-margin-dot { width: 9px; height: 9px; border-radius: 50%; }
.lp-margin-dot.in { background: var(--muted-2); }
.lp-margin-dot.out { background: var(--accent); box-shadow: 0 0 8px rgba(245,158,11,.6); }
.lp-margin-bar { display: flex; align-items: stretch; height: 40px; margin: 12px 0; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.lp-margin-cost { flex: 0 0 64%; background: rgba(255,255,255,.06); }
.lp-margin-spread { flex: 1; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #1a1102; background: linear-gradient(180deg, #fbb228, #e58c06); white-space: nowrap; }

/* ── How it works — chunky bricks that fall + stack on scroll (left scene) ── */
/* The stage is a tall SCROLL TRACK; the inner pin sticks to the viewport so the
   section stays put while the scroll drives the fall, then releases once done. */
.lp-stage { position: relative; height: 230vh; }
.lp-stage-pin { position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center; }   /* pinned frame; clips the bricks falling in from above */
.lp-stage-inner { position: relative; z-index: 1; width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 90px); align-items: center; }

/* scene — no glow; bigger bricks, spaced apart like the logo */
.lp-scene { position: relative; height: clamp(380px, 46vw, 560px); display: flex; align-items: center; justify-content: center; }
.lp-stack { position: relative; width: 360px; height: 320px; transform: rotate(-2deg); }

/* each brick is a chunky 2.5D block: a rounded top face + a solid bottom
   "front face" via box-shadow = real visible thickness. JS drives translateY +
   a tumble rotation for the fall; bricks land spaced like the mark. */
.lp-slab { position: absolute; left: 50%; height: 52px; border-radius: 14px;
  margin-left: calc(var(--w) / -2); width: var(--w);
  background: linear-gradient(180deg, var(--c1), var(--c2));
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.6),
    0 var(--th) 0 var(--c3),
    0 calc(var(--th) + 2px) 0 rgba(0,0,0,.28),
    0 calc(var(--th) + 16px) 26px rgba(0,0,0,.5);
  opacity: 0; will-change: transform, opacity;
}
.lp-slab[data-bar="0"] { --w: 188px; --th: 30px; --c1:#eef1f6; --c2:#c2cad4; --c3:#828b97; top: 210px; }
.lp-slab[data-bar="1"] { --w: 256px; --th: 32px; --c1:#f6f9fc; --c2:#cdd4dd; --c3:#8b94a0; top: 108px; }
.lp-slab[data-bar="2"] { --w: 324px; --th: 34px; --c1:#ffd66a; --c2:#f4a01a; --c3:#b9760c; top: 6px;
  box-shadow: inset 0 2px 0 rgba(255,255,255,.6), 0 34px 0 #b9760c, 0 36px 0 rgba(0,0,0,.28), 0 50px 30px rgba(0,0,0,.5); }
.lp-stage.is-in .lp-slab { opacity: 1; }

/* steps — vertical list beside the mark */
.lp-stage-copy { max-width: 520px; }
.lp-stage-lead { margin-top: 14px; font-size: 15px; color: var(--muted-2); }
.lp-stage-steps { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 30px; }
.lp-stage-step { display: flex; gap: 16px; padding: 18px 20px; border-radius: 16px; border: 1px solid var(--line); background: var(--panel);
  opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease, border-color .2s ease; }
.lp-stage-step:hover { border-color: var(--line-2); }
.lp-stage.is-in .lp-stage-step { opacity: 1; transform: none; }
.lp-stage.is-in .lp-stage-step:nth-child(1) { transition-delay: .1s; }
.lp-stage.is-in .lp-stage-step:nth-child(2) { transition-delay: .2s; }
.lp-stage.is-in .lp-stage-step:nth-child(3) { transition-delay: .3s; }
.lp-step-i { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--accent); flex-shrink: 0; padding-top: 2px; }
.lp-stage-step b { display: block; font-family: var(--font-display); font-size: var(--t-h3); font-weight: 600; letter-spacing: var(--track-h); color: var(--text); margin-bottom: 5px; }
.lp-stage-step p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ── Referrals ───────────────────────────────────────────────────────────── */
.lp-referral { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.lp-referral-copy { max-width: none; }
.lp-referral-copy .lp-kicker, .lp-referral-copy .lp-h2 { text-align: left; }
.lp-referral-sub { text-align: left; margin-top: 18px; }
.lp-referral-sub strong { color: var(--text); }
.lp-referral-note { margin-top: 16px; font-size: 14.5px; color: var(--muted); line-height: 1.65; }
.lp-rcard { position: relative; background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--line); border-radius: 20px; padding: 30px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.4); }
.lp-rcard-glow { display: none; }
.lp-rcard > *:not(.lp-rcard-glow) { position: relative; z-index: 1; }
.lp-rcard-eyebrow { display: block; font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.lp-rcard-amount { font-family: var(--font-display); font-size: clamp(40px, 6vw, 52px); font-weight: 700; letter-spacing: -.03em; font-variant-numeric: tabular-nums; line-height: 1; display: flex; align-items: baseline; gap: 3px; }
.lp-rcard-cur { font-size: .55em; font-weight: 600; color: var(--muted); }
.lp-rcard-fee { margin: 16px 0 22px; display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--muted); }
.lp-rcard-pct { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--accent); background: var(--accent-tint); border: 1px solid var(--accent-line); padding: 4px 10px; border-radius: 8px; }
.lp-rcard-payout { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); }
.lp-rcard-payout span { font-size: 14px; color: var(--muted); }
.lp-rcard-payout strong { font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -.02em; font-variant-numeric: tabular-nums; color: #fff; }
.lp-rcard-foot { margin-top: 16px; font-size: 12px; color: var(--muted-2); }

/* ── Straight with you (trust + risk, calm) ──────────────────────────────── */
.lp-honest { background: transparent; }
.lp-honest-inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.lp-honest-copy .lp-kicker, .lp-honest-copy .lp-h2 { text-align: left; }
.lp-honest-copy .lp-h2 { margin-bottom: 18px; }
.lp-honest-copy p { font-size: var(--t-body); color: var(--muted); line-height: 1.72; margin-bottom: 14px; max-width: 62ch; }
.lp-honest-copy p strong { color: var(--text); font-weight: 600; }
.lp-honest-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.lp-honest-links a { font-size: 13.5px; font-weight: 600; color: var(--text); background: var(--panel); border: 1px solid var(--line-2); padding: 10px 18px; border-radius: 999px; transition: border-color .15s ease, color .15s ease, transform .12s ease; }
.lp-honest-links a:hover { border-color: var(--accent-line); color: var(--accent-2); transform: translateY(-2px); }
.lp-honest-promises { list-style: none; display: flex; flex-direction: column; gap: 4px; background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 14px 18px; }
.lp-honest-promises li { display: flex; align-items: center; gap: 12px; padding: 13px 4px; font-size: 14.5px; color: var(--text); border-bottom: 1px solid var(--line); }
.lp-honest-promises li:last-child { border-bottom: none; }
.lp-check { position: relative; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--accent-tint); border: 1px solid var(--accent-line); }
.lp-check::after { content: ''; position: absolute; left: 7px; top: 6px; width: 6px; height: 9px; border-right: 2px solid var(--accent-2); border-bottom: 2px solid var(--accent-2); transform: rotate(40deg); }

/* (The old .lp-why CARD system was deleted. index.html still uses `lp-why` as
   a section MODIFIER, and the dead card rules -- panel bg, 26px padding, hover
   lift, 16.5px h3, 13.5px p -- were silently overriding the section scaffold
   and every bento heading inside it. Nothing may re-style bare `.lp-why`.) */

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.lp-faq-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.lp-faq-head { text-align: left; margin: 0; max-width: none; position: sticky; top: 94px; }
.lp-faq-head .lp-kicker, .lp-faq-head .lp-h2, .lp-faq-head .lp-head-sub { text-align: left; }
.lp-faq-list { display: flex; flex-direction: column; }
.lp-faq-item { border-bottom: 1px solid var(--line); }
.lp-faq-item summary { list-style: none; cursor: pointer; position: relative; padding: 22px 40px 22px 0; font-size: var(--t-body-lg); font-weight: 600; color: var(--text); transition: color .15s ease; }
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after { content: ''; position: absolute; right: 4px; top: 50%; width: 12px; height: 12px; margin-top: -6px; background: linear-gradient(currentColor, currentColor) center/100% 1.6px no-repeat, linear-gradient(currentColor, currentColor) center/1.6px 100% no-repeat; color: var(--muted); transition: transform .25s ease, color .15s ease; }
.lp-faq-item[open] summary::after { transform: rotate(135deg); color: var(--accent); }
.lp-faq-item summary:hover { color: var(--accent-2); }
.lp-faq-item p { padding: 0 20px 24px 0; font-size: var(--t-body); color: var(--muted); line-height: 1.72; }
.lp-faq-item p a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 2px; }

/* ── Final CTA ───────────────────────────────────────────────────────────── */
.lp-cta { position: relative; overflow: hidden; background: transparent; }
.lp-cta-glow { display: none; }
.lp-cta-inner { position: relative; z-index: 1; text-align: center; padding: clamp(68px, 10vw, 120px) 0; }
.lp-cta-mark { margin: 0 auto 24px; filter: drop-shadow(0 6px 20px rgba(245,158,11,.3)); }
.lp-cta-title { font-family: var(--font-display); font-size: var(--t-h1); font-weight: 700; letter-spacing: var(--track-h); line-height: 1.05; }
.lp-cta-sub { margin: 18px auto 32px; font-size: var(--t-body-lg); color: var(--muted); max-width: 32em; }
.lp-cta-actions { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.lp-footer { background: var(--bg); border-top: 1px solid var(--line); padding: clamp(52px, 7vw, 76px) 0 30px; }
.lp-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.lp-brand-foot { margin-bottom: 18px; }
.lp-footer-blurb { font-size: 13.5px; color: var(--muted); line-height: 1.68; max-width: 38em; }
.lp-footer-col h4 { font-size: var(--t-label); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--text); margin-bottom: 15px; }
.lp-footer-col a { display: block; color: var(--muted); font-size: 13.5px; padding: 5px 0; transition: color .15s ease; }
.lp-footer-col a:hover { color: var(--accent-2); }
.lp-footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 12.5px; color: var(--muted-2); }
.lp-footer-bottom a { color: var(--accent-2); }
.lp-footer-bottom a:hover { text-decoration: underline; }

/* ── Reveal ──────────────────────────────────────────────────────────────── */
.lp [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.22,1,.36,1) var(--d, 0ms), transform .7s cubic-bezier(.22,1,.36,1) var(--d, 0ms); }
.lp [data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .lp [data-reveal] { opacity: 1; transform: none; transition: none; }
  .lp *, .lp *::before, .lp *::after { transition: none !important; animation: none !important; }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lp-bento { grid-template-columns: repeat(4, 1fr); }
  .lp-bento-lead { grid-column: span 4; }
  .lp-bento-flat { grid-column: span 2; }
  .lp-bento-sm { grid-column: span 2; }
}
@media (max-width: 820px) {
  /* phones: no pin — normal-height single column, scene on top, scaled to fit */
  .lp-stage { height: auto; }
  .lp-stage-pin { position: static; height: auto; overflow: visible;
    display: block; padding: clamp(56px, 12vw, 96px) 0; }
  /* minmax(0,..) so the fixed-width brick stack can't force the column past the viewport */
  .lp-stage-inner { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  /* scale the STACK (not the scene) so the bricks never get clipped */
  .lp-scene { height: clamp(250px, 66vw, 320px); transform: none; order: -1; min-width: 0; overflow: visible; }
  .lp-stack { transform: scale(.74) rotate(-2deg); }
  .lp-stage-copy { max-width: none; min-width: 0; }

  /* phones: staggered drop-in on reveal (JS just toggles .is-in) */
  .lp-slab { transform: translateY(-46px); transition: transform .62s cubic-bezier(.22,.85,.26,1), opacity .42s ease; }
  .lp-stage.is-in .lp-slab { transform: translateY(0); }
  .lp-stage.is-in .lp-slab[data-bar="0"] { transition-delay: .04s; }
  .lp-stage.is-in .lp-slab[data-bar="1"] { transition-delay: .17s; }
  .lp-stage.is-in .lp-slab[data-bar="2"] { transition-delay: .31s; }
}
@media (max-width: 900px) {
  .lp-nav, .lp-link-quiet { display: none; }
  .lp .lp-header-login { display: none; }
  .lp-burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 11px; background: var(--panel); cursor: pointer; padding: 0 12px; }
  .lp-burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform .22s ease, opacity .22s ease; }
  .lp-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .lp-burger.is-open span:nth-child(2) { opacity: 0; }
  .lp-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* hero → stack: copy, then the desk centered beneath */
  .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero-copy { max-width: 640px; }
  .lp-desk { justify-self: center; max-width: 520px; }

  .lp-referral { grid-template-columns: 1fr; }
  .lp-rcard { max-width: 480px; }
  .lp-honest-inner { grid-template-columns: 1fr; gap: 28px; }
  .lp-faq-grid { grid-template-columns: 1fr; }
  .lp-faq-head { position: static; }
}
@media (max-width: 680px) {
  .lp-bento { grid-template-columns: 1fr 1fr; }
  .lp-bento-lead, .lp-bento-flat, .lp-bento-sm { grid-column: span 2; }
}
@media (max-width: 560px) {
  /* desk: tighten columns, drop the wholesale column to keep numbers readable */
  .lp-desk-cols, .lp-row { grid-template-columns: 1.4fr 1fr 1fr; }
  .lp-desk-cols span:nth-child(2), .lp-row-w { display: none; }
  .lp-row, .lp-desk-cols { padding-left: 14px; padding-right: 14px; }
}
@media (max-width: 620px) {
  /* footer: brand on top, then the two link columns side-by-side (shorter) */
  .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .lp-footer-brand { grid-column: 1 / -1; }
  .lp-hero-cta .lp-btn, .lp-cta-actions .lp-btn { width: 100%; }
  /* stats: even 2-up grid so the dividers don't break across wraps */
  .lp-hero-stats { display: grid; grid-template-columns: repeat(2, max-content); gap: 18px 28px; }
  .lp-hero-stats > div { padding: 0; border-left: none; }

  /* Ascending bars → clean horizontal rows with the real crest leading */
}
@media (max-width: 440px) {
  .lp-bento { grid-template-columns: 1fr; }
  .lp-bento-lead, .lp-bento-flat, .lp-bento-sm { grid-column: span 1; }
}

/* ── Mobile density + polish (tighter rhythm on phones/tablets) ───────────── */
@media (max-width: 768px) {
  .lp-section { padding: clamp(48px, 10vw, 68px) 0; }
  .lp-head { margin-bottom: clamp(28px, 6vw, 40px); }
  .lp-bento { gap: 14px; }
  .lp-bento-card { padding: 22px; border-radius: 16px; }
  .lp-honest, .lp-honest-inner { gap: 24px; }
  /* comfy tap targets in the footer */
  .lp-footer-col a { padding: 7px 0; }
}
/* ════════════════════════════════════════════════════════════════════════════
   MOBILE OVERHAUL (<=600px) — tight, clean, app-like. Most users are here.
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  /* — global rhythm: cut the airy desktop spacing — */
  .lp-section { padding: 46px 0; }
  .lp-head { margin-bottom: 26px; text-align: left; }
  .lp-head, .lp-faq-head { max-width: none; }
  .lp-kicker { margin-bottom: 10px; }
  .lp-head-sub { margin-top: 11px; line-height: 1.55; }

  /* — hero — */
  .lp-hero { padding: 24px 0 46px; }
  .lp-hero-grid { gap: 28px; }
  .lp-h1 { margin-bottom: 16px; }
  .lp-lede { line-height: 1.6; margin-bottom: 22px; }
  .lp-hero-cta { gap: 10px; margin-bottom: 22px; }

  /* hero stats: hidden on phones (the CTA + desk carry the pitch) */
  .lp-hero-stats { display: none; }

  /* desk: more compact (fewer rows, tighter) */
  .lp-desk { --row-h: 50px; --rows-shown: 4; border-radius: 14px; max-width: 100%; }
  .lp-desk-head { padding: 13px 15px; }
  .lp-desk-foot { padding: 12px 15px; }
  .lp-desk-cols { padding-top: 9px; padding-bottom: 9px; }

  /* — how it works: tighter steps (scene height handled above, no clipping) — */
  .lp-stage-pin { padding: 38px 0; }
  .lp-stage-steps { gap: 10px; margin-top: 22px; }
  .lp-stage-step { padding: 15px 16px; }

  /* — WHY: tighter bento; feature cards become a clean icon+text row — */
  .lp-bento { gap: 12px; }
  .lp-bento-card { padding: 20px; border-radius: 16px; }
  .lp-bento-tag { margin-bottom: 14px; }
  .lp-bento-sm { display: grid; grid-template-columns: 42px 1fr; column-gap: 14px; row-gap: 0; align-items: center; }
  .lp-bento-sm .lp-bento-ic { grid-row: 1 / 3; align-self: center; width: 42px; height: 42px; margin-bottom: 0; border-radius: 11px; }
  .lp-bento-sm .lp-bento-ic svg { width: 20px; height: 20px; }
  .lp-bento-sm h4 { align-self: end; margin-bottom: 0; font-size: 16px; }
  .lp-bento-sm p { align-self: start; margin-top: 4px; font-size: 13px; line-height: 1.5; }
  .lp-margin { padding-top: 20px; }

  /* — REFERRALS: kill the decorative glow, clean card — */
  .lp-referral { gap: 22px; }
  .lp-rcard { padding: 22px; border-radius: 16px; }
  .lp-rcard-glow { display: none; }
  .lp-rcard-amount { font-size: 40px; }
  .lp-referral-note { font-size: 13px; }

  /* — HONEST: tighter list + full-width link chips — */
  .lp-honest-inner { gap: 20px; }
  .lp-honest p { font-size: 14.5px; line-height: 1.6; }
  .lp-honest-links { gap: 8px; margin-top: 20px; }
  .lp-honest-links a { padding: 9px 15px; font-size: 13px; }
  .lp-honest-promises { gap: 0; padding: 6px 16px; }
  .lp-honest-promises li { padding: 12px 0; font-size: 14px; }

  /* — FAQ — */
  .lp-faq-grid { gap: 20px; }
  .lp-faq-item summary { font-size: 15px; padding: 16px 0; }
  .lp-faq-item p { font-size: 14px; }

  /* — final CTA — */
  .lp-cta-inner { padding: 54px 0; }
  .lp-cta-sub { font-size: 15px; }

  /* — footer — */
  .lp-footer { padding-top: 42px; }
  .lp-footer-blurb { font-size: 13px; }
  .lp-footer-bottom { font-size: 12px; gap: 10px; }

  /* — DEFINITION: lift every surface off the near-black bg so each section
       reads as a distinct block, not one dark void. Bumping the shared
       tokens lifts all cards (bento, steps, tier bars, estimator, referral,
       promises) at once. Plus hairline separators between sections. — */
  body.lp { --panel: rgba(255,255,255,.05); --panel-2: rgba(255,255,255,.07); --line: rgba(255,255,255,.11); }
  /* (seamless — no per-section borders on mobile) */
}

/* ════════════════════════════════════════════════════════════════════════════
   MOBILE-NATIVE SECTIONS — purpose-built blocks shown <=768px in place of the
   desktop bento / scroll-bricks / tier-chart. Desktop (>768) is untouched.
   ════════════════════════════════════════════════════════════════════════════ */
.lp-mob-only { display: none; }
@media (max-width: 768px) {
  .lp-desk-only { display: none !important; }
  .lp-mob-only { display: block; }
}

/* These only ever render <=768, so plain (clamped) CSS — no media query needed. */
.lp-msec { padding: clamp(42px, 11vw, 56px) var(--pad); }
.lp-msec > .lp-kicker { display: inline-block; margin-bottom: 8px; }
.lp-mh2 { font-family: var(--font-display); font-size: var(--t-h1); font-weight: 700; letter-spacing: var(--track-h); line-height: 1.08; color: var(--text); }
.lp-msub { color: var(--muted); font-size: 15px; line-height: 1.6; margin-top: 11px; max-width: 42ch; }

/* WHY — spread proof card + value list */
.lp-mspread { margin-top: 22px; background: var(--panel-2); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; }
.lp-mspread-tag { display: block; font-size: var(--t-micro); font-weight: 600; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--muted-2); margin-bottom: 12px; }
.lp-mspread-line { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.lp-mspread-line b { color: var(--text); font-family: var(--font-display); font-variant-numeric: tabular-nums; font-weight: 600; }
.lp-mspread-out { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding: 12px 14px; border-radius: 12px; background: rgba(52,211,153,.09); border: 1px solid rgba(52,211,153,.22); }
.lp-mspread-out span { font-size: 13px; font-weight: 600; color: var(--text); }
.lp-mspread-out strong { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -.02em; color: var(--t-emerald); font-variant-numeric: tabular-nums; }

.lp-mvalues { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.lp-mvalues li { display: flex; align-items: center; gap: 13px; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 13px 15px; }
.lp-mv-ic { flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: var(--accent-tint); border: 1px solid var(--accent-line); color: var(--accent-2); }
.lp-mv-ic svg { width: 20px; height: 20px; }
.lp-mvalues li > div { min-width: 0; }
.lp-mvalues b { display: block; font-family: var(--font-display); font-size: 15.5px; font-weight: 600; letter-spacing: -.01em; }
.lp-mvalues p { font-size: 13px; color: var(--muted); line-height: 1.45; margin-top: 2px; }

/* HOW — clean numbered steps (no bricks, no scroll animation) */
.lp-msteps { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 11px; }
.lp-msteps li { display: flex; gap: 14px; align-items: flex-start; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.lp-mstep-n { flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--accent-2); background: var(--accent-tint); border: 1px solid var(--accent-line); }
.lp-msteps b { display: block; font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 3px; letter-spacing: -.01em; }
.lp-msteps p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.lp-mstep-cta { margin-top: 18px; width: 100%; }

/* ════════════════════════════════════════════════════════════════════════════
   PARTNERS PAGE + DECK SYSTEM  (the /partners campaign page + shared upgrades)
   Extends the .lp system with the presentation-deck language: per-section radial
   auras, semantic earn/cool/risk accents, the three-ways-to-earn grid, leadership
   pools, the rank ladder, roadmap, 20% payout math, and a dark legal shell.
   ════════════════════════════════════════════════════════════════════════════ */

/* extra semantic accents (merge into the body.lp custom-property set) */
body.lp {
  --earn:      #34d399;   /* emerald — earnings / positive */
  --earn-2:    #6ee7b7;
  --earn-tint: rgba(52,211,153,0.10);
  --earn-line: rgba(52,211,153,0.26);
  --cool:      #60a5fa;   /* blue — secondary */
  --cool-tint: rgba(96,165,250,0.10);
  --cool-line: rgba(96,165,250,0.26);
  --risk:      #f87171;   /* red — "the old way" / caution */
  --risk-tint: rgba(248,113,113,0.09);
  --risk-line: rgba(248,113,113,0.24);
}

.lp-section > .lp-shell { position: relative; z-index: 1; }

@keyframes lpFloaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.lp-floaty { animation: lpFloaty 5s ease-in-out infinite; }

.lp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--earn); box-shadow: 0 0 8px var(--earn); }

/* ── Live stat strip (public income-disclosure) ───────────────────────────── */
.lp-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden; margin: 0 auto; }
.lp-strip > div { background: var(--bg); padding: 22px 24px; text-align: center; }
.lp-strip dt { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -.02em; color: var(--text); font-variant-numeric: tabular-nums; }
.lp-strip > div:first-child dt { color: var(--accent-2); }
.lp-strip dd { font-size: 12.5px; color: var(--muted-2); margin-top: 5px; }
.lp-strip-note { text-align: center; font-size: 12.5px; color: var(--muted-2); margin-top: 16px; }

/* ── Three ways to earn ───────────────────────────────────────────────────── */
.lp-earn { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lp-earn-card { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: 20px; padding: 30px 28px; overflow: hidden; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.lp-earn-card:hover { transform: translateY(-4px); border-color: var(--c-line, var(--line-2)); background: var(--panel-2); }
.lp-earn-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 2px; background: linear-gradient(90deg, transparent, var(--c, var(--accent)), transparent); opacity: .7; }
.lp-earn-ic { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--c-tint, var(--accent-tint)); border: 1px solid var(--c-line, var(--accent-line)); color: var(--c, var(--accent-2)); margin-bottom: 20px; }
.lp-earn-ic svg { width: 24px; height: 24px; }
.lp-earn-card h3 { font-family: var(--font-display); font-size: var(--t-h3); font-weight: 600; letter-spacing: var(--track-h); margin-bottom: 10px; }
.lp-earn-card p { font-size: 14.5px; color: var(--muted); line-height: 1.62; }
.lp-earn-card .lp-earn-amt { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--c, var(--accent-2)); margin-top: 16px; display: inline-block; }
.lp-earn-card.is-amber   { --c: var(--accent-2); --c-tint: var(--accent-tint); --c-line: var(--accent-line); }
.lp-earn-card.is-cool    { --c: var(--cool); --c-tint: var(--cool-tint); --c-line: var(--cool-line); }
.lp-earn-card.is-earn    { --c: var(--earn); --c-tint: var(--earn-tint); --c-line: var(--earn-line); }

/* ── Direct referral bonus — interactive example ──────────────────────────── */
.lp-bonus { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.lp-bonus-copy .lp-kicker, .lp-bonus-copy .lp-h2 { text-align: left; }
.lp-bonus-copy .lp-head-sub { text-align: left; margin-top: 16px; }
.lp-bonus-card { background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--line); border-radius: 22px; padding: 30px; box-shadow: 0 30px 70px rgba(0,0,0,.4); }
.lp-bonus-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.lp-bonus-row:first-of-type { padding-top: 4px; }
.lp-bonus-row span { font-size: 14.5px; color: var(--muted); }
.lp-bonus-row b { font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: -.02em; color: var(--text); font-variant-numeric: tabular-nums; }
.lp-bonus-out { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; padding: 18px 20px; border-radius: 14px; background: var(--earn-tint); border: 1px solid var(--earn-line); }
.lp-bonus-out span { font-size: 14px; font-weight: 600; color: var(--text); }
.lp-bonus-out strong { font-family: var(--font-display); font-size: 30px; font-weight: 700; letter-spacing: -.02em; color: var(--earn); font-variant-numeric: tabular-nums; }
.lp-bonus-pick { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.lp-bonus-pick button { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--muted); background: var(--panel); border: 1px solid var(--line-2); border-radius: 999px; padding: 8px 15px; cursor: pointer; transition: all .15s ease; font-variant-numeric: tabular-nums; }
.lp-bonus-pick button:hover { color: var(--text); border-color: var(--accent-line); }
.lp-bonus-pick button.is-on { color: #1a1102; background: linear-gradient(180deg, #fbb228, #e58c06); border-color: transparent; }
.lp-bonus-once { margin-top: 14px; font-size: 12.5px; color: var(--muted-2); }

/* ── Leadership pools ─────────────────────────────────────────────────────── */
.lp-pools { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.lp-pool { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 22px 18px; text-align: center; overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.lp-pool:hover { transform: translateY(-4px); border-color: var(--rank-line, var(--line-2)); }
.lp-pool-crest { width: 52px; height: 52px; margin: 0 auto 14px; }
.lp-pool-crest svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 4px 10px rgba(0,0,0,.45)); }
.lp-pool-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: -.01em; color: var(--text); }
.lp-pool-pct { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -.02em; color: var(--rank, var(--accent-2)); margin-top: 6px; }
.lp-pool-pct span { font-size: .5em; color: var(--muted-2); font-weight: 600; }
.lp-pool-sub { font-size: 11.5px; color: var(--muted-2); margin-top: 4px; }
.lp-pools-foot { text-align: center; margin-top: 22px; font-size: 14.5px; color: var(--muted); }
.lp-pools-foot b { color: var(--text); font-family: var(--font-display); }

/* rank color ramp (Builder→Founder) */
.lp-r-builder    { --rank: #d8a878; --rank-line: rgba(216,168,120,.4); }
.lp-r-director   { --rank: #c2cad6; --rank-line: rgba(194,202,214,.4); }
.lp-r-executive  { --rank: #e6bb47; --rank-line: rgba(230,187,71,.45); }
.lp-r-ambassador { --rank: #62c4ea; --rank-line: rgba(98,196,234,.42); }
.lp-r-founder    { --rank: #34d399; --rank-line: rgba(52,211,153,.42); }

/* split explainer (pool ÷ qualified) */
.lp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 1100px; margin: 34px auto 0; }
.lp-split-card { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 24px; text-align: center; }
.lp-split-eq { font-size: 14px; color: var(--muted); }
.lp-split-eq b { color: var(--text); font-family: var(--font-display); }
.lp-split-res { font-family: var(--font-display); font-size: clamp(28px, 4vw, 38px); font-weight: 700; letter-spacing: -.02em; color: var(--earn); margin-top: 10px; font-variant-numeric: tabular-nums; }
.lp-split-res span { font-size: .42em; color: var(--muted-2); font-weight: 600; display: block; margin-top: 4px; letter-spacing: 0; }

/* ── Rank ladder table ────────────────────────────────────────────────────── */
.lp-ladder { margin: 0 auto; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: var(--panel); }
.lp-ladder-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.6fr; align-items: center; gap: 16px; padding: 18px 24px; border-bottom: 1px solid var(--line); }
.lp-ladder-row:last-child { border-bottom: none; }
.lp-ladder-row.head { background: rgba(255,255,255,.02); }
.lp-ladder-row.head span { font-size: var(--t-caption); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--muted-2); }
.lp-ladder-rank { display: flex; align-items: center; gap: 13px; }
.lp-ladder-crest { width: 38px; height: 38px; flex-shrink: 0; }
.lp-ladder-crest svg { width: 100%; height: 100%; display: block; }
.lp-ladder-rank b { font-family: var(--font-display); font-size: var(--t-h3); font-weight: 600; letter-spacing: var(--track-h); color: var(--text); }
.lp-ladder-num { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }
.lp-ladder-num small { display: block; font-size: 11.5px; font-weight: 500; color: var(--muted-2); letter-spacing: 0; font-family: var(--font-sans); margin-top: 2px; }
.lp-ladder-maint { font-size: 13.5px; color: var(--muted); }
.lp-ladder-foot { max-width: var(--measure); margin: 18px auto 0; font-size: 13.5px; color: var(--muted); line-height: 1.6; text-align: center; }
.lp-ladder-foot strong { color: var(--text); }

/* ── Founder illustrative example ─────────────────────────────────────────── */
.lp-illus { max-width: 1000px; margin: 0 auto; background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--earn-line); border-radius: 22px; padding: 34px clamp(26px, 4vw, 48px); position: relative; overflow: hidden; }
.lp-illus-tag { display: inline-block; font-size: var(--t-caption); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--earn); background: var(--earn-tint); border: 1px solid var(--earn-line); padding: 5px 12px; border-radius: 999px; margin-bottom: 20px; }
.lp-illus-line { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; color: var(--muted); }
.lp-illus-line b { font-family: var(--font-display); font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; }
.lp-illus-total { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 6px; }
.lp-illus-total span { font-size: 15px; font-weight: 600; color: var(--text); }
.lp-illus-total strong { font-family: var(--font-display); font-size: clamp(28px, 4vw, 36px); font-weight: 700; letter-spacing: -.02em; color: var(--earn); font-variant-numeric: tabular-nums; }
.lp-illus-disc { margin-top: 18px; font-size: 12.5px; color: var(--muted-2); line-height: 1.6; }

/* ── 20% payout breakdown ─────────────────────────────────────────────────── */
.lp-payout { max-width: 1100px; margin: 0 auto; }
.lp-payout-bar { display: flex; height: 64px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line-2); }
.lp-payout-seg { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: #08080a; font-family: var(--font-display); position: relative; }
.lp-payout-seg b { font-size: 18px; font-weight: 700; }
.lp-payout-seg span { font-size: 11px; font-weight: 600; opacity: .8; }
.lp-payout-seg.direct { flex: 5; background: linear-gradient(180deg, #fbd24e, #f0a823); }
.lp-payout-seg.pools  { flex: 10; background: linear-gradient(180deg, #6ee7b7, #2bb583); }
.lp-payout-seg.bonus  { flex: 5; background: linear-gradient(180deg, #93c5fd, #4f93e8); }
.lp-payout-legend { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 22px; font-size: 13.5px; color: var(--muted); }
.lp-payout-legend span { display: inline-flex; align-items: center; gap: 8px; }
.lp-payout-legend i { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.lp-payout-cap { text-align: center; margin-top: 26px; font-family: var(--font-display); font-size: clamp(18px, 2.4vw, 22px); font-weight: 600; color: var(--text); }
.lp-payout-cap b { color: var(--accent-2); }

/* ── Game tiles (partners marquee) ────────────────────────────────────────── */
.lp-game { position: relative; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; padding: 26px 16px; background: var(--panel); border: 1px solid var(--line); border-radius: 18px; transition: transform .2s ease, border-color .2s ease; }
.lp-game:hover { transform: translateY(-4px); border-color: var(--line-2); }
.lp-game img { width: 60px; height: 60px; object-fit: contain; border-radius: 14px; }
.lp-game b { font-family: var(--font-display); font-size: 14.5px; font-weight: 600; color: var(--text); }
.lp-game-status { font-size: var(--t-micro); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; padding: 4px 9px; border-radius: 999px; }
.lp-game-status.live { color: var(--earn); background: var(--earn-tint); border: 1px solid var(--earn-line); }
.lp-game-status.soon { color: var(--muted-2); background: var(--panel-2); border: 1px solid var(--line); }
.lp-game.is-live { border-color: var(--earn-line); box-shadow: 0 0 0 1px var(--earn-line), 0 0 36px rgba(52,211,153,.1); }

/* ── Pricing flow — the 2.5x deal as one diagram (how-it-works, index) ────── */
.lp-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1.2fr; align-items: stretch; gap: 12px; margin: 28px 0 0; }
.lp-flow-node { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 22px 20px; text-align: center; display: flex; flex-direction: column; justify-content: center; gap: 6px; min-width: 0; }
.lp-flow-node.is-out { border-color: var(--earn-line); background: var(--earn-tint); }
.lp-flow-k { font-size: var(--t-micro); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--muted-2); }
.lp-flow-v { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); font-weight: 700; letter-spacing: var(--track-h); font-variant-numeric: tabular-nums; color: var(--text); line-height: 1.1; }
.lp-flow-node.is-out .lp-flow-v { color: var(--earn); }
.lp-flow-s { font-size: var(--t-sm); color: var(--muted); }
.lp-flow-arrow { align-self: center; color: var(--muted-2); display: flex; }
.lp-flow-arrow svg { width: 22px; height: 22px; }
.lp-flow-cap { font-size: var(--t-label); color: var(--muted-2); line-height: 1.6; margin-top: 14px; }
@media (max-width: 680px) {
  .lp-flow { grid-template-columns: 1fr; gap: 8px; }
  .lp-flow-arrow { transform: rotate(90deg); justify-self: center; padding: 2px 0; }
}

/* ── Horizontal-scroll guard for tables on phones ─────────────────────────── */
.lp-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.lp-table-scroll table { min-width: 560px; }
/* Legal/disclosure tables may be JS-injected, so no wrapper is guaranteed:
   at phone widths the table itself becomes the scroll container. */
@media (max-width: 600px) {
  .lp-legal-table, .lp-disc-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ── Product gallery — marquee of real catalog renders (index) ────────────── */
.lp-gallery-note { text-align: center; font-size: var(--t-label); color: var(--muted-2); margin-top: 18px; }
.lp-item { flex: none; width: 172px; background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 18px 14px 16px; text-align: center; }
.lp-item img { width: 92px; height: 92px; object-fit: contain; margin: 0 auto 12px; filter: drop-shadow(0 12px 20px rgba(0,0,0,.5)); }
.lp-item b { display: block; font-family: var(--font-display); font-size: var(--t-sm); font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-item-sub { display: block; font-size: var(--t-caption); color: var(--muted-2); margin-top: 2px; font-variant-numeric: tabular-nums; }
.lp-item-spread { display: inline-block; margin-top: 9px; font-size: var(--t-caption); font-weight: 700; color: var(--t-emerald); background: rgba(52,211,153,.09); border: 1px solid rgba(52,211,153,.2); padding: 3px 9px; border-radius: 7px; font-variant-numeric: tabular-nums; }

/* ════════════════════════════════════════════════════════════════════════════
   DARK LEGAL SHELL — migrates the light styles.css legal/content pages onto .lp
   ════════════════════════════════════════════════════════════════════════════ */
.lp-legal { max-width: 800px; margin: 0 auto; padding: clamp(48px, 7vw, 80px) var(--pad) clamp(60px, 9vw, 100px); }
.lp-legal h1 { font-family: var(--font-display); font-size: var(--t-h1); font-weight: 700; letter-spacing: var(--track-h); line-height: 1.08; margin-bottom: 10px; }
.lp-legal-date { font-size: var(--t-sm); color: var(--muted-2); margin-bottom: 28px; }
.lp-legal h2 { font-family: var(--font-display); font-size: var(--t-h2); font-weight: 600; letter-spacing: var(--track-h); margin: 38px 0 14px; color: var(--text); }
.lp-legal h3 { font-family: var(--font-display); font-size: var(--t-h3); font-weight: 600; margin: 24px 0 8px; color: var(--text); }
.lp-legal p { font-size: var(--t-body); color: var(--muted); line-height: 1.72; margin-bottom: 14px; }
.lp-legal p strong { color: var(--text); font-weight: 600; }
.lp-legal a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 2px; }
.lp-legal ul, .lp-legal ol { margin: 0 0 16px 22px; line-height: 1.7; color: var(--muted); }
.lp-legal li { margin-bottom: 7px; }
.lp-legal li strong, .lp-legal li b { color: var(--text); }
.lp-legal em { color: var(--text); font-style: italic; }
.lp-counsel { background: var(--accent-tint); border: 1px solid var(--accent-line); border-radius: 14px; padding: 16px 20px; font-size: 13.5px; color: var(--text); line-height: 1.6; margin-bottom: 28px; }
.lp-counsel strong { color: var(--accent-2); }
/* quiet callout box for prose pages (notes, worked examples) */
.lp-note { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; margin: 6px 0 18px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.lp-note strong { color: var(--text); }
.lp-legal-table { width: 100%; border-collapse: collapse; margin: 0 0 18px; font-size: 14px; }
.lp-legal-table th, .lp-legal-table td { border: 1px solid var(--line-2); padding: 10px 12px; text-align: left; vertical-align: top; color: var(--muted); }
.lp-legal-table th { background: rgba(255,255,255,.03); color: var(--text); font-weight: 600; }
.lp-legal-fine { font-size: 13px; color: var(--muted-2); }
.lp-legal-back { display: inline-block; margin-top: 32px; color: var(--accent-2); font-weight: 600; }

/* dark income-disclosure stats */
.lp-disc-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin: 22px 0; }
.lp-disc-stat { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 20px; text-align: center; }
.lp-disc-stat dt { font-size: 12px; color: var(--muted-2); margin-bottom: 8px; letter-spacing: .02em; }
.lp-disc-stat dd { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -.02em; color: var(--text); font-variant-numeric: tabular-nums; }
.lp-disc-table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; }
.lp-disc-table th, .lp-disc-table td { border: 1px solid var(--line-2); padding: 10px 12px; text-align: left; color: var(--muted); }
.lp-disc-table th { background: rgba(255,255,255,.03); color: var(--text); font-weight: 600; }
.lp-disc-bar { height: 8px; border-radius: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }

/* ── Partners responsive ──────────────────────────────────────────────────── */
@media (max-width: 920px) {
  .lp-earn { grid-template-columns: 1fr; }
  .lp-bonus { grid-template-columns: 1fr; }
  .lp-bonus-copy .lp-kicker, .lp-bonus-copy .lp-h2, .lp-bonus-copy .lp-head-sub { text-align: left; }
  .lp-pools { grid-template-columns: repeat(2, 1fr); }
  .lp-pools .lp-pool:last-child { grid-column: 1 / -1; }
  .lp-compare { grid-template-columns: 1fr; }
  .lp-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  /* rank ladder → stacked cards */
  .lp-ladder { background: transparent; border: none; }
  .lp-ladder-row { grid-template-columns: 1fr 1fr; gap: 6px 16px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; margin-bottom: 12px; background: var(--panel); }
  .lp-ladder-row.head { display: none; }
  .lp-ladder-rank { grid-column: 1 / -1; margin-bottom: 8px; }
  .lp-ladder-num small { display: inline; margin-left: 4px; }
  .lp-ladder-maint { grid-column: 1 / -1; padding-top: 8px; border-top: 1px solid var(--line); margin-top: 4px; }
  .lp-ladder-cell-label { display: block; font-size: var(--t-micro); font-weight: 700; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--muted-2); margin-bottom: 3px; }
  .lp-split { grid-template-columns: 1fr; }
  .lp-bonus-out strong { font-size: 26px; }
}
@media (max-width: 560px) {
  .lp-pools { grid-template-columns: 1fr 1fr; }
  .lp-strip { grid-template-columns: 1fr 1fr; }
  .lp-payout-seg b { font-size: 15px; }
  .lp-payout-seg span { font-size: 10.5px; }
}
.lp-ladder-cell-label { display: none; }

/* ════════════════════════════════════════════════════════════════════════════
   REDESIGN v2 — deck-faithful hero, cinematic visuals, richer motion
   (hybrid hero: person + 3D logo + floating items; lifestyle bands; portrait
   grid; device mockup; directional reveals; parallax; pin-scroll; marquee.)
   ════════════════════════════════════════════════════════════════════════════ */

/* — amber highlight-box on a key word (the deck's signature "Profit." treatment) — */
.lp-hl { position: relative; display: inline-block; color: #1a1102; padding: 0 .18em; border-radius: 10px;
  background: linear-gradient(180deg, #fbd24e, #f0a823); box-shadow: 0 6px 22px rgba(245,158,11,.32), inset 0 1px 0 rgba(255,255,255,.45);
  transform: rotate(-1.2deg); white-space: nowrap; }
.lp-hl.emerald { color: #042a1c; background: linear-gradient(180deg, #6ee7b7, #2bb583); box-shadow: 0 6px 22px rgba(52,211,153,.3), inset 0 1px 0 rgba(255,255,255,.4); }

/* ── Partners hero — copy + one framed person panel. This block IS the final
      geometry: the old v2/v3/v4 override stack (which won by source order and
      made the hero unreasonable to debug) was collapsed into it. ──────────── */
.lp-cine { position: relative; padding: clamp(56px, 8vh, 116px) 0 clamp(48px, 7vw, 96px); }
.lp-cine-shell { max-width: 1780px; padding-inline: clamp(18px, 3.2vw, 58px); }
.lp-cine-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 540px); gap: clamp(30px, 4vw, 72px); align-items: center; }
.lp-cine-copy { max-width: 840px; }
.lp-h1-dim { color: var(--muted-2); }
.lp-cine-lede { font-size: var(--t-body-lg); color: var(--muted); line-height: 1.66; max-width: 48ch; margin-bottom: 32px; }
.lp-cine-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.lp .lp-btn-xl { padding: 18px 34px; font-size: 17px; border-radius: 14px; }

/* one clean framed person panel — no floating items, no glow */
.lp-cine-right { display: flex; flex-direction: column; gap: clamp(16px, 1.8vw, 24px); }
.lp-cine-panel { position: relative; width: 100%; max-width: 460px; margin-left: auto; aspect-ratio: 4 / 5;
  border: 1px solid var(--line-2); border-radius: 28px; overflow: hidden; background: #0e0e12;
  box-shadow: 0 40px 90px rgba(0,0,0,.5); }
.lp-cine-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; }
.lp-cine-panel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgba(8,8,10,.82)); }

/* ── Parallax (JS sets --mx/--my from pointer, --sy from scroll) ──────────── */
.lp-px { transition: transform .18s cubic-bezier(.22,1,.36,1); will-change: transform; }
.lp-px { transform: translate3d(calc(var(--mx,0) * var(--d,10px)), calc(var(--my,0) * var(--d,10px) + var(--sy,0px)), 0); }

/* ── Directional reveals ─────────────────────────────────────────────────── */
.lp-rv { opacity: 0; transition: opacity .75s cubic-bezier(.22,1,.36,1) var(--d,0ms), transform .75s cubic-bezier(.22,1,.36,1) var(--d,0ms); will-change: transform, opacity; }
.lp-rv[data-rv="up"]    { transform: translateY(34px); }
.lp-rv[data-rv="left"]  { transform: translateX(-44px); }
.lp-rv[data-rv="right"] { transform: translateX(44px); }
.lp-rv[data-rv="scale"] { transform: scale(.93); }
.lp-rv.is-in { opacity: 1; transform: none; }

/* ── Lifestyle band — contained, rounded feature card aligned to the rail ── */
.lp-band { position: relative; padding: clamp(28px, 4vw, 56px) 0; }
.lp-band-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: stretch; min-height: clamp(360px, 42vw, 520px);
  border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: var(--panel); }
.lp-band.rev .lp-band-grid { grid-template-columns: .98fr 1.02fr; }
.lp-band.rev .lp-band-media { order: 2; }
.lp-band.rev .lp-band-copy { order: 1; }
.lp-band-media { position: relative; overflow: hidden; min-height: 280px; }
.lp-band-media img { position: absolute; inset: 0; width: 100%; height: 114%; top: -7%; object-fit: cover; will-change: transform; }
.lp-band-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 4.5vw, 72px) clamp(28px, 4vw, 64px); }
.lp-band-copy .lp-kicker, .lp-band-copy .lp-h2 { text-align: left; }
.lp-band-copy .lp-h2 { font-size: clamp(28px, 4vw, 44px); }
.lp-band-copy p { margin-top: 16px; font-size: clamp(15px, 1.7vw, 17.5px); color: var(--muted); line-height: 1.7; max-width: 42ch; }
.lp-band-pts { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.lp-band-pts li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--text); }
.lp-band-pts .lp-check { flex-shrink: 0; }

/* ── "Built for people who want to sell" — portrait grid ─────────────────── */
.lp-who { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lp-who-card { position: relative; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; border: 1px solid var(--line-2); background: #0f0f13; }
.lp-who-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.lp-who-card:hover img { transform: scale(1.05); }
.lp-who-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,8,10,.86)); }
.lp-who-cap { position: absolute; left: 16px; bottom: 14px; z-index: 1; }
.lp-who-cap b { display: block; font-family: var(--font-display); font-size: 16px; font-weight: 600; color: #fff; }
.lp-who-cap span { font-size: 12.5px; color: var(--muted); }

/* ── Marquee (auto-scroll roadmap / logos) ───────────────────────────────── */
.lp-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.lp-marquee-track { display: flex; gap: 14px; width: max-content; animation: lpMarquee 38s linear infinite; }
.lp-marquee:hover .lp-marquee-track { animation-play-state: paused; }
@keyframes lpMarquee { to { transform: translateX(-50%); } }

/* ── Pin-scroll pools (assemble on scroll) ───────────────────────────────── */
.lp-poolpin .lp-pool { opacity: 0; transform: translateY(40px) scale(.96); transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1); }
.lp-poolpin.is-in .lp-pool { opacity: 1; transform: none; }
.lp-poolpin.is-in .lp-pool:nth-child(1) { transition-delay: .05s; }
.lp-poolpin.is-in .lp-pool:nth-child(2) { transition-delay: .15s; }
.lp-poolpin.is-in .lp-pool:nth-child(3) { transition-delay: .25s; }
.lp-poolpin.is-in .lp-pool:nth-child(4) { transition-delay: .35s; }
.lp-poolpin.is-in .lp-pool:nth-child(5) { transition-delay: .45s; }

@media (prefers-reduced-motion: reduce) {
  .lp-rv, .lp-px, .lp-poolpin .lp-pool { opacity: 1 !important; transform: none !important; transition: none !important; }
  .lp-marquee-track, .lp-floaty { animation: none !important; }
  .lp-band-media img { position: static; height: 100%; top: 0; }
}

/* ── Redesign responsive ─────────────────────────────────────────────────── */
@media (max-width: 920px) {
  .lp-cine { padding-top: clamp(38px, 6vh, 70px); }
  .lp-cine-grid { grid-template-columns: 1fr; gap: clamp(28px, 7vw, 40px); align-items: stretch; }
  .lp-cine-copy { max-width: 700px; order: 1; }
  .lp-cine-right { order: 2; }
  .lp-cine-right .lp-cine-panel { margin: 0 auto; max-width: 380px; }
  .lp-cine .lp-bars { height: clamp(140px, 36vw, 270px); }
  .lp-band-grid, .lp-band.rev .lp-band-grid { grid-template-columns: 1fr; min-height: 0; }
  .lp-band-media { height: clamp(260px, 60vw, 380px); order: 1 !important; }
  .lp-band-media img { position: static; height: 100%; top: 0; }
  .lp-band-copy { order: 2 !important; }
  .lp-who { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .lp-cine-cta { flex-direction: column; align-items: stretch; }
  .lp-cine-cta .lp-btn { width: 100%; }
}
@media (max-width: 480px) {
  .lp-who { grid-template-columns: 1fr 1fr; gap: 10px; }
  .lp .lp-btn-xl { width: 100%; padding: 16px 26px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   REUSABLE BACK-LAYER PATTERN — ascending amber "tier" bars
   Drop <div class="lp-bars" aria-hidden="true"></div> as the FIRST child of a
   position:relative section; content (.lp-shell) lifts above it automatically.
   ════════════════════════════════════════════════════════════════════════════ */
.lp-bars { position: absolute; left: 0; right: 0; bottom: 0; z-index: 0; pointer-events: none;
  height: clamp(84px, 11vw, 150px);
  background: url('assets/pattern-bars.svg') center bottom / 100% 100% no-repeat;
  opacity: .8;
  filter: blur(2px);                     /* just enough softness — bars stay distinct */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.lp-bars.soft { opacity: .5; height: clamp(68px, 8vw, 116px); filter: blur(2.5px); }
.lp-bars ~ .lp-shell { position: relative; z-index: 1; }
.lp-cine, .lp-cta { overflow: hidden; }

/* ── Hero back-layer + post-hero backdrop ────────────────────────────────── */
.lp-cine .lp-bars { background-image: url('assets/pattern-bars-hero.svg'); height: clamp(170px, 24vw, 350px); opacity: .92; filter: blur(2.5px); }
/* The section right after the hero gets a distinct, smoothly-faded backdrop */
#stats { background: linear-gradient(180deg, transparent 0%, #0e1119 20%, #0e1119 80%, transparent 100%); }
