/*
 * Listclean logged-in app layout system.
 * Scope intentionally starts at .lc-app-main so auth, website, and sidebar UI stay independent.
 */
.lc-app-main {
  --lc-brand: #f1416c;
  --lc-brand-dark: #d92e58;
  --lc-brand-soft: #fff6f8;
  --lc-app-bg: #fafaf7;
  --lc-canvas: #fafaf7;
  --lc-surface: #ffffff;
  --lc-surface-muted: #f4f4ee;
  --lc-text: #0a0a0a;
  --lc-text-2: #3a3a38;
  --lc-text-3: #5a5a56;
  --lc-muted: #8a8a85;
  --lc-border: #ecece6;
  --lc-border-subtle: #f4f4ee;
  --lc-border-strong: #ded7cc;
  --lc-hover: #f5f5ef;
  --lc-accent-yellow: #ffd43b;
  --lc-accent-yellow-soft: #fff4c2;
  --lc-accent-green: #1f7a3d;
  --lc-accent-amber: #f4a100;
  --lc-accent-red: #c8362b;
  --lc-success-soft: #e5f2ea;
  --lc-success-border: #c8e6cf;
  --lc-info: #2d5a8a;
  --lc-paused: #7b5bd6;
  --lc-warn-soft: #fff4d6;
  --lc-danger-soft: #fbeae7;
  --lc-radius: 12px;
  --lc-shadow: 0 8px 22px rgba(22, 20, 16, 0.045);
  --lc-font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --lc-font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --lc-font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  min-height: 100vh;
  background: var(--lc-app-bg);
  color: var(--lc-text);
  font-family: var(--lc-font-sans);
  overflow-x: hidden;
}

@supports (-webkit-touch-callout: none) {
  body {
    -webkit-tap-highlight-color: transparent;
  }
}

.lc-mobile-app-header {
  display: none;
}

.lc-app-main *,
.lc-app-main *::before,
.lc-app-main *::after {
  box-sizing: border-box;
}

.lc-app-main .lc-skeleton {
  display: inline-block;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, #ece7de 0%, #f8f6f1 42%, #ece7de 78%);
  background-size: 220% 100%;
  color: transparent;
  vertical-align: middle;
  animation: lcSkeletonPulse 1.15s ease-in-out infinite;
}

@keyframes lcSkeletonPulse {
  0% {
    background-position: 110% 0;
  }
  100% {
    background-position: -110% 0;
  }
}

@keyframes lcStatusProcessing {
  0% {
    opacity: 0.48;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.48;
  }
}

@keyframes lcHourglassWorking {
  0% {
    transform: translateY(-1px) rotate(0deg);
  }
  35% {
    transform: translateY(1px) rotate(0deg);
  }
  50% {
    transform: translateY(0) rotate(180deg);
  }
  85% {
    transform: translateY(1px) rotate(180deg);
  }
  100% {
    transform: translateY(-1px) rotate(360deg);
  }
}

.lc-app-main .lc-skeleton-credit-number {
  width: 72px;
  height: 14px;
}

.lc-app-main .lc-skeleton-credit-label {
  width: 48px;
  height: 10px;
}

.lc-app-main .lc-skeleton-chip-count {
  width: 24px;
  height: 12px;
}

.lc-app-main .lc-skeleton-count-pill {
  width: 62px;
  height: 12px;
}

.lc-app-main .lc-skeleton-file-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 8px;
}

.lc-app-main .lc-skeleton-file-name {
  display: block;
  width: min(360px, 52vw);
  height: 14px;
  margin-bottom: 9px;
  border-radius: 6px;
}

.lc-app-main .lc-skeleton-file-meta {
  display: block;
  width: 220px;
  max-width: 40vw;
  height: 10px;
  border-radius: 6px;
}

.lc-app-main .lc-skeleton-table-number {
  width: 58px;
  height: 16px;
  justify-self: center;
}

.lc-app-main .lc-skeleton-download {
  width: 70px;
  height: 34px;
  justify-self: center;
  border-radius: 8px;
}

.lc-app-main .lc-skeleton-home-metric {
  width: 92px;
  height: 30px;
  margin-top: 8px;
  border-radius: 8px;
}

.lc-page-shell {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 0 48px;
}

.lc-page-shell.lc-page-shell-wide {
  max-width: 1360px;
}

.lc-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.lc-page-header-hero {
  padding: 0 0 22px;
  border-bottom: 1px solid var(--lc-border);
}

.lc-page-header-breadcrumb {
  margin-bottom: 20px;
}

.lc-page-header-main {
  min-width: 0;
}

.lc-page-eyebrow,
.lc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0 0 8px;
  color: var(--lc-muted);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 16px;
  text-transform: uppercase;
}

.lc-page-eyebrow {
  color: #8a8580;
}

.lc-breadcrumb a,
.lc-breadcrumb span,
.lc-breadcrumb {
  color: var(--lc-muted);
  text-decoration: none !important;
}

.lc-breadcrumb a:hover {
  color: var(--lc-text);
}

.lc-page-title {
  margin: 0;
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.lc-page-header-breadcrumb .lc-page-title {
  font-size: 34px;
}

.lc-page-subtitle {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--lc-muted);
  font-family: var(--lc-font-sans);
  font-size: 14px;
  line-height: 21px;
}

.lc-page-title em {
  color: var(--lc-text-2);
  font-family: inherit;
  font-style: italic;
  font-weight: 500;
}

.lc-page-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 auto;
}

.lc-page-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.lc-app-main .lc-page-shell > .panel-body.lc-page-content {
  margin-top: 0;
  padding: 24px;
  border-radius: 0;
  background: var(--lc-canvas);
}

.lc-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lc-content-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lc-content-card,
.lc-section,
.lc-table-card,
.lc-metric-card {
  min-width: 0;
  border: 0;
  border-radius: var(--lc-radius);
  background: var(--lc-surface);
  box-shadow: var(--lc-shadow);
}

.lc-app-main .card,
.lc-app-main .panel-bordered,
.lc-app-main .card.shadow-sm {
  border: 0;
  border-radius: var(--lc-radius);
  background: var(--lc-surface);
  box-shadow: var(--lc-shadow) !important;
}

.lc-content-card,
.lc-section {
  padding: 24px;
}

.lc-page-shell > .lc-content-card,
.lc-page-shell > .lc-section,
.lc-page-shell > .lc-table-card,
.lc-page-shell > .panel-body.lc-content-card,
.lc-page-shell > .panel-body.lc-section,
.lc-page-shell > .panel-body.lc-table-card {
  margin-bottom: 0;
}

.lc-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.lc-section-title {
  margin: 0;
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 21px;
  font-weight: 700;
  line-height: 24px;
}

.lc-section-subtitle {
  margin: 4px 0 0;
  color: var(--lc-muted);
  font-size: 13px;
  line-height: 20px;
}

.lc-app-alert-zone {
  position: fixed;
  top: 24px;
  left: calc(var(--lc-sidebar-width, 280px) + 48px);
  right: 48px;
  z-index: 1060;
  width: auto;
  max-width: none;
  margin: 0;
  pointer-events: none;
}

.lc-alert,
.lc-app-main #errorBox,
.lc-app-main #infoBox,
.lc-app-main #successBox {
  position: relative;
  width: 100%;
  max-width: min(720px, 100%);
  margin: 0 auto 12px !important;
  padding: 13px 44px 13px 16px !important;
  border-radius: var(--lc-radius) !important;
  border: 1px solid var(--lc-border) !important;
  background: #fff !important;
  color: var(--lc-text) !important;
  box-shadow: 0 18px 48px rgba(22, 20, 16, 0.14);
  font-size: 13px;
  line-height: 20px;
  pointer-events: auto;
}

.lc-alert-success,
.lc-app-main #successBox {
  border-color: #b9ead1 !important;
  background: #f1fbf6 !important;
  color: #17633a !important;
}

.lc-alert-error,
.lc-app-main #errorBox {
  border-color: #ffd1dc !important;
  background: #fff5f8 !important;
  color: #a8173d !important;
}

.lc-alert-warning {
  border-color: #ffe5a4 !important;
  background: #fffbeb !important;
  color: #7a4b00 !important;
}

.lc-alert-info,
.lc-app-main #infoBox {
  border-color: #cfe0ff !important;
  background: #f4f8ff !important;
  color: #244a82 !important;
}

#sidebar.listclean-sidebar.is-collapsed + .lc-app-main .lc-app-alert-zone,
#sidebar.listclean-sidebar.is-collapsed + #app .lc-app-alert-zone {
  left: calc(var(--lc-sidebar-collapsed-width, 72px) + 48px);
}

.lc-btn,
.lc-app-main .lc-page-actions .btn,
.lc-app-main .lc-btn-primary,
.lc-app-main .lc-btn-secondary,
.lc-app-main .lc-btn-ghost,
.lc-app-main .lc-btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: var(--lc-radius);
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
}

.lc-btn-primary,
.lc-app-main .btn-primary,
.lc-app-main .ma-btn-primary,
.lc-app-main .lcp-cta-btn {
  border-color: #050505 !important;
  background: #050505 !important;
  color: #fff !important;
}

.lc-btn-primary:hover,
.lc-app-main .btn-primary:hover,
.lc-app-main .ma-btn-primary:hover,
.lc-app-main .lcp-cta-btn:hover {
  border-color: #222 !important;
  background: #222 !important;
  color: #fff !important;
}

.lc-btn-secondary,
.lc-app-main .btn-secondary {
  border-color: var(--lc-border) !important;
  background: #fff !important;
  color: var(--lc-text) !important;
}

.lc-btn-ghost,
.lc-app-main .btn-light {
  border-color: transparent !important;
  background: transparent !important;
  color: var(--lc-muted) !important;
}

.lc-btn-danger {
  border-color: #ffd1dc;
  background: #fff5f8;
  color: #b91c44;
}

.lc-table-card {
  overflow: hidden;
}

.lc-table-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--lc-border);
  background: #fff;
}

.lc-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.lc-table,
.lc-app-main .lc-table-wrap table,
.lc-app-main table.table-listclean,
.lc-app-main .people-table,
.lc-app-main .table-details {
  width: 100%;
  min-width: 720px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--lc-text);
  font-size: 13px;
}

.lc-table thead th,
.lc-app-main .lc-table-wrap table thead th,
.lc-app-main table.table-listclean thead th,
.lc-app-main .people-table thead th,
.lc-app-main .table-details thead th {
  padding: 13px 16px;
  border: 0;
  border-bottom: 1px solid var(--lc-border);
  background: var(--lc-surface-muted);
  color: #8a8580;
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  line-height: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lc-table tbody td,
.lc-app-main .lc-table-wrap table tbody td,
.lc-app-main table.table-listclean tbody td,
.lc-app-main .people-table tbody td,
.lc-app-main .table-details tbody td {
  padding: 14px 16px;
  border-top: 0;
  border-bottom: 1px solid var(--lc-border);
  vertical-align: middle;
  background: #fff;
}

.lc-table tbody tr:hover td,
.lc-app-main .lc-table-wrap table tbody tr:hover td,
.lc-app-main table.table-listclean tbody tr:hover td,
.lc-app-main .people-table tbody tr:hover td,
.lc-app-main .table-details tbody tr:hover td {
  background: #fff8fa;
  background: #fbfaf7;
}

.lc-table-empty {
  padding: 28px 20px;
  color: var(--lc-muted);
  text-align: center;
  font-size: 14px;
}

.lc-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 220px;
  justify-content: center;
}

.lc-empty-state h3 {
  margin: 0;
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 24px;
  font-weight: 700;
}

.lc-empty-state p {
  margin: 0 0 4px;
  color: var(--lc-muted);
}

.lc-table-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.lc-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lc-metric-card {
  min-height: 92px;
  padding: 18px;
}

.lc-metric-label {
  display: block;
  color: var(--lc-muted);
  font-family: var(--lc-font-mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.lc-metric-value {
  display: block;
  margin-top: 10px;
  color: var(--lc-text);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.lc-app-main .panel.lc-page-shell,
.lc-app-main .panel.lc-content-card,
.lc-app-main .panel.lc-section {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.lc-app-main .panel-heading.lc-page-header,
.lc-app-main .panel-body.lc-page-content,
.lc-app-main .panel-body.lc-content-card,
.lc-app-main .panel-body.lc-section {
  padding: 0;
}

.lc-app-main .form-control {
  min-height: 40px;
  border-color: var(--lc-border-strong);
  border-radius: var(--lc-radius);
  color: var(--lc-text);
  font-size: 13px;
}

.lc-app-main .form-control:focus {
  border-color: #151515;
  box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.08);
}

.lc-app-main .lcp-page .lc-content-card,
.lc-app-main .lcp-page .lc-section,
.lc-app-main .lcp-page .lc-table-card {
  padding: 24px !important;
}

.lc-app-main .lcp-page .lc-table-card,
.lc-app-main .lcp-page .lc-table-wrap {
  padding: 0 !important;
}

.lc-app-main .lcp-page .lcp-topbar.lc-content-card {
  margin-bottom: 18px;
}

.lc-app-main .lc-people-finder-page .pf-page-content {
  gap: 18px;
}

.lc-app-main .lc-people-finder-page .pf-workspace-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 24px;
}

.lc-app-main .lc-people-finder-page .pf-card-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
}

.lc-app-main .lc-people-finder-page .pf-workspace-copy .lc-section-subtitle {
  max-width: 650px;
}

.lc-app-main .lc-people-finder-page .pf-workspace-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 12px;
  min-width: 300px;
}

.lc-app-main .lc-people-finder-page .pf-total-card {
  padding: 14px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fbfaf7;
}

.lc-app-main .lc-people-finder-page .pf-total-card span:first-child {
  display: block;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 14px;
  text-transform: uppercase;
}

.lc-app-main .lc-people-finder-page .pf-total-card strong {
  display: block;
  margin-top: 8px;
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
}

.lc-app-main .lc-people-finder-page .pf-total-card-muted {
  background: #fff;
}

.lc-app-main .lc-people-finder-page .pf-total-skeleton {
  display: block;
  width: 96px;
  height: 30px;
  margin-top: 8px;
  border-radius: 8px;
}

.lc-app-main .lc-people-finder-page .pf-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lc-app-main .lc-people-finder-page .pf-filter-card.lc-content-card {
  padding: 18px;
  overflow: visible;
  box-shadow: var(--lc-shadow);
}

.lc-app-main .lc-people-finder-page .pf-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.lc-app-main .lc-people-finder-page .pf-filter-head span {
  color: var(--lc-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
}

.lc-app-main .lc-people-finder-page .pf-filter-head small {
  color: var(--lc-muted);
  font-family: var(--lc-font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 14px;
  text-transform: uppercase;
}

.lc-app-main .lc-people-finder-page .pf-selected-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 0;
  margin-bottom: 12px;
}

.lc-app-main .lc-people-finder-page .pf-selected-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  min-height: 26px;
  padding: 4px 8px 4px 10px;
  border: 1px solid #f2c4cf;
  border-radius: 999px;
  background: var(--lc-brand-soft);
  color: var(--lc-brand-dark);
  font-size: 11px;
  font-weight: 800;
  line-height: 16px;
}

.lc-app-main .lc-people-finder-page .close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(217, 46, 88, 0.12);
  color: var(--lc-brand-dark);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 16px;
}

.lc-app-main .lc-people-finder-page .pf-input-wrap {
  position: relative;
}

.lc-app-main .lc-people-finder-page .pf-input-wrap svg {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  fill: none;
  stroke: var(--lc-muted);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.lc-app-main .lc-people-finder-page .pf-input-wrap .form-control {
  height: 40px;
  padding-left: 38px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.lc-app-main .lc-people-finder-page .pf-dropdown-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 18px;
  right: 18px;
  z-index: 40;
  display: block;
  max-height: 270px;
  margin: 0;
  padding: 8px;
  overflow-y: auto;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 38, 63, 0.14);
  list-style: none;
}

.lc-app-main .lc-people-finder-page .pf-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 7px;
}

.lc-app-main .lc-people-finder-page .pf-dropdown-item:hover {
  background: #fbfaf7;
}

.lc-app-main .lc-people-finder-page .pf-dropdown-item input {
  flex: 0 0 auto;
}

.lc-app-main .lc-people-finder-page .pf-dropdown-item label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin: 0;
  color: var(--lc-text);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.lc-app-main .lc-people-finder-page .pf-dropdown-item label span {
  color: var(--lc-muted);
  font-family: var(--lc-font-mono);
  font-size: 10px;
  font-weight: 800;
}

.lc-app-main .lc-people-finder-page .pf-results-card {
  overflow: visible;
}

.lc-app-main .lc-people-finder-page .pf-results-head {
  align-items: center;
}

.lc-app-main .lc-people-finder-page .pf-results-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.lc-app-main .lc-people-finder-page .pf-results-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid var(--lc-border);
  border-radius: 999px;
  background: #fbfaf7;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  line-height: 16px;
  white-space: nowrap;
}

.lc-app-main .lc-people-finder-page .pf-results-actions .lc-btn svg,
.lc-app-main .lc-people-finder-page .lc-app-topbar-actions .lc-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .lc-people-finder-page .pf-selection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
  border-top: 1px solid var(--lc-border);
  background: #fff8fa;
  color: var(--lc-text);
  font-size: 12px;
  line-height: 18px;
}

.lc-app-main .lc-people-finder-page .pf-selection-toolbar strong {
  color: var(--lc-text);
}

.lc-app-main .lc-people-finder-page .pf-table-loading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.lc-app-main .lc-people-finder-page .pf-table-loading .lc-skeleton {
  height: 24px;
  border-radius: 999px;
}

.lc-app-main .people-table {
  border-collapse: separate;
}

.lc-app-main .lc-people-finder-page .people-table td strong {
  color: var(--lc-text);
  font-weight: 800;
}

.lc-app-main .lc-people-finder-page .select-all-container {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lc-app-main .lc-people-finder-page .pf-select-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid var(--lc-border);
  border-radius: 6px;
  background: #fff;
  color: var(--lc-text);
}

.lc-app-main .lc-people-finder-page .select-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 45;
  display: grid;
  gap: 10px;
  min-width: 320px;
  padding: 14px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
  color: var(--lc-text);
  box-shadow: 0 18px 45px rgba(18, 38, 63, 0.14);
}

.lc-app-main .lc-people-finder-page .pf-select-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--lc-text);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.lc-app-main .lc-people-finder-page .number-input {
  width: 100%;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--lc-border);
  border-radius: 7px;
  font-weight: 700;
}

.lc-app-main .lc-people-finder-page .dropdown-actions {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}

.lc-app-main .lc-people-finder-page .pf-row-export-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--lc-border);
  border-radius: 7px;
  background: #fff;
  color: var(--lc-text);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
}

