/* ============================================================
   Lexia Components — copy-pasteable, framework-free
   v0.2 — depends on tokens.css
   ============================================================ */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--lx-bg);
  color: var(--lx-text-primary);
  font-family: var(--lx-font-sans);
  font-size: var(--lx-text-base);
  line-height: var(--lx-lh-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Type primitives ---------- */
.lx-h1 { font-size: 32px; line-height: 40px; letter-spacing: -0.02em; font-weight: 600; margin: 0; }
.lx-h2 { font-size: 24px; line-height: 32px; letter-spacing: -0.015em; font-weight: 600; margin: 0; }
.lx-h3 { font-size: 18px; line-height: 26px; letter-spacing: -0.01em; font-weight: 600; margin: 0; }
.lx-eyebrow {
  font-family: var(--lx-font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--lx-text-muted); font-weight: 500; margin: 0;
}
.lx-muted { color: var(--lx-text-muted); }
.lx-mono { font-family: var(--lx-font-mono); }

/* ---------- Avatar / brand glyph ---------- */
.lx-glyph {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--lx-neutral-900); color: var(--lx-primary-400);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--lx-font-mono); font-weight: 500;
  font-size: 14px; letter-spacing: -0.02em;
  flex-shrink: 0;
}
.lx-glyph--lg { width: 44px; height: 44px; border-radius: 10px; font-size: 18px; }
.lx-glyph--sm { width: 28px; height: 28px; border-radius: 6px; font-size: 11px; }
.lx-wordmark {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Geist", var(--lx-font-sans);
}
.lx-wordmark-text {
  font-weight: 600; font-size: 22px; letter-spacing: -0.025em;
  color: var(--lx-text-primary); line-height: 1;
}
.lx-wordmark-sub {
  font-family: var(--lx-font-mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--lx-text-muted); line-height: 1; margin-top: 4px;
}

/* ---------- Button ---------- */
.lx-btn {
  appearance: none; border: 1px solid transparent;
  border-radius: var(--lx-radius-sm);
  font-family: var(--lx-font-sans); font-weight: 500; font-size: 14px;
  line-height: 1; padding: 10px 16px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition:
    background var(--lx-duration-fast) var(--lx-ease-standard),
    border-color var(--lx-duration-fast) var(--lx-ease-standard),
    color var(--lx-duration-fast) var(--lx-ease-standard),
    box-shadow var(--lx-duration-fast) var(--lx-ease-standard);
  white-space: nowrap; text-decoration: none;
}
.lx-btn:focus-visible { outline: none; box-shadow: var(--lx-shadow-focus); }
.lx-btn[disabled] { cursor: not-allowed; opacity: 0.55; }
.lx-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.lx-btn--primary { background: var(--lx-accent); color: var(--lx-text-on-primary); }
.lx-btn--primary:hover:not([disabled]) { background: var(--lx-accent-hover); }
.lx-btn--primary:active:not([disabled]) { background: var(--lx-accent-active); }
.lx-btn--secondary { background: var(--lx-surface); border-color: var(--lx-border-strong); color: var(--lx-text-primary); }
.lx-btn--secondary:hover:not([disabled]) { background: var(--lx-surface-sunken); border-color: var(--lx-text-muted); }
.lx-btn--ghost { background: transparent; color: var(--lx-text-secondary); }
.lx-btn--ghost:hover:not([disabled]) { background: var(--lx-surface-sunken); color: var(--lx-text-primary); }
.lx-btn--danger { background: var(--lx-danger-500); color: white; }
.lx-btn--danger:hover:not([disabled]) { background: var(--lx-danger-700); }

.lx-btn--sm { padding: 7px 12px; font-size: 13px; }
.lx-btn--lg { padding: 13px 20px; font-size: 15px; }
.lx-btn--icon { padding: 9px; }
.lx-btn--block { display: flex; width: 100%; }

.lx-btn--loading { color: transparent !important; position: relative; pointer-events: none; }
.lx-btn--loading::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid currentColor; border-top-color: transparent;
  color: white; animation: lx-spin 0.7s linear infinite;
}
.lx-btn--secondary.lx-btn--loading::after { color: var(--lx-text-primary); }
@keyframes lx-spin { to { transform: rotate(360deg); } }

