/* lineup-page.css — shared by switching.html and ipc.html: hero, family strip, product cards, compare table, statement tiles.
   Tokens come from rli.css (--rl-dev-*). Namespace: .rl-lp */

.rl-lp {
    --rl-lp-header: calc(64px + var(--rl-admin-org-banner-h, 0px));
    color: var(--rl-dev-ink);
    background: var(--rl-dev-bg);
}

.rl-lp a { text-decoration: none; }

/* ---- hero ------------------------------------------------------------- */
.rl-lp-hero {
    position: relative;
    padding: calc(var(--rl-lp-header) + 3.5rem) 0 2.5rem;
    background:
        radial-gradient(120% 90% at 100% 0%, var(--rl-dev-accent-soft) 0%, rgba(225, 236, 243, 0) 55%),
        var(--rl-dev-bg);
    overflow: hidden;
}

.rl-lp-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.25rem;
    justify-items: center;
    text-align: center;
}

.rl-lp-hero__grid > div:first-child { max-width: 720px; }

.rl-lp-hero h1 {
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
    text-wrap: balance;
    margin: 0 0 1rem;
}

.rl-lp-hero__lead {
    font-size: 1.1rem;
    line-height: 1.55;
    color: var(--rl-dev-muted);
    max-width: 62ch;
    margin: 0 auto 1.5rem;
}

.rl-lp-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.rl-lp-hero__art {
    width: 100%;
    max-width: 1180px;
}

.rl-lp-hero__art img {
    display: block;
    width: 100%;
    height: auto;
}

.rl-lp-hero__facts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.75rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--rl-dev-line);
    font-size: 0.85rem;
    color: var(--rl-dev-muted);
}

.rl-lp-hero__facts strong {
    color: var(--rl-dev-ink);
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .rl-lp-hero { padding-top: calc(var(--rl-lp-header) + 2rem); }
    .rl-lp-hero__grid { gap: 1.5rem; }
}

.rl-eyebrow--light { color: var(--rl-dev-accent-bright); }

/* ---- family strip (sticky) ------------------------------------------- */
.rl-lp-strip {
    position: sticky;
    top: var(--rl-lp-sticky, var(--rl-lp-header));
    z-index: 900;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--rl-dev-line);
    border-bottom: 1px solid var(--rl-dev-line);
}

.rl-lp-strip__track {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding: 6px 0;
    -webkit-overflow-scrolling: touch;
}

.rl-lp-strip__track::-webkit-scrollbar { display: none; }

@media (min-width: 1200px) {
    .rl-lp-strip__track { justify-content: center; }
}

.rl-lp-fam {
    flex: 0 0 auto;
    width: 154px;
    scroll-snap-align: center;
    display: grid;
    grid-template-rows: 60px auto auto;
    align-items: center;
    justify-items: center;
    gap: 2px;
    padding: 8px 8px 10px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--rl-dev-ink);
    text-align: center;
    cursor: pointer;
    transition: background 0.15s ease;
}

.rl-lp-fam:hover { background: var(--rl-dev-bg-soft); }

.rl-lp-fam[aria-selected="true"] {
    background: var(--rl-dev-accent-soft);
}

.rl-lp-fam img {
    width: 128px;
    height: 56px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.rl-lp-fam:hover img { transform: translateY(-2px); }

.rl-lp-fam__name {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
}

.rl-lp-fam[aria-selected="true"] .rl-lp-fam__name { color: var(--rl-dev-accent); }

.rl-lp-fam__blurb {
    font-size: 0.72rem;
    line-height: 1.25;
    color: var(--rl-dev-muted);
    text-wrap: balance;
}

.rl-lp-fam:focus-visible {
    outline: 2px solid var(--rl-dev-accent-bright);
    outline-offset: -2px;
}

@media (max-width: 767.98px) {
    .rl-lp-fam { width: 124px; grid-template-rows: 46px auto auto; padding: 6px 6px 8px; }
    .rl-lp-fam img { width: 104px; height: 44px; }
    .rl-lp-fam__blurb { display: none; }
}

/* ---- family section --------------------------------------------------- */
.rl-lp-family {
    padding: 2.75rem 0 2rem;
    scroll-margin-top: calc(var(--rl-lp-sticky, var(--rl-lp-header)) + var(--rl-lp-strip-h, 110px) + 12px);
}

.rl-lp-family__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem 2rem;
    align-items: end;
    margin-bottom: 1.5rem;
}

