/* Pyonya Intel — landing / pricing / api-access shared stylesheet
 * Independent from app.css so the marketing surface and the product
 * surface can evolve separately. Dark default; party/light modes are
 * the product's concern, not the landing's. */

:root {
  /* 2026-07 rebrand: deep navy field, royal cobalt primaries, champagne
   * gold brand accents. Deliberately separated from Bubblemaps cyan —
   * the old --ton-blue names are kept as aliases so every existing rule
   * inherits the new identity without a rename sweep. */
  --bg:           #060B16;
  --bg-elev:      #0A1120;
  --panel:        #0F1728;
  --panel-2:      #141F33;
  --panel-line:   #1D2A42;
  --panel-line-hot: #33487A;
  --fg:           #E9EEF8;
  --fg-muted:     #9DAECB;
  --fg-dim:       #6D7F9F;

  --ton-blue:        #2F6BFF;
  --ton-blue-bright: #5B8CFF;
  --pyo-yellow:      #E9C77B;
  --pyo-orange:      #D9A24E;
  --pyo-pink:        #FF7EB9;
  --pyo-violet:      #B084FF;

  --ok: #4ADE80;
  --x:  #F87171;

  --rad-sm: 8px;
  --rad-md: 12px;
  --rad-lg: 16px;
  --rad-xl: 22px;
  --rad-2xl: 28px;

  --shadow-soft: 0 6px 24px rgba(0,0,0,0.35);
  --shadow-pop:  0 14px 48px rgba(0,0,0,0.55);
  --shadow-blue: 0 18px 48px rgba(0, 152, 234, 0.28);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  /* Fluid type scale clamps */
  --fs-h1: clamp(36px, 5.6vw, 60px);
  --fs-h2: clamp(28px, 3.6vw, 42px);
  --fs-lead: clamp(15px, 1.4vw, 18px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font: 500 16px/1.55 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Page-wide ambient glow + dot grid behind everything, fixed so it stays put on scroll. */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 12% -10%, rgba(0, 152, 234, 0.14), transparent 60%),
    radial-gradient(800px 500px at 100% 8%,  rgba(255, 126, 185, 0.08), transparent 60%),
    radial-gradient(700px 500px at 50% 105%, rgba(176, 132, 255, 0.08), transparent 60%);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.35;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 50%, transparent 100%);
}
main { position: relative; z-index: 1; }

/* Scroll reveal — opacity + tiny lift, with stagger via index. */
.lpx-reveal { opacity: 0; transform: translateY(14px); transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out); }
.lpx-reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  body::after { background-image: none; }
  .lpx-reveal { opacity: 1; transform: none; transition: none; }
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--ton-blue-bright); }
code { font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.92em; }
em { font-style: italic; color: var(--pyo-yellow); }

/* ──────────────────────────────────────────────────────────────── NAV */

.lpx-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 14px 32px;
  background: rgba(10, 15, 21, 0.72);
  border-bottom: 1px solid var(--panel-line);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  transition: padding 200ms var(--ease-out), background 200ms var(--ease-out);
}
.lpx-nav.is-scrolled { padding-top: 10px; padding-bottom: 10px; background: rgba(10, 15, 21, 0.92); }
.lpx-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
/* Full-color brand mark. No tinting — the PNG already carries the gradient. */
.lpx-logo-img {
  width: 56px; height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 152, 234, 0.35));
  transition: transform 220ms var(--ease-out, ease);
}
.lpx-brand:hover .lpx-logo-img { transform: scale(1.04) rotate(-2deg); }
.lpx-brand-name {
  font: 800 18px/1 Inter; letter-spacing: -0.01em;
  background: linear-gradient(120deg, var(--fg), var(--ton-blue-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lpx-brand-dot { color: var(--pyo-pink, #FF7EB9); margin: 0 1px; -webkit-text-fill-color: var(--pyo-pink, #FF7EB9); }

.lpx-nav-links { display: flex; gap: 24px; margin-left: 28px; }
.lpx-nav-links a {
  position: relative;
  font: 600 13.5px/1 Inter; color: var(--fg-muted);
  padding: 8px 2px;
  letter-spacing: 0.005em;
  transition: color 200ms var(--ease-out);
}
.lpx-nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--ton-blue-bright), var(--pyo-pink));
  opacity: 0; transform: scaleX(0.6); transform-origin: left;
  transition: opacity 200ms var(--ease-out), transform 220ms var(--ease-out);
}
.lpx-nav-links a:hover { color: var(--fg); }
.lpx-nav-links a:hover::after { opacity: 1; transform: scaleX(1); }
.lpx-nav-links a.is-active,
.lpx-nav-links a[aria-current="page"] {
  color: var(--pyo-yellow) !important;
  text-shadow: 0 0 18px rgba(255, 213, 98, 0.22);
}
.lpx-nav-links a.is-active::after,
.lpx-nav-links a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--pyo-yellow), var(--pyo-orange));
}
.lpx-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lpx-nav-dropdown > a::before {
  content: "";
  position: absolute;
  inset: -10px -12px;
}
.lpx-chain-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 80;
  width: 280px;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--panel-line-hot);
  border-radius: var(--rad-md);
  background: rgba(10, 15, 21, 0.96);
  box-shadow: var(--shadow-pop);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms var(--ease-out), transform 160ms var(--ease-out);
}
.lpx-nav-dropdown:hover .lpx-chain-menu,
.lpx-nav-dropdown:focus-within .lpx-chain-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.lpx-chain-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--rad-sm);
  background: rgba(255,255,255,0.025);
}
.lpx-chain-menu a::after { display: none; }
.lpx-chain-menu strong {
  font: 800 13px/1 Inter;
  color: var(--fg);
}
.lpx-chain-menu em {
  font: 800 10px/1 Inter;
  color: var(--pyo-yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lpx-nav-cta .lpx-btn { padding: 8px 16px; font-size: 13px; }
.lpx-nav-cta { margin-left: auto; display: flex; gap: 10px; }

@media (max-width: 780px) {
  .lpx-nav { padding: 12px 16px; gap: 12px; flex-wrap: wrap; }
  .lpx-nav-links { display: none; }
  .lpx-nav-cta { margin-left: auto; }
}

.lpx-chain-strip {
  display: grid;
  grid-template-columns: repeat(9, minmax(96px, 1fr));
  gap: 10px;
  margin: 20px 0 4px;
}
.lpx-chain-card {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  padding: 12px;
  border-radius: var(--rad-md);
  border: 1px solid var(--panel-line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)),
    rgba(14,20,27,0.82);
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out);
}
.lpx-chain-card:hover {
  transform: translateY(-2px);
  border-color: rgba(54,184,255,0.62);
  color: var(--fg);
}
.lpx-chain-card.is-live {
  border-color: rgba(74,222,128,0.42);
  background:
    radial-gradient(circle at 18% 10%, rgba(74,222,128,0.14), transparent 42%),
    rgba(14,20,27,0.9);
}
.lpx-chain-card.is-soon,
.lpx-chain-card.is-indexing {
  border-color: rgba(255,213,98,0.34);
}
.lpx-chain-mark {
  display: inline-flex;
  width: fit-content;
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(54,184,255,0.12);
  color: var(--ton-blue-bright);
  border: 1px solid rgba(54,184,255,0.22);
  font: 900 10px/1 Inter;
  letter-spacing: 0.06em;
}
.lpx-chain-card strong {
  display: block;
  color: var(--fg);
  font: 900 14px/1.05 Inter;
}
.lpx-chain-card em {
  color: var(--pyo-yellow);
  font: 900 10px/1 Inter;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lpx-chain-card small {
  color: var(--fg-muted);
  font: 700 11px/1.25 Inter;
}
@media (max-width: 1180px) {
  .lpx-chain-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .lpx-chain-strip { grid-template-columns: 1fr 1fr; }
}

/* ──────────────────────────────────────────────────────────────── BUTTONS */

.lpx-btn {
  position: relative;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 11px 20px; border-radius: var(--rad-md);
  font: 700 14px/1.2 Inter; letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out),
              background 180ms var(--ease-out), border-color 180ms var(--ease-out);
  cursor: pointer; text-decoration: none; user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.lpx-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 152, 234, 0.40);
}
.lpx-btn:active { transform: translateY(0); }
.lpx-btn-sub {
  display: block;
  font: 500 11px/1.2 Inter; letter-spacing: 0.02em;
  opacity: 0.75; margin-top: 3px;
}
.lpx-btn-primary {
  background: linear-gradient(135deg, var(--ton-blue) 0%, #0078C7 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 152, 234, 0.35);
}
.lpx-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 152, 234, 0.45);
  color: #fff;
}
.lpx-btn-ghost {
  background: var(--panel);
  color: var(--fg);
  border-color: var(--panel-line);
}
.lpx-btn-ghost:hover {
  background: var(--bg-elev);
  border-color: var(--panel-line-hot);
  color: var(--fg);
}
.lpx-btn-lg { padding: 14px 24px; font-size: 15px; min-width: 220px; }
.lpx-btn-block { width: 100%; }

.pr-binary-paywall {
  max-width: 1080px;
  margin: 22px auto 0;
  padding: 16px 18px;
  border-radius: var(--rad-md);
  border: 1px solid rgba(255, 213, 98, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 213, 98, 0.14), rgba(0, 152, 234, 0.08)),
    var(--panel);
  color: var(--fg-muted);
  font: 600 14px/1.55 Inter, system-ui, sans-serif;
}
.pr-binary-paywall strong {
  color: var(--pyo-yellow);
  margin-right: 6px;
}

/* ──────────────────────────────────────────────────────────────── HERO */

