/* ============ Landing V3 (public, anonymous users) ============ */

.landing-page {
    --platea-bg: #0e0e0e;
    --platea-primary: #ba9eff;
    --platea-primary-dim: #8455ef;
    --platea-secondary: #f8a010;
    --platea-secondary-dim: #e79400;
    --platea-text: #f7f2ff;
    --platea-muted: rgba(247, 242, 255, 0.68);
    --platea-soft: rgba(247, 242, 255, 0.44);
    --platea-font-editorial: "Playfair Display", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    background: var(--platea-bg);
    color: var(--platea-text);
}

.lp3-hero {
    padding: 4rem 0 3rem;
    overflow: hidden;
    position: relative;
    background: radial-gradient(1000px 500px at 50% 0%, rgba(132, 85, 239, 0.18), transparent 70%);
}

.lp3-hero-text {
    text-align: center;
    padding: 0 4rem 2rem;
}

.lp3-supertitle {
    font-size: .8rem;
    color: var(--platea-secondary);
    letter-spacing: .35em;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.lp3-supertitle::before,
.lp3-supertitle::after {
    content: "";
    width: 3rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(248, 160, 16, 0.5), transparent);
}

.lp3-headline {
    font-family: var(--platea-font-editorial);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: .92;
    letter-spacing: -0.025em;
    margin: 0 0 1.5rem;
    font-weight: 900;
}

.lp3-headline em {
    font-style: italic;
    background: linear-gradient(135deg, var(--platea-primary) 0%, var(--platea-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.lp3-deck {
    font-size: 1.1rem;
    color: var(--platea-muted);
    line-height: 1.6;
    max-width: 38rem;
    margin: 0 auto 2rem;
}

.lp3-actions {
    display: flex;
    gap: .8rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Larger CTA pill for landing hero */
.landing-page .btn-cta.btn-lg {
    min-height: 3rem;
    padding: 0 2rem;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
}

/* Ghost pill — pairs with .btn-cta on the landing */
.btn-ghost-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 1.5rem;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-ghost-pill:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost-pill.btn-lg {
    min-height: 3rem;
    padding: 0 2rem;
    font-size: 1rem;
}

.lp3-marquee {
    margin: 3rem clamp(6rem, 14vw, 220px) 0;
    padding: 1rem 3rem;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.lp3-marquee-track {
    display: flex;
    gap: 1.25rem;
    animation: lp3-marquee 40s linear infinite;
    width: max-content;
}

@keyframes lp3-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.lp3-marquee:hover .lp3-marquee-track {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .lp3-marquee-track {
        animation: none;
    }
}

.lp3-marquee-card {
    flex: 0 0 220px;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    text-decoration: none;
    color: var(--platea-text);
    display: block;
}

.lp3-marquee-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.7) 100%);
}

.lp3-marquee-card .name {
    position: absolute;
    bottom: .8rem;
    left: .8rem;
    right: .8rem;
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    z-index: 1;
}

.lp3-how {
    padding: 5rem 4rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp3-how-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 2.5rem;
    gap: 2rem;
}

.lp3-how-head h2 {
    font-family: var(--platea-font-editorial);
    font-size: clamp(2rem, 4vw, 3rem);
    font-style: italic;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

.lp3-how-head p {
    margin: 0;
    max-width: 28rem;
    color: var(--platea-muted);
}

.lp3-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.lp3-step {
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    position: relative;
}

.lp3-step .num {
    font-family: var(--platea-font-editorial);
    font-style: italic;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    background: linear-gradient(135deg, var(--platea-primary), var(--platea-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 1rem;
}

.lp3-step h3 {
    margin: 0 0 .5rem;
    font-family: var(--platea-font-editorial);
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
}

.lp3-step p {
    margin: 0;
    color: var(--platea-muted);
    font-size: .92rem;
    line-height: 1.55;
}

.lp3-spotlight {
    padding: 5rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
    position: relative;
}

.lp3-spotlight-deco {
    position: relative;
    width: 8rem;
    height: 8rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp3-spotlight-deco-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid;
    animation: lp3-pulse 3s ease-in-out infinite;
}

.lp3-spotlight-deco-ring--1 {
    border-color: rgba(186, 158, 255, 0.35);
}

.lp3-spotlight-deco-ring--2 {
    inset: -1.2rem;
    border-color: rgba(186, 158, 255, 0.15);
    animation-delay: .6s;
}

@keyframes lp3-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.06); opacity: 0.6; }
}

@media (prefers-reduced-motion: reduce) {
    .lp3-spotlight-deco-ring { animation: none; }
}

.lp3-spotlight-deco-glyph {
    font-size: 2.2rem;
    color: var(--platea-primary);
    line-height: 1;
    filter: drop-shadow(0 0 18px rgba(186, 158, 255, 0.5));
}

.lp3-spotlight-body {
    max-width: 38rem;
}

.lp3-spotlight .label {
    color: var(--platea-secondary);
    font-size: .72rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 800;
    display: block;
    margin-bottom: .75rem;
}

.lp3-spotlight h2 {
    font-family: var(--platea-font-editorial);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    margin: 0 0 1.25rem;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.lp3-spotlight h2 em {
    font-style: italic;
    color: var(--platea-primary);
}

.lp3-spotlight p {
    color: var(--platea-muted);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}


@media (max-width: 768px) {
    .lp3-hero-text {
        padding: 0 1.5rem 1.5rem;
    }
    .lp3-marquee {
        margin: 2rem 1.5rem 0;
        padding: 1rem 1.5rem;
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
        mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }
    .lp3-how {
        padding: 3rem 1.5rem;
    }
    .lp3-how-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .lp3-steps {
        grid-template-columns: 1fr;
    }
    .lp3-spotlight {
        padding: 3rem 1.5rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .lp3-spotlight-deco {
        width: 5rem;
        height: 5rem;
    }
    .lp3-marquee-card {
        flex: 0 0 160px;
    }
}
