@import url("tokens.css");

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lp-reduced-motion * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }

body.lp-body {
  margin: 0;
  font-family: var(--eb-font);
  font-size: 15px;
  line-height: 1.55;
  color: var(--eb-text);
  background: var(--eb-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.lp-container { width: min(1200px, 92vw); margin: 0 auto; }
.lp-micro { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--eb-royal); }
.lp-h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.03em; margin: 0 0 1rem; }
.lp-h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 0.75rem; }
.lp-h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 0.65rem; color: var(--eb-text); }
.lp-lead { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--eb-text-muted); max-width: 52ch; margin: 0 0 1.5rem; }
.lp-section { padding: clamp(2.25rem, 5vw, 3.75rem) 0; position: relative; z-index: 1; }
.lp-hero { padding-bottom: clamp(2.5rem, 6vw, 4rem); }
.lp-section--dark { background: var(--eb-midnight); color: #e2e8f0; }
.lp-section--dark .lp-lead { color: #94a3b8; }
.lp-section--dark .lp-h2 { color: #f8fafc; }

/* Ambient */
.lp-ambient {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% -10%, var(--eb-glow-royal), transparent 55%),
    radial-gradient(ellipse 60% 40% at 10% 20%, var(--eb-glow-violet), transparent 50%);
  opacity: 0.7;
}
[data-lp-theme="dark"] .lp-ambient { opacity: 0.45; }
.lp-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.lp-particle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--eb-royal); opacity: 0.25;
  animation: lp-float 12s var(--eb-ease) infinite;
}
@keyframes lp-float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.15; }
  50% { transform: translateY(-24px) translateX(8px); opacity: 0.4; }
}

/* Nav */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--eb-nav-h);
  display: flex; align-items: center;
  border-bottom: 1px solid var(--eb-border);
  background: var(--eb-glass);
  backdrop-filter: blur(20px) saturate(1.2);
  transition: box-shadow var(--eb-dur) var(--eb-ease);
}
.lp-nav.is-scrolled { box-shadow: var(--eb-shadow); }
.lp-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: min(1200px, 92vw); margin: 0 auto; }
.lp-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--eb-text); font-weight: 700; font-size: 1.05rem; }
.lp-brand--wordmark { gap: 0; }
.lp-brand__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  line-height: 0;
}
[data-lp-theme="light"] .lp-brand__logo-wrap:not(.lp-brand__logo-wrap--on-dark) {
  background: rgba(11, 18, 32, 0.94);
  padding: 6px 12px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
.lp-brand__logo-wrap--on-dark,
[data-lp-theme="dark"] .lp-brand__logo-wrap {
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.lp-brand__logo {
  height: 32px;
  width: auto;
  max-width: min(220px, 46vw);
  display: block;
  object-fit: contain;
}
.lp-footer .lp-brand__logo { height: 36px; max-width: min(260px, 55vw); }
.lp-brand__mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.lp-brand__mark img { width: 100%; height: 100%; display: block; object-fit: contain; }
.lp-nav__links { display: none; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
@media (min-width: 900px) { .lp-nav__links { display: flex; } }
.lp-nav__links a { color: var(--eb-text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.lp-nav__links a:hover { color: var(--eb-royal); }
.lp-nav__actions { display: flex; align-items: center; gap: 8px; }
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--eb-radius-sm); font-weight: 600; font-size: 14px;
  text-decoration: none; border: none; cursor: pointer; font-family: inherit;
  transition: transform 0.2s var(--eb-ease), box-shadow 0.2s;
}
.lp-btn--primary {
  background: linear-gradient(135deg, var(--eb-royal), var(--eb-indigo));
  color: #fff; box-shadow: 0 4px 20px var(--eb-glow-royal);
}
.lp-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--eb-glow-royal); }
.lp-btn--ghost { background: transparent; color: var(--eb-text-muted); border: 1px solid var(--eb-border-strong); }
.lp-btn--ghost:hover { border-color: var(--eb-royal); color: var(--eb-royal); }
.lp-icon-btn {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--eb-border);
  background: var(--eb-card); color: var(--eb-text-muted); cursor: pointer;
  display: grid; place-items: center; font-size: 16px;
}