.lpx-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  padding: 72px 56px 80px;
  max-width: 1280px; margin: 0 auto;
  align-items: center;
}
.lpx-hero-eyebrow { margin-bottom: 18px; }
.lpx-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(0, 152, 234, 0.12);
  color: var(--ton-blue-bright);
  border: 1px solid rgba(0, 152, 234, 0.28);
  font: 600 12px/1 Inter; letter-spacing: 0.04em; text-transform: uppercase;
}

.lpx-hero-title {
  font: 800 var(--fs-h1)/1.05 Inter; letter-spacing: -0.028em;
  margin: 0 0 18px;
  color: var(--fg);
}
.lpx-grad {
  background: linear-gradient(100deg, var(--ton-blue-bright) 0%, var(--pyo-yellow) 55%, var(--pyo-pink) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% 100%;
  animation: lpx-grad-pan 16s ease-in-out infinite;
}
@keyframes lpx-grad-pan {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) { .lpx-grad { animation: none; } }
.lpx-hero-sub {
  font: 500 17px/1.55 Inter;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 0 28px;
}

.lpx-hero-search {
  display: flex; gap: 8px; margin-bottom: 22px;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--rad-lg);
  padding: 6px;
  max-width: 560px;
  transition: border-color 200ms ease;
}
.lpx-hero-search:focus-within { border-color: var(--panel-line-hot); }
.lpx-hero-search input {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  font: 500 16px/1 'JetBrains Mono';
  color: var(--fg);
  padding: 12px 14px;
}
.lpx-hero-search input::placeholder { color: var(--fg-dim); }
.lpx-hero-search .lpx-btn { padding: 12px 22px; }

.lpx-hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 28px;
}

.lpx-hero-meta {
  font: 500 13px/1.5 Inter;
  color: var(--fg-muted);
  display: inline-flex; align-items: center; gap: 8px;
}
.lpx-hero-meta strong { color: var(--fg); font-weight: 700; }
.lpx-meta-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
  animation: lpx-pulse 2.4s ease-in-out infinite;
}
@keyframes lpx-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18); }
  50%     { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0.06); }
}

/* TRUST STRIP — bigger, four bold stats with subtle dividers. */
.lpx-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 36px;
  padding: 18px 0;
  border-top: 1px solid var(--panel-line);
  border-bottom: 1px solid var(--panel-line);
  max-width: 100%;
}
.lpx-trust > div {
  padding: 6px 18px;
  border-left: 1px solid var(--panel-line);
  display: flex; flex-direction: column; gap: 4px;
}
.lpx-trust > div:first-child { border-left: 0; padding-left: 0; }
.lpx-trust .lpx-trust-num {
  font: 800 22px/1.1 Inter; letter-spacing: -0.02em;
  color: var(--fg);
  background: linear-gradient(120deg, var(--fg), var(--ton-blue-bright));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lpx-trust .lpx-trust-lbl {
  font: 600 11px/1.3 Inter; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--fg-muted);
}
@media (max-width: 720px) {
  .lpx-trust { grid-template-columns: 1fr 1fr; }
  .lpx-trust > div:nth-child(3) { border-left: 0; padding-left: 0; }
}

.lpx-hero-visual {
  position: relative;
  border-radius: var(--rad-2xl);
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--panel-line);
  box-shadow: var(--shadow-pop), var(--shadow-blue);
  aspect-ratio: 1 / 1;
  transition: transform 600ms var(--ease-out), box-shadow 600ms var(--ease-out);
}
.lpx-hero-visual:hover { transform: translateY(-3px); }
/* Conic-gradient glow behind the iframe */
.lpx-hero-visual::before {
  content: ""; position: absolute; inset: -2px; z-index: 0;
  border-radius: inherit; padding: 1.5px;
  background: conic-gradient(from 200deg at 50% 50%,
    rgba(54, 184, 255, 0.6),
    rgba(255, 213, 98, 0.0) 30%,
    rgba(255, 126, 185, 0.5) 60%,
    rgba(54, 184, 255, 0.6));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude; -webkit-mask-composite: xor;
  opacity: 0.65; animation: lpx-conic 22s linear infinite;
  pointer-events: none;
}
@keyframes lpx-conic { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .lpx-hero-visual::before { animation: none; } }
.lpx-hero-visual iframe {
  width: 100%; height: 100%; border: 0; display: block;
  background: var(--bg-elev);
}
.lpx-hero-visual-caption {
  position: absolute; left: 14px; bottom: 14px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(11, 17, 23, 0.82);
  border: 1px solid var(--panel-line);
  font: 600 11.5px/1 Inter; color: var(--fg-muted);
  letter-spacing: 0.04em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}

@media (max-width: 980px) {
  .lpx-hero { grid-template-columns: 1fr; padding: 48px 24px 56px; gap: 36px; }
  .lpx-hero-title { font-size: 38px; }
  .lpx-hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
}

/* ──────────────────────────────────────────────────────────────── SECTIONS */

.lpx-section {
  max-width: 1140px; margin: 0 auto;
  padding: 72px 32px;
}
.lpx-h2 {
  font: 800 var(--fs-h2)/1.15 Inter; letter-spacing: -0.022em;
  margin: 0 0 14px;
  color: var(--fg);
}
.lpx-lead {
  font: 500 var(--fs-lead)/1.6 Inter;
  color: var(--fg-muted);
  max-width: 760px;
  margin: 0 0 36px;
}
@media (max-width: 720px) {
  .lpx-section { padding: 56px 20px; }
  .lpx-h2 { font-size: 28px; }
  .lpx-lead { font-size: 15px; }
}

/* RULE GRID — methodology */
.lpx-rule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.lpx-rule {
  position: relative;
  background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
  border: 1px solid var(--panel-line);
  border-radius: var(--rad-lg);
  padding: 22px 20px;
  transition: border-color 280ms var(--ease-out), transform 280ms var(--ease-out),
              box-shadow 280ms var(--ease-out);
  overflow: hidden;
}
.lpx-rule::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(280px 180px at 100% 0%, rgba(54, 184, 255, 0.10), transparent 70%);
  opacity: 0; transition: opacity 280ms var(--ease-out);
  pointer-events: none;
}
.lpx-rule:hover {
  border-color: var(--panel-line-hot);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.lpx-rule:hover::before { opacity: 1; }
.lpx-rule h3 {
  font: 700 15px/1.3 Inter; margin: 0 0 8px;
  color: var(--fg);
}
.lpx-rule p {
  font: 500 13.5px/1.55 Inter; color: var(--fg-muted); margin: 0;
}
.lpx-rule p strong { color: var(--fg); font-weight: 700; }
.lpx-rule-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  font: 800 18px/1 Inter;
  margin-bottom: 14px;
}
.lpx-rule-icon-x {
  background: rgba(248, 113, 113, 0.12);
  color: var(--x);
  border: 1px solid rgba(248, 113, 113, 0.28);
}
.lpx-rule-icon-ok {
  background: rgba(74, 222, 128, 0.14);
  color: var(--ok);
  border: 1px solid rgba(74, 222, 128, 0.32);
}
.lpx-rule-yes {
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.08) 0%, var(--panel) 100%);
  border-color: rgba(74, 222, 128, 0.3);
}
@media (max-width: 880px) { .lpx-rule-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .lpx-rule-grid { grid-template-columns: 1fr; } }

/* COMPARE TABLE — highlight our column with a subtle vertical gradient */
.lpx-cmp {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--rad-lg);
  overflow: hidden;
  margin-top: 12px;
}
/* The highlight rail behind the "us" column */
.lpx-cmp::after {
  content: ""; position: absolute; top: 0; bottom: 0;
  right: 0; width: calc((100% - 0px) / 3.6);
  background: linear-gradient(180deg, rgba(0, 152, 234, 0.10) 0%, rgba(0, 152, 234, 0.02) 100%);
  border-left: 1px solid rgba(54, 184, 255, 0.16);
  pointer-events: none;
}
.lpx-cmp-row {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid var(--panel-line);
}
.lpx-cmp-row:last-child { border-bottom: 0; }
.lpx-cmp-row > div { font: 500 14.5px/1.4 Inter; color: var(--fg-muted); }
.lpx-cmp-row > div:first-child { color: var(--fg); font-weight: 600; }
.lpx-cmp-row > div:nth-child(2),
.lpx-cmp-row > div:nth-child(3) { text-align: center; }
.lpx-cmp-row .ok { color: var(--ok); font-weight: 800; font-size: 16px; }
.lpx-cmp-row .x  { color: var(--fg-dim); font-weight: 800; }
.lpx-cmp-head {
  background: var(--bg-elev);
  border-bottom: 1px solid var(--panel-line);
}
.lpx-cmp-head > div {
  font: 700 12.5px/1 Inter; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-muted) !important;
}
.lpx-cmp-us {
  color: var(--ton-blue-bright) !important;
  position: relative;
}
.lpx-cmp-us::after {
  content: ""; position: absolute; left: 50%; bottom: -14px;
  transform: translateX(-50%);
  width: 32px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--ton-blue), var(--pyo-pink));
}
.lpx-cmp-note {
  margin-top: 18px;
  font: 500 13.5px/1.6 Inter; color: var(--fg-dim);
  max-width: 760px;
}
.lpx-cmp-note code {
  background: var(--panel); border: 1px solid var(--panel-line);
  padding: 1px 6px; border-radius: 6px; color: var(--fg);
}

/* =====================================================================
 * 3-CARD PITCH (#how) — problem / solution / rule
 * =================================================================== */