/* ---------- Card ---------- */
.lx-card {
  background: var(--lx-surface);
  border: 1px solid var(--lx-border-subtle);
  border-radius: var(--lx-radius-lg);
  padding: 20px;
}
.lx-card--elevated { border-color: transparent; box-shadow: var(--lx-shadow-md); }
.lx-card--interactive {
  cursor: pointer;
  transition: border-color var(--lx-duration-base) var(--lx-ease-standard),
              box-shadow var(--lx-duration-base) var(--lx-ease-standard);
}
.lx-card--interactive:hover { border-color: var(--lx-border-strong); box-shadow: var(--lx-shadow-sm); }
.lx-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.lx-card-title { font-size: 15px; font-weight: 600; margin: 0; color: var(--lx-text-primary); }
.lx-card-meta { font-size: 13px; color: var(--lx-text-muted); margin: 0; }
.lx-card-body { color: var(--lx-text-secondary); font-size: 14px; line-height: 1.55; margin-top: 12px; }

/* ---------- Field / Input ---------- */
.lx-field { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.lx-field-label { font-size: 13px; font-weight: 500; color: var(--lx-text-primary); }
.lx-field-label .req { color: var(--lx-danger-500); margin-left: 2px; }
.lx-field-hint { font-size: 12px; color: var(--lx-text-muted); }
.lx-field-hint.error { color: var(--lx-danger-700); }

.lx-input, .lx-textarea, .lx-select {
  appearance: none; width: 100%;
  border: 1px solid var(--lx-border-strong); border-radius: var(--lx-radius-sm);
  background: var(--lx-surface); padding: 10px 12px;
  font: inherit; font-family: var(--lx-font-sans); font-size: 14px;
  color: var(--lx-text-primary);
  transition: border-color var(--lx-duration-fast) var(--lx-ease-standard),
              box-shadow var(--lx-duration-fast) var(--lx-ease-standard);
}
.lx-input::placeholder, .lx-textarea::placeholder { color: var(--lx-text-disabled); }
.lx-input:hover, .lx-textarea:hover, .lx-select:hover { border-color: var(--lx-text-muted); }
.lx-input:focus, .lx-textarea:focus, .lx-select:focus { outline: none; border-color: var(--lx-accent); box-shadow: var(--lx-shadow-focus); }
.lx-input.error, .lx-textarea.error, .lx-select.error { border-color: var(--lx-danger-500); }
.lx-input[disabled], .lx-textarea[disabled] { background: var(--lx-surface-sunken); color: var(--lx-text-disabled); cursor: not-allowed; }
.lx-textarea { min-height: 96px; resize: vertical; line-height: 1.5; }
.lx-select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b6b65' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px;
}

.lx-input--with-leading { padding-left: 38px; }
.lx-input-wrap { position: relative; width: 100%; }
.lx-input-wrap > svg.leading {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: var(--lx-text-muted); pointer-events: none;
}

/* ---------- Badge / Status pill ---------- */
.lx-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; border-radius: var(--lx-radius-full);
  font-size: 12px; font-weight: 500; line-height: 16px;
  background: var(--lx-surface-sunken); color: var(--lx-text-secondary);
  border: 1px solid var(--lx-border-subtle);
  white-space: nowrap;
}
.lx-badge--dot::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: currentColor; flex-shrink: 0;
}
.lx-badge--success { background: var(--lx-success-50); color: var(--lx-success-700); border-color: transparent; }
.lx-badge--info    { background: var(--lx-info-50);    color: var(--lx-info-700);    border-color: transparent; }
.lx-badge--warning { background: var(--lx-warning-50); color: var(--lx-warning-700); border-color: transparent; }
.lx-badge--danger  { background: var(--lx-danger-50);  color: var(--lx-danger-700);  border-color: transparent; }
.lx-badge--accent  { background: var(--lx-accent-soft); color: var(--lx-text-accent); border-color: transparent; }
.lx-badge--solid   { background: var(--lx-neutral-900); color: var(--lx-neutral-50); border-color: transparent; }