.lc-app-main .lc-people-finder-page .pf-row-export-btn:hover {
  border-color: #050505;
  background: #f7f9f8;
}

.lc-app-main .lc-people-finder-page .pf-row-export-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lc-app-main .lc-people-finder-page .modal-overlay-terms {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 15, 14, 0.48);
}

.lc-app-main .lc-people-finder-page .modal-terms {
  position: relative;
  width: min(460px, 100%);
  padding: 26px;
  border: 1px solid var(--lc-border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(18, 38, 63, 0.24);
}

.lc-app-main .lc-people-finder-page .close-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
  color: var(--lc-text);
  cursor: pointer;
  font-size: 18px;
  line-height: 18px;
}

.lc-app-main .lc-people-finder-page .pf-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border: 1px solid #f2c4cf;
  border-radius: 8px;
  background: var(--lc-brand-soft);
  color: var(--lc-brand-dark);
}

.lc-app-main .lc-people-finder-page .pf-modal-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .lc-people-finder-page .modal-terms h5 {
  margin: 0;
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

.lc-app-main .lc-people-finder-page .modal-terms p {
  margin: 10px 0 0;
  color: var(--lc-muted);
  font-size: 13px;
  line-height: 20px;
}

.lc-app-main .lc-people-finder-page .modal-terms a {
  color: var(--lc-brand-dark);
  font-weight: 800;
}

.lc-app-main .lc-people-finder-page .pf-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.lc-app-main .lc-people-download-page .pd-page-content {
  gap: 18px;
}

.lc-app-main .lc-people-download-page .lc-app-topbar-actions .lc-btn svg,
.lc-app-main .lc-people-download-page .pd-refresh-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .lc-people-download-page .pd-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lc-app-main .lc-people-download-page .pd-summary-card {
  min-height: 160px;
  padding: 18px;
}

.lc-app-main .lc-people-download-page .pd-summary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #f7f9f8;
  color: var(--lc-text);
}

.lc-app-main .lc-people-download-page .pd-summary-icon-success {
  border-color: #cfe8d9;
  background: #eaf5ef;
  color: #13734d;
}

.lc-app-main .lc-people-download-page .pd-summary-icon-neutral {
  background: #fbfaf7;
}

.lc-app-main .lc-people-download-page .pd-summary-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .lc-people-download-page .pd-summary-card strong {
  display: block;
  margin-top: 8px;
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
}

.lc-app-main .lc-people-download-page .pd-summary-card small {
  display: block;
  margin-top: 6px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 17px;
}

.lc-app-main .lc-people-download-page .pd-orders-head {
  align-items: center;
}

.lc-app-main .lc-people-download-page .pd-refresh-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lc-app-main .lc-people-download-page .pd-orders-loading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.lc-app-main .lc-people-download-page .pd-orders-loading .lc-skeleton {
  height: 24px;
  border-radius: 999px;
}

.lc-app-main .lc-people-download-page .pd-empty-state {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 42px 20px;
  text-align: center;
}

.lc-app-main .lc-people-download-page .pd-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border: 1px solid #f2c4cf;
  border-radius: 10px;
  background: var(--lc-brand-soft);
  color: var(--lc-brand-dark);
}

.lc-app-main .lc-people-download-page .pd-empty-icon svg,
.lc-app-main .lc-people-download-page .pd-download-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .lc-people-download-page .pd-empty-state h3 {
  margin: 0;
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

.lc-app-main .lc-people-download-page .pd-empty-state p {
  max-width: 440px;
  margin: 8px 0 18px;
  color: var(--lc-muted);
  font-size: 13px;
  line-height: 20px;
}

.lc-app-main .lc-people-download-page .pd-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fbfaf7;
  color: var(--lc-text);
  font-size: 11px;
  font-weight: 800;
  line-height: 16px;
  white-space: nowrap;
}

.lc-app-main .lc-people-download-page .pd-status-badge.is-completed {
  background: #eaf5ef;
  color: #13734d;
}

.lc-app-main .lc-people-download-page .pd-status-badge.is-processing {
  background: #fff8e6;
  color: #9a6700;
}

.lc-app-main .lc-people-download-page .pd-status-badge.is-error {
  background: #fff2f2;
  color: #b4232b;
}

.lc-app-main .lc-people-download-page .pd-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid var(--lc-border);
  border-radius: 7px;
  background: #fff;
  color: var(--lc-text) !important;
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  text-decoration: none !important;
}

.lc-app-main .lc-people-download-page .pd-download-btn:hover {
  border-color: #050505;
  background: #f7f9f8;
}

.lc-app-main .lc-people-download-page .pd-processing-text {
  color: var(--lc-muted);
  font-size: 12px;
  font-weight: 800;
}

.lc-app-main .lc-email-generator-page .eg-page-content {
  gap: 18px;
}

.lc-app-main .lc-email-generator-page .lc-app-topbar-actions .lc-btn svg,
.lc-app-main .lc-email-generator-page .eg-generate-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .lc-email-generator-page .eg-generator-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: end;
  gap: 24px;
  padding: 24px;
}

.lc-app-main .lc-email-generator-page .eg-card-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
}

.lc-app-main .lc-email-generator-page .eg-generator-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 12px;
}

.lc-app-main .lc-email-generator-page .eg-field {
  display: grid;
  gap: 7px;
  margin: 0;
}

.lc-app-main .lc-email-generator-page .eg-field span {
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 14px;
  text-transform: uppercase;
}

.lc-app-main .lc-email-generator-page .eg-field .form-control {
  height: 42px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.lc-app-main .lc-email-generator-page .eg-generate-btn {
  min-height: 42px;
  white-space: nowrap;
}

.lc-app-main .lc-email-generator-page .eg-results-head {
  align-items: center;
}

.lc-app-main .lc-email-generator-page .eg-result-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid var(--lc-border);
  border-radius: 999px;
  background: #fbfaf7;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  line-height: 16px;
  white-space: nowrap;
}

.lc-app-main .lc-email-generator-page .eg-table-loading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.lc-app-main .lc-email-generator-page .eg-table-loading .lc-skeleton {
  height: 24px;
  border-radius: 999px;
}

.lc-app-main .lc-email-generator-page .eg-empty-state {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 42px 20px;
  text-align: center;
}

.lc-app-main .lc-email-generator-page .eg-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border: 1px solid #f2c4cf;
  border-radius: 10px;
  background: var(--lc-brand-soft);
  color: var(--lc-brand-dark);
}

.lc-app-main .lc-email-generator-page .eg-empty-icon svg,
.lc-app-main .lc-email-generator-page .eg-copy-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .lc-email-generator-page .eg-empty-state h3 {
  margin: 0;
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

.lc-app-main .lc-email-generator-page .eg-empty-state p {
  max-width: 420px;
  margin: 8px 0 0;
  color: var(--lc-muted);
  font-size: 13px;
  line-height: 20px;
}

.lc-app-main .lc-email-generator-page .eg-email-wrap {
  display: inline-flex;
  align-items: center;
  max-width: min(420px, 100%);
  min-width: 0;
}

.lc-app-main .lc-email-generator-page .eg-email {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: var(--lc-text);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lc-app-main .lc-email-generator-page .eg-copy-btn {
  flex: 0 0 auto;
}

.lc-app-main .lc-email-generator-page .eg-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fbfaf7;
  color: var(--lc-text);
  font-size: 11px;
  font-weight: 800;
  line-height: 16px;
  white-space: nowrap;
}

.lc-app-main .lc-email-generator-page .eg-status-badge.is-clean {
  background: #eaf5ef;
  color: #13734d;
}

.lc-app-main .lc-email-generator-page .eg-status-badge.is-dirty {
  background: #fff2f2;
  color: #b4232b;
}

.lc-app-main .lc-email-generator-page .eg-status-badge.is-unknown {
  background: #fbfaf7;
  color: #7a7469;
}

.lc-app-main .lc-email-generator-page .eg-status-badge.is-loading {
  background: #fff8e6;
  color: #9a6700;
}

.lc-app-main .lc-email-generator-page .eg-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.lc-app-main .lc-email-generator-page .eg-verify-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--lc-border);
  border-radius: 7px;
  background: #fff;
  color: var(--lc-text);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
}

.lc-app-main .lc-email-generator-page .eg-verify-btn:hover {
  border-color: #050505;
  background: #f7f9f8;
}

.lc-app-main .lc-email-generator-page .eg-verify-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lc-app-main .lv-file-card.lc-content-card {
  margin-bottom: 18px;
}

.lc-app-main .lc-home-action:hover,
.lc-app-main .lc-home-action-icon,
.lc-app-main .lc-home-refresh {
  background: #fbfaf7;
  color: #111;
}

.lc-app-main .uploadActionPrimary,
.lc-app-main .uploadActionBtnActive,
.lc-app-main .uploadActionBtn:hover {
  border-color: #111 !important;
  background: #111 !important;
  color: #fff !important;
}

.lc-app-main .uploadAdvancedLink,
.lc-app-main .pasteCountPillDanger,
.lc-app-main .pasteInlineWarning {
  color: var(--lc-accent-red);
}

.lc-app-main .uploadTextarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.08);
}

.lc-app-main .lcp-btn-apply {
  background: #050505;
  color: #fff;
  box-shadow: none;
}

.lc-app-main .lcp-offer-label i,
.lc-app-main .lcp-btn-remove:hover {
  color: #111;
}

.lc-app-main .lcp-offer-input:focus {
  border-color: #111;
}

.lc-app-main .lcp-row.selected {
  background: #fbfaf7;
  border-left-color: #111;
}

.lc-app-main .lcp-row.selected .lcp-cell-credits,
.lc-app-main .lcp-cell-price {
  color: #111;
}

.lc-app-main .lcp-summary {
  background: #050505;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.lc-app-main .lcp-summary .lcp-cta-btn {
  border-color: #fff !important;
  background: #fff !important;
  color: #050505 !important;
}

.lc-app-main .lcp-summary .lcp-cta-btn:hover {
  border-color: #f3f0e9 !important;
  background: #f3f0e9 !important;
  color: #050505 !important;
}

.lc-app-main .lcp-summary::before,
.lc-app-main .lcp-summary::after {
  opacity: 0.12;
}

.lc-app-main .lc-lists-results-panel.lc-page-shell {
  padding-top: 0;
  background: var(--lc-app-bg);
}

.lc-app-main .lc-app-topbar,
.lc-app-main .lc-results-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  gap: 18px;
  border-bottom: 1px solid var(--lc-border);
  background: var(--lc-app-bg);
}

.lc-app-main .lc-app-topbar-crumb,
.lc-app-main .lc-results-topbar-crumb {
  margin: 0;
}

.lc-app-main .lc-app-topbar-actions,
.lc-app-main .lc-results-topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.lc-app-main .lc-app-hero {
  display: block;
  min-height: 112px;
  margin: 0;
  padding: 28px 0 18px;
  border-bottom: 1px solid var(--lc-border);
  background: var(--lc-app-bg);
}

.lc-app-main .lc-app-hero .lc-page-eyebrow {
  margin-bottom: 9px;
}

.lc-app-main .lc-app-hero .lc-page-title em {
  color: var(--lc-text-2);
  font-style: italic;
  font-weight: 500;
}

.lc-app-main .lc-app-hero .lc-page-subtitle {
  margin-top: 8px;
}

.lc-app-main .lc-app-credits,
.lc-app-main .lc-results-credits {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
}

.lc-app-main .lc-app-credits:hover,
.lc-app-main .lc-results-credits:hover {
  border-color: #050505;
  color: #111;
  text-decoration: none !important;
}

.lc-app-main .lc-app-credits-loading,
.lc-app-main .lc-results-credits-loading {
  pointer-events: none;
}

.lc-app-main .lc-app-credits strong,
.lc-app-main .lc-results-credits strong {
  font-family: var(--lc-font-sans);
  font-size: 13px;
  letter-spacing: 0;
}

.lc-app-main .lc-app-credits-dot,
.lc-app-main .lc-results-credits-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ffcf24;
  box-shadow: inset 0 0 0 6px #ffd84a;
}

.lc-app-main .lc-app-credits-dot.lc-skeleton,
.lc-app-main .lc-results-credits-dot.lc-skeleton {
  background: linear-gradient(90deg, #ece7de 0%, #f8f6f1 42%, #ece7de 78%);
  background-size: 220% 100%;
  box-shadow: none;
}

.lc-app-main .lc-app-primary-action,
.lc-app-main .lc-results-new-upload {
  min-height: 36px;
  border-radius: 8px;
  padding-left: 15px;
  padding-right: 15px;
}

.lc-app-main .lc-app-primary-action svg,
.lc-app-main .lc-results-new-upload svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .lc-results-hero {
  display: block;
  position: relative;
  z-index: 1;
  order: 0;
  clear: both;
  width: 100%;
  margin: 0;
  min-height: 120px;
  padding: 31px 0 18px;
  border-bottom: 1px solid var(--lc-border);
  background: var(--lc-app-bg);
}

.lc-app-main .lc-lists-results-panel > .lc-page-content {
  order: 1;
}

.lc-app-main .lc-results-hero .lc-lists-heading-title,
.lc-app-main .lc-results-hero .lc-lists-heading-crumb {
  display: block;
}

.lc-app-main .lc-results-hero .lc-page-eyebrow {
  margin-bottom: 9px;
}

.lc-app-main .lc-results-hero .lc-page-subtitle {
  margin-top: 8px;
  color: #747a7d;
}

.lc-app-main .lc-results-hero .lc-page-title em {
  color: var(--lc-text-2);
  font-style: italic;
  font-weight: 500;
}

.lc-app-main .lc-lists-results-panel .panel-body.lc-page-content {
  margin-top: 0;
  padding: 24px;
  border-radius: 0;
  background: var(--lc-canvas);
}

.lc-app-main .lc-results-filterbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
  padding: 16px 20px;
  border: 1px solid var(--lc-border);
  border-radius: 12px;
  background: #fff;
}

.lc-app-main .lc-results-mobile-filterbar {
  display: none;
}

.lc-app-main .lc-results-mobile-card-actions {
  display: none;
}

.lc-app-main .lc-results-chip-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lc-app-main .lc-results-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
  color: #181818;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  text-decoration: none !important;
}

.lc-app-main .lc-results-chip strong {
  min-width: 26px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #f4f2ed;
  color: #5f6468;
  font-size: 11px;
  text-align: center;
}

.lc-app-main .lc-results-chip.is-active {
  border-color: #050505;
  background: #050505;
  color: #fff;
}

.lc-app-main .lc-results-chip.is-active strong {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.lc-app-main .lc-results-chip-count-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lc-app-main .lc-results-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #9ca3af;
}

.lc-app-main .lc-results-chip-inprocess .lc-results-chip-dot,
.lc-app-main .lc-results-chip-submitted .lc-results-chip-dot,
.lc-app-main .lc-results-chip-dot-inprocess,
.lc-app-main .lc-results-chip-dot-submitted {
  background: var(--lc-accent-amber);
}

.lc-app-main .lc-results-chip-paused .lc-results-chip-dot,
.lc-app-main .lc-results-chip-dot-paused {
  background: #4d8fe8;
}

.lc-app-main .lc-results-chip-completed .lc-results-chip-dot,
.lc-app-main .lc-results-chip-dot-completed {
  background: var(--lc-accent-green);
}

.lc-app-main .lc-results-chip-suspended .lc-results-chip-dot,
.lc-app-main .lc-results-chip-error .lc-results-chip-dot,
.lc-app-main .lc-results-chip-dot-suspended,
.lc-app-main .lc-results-chip-dot-error {
  background: var(--lc-brand);
}

.lc-app-main .lc-results-filter-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lc-app-main .lc-results-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
  color: #111;
  cursor: pointer;
}

.lc-app-main .lc-results-icon-btn:hover {
  border-color: #111;
}

.lc-app-main .lc-lists-results-panel .lc-table-card {
  border-radius: 12px;
  overflow: hidden;
}

.lc-app-main .lc-lists-results-head {
  margin-bottom: 0;
  padding: 20px;
  min-height: 66px;
  background: #fff;
}

.lc-app-main .lc-lists-results-head > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lc-app-main .lc-lists-results-h2 {
  font-size: 23px;
}

.lc-app-main .lc-results-count-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid var(--lc-border);
  border-radius: 7px;
  color: #8a8580;
  background: #fbfaf7;
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  text-transform: uppercase;
}

.lc-app-main .lc-results-count-pill-loading {
  min-width: 82px;
  justify-content: center;
}

.lc-app-main .lc-results-export-btn {
  min-height: 32px;
  border-radius: 8px;
  font-size: 12px;
}

.lc-app-main .lc-results-table-wrap {
  overflow-x: auto;
}

.lc-app-main .lc-results-table-loading {
  overflow-x: auto;
  border-top: 1px solid var(--lc-border);
  background: #fff;
}

.lc-app-main .lc-results-table-head,
.lc-app-main .lc-results-row,
.lc-app-main .lc-results-loading-row {
  display: grid;
  grid-template-columns: minmax(390px, 1fr) 112px 112px 112px 136px;
  align-items: center;
  min-width: 864px;
}

.lc-app-main .lc-results-table-head {
  min-height: 38px;
  border-top: 1px solid var(--lc-border);
  border-bottom: 1px solid var(--lc-border);
  background: var(--lc-surface-muted);
}

.lc-app-main .lc-results-th {
  padding: 0 20px;
  color: #8a8580;
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
  text-transform: uppercase;
}

.lc-app-main .lc-results-num-col,
.lc-app-main .lc-results-download-col {
  text-align: center;
}

.lc-app-main .lc-results-row {
  min-height: 62px;
  border-bottom: 1px solid var(--lc-border);
  background: #fff;
  cursor: pointer;
}

.lc-app-main .lc-results-row:hover {
  background: #fbfaf7;
}

.lc-app-main .lc-results-loading-row {
  min-height: 64px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--lc-border);
}

.lc-app-main .lc-results-loading-file {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.lc-app-main .lc-results-file-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 13px 20px;
}

.lc-app-main .lc-results-file-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fbfaf7;
  color: #111;
  font-size: 14px;
}

.lc-app-main .lc-results-file-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .lc-results-file-icon-completed {
  border-color: #cfe9d7;
  background: #f0fbf4;
  color: var(--lc-accent-green);
}

.lc-app-main .lc-results-file-icon-inprocess {
  border-color: #f0d68b;
  background: #fff8e1;
  color: #9a6807;
}

.lc-app-main .lc-results-file-icon-inprocess svg {
  animation: lcHourglassWorking 2.1s ease-in-out infinite;
  transform-origin: center;
}

