/* PaidShorts landing */
:root {
    --lp-bg: #030309;
    --lp-card: #0c0c14;
    --lp-border: #1a1a24;
    --lp-text: #f5f7fa;
    --lp-muted: #8896a8;
    --lp-green: #22c55e;
    --lp-blue: #3b82f6;
    --lp-radius: 16px;
}

body.landing-short {
    background: var(--lp-bg);
    color: var(--lp-text);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.ls-page { overflow-x: hidden; }

/* Hero */
.ls-hero {
    position: relative;
    padding: 2.5rem 0 2rem;
    overflow: hidden;
    isolation: isolate;
}

.ls-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ls-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}

.ls-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    animation: ls-orb-drift 12s ease-in-out infinite;
}

.ls-hero__orb--1 {
    width: 280px;
    height: 280px;
    top: -8%;
    right: 10%;
    background: rgba(34, 197, 94, 0.35);
}

.ls-hero__orb--2 {
    width: 220px;
    height: 220px;
    bottom: 5%;
    left: 5%;
    background: rgba(59, 130, 246, 0.28);
    animation-delay: -4s;
}

.ls-hero__orb--3 {
    width: 160px;
    height: 160px;
    top: 40%;
    left: 45%;
    background: rgba(168, 85, 247, 0.22);
    animation-delay: -8s;
}

@keyframes ls-orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(12px, -18px) scale(1.05); }
    66% { transform: translate(-10px, 12px) scale(0.95); }
}

.ls-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 992px) {
    .ls-hero__inner {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 2.5rem;
        padding: 0 2rem;
    }
    .ls-hero { padding: 3.5rem 0 3rem; }
}

/* Staggered entrance */
.ls-hero__reveal {
    animation: ls-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ls-hero__reveal--delay {
    animation-delay: 0.15s;
}

@keyframes ls-fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ls-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
}

.ls-hero__pills .ls-hero__pill {
    margin-bottom: 0;
}

.ls-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--lp-green);
    padding: 0.4rem 0.85rem;
    margin-bottom: 1.1rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.08);
}

.ls-hero__title {
    font-size: clamp(2.1rem, 5.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin: 0 0 1rem;
}

.ls-hero__title-accent {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 45%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ls-hero__sub {
    font-size: 1.05rem;
    color: var(--lp-muted);
    line-height: 1.6;
    margin: 0 0 1.5rem;
    max-width: 460px;
}

.ls-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ls-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.ls-btn--primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(34, 197, 94, 0.35);
}

.ls-btn--primary:hover {
    color: #fff;
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.45);
}

.ls-btn--shine {
    position: relative;
    overflow: hidden;
}

.ls-btn--shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: ls-btn-shine 3s ease-in-out infinite;
}

@keyframes ls-btn-shine {
    0%, 100% { left: -100%; }
    50% { left: 120%; }
}

.ls-btn--ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--lp-text);
    border: 1px solid var(--lp-border);
    backdrop-filter: blur(8px);
}

.ls-btn--ghost:hover {
    color: var(--lp-text);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.ls-hero__proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-top: 1.5rem;
}

@media (min-width: 480px) {
    .ls-hero__proof {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.65rem;
    }
}

.ls-hero__stat-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.ls-hero__stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(34, 197, 94, 0.25);
    transform: translateY(-2px);
}

.ls-hero__stat-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1rem;
}

.ls-hero__stat-icon--users {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.15);
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.12);
}

.ls-hero__stat-icon--views {
    color: var(--lp-green);
    background: rgba(34, 197, 94, 0.15);
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.12);
}

.ls-hero__stat-icon--paid {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.15);
    box-shadow: 0 0 16px rgba(251, 191, 36, 0.12);
}

.ls-hero__stat-body {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    min-width: 0;
}

.ls-hero__stat-body strong {
    color: var(--lp-text);
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

.ls-hero__stat-body span {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lp-muted);
    line-height: 1.2;
}

@media (max-width: 479.98px) {
    .ls-hero__stat-card {
        padding: 0.5rem 0.25rem;
    }

    .ls-hero__stat-body strong {
        font-size: clamp(0.68rem, 3vw, 0.78rem);
    }
}

/* Hero image */
.ls-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 220px;
}

.ls-hero__img-scene {
    position: relative;
    width: min(72vw, 260px);
    perspective: 1200px;
    animation: ls-hero-float 5s ease-in-out infinite;
}

@media (min-width: 992px) {
    .ls-hero__img-scene { width: min(100%, 280px); }
}