/* Pulse for live recording */
.lx-badge--live { background: var(--lx-danger-50); color: var(--lx-danger-700); border-color: transparent; }
.lx-badge--live::before {
  content: ""; width: 7px; height: 7px; border-radius: 999px;
  background: var(--lx-danger-500); flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.5);
  animation: lx-pulse 1.6s var(--lx-ease-standard) infinite;
}
@keyframes lx-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.45); }
  70%  { box-shadow: 0 0 0 8px rgba(225, 29, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

/* ---------- Tabs ---------- */
.lx-tabs {
  display: inline-flex; gap: 4px;
  padding: 4px; background: var(--lx-surface-sunken);
  border-radius: var(--lx-radius-md);
}
.lx-tab {
  appearance: none; border: 0; background: transparent;
  font-family: inherit; font-size: 13px; font-weight: 500; line-height: 1;
  color: var(--lx-text-secondary);
  padding: 8px 14px; border-radius: 6px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--lx-duration-fast) var(--lx-ease-standard),
              color var(--lx-duration-fast) var(--lx-ease-standard);
}
.lx-tab svg { width: 14px; height: 14px; }
.lx-tab:hover { color: var(--lx-text-primary); }
.lx-tab[aria-selected="true"] {
  background: var(--lx-surface);
  color: var(--lx-text-primary);
  box-shadow: var(--lx-shadow-xs);
}

.lx-tabs--underline {
  display: flex; gap: 28px; padding: 0; background: transparent;
  border-bottom: 1px solid var(--lx-border-subtle);
  border-radius: 0;
}
.lx-tabs--underline .lx-tab {
  padding: 12px 0; border-radius: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.lx-tabs--underline .lx-tab[aria-selected="true"] {
  background: transparent; box-shadow: none;
  border-bottom-color: var(--lx-accent);
  color: var(--lx-text-primary);
}

/* ---------- Toast ---------- */
.lx-toast {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--lx-surface);
  border: 1px solid var(--lx-border-subtle);
  border-radius: var(--lx-radius-md);
  padding: 14px 16px;
  box-shadow: var(--lx-shadow-lg);
  min-width: 320px; max-width: 420px;
}
.lx-toast-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  margin-top: 1px;
}
.lx-toast-body { flex: 1; min-width: 0; }
.lx-toast-title { font-size: 14px; font-weight: 600; margin: 0 0 2px; color: var(--lx-text-primary); }
.lx-toast-msg { font-size: 13px; color: var(--lx-text-secondary); margin: 0; }
.lx-toast--success .lx-toast-icon { color: var(--lx-success-500); }
.lx-toast--info    .lx-toast-icon { color: var(--lx-info-500); }
.lx-toast--warning .lx-toast-icon { color: var(--lx-warning-500); }
.lx-toast--danger  .lx-toast-icon { color: var(--lx-danger-500); }

/* Inline status (for in-page banners) */
.lx-banner {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 14px;
  border-radius: var(--lx-radius-md);
  font-size: 13px; line-height: 1.5;
  background: var(--lx-accent-soft); color: var(--lx-text-primary);
  border: 1px solid transparent;
}
.lx-banner svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--lx-text-accent); }
.lx-banner--info    { background: var(--lx-info-50);    }
.lx-banner--info svg    { color: var(--lx-info-500); }
.lx-banner--warning { background: var(--lx-warning-50); }
.lx-banner--warning svg { color: var(--lx-warning-500); }
.lx-banner--danger  { background: var(--lx-danger-50);  }
.lx-banner--danger svg  { color: var(--lx-danger-500); }