.rl-lp-family__head h2 {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin: 0 0 0.6rem;
    text-wrap: balance;
}

.rl-lp-family__lead {
    margin: 0;
    max-width: 66ch;
    color: var(--rl-dev-muted);
    line-height: 1.55;
}

.rl-lp-family__store {
    white-space: nowrap;
    font-weight: 600;
    color: var(--rl-dev-accent);
}

.rl-lp-family__store .arrow { display: inline-block; transition: transform 0.15s ease; }
.rl-lp-family__store:hover .arrow { transform: translateX(3px); }

@media (max-width: 767.98px) {
    .rl-lp-family__head { grid-template-columns: 1fr; align-items: start; }
}

/* port-count chips (overview) */
.rl-lp-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.rl-lp-chips__label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rl-dev-muted);
    margin-right: 0.25rem;
}

.rl-lp-chip {
    height: 32px;
    padding: 0 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--rl-dev-line);
    background: var(--rl-dev-bg);
    color: var(--rl-dev-ink);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.rl-lp-chip:hover { border-color: rgba(11, 15, 25, 0.35); }

.rl-lp-chip[aria-pressed="true"] {
    background: var(--rl-dev-ink);
    border-color: var(--rl-dev-ink);
    color: #fff;
}

/* ---- cards -------------------------------------------------------------- */
.rl-lp-cards {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 4px 4px 14px;
    margin: 0 -4px;
    scrollbar-width: thin;
}

.rl-lp-cards--grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
    overflow: visible;
    padding: 4px;
}

/* touch: 44px targets for the controls people actually tap */
@media (max-width: 767.98px) {
    .rl-lp-btn { height: 44px; }
    .rl-lp-chip { height: 40px; padding: 0 1rem; }
    .rl-lp-variants button { padding: 8px 12px; }
    .rl-lp-slot__remove { width: 32px; height: 32px; }
}

@media (max-width: 575.98px) {
    .rl-lp-cards--grid { grid-template-columns: minmax(0, 1fr); }
    .rl-lp-cards--grid .rl-lp-card__img { aspect-ratio: 2.4 / 1; }
    .rl-lp-card { flex-basis: 232px; }
}

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

.rl-lp-card {
    position: relative;
    flex: 0 0 244px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.85rem;
    background: var(--rl-dev-bg);
    border: 1px solid var(--rl-dev-line);
    border-radius: 16px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.rl-lp-cards--grid .rl-lp-card { flex: initial; }

.rl-lp-card:hover {
    border-color: rgba(6, 63, 91, 0.35);
    box-shadow: 0 10px 28px rgba(11, 15, 25, 0.08);
    transform: translateY(-2px);
}

.rl-lp-card.is-selected { border-color: var(--rl-dev-accent); }

.rl-lp-card__img {
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    background: var(--rl-dev-bg-soft);
    overflow: hidden;
}

.rl-lp-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease;
}

.rl-lp-card:hover .rl-lp-card__img img { transform: scale(1.03); }

.rl-lp-card__badges {
    position: absolute;
    top: 1.35rem;
    left: 1.35rem;
    display: flex;
    gap: 4px;
    z-index: 1;
}

.rl-lp-badge {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 999px;
    background: var(--rl-dev-accent);
    color: #fff;
}

.rl-lp-badge--soft { background: var(--rl-dev-accent-soft); color: var(--rl-dev-accent); }

.rl-lp-card__pn {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--rl-dev-ink);
    margin-top: 0.15rem;
}

.rl-lp-card__pn:hover { color: var(--rl-dev-accent); }

.rl-lp-card__tag {
    font-size: 0.8rem;
    line-height: 1.35;
    color: var(--rl-dev-muted);
    min-height: 2.7em;
}

.rl-lp-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.rl-lp-card__chip {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--rl-dev-bg-soft);
    color: var(--rl-dev-ink-2);
    white-space: nowrap;
}

.rl-lp-card__chip strong { color: var(--rl-dev-ink); }

.rl-lp-variants {
    display: inline-flex;
    padding: 2px;
    background: var(--rl-dev-bg-soft);
    border-radius: 8px;
    align-self: flex-start;
}

