/* Marketing landing page (/) — 1Money-style layout, no app sidebar */

:root {
  --lp-bg: #ffffff;
  --lp-bg-soft: #f8fafc;
  --lp-text: #0f172a;
  --lp-muted: #64748b;
  --lp-border: #e2e8f0;
  --lp-accent: #2563eb;
  --lp-accent-soft: rgba(37, 99, 235, 0.08);
  --lp-header-h: 4rem;
  --lp-max: 72rem;
}

body.lp-page {
  margin: 0;
  min-height: 100vh;
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
}

body.lp-page.auth-pending [data-auth-user],
body.lp-page.auth-guest [data-auth-user] {
  display: none !important;
}

body.lp-page.auth-user [data-auth-guest] {
  display: none !important;
}

.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--lp-header-h);
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.lp-header-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  min-width: 0;
}

.lp-brand img {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 8px;
}

.lp-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .lp-nav {
    display: flex;
  }
}

.lp-nav a {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
}

.lp-nav a:hover {
  color: var(--lp-text);
}

body.portfolio-hidden [data-nav="portfolio"],
body.portfolio-hidden a[href="/portfolio"],
body.portfolio-hidden a[href^="/portfolio?"] {
  display: none !important;
}

body.backtest-hidden .lp-nav a[href="/layered"],
body.backtest-hidden .lp-nav a[href="/backtest"],
body.backtest-hidden a[href="/layered"],
body.backtest-hidden a[href="/backtest"],
body.backtest-hidden a[href^="/layered?"],
body.backtest-hidden a[href^="/backtest?"] {
  display: none !important;
}

.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.lp-link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--lp-text);
  text-decoration: none;
  border-radius: 0.45rem;
}

.lp-link:hover {
  background: var(--lp-bg-soft);
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.lp-btn--primary {
  background: var(--lp-accent);
  color: #fff;
  border-color: var(--lp-accent);
}

.lp-btn--primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.lp-btn--ghost {
  background: transparent;
  color: var(--lp-text);
  border-color: var(--lp-border);
}

.lp-btn--ghost:hover {
  border-color: rgba(37, 99, 235, 0.35);
  color: var(--lp-accent);
}

.lp-main {
  padding-top: var(--lp-header-h);
}

.lp-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5.5rem) 1.25rem clamp(2.5rem, 6vw, 4rem);
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37, 99, 235, 0.12), transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.lp-hero-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  text-align: center;
}

/* Marketing landing (/) — full-bleed hero, tools live on /flows + /holdings */
body.lp-marketing {
  --lp-hero-ink: #f8fafc;
  --lp-hero-muted: #94a3b8;
  --lp-hero-bg: #0b1220;
}

body.lp-marketing .lp-header--on-hero {
  background: rgba(11, 18, 32, 0.72);
  border-bottom-color: rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.lp-marketing .lp-header--on-hero .lp-brand,
body.lp-marketing .lp-header--on-hero .lp-nav a,
body.lp-marketing .lp-header--on-hero .lp-link {
  color: var(--lp-hero-ink);
}

body.lp-marketing .lp-header--on-hero .lp-nav a {
  color: var(--lp-hero-muted);
}

body.lp-marketing .lp-header--on-hero .lp-nav a:hover {
  color: #fff;
}

body.lp-marketing .lp-header--on-hero .lp-lang-btn {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.35);
  color: var(--lp-hero-muted);
}

body.lp-marketing .lp-header--on-hero .lp-lang-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(148, 163, 184, 0.55);
  color: #e2e8f0;
}

body.lp-marketing .lp-main--marketing {
  padding-top: 0;
  min-height: 100vh;
}

.lp-hero--marketing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--lp-header-h) + 2rem) 1.25rem 3rem;
  background:
    radial-gradient(ellipse 55% 70% at 85% 40%, rgba(37, 99, 235, 0.28), transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(14, 165, 233, 0.12), transparent 50%),
    linear-gradient(145deg, #0b1220 0%, #111827 48%, #0f172a 100%);
  color: var(--lp-hero-ink);
}