.lpx-pitch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 14px;
}
.lpx-pitch-card {
  position: relative;
  background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
  border: 1px solid var(--panel-line);
  border-radius: 18px;
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 280ms var(--ease-out), transform 280ms var(--ease-out),
              box-shadow 280ms var(--ease-out);
}
.lpx-pitch-card:hover {
  border-color: var(--panel-line-hot);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.lpx-pitch-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid; place-items: center;
  font: 800 24px/1 Inter;
  margin-bottom: 6px;
}
.lpx-pitch-icon[data-mood="bad"] {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.28);
  color: var(--x);
}
.lpx-pitch-icon[data-mood="ok"] {
  background: rgba(54, 184, 255, 0.12);
  border: 1px solid rgba(54, 184, 255, 0.28);
  color: var(--ton-blue-bright);
}
.lpx-pitch-icon[data-mood="rule"] {
  background: linear-gradient(135deg, rgba(255, 213, 98, 0.20), rgba(255, 126, 185, 0.20));
  border: 1px solid rgba(255, 213, 98, 0.35);
  color: var(--pyo-yellow);
}
.lpx-pitch-card h3 {
  font: 800 19px/1.25 Inter; letter-spacing: -0.01em; color: var(--fg); margin: 0;
}
.lpx-pitch-card p {
  font: 500 14.5px/1.55 Inter; color: var(--fg-muted); margin: 0;
}
.lpx-pitch-card em { color: var(--pyo-yellow); font-style: italic; }
.lpx-diff-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lpx-diff-card-wide {
  grid-column: 1 / -1;
}
.lpx-diff-example {
  display: block;
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(54, 184, 255, 0.08);
  border: 1px solid rgba(54, 184, 255, 0.18);
  color: var(--fg);
  font: 700 12.5px/1.45 Inter;
}
.lpx-pitch-card-rule {
  background: linear-gradient(180deg, rgba(255, 213, 98, 0.08), var(--panel) 70%);
  border-color: rgba(255, 213, 98, 0.30);
}
@media (max-width: 900px) {
  .lpx-pitch,
  .lpx-diff-grid {
    grid-template-columns: 1fr;
  }
  .lpx-diff-card-wide {
    grid-column: auto;
  }
}

/* =====================================================================
 * FOR BUILDERS — three integration paths
 * =================================================================== */
.lpx-builders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.lpx-builder-card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--panel-line);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 240ms var(--ease-out), transform 240ms var(--ease-out);
}
.lpx-builder-card:hover { border-color: var(--panel-line-hot); transform: translateY(-3px); }
.lpx-builder-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  font: 800 22px/1 Inter;
  background: rgba(54, 184, 255, 0.10);
  border: 1px solid rgba(54, 184, 255, 0.24);
  color: var(--ton-blue-bright);
  margin-bottom: 4px;
}
.lpx-builder-card h3 { font: 800 17px/1.25 Inter; color: var(--fg); margin: 0; }
.lpx-builder-card p { font: 500 13.5px/1.55 Inter; color: var(--fg-muted); margin: 0 0 6px; }
.lpx-builder-card code {
  font: 600 11.5px/1.4 'JetBrains Mono', ui-monospace, monospace;
  background: var(--bg-elev);
  border: 1px solid var(--panel-line);
  padding: 6px 10px; border-radius: 8px;
  color: var(--ton-blue-bright);
  word-break: break-all;
  margin-top: 4px;
}
@media (max-width: 900px) { .lpx-builders { grid-template-columns: 1fr; } }

/* =====================================================================
 * WAITLIST inline
 * =================================================================== */
.lpx-waitlist-shell {
  background: linear-gradient(135deg, rgba(0, 152, 234, 0.12), rgba(255, 126, 185, 0.10));
  border: 1px solid var(--panel-line-hot);
  border-radius: 22px;
  padding: 36px 36px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: center;
}
@media (max-width: 880px) { .lpx-waitlist-shell { grid-template-columns: 1fr; padding: 26px; } }
.lpx-waitlist-form { display: flex; flex-direction: column; gap: 10px; }
.lpx-waitlist-form input {
  background: rgba(11, 17, 23, 0.7);
  border: 1px solid var(--panel-line);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--fg);
  font: 500 16px/1 Inter;
}
.lpx-waitlist-form input:focus {
  outline: none;
  border-color: var(--ton-blue-bright);
  box-shadow: 0 0 0 3px rgba(54, 184, 255, 0.18);
}
.lpx-waitlist-msg { font: 500 12.5px/1.4 Inter; min-height: 18px; }
.lpx-waitlist-msg.ok { color: var(--ok); }
.lpx-waitlist-msg.err { color: var(--x); }

/* Hero live pulse + footer brand inline */
.lpx-pulse {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.20);
  animation: lpx-pulse 2.2s ease-in-out infinite;
  margin-right: 4px;
}
.lpx-foot-brand { display: flex; align-items: center; gap: 12px; }
.lpx-foot-brand .lpx-brand-name { font: 800 17px/1 Inter; }

/* =====================================================================
 * VISUAL PROOF — Bubblemaps view vs Intel Maps view side-by-side
 * =================================================================== */
.lpx-vsproof {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
}
.lpx-vsproof-side {
  margin: 0;
  display: flex; flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 280ms var(--ease-out), transform 280ms var(--ease-out);
}
.lpx-vsproof-side:hover { transform: translateY(-2px); }
.lpx-vsproof-them { border-color: rgba(248, 113, 113, 0.32); }
.lpx-vsproof-them:hover { border-color: rgba(248, 113, 113, 0.5); }
.lpx-vsproof-us   { border-color: rgba(54, 184, 255, 0.45); }
.lpx-vsproof-us:hover   { border-color: rgba(54, 184, 255, 0.7); }

.lpx-vsproof-tag {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--panel-line);
  background: rgba(0, 0, 0, 0.20);
}
.lpx-vsproof-label {
  font: 800 14px/1 Inter; letter-spacing: -0.005em;
  color: var(--x);
}
.lpx-vsproof-label-us {
  background: linear-gradient(120deg, var(--ton-blue-bright), var(--pyo-pink));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lpx-vsproof-vs-detail {
  font: 600 10.5px/1 Inter; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--fg-muted);
}

.lpx-vsproof-frame {
  position: relative;
  /* Pinned to native 450x450 — files were re-exported at this resolution
     so no scaling = zero blur. */
  width: 450px; height: 450px; max-width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  background: radial-gradient(circle at 50% 50%, var(--bg-elev), var(--bg));
  overflow: hidden;
}
.lpx-vsproof-media,
.lpx-vsproof-iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  /* contain (not cover) so the source plays at 1:1 with letterboxing rather
     than getting scale-cropped — kills the blur the user flagged. */
  object-fit: contain;
  border: 0;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.lpx-vsproof-iframe { background: var(--bg-elev); }
.lpx-vsproof-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 30px; text-align: center;
}
.lpx-vsproof-ph-title {
  font: 700 14px/1.3 Inter; color: var(--fg-muted);
}
.lpx-vsproof-ph-path {
  font: 500 11.5px/1.4 'JetBrains Mono', ui-monospace, monospace;
  color: var(--fg-dim);
}
.lpx-vsproof-ph-path code {
  background: var(--bg-elev); border: 1px solid var(--panel-line);
  padding: 2px 6px; border-radius: 4px; color: var(--ton-blue-bright);
}

.lpx-vsproof-caption {
  padding: 16px 18px 18px;
  font: 500 13.5px/1.55 Inter; color: var(--fg-muted);
  margin: 0;
}
.lpx-vsproof-caption strong { color: var(--fg); font-weight: 800; }

.lpx-vsproof-vs {
  align-self: center;
  font: 900 18px/1 Inter; letter-spacing: 0.10em;
  color: var(--pyo-yellow);
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 999px;
  padding: 10px 14px;
  white-space: nowrap;
}

@media (max-width: 880px) {
  .lpx-vsproof { grid-template-columns: 1fr; }
  .lpx-vsproof-vs { justify-self: center; }
}

/* Flagship case-study card */
.lpx-case-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.14) 0%, rgba(220, 38, 38, 0.08) 46%, rgba(255, 126, 185, 0.05) 70%, var(--panel) 100%);
  border: 1px solid var(--panel-line-hot);
  border-radius: 22px;
  padding: 36px;
  text-decoration: none;
  color: inherit;
  transition: transform 320ms var(--ease-out), border-color 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}
/* $GRINCH billionaire cover — sits behind the red rectangle + text, fading
 * into the card on its left edge so the copy stays readable. */
.lpx-case-img {
  position: absolute; right: -24px; bottom: -28px; z-index: 1;
  width: 44%; max-width: 430px; height: auto; pointer-events: none;
  filter: drop-shadow(0 14px 44px rgba(0, 0, 0, 0.5));
  -webkit-mask-image: linear-gradient(to left, #000 58%, transparent 96%);
          mask-image: linear-gradient(to left, #000 58%, transparent 96%);
}
.lpx-case-body { position: relative; z-index: 2; max-width: 640px; }
@media (max-width: 760px) {
  .lpx-case-img { position: static; display: block; width: 62%; max-width: 250px;
    margin: 6px auto -6px; -webkit-mask-image: none; mask-image: none; }
  .lpx-case-body { max-width: 100%; }
}
.lpx-case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow: 0 22px 60px rgba(220, 38, 38, 0.16);
}
.lpx-case-meta {
  display: flex; gap: 12px; align-items: center;
  font: 700 11px/1 Inter; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--fg-muted);
}
.lpx-case-pill {
  padding: 5px 11px; border-radius: 999px;
  background: rgba(220, 38, 38, 0.16); color: #FCA5A5;
  border: 1px solid rgba(220, 38, 38, 0.32);
}
.lpx-case-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 800 15.5px/1 Inter;
  color: #fff;
  background: linear-gradient(135deg, #36b8ff, #4f8aff);
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(54, 138, 255, .28);
  transition: transform .15s ease, box-shadow .15s ease;
}
.lpx-case-card:hover .lpx-case-cta {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(54, 138, 255, .38);
}
/* Square portrait heroes (e.g. the $HOODIE wojak) render as a framed
   thumbnail sized to match the tall bleed illustrations, so stacked case
   cards read at the same visual weight. */