.lc-app-main .lc-results-file-icon-submitted {
  border-color: #d8d5ce;
  background: #f1f0ec;
  color: #3f4145;
}

.lc-app-main .lc-results-file-icon-paused {
  border-color: #d5dde8;
  background: #f3f6fa;
  color: #51657c;
}

.lc-app-main .lc-results-file-icon-suspended {
  border-color: #f6d4bf;
  background: #fff3ea;
  color: #b45309;
}

.lc-app-main .lc-results-file-icon-error {
  border-color: #f2c7d2;
  background: #fff2f5;
  color: #c62045;
}

.lc-app-main .lc-results-file-icon-default {
  border-color: var(--lc-border);
  background: #fbfaf7;
  color: #111;
}

.lc-app-main .lc-results-file-link {
  display: block;
  min-width: 0;
  color: #050505 !important;
  text-decoration: none !important;
}

.lc-app-main .lc-results-file-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.lc-app-main .lc-results-status-badge {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 20px;
  padding: 0 7px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--lc-font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 14px;
  text-transform: uppercase;
}

.lc-app-main .lc-results-status-badge-inprocess {
  border-color: #f0d68b;
  background: #fff8e1;
  color: #8a5a00;
  animation: lcStatusProcessing 1.15s ease-in-out infinite;
}

.lc-app-main .lc-results-status-badge-submitted {
  border-color: #d8d5ce;
  background: #f1f0ec;
  color: #3f4145;
}

.lc-app-main .lc-results-row:hover .lc-results-file-name,
.lc-app-main .lc-results-file-link:hover .lc-results-file-name {
  color: var(--lc-brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lc-app-main .lc-results-file-name {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  color: #050505;
  font-size: 14px;
  font-weight: 800;
  line-height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lc-app-main .lc-results-file-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  color: #7e8299;
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 600;
  line-height: 15px;
  text-transform: uppercase;
}

.lc-app-main .lc-results-list-id {
  color: #050505;
  font-weight: 800;
}

.lc-app-main .lc-results-row-action {
  display: none;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #7a4b00;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.lc-app-main .lc-results-row-action svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .lc-results-row-danger {
  color: var(--lc-accent-red);
}

.lc-app-main .lc-results-row:hover .lc-results-row-action {
  display: inline-flex;
}

.lc-app-main .lc-results-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  border-left: 1px solid #f1eee8;
  text-align: center;
}

.lc-app-main .lc-results-metric strong {
  color: #050505;
  font-size: 15px;
  font-weight: 800;
  line-height: 18px;
}

.lc-app-main .lc-results-metric small {
  margin-top: 2px;
  color: #7e8299;
  font-size: 11px;
  line-height: 14px;
}

.lc-app-main .lc-results-clean strong {
  color: var(--lc-accent-green);
}

.lc-app-main .lc-results-dirty strong {
  color: #a45a64;
}

.lc-app-main .lc-results-unknown strong {
  color: #7e8299;
}

.lc-app-main .lc-results-metric-bar {
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 5px;
  border-radius: 99px;
  overflow: hidden;
  background: #f0ede7;
}

.lc-app-main .lc-results-metric-bar > span {
  display: block;
  height: 100%;
  min-width: 0;
  max-width: 100%;
  border-radius: inherit;
}

.lc-app-main .lc-results-clean-bar {
  background: #e8f4ec;
}

.lc-app-main .lc-results-clean-bar > span {
  background: var(--lc-accent-green);
}

.lc-app-main .lc-results-dirty-bar {
  background: #f8edf0;
}

.lc-app-main .lc-results-dirty-bar > span {
  background: #b96874;
}

.lc-app-main .lc-results-unknown-bar {
  background: #eeece8;
}

.lc-app-main .lc-results-unknown-bar > span {
  background: #96908a;
}

.lc-app-main .lc-results-download-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  border-left: 1px solid #f1eee8;
}

.lc-app-main .lc-results-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 72px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
  color: #050505 !important;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none !important;
}

.lc-app-main .lc-results-download-btn:hover {
  border-color: #050505;
}

.lc-app-main .lc-results-download-btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.lc-app-main .lc-results-download-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 86px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #e7e3dc;
  border-radius: 8px;
  background: #f8f7f4;
  color: #77716b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.lc-app-main .lc-results-download-state i {
  font-size: 12px;
}

.lc-app-main .lc-results-download-state-preparing {
  border-color: #efdba7;
  background: #fff9ea;
  color: #8a5a00;
}

.lc-app-main .lc-results-download-state-paused {
  border-color: #d5dde8;
  background: #f3f6fa;
  color: #51657c;
}

.lc-app-main .lc-results-download-state-unavailable {
  border-color: #ead5d8;
  background: #fff6f7;
  color: #9b3f4d;
}

.lc-app-main .lc-results-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  padding: 12px 20px;
  background: #fff;
}

.lc-app-main .lc-results-footer-summary {
  color: #8a8580;
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lc-app-main .lc-results-footer-summary strong {
  color: #050505;
}

.lc-app-main .lc-pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.lc-app-main .lc-pager-summary {
  color: #8a8580;
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lc-app-main .lc-pager-summary strong {
  color: #050505;
}

.lc-app-main .lc-pager-limit {
  display: flex !important;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.lc-app-main .lc-pager-limit-label {
  margin: 0;
  color: #8a8580;
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.lc-app-main .lc-pager-limit-select {
  width: 62px;
  height: 30px;
  min-height: 30px;
  padding: 0 8px;
  border: 1px solid var(--lc-border);
  border-radius: 7px;
  background: #fff;
  color: #050505;
  font-size: 12px;
  font-weight: 700;
}

.lc-app-main .lc-pager-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.lc-app-main .lc-pager .pagination-item {
  list-style: none;
}

.lc-app-main .lc-pager-btn,
.lc-app-main .lc-pager-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  border: 1px solid var(--lc-border) !important;
  border-radius: 7px;
  background: #fff;
  color: #050505 !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
}

.lc-app-main .lc-pager-btn:hover,
.lc-app-main .lc-pager-page:hover {
  border-color: #c9c2b9 !important;
  background: #faf9f7;
}

.lc-app-main .lc-pager-page-active {
  border-color: #050505 !important;
  background: #050505 !important;
  color: #fff !important;
}

.lc-app-main .lc-pager-btn:disabled,
.lc-app-main .lc-pager-page:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.lc-app-main .lc-pager-search {
  width: 100%;
}

.lc-app-main .lc-search-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.lc-app-main .lc-search-label {
  margin: 0;
  color: #050505;
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.lc-app-main .lc-search-select,
.lc-app-main .lc-search-input {
  height: 34px;
  border: 1px solid var(--lc-border);
  border-radius: 7px;
  background: #fff;
}

.lc-app-main .lc-search-btn {
  height: 34px;
  border-radius: 7px;
  font-weight: 700;
}

.lc-app-main .lc-results-pagination .lc-pager-summary {
  display: none !important;
}

.lc-app-main .lc-results-pagination .lc-pager-limit {
  margin: 0 10px 0 0;
}

.lc-app-main .lc-results-empty-card {
  border: 1px solid var(--lc-border);
  border-radius: 14px;
  background: var(--lc-surface);
  box-shadow: 0 2px 8px -2px rgba(15, 15, 14, 0.06);
}

.lc-app-main .lc-results-empty-card-first {
  background:
    radial-gradient(460px 240px at 50% 0%, rgba(255, 244, 194, 0.85), transparent 70%),
    var(--lc-surface);
}

.lc-app-main .lc-results-empty-card-positive {
  background: linear-gradient(180deg, var(--lc-success-soft) 0%, #fff 60%);
}

.lc-app-main .lc-results-empty {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.lc-app-main .lc-results-empty-first {
  padding: 64px 32px 72px;
}

.lc-app-main .lc-results-empty-filtered {
  padding: 56px 32px 60px;
}

.lc-app-main .lc-results-empty-positive {
  padding: 48px 32px 52px;
}

.lc-app-main .lc-empty-list-illustration {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
}

.lc-app-main .lc-empty-list-card {
  position: absolute;
  left: 16px;
  top: 28px;
  width: 88px;
  height: 64px;
  border: 1.5px solid var(--lc-border);
  border-radius: 9px;
}

.lc-app-main .lc-empty-list-card-back {
  transform: translate(-12px, -8px) rotate(-6deg);
  background: var(--lc-app-bg);
}

.lc-app-main .lc-empty-list-card-front {
  transform: translate(8px, 6px) rotate(4deg);
  border-color: var(--lc-text);
  background: #fff;
  box-shadow: 0 2px 8px -2px rgba(15, 15, 14, 0.06);
}

.lc-app-main .lc-empty-list-card-front::before,
.lc-app-main .lc-empty-list-card-front::after {
  content: "";
  position: absolute;
  left: 14px;
  height: 5px;
  border-radius: 2px;
  background: var(--lc-border);
}

.lc-app-main .lc-empty-list-card-front::before {
  top: 14px;
  width: 60px;
}

.lc-app-main .lc-empty-list-card-front::after {
  top: 24px;
  width: 40px;
}

.lc-app-main .lc-empty-list-check {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--lc-accent-green);
  color: #fff;
}

.lc-app-main .lc-empty-list-check svg {
  width: 9px;
  height: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .lc-empty-sparkle {
  position: absolute;
  top: 24px;
  right: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--lc-text);
  border-radius: 999px;
  background: var(--lc-accent-yellow);
  color: var(--lc-text);
}

.lc-app-main .lc-empty-sparkle svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .lc-empty-eyebrow {
  margin: 0 0 10px;
  color: var(--lc-muted);
  font-family: var(--lc-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 14px;
  text-transform: uppercase;
}

.lc-app-main .lc-results-empty-first .lc-empty-eyebrow {
  color: var(--lc-text-2);
}

.lc-app-main .lc-results-empty-positive .lc-empty-eyebrow {
  color: var(--lc-accent-green);
}

.lc-app-main .lc-empty-title {
  margin: 0;
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.lc-app-main .lc-results-empty-filtered .lc-empty-title {
  font-size: 24px;
}

.lc-app-main .lc-results-empty-positive .lc-empty-title {
  color: #0f4520;
  font-size: 26px;
}

.lc-app-main .lc-empty-title em {
  color: var(--lc-text-2);
  font-style: italic;
  font-weight: 500;
}

.lc-app-main .lc-results-empty-positive .lc-empty-title em {
  color: var(--lc-accent-green);
}

.lc-app-main .lc-empty-copy {
  max-width: 440px;
  margin: 14px auto 0;
  color: var(--lc-text-3);
  font-family: var(--lc-font-sans);
  font-size: 14px;
  line-height: 21px;
}

.lc-app-main .lc-results-empty-filtered .lc-empty-copy {
  max-width: 420px;
  font-size: 13px;
  line-height: 20px;
}

.lc-app-main .lc-results-empty-positive .lc-empty-copy {
  color: #2a5a1f;
  font-size: 13.5px;
  line-height: 20px;
}

.lc-app-main .lc-empty-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.lc-app-main .lc-results-empty-filtered .lc-empty-actions {
  margin-top: 22px;
}

.lc-app-main .lc-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 12px 20px;
  border: 1px solid var(--lc-border);
  border-radius: 9px;
  background: transparent;
  color: var(--lc-text-2) !important;
  font-family: var(--lc-font-sans);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 16px;
  text-decoration: none !important;
  cursor: pointer;
}

.lc-app-main .lc-results-empty-filtered .lc-empty-btn {
  min-height: 34px;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 500;
}

.lc-app-main .lc-empty-btn-primary {
  border-color: var(--lc-text);
  background: var(--lc-text);
  color: #fff !important;
}

.lc-app-main .lc-empty-btn:hover {
  background: var(--lc-hover);
}

.lc-app-main .lc-empty-btn-primary:hover {
  background: #000;
}

.lc-app-main .lc-empty-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .lc-empty-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 760px;
  margin: 28px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--lc-border-subtle);
  text-align: left;
}

.lc-app-main .lc-empty-step {
  padding: 12px;
}

.lc-app-main .lc-empty-step-num {
  margin-bottom: 8px;
  color: var(--lc-muted);
  font-family: var(--lc-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 14px;
  text-transform: uppercase;
}

.lc-app-main .lc-empty-step h3 {
  margin: 0;
  color: var(--lc-text);
  font-family: var(--lc-font-sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
}

.lc-app-main .lc-empty-step p {
  margin: 6px 0 0;
  color: var(--lc-text-3);
  font-size: 12px;
  line-height: 18px;
}

.lc-app-main .lc-empty-step code {
  padding: 1px 5px;
  border-radius: 4px;
  background: var(--lc-border-subtle);
  color: var(--lc-text-2);
  font-family: var(--lc-font-mono);
  font-size: 11px;
}

.lc-app-main .lc-empty-filter-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border: 1px dashed var(--lc-border);
  border-radius: 14px;
}

.lc-app-main .lc-empty-filter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--lc-border);
  border-radius: 11px;
  background: var(--lc-app-bg);
  color: var(--lc-text-3);
}

.lc-app-main .lc-empty-filter-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .lc-empty-title-filtered {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.lc-app-main .lc-empty-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  border: 1px solid #e5c42a;
  border-radius: 5px;
  background: var(--lc-accent-yellow-soft);
  color: var(--lc-text);
  font-family: var(--lc-font-sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.lc-app-main .lc-empty-filter-pill > span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--lc-muted);
}

.lc-app-main .lc-empty-filter-pill-paused > span {
  background: var(--lc-paused);
}

.lc-app-main .lc-empty-filter-pill-inprocess > span,
.lc-app-main .lc-empty-filter-pill-submitted > span {
  background: var(--lc-accent-amber);
}

.lc-app-main .lc-empty-filter-pill-completed > span {
  background: var(--lc-accent-green);
}

.lc-app-main .lc-empty-clear-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border: 2px solid var(--lc-success-border);
  border-radius: 999px;
  background: #fff;
  color: var(--lc-accent-green);
  box-shadow: 0 4px 12px -4px rgba(31, 122, 61, 0.25);
}

.lc-app-main .lc-empty-clear-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid var(--lc-success-border);
  border-radius: inherit;
  opacity: 0.4;
}

.lc-app-main .lc-empty-clear-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .lc-empty-clear-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  color: var(--lc-accent-green) !important;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 18px;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.lc-app-main .lc-empty-clear-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .lc-free-credits-page .lc-app-topbar-actions svg,
.lc-app-main .lc-free-credits-page .fc-summary-icon svg,
.lc-app-main .lc-free-credits-page .fc-review-action svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .fc-page-content {
  gap: 18px;
}

.lc-app-main .fc-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.34fr);
  gap: 22px;
  align-items: stretch;
  padding: 26px;
}

.lc-app-main .fc-card-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
  text-transform: uppercase;
}

.lc-app-main .fc-reward-value-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.lc-app-main .fc-reward-value-row strong {
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 58px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 62px;
}

.lc-app-main .fc-reward-value-row span {
  color: var(--lc-muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 22px;
}

.lc-app-main .fc-hero-copy p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--lc-muted);
  font-size: 13px;
  line-height: 20px;
}

.lc-app-main .fc-hero-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 172px;
  padding: 20px;
  border: 1px solid #d8d5ce;
  border-radius: 8px;
  background: #fbfaf7;
}

.lc-app-main .fc-discount-label {
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
  text-transform: uppercase;
}

.lc-app-main .fc-hero-aside strong {
  display: block;
  margin-top: 10px;
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 52px;
}

.lc-app-main .fc-hero-aside small {
  display: block;
  margin-top: 10px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 18px;
}

.lc-app-main .fc-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lc-app-main .fc-summary-card {
  min-height: 160px;
  padding: 18px;
}

.lc-app-main .fc-summary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #f7f9f8;
  color: #2f3437;
}

.lc-app-main .fc-summary-card strong {
  display: block;
  margin-top: 8px;
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

.lc-app-main .fc-summary-card small {
  display: block;
  margin-top: 6px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 17px;
}

.lc-app-main .fc-review-card {
  overflow: hidden;
}

.lc-app-main .fc-table-head {
  align-items: flex-start;
}

.lc-app-main .fc-table-head .lc-section-title,
.lc-app-main .fc-table-head .lc-section-subtitle {
  margin: 0;
}

.lc-app-main .fc-table-head .lc-section-title {
  margin-bottom: 5px;
}

.lc-app-main .fc-total-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--lc-border);
  border-radius: 999px;
  background: #f7f9f8;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.lc-app-main .fc-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--lc-border);
}

.lc-app-main .fc-review-site {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 18px;
  background: #fff;
}

.lc-app-main .fc-review-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 58px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
}

.lc-app-main .fc-review-logo img {
  display: block;
  max-width: 82px;
  max-height: 34px;
  object-fit: contain;
}

.lc-app-main .fc-review-details,
.lc-app-main .fc-review-details strong,
.lc-app-main .fc-review-details small,
.lc-app-main .fc-review-domain {
  display: block;
  min-width: 0;
}

.lc-app-main .fc-review-domain {
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 15px;
  text-transform: uppercase;
}

.lc-app-main .fc-review-details strong {
  margin-top: 3px;
  color: var(--lc-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
}

.lc-app-main .fc-review-details small {
  margin-top: 3px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 17px;
}

.lc-app-main .fc-review-reward {
  min-width: 92px;
  text-align: right;
}

.lc-app-main .fc-review-reward span,
.lc-app-main .fc-review-reward small {
  display: block;
}

.lc-app-main .fc-review-reward span {
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
}

.lc-app-main .fc-review-reward small {
  color: var(--lc-muted);
  font-family: var(--lc-font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 15px;
  text-transform: uppercase;
}

.lc-app-main .fc-review-action {
  min-width: 122px;
}

.lc-app-main .fc-claim-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
}

.lc-app-main .fc-card-head {
  margin-bottom: 18px;
}

.lc-app-main .fc-step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lc-app-main .fc-step {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
}

.lc-app-main .fc-step span {
  display: block;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 15px;
}

.lc-app-main .fc-step strong {
  display: block;
  margin-top: 8px;
  color: var(--lc-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 18px;
}

.lc-app-main .fc-step small {
  display: block;
  margin-top: 5px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 18px;
}

.lc-app-main .fc-note-card p {
  margin: 12px 0 0;
  color: var(--lc-muted);
  font-size: 13px;
  line-height: 20px;
}

.lc-app-main .lc-affiliates-page .lc-app-topbar-actions svg,
.lc-app-main .lc-affiliates-page .af-hero-actions svg,
.lc-app-main .lc-affiliates-page .af-summary-icon svg,
.lc-app-main .lc-affiliates-page .af-copy-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .af-page-content {
  gap: 18px;
}

.lc-app-main .af-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: 22px;
  align-items: stretch;
  padding: 26px;
}

.lc-app-main .af-card-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
  text-transform: uppercase;
}