/* ---------- Empty state ---------- */
.lx-empty {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 64px 32px;
  border: 1px dashed var(--lx-border-strong);
  border-radius: var(--lx-radius-lg);
  background: var(--lx-surface);
  gap: 8px;
}
.lx-empty-icon {
  width: 48px; height: 48px; border-radius: var(--lx-radius-full);
  background: var(--lx-accent-soft); color: var(--lx-text-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.lx-empty-icon svg { width: 22px; height: 22px; }
.lx-empty-title { font-size: 16px; font-weight: 600; margin: 0; color: var(--lx-text-primary); }
.lx-empty-msg { font-size: 14px; color: var(--lx-text-secondary); margin: 0; max-width: 44ch; line-height: 1.55; }
.lx-empty-actions { margin-top: 12px; display: flex; gap: 12px; }

/* ---------- Modal ---------- */
.lx-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, 0.40);
  backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  z-index: 100;
  animation: lx-fade-in var(--lx-duration-base) var(--lx-ease-standard);
}
.lx-modal {
  background: var(--lx-surface);
  border-radius: var(--lx-radius-xl);
  box-shadow: var(--lx-shadow-xl);
  width: 100%; max-width: 480px;
  animation: lx-modal-in var(--lx-duration-slow) var(--lx-ease-emphasized);
  overflow: hidden;
}
.lx-modal-header {
  padding: 24px 24px 0;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
}
.lx-modal-title { font-size: 18px; font-weight: 600; margin: 0; color: var(--lx-text-primary); }
.lx-modal-close {
  appearance: none; border: 0; background: transparent;
  width: 32px; height: 32px; border-radius: var(--lx-radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--lx-text-muted); cursor: pointer; flex-shrink: 0;
  transition: background var(--lx-duration-fast) var(--lx-ease-standard);
}
.lx-modal-close:hover { background: var(--lx-surface-sunken); color: var(--lx-text-primary); }
.lx-modal-close svg { width: 18px; height: 18px; }
.lx-modal-body {
  padding: 12px 24px 24px;
  font-size: 14px; line-height: 1.6; color: var(--lx-text-secondary);
}
.lx-modal-footer {
  padding: 16px 24px;
  background: var(--lx-surface-sunken);
  display: flex; justify-content: flex-end; gap: 12px;
  border-top: 1px solid var(--lx-border-subtle);
}
@keyframes lx-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes lx-modal-in { from { opacity: 0; transform: translateY(8px) scale(.98); } to { opacity: 1; transform: none; } }

/* ---------- Icon badge (landing-style: circular soft bg + outlined glyph) ---------- */
.lx-icon-badge {
  width: 40px; height: 40px; border-radius: var(--lx-radius-full);
  background: var(--lx-accent-soft); color: var(--lx-text-accent);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lx-icon-badge svg { width: 18px; height: 18px; }
.lx-icon-badge--lg { width: 56px; height: 56px; }
.lx-icon-badge--lg svg { width: 24px; height: 24px; }

/* ---------- Divider ---------- */
.lx-hr { height: 1px; background: var(--lx-border-subtle); border: 0; margin: 0; }

/* ---------- Skeleton (loading rows) ---------- */
.lx-skel {
  background: linear-gradient(90deg, var(--lx-surface-sunken) 0%, var(--lx-border-subtle) 50%, var(--lx-surface-sunken) 100%);
  background-size: 200% 100%;
  animation: lx-shimmer 1.4s linear infinite;
  border-radius: var(--lx-radius-xs);
  height: 12px;
}
@keyframes lx-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ---------- App shell (sidebar + topbar + main) ---------- */
.lx-app {
  display: grid;
  grid-template-columns: 248px 1fr;
  min-height: 100vh;
  background: var(--lx-bg);
}
.lx-sidebar {
  background: var(--lx-neutral-900);
  color: var(--lx-neutral-50);
  display: flex; flex-direction: column;
  padding: 20px 16px;
  position: sticky; top: 0; height: 100vh;
}
.lx-sidebar-brand {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 8px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.lx-sidebar-brand .lx-glyph { background: rgba(255,255,255,0.08); color: var(--lx-primary-400); }
.lx-sidebar-brand-name { font-weight: 600; font-size: 15px; line-height: 1.1; color: var(--lx-neutral-50); }
.lx-sidebar-brand-sub  { font-family: var(--lx-font-mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }
.lx-sidebar-cta { margin-bottom: 20px; }
.lx-sidebar-cta .lx-btn { width: 100%; background: var(--lx-neutral-50); color: var(--lx-neutral-900); }
.lx-sidebar-cta .lx-btn:hover { background: white; }
.lx-sidebar-section { font-family: var(--lx-font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); padding: 12px 12px 6px; }
.lx-sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.lx-sidebar-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--lx-radius-sm);
  color: rgba(255,255,255,0.72); font-size: 14px;
  text-decoration: none; cursor: pointer;
  transition: background var(--lx-duration-fast) var(--lx-ease-standard),
              color var(--lx-duration-fast) var(--lx-ease-standard);
}
.lx-sidebar-link:hover { background: rgba(255,255,255,0.06); color: white; }
.lx-sidebar-link[aria-current="page"] {
  background: rgba(16,185,129,0.14); color: var(--lx-primary-300);
}
.lx-sidebar-link[aria-current="page"] svg { color: var(--lx-primary-400); }
.lx-sidebar-link svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.85; }
.lx-sidebar-link .count { margin-left: auto; font-family: var(--lx-font-mono); font-size: 11px; opacity: 0.6; }