.lpx-case-img.lpx-case-img-portrait {
  width: auto; height: 84%; max-width: 300px;
  right: 22px; bottom: 0;
  border-radius: 16px 16px 0 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 0;
  -webkit-mask-image: none; mask-image: none;
  filter: drop-shadow(0 18px 44px rgba(0, 0, 0, .55));
}
@media (max-width: 760px) {
  .lpx-case-img.lpx-case-img-portrait {
    position: static; height: auto; width: 62%; max-width: 220px;
    margin: 8px auto -6px; border-radius: 16px;
  }
}

/* =====================================================================
 * v3 LANDING — BIG logo top-right + search hero + 3 live panels
 * =================================================================== */

/* Big nav with BIG logo on the right */
.lpx-nav-big {
  padding: 10px 28px;
  min-height: 76px;
  align-items: center;
}
.lpx-brand-stacked .lpx-brand-text {
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1;
}
.lpx-brand-tag {
  font: 600 10.5px/1 Inter; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--fg-muted);
}
.lpx-brand-tag strong {
  background: linear-gradient(120deg, var(--pyo-pink), var(--pyo-yellow));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lpx-nav-big .lpx-brand-name { font: 900 22px/1 Inter; }
.lpx-nav-logo-big {
  margin-left: 14px;
  display: flex; align-items: center; justify-content: center;
  height: 60px; width: 60px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 30%, rgba(54, 184, 255, 0.16), transparent 70%);
  transition: transform 240ms var(--ease-out);
}
.lpx-nav-logo-big img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 24px rgba(0, 152, 234, 0.55));
}
.lpx-nav-logo-big:hover { transform: scale(1.06) rotate(-3deg); }
@media (max-width: 780px) {
  .lpx-nav-big .lpx-nav-links { display: none; }
  .lpx-nav-logo-big { height: 48px; width: 48px; margin-left: 8px; }
}

/* Hero: action-first */
.lpx-hero-action {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px 24px;
}
.lpx-hero-headline {
  max-width: 880px;
  margin: 0 auto 28px;
  text-align: center;
}
.lpx-hero-search-big {
  max-width: 720px;
  margin: 12px auto 4px;
  padding: 8px;
  position: relative;
  display: flex; gap: 8px; align-items: center;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.lpx-hero-search-big:focus-within {
  border-color: var(--ton-blue-bright);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45), 0 0 0 4px rgba(54, 184, 255, 0.18);
}
.lpx-search-icon {
  margin-left: 12px; color: var(--fg-muted); flex-shrink: 0;
}
.lpx-hero-search-big input {
  flex: 1; min-width: 0;
  background: transparent; border: 0; outline: none;
  padding: 14px 6px;
  font: 600 16px/1 Inter;
  color: var(--fg);
}
.lpx-hero-search-big input::placeholder { color: var(--fg-dim); font-weight: 500; }
.lpx-hero-search-big .lpx-btn { padding: 14px 24px; font-size: 15px; }
.lpx-hero-dropdown {
  position: absolute;
  top: calc(100% + 6px); left: 0; right: 0;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  max-height: 50vh; overflow-y: auto;
  z-index: 10;
  padding: 4px;
}
.lpx-hero-dropdown[hidden] { display: none; }
.lpx-hd-head {
  font: 700 11px/1 Inter; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--fg-muted);
  padding: 10px 12px 6px;
}
.lpx-hd-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 140ms;
}
.lpx-hd-row:hover { background: var(--bg-elev); }
.lpx-hd-sym { font: 700 14px/1 Inter; color: var(--fg); }
.lpx-hd-mcap { font: 500 12px/1 Inter; color: var(--fg-muted); font-variant-numeric: tabular-nums; }
.lpx-hd-empty {
  padding: 14px; text-align: center;
  font: 500 13px/1.5 Inter; color: var(--fg-dim);
}

/* 3 live panels */
.lpx-live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
@media (max-width: 1100px) { .lpx-live-grid { grid-template-columns: 1fr 1fr; } .lpx-panel-kol { grid-column: 1 / -1; } }
@media (max-width: 720px)  { .lpx-live-grid { grid-template-columns: 1fr; } .lpx-panel-kol { grid-column: auto; } }

.lpx-panel {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  isolation: isolate;
  transition: transform 260ms var(--ease-out), border-color 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}
.lpx-panel::before {
  content: "";
  position: absolute; inset: -1px;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(54, 184, 255, 0.12) 35%, transparent 70%);
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 260ms var(--ease-out);
}
.lpx-panel:hover {
  transform: translateY(-2px);
  border-color: var(--panel-line-hot);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
.lpx-panel:hover::before {
  opacity: 1;
  animation: lpx-panel-sheen 1.35s var(--ease-out);
}
.lpx-panel-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 14px 18px 12px;
  border-bottom: 1px solid var(--panel-line);
  background: rgba(0, 0, 0, 0.16);
}
.lpx-panel-title { font: 800 14px/1 Inter; color: var(--fg); letter-spacing: -0.005em; }
.lpx-panel-sub {
  font: 600 10px/1 Inter; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--fg-muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.lpx-status-dot {
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%; background: var(--fg-dim);
}
.lpx-status-dot.lpx-status-ok      { background: var(--ok);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.18); }
.lpx-status-dot.lpx-status-warning { background: var(--pyo-yellow); }

.lpx-token-list, .lpx-kol-list {
  list-style: none; padding: 6px; margin: 0;
  display: flex; flex-direction: column; gap: 2px;
  flex: 1;
}
.lpx-token-loading {
  padding: 22px 12px; text-align: center;
  font: 500 13px/1.4 Inter; color: var(--fg-dim);
}
.lpx-token-empty {
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px 18px;
  text-align: center;
}
.lpx-token-empty-title {
  font: 700 13.5px/1.3 Inter; color: var(--fg);
}
.lpx-token-empty-sub {
  font: 500 12px/1.5 Inter; color: var(--fg-muted);
}
.lpx-token-empty-sub a { color: var(--ton-blue-bright); text-decoration: none; }