.lc-app-main .af-commission-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.lc-app-main .af-commission-row strong {
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 58px;
  font-weight: 700;
  line-height: 62px;
}

.lc-app-main .af-commission-row span {
  color: var(--lc-muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 22px;
}

.lc-app-main .af-hero-copy p,
.lc-app-main .af-join-main p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--lc-muted);
  font-size: 13px;
  line-height: 20px;
}

.lc-app-main .af-hero-actions,
.lc-app-main .af-hero-status {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 172px;
  padding: 20px;
  border: 1px solid #d8d5ce;
  border-radius: 8px;
  background: #fbfaf7;
}

.lc-app-main .af-hero-actions {
  align-items: flex-start;
  gap: 12px;
}

.lc-app-main .af-hero-actions small,
.lc-app-main .af-hero-status small {
  display: block;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 18px;
}

.lc-app-main .af-status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--lc-border);
  border-radius: 999px;
  background: #fff;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.lc-app-main .af-status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lc-muted);
}

.lc-app-main .af-status-pill.is-active span {
  background: var(--lc-accent-green);
}

.lc-app-main .af-hero-status small {
  margin-top: 12px;
}

.lc-app-main .af-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lc-app-main .af-summary-card {
  min-height: 160px;
  padding: 18px;
}

.lc-app-main .af-summary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #f7f9f8;
  color: #2f3437;
}

.lc-app-main .af-summary-card strong {
  display: block;
  margin-top: 8px;
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

.lc-app-main .af-summary-card small {
  display: block;
  margin-top: 6px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 17px;
}

.lc-app-main .af-join-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.lc-app-main .af-workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 18px;
  align-items: start;
}

.lc-app-main .af-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.lc-app-main .af-card-head .lc-section-title,
.lc-app-main .af-card-head .lc-section-subtitle {
  margin: 0;
}

.lc-app-main .af-card-head .lc-section-title {
  margin-bottom: 5px;
}

.lc-app-main .af-code-pill,
.lc-app-main .af-count-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--lc-border);
  border-radius: 999px;
  background: #f7f9f8;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.lc-app-main .af-link-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 10px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid #d8d5ce;
  border-radius: 8px;
  background: #fbfaf7;
}

.lc-app-main .af-link-box code {
  display: flex;
  align-items: center;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 0 2px;
  color: var(--lc-text);
  font-family: var(--lc-font-mono);
  font-size: 12px;
  line-height: 18px;
}

.lc-app-main .af-copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
  color: var(--lc-muted);
  cursor: pointer;
}

.lc-app-main .af-copy-button:hover,
.lc-app-main .af-copy-button:focus-visible {
  border-color: #050505;
  color: #050505;
  outline: none;
}

.lc-app-main .af-link-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.lc-app-main .af-link-notes div {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
}

.lc-app-main .af-link-notes strong,
.lc-app-main .af-link-notes small {
  display: block;
}

.lc-app-main .af-link-notes strong {
  color: var(--lc-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 18px;
}

.lc-app-main .af-link-notes small {
  margin-top: 4px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 17px;
}

.lc-app-main .af-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lc-app-main .af-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
  margin: 0;
}

.lc-app-main .af-field-wide {
  grid-column: 1 / -1;
}

.lc-app-main .af-field span {
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
  text-transform: uppercase;
}

.lc-app-main .af-payment-card .form-control {
  min-height: 42px;
  border-color: var(--lc-border);
  background: #fff;
  box-shadow: none !important;
}

.lc-app-main .af-payment-card .form-control:focus {
  border-color: #050505;
  box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.08) !important;
}

.lc-app-main .af-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.lc-app-main .af-table-card {
  overflow: hidden;
}

.lc-app-main .af-table-head {
  align-items: flex-start;
}

.lc-app-main .af-table-head .lc-section-title,
.lc-app-main .af-table-head .lc-section-subtitle {
  margin: 0;
}

.lc-app-main .af-table-head .lc-section-title {
  margin-bottom: 5px;
}

.lc-app-main .af-table td {
  color: var(--lc-text-2);
  font-size: 12px;
}

.lc-app-main .af-table td strong {
  color: var(--lc-text);
  font-weight: 800;
}

.lc-app-main .lc-integrations-page .lc-app-topbar-actions svg,
.lc-app-main .lc-integrations-page .ig-channel-icon svg,
.lc-app-main .lc-integrations-page .ig-workflow-action svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .ig-page-content {
  gap: 18px;
}

.lc-app-main .ig-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: 22px;
  align-items: stretch;
  padding: 26px;
}

.lc-app-main .ig-card-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
  text-transform: uppercase;
}

.lc-app-main .ig-hero-title-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.lc-app-main .ig-hero-title-row strong {
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 58px;
  font-weight: 700;
  line-height: 62px;
}

.lc-app-main .ig-hero-title-row span {
  color: var(--lc-muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 22px;
}

.lc-app-main .ig-hero-copy p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--lc-muted);
  font-size: 13px;
  line-height: 20px;
}

.lc-app-main .ig-hero-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 172px;
  padding: 20px;
  border: 1px solid #d8d5ce;
  border-radius: 8px;
  background: #fbfaf7;
}

.lc-app-main .ig-hero-aside span {
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
  text-transform: uppercase;
}

.lc-app-main .ig-hero-aside strong {
  display: block;
  margin-top: 10px;
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 48px;
}

.lc-app-main .ig-hero-aside small {
  display: block;
  margin-top: 10px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 18px;
}

.lc-app-main .ig-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.lc-app-main .ig-channel-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 18px;
}

.lc-app-main .ig-channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #f7f9f8;
  color: #2f3437;
}

.lc-app-main .ig-channel-icon-brand {
  border-color: #ffd6df;
  background: var(--lc-brand-soft);
  color: var(--lc-brand);
}

.lc-app-main .ig-channel-type {
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 15px;
  text-transform: uppercase;
}

.lc-app-main .ig-channel-card strong,
.lc-app-main .ig-channel-card small {
  display: block;
}

.lc-app-main .ig-channel-card strong {
  margin-top: 6px;
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 27px;
}

.lc-app-main .ig-channel-card small {
  margin-top: 8px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 18px;
}

.lc-app-main .ig-channel-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 16px;
  color: var(--lc-text) !important;
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  text-decoration: none !important;
}

.lc-app-main .ig-channel-link:hover {
  color: var(--lc-brand) !important;
}

.lc-app-main .ig-zapier-card,
.lc-app-main .ig-workflows-card {
  overflow: hidden;
}

.lc-app-main .ig-section-head {
  align-items: flex-start;
}

.lc-app-main .ig-section-head .lc-section-title,
.lc-app-main .ig-section-head .lc-section-subtitle {
  margin: 0;
}

.lc-app-main .ig-section-head .lc-section-title {
  margin-bottom: 5px;
}

.lc-app-main .ig-count-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--lc-border);
  border-radius: 999px;
  background: #f7f9f8;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.lc-app-main .ig-zapier-embed {
  padding: 18px;
  background: #fff;
}

.lc-app-main .ig-zapier-embed zapier-full-experience {
  display: block;
  min-height: 520px;
}

.lc-app-main .ig-workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--lc-border);
}

.lc-app-main .ig-workflow-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 18px;
  background: #fff;
}

.lc-app-main .ig-workflow-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
}

.lc-app-main .ig-workflow-logo img {
  display: block;
  max-width: 42px;
  max-height: 42px;
  object-fit: contain;
}

.lc-app-main .ig-workflow-copy,
.lc-app-main .ig-workflow-copy span,
.lc-app-main .ig-workflow-copy strong,
.lc-app-main .ig-workflow-copy small {
  display: block;
  min-width: 0;
}

.lc-app-main .ig-workflow-copy span {
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 15px;
  text-transform: uppercase;
}

.lc-app-main .ig-workflow-copy strong {
  margin-top: 3px;
  color: var(--lc-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
}

.lc-app-main .ig-workflow-copy small {
  margin-top: 3px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 17px;
}

.lc-app-main .ig-workflow-action {
  min-width: 100px;
}

.lc-app-main .lc-getting-started-page .lc-app-topbar-actions svg,
.lc-app-main .lc-getting-started-page .gs-note-icon svg,
.lc-app-main .lc-getting-started-page .gs-action-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .gs-page-content {
  gap: 18px;
}

.lc-app-main .gs-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 26px;
}

.lc-app-main .gs-hero-main h2 {
  margin: 0;
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 38px;
}

.lc-app-main .gs-hero-main p {
  max-width: 690px;
  margin: 8px 0 0;
  color: var(--lc-muted);
  font-size: 13px;
  line-height: 20px;
}

.lc-app-main .gs-card-eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
  text-transform: uppercase;
}

.lc-app-main .gs-hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.lc-app-main .gs-workspace-grid,
.lc-app-main .gs-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.lc-app-main .gs-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.lc-app-main .gs-section-head .lc-section-title,
.lc-app-main .gs-section-head .lc-section-subtitle,
.lc-app-main .gs-expectation-card .lc-section-title,
.lc-app-main .gs-quick-card .lc-section-title {
  margin: 0;
}

.lc-app-main .gs-section-head .lc-section-title,
.lc-app-main .gs-expectation-card .lc-section-title,
.lc-app-main .gs-quick-card .lc-section-title {
  margin-bottom: 5px;
}

.lc-app-main .gs-step-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lc-app-main .gs-step-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
}

.lc-app-main .gs-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #d8d5ce;
  border-radius: 8px;
  background: #fbfaf7;
  color: var(--lc-text);
  font-family: var(--lc-font-mono);
  font-size: 12px;
  font-weight: 800;
}

.lc-app-main .gs-step-copy strong,
.lc-app-main .gs-step-copy p,
.lc-app-main .gs-step-copy a,
.lc-app-main .gs-step-copy span {
  display: block;
  min-width: 0;
}

.lc-app-main .gs-step-copy strong {
  color: var(--lc-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 19px;
}

.lc-app-main .gs-step-copy p {
  margin: 5px 0 9px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 18px;
}

.lc-app-main .gs-step-link,
.lc-app-main .gs-step-note {
  color: #050505;
  font-size: 12px;
  font-weight: 800;
  line-height: 17px;
  text-decoration: none !important;
}

.lc-app-main .gs-step-link:hover {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.lc-app-main .gs-note-list,
.lc-app-main .gs-action-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.lc-app-main .gs-note-row,
.lc-app-main .gs-action-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
}

.lc-app-main .gs-action-row {
  color: var(--lc-text) !important;
  text-decoration: none !important;
}

.lc-app-main .gs-action-row:hover {
  border-color: #050505;
  background: #fbfaf7;
}

.lc-app-main .gs-note-icon,
.lc-app-main .gs-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #f7f9f8;
  color: #2f3437;
}

.lc-app-main .gs-note-row p {
  margin: 0;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 18px;
}

.lc-app-main .gs-action-row strong,
.lc-app-main .gs-action-row small {
  display: block;
  min-width: 0;
}

.lc-app-main .gs-action-row strong {
  color: var(--lc-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 18px;
}

.lc-app-main .gs-action-row small {
  margin-top: 4px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 17px;
}

.lc-app-main .gs-video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #050505;
}

.lc-app-main .gs-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lc-app-main .gs-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lc-app-main .gs-resource-link {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 126px;
  padding: 14px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
  color: var(--lc-text) !important;
  text-decoration: none !important;
}

.lc-app-main .gs-resource-link:hover {
  border-color: #050505;
  background: #fbfaf7;
}

.lc-app-main .gs-resource-link span {
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 15px;
  text-transform: uppercase;
}

.lc-app-main .gs-resource-link strong {
  margin-top: 8px;
  color: var(--lc-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 19px;
}

.lc-app-main .gs-resource-link small {
  margin-top: 5px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 17px;
}

.lc-app-main .lc-email-logs-page .lc-app-topbar-actions svg,
.lc-app-main .lc-email-logs-page .evl-date-arrow svg,
.lc-app-main .lc-email-logs-page .evl-date-input-wrap svg,
.lc-app-main .lc-email-logs-page .evl-summary-icon svg,
.lc-app-main .lc-email-logs-page .evl-copy-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .evl-page-content {
  gap: 18px;
}

.lc-app-main .evl-filter-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 18px;
  align-items: end;
}

.lc-app-main .evl-card-eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
  text-transform: uppercase;
}

.lc-app-main .evl-filter-card .lc-section-title,
.lc-app-main .evl-filter-card .lc-section-subtitle {
  margin: 0;
}

.lc-app-main .evl-filter-card .lc-section-title {
  margin-bottom: 5px;
}

.lc-app-main .evl-date-filter {
  min-width: 0;
}

.lc-app-main .evl-date-range {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  min-width: 0;
}

.lc-app-main .evl-date-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  margin: 0;
}

.lc-app-main .evl-date-field span {
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 15px;
  text-transform: uppercase;
}

.lc-app-main .evl-date-input-wrap {
  position: relative;
  display: block;
  min-width: 0;
}

.lc-app-main .evl-date-input-wrap svg {
  position: absolute;
  top: 50%;
  left: 12px;
  color: #7a7469;
  pointer-events: none;
  transform: translateY(-50%);
}

.lc-app-main .evl-date-field input {
  width: 100%;
  min-height: 40px;
  padding: 9px 11px 9px 38px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
  color: var(--lc-text);
  font-family: var(--lc-font-mono);
  font-size: 13px;
  font-weight: 800;
  line-height: 18px;
  outline: none;
}

.lc-app-main .evl-date-field input:hover,
.lc-app-main .evl-date-field input:focus {
  border-color: #050505;
}

.lc-app-main .evl-date-field input:focus {
  box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.08);
}

.lc-app-main .evl-date-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 40px;
  color: var(--lc-text-3);
}

.lc-app-main .evl-apply-btn:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.lc-app-main .evl-summary-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.lc-app-main .evl-summary-card {
  min-height: 160px;
  padding: 18px;
}

.lc-app-main .evl-summary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #f7f9f8;
  color: #2f3437;
}

.lc-app-main .evl-summary-icon.is-clean {
  background: #eaf5ef;
  color: #13734d;
}

.lc-app-main .evl-summary-icon.is-dirty,
.lc-app-main .evl-summary-icon.is-error {
  background: #fff2f2;
  color: #b4232b;
}

.lc-app-main .evl-summary-icon.is-unknown {
  background: #fbfaf7;
  color: #7a7469;
}

.lc-app-main .evl-summary-card strong {
  display: block;
  margin-top: 8px;
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  overflow-wrap: anywhere;
}

.lc-app-main .evl-summary-card small {
  display: block;
  margin-top: 6px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 17px;
}

.lc-app-main .evl-skeleton-metric {
  display: block;
  width: 110px;
  height: 28px;
  margin-top: 10px;
  border-radius: 999px;
}

.lc-app-main .evl-section-head,
.lc-app-main .evl-table-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.lc-app-main .evl-section-head {
  margin-bottom: 18px;
}

.lc-app-main .evl-section-head .lc-section-title,
.lc-app-main .evl-section-head .lc-section-subtitle,
.lc-app-main .evl-table-head .lc-section-title,
.lc-app-main .evl-table-head .lc-section-subtitle {
  margin: 0;
}

.lc-app-main .evl-section-head .lc-section-title,
.lc-app-main .evl-table-head .lc-section-title {
  margin-bottom: 5px;
}

.lc-app-main .evl-chart-wrap {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
}

.lc-app-main .evl-chart-wrap #emaillogs_graph {
  min-height: 320px;
}

.lc-app-main .evl-chart-skeleton {
  display: block;
  width: 100%;
  height: 320px;
  border-radius: 8px;
}

.lc-app-main .evl-table-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid var(--lc-border);
  border-radius: 999px;
  background: #fbfaf7;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  line-height: 16px;
  white-space: nowrap;
}

.lc-app-main .evl-table-loading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.lc-app-main .evl-table-loading .lc-skeleton {
  height: 22px;
  border-radius: 999px;
}

.lc-app-main .evl-email-wrap {
  display: inline-flex;
  align-items: center;
  max-width: min(360px, 100%);
  min-width: 0;
}

.lc-app-main .evl-email {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: var(--lc-text);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lc-app-main .evl-copy-btn {
  flex: 0 0 auto;
}

.lc-app-main .evl-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #f7f9f8;
  color: var(--lc-text);
  font-size: 11px;
  font-weight: 800;
  line-height: 16px;
  white-space: nowrap;
}

.lc-app-main .evl-status-badge.is-clean {
  background: #eaf5ef;
  color: #13734d;
}

.lc-app-main .evl-status-badge.is-dirty,
.lc-app-main .evl-status-badge.is-error {
  background: #fff2f2;
  color: #b4232b;
}

.lc-app-main .evl-status-badge.is-unknown {
  background: #fbfaf7;
  color: #7a7469;
}

.lc-app-main .evl-table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px 18px;
  border-top: 1px solid var(--lc-border);
}