.lp-hero-marketing-inner {
  width: 100%;
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .lp-hero-marketing-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 3rem;
  }
}

.lp-brand-signal {
  margin: 0 0 1rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.lp-hero--marketing .lp-hero-title {
  margin: 0;
  max-width: 18ch;
  text-align: left;
  color: #fff;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
}

.lp-hero--marketing .lp-hero-lead {
  margin: 1.1rem 0 0;
  max-width: 34rem;
  text-align: left;
  color: var(--lp-hero-muted);
}

.lp-hero--marketing .lp-hero-cta {
  justify-content: flex-start;
  margin-top: 1.85rem;
}

.lp-btn--on-dark {
  background: #fff;
  color: #0b1220;
  border: 1px solid #fff;
}

.lp-btn--on-dark:hover {
  background: #e2e8f0;
  border-color: #e2e8f0;
}

.lp-btn--ghost-on-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.lp-btn--ghost-on-dark:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.lp-hero-visual {
  position: relative;
  min-height: min(42vw, 22rem);
  display: none;
}

@media (min-width: 900px) {
  .lp-hero-visual {
    display: block;
  }
}

.lp-hero-orb {
  position: absolute;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(14, 165, 233, 0.08));
  transform: rotate(45deg);
  animation: lp-orb-drift 12s ease-in-out infinite;
}

.lp-hero-orb--a {
  width: 9.5rem;
  height: 9.5rem;
  top: 18%;
  left: 28%;
  opacity: 0.95;
}

.lp-hero-orb--b {
  width: 6.25rem;
  height: 6.25rem;
  top: 42%;
  left: 52%;
  opacity: 0.7;
  animation-delay: -3s;
}

.lp-hero-orb--c {
  width: 4rem;
  height: 4rem;
  top: 28%;
  left: 62%;
  opacity: 0.55;
  animation-delay: -6s;
}

.lp-hero-ring {
  position: absolute;
  width: 16rem;
  height: 16rem;
  top: 12%;
  left: 22%;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
  animation: lp-ring-pulse 8s ease-in-out infinite;
}

@keyframes lp-orb-drift {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    transform: rotate(45deg) translate(0.4rem, -0.55rem);
  }
}

@keyframes lp-ring-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

body.lp-marketing .lp-footer--marketing {
  margin-top: 0;
  background: #0b1220;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  color: var(--lp-hero-muted);
}

body.lp-marketing .lp-footer--marketing a {
  color: #cbd5e1;
}

/* Holdings app page: reuse lp-* panels inside app shell */
body.holdings-app-page .holdings-main {
  padding: 1rem 1.25rem 2.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

body.holdings-app-page .lp-world,
body.holdings-app-page .lp-ticker,
body.holdings-app-page .lp-index {
  padding-left: 0;
  padding-right: 0;
}

.lp-eyebrow {
  margin: 0 0 0.85rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-accent);
  font-weight: 600;
}

.lp-hero-title {
  margin: 0 auto;
  max-width: min(36rem, 94vw);
  font-size: clamp(1.85rem, 4.6vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.lp-hero-lead {
  margin: 1.15rem auto 0;
  max-width: 42rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: #334155;
}

.lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.lp-stats {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1.25rem;
  border: 1px solid var(--lp-border);
  border-radius: 1rem;
  background: var(--lp-bg);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

@media (min-width: 640px) {
  .lp-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.lp-stat {
  text-align: center;
  padding: 0.35rem 0.5rem;
}

.lp-stat-value {
  display: block;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lp-accent);
}

.lp-stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--lp-muted);
}

.lp-section {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 1.25rem;
}

.lp-section--soft {
  background: var(--lp-bg-soft);
  max-width: none;
}

.lp-section--soft .lp-section-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
}

.lp-section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.lp-section-title {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.lp-section-sub {
  margin: 0.65rem auto 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--lp-muted);
}