.rl-lp-variants button {
    border: 0;
    background: transparent;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rl-dev-muted);
    cursor: pointer;
}

.rl-lp-variants button[aria-pressed="true"] {
    background: var(--rl-dev-bg);
    color: var(--rl-dev-ink);
    box-shadow: 0 1px 2px rgba(11, 15, 25, 0.12);
}

.rl-lp-card__actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 0.25rem;
}

.rl-lp-btn {
    flex: 1 1 auto;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(11, 15, 25, 0.22);
    background: var(--rl-dev-bg);
    color: var(--rl-dev-ink);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.rl-lp-btn:hover { border-color: var(--rl-dev-ink); }

.rl-lp-btn[aria-pressed="true"] {
    background: var(--rl-dev-accent);
    border-color: var(--rl-dev-accent);
    color: #fff;
}

.rl-lp-btn[disabled] { opacity: 0.45; cursor: not-allowed; }

.rl-lp-card__view {
    flex: none;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--rl-dev-accent);
    white-space: nowrap;
}

.rl-lp-card__view .arrow { display: inline-block; transition: transform 0.15s ease; }
.rl-lp-card__view:hover .arrow { transform: translateX(3px); }

.rl-lp-card a:focus-visible,
.rl-lp-card button:focus-visible,
.rl-lp-chip:focus-visible {
    outline: 2px solid var(--rl-dev-accent-bright);
    outline-offset: 2px;
}

/* ---- compare ------------------------------------------------------------ */
.rl-lp-compare {
    padding: 2.5rem 0 4rem;
    background: var(--rl-dev-bg-soft);
    scroll-margin-top: calc(var(--rl-lp-sticky, var(--rl-lp-header)) + var(--rl-lp-strip-h, 110px) + 12px);
}

.rl-lp-compare__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.5rem;
    margin-bottom: 1.25rem;
}

.rl-lp-compare__head h2 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0;
}

.rl-lp-compare__count {
    font-size: 0.85rem;
    color: var(--rl-dev-muted);
}

.rl-lp-compare__tools {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.rl-lp-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--rl-dev-ink-2);
    user-select: none;
}

.rl-lp-switch input { width: 1rem; height: 1rem; accent-color: var(--rl-dev-accent); margin: 0; }

.rl-lp-linkbtn {
    border: 0;
    background: transparent;
    color: var(--rl-dev-accent);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
}

.rl-lp-linkbtn[disabled] { color: var(--rl-dev-muted); cursor: default; opacity: 0.6; }

.rl-lp-table-wrap {
    overflow-x: auto;
    background: var(--rl-dev-bg);
    border: 1px solid var(--rl-dev-line);
    border-radius: 16px;
}

.rl-lp-table {
    width: 100%;
    min-width: 860px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.85rem;
    color: var(--rl-dev-ink-2);
}

.rl-lp-table th,
.rl-lp-table td {
    padding: 0.85rem 0.9rem;
    text-align: center;
    vertical-align: middle;
    border-top: 1px solid var(--rl-dev-line);
}

.rl-lp-table thead th { border-top: 0; padding: 1.25rem 0.9rem 1rem; }

.rl-lp-table th:first-child,
.rl-lp-table td:first-child {
    position: sticky;
    left: 0;
    width: 190px;
    min-width: 190px;
    text-align: left;
    background: var(--rl-dev-bg);
    font-weight: 700;
    color: var(--rl-dev-muted);
    box-shadow: 1px 0 0 var(--rl-dev-line);
    z-index: 1;
}

.rl-lp-table td:first-child i {
    width: 1.35rem;
    margin-right: 0.35rem;
    text-align: center;
    color: var(--rl-dev-accent);
}

.rl-lp-table tbody tr:nth-child(even) td { background: rgba(247, 248, 251, 0.55); }
.rl-lp-table tbody tr:nth-child(even) td:first-child { background: #FBFBFD; }

.rl-lp-table .is-dash { color: var(--rl-dev-muted); }

.rl-lp-table__cell-sub {
    display: block;
    font-size: 0.72rem;
    color: var(--rl-dev-muted);
    margin-top: 2px;
}

.rl-lp-slot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    min-width: 190px;
}

.rl-lp-slot img {
    width: 200px;
    height: 84px;
    object-fit: contain;
}

