/* Promote / PTC landing — matches landing-short dark theme */

.promote-page {
    --pm-gold: #fbbf24;
    --pm-cyan: #22d3ee;
}

body.promote-page:has(.lp-nav-shell) .pm-page {
    padding-top: calc(var(--lp-nav-h) + var(--lp-ticker-h) + 0.65rem);
}

@media (max-width: 767.98px) {
    body.promote-page:has(.lp-nav-shell) .pm-page {
        padding-top: calc(var(--lp-nav-h) + var(--lp-ticker-h) + 0.35rem);
    }
}

.pm-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem 2rem;
}

/* Minimal nav row (logo + CTA only) */
.pm-nav .lp-nav__container {
    justify-content: space-between;
}

.pm-nav .lp-nav-actions {
    margin-left: auto;
}

/* Hero */
.pm-hero {
    position: relative;
    text-align: center;
    padding: 0.5rem 0 1.25rem;
    margin-bottom: 0.5rem;
}

.pm-hero__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.pm-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--lp-green);
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.22);
}

.pm-hero__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.65rem, 5.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.pm-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;
}

.pm-hero__sub {
    margin: 0 auto 0.85rem;
    max-width: 32rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--lp-muted);
}

.pm-hero__stats {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 28rem;
    margin: 0 auto;
    padding: 0.55rem 0.2rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.pm-hero__stat {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.35rem 0.25rem;
    text-align: center;
}

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

.pm-hero__stat strong {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: clamp(0.78rem, 3vw, 0.9rem);
    font-weight: 700;
    color: var(--lp-text);
    white-space: nowrap;
}

.pm-hero__stat span {
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--lp-muted);
}

/* Ads section */
.pm-ads__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
}

.pm-ads__title {
    margin: 0;
    font-size: clamp(1.05rem, 3vw, 1.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pm-ads__live {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--lp-green);
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.22);
}

.pm-ads__live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lp-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    animation: pm-live-pulse 1.6s ease-in-out infinite;
}

@keyframes pm-live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

.pm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 0.75rem;
}

/* Ad card */
.pm-ad {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.95rem 0.9rem 0.9rem;
    border-radius: 14px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.045) 0%, rgba(12, 12, 20, 0.92) 42%, rgba(3, 3, 9, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pm-ad:hover {
    border-color: rgba(34, 197, 94, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.pm-ad--hot {
    border-color: rgba(251, 191, 36, 0.28);
    background: linear-gradient(165deg, rgba(251, 191, 36, 0.08) 0%, rgba(12, 12, 20, 0.92) 38%, rgba(3, 3, 9, 0.98) 100%);
}

.pm-ad__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.65rem;
}

.pm-ad__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: 1.05rem;
    border: 1px solid transparent;
}

.pm-ad__icon--gold {
    color: var(--pm-gold);
    background: rgba(251, 191, 36, 0.12);
    border-color: rgba(251, 191, 36, 0.22);
}

.pm-ad__icon--green {
    color: var(--lp-green);
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.2);
}

.pm-ad__icon--blue {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.pm-ad__icon--purple {
    color: #a78bfa;
    background: rgba(167, 139, 250, 0.12);
    border-color: rgba(167, 139, 250, 0.2);
}

.pm-ad__icon--cyan {
    color: var(--pm-cyan);
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.18);
}

.pm-ad__payout {
    text-align: right;
    min-width: 0;
}

.pm-ad__payout-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lp-muted);
    margin-bottom: 0.1rem;
}

.pm-ad__payout-value {
    display: block;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: clamp(1.15rem, 4vw, 1.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--lp-green);
    line-height: 1;
}

.pm-ad--hot .pm-ad__payout-value {
    color: var(--pm-gold);
}

.pm-ad__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--lp-muted);
}

.pm-ad__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.pm-ad__desc {
    margin: 0;
    flex: 1;
    font-size: 0.84rem;
    line-height: 1.45;
    color: #9aa8ba;
}

.pm-ad__cta {
    width: 100%;
    margin-top: auto;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.72rem 0.85rem;
    min-height: auto;
}

.pm-ad__cta-amount {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.pm-ad__cta-action {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pm-ad__cta-sub {
    font-size: 0.62rem;
    font-weight: 600;
    opacity: 0.85;
}

/* Bottom CTA */
.pm-cta {
    margin-top: 1.75rem;
    text-align: center;
    padding: 1.5rem 1.15rem;
    border-radius: var(--lp-radius, 16px);
    border: 1px solid rgba(34, 197, 94, 0.18);
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.08) 0%, rgba(12, 12, 20, 0.95) 50%, rgba(3, 3, 9, 0.98) 100%);
}

.pm-cta__eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--pm-gold);
}

.pm-cta h2 {
    margin: 0 0 0.45rem;
    font-size: clamp(1.2rem, 3.5vw, 1.55rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.pm-cta p {
    margin: 0 auto 1rem;
    max-width: 28rem;
    font-size: 0.88rem;
    color: var(--lp-muted);
    line-height: 1.55;
}

.pm-cta .ls-btn {
    min-width: min(100%, 320px);
    justify-content: center;
}

.pm-cta__fine {
    margin: 0.85rem 0 0;
    font-size: 0.82rem;
    color: var(--lp-muted);
}

.pm-cta__fine a {
    color: var(--lp-green);
    font-weight: 700;
    text-decoration: none;
}

.pm-cta__fine a:hover {
    text-decoration: underline;
}

/* Sticky bar */
.promote-page.promote-has-sticky {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
}

.pm-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    padding: 0.55rem max(0.85rem, env(safe-area-inset-right, 0px)) calc(0.55rem + env(safe-area-inset-bottom, 0px)) max(0.85rem, env(safe-area-inset-left, 0px));
    background: rgba(3, 3, 9, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}

.pm-sticky__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.pm-sticky__text {
    min-width: 0;
}

.pm-sticky__text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.2;
}

.pm-sticky__text span {
    display: block;
    font-size: 0.72rem;
    color: var(--lp-muted);
}

.pm-sticky .lp-btn {
    flex-shrink: 0;
    padding: 0.62rem 1rem;
    font-size: 0.82rem;
}

@media (max-width: 767.98px) {
    .pm-page {
        padding-inline: 0.85rem;
    }

    .pm-grid {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .pm-ad {
        padding: 0.85rem 0.8rem 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pm-ads__live-dot {
        animation: none;
    }

    .pm-ad:hover {
        transform: none;
    }
}