.lp-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lp-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .lp-features--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lp-features--6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lp-feature {
  position: relative;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--lp-border);
  border-radius: 0.85rem;
  background: var(--lp-bg);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-feature--link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.lp-feature--link:focus-visible {
  outline: 2px solid var(--lp-accent);
  outline-offset: 2px;
}

.lp-section--soft .lp-feature {
  background: #fff;
}

.lp-feature:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.06);
}

.lp-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
  background: var(--lp-accent-soft);
  color: var(--lp-accent);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.lp-feature-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-muted);
  background: var(--lp-bg-soft);
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.lp-feature-title {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lp-feature-body {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--lp-muted);
}

.lp-feature-cta {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lp-accent);
}

/* World indices panel (from research landing) */
.lp-world,
.lp-flows,
#pillars,
#companies,
#holdings {
  scroll-margin-top: calc(var(--lp-header-h) + 0.75rem);
}

.lp-world-panel {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--lp-border);
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.lp-world-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.lp-world-eyebrow {
  margin: 0 0 0.35rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-accent);
  font-weight: 600;
}

.lp-world-title {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-world-sub {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: var(--lp-muted);
}

.lp-world-year-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.lp-world-year-btn {
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  border: 1px solid var(--lp-border);
  border-radius: 9999px;
  background: #fff;
  color: var(--lp-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.lp-world-year-btn:hover {
  border-color: var(--lp-accent);
  color: var(--lp-accent);
}

.lp-world-year-btn.active {
  background: rgba(37, 99, 235, 0.1);
  border-color: var(--lp-accent);
  color: var(--lp-accent);
  font-weight: 600;
}

.lp-world-split {
  display: grid;
  grid-template-columns: minmax(300px, 46%) 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .lp-world-split {
    grid-template-columns: 1fr;
  }
}

.lp-world-table-panel {
  max-height: 520px;
  overflow: auto;
  border: 1px solid var(--lp-border);
  border-radius: 0.65rem;
}

.lp-world-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.lp-world-table .col-code {
  width: 38%;
  min-width: 6.75rem;
}

.lp-world-table .col-name {
  width: 32%;
  max-width: 9.5rem;
}

.lp-world-table .col-num {
  width: 30%;
  min-width: 5.25rem;
}

.lp-world-table th {
  text-align: left;
  padding: 0.55rem 0.65rem 0.55rem 0.75rem;
  color: var(--lp-muted);
  font-weight: 600;
  border-bottom: 2px solid var(--lp-border);
  white-space: normal;
  line-height: 1.35;
  position: sticky;
  top: 0;
  background: #fff;
}

.lp-world-table th.num,
.lp-world-table td.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.lp-world-table td {
  padding: 0.5rem 0.65rem 0.5rem 0.75rem;
  border-bottom: 1px solid var(--lp-border);
}

.lp-world-table td.code {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  color: var(--lp-muted);
  white-space: nowrap;
}

.lp-world-table td:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-world-table tr.row-missing td {
  color: #94a3b8;
}

.lp-world-table tr.row-selected {
  background: rgba(37, 99, 235, 0.08);
}

.lp-world-ret.pos {
  color: #16a34a;
  font-weight: 600;
}

.lp-world-ret.neg {
  color: #dc2626;
  font-weight: 600;
}

.lp-world-missing-tag {
  font-size: 0.72rem;
  color: #94a3b8;
}

.lp-world-chart-panel {
  min-height: 420px;
  padding: 0.5rem 0.25rem;
  border: 1px solid var(--lp-border);
  border-radius: 0.65rem;
  background: #fafbfc;
  position: relative;
}

.lp-world-chart-panel canvas {
  width: 100% !important;
  height: 100% !important;
  min-height: 400px;
}

/* Capital flow statement on landing */
.lp-flows {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 1.25rem clamp(2rem, 4vw, 3rem);
}

.lp-flows-panel {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--lp-border);
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.lp-flows-meta {
  margin: 0.75rem 0 1rem;
  font-size: 0.8rem;
  color: var(--lp-muted);
}

.lp-flows-meta a {
  color: var(--lp-accent);
}

.lp-flows-filters {
  margin: 0.85rem 0 1rem;
}

.lp-flows-map-body {
  height: min(62vh, 520px);
  min-height: 360px;
  margin: 0 0 1.25rem;
  border: 1px solid var(--lp-border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #eef2f6;
}

.lp-flows-map-body .flows-map-panel {
  border-right: 1px solid var(--lp-border);
}

.lp-flows-table-title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--lp-text);
}

.lp-flow-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.lp-flow-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lp-muted);
}