.lc-datepicker-popover {
  position: absolute !important;
  z-index: 1300 !important;
  padding: 10px !important;
  border: 1px solid #ded7cc !important;
  border-radius: 8px;
  background: #fff !important;
  box-shadow: 0 22px 60px rgba(18, 38, 63, 0.18);
  color: #0a0a0a;
  font-family: var(--lc-font-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.lc-datepicker-popover::before,
.lc-datepicker-popover::after {
  display: none !important;
}

.lc-datepicker-popover table {
  border-collapse: separate;
  border-spacing: 3px;
  margin: 0;
}

.lc-datepicker-popover table tr th,
.lc-datepicker-popover table tr td {
  width: 34px;
  height: 32px;
  border-radius: 7px;
  color: #2f3437;
  font-size: 12px;
  font-weight: 700;
}

.lc-datepicker-popover .datepicker-switch {
  color: #0a0a0a;
  font-size: 13px;
  font-weight: 800;
}

.lc-datepicker-popover .prev,
.lc-datepicker-popover .next {
  color: #5a5a56;
  font-size: 16px;
}

.lc-datepicker-popover .datepicker-switch:hover,
.lc-datepicker-popover .prev:hover,
.lc-datepicker-popover .next:hover,
.lc-datepicker-popover table tr td.day:hover {
  background: #f7f9f8;
}

.lc-datepicker-popover table tr th.dow {
  color: #8a8a85;
  font-family: var(--lc-font-mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.lc-datepicker-popover table tr td.old,
.lc-datepicker-popover table tr td.new {
  color: #b7b0a6;
}

.lc-datepicker-popover table tr td.today {
  background: #fbfaf7 !important;
  color: #0a0a0a !important;
}

.lc-datepicker-popover table tr td.active,
.lc-datepicker-popover table tr td.active:hover,
.lc-datepicker-popover table tr td.selected,
.lc-datepicker-popover table tr td.selected:hover {
  background: #050505 !important;
  color: #fff !important;
  text-shadow: none !important;
}

.lc-datepicker-popover table tr td.range,
.lc-datepicker-popover table tr td.range:hover {
  background: #f4f4ee !important;
}

.lc-datepicker-popover table tr td.disabled,
.lc-datepicker-popover table tr td.disabled:hover {
  background: transparent !important;
  color: #c8c1b8 !important;
}

.lc-datepicker-popover tfoot tr th {
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 800;
}

.lc-datepicker-popover tfoot tr th:hover {
  background: #fbfaf7;
}

.lc-app-main .lc-change-email-page .lc-app-topbar-actions svg,
.lc-app-main .lc-change-email-page .ce-step svg,
.lc-app-main .lc-change-email-page .ce-actions svg,
.lc-app-main .lc-change-email-page .ce-success-icon svg,
.lc-app-main .lc-change-email-page .ce-note-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .ce-page-content {
  gap: 18px;
}

.lc-app-main .ce-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.lc-app-main .ce-main-card,
.lc-app-main .ce-side-card {
  min-width: 0;
}

.lc-app-main .ce-stepper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr) 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.lc-app-main .ce-step {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--lc-muted);
}

.lc-app-main .ce-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 1px solid var(--lc-border);
  border-radius: 50%;
  background: #fff;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
}

.lc-app-main .ce-step strong {
  min-width: 0;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 17px;
  overflow-wrap: anywhere;
}

.lc-app-main .ce-step-line {
  height: 1px;
  background: var(--lc-border);
}

.lc-app-main .ce-step-active,
.lc-app-main .ce-step-complete {
  color: var(--lc-text);
}

.lc-app-main .ce-step-active span {
  border-color: #050505;
  background: #050505;
  color: #fff;
}

.lc-app-main .ce-step-complete span {
  border-color: #d8d5ce;
  background: #f7f9f8;
  color: #050505;
}

.lc-app-main .ce-current-email {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
  padding: 14px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fbfaf7;
}

.lc-app-main .ce-current-email span:first-child {
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
  text-transform: uppercase;
}

.lc-app-main .ce-current-email strong {
  min-width: 0;
  color: var(--lc-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 19px;
  overflow-wrap: anywhere;
}

.lc-app-main .ce-current-email-skeleton {
  width: min(260px, 100%);
  height: 18px;
  border-radius: 999px;
}

.lc-app-main .ce-form-panel,
.lc-app-main .ce-success-panel {
  padding-top: 4px;
}

.lc-app-main .ce-card-eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
  text-transform: uppercase;
}

.lc-app-main .ce-form-panel .lc-section-title,
.lc-app-main .ce-form-panel .lc-section-subtitle,
.lc-app-main .ce-success-panel .lc-section-title,
.lc-app-main .ce-success-panel .lc-section-subtitle,
.lc-app-main .ce-side-card .lc-section-title {
  margin: 0;
}

.lc-app-main .ce-form-panel .lc-section-title,
.lc-app-main .ce-success-panel .lc-section-title,
.lc-app-main .ce-side-card .lc-section-title {
  margin-bottom: 7px;
}

.lc-app-main .ce-form-panel .lc-section-subtitle,
.lc-app-main .ce-success-panel .lc-section-subtitle {
  max-width: 660px;
}

.lc-app-main .ce-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 520px;
  margin-top: 22px;
}

.lc-app-main .ce-form-group label {
  color: var(--lc-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 18px;
}

.lc-app-main .ce-form-group input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
  color: var(--lc-text);
  font-family: var(--lc-font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  outline: none;
}

.lc-app-main .ce-form-group input:hover,
.lc-app-main .ce-form-group input:focus {
  border-color: #050505;
}

.lc-app-main .ce-form-group input:focus {
  box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.08);
}

.lc-app-main .ce-code-group input {
  max-width: 220px;
  font-family: var(--lc-font-mono);
  font-size: 22px;
  letter-spacing: 0.08em;
}

.lc-app-main .ce-form-group small {
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 17px;
}

.lc-app-main .ce-form-group-error input {
  border-color: #c62045;
  box-shadow: 0 0 0 3px rgba(198, 32, 69, 0.08);
}

.lc-app-main .ce-form-group-error small {
  color: #c62045;
  font-weight: 700;
}

.lc-app-main .ce-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.lc-app-main .ce-actions .lc-btn:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.lc-app-main .ce-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #eaf5ef;
  color: #13734d;
}

.lc-app-main .ce-note-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.lc-app-main .ce-note-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
}

.lc-app-main .ce-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #f7f9f8;
  color: #2f3437;
}

.lc-app-main .ce-note-row p {
  margin: 0;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 18px;
}

.lc-app-main .lc-change-password-page .lc-app-topbar-actions svg,
.lc-app-main .lc-change-password-page .cp-eye-btn svg,
.lc-app-main .lc-change-password-page .cp-actions svg,
.lc-app-main .lc-change-password-page .cp-success-icon svg,
.lc-app-main .lc-change-password-page .cp-note-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .cp-page-content {
  gap: 18px;
}

.lc-app-main .cp-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.lc-app-main .cp-main-card,
.lc-app-main .cp-success-card,
.lc-app-main .cp-side-card {
  min-width: 0;
}

.lc-app-main .cp-card-eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
  text-transform: uppercase;
}

.lc-app-main .cp-main-card .lc-section-title,
.lc-app-main .cp-main-card .lc-section-subtitle,
.lc-app-main .cp-success-card .lc-section-title,
.lc-app-main .cp-success-card .lc-section-subtitle,
.lc-app-main .cp-side-card .lc-section-title {
  margin: 0;
}

.lc-app-main .cp-main-card .lc-section-title,
.lc-app-main .cp-success-card .lc-section-title,
.lc-app-main .cp-side-card .lc-section-title {
  margin-bottom: 7px;
}

.lc-app-main .cp-main-card .lc-section-subtitle,
.lc-app-main .cp-success-card .lc-section-subtitle {
  max-width: 680px;
}

.lc-app-main .cp-form-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  margin-top: 22px;
}

.lc-app-main .cp-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.lc-app-main .cp-form-group label {
  color: var(--lc-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 18px;
}

.lc-app-main .cp-input-wrap {
  position: relative;
  min-width: 0;
}

.lc-app-main .cp-input-wrap input {
  width: 100%;
  min-height: 44px;
  padding: 10px 46px 10px 12px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
  color: var(--lc-text);
  font-family: var(--lc-font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  outline: none;
}

.lc-app-main .cp-input-wrap input:hover,
.lc-app-main .cp-input-wrap input:focus {
  border-color: #050505;
}

.lc-app-main .cp-input-wrap input:focus {
  box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.08);
}

.lc-app-main .cp-eye-btn {
  position: absolute;
  top: 50%;
  right: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--lc-text-3);
  transform: translateY(-50%);
}

.lc-app-main .cp-eye-btn:hover,
.lc-app-main .cp-eye-btn:focus {
  border-color: var(--lc-border);
  background: #f7f9f8;
  color: var(--lc-text);
}

.lc-app-main .cp-form-group small {
  color: #c62045;
  font-size: 12px;
  font-weight: 700;
  line-height: 17px;
}

.lc-app-main .cp-form-group-error input {
  border-color: #c62045;
  box-shadow: 0 0 0 3px rgba(198, 32, 69, 0.08);
}

.lc-app-main .cp-strength-card {
  padding: 14px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fbfaf7;
}

.lc-app-main .cp-strength-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.lc-app-main .cp-strength-head span {
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
  text-transform: uppercase;
}

.lc-app-main .cp-strength-head strong {
  color: var(--lc-text);
  font-size: 12px;
  font-weight: 800;
  line-height: 17px;
}

.lc-app-main .cp-strength-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 12px;
}

.lc-app-main .cp-strength-track span {
  height: 5px;
  border-radius: 999px;
  background: #e6e1d8;
}

.lc-app-main .cp-strength-track .cp-strength-active {
  background: #050505;
}

.lc-app-main .cp-requirement-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.lc-app-main .cp-requirement-list span {
  position: relative;
  min-width: 0;
  padding-left: 18px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 17px;
}

.lc-app-main .cp-requirement-list span::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8d5ce;
  content: "";
}

.lc-app-main .cp-requirement-list .cp-requirement-ok {
  color: var(--lc-text);
  font-weight: 700;
}

.lc-app-main .cp-requirement-list .cp-requirement-ok::before {
  background: #13734d;
}

.lc-app-main .cp-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.lc-app-main .cp-actions .lc-btn:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.lc-app-main .cp-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #eaf5ef;
  color: #13734d;
}

.lc-app-main .cp-note-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.lc-app-main .cp-note-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
}

.lc-app-main .cp-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #f7f9f8;
  color: #2f3437;
}

.lc-app-main .cp-note-row p {
  margin: 0;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 18px;
}

.lc-app-main .lc-myaccount-page .lc-app-topbar-actions svg,
.lc-app-main .lc-myaccount-page .mp-identity-actions svg,
.lc-app-main .lc-myaccount-page .mp-summary-icon svg,
.lc-app-main .lc-myaccount-page .mp-action-icon svg,
.lc-app-main .lc-myaccount-page .mp-action-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-app-main .mp-page-content {
  gap: 18px;
}

.lc-app-main .mp-identity-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 26px;
}

.lc-app-main .mp-avatar-wrap {
  width: 72px;
  height: 72px;
  min-width: 0;
}

.lc-app-main .mp-avatar-img,
.lc-app-main .mp-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1px solid #d8d5ce;
  border-radius: 50%;
  background: #fbfaf7;
}

.lc-app-main .mp-avatar-img {
  object-fit: cover;
  image-rendering: auto;
}

.lc-app-main .mp-avatar {
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.lc-app-main .mp-card-eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
  text-transform: uppercase;
}

.lc-app-main .mp-identity-copy h2 {
  margin: 0;
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 38px;
  overflow-wrap: anywhere;
}

.lc-app-main .mp-identity-copy p {
  margin: 6px 0 0;
  color: var(--lc-muted);
  font-size: 13px;
  line-height: 20px;
  overflow-wrap: anywhere;
}

.lc-app-main .mp-inline-link,
.lc-app-main .mp-field-link {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: #050505;
  font-family: var(--lc-font-sans);
  font-weight: 800;
  line-height: 18px;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.lc-app-main .mp-inline-link {
  margin-top: 8px;
  font-size: 13px;
}

.lc-app-main .mp-field-link {
  font-size: 12px;
}

.lc-app-main .mp-inline-link:hover,
.lc-app-main .mp-field-link:hover {
  color: #4c4238;
}

.lc-app-main .mp-identity-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.lc-app-main .mp-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lc-app-main .mp-summary-card {
  min-height: 160px;
  padding: 18px;
}

.lc-app-main .mp-summary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #f7f9f8;
  color: #2f3437;
}

.lc-app-main .mp-summary-card strong {
  display: block;
  margin-top: 8px;
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  overflow-wrap: anywhere;
}

.lc-app-main .mp-summary-card small {
  display: block;
  margin-top: 6px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 17px;
  overflow-wrap: anywhere;
}

.lc-app-main .mp-account-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 18px;
  align-items: start;
}

.lc-app-main .mp-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.lc-app-main .mp-card-head .lc-section-title,
.lc-app-main .mp-card-head .lc-section-subtitle {
  margin: 0;
}

.lc-app-main .mp-card-head .lc-section-title {
  margin-bottom: 5px;
}

.lc-app-main .mp-detail-list,
.lc-app-main .mp-action-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lc-app-main .mp-detail-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
}

.lc-app-main .mp-detail-row span {
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
  text-transform: uppercase;
}

.lc-app-main .mp-detail-row strong {
  color: var(--lc-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 19px;
  overflow-wrap: anywhere;
}

.lc-app-main .mp-copy-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
}

.lc-app-main .mp-copy-row > span:first-child {
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
  text-transform: uppercase;
}

.lc-app-main .mp-copy-row strong {
  min-width: 0;
  color: var(--lc-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 19px;
  overflow-wrap: anywhere;
}

.lc-app-main .mp-copy-row .mp-skeleton-copy {
  width: min(240px, 100%);
}

.lc-app-main .mp-copy-button {
  position: static;
  opacity: 0;
  pointer-events: none;
  justify-self: end;
}

.lc-app-main .mp-copy-row:hover .mp-copy-button,
.lc-app-main .mp-copy-button:focus {
  opacity: 1;
  pointer-events: auto;
}

.lc-app-main .mp-action-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
  color: var(--lc-text) !important;
  text-decoration: none !important;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.lc-app-main .mp-action-row:hover,
.lc-app-main .mp-action-row:focus {
  border-color: #050505;
  background: #fbfaf7;
  box-shadow: 0 18px 44px rgba(22, 20, 16, 0.08);
  outline: none;
  transform: translateX(1px);
}

.lc-app-main .mp-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #f7f9f8;
  color: #2f3437;
}

.lc-app-main .mp-action-row strong,
.lc-app-main .mp-action-row small {
  display: block;
  min-width: 0;
}

