/* =============================================
   MUSEiT Landing Pages
   Shared styles for vf/vm variants
   ============================================= */

/* ===== LAYOUT ===== */
.lp-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.lp-header {
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
}

.lp-logo {
    height: auto;
    width: 180px;
    margin: 0 auto 24px;
    display: block;
    transition: filter 0.3s ease;
}

[data-theme="dark"] .lp-logo {
    filter: brightness(0) invert(1);
}

/* ===== HERO ===== */
.lp-hero {
    margin-bottom: 28px;
}

.lp-title {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.6px;
    color: var(--text);
    margin-bottom: 12px;
}

.lp-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
}

.lp-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(55, 190, 176, 0.12);
    border: 1px solid rgba(55, 190, 176, 0.24);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

[data-theme="dark"] .lp-badge {
    background: rgba(55, 190, 176, 0.08);
    border-color: rgba(55, 190, 176, 0.16);
}

.lp-badge strong {
    font-weight: 800;
}

/* ===== SECTIONS ===== */
.lp-section {
    margin-bottom: 20px;
    padding: 32px 28px;
}

.lp-section h2 {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: var(--text);
    margin-bottom: 20px;
}

.lp-section p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ===== CTA CARD ===== */
.lp-cta-card {
    padding: 28px;
    text-align: center;
}

.lp-cta-card .primary-button {
    margin-bottom: 12px;
}

/* Fix for primary button as link */
a.primary-button {
    display: block;
    text-decoration: none;
    text-align: center;
}

.lp-cta-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ===== STEPS GRID ===== */
.lp-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 520px) {
    .lp-steps {
        grid-template-columns: 1fr;
    }
}

.lp-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.lp-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--mint) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.lp-step h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.lp-step p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.lp-step-full {
    grid-column: 1 / -1;
}

/* ===== BULLET LIST ===== */
.lp-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-bullets li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.lp-tick {
    color: var(--mint);
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

/* ===== PROMPTS ===== */
.lp-prompts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.lp-prompt {
    background: rgba(55, 190, 176, 0.06);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.2s ease;
}

[data-theme="dark"] .lp-prompt {
    background: rgba(55, 190, 176, 0.04);
}

.lp-prompt:hover {
    background: rgba(55, 190, 176, 0.10);
    border-color: rgba(55, 190, 176, 0.28);
}

[data-theme="dark"] .lp-prompt:hover {
    background: rgba(55, 190, 176, 0.08);
}

.lp-prompt-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    flex: 1;
}

.lp-copy-btn {
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.lp-copy-btn:hover {
    background: var(--mint);
    transform: translateY(-1px);
}

/* ===== FAQ ===== */
.lp-faq details {
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition: all 0.2s ease;
}

[data-theme="dark"] .lp-faq details {
    background: rgba(7, 18, 20, 0.4);
}

.lp-faq summary {
    padding: 16px 18px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text);
}

.lp-faq summary:hover {
    background: rgba(55, 190, 176, 0.08);
}

.lp-faq .lp-chev {
    font-size: 20px;
    font-weight: 700;
    color: var(--mint);
    transition: transform 0.2s ease;
}

.lp-faq details[open] .lp-chev {
    transform: rotate(45deg);
}

.lp-faq .lp-answer {
    padding: 0 18px 16px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ===== FOOTER ===== */
.lp-footer {
    text-align: center;
    padding: 40px 20px 20px;
    font-size: 13px;
    color: var(--text-secondary);
}

.lp-footer p {
    margin-bottom: 8px;
}

.lp-footer a {
    color: var(--primary);
    text-decoration: none;
}

.lp-footer a:hover {
    text-decoration: underline;
}

/* ===== STICKY CTA (Mobile) ===== */
.lp-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(12px);
    display: none;
    z-index: 100;
}

[data-theme="dark"] .lp-sticky {
    background: rgba(7, 18, 20, 0.95);
}

@media (max-width: 640px) {
    .lp-sticky {
        display: block;
    }
}

.lp-sticky-wrap {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    align-items: center;
}

.lp-sticky-mini {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 700;
    display: none;
}

@media (max-width: 420px) {
    .lp-sticky-mini {
        display: block;
    }
}

.lp-sticky .primary-button {
    margin: 0;
}

/* ===== THEME TOGGLE ===== */
.lp-theme-toggle {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 20px;
}

[data-theme="dark"] .lp-theme-toggle {
    background: rgba(11, 27, 30, 0.7);
}

.lp-theme-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.1);
}

/* ===== TOAST ===== */
.lp-toast {
    position: fixed;
    left: 50%;
    bottom: 84px;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 101;
}

.lp-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-6px);
}

/* ===== VALENTINE'S TOUCHES ===== */

/* Valentine's color palette */
:root {
    --valentine-pink: #ff6b9d;
    --valentine-rose: #ff8fab;
    --valentine-blush: #ffc9d4;
}

/* Hero title with romantic gradient */
.lp-title {
    background: linear-gradient(135deg, 
        #ff6b9d 0%, 
        var(--primary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pink-accented badges for Valentine's */
.lp-badge {
    background: linear-gradient(135deg, 
        rgba(255, 107, 157, 0.12) 0%,
        rgba(55, 190, 176, 0.12) 100%
    );
    border: 1px solid rgba(255, 107, 157, 0.25);
}

[data-theme="dark"] .lp-badge {
    background: linear-gradient(135deg, 
        rgba(255, 107, 157, 0.08) 0%,
        rgba(55, 190, 176, 0.08) 100%
    );
    border-color: rgba(255, 107, 157, 0.18);
}

/* Step numbers with Valentine's gradient */
.lp-step-num {
    background: linear-gradient(135deg, 
        #ff6b9d 0%, 
        var(--primary) 50%,
        var(--mint) 100%
    );
}

/* Romantic card styling with pink glow */
.lp-valentine-glow {
    position: relative;
    border-color: rgba(255, 107, 157, 0.25);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15),
                0 4px 20px rgba(12, 97, 112, 0.1);
}

[data-theme="dark"] .lp-valentine-glow {
    border-color: rgba(255, 107, 157, 0.18);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.12),
                0 4px 20px rgba(12, 97, 112, 0.15);
}

/* CTA button with romantic gradient */
.lp-valentine-glow .primary-button {
    background: radial-gradient(120% 120% at 30% 20%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 45%),
                linear-gradient(135deg, 
                    #ff6b9d 0%, 
                    var(--primary) 40%,
                    var(--mint) 100%
                );
    box-shadow: 0 14px 34px rgba(255, 107, 157, 0.35),
                0 8px 20px rgba(12, 97, 112, 0.15);
}

.lp-valentine-glow .primary-button:hover:not(:disabled) {
    box-shadow: 0 18px 44px rgba(255, 107, 157, 0.45),
                0 10px 25px rgba(12, 97, 112, 0.2);
}

/* Optional heart accent */
.lp-heart {
    color: #ff6b9d;
    font-size: 16px;
    margin: 0 2px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .lp-title {
        font-size: 28px;
    }
    
    .lp-section {
        padding: 24px 20px;
    }
    
    .lp-container {
        padding-bottom: 90px;
    }
}