.lp-flow-pill.is-in {
  color: #047857;
  border-color: rgba(4, 120, 87, 0.25);
  background: rgba(4, 120, 87, 0.06);
}

.lp-flow-pill.is-out {
  color: #b91c1c;
  border-color: rgba(185, 28, 28, 0.25);
  background: rgba(185, 28, 28, 0.06);
}

.lp-flow-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--lp-border);
  border-radius: 0.65rem;
}

.lp-flow-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.lp-flow-table th,
.lp-flow-table td {
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid var(--lp-border);
  text-align: left;
}

.lp-flow-table th {
  color: var(--lp-muted);
  font-weight: 600;
  white-space: nowrap;
  background: #f8fafc;
}

.lp-flow-table tbody tr:last-child td {
  border-bottom: none;
}

.lp-mono {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-variant-numeric: tabular-nums;
}

.lp-flow-dir.is-pos,
.lp-flow-table .is-pos {
  color: #047857;
  font-weight: 600;
}

.lp-flow-dir.is-neg,
.lp-flow-table .is-neg {
  color: #b91c1c;
  font-weight: 600;
}

.lp-flow-unit {
  color: var(--lp-muted);
  font-size: 0.78rem;
}

.lp-flows-empty {
  color: var(--lp-muted);
  text-align: center;
  padding: 1.25rem !important;
}

.lp-flows-note {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  color: var(--lp-muted);
}

.lp-evidence-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lp-evidence-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lp-evidence-card {
  padding: 1.35rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(37, 99, 235, 0.15);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.04) 0%, #fff 100%);
}

.lp-evidence-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.lp-evidence-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--lp-muted);
}

.lp-unique-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lp-unique-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.lp-unique-card {
  padding: 1.35rem;
  border: 1px solid var(--lp-border);
  border-radius: 0.85rem;
  background: #fff;
}

.lp-unique-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
}

.lp-unique-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--lp-muted);
}

.lp-faq {
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lp-faq-item {
  border: 1px solid var(--lp-border);
  border-radius: 0.65rem;
  background: #fff;
  overflow: hidden;
}

.lp-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.45;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-item summary::after {
  content: "+";
  float: right;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: var(--lp-muted);
  font-weight: 500;
}

.lp-faq-item[open] summary::after {
  content: "−";
}

.lp-faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--lp-muted);
}

.lp-cta-band {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 3.5rem) 1.25rem;
  background: linear-gradient(180deg, var(--lp-accent-soft) 0%, #fff 100%);
  border-top: 1px solid var(--lp-border);
}

.lp-cta-band h2 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-cta-band p {
  margin: 0.65rem auto 1.25rem;
  max-width: 28rem;
  font-size: 0.95rem;
  color: var(--lp-muted);
  line-height: 1.6;
}

.lp-footer {
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--lp-border);
  background: var(--lp-bg-soft);
}

.lp-footer-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lp-footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.lp-footer-copy {
  margin: 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  color: var(--lp-muted);
  line-height: 1.5;
}

.lp-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.lp-footer-nav a {
  font-size: 0.78rem;
  color: var(--lp-muted);
  text-decoration: none;
}

.lp-footer-nav a:hover {
  color: var(--lp-accent);
}

.lp-lang-globe {
  position: relative;
}

.lp-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--lp-border);
  border-radius: 0.45rem;
  background: #fff;
  color: var(--lp-muted);
  cursor: pointer;
}