.lc-app-main .mp-action-row strong {
  color: var(--lc-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 18px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 4px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.lc-app-main .mp-action-row:hover strong,
.lc-app-main .mp-action-row:focus strong {
  color: var(--lc-brand);
  text-decoration-color: currentColor;
}

.lc-app-main .mp-action-row small {
  margin-top: 4px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 17px;
}

.lc-app-main .mp-action-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 18px;
  height: 18px;
  margin-top: 10px;
  color: var(--lc-muted);
  opacity: 0.72;
  transition: color 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.lc-app-main .mp-action-arrow svg {
  width: 15px;
  height: 15px;
}

.lc-app-main .mp-action-row:hover .mp-action-arrow,
.lc-app-main .mp-action-row:focus .mp-action-arrow {
  color: var(--lc-brand);
  opacity: 1;
  transform: translateX(2px);
}

.lc-app-main .mp-billing-empty-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.lc-app-main .mp-billing-empty-card .lc-section-title,
.lc-app-main .mp-billing-empty-card .lc-section-subtitle {
  margin: 0;
}

.lc-app-main .mp-billing-empty-card .lc-section-title {
  margin-bottom: 7px;
}

.lc-app-main .mp-skeleton-title,
.lc-app-main .mp-skeleton-subtitle,
.lc-app-main .mp-skeleton-field,
.lc-app-main .mp-skeleton-metric,
.lc-app-main .mp-skeleton-copy {
  display: block;
  border-radius: 999px;
}

.lc-app-main .mp-skeleton-title {
  width: min(320px, 100%);
  height: 34px;
}

.lc-app-main .mp-skeleton-subtitle {
  width: min(260px, 80%);
  height: 14px;
  margin-top: 10px;
}

.lc-app-main .mp-skeleton-field {
  width: min(160px, 100%);
  height: 18px;
  margin-top: 8px;
}

.lc-app-main .mp-skeleton-metric {
  width: 118px;
  height: 28px;
  margin-top: 10px;
}

.lc-app-main .mp-skeleton-copy {
  height: 18px;
}

.lc-app-main .mp-billing-info-section .bi-card {
  border-color: var(--lc-border);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(18, 38, 63, 0.05);
}

.lc-app-main .mp-billing-info-section {
  scroll-margin-top: 90px;
}

.lc-app-main .mp-billing-info-section .bi-root {
  font-family: var(--lc-font-sans);
}

.lc-app-main .mp-billing-info-section .bi-card-header {
  border-left: 0;
}

.lc-app-main .mp-billing-info-section .bi-card--editing {
  border-color: var(--lc-border);
}

.lc-app-main .mp-billing-info-section .bi-eyebrow {
  color: var(--lc-text-3);
  font-family: var(--lc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.lc-app-main .mp-billing-info-section .bi-title {
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.lc-app-main .mp-billing-info-section .bi-btn-edit,
.lc-app-main .mp-billing-info-section .bi-link {
  color: #050505;
}

.lc-app-main .mp-billing-info-section .bi-btn-edit {
  border-color: var(--lc-border);
  background: #fff;
  font-family: var(--lc-font-sans);
  font-weight: 800;
}

.lc-app-main .mp-billing-info-section .bi-btn-edit:hover {
  border-color: #050505;
  background: #f7f9f8;
}

.lc-app-main .mp-billing-info-section .bi-view-val--pink {
  color: var(--lc-text);
}

.lc-app-main .mp-billing-info-section .bi-lbl,
.lc-app-main .mp-billing-info-section .bi-inp,
.lc-app-main .mp-billing-info-section .bi-btn-save,
.lc-app-main .mp-billing-info-section .bi-btn-cancel {
  font-family: var(--lc-font-sans);
}

.lc-app-main .mp-billing-info-section .bi-req,
.lc-app-main .mp-billing-info-section .bi-err {
  color: #c62045;
}

.lc-app-main .mp-billing-info-section .bi-inp:hover,
.lc-app-main .mp-billing-info-section .bi-inp:focus {
  border-color: #050505;
  background: #fff;
}

.lc-app-main .mp-billing-info-section .bi-inp:focus {
  box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.08);
}

.lc-app-main .mp-billing-info-section .bi-field--err .bi-inp {
  border-color: #c62045 !important;
  box-shadow: 0 0 0 3px rgba(198, 32, 69, 0.08) !important;
}

.lc-app-main .mp-billing-info-section .bi-btn-save {
  border-color: #050505;
  background: #050505;
}

.lc-app-main .mp-billing-info-section .bi-btn-save:hover {
  border-color: #2a2a2a;
  background: #2a2a2a;
}

.lc-app-main .mp-billing-info-section .bi-btn-cancel {
  border-color: var(--lc-border);
  color: var(--lc-text);
}

.lc-app-main .mp-billing-info-section .bi-btn-cancel:hover {
  background: #f7f9f8;
}

.lc-app-main .bp-balance-actions .bp-buy-credits-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 176px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(217, 46, 88, 0.72);
  border-radius: 10px;
  background: linear-gradient(180deg, #ff5b82 0%, var(--lc-brand) 52%, var(--lc-brand-dark) 100%);
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  line-height: 18px;
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(241, 65, 108, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.lc-app-main .bp-balance-actions .bp-buy-credits-primary:hover {
  border-color: var(--lc-brand-dark);
  background: linear-gradient(180deg, #ff6b8e 0%, #f1416c 48%, #c9244d 100%);
  color: #fff !important;
  box-shadow: 0 18px 36px rgba(241, 65, 108, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.lc-app-main .bp-balance-actions .bp-buy-credits-primary svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1120px) {
  .lc-app-main .fc-review-grid,
  .lc-app-main .fc-hero-card,
  .lc-app-main .fc-claim-grid,
  .lc-app-main .af-hero-card,
  .lc-app-main .af-workspace-grid,
  .lc-app-main .ig-hero-card,
  .lc-app-main .gs-hero-card,
  .lc-app-main .gs-workspace-grid,
  .lc-app-main .gs-media-grid,
  .lc-app-main .ce-flow-grid,
  .lc-app-main .cp-flow-grid,
  .lc-app-main .mp-identity-card,
  .lc-app-main .mp-account-grid,
  .lc-app-main .lc-people-finder-page .pf-workspace-card,
  .lc-app-main .lc-people-finder-page .pf-filter-grid,
  .lc-app-main .lc-email-generator-page .eg-generator-card,
  .lc-app-main .lc-email-generator-page .eg-generator-form {
    grid-template-columns: 1fr;
  }

  .lc-app-main .mp-identity-actions {
    justify-content: flex-start;
  }

  .lc-app-main .gs-hero-actions {
    justify-content: flex-start;
  }

  .lc-app-main .fc-step-list {
    grid-template-columns: 1fr;
  }

  .lc-app-main .ig-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lc-app-main .lc-people-finder-page .pf-workspace-metrics {
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .lc-app-main .fc-summary-grid,
  .lc-app-main .af-summary-grid,
  .lc-app-main .evl-summary-grid,
  .lc-app-main .mp-summary-grid,
  .lc-app-main .lc-people-download-page .pd-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lc-app-main .af-join-card,
  .lc-app-main .af-card-head,
  .lc-app-main .af-table-head,
  .lc-app-main .ig-section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .lc-app-main .evl-filter-card {
    grid-template-columns: 1fr;
  }

  .lc-app-main .ig-workflow-grid {
    grid-template-columns: 1fr;
  }

  .lc-app-main .gs-step-list,
  .lc-app-main .gs-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lc-app-main .ce-stepper {
    grid-template-columns: 1fr;
  }

  .lc-app-main .ce-step-line {
    display: none;
  }
}

@media (max-width: 767px) {
  .lc-app-main .fc-summary-grid,
  .lc-app-main .af-summary-grid,
  .lc-app-main .evl-summary-grid,
  .lc-app-main .mp-summary-grid,
  .lc-app-main .lc-people-download-page .pd-summary-grid,
  .lc-app-main .af-form-grid,
  .lc-app-main .af-link-notes,
  .lc-app-main .ig-channel-grid,
  .lc-app-main .lc-people-finder-page .pf-workspace-metrics {
    grid-template-columns: 1fr;
  }

  .lc-app-main .lc-people-finder-page .pf-results-head,
  .lc-app-main .lc-people-finder-page .pf-selection-toolbar,
  .lc-app-main .lc-people-finder-page .pf-modal-actions,
  .lc-app-main .lc-email-generator-page .eg-results-head {
    align-items: stretch;
    flex-direction: column;
  }

  .lc-app-main .lc-people-finder-page .pf-results-actions,
  .lc-app-main .lc-people-finder-page .pf-modal-actions {
    justify-content: flex-start;
  }

  .lc-app-main .lc-people-finder-page .select-dropdown {
    min-width: min(320px, calc(100vw - 48px));
  }

  .lc-app-main .fc-hero-card,
  .lc-app-main .af-hero-card,
  .lc-app-main .ig-hero-card {
    padding: 18px;
  }

  .lc-app-main .fc-reward-value-row strong,
  .lc-app-main .af-commission-row strong,
  .lc-app-main .ig-hero-title-row strong {
    font-size: 42px;
    line-height: 46px;
  }

  .lc-app-main .fc-review-site {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
  }

  .lc-app-main .fc-review-logo {
    width: 76px;
    height: 52px;
  }

  .lc-app-main .fc-review-logo img {
    max-width: 58px;
    max-height: 30px;
  }

  .lc-app-main .fc-review-reward {
    text-align: left;
  }

  .lc-app-main .fc-review-action {
    grid-column: 1 / -1;
    width: 100%;
  }

  .lc-app-main .af-form-actions {
    flex-direction: column;
  }

  .lc-app-main .ig-workflow-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
  }

  .lc-app-main .ig-workflow-logo {
    width: 52px;
    height: 52px;
  }

  .lc-app-main .ig-workflow-logo img {
    max-width: 34px;
    max-height: 34px;
  }

  .lc-app-main .ig-workflow-action {
    grid-column: 1 / -1;
    width: 100%;
  }

  .lc-app-main .gs-hero-card,
  .lc-app-main .gs-workflow-card,
  .lc-app-main .gs-expectation-card,
  .lc-app-main .gs-video-card,
  .lc-app-main .gs-quick-card,
  .lc-app-main .gs-resource-card {
    padding: 18px;
  }

  .lc-app-main .gs-hero-main h2 {
    font-size: 27px;
    line-height: 31px;
  }

  .lc-app-main .gs-step-list,
  .lc-app-main .gs-resource-grid,
  .lc-app-main .gs-note-row,
  .lc-app-main .gs-action-row {
    grid-template-columns: 1fr;
  }

  .lc-app-main .gs-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lc-app-main .evl-date-range,
  .lc-app-main .evl-table-head {
    grid-template-columns: 1fr;
  }

  .lc-app-main .evl-date-arrow {
    display: none;
  }

  .lc-app-main .evl-table-head {
    align-items: stretch;
    flex-direction: column;
  }

  .lc-app-main .evl-table-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  .lc-app-main .ce-main-card,
  .lc-app-main .ce-side-card {
    padding: 18px;
  }

  .lc-app-main .ce-current-email,
  .lc-app-main .ce-note-row {
    grid-template-columns: 1fr;
  }

  .lc-app-main .ce-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lc-app-main .ce-code-group input {
    max-width: 100%;
  }

  .lc-app-main .cp-main-card,
  .lc-app-main .cp-success-card,
  .lc-app-main .cp-side-card {
    padding: 18px;
  }

  .lc-app-main .cp-note-row,
  .lc-app-main .cp-requirement-list {
    grid-template-columns: 1fr;
  }

  .lc-app-main .cp-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lc-app-main .mp-identity-card {
    justify-items: flex-start;
    padding: 18px;
  }

  .lc-app-main .mp-identity-copy h2 {
    font-size: 27px;
    line-height: 31px;
  }

  .lc-app-main .mp-identity-actions,
  .lc-app-main .mp-identity-actions .lc-btn {
    width: 100%;
  }

  .lc-app-main .mp-detail-row,
  .lc-app-main .mp-copy-row {
    grid-template-columns: 1fr;
  }

  .lc-app-main .mp-copy-button {
    opacity: 1;
    pointer-events: auto;
    justify-self: flex-start;
  }

  .lc-app-main .mp-billing-empty-card {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .lc-app-main .lc-app-topbar,
  .lc-app-main .lc-results-topbar,
  .lc-app-main .lc-results-filterbar,
  .lc-app-main .lc-results-card-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .lc-app-main .lc-app-topbar,
  .lc-app-main .lc-results-topbar {
    padding: 14px 0;
  }

  .lc-app-main .lc-app-topbar-actions,
  .lc-app-main .lc-results-topbar-actions,
  .lc-app-main .lc-results-filter-actions {
    justify-content: flex-start;
  }

  .lc-app-main .lc-results-card-footer {
    align-items: flex-start;
  }

  .lc-app-main .lc-empty-steps {
    grid-template-columns: 1fr;
  }

  .lc-app-main .lc-results-empty-first,
  .lc-app-main .lc-results-empty-filtered,
  .lc-app-main .lc-results-empty-positive {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*
 * Legacy list-result classes remain below because the same template used them
 * before this page-level redesign. Keep neutralized defaults for safety.
 */
.lc-app-main .lc-lists-results-heading {
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 12px;
}

.lc-app-main .lc-lists-results-heading .lc-breadcrumb {
  margin-bottom: 12px;
}

.lc-app-main .lc-lists-results-heading .lc-page-eyebrow {
  margin-bottom: 10px;
}

.lc-app-main .lc-lists-heading-title {
  font-size: 38px;
}

.lc-app-main .lc-lists-results-head {
  padding: 20px 20px 22px;
}

.lc-app-main .lc-lists-results-h2 {
  font-size: 23px;
}

.lc-app-main .lc-lists-results-sub {
  margin-top: 14px;
  color: #74728b;
  font-size: 14px;
}

.lc-app-main .lc-lists-thead {
  background: var(--lc-surface-muted);
  border-bottom: 1px solid var(--lc-border);
}

.lc-app-main .lc-lists-th {
  color: #8a8580;
  font-family: var(--lc-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.lc-app-main .lc-lists-card {
  border-bottom-color: var(--lc-border);
}

.lc-app-main .lc-lists-card:hover {
  background: #fbfaf7;
}

.lc-app-main .lc-lists-file-name,
.lc-app-main .lc-lists-metric-count {
  color: #050505;
}

.lc-app-main .lc-lists-metric-clean .lc-lists-metric-count {
  color: var(--lc-accent-green) !important;
}

.lc-app-main .lc-lists-metric-dirty .lc-lists-metric-count {
  color: #111 !important;
}

.lc-app-main .lc-lists-download-enabled {
  border-color: var(--lc-border);
  background: #fff;
  color: #111;
}

.lc-app-main .lc-lists-download-enabled:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

@media (max-width: 1199px) {
  .lc-app-main {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  .lc-app-alert-zone {
    left: calc(var(--lc-sidebar-width, 280px) + 28px);
    right: 28px;
  }

  #sidebar.listclean-sidebar.is-collapsed + .lc-app-main .lc-app-alert-zone,
  #sidebar.listclean-sidebar.is-collapsed + #app .lc-app-alert-zone {
    left: calc(var(--lc-sidebar-collapsed-width, 72px) + 28px);
  }

  .lc-content-grid,
  .lc-content-grid-3,
  .lc-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  html,
  body {
    min-height: 100%;
    background: #fafaf7 !important;
    overscroll-behavior-y: none;
  }

  body.lc-mobile-drawer-open {
    overflow: hidden;
  }

  .lc-app-shell {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    background: #fafaf7 !important;
  }

  .lc-app-shell::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1044;
    visibility: hidden;
    background: rgba(17, 17, 15, 0);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease, background-color 180ms ease;
  }

  body.lc-mobile-drawer-open .lc-app-shell::after {
    visibility: visible;
    background: rgba(17, 17, 15, 0.38);
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  #appNavBar.lc-mobile-app-header {
    top: 0;
    right: 0;
    left: 0;
    z-index: 1043;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    height: calc(60px + env(safe-area-inset-top));
    min-height: calc(60px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 14px 0;
    border-bottom: 1px solid rgba(222, 215, 204, 0.72);
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 10px 28px rgba(22, 20, 16, 0.07);
    backdrop-filter: saturate(170%) blur(18px);
    -webkit-backdrop-filter: saturate(170%) blur(18px);
  }

  #appNavBar.lc-mobile-app-header .lc-mobile-menu-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin: 0 4px 0 0;
    padding: 0;
    border: 1px solid rgba(222, 215, 204, 0.9);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 16px rgba(22, 20, 16, 0.07);
  }

  #appNavBar.lc-mobile-app-header .lc-mobile-menu-line {
    position: absolute;
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: #11110f;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  #appNavBar.lc-mobile-app-header .lc-mobile-menu-line:nth-child(1) {
    transform: translateY(-6px);
  }

  #appNavBar.lc-mobile-app-header .lc-mobile-menu-line:nth-child(3) {
    transform: translateY(6px);
  }

  body.lc-mobile-drawer-open #appNavBar.lc-mobile-app-header .lc-mobile-menu-line:nth-child(1) {
    transform: rotate(45deg);
  }

  body.lc-mobile-drawer-open #appNavBar.lc-mobile-app-header .lc-mobile-menu-line:nth-child(2) {
    opacity: 0;
  }

  body.lc-mobile-drawer-open #appNavBar.lc-mobile-app-header .lc-mobile-menu-line:nth-child(3) {
    transform: rotate(-45deg);
  }

  #appNavBar.lc-mobile-app-header .navbar-brand {
    position: static !important;
    display: inline-flex;
    align-items: center;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
  }

  #appNavBar.lc-mobile-app-header .navbar-brand img {
    display: block;
    width: 158px;
    max-width: calc(100vw - 82px);
    height: auto;
    max-height: 38px;
    object-fit: contain;
    object-position: left center;
  }

  .lc-app-shell > #sidebar.listclean-sidebar + #app.lc-app-main,
  .lc-app-shell > #sidebar.listclean-sidebar.is-collapsed + #app.lc-app-main,
  .wrapper > #sidebar.listclean-sidebar + #app.lc-app-main,
  .wrapper > #sidebar.listclean-sidebar.is-collapsed + #app.lc-app-main {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    margin-left: 0 !important;
    padding: calc(76px + env(safe-area-inset-top)) 16px calc(34px + env(safe-area-inset-bottom)) !important;
    background: #fafaf7 !important;
  }

  .lc-app-main {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .lc-app-alert-zone,
  #sidebar.listclean-sidebar.is-collapsed + .lc-app-main .lc-app-alert-zone,
  #sidebar.listclean-sidebar.is-collapsed + #app .lc-app-alert-zone {
    top: 72px;
    left: 16px;
    right: 16px;
  }

  .lc-alert,
  .lc-app-main #errorBox,
  .lc-app-main #infoBox,
  .lc-app-main #successBox {
    padding: 12px 38px 12px 14px !important;
    font-size: 12px;
    line-height: 18px;
  }

  .lc-page-shell {
    padding: 0 0 40px;
  }

  .lc-app-main .panel.lc-page-shell,
  .lc-app-main .lc-page-shell {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .lc-app-main .panel-body.lc-page-content,
  .lc-app-main .panel-body.lc-content-card,
  .lc-app-main .panel-body.lc-section {
    margin-top: 0 !important;
  }

  .lc-app-main .lc-app-topbar,
  .lc-app-main .lc-results-topbar {
    min-height: auto;
    margin: 0 0 12px;
    padding: 0 0 10px !important;
    border-bottom: 0;
    background: transparent;
  }

  .lc-app-main .lc-app-topbar-crumb,
  .lc-app-main .lc-results-topbar-crumb {
    gap: 6px;
    color: #8a8580;
    font-size: 10px;
    line-height: 14px;
  }

  .lc-app-main .lc-app-hero,
  .lc-app-main .lc-results-hero {
    min-height: 0;
    padding: 0 0 16px;
    border-bottom-color: rgba(222, 215, 204, 0.72);
  }

  body:has(.lc-checkout) #sidebar.listclean-sidebar {
    display: flex !important;
  }

  .lcp-summary {
    scroll-margin-top: calc(76px + env(safe-area-inset-top));
  }

  .lc-app-main .lc-lists-results-panel .lc-results-credits,
  .lc-app-main .lc-lists-results-panel .lc-results-credits-loading,
  .lc-app-main .lc-lists-results-panel .lc-results-new-upload {
    display: none;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-filterbar {
    display: none;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-filterbar {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: start;
    gap: 10px;
    margin-bottom: 12px;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-filter-menu {
    position: relative;
    min-width: 0;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-filter-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 0 42px 0 13px;
    border: 1px solid rgba(222, 215, 204, 0.9);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(22, 20, 16, 0.06);
    cursor: pointer;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-filter-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    margin-right: 9px;
    color: #11110f;
    font-size: 13px;
    font-weight: 800;
    line-height: 16px;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-filter-label i {
    color: var(--lc-brand);
    font-size: 12px;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-filter-current {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    flex: 1 1 auto;
    min-width: 0;
    color: #5d5a55;
    font-family: var(--lc-font-sans);
    font-size: 13px;
    font-weight: 700;
    line-height: 16px;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-filter-current strong {
    flex: 0 0 auto;
    min-width: 27px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #f4f2ed;
    color: #5f6468;
    font-size: 11px;
    line-height: 14px;
    text-align: center;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-filter-options {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    z-index: 20;
    overflow: hidden;
    border: 1px solid rgba(222, 215, 204, 0.95);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 36px rgba(22, 20, 16, 0.14);
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-filter-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 42px;
    padding: 0 13px;
    border: 0;
    border-bottom: 1px solid #f2eee7;
    background: #fff;
    color: #181818;
    font-size: 13px;
    font-weight: 700;
    line-height: 17px;
    text-align: left;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-filter-option:last-child {
    border-bottom: 0;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-filter-option > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-filter-option > strong {
    flex: 0 0 auto;
    min-width: 30px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #f4f2ed;
    color: #5f6468;
    font-size: 11px;
    line-height: 14px;
    text-align: center;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-filter-option.is-active {
    background: #11110f;
    color: #fff;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-filter-option.is-active > strong {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-filter-caret {
    position: absolute;
    top: 50%;
    right: 14px;
    z-index: 0;
    color: #8a8580;
    font-size: 14px;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-refresh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-width: 46px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(222, 215, 204, 0.9);
    border-radius: 14px;
    background: #11110f;
    color: #fff;
    box-shadow: 0 10px 24px rgba(22, 20, 16, 0.12);
    cursor: pointer;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-refresh-btn:active {
    transform: translateY(1px);
  }

  .lc-app-main .lc-lists-results-panel .lc-results-table-wrap {
    overflow: visible;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-table-loading {
    display: grid;
    gap: 12px;
    overflow: visible;
    border-top: 0;
    background: transparent;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-loading-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    min-width: 0;
    min-height: 0;
    padding: 14px;
    border: 1px solid rgba(222, 215, 204, 0.82);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(22, 20, 16, 0.055);
  }

  .lc-app-main .lc-lists-results-panel .lc-results-loading-row > .lc-skeleton {
    width: 100%;
    height: 14px;
    justify-self: stretch;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-table-head {
    display: none;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    min-width: 0;
    min-height: 0;
    margin-bottom: 12px;
    padding: 14px;
    border: 1px solid rgba(222, 215, 204, 0.82);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(22, 20, 16, 0.065);
  }

  .lc-app-main .lc-lists-results-panel .lc-results-row:hover {
    background: #fff;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-file-cell {
    grid-column: 1 / -1;
    align-items: flex-start;
    gap: 11px;
    padding: 0;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-file-link {
    flex: 1 1 auto;
    min-width: 0;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-file-icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-file-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-file-name {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 19px;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-file-meta {
    display: block;
    overflow: hidden;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex-wrap: nowrap;
    gap: 5px;
    margin-top: 6px;
    font-size: 10px;
    line-height: 14px;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-meta-extra {
    display: none;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-row-action {
    display: none !important;
    min-height: 28px;
    margin-left: 0;
    padding: 0 9px;
    border: 1px solid #f1d1d6;
    border-radius: 999px;
    background: #fff7f9;
    font-size: 11px;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-metric {
    align-items: flex-start;
    min-height: 0;
    padding: 10px;
    border: 1px solid #f0ede7;
    border-radius: 12px;
    background: #fbfaf7;
    text-align: left;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-metric strong {
    font-size: 15px;
    line-height: 18px;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-metric small {
    font-size: 10px;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-metric::before {
    display: block;
    margin-bottom: 5px;
    color: #8a8580;
    font-family: var(--lc-font-mono);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 12px;
    text-transform: uppercase;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-clean::before {
    content: "Clean";
  }

  .lc-app-main .lc-lists-results-panel .lc-results-dirty::before {
    content: "Dirty";
  }

  .lc-app-main .lc-lists-results-panel .lc-results-unknown::before {
    content: "Unknown";
  }

  .lc-app-main .lc-lists-results-panel .lc-results-metric-bar {
    width: 100%;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-download-cell {
    display: none;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-card-actions {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 8px;
    padding-top: 2px;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 800;
    line-height: 16px;
    text-align: center;
    text-decoration: none !important;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-action i {
    font-size: 12px;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-action-view {
    border-color: rgba(222, 215, 204, 0.92);
    background: #fff;
    color: #11110f !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-action-download {
    border-color: #11110f;
    background: #11110f;
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(22, 20, 16, 0.12);
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-action-stop {
    border-color: #f0d1bc;
    background: #fff6f1;
    color: #a34819;
    box-shadow: none;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-action-stop:disabled {
    opacity: 0.56;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-mobile-action-disabled {
    border-color: #ece8df;
    background: #f6f4ef;
    color: #8a8580;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-card-footer {
    align-items: stretch;
    gap: 12px;
    margin-top: 4px;
  }

  .lc-app-main .lc-lists-results-panel .lc-results-footer-summary {
    font-size: 10px;
  }

  .lc-app-main .lc-lists-results-panel .lc-pager {
    justify-content: flex-start;
  }

  .lc-home {
    padding-top: 0 !important;
  }

  .lc-page-header,
  .lc-section-header,
  .lc-table-card-header {
    flex-direction: column;
    align-items: stretch;
  }

  .lc-page-title {
    font-size: 25px;
  }

  .lc-page-header-breadcrumb .lc-page-title {
    font-size: 23px;
  }

  .lc-page-actions {
    justify-content: flex-start;
  }

  .lc-content-grid,
  .lc-content-grid-3,
  .lc-metric-grid {
    grid-template-columns: 1fr;
  }

  .lc-content-card,
  .lc-section {
    padding: 18px;
  }

  .lc-btn,
  .lc-app-main .lc-page-actions .btn,
  .lc-app-main .lc-btn-primary,
  .lc-app-main .lc-btn-secondary,
  .lc-app-main .lc-btn-ghost,
  .lc-app-main .lc-btn-danger {
    width: 100%;
    white-space: normal;
  }
}

.lc-payment-result-page {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: calc(100vh - 32px);
  padding: 24px 0 56px;
}

body:has(.lc-checkout) {
  background: #f7f8fb !important;
}

body:has(.lc-checkout) #app {
  padding-left: 28px !important;
  padding-right: 28px !important;
}

.lc-checkout {
  width: min(1180px, 100%);
  max-width: 1180px !important;
  padding: 24px 0 64px !important;
}

.lc-checkout__header--premium {
  display: grid !important;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center !important;
  gap: 22px;
  margin-bottom: 22px !important;
  padding: 18px 20px !important;
  border: 1px solid #e8ebf3 !important;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(24, 28, 50, 0.07);
}

.lc-checkout__header--premium .lc-checkout__back--left {
  position: static !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: fit-content;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid #e4e6ef;
  border-radius: 8px;
  background: #fff;
  color: #5e6278;
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  transform: none !important;
  justify-self: start;
}

.lc-checkout__header--premium .lc-checkout__back--left:hover {
  border-color: #d8dbe8;
  background: #f8f9fc;
}

.lc-checkout__header--premium .lc-checkout__header-center {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center;
  gap: 14px;
  justify-self: center;
  text-align: left !important;
}

.lc-checkout__header--premium .lc-checkout-brand__logo {
  width: 142px;
  max-width: 142px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.lc-checkout__header--premium .lc-checkout-brand__subtitle {
  color: #181c32;
  font-size: 14px;
  font-weight: 800;
  line-height: 18px;
  text-transform: uppercase;
}

.lc-checkout-brand__caption {
  margin-top: 2px;
  color: #7e8299;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.lc-checkout__trust-row {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.lc-checkout__trust-row span,
.lc-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #5e6278;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
}

.lc-checkout__trust-row span::before,
.lc-trust span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1d9e75;
}

.lc-checkout__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr) !important;
  gap: 20px !important;
  align-items: stretch;
}

.lc-checkout .lc-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  border: 1px solid #e8ebf3 !important;
  border-radius: 12px !important;
  box-shadow: 0 18px 44px rgba(24, 28, 50, 0.07) !important;
}

.lc-card--payment {
  position: sticky;
  top: 24px;
}

.lc-checkout-card-kicker {
  padding: 16px 18px 0;
  color: #f1416c;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 15px;
  text-transform: uppercase;
}

.lc-checkout .lc-card__head {
  padding: 14px 18px 16px !important;
}

.lc-checkout .lc-card--payment .lc-card__head {
  align-items: center;
}

.lc-checkout .lc-card__title {
  color: #181c32;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 20px;
}

.lc-checkout-skeleton-grid {
  pointer-events: none;
}

.lc-checkout-skeleton-card {
  min-height: 500px;
}

.lc-checkout-skeleton-kicker {
  width: 92px;
  height: 12px;
}

.lc-checkout-skeleton-title {
  width: 118px;
  height: 18px;
}

.lc-checkout-skeleton-currency {
  width: 126px;
  height: 40px;
  border-radius: 9px !important;
}

.lc-checkout-skeleton-product,
.lc-checkout-skeleton-panel,
.lc-checkout-skeleton-billing,
.lc-checkout-skeleton-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lc-checkout-skeleton-product {
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid #eff2f5;
  border-radius: 10px;
  background: #fbfcff;
}

.lc-checkout-skeleton-panel {
  padding: 14px;
  border: 1px solid #eff2f5;
  border-radius: 10px;
  background: #fbfcff;
}

.lc-checkout-skeleton-line {
  height: 12px;
}

.lc-checkout-skeleton-line.xs {
  width: 74px;
}

.lc-checkout-skeleton-line.sm {
  width: 112px;
}

.lc-checkout-skeleton-line.md {
  width: 52%;
}

.lc-checkout-skeleton-line.lg {
  width: 70%;
}

.lc-checkout-skeleton-line.xl {
  width: 82%;
  height: 28px;
}

.lc-checkout-skeleton-row {
  width: 100%;
  height: 18px;
  border-radius: 8px !important;
}

.lc-checkout-skeleton-total {
  width: 62%;
  height: 36px;
  margin-top: 4px;
  border-radius: 8px !important;
}

.lc-checkout-skeleton-link {
  width: 118px;
  height: 14px;
  margin-top: 18px;
}

.lc-checkout-skeleton-method {
  width: 100%;
  height: 58px;
  border-radius: 10px !important;
}

.lc-checkout-skeleton-button {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  border-radius: 9px !important;
}

.lc-card__subtitle {
  margin-top: 3px;
  color: #7e8299;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.lc-checkout-header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
}

.lc-checkout .lc-card__body {
  flex: 1 1 auto;
  padding: 18px !important;
}

.lc-checkout-product {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid #eff2f5;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #fbfcff);
}

.lc-checkout-product-label {
  color: #7e8299;
  font-size: 10px;
  font-weight: 900;
  line-height: 14px;
  text-transform: uppercase;
}

.lc-checkout-product strong {
  color: #181c32;
  font-size: 24px;
  font-weight: 900;
  line-height: 30px;
}

.lc-checkout-product small {
  color: #5e6278;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.lc-checkout-product-bonus {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 2px;
  color: var(--lc-accent-green);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.lc-checkout .lc-summary__row {
  padding: 9px 0 !important;
}

.lc-checkout .lc-total {
  padding: 16px;
  border: 1px solid #eff2f5;
  border-radius: 10px;
  background: #fbfcff;
}

.lc-checkout .lc-total__final {
  color: #181c32 !important;
  font-size: 30px !important;
  line-height: 36px;
}

.lc-checkout-total-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff0f4;
  color: #d92e58;
  font-size: 12px;
  font-weight: 900;
  line-height: 16px;
  white-space: nowrap;
}

.lc-checkout .lc-currency-card {
  min-width: 138px !important;
  padding: 12px 14px !important;
  border-radius: 10px !important;
}

.lc-checkout .lc-currency-card.is-active {
  border-color: #f1416c !important;
  background: #fff7f9;
  box-shadow: 0 0 0 3px rgba(241, 65, 108, 0.1) !important;
}

.lc-currency-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.lc-currency-code {
  color: #7e8299;
  font-size: 10px;
  font-weight: 900;
  line-height: 13px;
}

.lc-checkout .lc-currency-amount {
  font-size: 14px !important;
  line-height: 18px;
}

.lc-checkout .lc-invoice {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.lc-checkout .lc-invoice__top {
  align-items: baseline;
}

.lc-checkout .lc-invoice__title {
  color: #181c32;
  font-size: 13px;
  font-weight: 900;
  line-height: 18px;
}

.lc-invoice__subtitle {
  margin-top: 2px;
  color: #a1a5b7;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 16px;
}

.lc-invoice__edit {
  padding: 0;
  border: 0;
  background: transparent;
  color: #5e6278;
  font-size: 12px;
  font-weight: 900;
  line-height: 16px;
  white-space: nowrap;
}

.lc-invoice__edit:hover,
.lc-invoice__edit:focus {
  color: #d92e58;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lc-checkout .lc-invoice__prose {
  margin-top: 8px;
  gap: 1px;
}

.lc-invoice__skeleton {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 10px;
}

.lc-invoice-skeleton-line {
  width: 68%;
  height: 12px;
}

.lc-invoice-skeleton-line--wide {
  width: 86%;
}

.lc-invoice-skeleton-line--short {
  width: 44%;
}

.lc-invoice__company {
  margin: 0 0 2px;
  color: #181c32;
  font-size: 13px;
  font-weight: 900;
  line-height: 18px;
}

.lc-checkout .lc-invoice__name,
.lc-checkout .lc-invoice__line,
.lc-checkout .lc-invoice__email {
  margin: 0;
  color: #5e6278;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
}

.lc-checkout .lc-invoice__prose:not(:has(.lc-invoice__company)) .lc-invoice__name {
  color: #181c32;
  font-weight: 900;
}

.lc-checkout .lc-invoice__email {
  color: #3f4254;
}

.lc-checkout .lc-invoice__gst {
  margin: 5px 0 0;
  color: #3f4254;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 17px;
}

.lc-checkout .lc-invoice__gst strong {
  color: #181c32;
  font-weight: 900;
}

.lc-invoice__missing {
  margin-top: 10px;
  padding: 12px;
  border: 1px dashed #ffd6df;
  border-radius: 8px;
  background: #fff8fa;
}

.lc-invoice__missing span {
  color: #7e8299;
  font-size: 12px;
  line-height: 18px;
}

.lc-checkout .lc-radio {
  position: relative;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 12px !important;
  padding: 14px !important;
  border-radius: 10px !important;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.lc-checkout .lc-radio:hover {
  border-color: #d8dbe8 !important;
  background: #fbfcff;
}

.lc-checkout .lc-radio:has(input:checked) {
  border-color: #3f4254 !important;
  background: #fbfcff;
  box-shadow: 0 0 0 3px rgba(24, 28, 50, 0.08);
}

.lc-checkout .lc-radio input {
  margin: 0 !important;
  accent-color: #f1416c;
}

.lc-radio__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lc-radio__topline strong {
  color: #181c32;
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-align: right;
}

.lc-checkout .lc-radio__hint {
  line-height: 18px;
}

.lc-checkout .lc-offer {
  padding: 12px;
  border: 1px solid #eff2f5;
  border-radius: 10px;
  background: #fbfcff;
}

.lc-checkout .lc-offer__box {
  align-items: stretch !important;
}

.lc-checkout .lc-input {
  flex: 1 1 auto;
}

.lc-checkout .lc-btn--primary {
  min-height: 48px;
  border-color: #d92e58;
  background: linear-gradient(180deg, #ff5b82 0%, #f1416c 52%, #d92e58 100%) !important;
  box-shadow: 0 14px 28px rgba(241, 65, 108, 0.24);
}

.lc-checkout .lc-btn--primary:hover {
  background: linear-gradient(180deg, #ff6b8e 0%, #f1416c 48%, #c9244d 100%) !important;
}

.lc-checkout .lc-trust {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 14px !important;
}

.lc-checkout .lc-modal {
  padding: 22px;
  background: rgba(19, 21, 31, .48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lc-checkout .lc-modal__card {
  width: min(680px, 94vw);
  max-height: calc(100vh - 44px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(17, 24, 39, .28);
  font-family: var(--lc-font-sans, "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.lc-checkout .lc-modal__head {
  align-items: center;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(239, 242, 245, .95);
  background: linear-gradient(180deg, #ffffff 0%, #fff8fa 100%);
}

.lc-checkout .lc-modal__title {
  color: #181c32;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.lc-checkout .lc-modal__subtitle {
  margin-top: 5px;
  color: #7e8299;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.lc-checkout .lc-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(228, 230, 239, .92);
  border-radius: 50%;
  background: #ffffff;
  color: #555b70;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.lc-checkout .lc-modal__close:hover,
.lc-checkout .lc-modal__close:focus {
  border-color: rgba(241, 65, 108, .25);
  background: #fff2f5;
  color: #d9214e;
  outline: none;
  transform: translateY(-1px);
}

.lc-checkout .lc-modal__close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.lc-checkout .lc-modal__body {
  max-height: calc(100vh - 128px);
  overflow-y: auto;
  overflow-x: hidden;
  background: #ffffff;
}

@media (max-width: 980px) {
  .lc-checkout__header--premium {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .lc-checkout__header--premium .lc-checkout__header-center {
    flex-direction: column !important;
    text-align: center !important;
  }

  .lc-checkout__trust-row {
    justify-content: center;
  }

  .lc-checkout__grid {
    grid-template-columns: 1fr !important;
  }

  .lc-card--payment {
    position: static;
  }

  .lc-checkout .lc-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  body:has(.lc-checkout) #app {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .lc-checkout .lc-card__head {
    flex-direction: column;
    align-items: stretch;
  }

  .lc-checkout .lc-currency-cards-grid {
    grid-template-columns: 1fr;
  }

  .lc-gst-out,
  .lc-gst-out.is-under-left,
  .lc-gst-out.is-under-right {
    grid-column: 1;
  }

  .lc-radio__topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .lc-checkout .lc-modal {
    align-items: flex-end;
    padding: 10px;
  }

  .lc-checkout .lc-modal__card {
    width: 100%;
    max-height: 92vh;
    border-radius: 22px 22px 16px 16px;
  }

  .lc-checkout .lc-modal__head {
    padding: 18px 18px 14px;
  }

  .lc-checkout .lc-modal__title {
    font-size: 17px;
  }

  .lc-checkout .lc-modal__body {
    max-height: calc(92vh - 76px);
  }
}

.lc-checkout .lc-card--summary .lc-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lc-checkout .lc-card--summary .lc-card__body {
  padding-top: 14px !important;
}

.lc-checkout .lc-checkout-product {
  margin-bottom: 12px;
  padding: 14px;
}

.lc-checkout .lc-checkout-product strong {
  font-size: 21px;
  line-height: 27px;
}

.lc-checkout .lc-summary--compact {
  padding: 2px 2px 0;
}

.lc-checkout .lc-summary--compact .lc-summary__row {
  padding: 7px 0 !important;
}

.lc-checkout .lc-summary--compact + .lc-price-breakdown {
  margin-top: 12px;
}

.lc-checkout-section {
  padding: 14px;
  border: 1px solid #eff2f5;
  border-radius: 10px;
  background: #fff;
}

.lc-checkout-section + .lc-checkout-section,
.lc-checkout-section + .lc-offer,
.lc-offer + .lc-divider {
  margin-top: 12px;
}

.lc-checkout-section-title {
  color: #181c32;
  font-size: 13px;
  font-weight: 900;
  line-height: 18px;
}

.lc-checkout .lc-currency-segment {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid #e4e6ef;
  border-radius: 9px;
  background: #f5f7fb;
  width: 126px;
}

.lc-checkout .lc-currency-segment .lc-currency-card {
  min-width: 0 !important;
  min-height: 30px;
  justify-content: center;
  padding: 7px 10px !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: transparent;
  box-shadow: none !important;
}

.lc-checkout .lc-currency-segment .lc-currency-card.is-active {
  background: #fff;
  color: #d92e58;
  box-shadow: 0 5px 14px rgba(24, 28, 50, 0.08) !important;
}

.lc-checkout .lc-currency-segment .lc-currency-code {
  color: inherit;
  font-size: 12px;
  line-height: 16px;
}

.lc-checkout .lc-gst-out {
  margin-top: 8px;
  padding-left: 0;
  color: #7e8299;
  font-size: 11px;
  line-height: 16px;
}

.lc-price-breakdown {
  background: #fbfcff;
}

.lc-price-breakdown .lc-price-row:first-child {
  padding-top: 0;
}

.lc-price-row,
.lc-price-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.lc-price-row {
  padding: 9px 0;
  border-bottom: 1px solid #eff2f5;
}

.lc-price-row span {
  color: #7e8299;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.lc-price-row span em {
  color: #1d9e75;
  font-style: normal;
  font-weight: 800;
}

.lc-price-row strong {
  color: #181c32;
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-align: right;
}

.lc-price-total {
  align-items: baseline;
  padding-top: 13px;
}

.lc-price-total span {
  color: #181c32;
  font-size: 13px;
  font-weight: 900;
  line-height: 18px;
}

.lc-price-total strong {
  color: #181c32;
  font-size: 30px;
  font-weight: 900;
  line-height: 36px;
}

.lc-checkout .lc-offer--premium {
  padding: 2px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.lc-offer__trigger {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7e8299;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 16px;
  text-align: left;
}

.lc-offer__trigger:hover,
.lc-offer__trigger:focus {
  color: #d92e58;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lc-offer-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 30px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f2fbf7;
  color: #2f6f58;
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
}

.lc-offer-applied strong {
  color: #1d805f;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.lc-offer__remove {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #3f4254;
  font-size: 11.5px;
  font-weight: 900;
  line-height: 16px;
}

.lc-offer__remove:hover,
.lc-offer__remove:focus {
  color: #d92e58;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lc-checkout .lc-offer--premium .lc-offer__box {
  display: flex;
  align-items: end;
  gap: 8px;
  padding-top: 2px;
}

.lc-offer__field {
  display: flex;
  flex: 0 0 180px;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}

.lc-offer__field span {
  color: #7e8299;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 14px;
}

.lc-checkout .lc-offer--premium .lc-offer__field .lc-input {
  width: 100%;
  height: 30px;
  min-height: 30px;
  padding: 5px 9px;
  border-color: #f3b8c6 !important;
  background: #fff;
  font-size: 12px;
  line-height: 18px;
}

.lc-checkout .lc-offer--premium .lc-offer__field .lc-input:focus {
  border-color: #f1416c !important;
  box-shadow: 0 0 0 3px rgba(241, 65, 108, 0.1);
}

.lc-checkout .lc-offer--premium .lc-btn--ghost {
  min-height: 32px;
  padding: 7px 12px;
  border-color: #f1416c !important;
  border-radius: 8px;
  background: #f1416c !important;
  color: #fff !important;
  font-size: 12px;
  line-height: 16px;
}

.lc-checkout .lc-offer--premium .lc-btn--ghost:disabled {
  cursor: wait;
  opacity: 0.72;
}

.lc-offer__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 19px;
}

.lc-offer__hide {
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid #e4e6ef;
  border-radius: 8px;
  background: #fff;
  color: #7e8299;
  font-size: 12px;
  font-weight: 900;
  line-height: 16px;
}

.lc-offer__hide:hover,
.lc-offer__hide:focus {
  border-color: #f3b8c6;
  color: #d92e58;
  background: #fff7f9;
}

.lc-checkout .lc-paymethods {
  margin-top: 2px;
}

.lc-checkout .lc-paymethods__title {
  margin-bottom: 8px;
}

.lc-checkout .lc-radio {
  margin-bottom: 8px !important;
  padding: 10px 12px !important;
}

.lc-checkout .lc-radio__content {
  position: relative;
  display: flex;
  min-height: 46px;
  width: 100%;
  padding-right: 132px;
  flex-direction: column;
  justify-content: center;
}

.lc-checkout .lc-radio__topline {
  width: auto;
}

.lc-checkout .lc-radio__topline img {
  position: absolute;
  top: 50%;
  right: 0;
  max-height: 30px;
  width: auto;
  object-fit: contain;
  transform: translateY(-50%);
}

.lc-checkout .lc-radio__topline strong {
  text-align: left;
  font-size: 13px;
}

.lc-checkout .lc-radio__hint {
  font-size: 11.5px;
  line-height: 16px;
}

.lc-alert-danger {
  border-color: #f5c2c7 !important;
  background: #fff5f5 !important;
  color: #9f1239 !important;
}

.lc-merchant-note {
  margin-top: 10px;
  color: #7e8299;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 17px;
  text-align: center;
}

.lc-merchant-note strong {
  color: #3f4254;
  font-weight: 800;
}

.lc-checkout .lc-trust {
  justify-content: center;
  gap: 8px 12px;
}

.lc-payment-result-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
  color: #181c32;
  text-align: left;
}

.lc-payment-result-header img {
  display: block;
  width: 146px;
  height: auto;
}

.lc-payment-result-header span {
  display: block;
  color: #181c32;
  font-size: 13px;
  font-weight: 900;
  line-height: 18px;
  text-transform: uppercase;
}

.lc-payment-result-header small {
  display: block;
  margin-top: 2px;
  color: #7e8299;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.lc-payment-result-shell {
  width: min(900px, 100%);
  margin: auto;
}

.lc-payment-result-card {
  padding: 30px;
  border: 1px solid #e8ebf3;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 38, 63, 0.07);
  text-align: center;
}

.lc-payment-status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
  border-radius: 50%;
}

.lc-payment-status-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-payment-status-icon-success {
  background: #e9f8f1;
  color: #15865d;
}

.lc-payment-status-icon-failed {
  background: #fff1f0;
  color: #b42318;
}

.lc-payment-status-icon-loading {
  background: #fff6e5;
  color: #b76b00;
  font-size: 26px;
}

.lc-payment-result-eyebrow {
  display: block;
  color: #f1416c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 16px;
  text-transform: uppercase;
}

.lc-payment-result-card h1 {
  margin: 8px 0 10px;
  color: #181c32;
  font-size: 30px;
  font-weight: 900;
  line-height: 38px;
}

.lc-payment-result-card > p {
  max-width: 620px;
  margin: 0 auto 22px;
  color: #5e6278;
  font-size: 14px;
  line-height: 22px;
}

.lc-payment-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
  text-align: left;
}

.lc-payment-result-panel {
  padding: 16px;
  border: 1px solid #eff2f5;
  border-radius: 8px;
  background: #fbfcfe;
}

.lc-payment-result-panel h2 {
  margin: 0 0 12px;
  color: #181c32;
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
}

.lc-payment-result-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-top: 1px solid #eff2f5;
}

.lc-payment-result-row span {
  color: #7e8299;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.lc-payment-result-row strong {
  min-width: 0;
  color: #181c32;
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  text-align: right;
  overflow-wrap: anywhere;
}

.lc-payment-result-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 11px !important;
}

.lc-payment-result-note,
.lc-payment-result-alert,
.lc-payment-result-reference {
  margin-top: 14px;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.lc-payment-result-note {
  border: 1px solid #dff3ea;
  background: #f1fbf6;
  color: #247254;
}

.lc-payment-result-alert {
  max-width: 620px;
  margin: 18px auto 0;
  border: 1px solid #fde2df;
  background: #fff8f7;
  color: #9a3412;
}

.lc-payment-result-reference {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  max-width: 620px;
  margin: 12px auto 0;
  border: 1px solid #eff2f5;
  background: #fbfcfe;
  color: #5e6278;
  text-align: left;
}

.lc-payment-result-reference span {
  flex: 0 0 auto;
  color: #7e8299;
  font-size: 12px;
  font-weight: 700;
}

.lc-payment-result-reference strong {
  color: #181c32;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-align: right;
}

.lc-payment-result-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.lc-payment-result-actions .lc-btn {
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 8px;
}

.lc-payment-result-skeletons {
  display: grid;
  gap: 10px;
  width: min(520px, 100%);
  margin: 24px auto 0;
}

.lc-payment-result-skeletons .lc-skeleton {
  height: 16px;
  border-radius: 999px;
}

.lc-payment-result-skeletons .lc-skeleton:nth-child(2) {
  width: 82%;
  margin: 0 auto;
}

.lc-payment-result-skeletons .lc-skeleton:nth-child(3) {
  width: 58%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .lc-payment-result-page {
    padding: 18px 0 40px;
  }

  .lc-payment-result-header {
    flex-direction: column;
    gap: 8px;
  }

  .lc-payment-result-card {
    padding: 24px 18px;
  }

  .lc-payment-result-card h1 {
    font-size: 26px;
    line-height: 34px;
  }

  .lc-payment-result-grid {
    grid-template-columns: 1fr;
  }

  .lc-payment-result-row {
    flex-direction: column;
    gap: 4px;
  }

  .lc-payment-result-row strong {
    text-align: left;
  }
}

/* Plans / Buy Credits */
.lcp-page {
  color: var(--lc-text);
}

.lcp-header-balance {
  text-decoration: none !important;
}

.lcp-currency-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  width: 126px;
  border: 1px solid #e4e6ef;
  border-radius: 9px;
  background: #f5f7fb;
}

.lcp-currency-btn {
  min-width: 0;
  min-height: 30px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #7e8299;
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  cursor: pointer;
}

.lcp-currency-btn.active {
  background: #fff;
  color: #d92e58;
  box-shadow: 0 5px 14px rgba(24, 28, 50, 0.08);
}

.lcp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 20px;
  align-items: stretch;
}

.lcp-plan-area {
  display: flex;
  min-height: 100%;
  min-width: 0;
  padding: 18px;
  border: 1px solid #e8ebf3;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 38, 63, 0.06);
  flex-direction: column;
}

.lcp-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.lcp-section-head .lc-section-title,
.lcp-section-head .lc-section-subtitle {
  margin: 0;
}

.lcp-section-head .lc-section-title {
  margin-bottom: 5px;
}

.lcp-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lcp-plan-card {
  position: relative;
  display: flex;
  min-height: 176px;
  padding: 15px;
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  background: #fff;
  color: var(--lc-text);
  cursor: pointer;
  flex-direction: column;
  text-align: left;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease, background 0.16s ease;
}

.lcp-plan-card:hover {
  border-color: #c7ccd8;
  box-shadow: 0 18px 44px rgba(22, 20, 16, 0.08);
  transform: translateY(-1px);
}

.lc-app-main .lcp-plan-card.selected,
.lc-app-main .lcp-plan-card.selected:hover,
.lc-app-main .lcp-plan-card.selected:focus,
.lc-app-main .lcp-plan-card.selected:active {
  border-color: #f1416c !important;
  background: #fbfcff !important;
  box-shadow: 0 0 0 3px rgba(241, 65, 108, 0.1), 0 18px 44px rgba(22, 20, 16, 0.08) !important;
  outline: 0 !important;
}

.lcp-plan-card.popular {
  border-color: #d8dbe8;
  background: #fbfcff;
}

.lcp-plan-card.unlimited {
  background: #f7f9f8;
}

.lcp-plan-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 22px;
  margin-bottom: 10px;
}

.lcp-plan-badges {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 22px;
}

.lcp-badge-popular,
.lcp-badge-unlimited {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.lcp-badge-popular {
  border: 1px solid rgba(241, 65, 108, 0.28);
  background: linear-gradient(180deg, #fff8fa 0%, #fff0f4 100%);
  color: #c9244d;
  box-shadow: 0 6px 14px rgba(241, 65, 108, 0.1);
}

.lcp-badge-unlimited {
  border: 1px solid var(--lc-border);
  background: #fff;
  color: var(--lc-text-3);
}

.lcp-selected-dot {
  width: 18px;
  height: 18px;
  border: 1px solid #cfcac2;
  border-radius: 999px;
  background: #fff;
}

.lcp-plan-card.selected .lcp-selected-dot {
  border-color: #f1416c;
  background: radial-gradient(circle at center, #f1416c 0 42%, #fff 45% 100%);
}

.lcp-plan-credits {
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
}

.lcp-plan-credits-sub {
  margin-top: 2px;
  color: var(--lc-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.lcp-plan-bonus {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  /* margin-top: 7px; */
  color: var(--lc-accent-green);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.lcp-plan-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 12px;
  color: var(--lc-text);
}

.lcp-plan-price strong {
  font-size: 20px;
  font-weight: 900;
  line-height: 25px;
}

.lcp-price-old {
  color: #a7a19b;
  font-size: 12px;
  font-weight: 700;
  text-decoration: line-through;
}

.lcp-plan-meta {
  display: flex;
  gap: 4px;
  margin-top: 9px;
  flex-direction: column;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 17px;
}

.lcp-plan-savings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  color: var(--lc-accent-green);
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
}

.lcp-plan-savings strong {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--lc-success-soft);
  color: var(--lc-accent-green);
  font-size: 11px;
}

.lcp-unlimited-help {
  position: absolute;
  right: 14px;
  bottom: 14px;
}

.lcp-summary {
  position: sticky;
  top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid #e8ebf3 !important;
  border-radius: 10px;
  background: #fff !important;
  color: var(--lc-text) !important;
  box-shadow: 0 18px 45px rgba(18, 38, 63, 0.06);
}

.lc-app-main .lcp-summary {
  background: #fff !important;
  box-shadow: 0 18px 45px rgba(18, 38, 63, 0.06);
}

.lcp-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lcp-sum-eyebrow {
  color: var(--lc-text-3);
  font-size: 11px;
  font-weight: 900;
  line-height: 16px;
  text-transform: uppercase;
}

.lcp-sum-title strong,
.lcp-sum-title span {
  display: block;
}

.lcp-sum-title strong {
  color: var(--lc-text);
  font-family: var(--lc-font-display);
  font-size: 23px;
  font-weight: 800;
  line-height: 29px;
}

.lcp-sum-title span {
  margin-top: 3px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 18px;
}

.lcp-sum-bonus {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: -6px;
  padding: 7px 10px;
  border: 1px solid rgba(80, 205, 137, 0.22);
  border-radius: 8px;
  background: rgba(80, 205, 137, 0.08);
  color: var(--lc-accent-green);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.lcp-price-breakdown {
  padding: 14px;
  border: 1px solid #eff2f5;
  border-radius: 10px;
  background: #fbfcff;
}

.lcp-price-row,
.lcp-price-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.lcp-price-row {
  padding: 8px 0;
  border-bottom: 1px solid #eff2f5;
}

.lcp-price-row:first-child {
  padding-top: 0;
}

.lcp-price-row span {
  color: #7e8299;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.lcp-price-row span em {
  color: #1d805f;
  font-style: normal;
  font-weight: 800;
}

.lcp-price-row strong {
  color: #181c32;
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-align: right;
}

.lcp-price-total {
  align-items: baseline;
  padding-top: 12px;
}

.lcp-price-total span {
  color: #181c32;
  font-size: 13px;
  font-weight: 900;
  line-height: 18px;
}

.lcp-price-total strong {
  color: #181c32;
  font-size: 30px;
  font-weight: 900;
  line-height: 36px;
}

.lcp-price-total strong.lcp-amt-md { font-size: 27px; }
.lcp-price-total strong.lcp-amt-sm { font-size: 24px; }
.lcp-price-total strong.lcp-amt-xs { font-size: 21px; }

.lcp-sum-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lcp-sum-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--lc-muted);
  font-size: 12px;
  line-height: 18px;
}

.lcp-sum-detail-value {
  color: var(--lc-text);
  font-weight: 800;
  text-align: right;
}

.lcp-sum-chip {
  color: var(--lc-accent-green);
  font-weight: 800;
}

.lc-app-main .lcp-summary .lcp-cta-btn,
.lcp-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #d92e58 !important;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff5b82 0%, #f1416c 52%, #d92e58 100%) !important;
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 14px 28px rgba(241, 65, 108, 0.2);
}

.lc-app-main .lcp-summary .lcp-cta-btn:hover,
.lcp-cta-btn:hover {
  border-color: #c9244d !important;
  background: linear-gradient(180deg, #ff6b8e 0%, #f1416c 48%, #c9244d 100%) !important;
  color: #fff !important;
}

.lcp-sum-footnote {
  margin-top: -8px;
  color: var(--lc-muted);
  font-size: 11px;
  line-height: 16px;
  text-align: center;
}

.lcp-offer-bar {
  display: flex;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--lc-border);
  flex-direction: column;
}

.lcp-offer-trigger {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7e8299;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 16px;
}

.lcp-offer-trigger:hover,
.lcp-offer-trigger:focus {
  color: #d92e58;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lcp-offer-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.lcp-offer-field {
  display: flex;
  flex: 0 0 180px;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}

.lcp-offer-field span {
  color: #7e8299;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 14px;
}

.lcp-offer-input {
  width: 100%;
  height: 30px;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid #f3b8c6;
  border-radius: 8px;
  background: #fff;
  color: var(--lc-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  outline: none;
}

.lcp-offer-input:focus {
  border-color: #f1416c;
  box-shadow: 0 0 0 3px rgba(241, 65, 108, 0.1);
}

.lcp-offer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lcp-btn-apply,
.lcp-btn-hide {
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  line-height: 16px;
  cursor: pointer;
}

.lcp-btn-apply {
  border: 1px solid #f1416c;
  background: #f1416c;
  color: #fff;
}

.lcp-btn-apply:disabled {
  cursor: wait;
  opacity: 0.72;
}

.lcp-btn-hide {
  border: 1px solid #e4e6ef;
  background: #fff;
  color: #7e8299;
}

.lcp-btn-hide:hover,
.lcp-btn-hide:focus {
  border-color: #f3b8c6;
  color: #d92e58;
  background: #fff7f9;
}

.lcp-offer-inline-success {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f2fbf7;
  color: #2f6f58;
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
}

.lcp-offer-inline-success strong {
  color: #1d805f;
  font-weight: 900;
  text-transform: uppercase;
}

.lcp-offer-notice-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--lc-accent-green);
}

.lcp-btn-remove {
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #3f4254;
  font-size: 11.5px;
  font-weight: 900;
  line-height: 16px;
  cursor: pointer;
}

.lcp-btn-remove:hover,
.lcp-btn-remove:focus {
  color: #d92e58;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lcp-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 16px 0 2px;
}

.lcp-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lc-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.lcp-trust-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid #cde7d7;
  border-radius: 999px;
  background: #f5fbf7;
  color: var(--lc-accent-green);
}

.lcp-trust-check svg {
  width: 8px;
  height: 8px;
}

.lcp-trust-check path {
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lcp-plan-card-skeleton {
  pointer-events: none;
}

.lcp-skeleton-title {
  width: 180px;
  height: 20px;
  display: block;
}

.lcp-skeleton-subtitle {
  width: 260px;
  height: 14px;
  display: block;
  margin-top: 8px;
}

.lcp-skeleton-badge {
  width: 96px;
  height: 20px;
}

.lcp-skeleton-credits {
  width: 70%;
  height: 32px;
  margin-top: 14px;
}

.lcp-skeleton-line {
  width: 100%;
  height: 12px;
  margin-top: 10px;
}

.lcp-skeleton-line.short {
  width: 62%;
}

.lcp-skeleton-price {
  width: 56%;
  height: 24px;
  margin-top: 14px;
}

.lcp-summary-skeleton {
  pointer-events: none;
}

.lcp-skeleton-summary-price {
  width: 78%;
  height: 58px;
}

.lcp-skeleton-summary-row {
  width: 100%;
  height: 18px;
}

.lcp-skeleton-summary-button {
  width: 100%;
  height: 44px;
  border-radius: 8px !important;
}

@media (max-width: 1280px) {
  .lcp-layout {
    grid-template-columns: minmax(0, 1fr) 370px;
  }

  .lcp-plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .lcp-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .lcp-layout {
    grid-template-columns: 1fr;
  }

  .lcp-summary {
    position: static;
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .lcp-plan-area {
    padding: 14px;
  }

  .lcp-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .lcp-plan-grid {
    grid-template-columns: 1fr;
  }

  .lcp-offer-row {
    width: 100%;
  }

  .lcp-offer-row {
    align-items: stretch;
    flex-direction: column;
  }

  .lcp-offer-field {
    flex: 1 1 auto;
  }

  .lcp-price-total strong {
    font-size: 27px;
    line-height: 34px;
  }
}