.rl-lp-slot__pn {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--rl-dev-accent);
}

.rl-lp-slot__tag {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--rl-dev-muted);
    line-height: 1.3;
    max-width: 200px;
}

.rl-lp-slot__remove {
    position: absolute;
    top: -0.6rem;
    right: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--rl-dev-line);
    background: var(--rl-dev-bg);
    color: var(--rl-dev-muted);
    font-size: 0.8rem;
    line-height: 1;
    cursor: pointer;
}

.rl-lp-slot__remove:hover { color: #B42318; border-color: #B42318; }

.rl-lp-slot--empty {
    justify-content: center;
    min-height: 130px;
    border: 1px dashed var(--rl-dev-line);
    border-radius: 12px;
    color: var(--rl-dev-muted);
    font-weight: 500;
    font-size: 0.8rem;
}

.rl-lp-slot--empty i { font-size: 1.4rem; opacity: 0.6; }

.rl-lp-table__actions a {
    display: inline-block;
    font-weight: 600;
    color: var(--rl-dev-accent);
    margin: 0 0.4rem;
}

/* floating compare pill */
.rl-lp-pill {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 44px;
    padding: 0 1.1rem 0 0.9rem;
    border: 0;
    border-radius: 999px;
    background: var(--rl-dev-ink);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(11, 15, 25, 0.25);
    cursor: pointer;
    transform: translateY(0);
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.rl-lp-pill[hidden] { display: none; }

.rl-lp-pill__n {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--rl-dev-accent-bright);
    color: #0B0F19;
    font-size: 0.75rem;
}

/* ---- statement tiles ------------------------------------------------- */
.rl-lp-tiles {
    padding: 4rem 0;
    background: var(--rl-dev-ink);
    color: #F4F5F8;
}

.rl-lp-tiles__head {
    max-width: 640px;
    margin-bottom: 2rem;
}

.rl-lp-tiles__head h2 {
    color: #F4F5F8;
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0 0 0.5rem;
    text-wrap: balance;
}

.rl-lp-tiles__head p { color: rgba(244, 245, 248, 0.7); margin: 0; }

.rl-lp-tiles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.rl-lp-tile {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.6rem 1.5rem 1.5rem;
    border-radius: 18px;
    background: #11162A;
    border: 1px solid rgba(244, 245, 248, 0.08);
}

.rl-lp-tile__kicker {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rl-dev-accent-bright);
}

.rl-lp-tile h3 {
    color: #F4F5F8;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 0;
    text-wrap: balance;
}

.rl-lp-tile p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(244, 245, 248, 0.72);
}

.rl-lp-tile small {
    margin-top: auto;
    padding-top: 0.5rem;
    font-size: 0.72rem;
    color: rgba(244, 245, 248, 0.5);
}

.rl-lp-tile small a {
    color: var(--rl-dev-accent-bright);
    font-weight: 600;
    font-size: 0.85rem;
}

@media (max-width: 991.98px) { .rl-lp-tiles__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 575.98px) { .rl-lp-tiles__grid { grid-template-columns: 1fr; } }