.lp-lang-btn:hover {
  color: var(--lp-text);
  border-color: rgba(37, 99, 235, 0.3);
}

.lp-lang-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  min-width: 7rem;
  padding: 0.35rem;
  border: 1px solid var(--lp-border);
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  z-index: 60;
}

.lp-lang-menu[hidden] {
  display: none;
}

.lp-lang-option {
  display: block;
  width: 100%;
  padding: 0.45rem 0.65rem;
  border: none;
  border-radius: 0.35rem;
  background: transparent;
  text-align: left;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--lp-text);
}

.lp-lang-option:hover,
.lp-lang-option[aria-selected="true"] {
  background: var(--lp-accent-soft);
  color: var(--lp-accent);
}

.lp-lang-menu .landing-lang-option {
  display: block;
  width: 100%;
  padding: 0.45rem 0.65rem;
  border: none;
  border-radius: 0.35rem;
  background: transparent;
  text-align: left;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--lp-text);
}

.lp-lang-menu .landing-lang-option:hover,
.lp-lang-menu .landing-lang-option.active,
.lp-lang-menu .landing-lang-option[aria-selected="true"] {
  background: var(--lp-accent-soft);
  color: var(--lp-accent);
}

/* Fast AI Jobs-style index */

/* Fast AI Jobs-style index ticker */

.lp-ticker {
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  background: var(--lp-bg-soft);
  padding: 1rem 0 1.15rem;
}

.lp-ticker-head {
  max-width: var(--lp-max);
  margin: 0 auto 0.75rem;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

.lp-ticker-meta {
  margin: 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lp-ticker-count {
  margin: 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  color: var(--lp-text);
  font-weight: 500;
}

.lp-live-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.lp-ticker-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.lp-ticker-track {
  display: flex;
  gap: 0.65rem;
  width: max-content;
  padding: 0.15rem 0;
  animation: lp-ticker-scroll var(--lp-ticker-duration, 60s) linear infinite;
}

.lp-ticker-track:hover {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .lp-ticker-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    max-width: var(--lp-max);
    margin: 0 auto;
    padding: 0 1.25rem;
  }
}

@keyframes lp-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.lp-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-ticker-item:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.lp-ticker-mono {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 8px;
  background: var(--lp-accent-soft);
  color: var(--lp-accent);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 600;
}

.lp-ticker-name {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.lp-ticker-region,
.lp-ticker-tag {
  font-size: 0.65rem;
  color: var(--lp-muted);
  background: var(--lp-bg-soft);
  border-radius: 999px;
  padding: 0.12rem 0.45rem;
}

.lp-index {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1rem;
}

.lp-index-head {
  margin-bottom: 1.25rem;
}

.lp-index-eyebrow {
  margin: 0 0 0.5rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-index-title {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-index-sub {
  margin: 0.45rem 0 0;
  color: var(--lp-muted);
  font-size: 0.92rem;
}

.lp-firm-filters-wrap {
  margin-bottom: 1.25rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--lp-border);
  border-radius: 0.85rem;
  background: #fff;
}

.lp-firm-filters-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.lp-firm-filters-label {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.lp-firm-filters-reset {
  border: none;
  background: transparent;
  color: var(--lp-accent);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.25rem 0.35rem;
}

.lp-firm-filters-reset:hover {
  text-decoration: underline;
}

.lp-filter-section {
  margin-bottom: 0.85rem;
}

.lp-filter-section:last-child {
  margin-bottom: 0;
}

.lp-filter-section-title {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.lp-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  background: var(--lp-bg-soft);
  color: var(--lp-text);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.32rem 0.65rem;
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s, color 0.12s;
}

.lp-filter-chip:hover {
  border-color: #cbd5e1;
}

.lp-filter-chip.is-active {
  border-color: var(--lp-accent);
  background: var(--lp-accent-soft);
  color: var(--lp-accent);
}

.lp-filter-chip-count {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  color: var(--lp-muted);
}

.lp-filter-chip.is-active .lp-filter-chip-count {
  color: var(--lp-accent);
}

.lp-firm-min {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: var(--lp-muted);
}

.lp-index-empty {
  color: var(--lp-muted);
  font-size: 0.92rem;
}

.lp-firm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .lp-firm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .lp-firm-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-firm-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--lp-border);
  border-radius: 0.85rem;
  padding: 0;
  background: #fff;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-firm-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.lp-firm-card--detail:hover {
  border-color: #93c5fd;
}

.lp-firm-card-link {
  display: block;
  flex: 1;
  padding: 1rem 1.05rem 0.75rem;
  color: inherit;
  text-decoration: none;
}

.lp-firm-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0 1.05rem 0.9rem;
  margin-top: -0.15rem;
}

.lp-firm-action {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lp-accent);
  text-decoration: none;
}