.lpx-token-row a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 140ms, transform 140ms;
}
.lpx-token-row a:hover { background: var(--bg-elev); transform: translateX(2px); }
.lpx-token-row,
.lpx-kol-row {
  animation: lpx-row-rise 420ms var(--ease-out) both;
}
.lpx-token-row.is-entering,
.lpx-kol-row.is-entering {
  animation: lpx-row-pop 520ms var(--ease-out) both;
}
.lpx-token-icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--ton-blue), var(--pyo-pink));
  color: var(--bone, #fff);
  font: 900 13px/1 Inter; letter-spacing: -0.01em;
}
.lpx-token-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.lpx-token-sym { font: 700 13.5px/1.2 Inter; color: var(--fg); }
.lpx-token-meta {
  font: 500 11px/1.2 Inter; color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
}
.lpx-token-badges { display: flex; align-items: center; gap: 4px; }
.lpx-grade-pill {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 7px;
  font: 900 12px/1 Inter;
  color: #0E141B;
}
.lpx-grade-s { background: #22C55E; color: #04220E; box-shadow: 0 0 8px rgba(34, 197, 94, 0.3); }
.lpx-grade-a { background: #84CC16; color: #0E1A04; }
.lpx-grade-b { background: #BEF264; color: #1A220F; }
.lpx-grade-c { background: #F59E0B; color: #1A0F00; }
.lpx-grade-d { background: #F97316; color: #1A0900; }
.lpx-grade-f { background: #EF4444; color: #1A0303; box-shadow: 0 0 8px rgba(239, 68, 68, 0.35); }
.lpx-cabal-pill {
  padding: 3px 7px;
  border-radius: 999px;
  font: 800 9px/1 Inter; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(220, 38, 38, 0.14);
  color: #FCA5A5;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

/* KOL ticker rows */
.lpx-kol-row {
  display: grid;
  grid-template-columns: 44px 1fr auto auto auto;
  align-items: center; gap: 8px;
  padding: 9px 12px;
  border-radius: 10px;
  font: 500 12.5px/1.2 Inter;
  font-variant-numeric: tabular-nums;
  transition: background 160ms var(--ease-out), transform 160ms var(--ease-out);
}
.lpx-kol-row:hover { background: var(--bg-elev); transform: translateX(2px); }
.lpx-kol-side {
  font: 800 10px/1 Inter; letter-spacing: 0.10em;
  padding: 4px 6px; border-radius: 6px;
  text-align: center;
}
.lpx-kol-row[data-side="buy"]  .lpx-kol-side { background: rgba(74, 222, 128, 0.14); color: #4ADE80; }
.lpx-kol-row[data-side="sell"] .lpx-kol-side { background: rgba(248, 113, 113, 0.14); color: #F87171; }
.lpx-kol-name { font: 700 12px/1.2 Inter; color: var(--ton-blue-bright); }
.lpx-kol-tok  { font: 700 12px/1.2 Inter; color: var(--fg); }
.lpx-kol-amt  { font: 500 11px/1.2 Inter; color: var(--fg-muted); }
.lpx-kol-time { font: 700 10px/1.2 Inter; color: var(--pyo-yellow); text-transform: uppercase; letter-spacing: 0.05em; }

@keyframes lpx-panel-sheen {
  from { transform: translateX(-55%); }
  to { transform: translateX(55%); }
}
@keyframes lpx-row-rise {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lpx-row-pop {
  0% { opacity: 0; transform: translateY(-8px) scale(0.985); background: rgba(255, 213, 98, 0.10); }
  70% { opacity: 1; transform: translateY(0) scale(1); background: rgba(255, 213, 98, 0.08); }
  100% { opacity: 1; transform: translateY(0) scale(1); background: transparent; }
}
@media (prefers-reduced-motion: reduce) {
  .lpx-panel,
  .lpx-token-row,
  .lpx-kol-row,
  .lpx-token-row.is-entering,
  .lpx-kol-row.is-entering {
    animation: none;
    transition: none;
  }
}

@media (max-width: 720px) {
  .lpx-cmp-row { grid-template-columns: 1.4fr 0.6fr 0.6fr; padding: 12px 14px; }
  .lpx-cmp-row > div { font-size: 13px; }
}

/* QUICK LAUNCH + SECOND-CLICK PRICING */
.lpx-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.lpx-quick-card {
  position: relative;
  min-height: 150px;
  padding: 22px 20px;
  border-radius: var(--rad-lg);
  background:
    radial-gradient(240px 160px at 100% 0%, rgba(255, 213, 98, 0.14), transparent 72%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--panel-line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  overflow: hidden;
  transition: border-color 260ms var(--ease-out), transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}
.lpx-quick-card::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  right: 18px;
  top: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff7b8 0%, var(--pyo-yellow) 30%, rgba(54, 184, 255, 0.72) 70%, transparent 72%);
  opacity: 0.78;
  filter: drop-shadow(0 0 22px rgba(54, 184, 255, 0.28));
}
.lpx-quick-card:hover {
  border-color: var(--panel-line-hot);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.lpx-quick-card strong {
  position: relative;
  color: var(--fg);
  font: 900 24px/1 Inter;
  letter-spacing: -0.02em;
}
.lpx-quick-card span {
  position: relative;
  color: var(--fg-muted);
  font: 600 13.5px/1.45 Inter;
}
.lpx-section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--pyo-yellow);
  font: 900 11px/1 Inter;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lpx-pricing-bridge {
  position: relative;
  text-align: center;
  padding: 42px 32px;
  border-radius: 22px;
  border: 1px solid rgba(255, 213, 98, 0.26);
  background:
    radial-gradient(620px 320px at 50% 0%, rgba(255, 213, 98, 0.14), transparent 72%),
    linear-gradient(180deg, rgba(54, 184, 255, 0.08), var(--panel));
  box-shadow: var(--shadow-soft);
}
.lpx-pricing-bridge .lpx-lead {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 980px) {
  .lpx-quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .lpx-quick-grid { grid-template-columns: 1fr; }
  .lpx-pricing-bridge { padding: 34px 20px; }
}

/* PRICING */
.lpx-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.lpx-plan {
  position: relative;
  background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
  border: 1px solid var(--panel-line);
  border-radius: var(--rad-lg);
  padding: 26px 22px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 320ms var(--ease-out), transform 320ms var(--ease-out),
              box-shadow 320ms var(--ease-out);
}
.lpx-plan:hover {
  border-color: var(--panel-line-hot);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.lpx-plan-name {
  font: 700 13px/1 Inter; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-muted);
}
.lpx-plan-price { display: flex; align-items: baseline; gap: 8px; }
.lpx-plan-price .big {
  font: 800 36px/1 Inter; letter-spacing: -0.02em;
  color: var(--fg);
}
.lpx-plan-price .per {
  font: 500 13px/1 Inter; color: var(--fg-dim);
}
.lpx-plan-feat {
  list-style: none; padding: 0; margin: 6px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.lpx-plan-feat li {
  position: relative; padding-left: 22px;
  font: 500 13.5px/1.5 Inter; color: var(--fg-muted);
}
.lpx-plan-feat li::before {
  content: ""; position: absolute; left: 2px; top: 8px;
  width: 12px; height: 12px;
  background: radial-gradient(circle at 35% 35%, var(--ton-blue-bright) 0%, var(--ton-blue) 70%);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(54, 184, 255, 0.18);
}
.lpx-plan-feature {
  background: linear-gradient(180deg, rgba(0, 152, 234, 0.08) 0%, var(--panel) 100%);
  border-color: rgba(54, 184, 255, 0.4);
}
.lpx-plan-feature .lpx-plan-feat li::before {
  background: radial-gradient(circle at 35% 35%, var(--pyo-yellow) 0%, var(--pyo-orange) 70%);
  box-shadow: 0 0 0 2px rgba(255, 213, 98, 0.22);
}
.lpx-plan-badge {
  position: absolute; top: -10px; left: 22px;
  padding: 5px 10px; border-radius: 999px;
  background: linear-gradient(135deg, var(--pyo-yellow), var(--pyo-orange));
  color: #1a0f00;
  font: 800 10.5px/1 Inter; letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255, 159, 77, 0.4);
}
@media (max-width: 980px) { .lpx-plans { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lpx-plans { grid-template-columns: 1fr; } }

/* FINAL CTA */
.lpx-final {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
  border-top: 1px solid var(--panel-line);
  border-bottom: 1px solid var(--panel-line);
  padding: 72px 32px;
}
.lpx-final-inner {
  max-width: 720px; margin: 0 auto; text-align: center;
}
.lpx-final-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 28px;
}

/* FOOTER */
.lpx-foot {
  padding: 56px 32px 28px;
  background: var(--bg);
}
.lpx-foot-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 2fr; gap: 32px;
}
.lpx-foot-brand { display: flex; flex-direction: column; gap: 8px; }
.lpx-foot-sub { font: 500 12.5px/1.5 Inter; color: var(--fg-dim); }
.lpx-foot-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: end;
}
.lpx-foot-cols h4 {
  font: 700 12px/1 Inter; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg); margin: 0 0 12px;
}
.lpx-foot-cols a {
  display: block;
  font: 500 13.5px/1.8 Inter; color: var(--fg-muted);
}
.lpx-foot-cols a:hover { color: var(--ton-blue-bright); }
/* Phone: 3 squeezed footer columns interleave — stack the layout instead. */
@media (max-width: 640px) {
  .lpx-foot-inner { grid-template-columns: 1fr; gap: 26px; }
  .lpx-foot-cols { grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
}
.lpx-foot-bottom {
  max-width: 1140px; margin: 36px auto 0;
  padding-top: 22px; border-top: 1px solid var(--panel-line);
  font: 500 12.5px/1.5 Inter; color: var(--fg-dim); text-align: center;
}
@media (max-width: 720px) {
  .lpx-foot-inner { grid-template-columns: 1fr; }
  .lpx-foot-cols { grid-template-columns: repeat(3, 1fr); }
}

/* ────────────────────────────────────────────────
 * Compact footer variant — used by signup, account,
 * gifts, gifts-detail, whale-watch, etc.
 * Same vibe as .lpx-foot but lighter markup (no
 * giant 3-col link grid). landing.html uses the
 * full version above; everything else uses these.
 * ──────────────────────────────────────────────── */
.lpx-footer {
  margin-top: 80px;
  padding: 28px 32px;
  border-top: 1px solid var(--panel-line);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.18));
}
.lpx-footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.lpx-footer-brand {
  display: block;
  font: 800 16px/1 Inter;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.lpx-footer-tag {
  margin: 6px 0 0;
  font: 500 12.5px/1.5 Inter;
  color: var(--fg-dim);
}
.lpx-footer-tag strong { color: var(--ton-blue-bright); }
.lpx-footer-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.lpx-footer-links a {
  font: 600 13px/1 Inter;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.18s;
}
.lpx-footer-links a:hover { color: var(--ton-blue-bright); }
@media (max-width: 600px) {
  .lpx-footer-grid { grid-template-columns: 1fr; text-align: center; }
  .lpx-footer-links { justify-content: center; flex-wrap: wrap; }
}

/* === a11y focus restore (added 2026-06-29) === */
/* outline:none is set in many places to hide click-focus on buttons,
   but that also strips keyboard focus. Restore a visible focus ring for
   keyboard-only nav via :focus-visible (mouse focus stays clean). */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--ton-blue-bright, #36B8FF);
  outline-offset: 2px;
  border-radius: 4px;
}

/* "NEW" pill for freshly-shipped nav/chain entries (e.g. Hyperliquid). */
.lpx-badge-new {
  display: inline-block; vertical-align: middle;
  font: 800 8.5px/1 Inter; letter-spacing: 0.08em;
  color: #04140d; background: #4ADE80;
  padding: 3px 5px; border-radius: 5px; margin-left: 5px;
}

/* G3 — logged-in "Take me to app" CTA: shiny blue + gold (yellow/blue scheme). */
.lpx-btn.lpx-btn-app{
  background:linear-gradient(96deg,#2E7FFF,#4d8dff);
  color:#F7E08A;border:1px solid rgba(247,224,138,.6);font-weight:800;
  box-shadow:0 4px 20px rgba(46,127,255,.45),inset 0 0 0 1px rgba(255,255,255,.08);
}
.lpx-btn.lpx-btn-app:hover{filter:brightness(1.08);box-shadow:0 6px 26px rgba(46,127,255,.6)}

/* Uncrowded top section — 3 wide chain buttons (TON / Hyperliquid / More Soon). */
.lpx-chain-strip.lpx-chain-3{display:grid !important;grid-template-columns:repeat(3,1fr);gap:14px;max-width:760px;margin:0 auto;flex-wrap:nowrap}
.lpx-chain-3 .lpx-chain-card{padding:22px 24px;text-align:center;align-items:center}
@media(max-width:640px){.lpx-chain-strip.lpx-chain-3{grid-template-columns:1fr}}

/* Hero — BIG two-tone title. Leading words draw in as a glowing OUTLINE, the
   last word IGNITES solid, then PULSES. Champagne line + blue line. */
.lpx-hero-h1{font:900 clamp(48px,9vw,118px)/.96 Inter,system-ui,sans-serif;letter-spacing:-.035em;text-transform:uppercase;margin:8px 0 22px;text-wrap:balance}
.lpx-hero-h1 .hh-line{display:block}
.lpx-hero-h1 .hh-fade,.lpx-hero-h1 .hh-solid{display:inline}
.hh-fade{-webkit-text-fill-color:transparent;color:transparent}
.hh-gold .hh-fade{-webkit-text-stroke:1.6px rgba(232,198,90,.92);text-shadow:0 0 20px rgba(232,198,90,.45);animation:hhOutlineIn 1s ease both}
.hh-blue .hh-fade{-webkit-text-stroke:1.6px rgba(46,127,255,.92);text-shadow:0 0 20px rgba(46,127,255,.5);animation:hhOutlineIn 1s ease both .5s}
.hh-gold .hh-solid{color:#e8c65a;-webkit-text-fill-color:#e8c65a;text-shadow:0 0 26px rgba(232,198,90,.6);animation:hhIgnite .7s ease both .8s,hhPulseGold 2.8s ease-in-out infinite 1.6s}
.hh-blue .hh-solid{color:#2E7FFF;-webkit-text-fill-color:#2E7FFF;text-shadow:0 0 26px rgba(46,127,255,.65);animation:hhIgnite .7s ease both 1.3s,hhPulseBlue 2.8s ease-in-out infinite 2.1s}
@keyframes hhOutlineIn{from{opacity:0;letter-spacing:.05em}to{opacity:1}}
@keyframes hhIgnite{from{opacity:0;transform:scale(.93)}to{opacity:1;transform:none}}
@keyframes hhPulseGold{0%,100%{text-shadow:0 0 22px rgba(232,198,90,.45)}50%{text-shadow:0 0 48px rgba(232,198,90,.95)}}
@keyframes hhPulseBlue{0%,100%{text-shadow:0 0 22px rgba(46,127,255,.5)}50%{text-shadow:0 0 52px rgba(46,127,255,1)}}
@media(prefers-reduced-motion:reduce){.hh-fade,.hh-solid{animation:none !important}.hh-fade{opacity:1}}
/* Bigger subheading + wider hero. */
.lpx-hero-sub{font-size:clamp(17px,2.1vw,26px);color:#cdd6e6;max-width:820px;margin-left:auto;margin-right:auto}
.lpx-hero-sub strong{color:#fff}
.lpx-hero-headline{max-width:1200px !important;margin:0 auto}
.lpx-hero-search-big{max-width:880px !important}

/* Creative wide editorial hero — giant title full-width, then a 2-col row
   (left: subheading + search + CTAs, right: chain buttons as a vertical rail). */
.lpx-hero-action{max-width:1440px;margin:0 auto;padding-left:clamp(20px,4vw,56px);padding-right:clamp(20px,4vw,56px)}
.lpx-hero-headline{max-width:none !important;text-align:left}
.lpx-hero-h1{text-align:left}
.lpx-hero-row{display:grid;grid-template-columns:1.35fr .9fr;gap:clamp(24px,4vw,52px);align-items:start;margin-top:10px}
.lpx-hero-left{min-width:0}
.lpx-hero-sub{max-width:none !important;margin:0 0 22px !important;text-align:left}
.lpx-hero-search-big{max-width:none !important;margin:0 0 16px !important}
.lpx-hero-ctas{justify-content:flex-start !important;margin:0}
.lpx-hero-right .lpx-chain-strip.lpx-chain-3{grid-template-columns:1fr !important;max-width:none;margin:0;gap:12px}
.lpx-hero-right .lpx-chain-card{padding:18px 22px}
@media(max-width:860px){.lpx-hero-row{grid-template-columns:1fr}.lpx-hero-h1,.lpx-hero-headline,.lpx-hero-sub{text-align:center}.lpx-hero-ctas{justify-content:center !important}}

/* Powered by $PYONYA — handwritten label (no box, one horizontal line) + two boxed buttons side by side. */
.lpx-py-band{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;margin-top:26px}
/* Pre-footer placement (moved out of the hero): centered with room above the footer. */
.lpx-py-prefoot{display:flex;justify-content:center;padding-top:8px;padding-bottom:38px}
.lpx-py-prefoot .lpx-py-band{margin-top:0;justify-content:center;gap:26px}
@media(max-width:640px){.lpx-py-prefoot .lpx-py-band{flex-direction:column;gap:14px}}
.lpx-py-hand{font-family:"Caveat",cursive;font-weight:700;font-size:clamp(30px,3.4vw,46px);line-height:1;color:#e8eefc;white-space:nowrap}
.lpx-py-gold{background:linear-gradient(96deg,#f9e7a6,#e8c65a 55%,#d4af37);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
.lpx-py-actions{display:flex;flex-direction:row;gap:10px;flex-wrap:wrap}
.lpx-py-ca{display:inline-flex;align-items:center;gap:9px;padding:12px 15px;border-radius:11px;cursor:pointer;
  background:rgba(0,0,0,.34);border:1px solid rgba(255,255,255,.16);color:#dfe7f5;font:700 12.5px/1 ui-monospace,Menlo,monospace;transition:.15s}
.lpx-py-ca:hover{border-color:rgba(46,127,255,.5);color:#fff}
.lpx-py-ca.copied{border-color:rgba(95,211,154,.6);color:#7fe3b0}
.lpx-py-ca svg{opacity:.7}
.lpx-py-buy{display:inline-flex;align-items:center;font:800 13px/1 Inter,system-ui,sans-serif;color:#0b1220;
  background:linear-gradient(96deg,#f7e08a,#d4af37);padding:12px 18px;border-radius:11px;text-decoration:none}
.lpx-py-buy:hover{filter:brightness(1.06)}

/* Hero right — the node-graph logo mark (replaces the chain rail). */
.lpx-hero-right{display:flex;align-items:center;justify-content:center}
.lpx-hero-mark{width:100%;max-width:420px;height:auto;display:block;filter:drop-shadow(0 0 46px rgba(46,127,255,.32)) drop-shadow(0 0 30px rgba(232,198,90,.14));animation:heroMarkFloat 6s ease-in-out infinite}
@keyframes heroMarkFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
@media(prefers-reduced-motion:reduce){.lpx-hero-mark{animation:none}}
@media(max-width:860px){.lpx-hero-mark{max-width:260px;margin:8px auto 0}}

/* Real ticker logos overlay the letter avatar (falls back to the letter on 404). */
.lpx-token-icon{position:relative;overflow:hidden}
.lpx-token-icon img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;border-radius:inherit}
.lpx-kol-tokimg{width:16px;height:16px;border-radius:50%;object-fit:cover;vertical-align:middle;margin-right:6px}

/* ===== Live panels — tech glow-up ===== */
.lpx-live-grid{gap:16px}
.lpx-panel{background:linear-gradient(180deg,rgba(17,23,37,.92),rgba(10,14,24,.95));border-color:rgba(255,255,255,.08);box-shadow:inset 0 1px 0 rgba(255,255,255,.04)}
.lpx-panel::after{content:"";position:absolute;top:0;left:0;right:0;height:2px;z-index:1;pointer-events:none;
  background:linear-gradient(90deg,transparent,rgba(46,127,255,.75),rgba(247,224,138,.55),transparent);opacity:.45;transition:opacity .3s}
.lpx-panel:hover{border-color:rgba(46,127,255,.3);box-shadow:0 18px 44px rgba(0,0,0,.32),0 0 0 1px rgba(46,127,255,.14)}
.lpx-panel:hover::after{opacity:1}
.lpx-panel-head{background:rgba(0,0,0,.26);-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px)}
/* token rows: left accent + logo glow on hover; mono tabular data */
.lpx-token-row a{transition:background .16s,box-shadow .16s;border-left:2px solid transparent}
.lpx-token-row a:hover{background:rgba(46,127,255,.09);border-left-color:#2E7FFF;transform:none;box-shadow:inset 0 0 0 1px rgba(46,127,255,.12)}
.lpx-token-row a:hover .lpx-token-icon{box-shadow:0 0 0 2px rgba(46,127,255,.4),0 0 14px rgba(46,127,255,.45);transform:scale(1.07)}
.lpx-token-icon{transition:transform .16s,box-shadow .16s}
.lpx-token-meta{font-variant-numeric:tabular-nums;font-family:ui-monospace,Menlo,monospace!important;font-size:10.5px!important;letter-spacing:-.02em}
/* rank badge on Trending logos */
#trendingList{counter-reset:tk}
#trendingList .lpx-token-row{counter-increment:tk}
#trendingList .lpx-token-icon::after{content:counter(tk);position:absolute;top:-5px;left:-5px;z-index:3;
  min-width:15px;height:15px;padding:0 3px;border-radius:8px;background:#0b1220;border:1px solid rgba(247,224,138,.5);
  font:900 8.5px/15px Inter;text-align:center;color:#f7e08a;box-shadow:0 2px 6px rgba(0,0,0,.4)}
/* KOL rows: hover, and the BLURRED LOCKED chip (hide what they trade) */
.lpx-kol-row{transition:background .15s}
.lpx-kol-row:hover{background:rgba(255,255,255,.035)}
.lpx-kol-locked{display:inline-flex;align-items:center;gap:5px;text-decoration:none;color:#8a94a8;
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.13);border-radius:7px;padding:3px 9px;
  font:800 10px/1 Inter;transition:.15s}
.lpx-kol-locked em{font-style:normal;letter-spacing:2.5px;filter:blur(.5px);opacity:.75}
.lpx-kol-locked:hover{color:#8fb4ff;border-color:rgba(46,127,255,.45);background:rgba(46,127,255,.12)}
.lpx-kol-side[data-x]{}
.lpx-kol-row[data-side="buy"] .lpx-kol-side{color:#5fd39a}
.lpx-kol-row[data-side="sell"] .lpx-kol-side{color:#ff6b7a}

/* Clean tech divider between the hero and the live panels. */
.lpx-hero-divider{height:1px;margin:38px auto 8px;position:relative;
  background:linear-gradient(90deg,transparent,rgba(46,127,255,.45) 22%,rgba(247,224,138,.4) 50%,rgba(46,127,255,.45) 78%,transparent)}
.lpx-hero-divider::before{content:"";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  width:7px;height:7px;border-radius:50%;background:#4d9dff;box-shadow:0 0 12px rgba(46,127,255,.9),0 0 3px #fff}

/* Divider — prominent, clearly visible. */
.lpx-hero-divider{height:2px !important;width:100%;max-width:none;margin:42px auto 16px !important;border-radius:2px;
  background:linear-gradient(90deg,transparent,#2E7FFF 16%,#f7e08a 50%,#2E7FFF 84%,transparent) !important;
  box-shadow:0 0 22px rgba(46,127,255,.5);opacity:1 !important;display:block !important}
.lpx-hero-divider::before{width:11px !important;height:11px !important;background:#f7e08a !important;
  box-shadow:0 0 18px #f7e08a,0 0 6px #fff !important}

/* ===== Cooler sections ===== */
/* Section headings — gradient accent bar underneath. */
.lpx-section > .lpx-h2::after{content:"";display:block;width:64px;height:3px;border-radius:2px;margin-top:14px;
  background:linear-gradient(90deg,#2E7FFF,#f7e08a);box-shadow:0 0 12px rgba(46,127,255,.4)}

/* Compare → VS battle card: glass, highlighted Intel Maps column, ✓/✗ badges. */
.lpx-cmp{background:linear-gradient(180deg,rgba(17,23,37,.92),rgba(10,14,24,.95));border:1px solid rgba(255,255,255,.09);
  border-radius:18px;overflow:hidden;max-width:840px;margin:26px auto 0;box-shadow:0 20px 50px rgba(0,0,0,.3)}
.lpx-cmp-row{border-bottom:1px solid rgba(255,255,255,.05);transition:background .16s}
.lpx-cmp-row:last-child{border-bottom:0}
.lpx-cmp-row:not(.lpx-cmp-head):hover{background:rgba(46,127,255,.05)}
.lpx-cmp-row > div:last-child{background:linear-gradient(90deg,rgba(46,127,255,.07),rgba(46,127,255,.13));position:relative}
.lpx-cmp-head{background:rgba(0,0,0,.32);font-weight:800;letter-spacing:.04em}
.lpx-cmp-head > div:last-child{color:#8fb4ff !important;font-weight:900}
.lpx-cmp-row .ok,.lpx-cmp-row .x{display:inline-grid;place-items:center;width:24px;height:24px;border-radius:50%;font:900 13px/1 Inter}
.lpx-cmp-row .ok{background:rgba(95,211,154,.16);border:1px solid rgba(95,211,154,.45);color:#5fd39a;box-shadow:0 0 10px rgba(95,211,154,.22)}
.lpx-cmp-row .x{background:rgba(255,107,122,.10);border:1px solid rgba(255,107,122,.32);color:#ff6b7a}
.lpx-cmp-row > div:last-child .ok{box-shadow:0 0 14px rgba(95,211,154,.4)}

/* Try-it-now cards → live token chips (logo + hover glow/lift). */
.lpx-quick-card{position:relative;transition:transform .18s,border-color .18s,box-shadow .18s}
.lpx-quick-card:hover{transform:translateY(-3px);border-color:rgba(46,127,255,.4);box-shadow:0 14px 34px rgba(0,0,0,.32),0 0 26px rgba(46,127,255,.16)}
.lpx-quick-logo{width:34px;height:34px;border-radius:9px;object-fit:cover;margin-bottom:10px;display:block;box-shadow:0 2px 8px rgba(0,0,0,.35)}
/* Pricing cards — hover lift + glow. */
.lpx-price-card,.lpx-plan,.lpx-pricing-card{transition:transform .18s,box-shadow .18s,border-color .18s}
.lpx-price-card:hover,.lpx-plan:hover,.lpx-pricing-card:hover{transform:translateY(-3px);box-shadow:0 16px 40px rgba(0,0,0,.34),0 0 24px rgba(46,127,255,.14);border-color:rgba(46,127,255,.35)}

/* Compare — tighten the check columns so ✓/✗ center + the highlight wraps snugly. */
.lpx-cmp-row{grid-template-columns:1fr 120px 120px !important}
.lpx-cmp-row > div:nth-child(2),
.lpx-cmp-row > div:nth-child(3){display:flex !important;align-items:center;justify-content:center;text-align:center}
.lpx-cmp-head > div:nth-child(2),
.lpx-cmp-head > div:nth-child(3){justify-content:center}

/* Compare — force equal narrow check columns, everything centered (header + body). */
.lpx-cmp .lpx-cmp-row{grid-template-columns:1fr 104px 104px !important;padding-left:18px !important;padding-right:0 !important}
.lpx-cmp .lpx-cmp-row > div:nth-child(2),
.lpx-cmp .lpx-cmp-row > div:nth-child(3){display:grid !important;place-items:center !important;text-align:center !important}

/* ===== Compare — clean two-sided layout + NEW brand colors (blue/champagne, no cyan) ===== */
.lpx-cmp{max-width:860px}
.lpx-cmp .lpx-cmp-row{grid-template-columns:1fr 150px 150px !important;padding:14px 22px !important}
.lpx-cmp .lpx-cmp-row > div:first-child{align-self:center}
.lpx-cmp .lpx-cmp-row > div:nth-child(2){display:grid !important;place-items:center !important;background:none !important;color:#9aa4b6}
/* the DIVIDING LINE goes here — Other Tools │ Intel Maps */
.lpx-cmp .lpx-cmp-row > div:nth-child(3){display:grid !important;place-items:center !important;position:relative;background:none !important}
.lpx-cmp .lpx-cmp-row > div:nth-child(3)::before{content:"";position:absolute;left:0;top:-14px;bottom:-14px;width:2px;
  background:linear-gradient(180deg,transparent,rgba(46,127,255,.55),transparent)}
/* Intel Maps winning column — soft blue wash */
.lpx-cmp .lpx-cmp-row > div:nth-child(3){box-shadow:inset 34px 0 40px -30px rgba(46,127,255,.35)}
.lpx-cmp .lpx-cmp-head > div:nth-child(2){text-align:center;color:#8a94a8}
.lpx-cmp .lpx-cmp-head > div:nth-child(3){color:#5aa2ff !important;text-align:center;text-shadow:0 0 12px rgba(46,127,255,.5)}
/* badges — green ✓, muted-grey –, blue glow on the Intel Maps ✓ (no cyan) */
.lpx-cmp .lpx-cmp-row .ok{background:rgba(95,211,154,.15) !important;border:1px solid rgba(95,211,154,.5) !important;color:#5fd39a !important;box-shadow:none !important}
.lpx-cmp .lpx-cmp-row .x{background:rgba(150,160,180,.10) !important;border:1px solid rgba(150,160,180,.28) !important;color:#96a4b8 !important;box-shadow:none !important}
.lpx-cmp .lpx-cmp-row > div:nth-child(3) .ok{box-shadow:0 0 16px rgba(46,127,255,.55) !important;border-color:rgba(120,180,255,.6) !important;color:#8fd9b4 !important}

/* ===== Compare — STRICT brand palette (champagne-gold wins, blue wash, muted-grey other). No green, no cyan. ===== */
.lpx-cmp .lpx-cmp-head > div:nth-child(3){color:#f7e08a !important;text-shadow:0 0 14px rgba(247,224,138,.4)}
.lpx-cmp .lpx-cmp-head > div:nth-child(3)::after{background:linear-gradient(90deg,#2E7FFF,#f7e08a) !important}
/* Other Tools marks → muted grey */
.lpx-cmp .lpx-cmp-row > div:nth-child(2) .ok{background:rgba(150,160,180,.12) !important;border:1px solid rgba(150,160,180,.35) !important;color:#aeb8c8 !important;box-shadow:none !important}
.lpx-cmp .lpx-cmp-row .x{background:rgba(150,160,180,.08) !important;border:1px solid rgba(150,160,180,.22) !important;color:#8a94a6 !important;box-shadow:none !important}
/* Intel Maps ✓ → champagne gold, glowing (the winning mark) */
.lpx-cmp .lpx-cmp-row > div:nth-child(3) .ok{background:rgba(247,224,138,.15) !important;border:1px solid rgba(247,224,138,.6) !important;color:#f7e08a !important;box-shadow:0 0 16px rgba(247,224,138,.45) !important}
/* dividing seam stays brand-blue */
.lpx-cmp .lpx-cmp-row > div:nth-child(3)::before{background:linear-gradient(180deg,transparent,rgba(46,127,255,.55),transparent) !important}

/* ===== Compare badges — correct selectors (.ok/.x ARE the cells). Gold wins, grey other. ===== */
/* Other Tools cell (2nd) → muted grey */
.lpx-cmp .lpx-cmp-row > div.ok:nth-child(2),
.lpx-cmp .lpx-cmp-row > div.x:nth-child(2){color:#aeb8c8 !important;background:rgba(150,160,180,.12) !important;border:1px solid rgba(150,160,180,.4) !important;box-shadow:none !important}
/* Intel Maps cell (3rd) → champagne gold, keeps the blue column wash + adds gold glow */
.lpx-cmp .lpx-cmp-row > div.ok:nth-child(3){color:#f7e08a !important;background:rgba(247,224,138,.16) !important;border:1px solid rgba(247,224,138,.62) !important;
  box-shadow:inset 34px 0 40px -30px rgba(46,127,255,.32), 0 0 14px rgba(247,224,138,.42) !important}

/* ===== Compare — first-update style rebuild: clean blue column + single divider, .mk circle badges (gold/grey) ===== */
.lpx-cmp .lpx-cmp-row{grid-template-columns:1fr 134px 134px !important;padding:0 !important}
.lpx-cmp .lpx-cmp-row > div{padding:14px 22px !important;display:flex !important;align-items:center !important}
.lpx-cmp .lpx-cmp-row > div:nth-child(2),
.lpx-cmp .lpx-cmp-row > div:nth-child(3){justify-content:center !important;text-align:center}
/* reset the old cell-as-badge styling */
.lpx-cmp .lpx-cmp-row > div.ok,.lpx-cmp .lpx-cmp-row > div.x{background:none !important;border:0 !important;border-radius:0 !important;box-shadow:none !important;width:auto !important;height:auto !important;color:inherit !important}
/* kill the messed-up seam */
.lpx-cmp .lpx-cmp-row > div:nth-child(3)::before{display:none !important}
/* clean Intel Maps column: blue tint + ONE left divider line */
.lpx-cmp .lpx-cmp-row > div:nth-child(3),
.lpx-cmp .lpx-cmp-head > div:nth-child(3){background:linear-gradient(90deg,rgba(46,127,255,.05),rgba(46,127,255,.12)) !important;border-left:1px solid rgba(46,127,255,.32) !important;box-shadow:none !important}
/* circle badges */
.lpx-cmp .mk{display:inline-grid;place-items:center;width:24px;height:24px;border-radius:50%;font:900 13px/1 Inter,system-ui,sans-serif}
.lpx-cmp .lpx-cmp-row > div:nth-child(2) .mk{background:rgba(150,160,180,.12);border:1px solid rgba(150,160,180,.4);color:#aeb8c8}
.lpx-cmp .lpx-cmp-row > div:nth-child(3) .mk{background:rgba(247,224,138,.16);border:1px solid rgba(247,224,138,.62);color:#f7e08a;box-shadow:0 0 14px rgba(247,224,138,.4)}

/* Override leftover per-cell gold borders (higher-specificity earlier rules) → clean column only. */
.lpx-cmp .lpx-cmp-row > div.ok:nth-child(3){background:linear-gradient(90deg,rgba(46,127,255,.05),rgba(46,127,255,.12)) !important;border:0 !important;border-left:1px solid rgba(46,127,255,.32) !important;box-shadow:none !important;color:inherit !important}
.lpx-cmp .lpx-cmp-row > div.ok:nth-child(2),
.lpx-cmp .lpx-cmp-row > div.x:nth-child(2){background:none !important;border:0 !important;box-shadow:none !important;color:inherit !important}

/* ===== Two-cluster token demo (replaces the quick cards) ===== */
.lpx-clusters{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin:30px auto 0;max-width:1040px;align-items:center}
@media(max-width:760px){.lpx-clusters{grid-template-columns:1fr;gap:4px}}
.lpx-cl{width:100%;height:auto;overflow:visible;display:block}
.lpx-cl-edge{stroke:rgba(46,127,255,.5);stroke-width:2.5;stroke-linecap:round;filter:drop-shadow(0 0 3px rgba(46,127,255,.4))}
.lpx-cl-fill{fill:#0e1524}
.lpx-cl-ring{fill:none;stroke:rgba(46,127,255,.55);stroke-width:2.5;transition:stroke .18s,stroke-width .18s,filter .18s}
.lpx-cl-fallback{fill:#f7e08a;font:900 22px/1 Inter,system-ui,sans-serif;text-anchor:middle;dominant-baseline:central}
.lpx-cl-label{fill:#c6cfdf;font:800 13px/1 Inter,system-ui,sans-serif;text-anchor:middle;letter-spacing:.02em}
.lpx-cl-node{cursor:pointer}
.lpx-cl-node:hover .lpx-cl-ring{stroke:#f7e08a;stroke-width:3.5;filter:drop-shadow(0 0 8px rgba(247,224,138,.75))}
.lpx-cl-node:hover .lpx-cl-label{fill:#fff}

/* ===== Board flanked by the two token clusters ===== */
.lpx-board-flank{display:flex;align-items:center;justify-content:center;gap:14px;max-width:1580px;margin:0 auto;flex-wrap:wrap}
.lpx-board-flank .lpx-live-grid{flex:1 1 640px;margin-top:0}
.lpx-flank{flex:0 0 290px;min-width:0}
.lpx-flank .lpx-cl{width:100%}
@media(max-width:1280px){.lpx-flank{flex:1 1 44%}}

/* ===== Dream layout: compare + two-part series side by side under the board ===== */
.lpx-duo{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:40px;max-width:1360px;margin:0 auto;align-items:start}
.lpx-duo > section{margin:0 !important;padding-left:0 !important;padding-right:0 !important;max-width:100% !important}
.lpx-duo .lpx-cmp,.lpx-duo .dfs{max-width:100% !important;margin-left:0;margin-right:0}
.lpx-duo .lpx-h2{text-align:left}
/* minmax(0,1fr), not 1fr: plain 1fr keeps min-width:auto, so the carousel
   track's min-content blew the single column out to ~1300px on phones. */
@media(max-width:1000px){.lpx-duo{grid-template-columns:minmax(0,1fr);gap:8px}}

/* Board full width again (flank removed); right-align the two-part series title. */
#dfsH2{text-align:right}

/* Right-align the two-part series subheading + its accent bar to match the title. */
#differences .lpx-lead{text-align:right}
#dfsH2::after{margin-left:auto;margin-right:0}

/* Ambient node-web background (behind content, above the color block). */
#lpxWebBg{position:fixed;inset:0;width:100%;height:100%;z-index:0;pointer-events:none}
body>main,body>footer.lpx-foot{position:relative;z-index:1}

/* Cleaner, calmer panel gleam — no jumpy sheen sweep, softer top accent. */
.lpx-panel::after{opacity:.26 !important;height:1.5px !important}
.lpx-panel:hover::before{animation:none !important}

/* ===== Compare slider (Intel Maps ↔ Other Tools) ===== */
.cmpx{max-width:100%;margin:24px auto 0}
.cmpx-vp{overflow:hidden;border-radius:18px;border:1px solid rgba(255,255,255,.09);box-shadow:0 18px 44px rgba(0,0,0,.28)}
.cmpx-track{display:flex;transition:transform .5s cubic-bezier(.16,.84,.28,1)}
.cmpx-slide{flex:0 0 100%;box-sizing:border-box;padding:22px 26px}
.cmpx-intel{background:linear-gradient(180deg,rgba(46,127,255,.14),rgba(12,17,28,.7))}
.cmpx-other{background:linear-gradient(180deg,rgba(30,36,52,.72),rgba(12,17,28,.72))}
.cmpx-head{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:12px;padding-bottom:12px;border-bottom:1px solid rgba(255,255,255,.1)}
.cmpx-side{font:900 19px/1 Inter,system-ui,sans-serif;letter-spacing:-.01em}
.cmpx-intel .cmpx-side{color:#f7e08a}
.cmpx-other .cmpx-side{color:#aeb8c8}
.cmpx-hint{font:700 10.5px/1 Inter;letter-spacing:.1em;text-transform:uppercase;color:var(--fg-dim)}
.cmpx-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:1px}
.cmpx-list li{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:9px 2px;border-bottom:1px solid rgba(255,255,255,.055);font:600 14px/1.35 Inter,system-ui,sans-serif;color:var(--fg)}
.cmpx-list li:last-child{border-bottom:0}
.cmpx-mk{display:inline-grid;place-items:center;width:24px;height:24px;border-radius:50%;font:900 13px/1 Inter;flex:0 0 auto}
.cmpx-mk.ok{background:rgba(247,224,138,.15);border:1px solid rgba(247,224,138,.6);color:#f7e08a}
.cmpx-other .cmpx-mk.ok{background:rgba(150,160,180,.12);border:1px solid rgba(150,160,180,.4);color:#aeb8c8}
.cmpx-mk.no{background:rgba(150,160,180,.08);border:1px solid rgba(150,160,180,.25);color:#8a94a6}
.cmpx-ctrl{display:flex;align-items:center;justify-content:center;gap:14px;margin-top:16px}
.cmpx-arrow{width:36px;height:36px;border-radius:50%;border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.04);color:#cdd6e6;font-size:20px;line-height:1;cursor:pointer;display:grid;place-items:center;transition:.15s}
.cmpx-arrow:hover{background:rgba(46,127,255,.2);border-color:rgba(46,127,255,.5);color:#fff}
.cmpx-dots{display:flex;gap:8px;align-items:center}
.cmpx-dot{width:9px;height:9px;border-radius:50%;border:0;background:rgba(255,255,255,.2);cursor:pointer;padding:0;transition:.2s}
.cmpx-dot.on{width:26px;border-radius:5px;background:linear-gradient(90deg,#2E7FFF,#f7e08a)}