/* ---- dark theme --------------------------------------------------------- */
html[data-theme="dark"] .rl-lp { background: #0D1220; color: #F4F5F8; }
html[data-theme="dark"] .rl-lp h1,
html[data-theme="dark"] .rl-lp h2,
html[data-theme="dark"] .rl-lp h3,
html[data-theme="dark"] .rl-lp-card__chip { color: #F4F5F8; }
html[data-theme="dark"] .rl-lp-card__chip { color: rgba(244, 245, 248, 0.8); }
html[data-theme="dark"] .rl-lp-hero { background: radial-gradient(120% 90% at 100% 0%, rgba(77, 168, 218, 0.16) 0%, rgba(13, 18, 32, 0) 55%), #0D1220; }
html[data-theme="dark"] .rl-lp-hero__lead,
html[data-theme="dark"] .rl-lp-family__lead,
html[data-theme="dark"] .rl-lp-fam__blurb,
html[data-theme="dark"] .rl-lp-card__tag,
html[data-theme="dark"] .rl-lp-compare__count,
html[data-theme="dark"] .rl-lp-slot__tag,
html[data-theme="dark"] .rl-lp-chips__label,
html[data-theme="dark"] .rl-lp-hero__facts { color: rgba(244, 245, 248, 0.65); }
html[data-theme="dark"] .rl-lp-hero__facts strong,
html[data-theme="dark"] .rl-lp-fam,
html[data-theme="dark"] .rl-lp-card__pn,
html[data-theme="dark"] .rl-lp-card__chip strong,
html[data-theme="dark"] .rl-lp-switch,
html[data-theme="dark"] .rl-lp-variants button[aria-pressed="true"] { color: #F4F5F8; }
html[data-theme="dark"] .rl-lp-hero__facts,
html[data-theme="dark"] .rl-lp-strip,
html[data-theme="dark"] .rl-lp-card,
html[data-theme="dark"] .rl-lp-table-wrap,
html[data-theme="dark"] .rl-lp-table th,
html[data-theme="dark"] .rl-lp-table td,
html[data-theme="dark"] .rl-lp-chip,
html[data-theme="dark"] .rl-lp-slot--empty { border-color: rgba(244, 245, 248, 0.1); }
html[data-theme="dark"] .rl-lp-strip { background: rgba(13, 18, 32, 0.9); }
html[data-theme="dark"] .rl-lp-fam:hover,
html[data-theme="dark"] .rl-lp-card__img,
html[data-theme="dark"] .rl-lp-card__chip,
html[data-theme="dark"] .rl-lp-variants,
html[data-theme="dark"] .rl-lp-compare { background: #11162A; }
html[data-theme="dark"] .rl-lp-fam[aria-selected="true"] { background: rgba(77, 168, 218, 0.16); }
html[data-theme="dark"] .rl-lp-fam[aria-selected="true"] .rl-lp-fam__name,
html[data-theme="dark"] .rl-lp-card__view,
html[data-theme="dark"] .rl-lp-family__store,
html[data-theme="dark"] .rl-lp-slot__pn,
html[data-theme="dark"] .rl-lp-linkbtn,
html[data-theme="dark"] .rl-lp-table__actions a,
html[data-theme="dark"] .rl-lp-table td:first-child i { color: var(--rl-dev-accent-bright); }
html[data-theme="dark"] .rl-lp-card,
html[data-theme="dark"] .rl-lp-table-wrap,
html[data-theme="dark"] .rl-lp-table th:first-child,
html[data-theme="dark"] .rl-lp-table td:first-child,
html[data-theme="dark"] .rl-lp-chip,
html[data-theme="dark"] .rl-lp-btn,
html[data-theme="dark"] .rl-lp-slot__remove,
html[data-theme="dark"] .rl-lp-variants button[aria-pressed="true"] { background: #151B31; color: #F4F5F8; }
html[data-theme="dark"] .rl-lp-table tbody tr:nth-child(even) td { background: rgba(255, 255, 255, 0.025); }
html[data-theme="dark"] .rl-lp-table tbody tr:nth-child(even) td:first-child { background: #171D34; }
html[data-theme="dark"] .rl-lp-table { color: rgba(244, 245, 248, 0.85); }
html[data-theme="dark"] .rl-lp-table td:first-child { color: rgba(244, 245, 248, 0.65); box-shadow: 1px 0 0 rgba(244, 245, 248, 0.1); }
html[data-theme="dark"] .rl-lp-chip[aria-pressed="true"],
html[data-theme="dark"] .rl-lp-pill { background: var(--rl-dev-accent-bright); color: #0B0F19; border-color: var(--rl-dev-accent-bright); }
html[data-theme="dark"] .rl-lp-pill__n { background: #0B0F19; color: #F4F5F8; }
html[data-theme="dark"] .rl-lp-btn[aria-pressed="true"] { background: var(--rl-dev-accent-bright); border-color: var(--rl-dev-accent-bright); color: #0B0F19; }
html[data-theme="dark"] .rl-lp-card:hover { border-color: rgba(77, 168, 218, 0.45); box-shadow: none; }
html[data-theme="dark"] .rl-lp-card.is-selected { border-color: var(--rl-dev-accent-bright); }

/* ---- motion ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .rl-lp *, .rl-lp *::before, .rl-lp *::after { transition: none !important; }
    .rl-lp-card:hover { transform: none; }
    .rl-lp-card:hover .rl-lp-card__img img { transform: none; }
    .rl-lp-fam:hover img { transform: none; }
}