.lp-firm-action:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-firm-ext {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
}

.lp-firm-ext a {
  color: #64748b;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-firm-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.lp-firm-mono {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
  background: var(--lp-accent-soft);
  color: var(--lp-accent);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 600;
}

.lp-firm-badge {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-muted);
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
}

.lp-firm-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  color: #0f172a;
}

.lp-firm-hq {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--lp-muted);
}

.lp-firm-min {
  margin: 0.35rem 0 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--lp-muted);
}

.lp-firm-factsheet {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
}

.lp-firm-factsheet a {
  color: var(--lp-accent);
  font-weight: 600;
  text-decoration: none;
}

.lp-firm-factsheet a:hover {
  text-decoration: underline;
}

.lp-firm-tags {
  margin: 0.65rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.lp-firm-tag {
  font-size: 0.72rem;
  color: var(--lp-muted);
  background: var(--lp-bg-soft);
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
}

.lp-index-foot {
  margin-top: 1.25rem;
  text-align: center;
}

.lp-firm-more {
  min-width: 12rem;
}

.lp-index-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--lp-muted);
  padding: 2rem 0;
}

.lp-queue {
  border-top: 1px solid var(--lp-border);
  background: var(--lp-bg-soft);
}

.lp-queue-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  text-align: center;
}

.lp-queue-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.lp-queue-sub {
  margin: 0.65rem auto 1.1rem;
  max-width: 36rem;
  color: var(--lp-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.lp-wishlist {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  border-top: 1px solid var(--lp-border);
}

.lp-wishlist--prominent {
  max-width: none;
  padding: 0;
  border-top: none;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 52%, #1d4ed8 100%);
  color: #fff;
}

.lp-wishlist-promo {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 1.75rem 1.25rem 1.25rem;
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 900px) {
  .lp-wishlist-promo {
    grid-template-columns: 1fr auto auto;
  }
}

.lp-wishlist-eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.lp-wishlist-promo-title {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-wishlist-promo-sub {
  margin: 0.35rem 0 0;
  max-width: 28rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.lp-wishlist-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lp-btn--invert {
  background: #fff;
  color: var(--lp-accent);
  border-color: #fff;
}

.lp-btn--invert:hover {
  background: #eff6ff;
}

.lp-btn--invert-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.lp-btn--invert-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.lp-wishlist-body {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 1.25rem 1.75rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .lp-wishlist-body {
    grid-template-columns: minmax(14rem, 1fr) 1.25fr;
    align-items: start;
  }
}

.lp-wishlist-kpi {
  text-align: center;
  margin: 0;
  padding: 1rem 1.15rem;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--lp-accent-soft) 0%, #fff 100%);
}

.lp-wishlist--prominent .lp-wishlist-kpi {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  min-width: 9rem;
}

.lp-wishlist-kpi-value {
  margin: 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--lp-accent);
  line-height: 1.1;
}

.lp-wishlist--prominent .lp-wishlist-kpi-value {
  color: #fff;
}

.lp-wishlist-kpi-label {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  font-weight: 600;
}

.lp-wishlist--prominent .lp-wishlist-kpi-label {
  color: rgba(255, 255, 255, 0.92);
}

.lp-wishlist-kpi-hint {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--lp-muted);
}

.lp-wishlist-breakdown {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.lp-wishlist-bar-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--lp-muted);
  margin-bottom: 0.25rem;
}