@keyframes ls-hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.ls-hero__glow {
    position: absolute;
    inset: -25%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(34, 197, 94, 0.4) 0%,
        rgba(59, 130, 246, 0.2) 35%,
        rgba(168, 85, 247, 0.08) 55%,
        transparent 72%
    );
    animation: ls-glow-pulse 4s ease-in-out infinite;
    z-index: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ls-hero__img-scene:hover .ls-hero__glow {
    opacity: 1;
    transform: scale(1.12);
}

@keyframes ls-glow-pulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.06); }
}

.ls-hero__img-wrap {
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    transform: rotateY(-8deg) rotateX(5deg);
    transition:
        transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        filter 0.45s ease;
    border-radius: 22px;
    padding: 3px;
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.55), rgba(59, 130, 246, 0.35), rgba(168, 85, 247, 0.25));
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(34, 197, 94, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ls-hero__img-scene:hover .ls-hero__img-wrap {
    transform: rotateY(16deg) rotateX(-8deg) scale(1.04);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.6),
        0 0 56px rgba(34, 197, 94, 0.22),
        0 0 32px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ls-hero__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 19px;
    background: #030309;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: filter 0.45s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35)) saturate(1.05) contrast(1.02);
}

.ls-hero__img-scene:hover .ls-hero__img {
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45)) saturate(1.12) contrast(1.05) brightness(1.04);
}

@media (prefers-reduced-motion: reduce) {
    .ls-hero__reveal,
    .ls-hero__orb,
    .ls-hero__img-scene,
    .ls-hero__glow,
    .ls-btn--shine::after {
        animation: none !important;
    }

    .ls-hero__img-wrap {
        transform: none;
        transition: none;
    }

    .ls-hero__img-scene:hover .ls-hero__img-wrap {
        transform: none;
    }
}

/* Hero — mobile */
@media (max-width: 767.98px) {
    .ls-hero {
        padding-bottom: 0.85rem;
    }

    .ls-hero__bg .ls-hero__orb--1 {
        width: 180px;
        height: 180px;
        top: -4%;
        right: -8%;
        opacity: 0.32;
    }

    .ls-hero__bg .ls-hero__orb--2,
    .ls-hero__bg .ls-hero__orb--3 {
        opacity: 0.22;
    }

    .ls-hero__inner {
        gap: 0;
        padding-inline: 0.85rem;
    }

    .ls-hero__visual {
        display: none;
    }

    .ls-hero__reveal {
        animation: ls-fade-up-mobile 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    @keyframes ls-fade-up-mobile {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .ls-hero__copy {
        text-align: center;
    }

    .ls-hero__pills {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.35rem;
        margin-bottom: 0.6rem;
        padding: 0;
        overflow: visible;
    }

    .ls-hero__pill {
        flex: 0 1 auto;
        white-space: normal;
        text-align: center;
        font-size: 0.64rem;
        padding: 0.28rem 0.62rem;
        margin-bottom: 0;
        line-height: 1.25;
    }

    .ls-hero__title {
        font-size: clamp(1.72rem, 8.2vw, 2.15rem);
        line-height: 1.06;
        margin-bottom: 0.5rem;
        letter-spacing: -0.035em;
    }

    .ls-hero__sub {
        font-size: 0.88rem;
        line-height: 1.5;
        margin: 0 auto 0.85rem;
        max-width: 20rem;
        color: #9aa8ba;
    }

    .ls-hero__actions {
        flex-direction: column;
        gap: 0.35rem;
        max-width: 100%;
        margin-inline: auto;
    }

    .ls-hero__actions .ls-btn {
        width: 100%;
        justify-content: center;
        padding: 0.72rem 1rem;
        font-size: 0.9rem;
    }

    .ls-hero__actions .ls-btn--ghost {
        background: transparent;
        border: none;
        padding: 0.45rem 0.75rem;
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--lp-muted);
        box-shadow: none;
    }

    .ls-hero__actions .ls-btn--ghost:hover {
        background: transparent;
        color: var(--lp-green);
        transform: none;
    }

    .ls-hero__proof {
        display: flex;
        align-items: stretch;
        grid-template-columns: none;
        gap: 0;
        margin-top: 0.85rem;
        padding: 0.55rem 0.15rem;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .ls-hero__stat-card {
        flex: 1;
        min-width: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.25rem;
        padding: 0.35rem 0.2rem;
        background: transparent;
        border: none;
        border-radius: 0;
        backdrop-filter: none;
    }

    .ls-hero__stat-card:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .ls-hero__stat-card:hover {
        background: transparent;
        border-color: transparent;
        transform: none;
    }

    .ls-hero__stat-icon {
        width: 28px;
        height: 28px;
        font-size: 0.78rem;
        border-radius: 8px;
    }

    .ls-hero__stat-body {
        align-items: center;
        gap: 0.1rem;
    }

    .ls-hero__stat-body strong {
        font-size: clamp(0.7rem, 3vw, 0.8rem);
        white-space: nowrap;
    }

    .ls-hero__stat-body span {
        font-size: 0.5rem;
        letter-spacing: 0.03em;
        line-height: 1.1;
    }

    .ls-levels {
        padding-top: 1.35rem;
    }
}

/* Levels cards (under hero) */
.ls-levels {
    padding: 2rem 0 2.25rem;
    border-bottom: 1px solid var(--lp-border);
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.03) 0%, transparent 40%);
}