/* Hero */
.lp-hero {
  min-height: 100vh; padding: calc(var(--eb-nav-h) + 3rem) 0 4rem;
  display: grid; align-items: center; position: relative; z-index: 1;
}
.lp-hero__grid {
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) {
  .lp-hero__grid { grid-template-columns: 1fr 1.1fr; min-height: calc(100vh - var(--eb-nav-h) - 4rem); }
}
.lp-hero__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px;
  border-radius: 999px; background: var(--eb-card); border: 1px solid var(--eb-border);
  font-size: 12px; font-weight: 600; color: var(--eb-royal); margin-bottom: 1.25rem;
  box-shadow: var(--eb-shadow-sm);
}
.lp-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.5rem; }
.lp-hero__stats { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.lp-hero__stat strong { display: block; font-size: 1.5rem; font-variant-numeric: tabular-nums; }
.lp-hero__stat span { font-size: 12px; color: var(--eb-text-muted); }

/* Cockpit */
.lp-cockpit {
  position: relative; border-radius: var(--eb-radius-xl);
  background: linear-gradient(165deg, var(--eb-midnight) 0%, var(--eb-slate) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--eb-shadow-lg), var(--eb-shadow-glow);
  padding: 1.25rem; min-height: 420px; overflow: hidden;
}
.lp-cockpit::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(37,99,235,0.2), transparent 50%);
  pointer-events: none;
}
.lp-cockpit__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px; position: relative; z-index: 2;
}
.lp-cockpit__dots { display: flex; gap: 6px; }
.lp-cockpit__dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.lp-cockpit__dots span:nth-child(1) { background: #ef4444; }
.lp-cockpit__dots span:nth-child(2) { background: #f59e0b; }
.lp-cockpit__dots span:nth-child(3) { background: #10b981; }
.lp-cockpit__title { font-size: 11px; color: #94a3b8; letter-spacing: 0.08em; text-transform: uppercase; }
.lp-cockpit__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; position: relative; z-index: 2; }
.lp-kpi {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--eb-radius); padding: 12px;
  animation: lp-kpi-pulse 4s ease-in-out infinite;
}
.lp-kpi:nth-child(2) { animation-delay: 0.5s; }
.lp-kpi:nth-child(3) { animation-delay: 1s; }
@keyframes lp-kpi-pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.lp-kpi__label { font-size: 10px; color: #64748b; text-transform: uppercase; letter-spacing: 0.06em; }
.lp-kpi__val { font-size: 18px; font-weight: 700; color: #f8fafc; font-variant-numeric: tabular-nums; }
.lp-kpi__val--up { color: var(--eb-success); }
.lp-cockpit__chart {
  margin-top: 12px; height: 120px; display: flex; align-items: flex-end; gap: 6px;
  position: relative; z-index: 2;
}
.lp-cockpit__bar-col {
  flex: 1; background: linear-gradient(180deg, var(--eb-royal), var(--eb-indigo));
  border-radius: 4px 4px 0 0; min-height: 8px;
  animation: lp-bar-grow 2s var(--eb-ease) infinite alternate;
}
@keyframes lp-bar-grow {
  from { height: 20%; opacity: 0.6; }
  to { height: var(--h, 80%); opacity: 1; }
}
.lp-cockpit__alerts {
  margin-top: 12px; display: flex; flex-direction: column; gap: 6px; position: relative; z-index: 2;
}
.lp-alert-pill {
  font-size: 11px; padding: 8px 10px; border-radius: 8px;
  background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.25);
  color: #fca5a5; display: flex; align-items: center; gap: 8px;
}
.lp-alert-pill--ok { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.25); color: #6ee7b7; }

/* Cards & grids */
.lp-grid-2 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .lp-grid-2 { grid-template-columns: 1fr 1fr; } }
.lp-grid-3 { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .lp-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.lp-card {
  background: var(--eb-card); border: 1px solid var(--eb-border);
  border-radius: var(--eb-radius-lg); padding: 1.5rem;
  box-shadow: var(--eb-shadow-sm);
  transition: transform 0.35s var(--eb-ease), box-shadow 0.35s var(--eb-ease);
}
.lp-card:hover { transform: translateY(-4px); box-shadow: var(--eb-shadow); }
.lp-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-size: 20px; margin-bottom: 1rem;
  background: rgba(37, 99, 235, 0.1); color: var(--eb-royal);
}
.lp-card__icon--svg {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.12), rgba(79, 70, 229, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: var(--eb-royal);
}
.lp-svg-icon { width: 28px; height: 28px; display: block; }
.lp-svg-icon--sm { width: 22px; height: 22px; }
.lp-card__title { margin: 0 0 8px; font-size: 1.05rem; font-weight: 700; color: var(--eb-text); }
.lp-card__text { margin: 0; color: var(--eb-text-muted); font-size: 14px; line-height: 1.5; }
.lp-pill {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
}
.lp-pill--success { background: rgba(16,185,129,0.12); color: var(--eb-success); }
.lp-pill--warning { background: rgba(245,158,11,0.12); color: var(--eb-warning); }
.lp-pill--info { background: rgba(6,182,212,0.12); color: var(--eb-info); }
.lp-pill--danger { background: rgba(239,68,68,0.12); color: var(--eb-danger); }

/* Workflow pipeline */
.lp-flow--pipeline {
  display: flex; flex-wrap: wrap; gap: 0; align-items: stretch; justify-content: center;
}
.lp-flow__connector {
  width: 24px; height: 2px; background: linear-gradient(90deg, var(--eb-royal), var(--eb-indigo));
  align-self: center; opacity: 0.5; flex-shrink: 0;
}
@media (max-width: 900px) {
  .lp-flow__connector { width: 2px; height: 16px; flex-basis: 100%; margin: 0 auto; }
  .lp-flow--pipeline { flex-direction: column; align-items: center; }
}
.lp-flow__step {
  min-width: 120px; max-width: 140px; padding: 14px 12px; border-radius: var(--eb-radius);
  background: rgba(30, 41, 59, 0.95); border: 1px solid rgba(148, 163, 184, 0.25);
  text-align: center; opacity: 0; transform: translateY(12px);
  transition: opacity 0.5s var(--eb-ease), transform 0.5s var(--eb-ease), box-shadow 0.3s, border-color 0.3s;
  color: #f8fafc;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.lp-flow__step.is-visible { opacity: 1; transform: translateY(0); }
.lp-flow__step.is-active {
  border-color: var(--eb-royal);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.45), 0 12px 32px rgba(37, 99, 235, 0.2);
  background: linear-gradient(165deg, rgba(37, 99, 235, 0.25), rgba(30, 41, 59, 0.98));
}
.lp-flow__num {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  color: #93c5fd; margin-bottom: 6px;
}
.lp-flow__name { display: block; font-size: 13px; font-weight: 700; color: #f8fafc; }
.lp-flow__sub { display: block; font-size: 10px; color: #94a3b8; margin-top: 4px; line-height: 1.3; }

/* Demo shell */
.lp-demo {
  border-radius: var(--eb-radius-xl); overflow: hidden;
  border: 1px solid var(--eb-border); background: var(--eb-midnight);
  display: grid; min-height: 480px;
}
@media (min-width: 900px) {
  .lp-demo { grid-template-columns: 200px 1fr; }
  .lp-demo--rich { grid-template-columns: 220px 1fr; }
}
.lp-demo__nav { padding: 1rem; border-right: 1px solid rgba(255,255,255,0.06); }
.lp-demo__nav button {
  display: block; width: 100%; text-align: left; padding: 10px 12px;
  border: none; background: transparent; color: #94a3b8; border-radius: 8px;
  font-family: inherit; font-size: 13px; font-weight: 500; cursor: pointer; margin-bottom: 4px;
}
.lp-demo__nav button.is-active { background: rgba(37,99,235,0.2); color: #fff; }
.lp-demo__panel { padding: 1.5rem; color: #e2e8f0; position: relative; }
.lp-demo__kpi-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; margin-bottom: 1rem; }
.lp-demo__table { width: 100%; border-collapse: collapse; font-size: 12px; }
.lp-demo__table th {
  position: sticky; top: 0; background: var(--eb-slate); text-align: left;
  padding: 10px; color: #94a3b8; font-weight: 600;
}
.lp-demo__table td { padding: 10px; border-top: 1px solid rgba(255,255,255,0.06); }

/* POS mock */
.lp-pos-mock {
  display: grid; gap: 1rem;
}
@media (min-width: 900px) { .lp-pos-mock { grid-template-columns: 1fr 1fr; } }
.lp-device {
  border-radius: var(--eb-radius-lg); padding: 1rem;
  background: linear-gradient(145deg, var(--eb-slate), var(--eb-midnight));
  border: 1px solid rgba(255,255,255,0.1);
  color: #e2e8f0;
}
.lp-device--tablet { aspect-ratio: 4/3; }
.lp-device--phone { max-width: 280px; margin: 0 auto; aspect-ratio: 9/16; }
.lp-scan-line {
  height: 2px; background: var(--eb-info);
  box-shadow: 0 0 12px var(--eb-info);
  animation: lp-scan 2s linear infinite;
}
@keyframes lp-scan {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(120px); opacity: 0; }
}

/* Pricing */
.lp-pricing { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .lp-pricing { grid-template-columns: repeat(3, 1fr); } }
.lp-price-card { text-align: center; }
.lp-price-card--featured {
  border-color: var(--eb-royal);
  box-shadow: 0 0 0 1px var(--eb-royal), var(--eb-shadow);
  transform: scale(1.02);
}
.lp-price { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.02em; }

/* FAQ */
.lp-faq details {
  border: 1px solid var(--eb-border); border-radius: var(--eb-radius);
  padding: 1rem 1.25rem; margin-bottom: 8px; background: var(--eb-card);
}
.lp-faq summary { font-weight: 600; cursor: pointer; list-style: none; }
.lp-faq summary::-webkit-details-marker { display: none; }

/* Footer — mega layout */
.lp-footer {
  background: #0b1220;
  color: #94a3b8;
  padding: 3.5rem 0 2rem;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-footer a { color: #cbd5e1; text-decoration: none; transition: color 0.2s ease; }
.lp-footer a:hover { color: #fff; }
.lp-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-footer__brand-block { max-width: 42ch; }
.lp-footer__brand { color: #fff !important; margin-bottom: 1rem; }
.lp-footer__tagline { line-height: 1.65; margin: 0 0 1rem; color: #94a3b8; font-size: 13px; }
.lp-footer__flag-row { display: flex; align-items: center; gap: 10px; }
.lp-footer__made-in { font-size: 12px; color: #64748b; }
.lp-footer__social-block { text-align: right; }
.lp-footer__social-label {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
.lp-footer__social { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.lp-social-btn {
  --neo-bg: #141c2e;
  --neo-light: rgba(255, 255, 255, 0.08);
  --neo-dark: rgba(0, 0, 0, 0.45);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--neo-bg);
  color: #e2e8f0;
  box-shadow: 6px 6px 14px var(--neo-dark), -4px -4px 12px var(--neo-light);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}
.lp-social-btn svg { width: 20px; height: 20px; }
.lp-social-btn:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 8px 10px 20px var(--neo-dark), -5px -5px 14px var(--neo-light);
}
.lp-social-btn:active {
  transform: translateY(0);
  box-shadow: inset 4px 4px 10px var(--neo-dark), inset -3px -3px 8px var(--neo-light);
}
.lp-social-btn--facebook:hover { color: #1877f2; }
.lp-social-btn--instagram:hover { color: #e4405f; }
.lp-social-btn--x:hover { color: #f8fafc; }
.lp-social-btn--pinterest:hover { color: #bd081c; }
.lp-social-btn--linkedin:hover { color: #0a66c2; }
.lp-footer__features {
  display: grid;
  gap: 1.5rem 1.25rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 640px) { .lp-footer__features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .lp-footer__features { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .lp-footer__features { grid-template-columns: repeat(4, 1fr); } }
.lp-footer__col-title {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e2e8f0;
}
.lp-footer__col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-footer__col-list a {
  font-size: 12px;
  line-height: 1.45;
  color: #94a3b8;
}
.lp-footer__col-list a:hover { color: #f1f5f9; }
.lp-footer__tools {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-footer__tools-title {
  margin: 0 0 1rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e2e8f0;
}
.lp-footer__tools-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 640px) { .lp-footer__tools-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .lp-footer__tools-grid { grid-template-columns: repeat(4, 1fr); } }
.lp-footer__tool-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: #cbd5e1 !important;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.lp-footer__tool-chip svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.7; }
.lp-footer__tool-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
  color: #fff !important;
}
.lp-footer__company {
  display: grid;
  gap: 1.25rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) { .lp-footer__company { grid-template-columns: repeat(4, 1fr); } }
.lp-footer__company-card {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-footer__company-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.lp-footer__company-head h4 {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #e2e8f0;
}
.lp-footer__company-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
}
.lp-footer__company-icon svg { width: 16px; height: 16px; }
.lp-footer__company-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #94a3b8;
}
.lp-footer__company-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-footer__company-links a { font-size: 12px; }
.lp-footer__legal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 11px;
  line-height: 1.6;
  color: #64748b;
}
.lp-footer__flag {
  flex-shrink: 0;
  display: inline-block;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  animation: lpFlagWave 2.8s ease-in-out infinite;
  transform-origin: left center;
}
.lp-flag-svg { display: block; vertical-align: middle; }
@keyframes lpFlagWave {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  25% { transform: rotate(3deg) translateY(-1px); }
  50% { transform: rotate(0deg) translateY(0); }
  75% { transform: rotate(-3deg) translateY(1px); }
}
.lp-footer__credit-main {
  margin: 0 0 4px;
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
}
.lp-footer__credit-main strong { color: #f1f5f9; font-weight: 700; }
.lp-footer__credit-sub {
  margin: 0 0 12px;
  font-size: 11px;
  color: #64748b;
  line-height: 1.5;
}
.lp-footer__credit-sub strong { color: #94a3b8; font-weight: 600; }
.lp-footer__prohibited { margin: 0; font-size: 11px; line-height: 1.6; color: #64748b; }
@media (max-width: 767px) {
  .lp-footer__social-block { text-align: left; width: 100%; }
  .lp-footer__social { justify-content: flex-start; }
}

/* Legal / Terms page */
.lp-legal-page {
  padding: 2rem 0 0;
  min-height: 60vh;
  background: var(--eb-bg);
}
.lp-legal-page__hero {
  max-width: 720px;
  margin-bottom: 2.5rem;
}
.lp-legal-page__meta {
  font-size: 13px;
  color: var(--eb-text-muted);
  margin: 1rem 0 0;
}
.lp-legal-page__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .lp-legal-page__layout {
    grid-template-columns: 240px 1fr;
    gap: 3rem;
  }
}
.lp-legal-toc {
  position: sticky;
  top: 88px;
  padding: 1.25rem;
  border-radius: var(--eb-radius-lg);
  border: 1px solid var(--eb-border);
  background: var(--eb-card);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.lp-legal-toc__title {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eb-text-muted);
}
.lp-legal-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-legal-toc__item a {
  display: block;
  padding: 4px 0;
  font-size: 12px;
  color: var(--eb-text-muted);
  text-decoration: none;
  line-height: 1.4;
}
.lp-legal-toc__item a:hover { color: var(--eb-royal); }
.lp-legal-toc__item--l2 a { padding-left: 10px; font-size: 11px; }
.lp-legal-body {
  padding: 1.5rem 1.75rem 3rem;
  border-radius: var(--eb-radius-lg);
  border: 1px solid var(--eb-border);
  background: var(--eb-card);
}
.lp-legal__h1 {
  font-size: 1.35rem;
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--eb-border);
  color: var(--eb-text);
  scroll-margin-top: 96px;
}
.lp-legal-body > .lp-legal__h1:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.lp-legal__h2 {
  font-size: 1.05rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--eb-text);
  scroll-margin-top: 96px;
}
.lp-legal__h3 {
  font-size: 0.95rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--eb-text);
}
.lp-legal__p {
  margin: 0 0 0.85rem;
  font-size: 14px;
  line-height: 1.7;
  color: var(--eb-text-muted);
}
.lp-legal__list {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--eb-text-muted);
}
.lp-legal__list li { margin-bottom: 6px; }
.lp-legal__hr {
  border: none;
  border-top: 1px solid var(--eb-border);
  margin: 2rem 0;
}
.lp-legal__missing a { color: var(--eb-royal); }

/* Reveal — content always visible (parent opacity hid tabs/cards on landing) */
[data-lp-reveal] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Command palette */
.lp-cmd-overlay {
  position: fixed; inset: 0; z-index: 2000; background: rgba(15,23,42,0.6);
  backdrop-filter: blur(8px); display: none; align-items: flex-start; justify-content: center;
  padding: 12vh 1rem 1rem;
}
.lp-cmd-overlay.is-open { display: flex; }
.lp-cmd {
  width: min(560px, 100%); background: var(--eb-card); border-radius: var(--eb-radius-lg);
  border: 1px solid var(--eb-border); box-shadow: var(--eb-shadow-lg); overflow: hidden;
}
.lp-cmd input {
  width: 100%; border: none; border-bottom: 1px solid var(--eb-border);
  padding: 16px 18px; font-size: 16px; font-family: inherit; background: transparent; color: var(--eb-text);
}
.lp-cmd__list { max-height: 320px; overflow-y: auto; padding: 8px; }
.lp-cmd__item {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px;
  border-radius: 8px; cursor: pointer; font-size: 14px;
}
.lp-cmd__item:hover, .lp-cmd__item.is-highlighted { background: rgba(37,99,235,0.08); }
.lp-cmd kbd { font-size: 11px; padding: 2px 6px; border-radius: 4px; background: var(--eb-bg); border: 1px solid var(--eb-border); }

/* Mobile nav */
.lp-mobile-toggle { display: block; }
@media (min-width: 900px) { .lp-mobile-toggle { display: none; } }
.lp-mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: var(--eb-bg);
  padding: 5rem 1.5rem; display: none; flex-direction: column; gap: 1rem;
}
.lp-mobile-menu.is-open { display: flex; }

/* Shimmer */
.lp-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  background-size: 200% 100%; animation: lp-shimmer 1.5s infinite;
}
@keyframes lp-shimmer { to { background-position: 200% 0; } }

/* CTA band */
.lp-cta-band {
  text-align: center; padding: 4rem 2rem; border-radius: var(--eb-radius-xl);
  background: linear-gradient(135deg, var(--eb-midnight), var(--eb-slate));
  color: #f8fafc; position: relative; overflow: hidden;
}
.lp-cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--eb-glow-royal), transparent 60%);
}

/* Testimonials */
.lp-quote {
  font-size: 1.1rem; font-style: italic; color: var(--eb-text-muted);
  border-left: 3px solid var(--eb-royal); padding-left: 1.25rem; margin: 0;
}

/* Warehouse interactive — flex grid fills container; visible bins grow per row */
.lp-wh-map {
  --wh-cols: 4;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 10px;
  width: 100%;
  min-height: 160px;
  padding: 12px;
  background: var(--eb-midnight);
  border-radius: var(--eb-radius-lg);
  border: 1px solid var(--eb-border);
  box-sizing: border-box;
}
.lp-wh-map--rich,
.lp-wh-map--floor,
.lp-wh-map--demo {
  /* inherits fluid flex layout */
}
.lp-wh-map--hero {
  min-height: 200px;
  padding: 14px;
}
.lp-wh-cell {
  flex: 1 1 calc((100% - (var(--wh-cols) - 1) * 10px) / var(--wh-cols));
  min-width: 96px;
  max-width: 100%;
  width: auto;
  aspect-ratio: 1;
  min-height: 88px;
  max-height: 132px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
  box-sizing: border-box;
}
.lp-wh-cell[style*="display: none"] { display: none !important; }
@media (max-width: 640px) {
  .lp-wh-cell {
    flex: 1 1 calc((100% - 10px) / 2);
    min-width: 88px;
  }
}
.lp-wh-cell--ok { background: rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.35); color: #ecfdf5; }
.lp-wh-cell--low { background: rgba(245, 158, 11, 0.15); border-color: rgba(245, 158, 11, 0.4); color: #fffbeb; }
.lp-wh-cell--res { background: rgba(6, 182, 212, 0.15); border-color: rgba(6, 182, 212, 0.35); color: #ecfeff; }
.lp-wh-cell:hover { transform: scale(1.04); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); }
.lp-wh-cell.is-selected { box-shadow: 0 0 0 2px var(--eb-royal); transform: scale(1.05); }
.lp-wh-cell.is-pulse { animation: lp-wh-flash 0.8s ease; }
@keyframes lp-wh-flash {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.4); }
}
.lp-wh-cell__zone { font-size: 9px; font-weight: 700; opacity: 0.8; line-height: 1.1; flex-shrink: 0; }
.lp-wh-cell__sku { font-size: 10px; font-weight: 700; line-height: 1.2; word-break: break-word; max-width: 100%; flex-shrink: 0; }
.lp-wh-cell__qty { font-size: 9px; opacity: 0.85; line-height: 1.1; flex-shrink: 0; }
.lp-wh-cell__icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; opacity: 0.9; }
.lp-wh-interactive__head { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.lp-wh-zone-tabs { display: flex; flex-wrap: wrap; gap: 6px; }
.lp-wh-zone-tabs button {
  border: 1px solid var(--eb-border); background: var(--eb-card); color: var(--eb-text-muted);
  padding: 8px 12px; border-radius: 8px; font-size: 12px; font-weight: 600; cursor: pointer; font-family: inherit;
}
.lp-wh-zone-tabs button.is-active { background: var(--eb-royal); color: #fff; border-color: var(--eb-royal); }
.lp-wh-stats { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 13px; color: var(--eb-text-muted); }
.lp-wh-stats strong { color: var(--eb-text); }
.lp-wh-interactive__grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 900px) {
  .lp-wh-interactive__grid { grid-template-columns: minmax(0, 1fr) minmax(240px, 320px); }
}
.lp-wh-interactive--demo .lp-wh-interactive__grid {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .lp-wh-interactive--demo .lp-wh-interactive__grid {
    grid-template-columns: minmax(0, 1fr) 220px;
  }
}
.lp-wh-interactive--demo .lp-wh-map {
  min-height: 220px;
}
.lp-wh-interactive--demo .lp-wh-cell {
  min-width: 72px;
  max-height: 110px;
}
.lp-wh-detail {
  background: var(--eb-slate); border-radius: var(--eb-radius-lg); padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08); color: #e2e8f0;
}
.lp-wh-detail--light {
  background: var(--eb-card); border: 1px solid var(--eb-border); color: var(--eb-text);
}
.lp-wh-detail--light h3 { color: var(--eb-text); }
.lp-wh-detail__row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--eb-border); font-size: 14px; }
.lp-wh-legend { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 12px; color: var(--eb-text-muted); }
.lp-wh-legend--bar { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--eb-border); }
.lp-leg { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 6px; vertical-align: middle; }
.lp-leg--ok { background: var(--eb-success); }
.lp-leg--low { background: var(--eb-warning); }
.lp-leg--res { background: var(--eb-info); }
.lp-wh-hero { background: var(--eb-card); border: 1px solid var(--eb-border); border-radius: var(--eb-radius-xl); padding: 1.5rem; box-shadow: var(--eb-shadow); }

/* POS showcase */
.lp-pos-showcase { display: grid; gap: 1.25rem; }
@media (min-width: 900px) { .lp-pos-showcase { grid-template-columns: 1.2fr 0.8fr; align-items: start; } }
.lp-pos-device-ui { display: flex; flex-direction: column; overflow: hidden; }
.lp-pos-device-ui__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px; background: rgba(0, 0, 0, 0.25); font-size: 11px;
}
.lp-pos-device-ui__body { padding: 12px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.lp-pos-mini-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; flex: 1; }
.lp-pos-mini-tile {
  background: rgba(255, 255, 255, 0.06); border-radius: 8px; padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-pos-mini-tile small { display: block; font-size: 10px; color: #94a3b8; }
.lp-pos-mini-tile strong { font-size: 14px; color: #fff; }
.lp-pos-device-ui__cart {
  background: rgba(37, 99, 235, 0.15); border-radius: 10px; padding: 12px;
  border: 1px solid rgba(37, 99, 235, 0.3);
}
.lp-pos-device-ui__total { font-size: 22px; font-weight: 700; color: #fff; }
.lp-pos-device-ui__actions { display: flex; gap: 8px; margin-top: 8px; }
.lp-pos-pay, .lp-pos-print {
  flex: 1; text-align: center; padding: 8px; border-radius: 8px; font-size: 11px; font-weight: 700;
}
.lp-pos-pay { background: var(--eb-success); color: #fff; }
.lp-pos-print { background: rgba(255, 255, 255, 0.1); color: #e2e8f0; }
.lp-pos-device-ui--mobile { padding: 12px; gap: 10px; }
.lp-pos-mobile-scan {
  position: relative; background: #0f172a; border-radius: 10px; padding: 16px; min-height: 100px;
  overflow: hidden; text-align: center;
}
.lp-pos-barcode {
  height: 48px; margin: 8px auto; width: 80%;
  background: repeating-linear-gradient(90deg, #fff 0 2px, transparent 2px 6px);
  opacity: 0.85;
}
.lp-pos-scan-label { font-size: 11px; color: var(--eb-info); margin: 8px 0 0; }
.lp-pos-mobile-cart { font-size: 12px; }
.lp-pos-mobile-cart div { display: flex; justify-content: space-between; margin-bottom: 6px; color: #e2e8f0; }
.lp-pos-mobile-pay {
  width: 100%; margin-top: 8px; padding: 10px; border: none; border-radius: 8px;
  background: var(--eb-royal); color: #fff; font-weight: 700; font-family: inherit; cursor: pointer;
}
.lp-pos-mobile-sync { font-size: 10px; color: #94a3b8; display: flex; align-items: center; gap: 6px; }

/* Banking dashboard */
.lp-bank-dashboard {
  background: linear-gradient(165deg, #0f172a, #1e293b);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--eb-radius-xl); padding: 1.5rem; box-shadow: var(--eb-shadow-lg);
}
.lp-bank-dashboard__top { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .lp-bank-dashboard__top { grid-template-columns: 1fr 1fr; } }
.lp-bank-dashboard__kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lp-bank-dash-kpi {
  background: rgba(255, 255, 255, 0.04); border-radius: var(--eb-radius); padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-bank-dash-kpi span { font-size: 11px; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; }
.lp-bank-dash-kpi strong { display: block; font-size: 1.35rem; color: #f8fafc; margin-top: 4px; }
.lp-bank-dash-kpi strong.up { color: #6ee7b7; }
.lp-bank-dash-kpi strong.down { color: #fca5a5; }
.lp-bank-dash-kpi em { font-size: 11px; color: #64748b; font-style: normal; display: block; margin-top: 4px; }
.lp-bank-dashboard__chart {
  background: rgba(0, 0, 0, 0.2); border-radius: var(--eb-radius); padding: 1rem;
}
.lp-bank-chart-title { font-size: 12px; color: #94a3b8; margin-bottom: 12px; }
.lp-bank-chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 120px; }
.lp-bank-chart-bar {
  flex: 1; height: var(--h, 50%); background: linear-gradient(180deg, var(--eb-royal), var(--eb-indigo));
  border-radius: 4px 4px 0 0; min-height: 8px;
}
.lp-bank-dashboard__bottom { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
@media (min-width: 900px) { .lp-bank-dashboard__bottom { grid-template-columns: 1fr 1.2fr; } }
.lp-bank-dashboard__recon { color: #e2e8f0; }
.lp-bank-recon-list { list-style: none; padding: 0; margin: 12px 0 0; font-size: 13px; }
.lp-bank-recon-list li { padding: 8px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.lp-bank-table { width: 100%; border-collapse: collapse; font-size: 12px; color: #e2e8f0; }
.lp-bank-table th { text-align: left; padding: 10px; color: #94a3b8; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.lp-bank-table td { padding: 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.lp-bank-table .num { text-align: right; font-variant-numeric: tabular-nums; }
.lp-bank-table .up { color: #6ee7b7; }
.lp-bank-table .down { color: #fca5a5; }

/* Rich demo app */
.lp-demo-hint { font-size: 13px; color: var(--eb-text-muted); margin-top: -0.5rem; }
.lp-demo-hint kbd { background: var(--eb-card); border: 1px solid var(--eb-border); padding: 2px 8px; border-radius: 4px; font-size: 11px; }
.lp-demo--rich { min-height: 560px; }
.lp-demo__nav-title { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: #64748b; margin: 0 0 8px 12px; }
.lp-demo-app { display: flex; flex-direction: column; min-height: 480px; background: #0f172a; }
.lp-demo-app__topbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px; padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); font-size: 12px; color: #94a3b8;
}
.lp-demo-app__breadcrumb { color: #f8fafc; font-weight: 600; }
.lp-demo-app__search {
  flex: 1; min-width: 140px; padding: 6px 12px; border-radius: 8px;
  background: rgba(255, 255, 255, 0.06); color: #64748b;
}
.lp-demo-app__user { color: #cbd5e1; }
.lp-demo-app__body {
  flex: 1; overflow: auto; position: relative; min-height: 380px;
}
/* Only one module visible at a time (class-based; avoid [hidden] vs display conflicts) */
.lp-demo-app__content {
  display: none;
  padding: 1rem 1.25rem;
  animation: lp-panel-in 0.25s var(--eb-ease);
}
.lp-demo-app__content.is-active { display: block !important; }
.lp-demo-app__content--split.is-active { display: grid !important; }
@media (min-width: 768px) {
  .lp-demo-app__content--split.is-active { grid-template-columns: 1fr minmax(200px, 260px); }
}
@keyframes lp-panel-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.lp-demo-app__alerts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.lp-demo-alert {
  font-size: 11px; padding: 6px 10px; border-radius: 6px;
  background: rgba(255, 255, 255, 0.06); color: #cbd5e1;
}
.lp-demo-alert--danger { background: rgba(239, 68, 68, 0.15); color: #fca5a5; }
.lp-demo-alert--ok { background: rgba(16, 185, 129, 0.12); color: #6ee7b7; }
.lp-demo-split { display: grid; gap: 1rem; }
@media (min-width: 700px) { .lp-demo-split { grid-template-columns: 1.2fr 1fr; } }
.lp-demo-chart { background: rgba(0, 0, 0, 0.2); border-radius: 10px; padding: 12px; }
.lp-demo-chart__title { font-size: 11px; color: #94a3b8; margin-bottom: 10px; }
.lp-demo-chart__bars { display: flex; align-items: flex-end; gap: 4px; height: 100px; }
.lp-demo-chart__bar { flex: 1; height: var(--h, 40%); background: linear-gradient(180deg, var(--eb-royal), var(--eb-indigo)); border-radius: 3px 3px 0 0; }
.lp-demo-feed__title { font-size: 11px; color: #94a3b8; margin-bottom: 8px; }
.lp-demo-feed__item { font-size: 12px; padding: 8px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); color: #cbd5e1; display: flex; gap: 8px; align-items: flex-start; }
.lp-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--eb-royal); flex-shrink: 0; margin-top: 4px; }
.lp-dot--ok { background: var(--eb-success); }
.lp-dot--warn { background: var(--eb-warning); }
.lp-demo-row { cursor: pointer; transition: background 0.15s; }
.lp-demo-row:hover { background: rgba(37, 99, 235, 0.12); }
.lp-demo-row.is-selected { background: rgba(37, 99, 235, 0.2); }
.lp-demo__table .num { text-align: right; }
.lp-demo-drawer {
  background: var(--eb-slate); border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem; color: #e2e8f0;
}
.lp-demo-drawer__title { color: #fff; margin: 0; font-size: 1.1rem; }
.lp-demo-drawer__row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.lp-demo-drawer__actions { display: flex; flex-direction: column; gap: 8px; margin-top: 1rem; }
.lp-demo-btn {
  padding: 10px; border: none; border-radius: 8px; background: var(--eb-royal); color: #fff;
  font-weight: 600; font-size: 13px; cursor: pointer; font-family: inherit;
}
.lp-demo-btn--ghost { background: transparent; border: 1px solid rgba(255, 255, 255, 0.2); color: #e2e8f0; }
/* Real POS terminal (demo) */
.lp-pos-terminal {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 400px;
  background: #0b1220;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.lp-pos-terminal__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 8px 12px; background: #111827; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px; color: #94a3b8;
}
.lp-pos-terminal__bar strong { color: #f8fafc; }
.lp-pos-cats {
  display: flex; gap: 6px; padding: 8px 10px; overflow-x: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-pos-cat {
  flex-shrink: 0; padding: 6px 12px; border-radius: 999px; border: none;
  background: rgba(255, 255, 255, 0.06); color: #94a3b8; font-size: 11px; font-weight: 600;
  cursor: pointer; font-family: inherit;
}
.lp-pos-cat.is-active { background: var(--eb-royal); color: #fff; }
.lp-pos-terminal__main {
  display: grid; min-height: 0;
}
@media (min-width: 640px) {
  .lp-pos-terminal__main { grid-template-columns: 1fr 240px; }
}
.lp-pos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  padding: 10px; align-content: start; overflow-y: auto;
}
.lp-pos-grid-item {
  background: linear-gradient(160deg, rgba(37, 99, 235, 0.15), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px; padding: 10px 8px; cursor: pointer; text-align: left;
  font-family: inherit; color: #e2e8f0; min-height: 72px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.lp-pos-grid-item:hover { border-color: var(--eb-royal); }
.lp-pos-grid-item.is-added { background: rgba(16, 185, 129, 0.2); border-color: var(--eb-success); }
.lp-pos-grid-item__emoji { font-size: 20px; line-height: 1; }
.lp-pos-grid-item__name { font-size: 10px; line-height: 1.25; margin-top: 4px; }
.lp-pos-grid-item__price { font-size: 12px; font-weight: 700; color: #fff; margin-top: 4px; }
.lp-pos-bill {
  background: #111827; border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; flex-direction: column; min-height: 280px;
}
.lp-pos-bill__head {
  padding: 10px 12px; font-size: 12px; font-weight: 700; color: #f8fafc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-pos-bill__lines { flex: 1; overflow-y: auto; padding: 8px 12px; font-size: 11px; }
.lp-pos-bill__line {
  display: grid; grid-template-columns: 1fr auto auto; gap: 8px;
  padding: 6px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); color: #cbd5e1;
}
.lp-pos-bill__summary {
  padding: 10px 12px; border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.lp-pos-bill__summary div { display: flex; justify-content: space-between; font-size: 11px; color: #94a3b8; margin-bottom: 4px; }
.lp-pos-bill__total {
  display: flex; justify-content: space-between; font-size: 18px; font-weight: 700;
  color: #fff; margin-top: 8px;
}
.lp-pos-numpad {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  padding: 0 12px 10px;
}
.lp-pos-numpad button {
  padding: 10px; border: none; border-radius: 8px; background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0; font-weight: 600; font-size: 14px; cursor: pointer; font-family: inherit;
}
.lp-pos-actions {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; padding: 10px 12px 12px;
  background: #0f172a;
}
.lp-pos-actions button {
  padding: 12px 8px; border: none; border-radius: 8px; font-size: 11px; font-weight: 700;
  cursor: pointer; font-family: inherit;
}
.lp-pos-actions .pay-upi { background: var(--eb-success); color: #fff; grid-column: span 2; }
.lp-pos-actions .pay-cash { background: rgba(255, 255, 255, 0.1); color: #e2e8f0; }
.lp-pos-actions .hold { background: rgba(245, 158, 11, 0.2); color: #fcd34d; }

.lp-demo-module-tag {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--eb-info); margin-bottom: 8px;
}
.lp-demo-invoices-toolbar {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; align-items: center;
}
.lp-demo-invoices-toolbar select,
.lp-demo-invoices-toolbar input {
  padding: 6px 10px; border-radius: 6px; border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.25); color: #e2e8f0; font-size: 12px; font-family: inherit;
}
.lp-demo-table-wrap { overflow-x: auto; max-height: 320px; overflow-y: auto; }

.lp-pos-screen { display: grid; gap: 12px; min-height: 320px; }
@media (min-width: 600px) { .lp-pos-screen { grid-template-columns: 1fr 220px; } }
.lp-pos-products__head { font-size: 12px; color: #94a3b8; margin-bottom: 10px; }
.lp-pos-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.lp-pos-tile {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px; padding: 10px; cursor: pointer; text-align: left; font-family: inherit; color: #e2e8f0;
  transition: background 0.15s, transform 0.15s;
}
.lp-pos-tile:hover { background: rgba(37, 99, 235, 0.2); }
.lp-pos-tile.is-added { transform: scale(0.96); background: rgba(16, 185, 129, 0.2); }
.lp-pos-tile__name { display: block; font-size: 11px; }
.lp-pos-tile__price { display: block; font-size: 13px; font-weight: 700; color: #fff; margin-top: 4px; }
.lp-pos-sidebar { background: rgba(0, 0, 0, 0.25); border-radius: 10px; padding: 12px; display: flex; flex-direction: column; }
.lp-pos-sidebar__head { font-size: 12px; font-weight: 600; color: #f8fafc; margin-bottom: 8px; }
.lp-pos-cart { flex: 1; overflow-y: auto; max-height: 160px; font-size: 12px; }
.lp-pos-cart__line { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); color: #cbd5e1; }
.lp-pos-total { display: flex; justify-content: space-between; font-weight: 700; padding: 12px 0; color: #fff; border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 8px; }
.lp-bank-layout { display: grid; gap: 12px; }
@media (min-width: 700px) { .lp-bank-layout { grid-template-columns: 180px 1fr; } }
.lp-bank-acc {
  display: block; width: 100%; text-align: left; padding: 12px; margin-bottom: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 8px; background: rgba(255, 255, 255, 0.03);
  color: #94a3b8; cursor: pointer; font-family: inherit;
}
.lp-bank-acc.is-active { border-color: var(--eb-royal); background: rgba(37, 99, 235, 0.15); color: #fff; }
.lp-bank-acc strong { display: block; color: #f8fafc; margin-top: 4px; font-size: 14px; }
.lp-bank-main__kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 12px; }
.lp-bank-balance { font-size: 1.5rem; font-weight: 700; color: #f8fafc; }
.lp-bank-recon { font-size: 12px; color: #94a3b8; margin-bottom: 12px; }
.lp-bank-recon__bar { height: 8px; background: rgba(255, 255, 255, 0.1); border-radius: 4px; overflow: hidden; margin: 8px 0; }
.lp-bank-recon__fill { height: 100%; background: linear-gradient(90deg, var(--eb-success), var(--eb-royal)); border-radius: 4px; }

/* Pricing enhanced */
.lp-price-toggle-wrap {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 1rem;
  font-size: 14px; color: var(--eb-text-muted); cursor: pointer;
}
.lp-price-toggle-wrap input { accent-color: var(--eb-royal); width: 40px; height: 22px; }
.lp-price-toggle-wrap em { font-style: normal; color: var(--eb-success); font-size: 12px; }
.lp-price span { font-size: 1rem; font-weight: 500; color: var(--eb-text-muted); }
.lp-price-features {
  list-style: none; padding: 0; margin: 1rem 0 0; text-align: left; font-size: 13px; color: var(--eb-text-muted);
}
.lp-price-features li { padding: 6px 0; border-bottom: 1px solid var(--eb-border); }
.lp-price-features li::before { content: "✓ "; color: var(--eb-success); font-weight: 700; }
.lp-price-card { text-align: left; }

/* POS showcase — fix crop / overflow */
.lp-pos-showcase {
  display: grid; gap: 1.25rem; align-items: stretch;
}
@media (min-width: 900px) {
  .lp-pos-showcase { grid-template-columns: 1.15fr 0.85fr; }
}
.lp-pos-showcase .lp-device {
  overflow: visible;
  min-height: 0;
  height: auto;
}
.lp-pos-showcase .lp-device--tablet {
  aspect-ratio: unset;
  min-height: 300px;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.lp-pos-showcase .lp-device--phone {
  aspect-ratio: unset;
  min-height: 360px;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-pos-device-ui__body { flex: 1; min-height: 200px; }
.lp-pos-mobile-scan { flex-shrink: 0; min-height: 110px; max-height: 130px; overflow: hidden; }
.lp-pos-barcode { max-width: 100%; }

/* Warehouse bins — readable on light section */
.lp-wh-hero .lp-wh-map {
  background: linear-gradient(165deg, #0f172a, #1e293b);
}
.lp-wh-hero .lp-wh-cell {
  justify-content: space-between;
  align-items: center;
  min-height: 96px;
  max-height: 140px;
  padding: 10px 8px;
}
.lp-wh-hero .lp-wh-cell__icon {
  color: rgba(255, 255, 255, 0.85);
}
.lp-wh-hero .lp-wh-cell--ok { color: #d1fae5; }
.lp-wh-hero .lp-wh-cell--low { color: #fef3c7; }
.lp-wh-hero .lp-wh-cell--res { color: #cffafe; }
.lp-wh-concept { margin-left: auto; font-size: 11px; color: var(--eb-text-soft); font-style: italic; }

/* Demo — always readable (light + dark page theme) */
.lp-demo--shell {
  --demo-bg: #0f172a;
  --demo-surface: #1e293b;
  --demo-text: #f1f5f9;
  --demo-muted: #94a3b8;
  --demo-border: rgba(255, 255, 255, 0.08);
}
.lp-demo--shell,
.lp-demo--shell .lp-demo-app {
  background: var(--demo-bg);
  color: var(--demo-text);
}
.lp-demo--shell .lp-demo__nav {
  background: rgba(0, 0, 0, 0.2);
  border-right-color: var(--demo-border);
}
.lp-demo--shell .lp-demo__nav button { color: var(--demo-muted); }
.lp-demo--shell .lp-demo__nav button.is-active { color: #fff; }
.lp-demo--shell .lp-demo-app__topbar {
  color: var(--demo-muted);
  border-bottom-color: var(--demo-border);
}
.lp-demo--shell .lp-demo-app__breadcrumb { color: var(--demo-text); }
.lp-demo--shell .lp-demo-app__search {
  background: rgba(255, 255, 255, 0.06);
  color: var(--demo-muted);
}
.lp-demo--shell .lp-demo-app__user { color: #cbd5e1; }
.lp-demo--shell .lp-kpi__label { color: var(--demo-muted); }
.lp-demo--shell .lp-kpi__val { color: var(--demo-text); }
.lp-demo--shell .lp-demo-feed__item,
.lp-demo--shell .lp-demo-chart__title,
.lp-demo--shell .lp-demo-feed__title { color: #cbd5e1; }
.lp-demo--shell .lp-demo__table th { background: var(--demo-surface); color: var(--demo-muted); }
.lp-demo--shell .lp-demo__table td { color: #e2e8f0; border-color: var(--demo-border); }
.lp-demo--shell .lp-demo-drawer {
  background: var(--demo-surface);
  color: var(--demo-text);
}
.lp-demo--shell .lp-demo-drawer__title { color: #fff; }
.lp-demo--shell .lp-pos-tile { color: #e2e8f0; }
.lp-demo--shell .lp-pos-tile__price { color: #fff; }
.lp-demo--shell .lp-pos-terminal { border-color: var(--demo-border); }
.lp-demo--shell .lp-pos-grid-item { color: #e2e8f0; }
.lp-demo--shell .lp-pos-grid-item__price { color: #fff; }
.lp-demo--shell .lp-pos-bill__head,
.lp-demo--shell .lp-pos-bill__total { color: var(--demo-text); }
.lp-demo--shell .lp-demo-module-tag { color: #93c5fd; }
.lp-demo--shell .lp-bank-acc { color: var(--demo-muted); }
.lp-demo--shell .lp-wh-interactive--demo .lp-wh-zone-tabs button {
  background: rgba(255, 255, 255, 0.06);
  color: var(--demo-muted);
  border-color: var(--demo-border);
}
.lp-demo--shell .lp-wh-detail h3 { color: #fff; }
.lp-demo-hint { color: var(--eb-text-muted); }
.lp-demo-hint kbd { color: var(--eb-text); background: var(--eb-card); }

[data-lp-theme="dark"] .lp-card__icon--svg {
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.2), rgba(79, 70, 229, 0.12));
  border-color: rgba(255, 255, 255, 0.1);
  color: #93c5fd;
}