.lp-wishlist-bar-num {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: var(--lp-text);
}

.lp-wishlist-bar-track {
  height: 0.45rem;
  border-radius: 999px;
  background: var(--lp-border);
  overflow: hidden;
}

.lp-wishlist-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--lp-accent);
  min-width: 2px;
}

.lp-wishlist-layout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .lp-wishlist-layout {
    grid-template-columns: minmax(16rem, 22rem) 1fr;
    align-items: start;
  }
}

.lp-wishlist-panel {
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  background: var(--lp-bg-soft);
  padding: 1.1rem 1.15rem;
}

.lp-wishlist--prominent .lp-wishlist-panel {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.22);
}

.lp-wishlist--prominent .lp-wishlist-joined {
  max-width: var(--lp-max);
  margin: 0 auto 0.75rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.lp-wishlist-panel-title {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.lp-wishlist-guest {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--lp-muted);
  line-height: 1.5;
}

.lp-wishlist-guest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.lp-wishlist-guest-actions .lp-btn {
  flex: 1 1 auto;
  min-width: 8rem;
  text-align: center;
  text-decoration: none;
  justify-content: center;
}

.lp-wishlist-joined {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
}

.lp-wishlist-form {
  display: grid;
  gap: 0.75rem;
}

.lp-wishlist-field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--lp-muted);
}

.lp-wishlist-field input,
.lp-wishlist-field select,
.lp-wishlist-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  font: inherit;
  color: var(--lp-text);
  background: #fff;
}

.lp-wishlist-field input:focus,
.lp-wishlist-field select:focus,
.lp-wishlist-field textarea:focus {
  outline: 2px solid var(--lp-accent-soft);
  border-color: var(--lp-accent);
}

.lp-wishlist-form-hint {
  margin: 0;
  font-size: 0.75rem;
  color: var(--lp-muted);
}

.lp-wishlist-form-error {
  margin: 0;
  font-size: 0.82rem;
  color: #b91c1c;
}

.lp-wishlist-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lp-wishlist-list-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.lp-wishlist-count {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  color: var(--lp-muted);
}

.lp-wishlist-loading {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--lp-muted);
}

.lp-wishlist-ticker-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.lp-wishlist-ticker-track {
  display: flex;
  gap: 0.5rem;
  width: max-content;
  list-style: none;
  margin: 0;
  padding: 0.15rem 0;
  animation: lp-wishlist-scroll var(--lp-wishlist-duration, 40s) linear infinite;
}

.lp-wishlist-ticker-track:hover {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .lp-wishlist-ticker-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
}

@keyframes lp-wishlist-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.lp-wishlist-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--lp-border);
  white-space: nowrap;
  flex-shrink: 0;
}

.lp-wishlist-chip-name {
  font-size: 0.82rem;
  font-weight: 600;
}

.lp-wishlist-chip-meta {
  font-size: 0.68rem;
  color: var(--lp-muted);
}

.lp-wishlist-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.lp-wishlist-item {
  display: block;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  background: #fff;
}

.lp-wishlist-item-note {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--lp-muted);
  line-height: 1.4;
}

.lp-wishlist-item-name {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
}

.lp-wishlist-item-meta {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: var(--lp-muted);
  line-height: 1.35;
}

.lp-wishlist-item-meta a {
  color: var(--lp-accent);
  text-decoration: none;
}

.lp-wishlist-item-meta a:hover {
  text-decoration: underline;
}

.lp-wishlist-empty {
  margin: 0;
  padding: 0.85rem;
  border: 1px dashed var(--lp-border);
  border-radius: 12px;
  color: var(--lp-muted);
  font-size: 0.88rem;
  list-style: none;
}