.ls-levels__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.ls-levels__head {
    text-align: center;
    margin-bottom: 1.5rem;
}

.ls-levels__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-green);
    margin: 0 0 0.5rem;
}

.ls-levels__title {
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 0.4rem;
    color: var(--lp-text);
}

.ls-levels__sub {
    font-size: 0.85rem;
    color: var(--lp-muted);
    margin: 0;
    max-width: 480px;
    margin-inline: auto;
}

.ls-levels__sub strong {
    color: var(--lp-green);
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
}

.ls-levels__expiry {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    max-width: 640px;
    margin: 1rem auto 0;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    font-size: 0.78rem;
    line-height: 1.45;
    text-align: left;
    color: var(--lp-muted);
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.18);
}

.ls-levels__expiry i {
    flex-shrink: 0;
    margin-top: 0.08rem;
    color: #fbbf24;
}

.ls-levels__expiry strong {
    color: #fde68a;
}

.ls-levels__empty {
    text-align: center;
    font-size: 0.85rem;
    color: var(--lp-muted);
    margin: 0;
}

.ls-levels__grid {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

/* Tier color tokens */
.ls-level-card {
    --tier: #22c55e;
    --tier-rgb: 34, 197, 94;
    --tier-soft: rgba(var(--tier-rgb), 0.12);
    --tier-border: rgba(var(--tier-rgb), 0.35);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(var(--tier-rgb), 0.14) 0%, rgba(12, 12, 20, 0.95) 45%, rgba(3, 3, 9, 0.98) 100%);
    border: 1px solid var(--tier-border);
    border-radius: 16px;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}

.ls-level-card--t0  { --tier: #94a3b8; --tier-rgb: 148, 163, 184; }
.ls-level-card--t1  { --tier: #4ade80; --tier-rgb: 74, 222, 128; }
.ls-level-card--t2  { --tier: #2dd4bf; --tier-rgb: 45, 212, 191; }
.ls-level-card--t3  { --tier: #38bdf8; --tier-rgb: 56, 189, 248; }
.ls-level-card--t4  { --tier: #818cf8; --tier-rgb: 129, 140, 248; }
.ls-level-card--t5  { --tier: #a78bfa; --tier-rgb: 167, 139, 250; }
.ls-level-card--t6  { --tier: #c084fc; --tier-rgb: 192, 132, 252; }
.ls-level-card--t7  { --tier: #f472b6; --tier-rgb: 244, 114, 182; }
.ls-level-card--t8  { --tier: #fb923c; --tier-rgb: 251, 146, 60; }
.ls-level-card--t9  { --tier: #fbbf24; --tier-rgb: 251, 191, 36; }
.ls-level-card--t10 { --tier: #fde047; --tier-rgb: 253, 224, 71; }

.ls-level-card__bar {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--tier), transparent);
    opacity: 0.9;
}

.ls-level-card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.08) 0%, transparent 42%, transparent 100%);
    pointer-events: none;
    opacity: 0.6;
}

.ls-level-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--tier);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.45),
        0 0 32px rgba(var(--tier-rgb), 0.18);
}

.ls-level-card--top {
    border-width: 2px;
    animation: ls-level-top-glow 3s ease-in-out infinite;
}

@keyframes ls-level-top-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(253, 224, 71, 0.15); }
    50% { box-shadow: 0 0 36px rgba(253, 224, 71, 0.28); }
}

.ls-level-card__header {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 0.85rem 0;
}

.ls-level-card__emoji {
    font-size: 1.65rem;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.ls-level-card__head-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
    min-width: 0;
}

.ls-level-card__tier {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tier);
}

.ls-level-card__badge {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--lp-text);
}

.ls-level-card__tag {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.35);
}

.ls-level-card__name {
    font-size: 0.88rem;
    font-weight: 600;
    margin: 0;
    padding: 0.35rem 0.85rem 0.65rem;
    color: var(--lp-muted);
    line-height: 1.2;
}