.lx-sidebar-foot {
  margin-top: auto;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--lx-radius-sm);
  background: rgba(255,255,255,0.04);
}
.lx-sidebar-foot .avatar {
  width: 30px; height: 30px; border-radius: 999px;
  background: var(--lx-primary-700); color: var(--lx-primary-50);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--lx-font-mono); font-size: 11px; font-weight: 500; flex-shrink: 0;
}
.lx-sidebar-foot .who { flex: 1; min-width: 0; }
.lx-sidebar-foot .name { font-size: 13px; font-weight: 500; line-height: 1.2; color: var(--lx-neutral-50); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lx-sidebar-foot .role { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.2; }
.lx-sidebar-foot button {
  background: transparent; border: 0; color: rgba(255,255,255,0.5); cursor: pointer;
  padding: 4px; border-radius: 4px;
}
.lx-sidebar-foot button:hover { background: rgba(255,255,255,0.06); color: white; }

.lx-topbar {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 32px;
  border-bottom: 1px solid var(--lx-border-subtle);
  background: var(--lx-bg);
  position: sticky; top: 0; z-index: 10;
}
.lx-search {
  flex: 1; max-width: 480px;
  position: relative;
}
.lx-search svg {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 15px; height: 15px; color: var(--lx-text-muted); pointer-events: none;
}
.lx-search input {
  width: 100%; padding: 9px 12px 9px 36px;
  border: 1px solid var(--lx-border-subtle); border-radius: var(--lx-radius-md);
  background: var(--lx-surface); font: inherit; font-size: 13px;
  color: var(--lx-text-primary);
}
.lx-search input::placeholder { color: var(--lx-text-muted); }
.lx-search input:focus { outline: none; border-color: var(--lx-accent); box-shadow: var(--lx-shadow-focus); }
.lx-search kbd {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  font-family: var(--lx-font-mono); font-size: 10px; color: var(--lx-text-muted);
  background: var(--lx-surface-sunken); border: 1px solid var(--lx-border-subtle);
  padding: 2px 6px; border-radius: 4px;
}

.lx-topbar-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.lx-icon-btn {
  appearance: none; border: 0; background: transparent;
  width: 36px; height: 36px; border-radius: var(--lx-radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--lx-text-secondary); cursor: pointer;
  transition: background var(--lx-duration-fast) var(--lx-ease-standard);
  position: relative;
}
.lx-icon-btn:hover { background: var(--lx-surface-sunken); color: var(--lx-text-primary); }
.lx-icon-btn svg { width: 16px; height: 16px; }
.lx-icon-btn .ping {
  position: absolute; top: 8px; right: 8px;
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--lx-danger-500);
  border: 2px solid var(--lx-bg);
}

.lx-page-main {
  padding: 32px 40px 80px;
  max-width: 1280px;
  width: 100%;
}
.lx-page-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 28px;
}
.lx-page-head h1 { font-size: 28px; line-height: 36px; letter-spacing: -0.02em; font-weight: 600; margin: 0; }
.lx-page-head .sub { font-size: 14px; color: var(--lx-text-muted); margin: 4px 0 0; }
.lx-page-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ---------- Recording indicator ---------- */
.lx-rec-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--lx-danger-500);
  box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.5);
  animation: lx-pulse 1.6s var(--lx-ease-standard) infinite;
  display: inline-block;
}
