/* ==========================================================================
   thelink.id - landing
   The frame is the shared shell; this file adds only what the landing has
   of its own: the pop counter and the copy inside the card.
   ========================================================================== */

.landing__badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 20;
    padding: 8px 16px;
    border-radius: var(--r-pill);
    background: var(--surface);
    border: 1px solid var(--surface-edge);
    box-shadow: var(--sh-raised);
    color: var(--text);
    font-weight: 600;
    font-size: var(--fs-sm);
    letter-spacing: 0.5px;
    pointer-events: none;
    transition: transform 0.15s var(--ease);
}

.landing__title {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.2px;
    text-align: center;
}

.landing__lead {
    font-size: var(--fs-md);
    line-height: 1.6;
    color: var(--text-soft);
    text-align: center;
}

.landing__lead strong {
    color: var(--text);
    font-weight: 600;
    white-space: nowrap;
}

.landing__points {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 100%;
}

.landing__points li {
    position: relative;
    padding-left: 20px;
    font-size: var(--fs-sm);
    line-height: 1.5;
    color: var(--text-soft);
}

.landing__points li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.6;
}

.landing__note {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    line-height: 1.5;
    text-align: center;
}

.landing__cta { width: 100%; }

@media (max-width: 420px) {
    .landing__badge { top: 16px; left: 16px; }
}