.ls-level-card__stats {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0 0.85rem;
    margin-bottom: 0.85rem;
    flex: 1;
}

.ls-level-card__stat {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.6rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.ls-level-card__stat-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--tier);
    background: var(--tier-soft);
}

.ls-level-card__stat-body {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    min-width: 0;
    flex: 1;
}

.ls-level-card__label {
    font-size: 0.65rem;
    color: var(--lp-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ls-level-card__val {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--lp-text);
    line-height: 1.2;
}

.ls-level-card__earn {
    margin: 0 0.85rem 0.85rem;
    padding: 0.75rem;
    border-radius: 12px;
    text-align: center;
    background: var(--tier-soft);
    border: 1px solid var(--tier-border);
    position: relative;
    overflow: hidden;
}

.ls-level-card__earn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(var(--tier-rgb), 0.15), transparent);
    pointer-events: none;
}

.ls-level-card__earn-label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--lp-muted);
    margin-bottom: 0.2rem;
}

.ls-level-card__earn-label i {
    color: var(--tier);
    font-size: 0.7rem;
}

.ls-level-card__earn-val {
    position: relative;
    display: block;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--tier);
    line-height: 1.1;
    text-shadow: 0 0 24px rgba(var(--tier-rgb), 0.35);
}

.ls-level-card__earn-val small {
    font-size: 0.55em;
    font-weight: 600;
    opacity: 0.75;
    margin-left: 0.1rem;
}

.ls-level-card__earn-per {
    position: relative;
    display: block;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--lp-muted);
}

@media (max-width: 575.98px) {
    .ls-levels { padding: 1.5rem 0 1.75rem; }
}

@media (prefers-reduced-motion: reduce) {
    .ls-level-card--top { animation: none; }
    .ls-level-card:hover { transform: none; }
}


/* How it works, compact pipeline */
.ls-hiw {
    padding: 1.75rem 0;
    background: rgba(12, 12, 20, 0.5);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.ls-hiw__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.ls-hiw__title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    color: var(--lp-text);
}

.ls-hiw__track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

.ls-hiw__arrow {
    display: none;
}

.ls-hiw__step {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.ls-hiw__step:hover {
    background: rgba(34, 197, 94, 0.06);
    border-color: rgba(34, 197, 94, 0.2);
}

.ls-hiw__num {
    flex-shrink: 0;
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.15);
    color: var(--lp-green);
    font-weight: 800;
    font-size: 0.68rem;
    border-radius: 8px;
}

.ls-hiw__copy {
    min-width: 0;
    text-align: left;
}

.ls-hiw__step h3 {
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: var(--lp-text);
}

.ls-hiw__step p {
    font-size: 0.72rem;
    color: var(--lp-muted);
    margin: 0.1rem 0 0;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .ls-hiw__track {
        display: flex;
        align-items: stretch;
        gap: 0.35rem;
    }

    .ls-hiw__step {
        flex: 1;
        padding: 0.7rem 0.85rem;
    }

    .ls-hiw__arrow {
        display: flex;
        align-items: center;
        color: rgba(34, 197, 94, 0.35);
        font-size: 0.75rem;
        flex-shrink: 0;
        padding: 0 0.1rem;
    }
}

@media (min-width: 992px) {
    .ls-hiw { padding: 2rem 0; }
    .ls-hiw__title { margin-bottom: 1.15rem; }
}

/* Features */
.ls-features {
    padding: 3rem 0;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.ls-features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .ls-features__grid { grid-template-columns: repeat(3, 1fr); }
}

.ls-feature {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 1.5rem;
}

.ls-feature i {
    font-size: 1.5rem;
    color: var(--lp-green);
    margin-bottom: 0.75rem;
    display: block;
}

.ls-feature h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.ls-feature p {
    font-size: 0.85rem;
    color: var(--lp-muted);
    margin: 0;
    line-height: 1.5;
}

/* CTA */
.ls-cta {
    padding: 3rem 1.25rem;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(34, 197, 94, 0.08));
}

.ls-cta h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 0.75rem;
}

.ls-cta p {
    color: var(--lp-muted);
    margin: 0 0 1.5rem;
}

/* Footer */
.ls-footer {
    padding: 2rem 1.25rem;
    border-top: 1px solid var(--lp-border);
    text-align: center;
}

.ls-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ls-footer__links a {
    color: var(--lp-muted);
    text-decoration: none;
    font-size: 0.85rem;
}

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

.ls-footer__copy {
    font-size: 0.75rem;
    color: var(--lp-muted);
    margin: 0;
}
