/* ===== SHARED LANDING PAGE STYLES ===== */
.lp-page { position: relative; min-height: 100vh; overflow: hidden; }
.lp-bg { position: fixed; inset: 0; background: var(--bg-primary) !important; z-index: -2; }

/* Floating orbs */
.lp-orb { position: fixed; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: -1; opacity: 0.4; }
.lp-orb-1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.lp-orb-2 { width: 400px; height: 400px; bottom: -50px; left: -100px; }
.lp-orb-3 { width: 300px; height: 300px; top: 40%; left: 50%; transform: translateX(-50%); }

/* Account page orbs = cyan/purple */
.lp-account .lp-orb-1 { background: rgba(0,212,255,0.12) !important; }
.lp-account .lp-orb-2 { background: rgba(168,85,247,0.1) !important; }
.lp-account .lp-orb-3 { background: rgba(0,212,255,0.06) !important; }

/* RP page orbs = gold/amber */
.lp-rp .lp-orb-1 { background: rgba(251,191,36,0.12) !important; }
.lp-rp .lp-orb-2 { background: rgba(249,115,22,0.1) !important; }
.lp-rp .lp-orb-3 { background: rgba(251,191,36,0.06) !important; }

.lp-content { max-width: 1000px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ===== HERO ===== */
.lp-hero { padding: 100px 0 60px; text-align: center; }
.lp-badge { display: inline-block; padding: 6px 16px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.lp-account .lp-badge { background: rgba(0,212,255,0.1) !important; color: #00d4ff !important; border: 1px solid rgba(0,212,255,0.2) !important; }
.lp-rp .lp-badge { background: rgba(251,191,36,0.1) !important; color: #fbbf24 !important; border: 1px solid rgba(251,191,36,0.2) !important; }

.lp-title { font-size: 3.2rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; color: #e2e8f0 !important; }
.lp-title-accent { display: block; }
.lp-account .lp-title-accent { background: linear-gradient(135deg, #00d4ff, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.lp-rp .lp-title-accent { background: linear-gradient(135deg, #fbbf24, #f97316); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.lp-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.5) !important; max-width: 600px; margin: 0 auto 36px; line-height: 1.7; }

.lp-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.lp-btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 12px; font-size: 1rem; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s; }
.lp-account .lp-btn-primary { background: linear-gradient(135deg, #00d4ff, #a855f7) !important; color: #fff !important; }
.lp-account .lp-btn-primary:hover { box-shadow: 0 8px 32px rgba(0,212,255,0.3), 0 4px 16px rgba(168,85,247,0.2); transform: translateY(-2px); }
.lp-rp .lp-btn-primary { background: linear-gradient(135deg, #fbbf24, #f97316) !important; color: #1a1a2e !important; }
.lp-rp .lp-btn-primary:hover { box-shadow: 0 8px 32px rgba(251,191,36,0.3), 0 4px 16px rgba(249,115,22,0.2); transform: translateY(-2px); }

.lp-btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 12px; font-size: 1rem; font-weight: 700; text-decoration: none; cursor: pointer; transition: all 0.3s; background: transparent !important; }
.lp-account .lp-btn-secondary { color: #00d4ff !important; border: 1px solid rgba(0,212,255,0.3) !important; }
.lp-account .lp-btn-secondary:hover { border-color: rgba(0,212,255,0.6) !important; background: rgba(0,212,255,0.05) !important; }
.lp-rp .lp-btn-secondary { color: #fbbf24 !important; border: 1px solid rgba(251,191,36,0.3) !important; }
.lp-rp .lp-btn-secondary:hover { border-color: rgba(251,191,36,0.6) !important; background: rgba(251,191,36,0.05) !important; }

/* ===== SECTION TITLES ===== */
.lp-section { padding: 48px 0; }
.lp-section-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-align: center; margin-bottom: 12px; }
.lp-account .lp-section-label { color: #00d4ff !important; }
.lp-rp .lp-section-label { color: #fbbf24 !important; }
.lp-section-title { font-size: 2rem; font-weight: 800; text-align: center; color: #e2e8f0 !important; margin-bottom: 40px; }

/* ===== FEATURE GRID ===== */
.lp-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.lp-feature { background: rgba(255,255,255,0.02) !important; border: 1px solid rgba(255,255,255,0.06) !important; border-radius: 16px; padding: 32px 24px; text-align: center; position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.lp-feature:hover { transform: translateY(-4px); }
.lp-account .lp-feature:hover { border-color: rgba(0,212,255,0.2) !important; }
.lp-rp .lp-feature:hover { border-color: rgba(251,191,36,0.2) !important; }

.lp-feature-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.lp-account .lp-feature-icon { background: rgba(0,212,255,0.1) !important; color: #00d4ff !important; }
.lp-rp .lp-feature-icon { background: rgba(251,191,36,0.1) !important; color: #fbbf24 !important; }
.lp-feature-title { font-size: 1.05rem; font-weight: 700; color: #e2e8f0 !important; margin-bottom: 8px; }
.lp-feature-desc { font-size: 0.85rem; color: rgba(255,255,255,0.4) !important; line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.lp-steps::before { content: ''; position: absolute; top: 32px; left: 15%; right: 15%; height: 2px; z-index: 0; }
.lp-account .lp-steps::before { background: linear-gradient(90deg, transparent, rgba(0,212,255,0.2), rgba(168,85,247,0.2), transparent) !important; }
.lp-rp .lp-steps::before { background: linear-gradient(90deg, transparent, rgba(251,191,36,0.2), rgba(249,115,22,0.2), transparent) !important; }

.lp-step { text-align: center; position: relative; z-index: 1; }
.lp-step-num { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 900; margin: 0 auto 16px; }
.lp-account .lp-step-num { background: rgba(0,212,255,0.1) !important; color: #00d4ff !important; border: 2px solid rgba(0,212,255,0.2) !important; }
.lp-rp .lp-step-num { background: rgba(251,191,36,0.1) !important; color: #fbbf24 !important; border: 2px solid rgba(251,191,36,0.2) !important; }
.lp-step-title { font-size: 1rem; font-weight: 700; color: #e2e8f0 !important; margin-bottom: 6px; }
.lp-step-desc { font-size: 0.85rem; color: rgba(255,255,255,0.4) !important; line-height: 1.5; }

/* ===== FAQ ===== */
.lp-faq-list { max-width: 700px; margin: 0 auto; }
.lp-faq { background: rgba(255,255,255,0.02) !important; border: 1px solid rgba(255,255,255,0.06) !important; border-radius: 12px; padding: 20px 24px; margin-bottom: 12px; }
.lp-faq-q { font-size: 0.95rem; font-weight: 700; color: #e2e8f0 !important; margin-bottom: 8px; }
.lp-faq-a { font-size: 0.85rem; color: rgba(255,255,255,0.45) !important; line-height: 1.6; }

/* ===== CTA BANNER ===== */
.lp-cta { text-align: center; padding: 60px 0 80px; }
.lp-cta-card { background: rgba(255,255,255,0.02) !important; border: 1px solid rgba(255,255,255,0.06) !important; border-radius: 20px; padding: 48px 32px; position: relative; overflow: hidden; }
.lp-cta-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.lp-account .lp-cta-card::before { background: linear-gradient(90deg, transparent, #00d4ff, #a855f7, transparent) !important; }
.lp-rp .lp-cta-card::before { background: linear-gradient(90deg, transparent, #fbbf24, #f97316, transparent) !important; }
.lp-cta-title { font-size: 1.8rem; font-weight: 800; color: #e2e8f0 !important; margin-bottom: 12px; }
.lp-cta-text { font-size: 0.95rem; color: rgba(255,255,255,0.4) !important; margin-bottom: 28px; }

/* ===== COUPON STRIP ===== */
.lp-coupon { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; border-radius: 10px; margin-bottom: 32px; font-size: 0.85rem; }
.lp-account .lp-coupon { background: rgba(0,212,255,0.08) !important; border: 1px dashed rgba(0,212,255,0.3) !important; color: rgba(255,255,255,0.6) !important; }
.lp-rp .lp-coupon { background: rgba(251,191,36,0.08) !important; border: 1px dashed rgba(251,191,36,0.3) !important; color: rgba(255,255,255,0.6) !important; }
.lp-coupon-code { font-weight: 800; letter-spacing: 1px; }
.lp-account .lp-coupon-code { color: #00d4ff !important; }
.lp-rp .lp-coupon-code { color: #fbbf24 !important; }

/* ===== LIGHT MODE ===== */
html[data-theme="light"] .lp-title { color: #1a1a2e !important; }
html[data-theme="light"] .lp-subtitle { color: rgba(0,0,0,0.45) !important; }
html[data-theme="light"] .lp-section-title { color: #1a1a2e !important; }
html[data-theme="light"] .lp-feature { background: rgba(255,255,255,0.8) !important; border-color: rgba(0,0,0,0.06) !important; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
html[data-theme="light"] .lp-feature-title { color: #1a1a2e !important; }
html[data-theme="light"] .lp-feature-desc { color: rgba(0,0,0,0.45) !important; }
html[data-theme="light"] .lp-account .lp-feature-icon { background: rgba(10,126,164,0.08) !important; color: #0a7ea4 !important; }
html[data-theme="light"] .lp-rp .lp-feature-icon { background: rgba(217,119,6,0.08) !important; color: #d97706 !important; }
html[data-theme="light"] .lp-account .lp-feature:hover { border-color: rgba(10,126,164,0.15) !important; }
html[data-theme="light"] .lp-rp .lp-feature:hover { border-color: rgba(217,119,6,0.15) !important; }
html[data-theme="light"] .lp-step-title { color: #1a1a2e !important; }
html[data-theme="light"] .lp-step-desc { color: rgba(0,0,0,0.4) !important; }
html[data-theme="light"] .lp-account .lp-step-num { background: rgba(10,126,164,0.08) !important; color: #0a7ea4 !important; border-color: rgba(10,126,164,0.15) !important; }
html[data-theme="light"] .lp-rp .lp-step-num { background: rgba(217,119,6,0.08) !important; color: #d97706 !important; border-color: rgba(217,119,6,0.15) !important; }
html[data-theme="light"] .lp-account .lp-steps::before { background: linear-gradient(90deg, transparent, rgba(10,126,164,0.12), transparent) !important; }
html[data-theme="light"] .lp-rp .lp-steps::before { background: linear-gradient(90deg, transparent, rgba(217,119,6,0.12), transparent) !important; }
html[data-theme="light"] .lp-faq { background: rgba(255,255,255,0.8) !important; border-color: rgba(0,0,0,0.06) !important; }
html[data-theme="light"] .lp-faq-q { color: #1a1a2e !important; }
html[data-theme="light"] .lp-faq-a { color: rgba(0,0,0,0.45) !important; }
html[data-theme="light"] .lp-cta-card { background: rgba(255,255,255,0.8) !important; border-color: rgba(0,0,0,0.06) !important; }
html[data-theme="light"] .lp-cta-title { color: #1a1a2e !important; }
html[data-theme="light"] .lp-cta-text { color: rgba(0,0,0,0.4) !important; }
html[data-theme="light"] .lp-account .lp-badge { background: rgba(10,126,164,0.08) !important; color: #0a7ea4 !important; border-color: rgba(10,126,164,0.15) !important; }
html[data-theme="light"] .lp-rp .lp-badge { background: rgba(217,119,6,0.08) !important; color: #d97706 !important; border-color: rgba(217,119,6,0.15) !important; }
html[data-theme="light"] .lp-account .lp-section-label { color: #0a7ea4 !important; }
html[data-theme="light"] .lp-rp .lp-section-label { color: #d97706 !important; }
html[data-theme="light"] .lp-account .lp-btn-primary { background: linear-gradient(135deg, #0a7ea4, #7c3aed) !important; }
html[data-theme="light"] .lp-rp .lp-btn-primary { background: linear-gradient(135deg, #d97706, #ea580c) !important; }
html[data-theme="light"] .lp-account .lp-btn-secondary { color: #0a7ea4 !important; border-color: rgba(10,126,164,0.25) !important; }
html[data-theme="light"] .lp-rp .lp-btn-secondary { color: #d97706 !important; border-color: rgba(217,119,6,0.25) !important; }
html[data-theme="light"] .lp-account .lp-title-accent { background: linear-gradient(135deg, #0a7ea4, #7c3aed); -webkit-background-clip: text; background-clip: text; }
html[data-theme="light"] .lp-rp .lp-title-accent { background: linear-gradient(135deg, #d97706, #ea580c); -webkit-background-clip: text; background-clip: text; }
html[data-theme="light"] .lp-coupon { color: rgba(0,0,0,0.5) !important; }
html[data-theme="light"] .lp-account .lp-coupon { background: rgba(10,126,164,0.05) !important; border-color: rgba(10,126,164,0.2) !important; }
html[data-theme="light"] .lp-rp .lp-coupon { background: rgba(217,119,6,0.05) !important; border-color: rgba(217,119,6,0.2) !important; }
html[data-theme="light"] .lp-account .lp-coupon-code { color: #0a7ea4 !important; }
html[data-theme="light"] .lp-rp .lp-coupon-code { color: #d97706 !important; }
html[data-theme="light"] .lp-orb { opacity: 0.15; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .lp-title { font-size: 2.2rem; }
    .lp-features { grid-template-columns: 1fr; }
    .lp-steps { grid-template-columns: 1fr; gap: 32px; }
    .lp-steps::before { display: none; }
    .lp-hero { padding: 80px 0 40px; }
    .lp-hero-actions { flex-direction: column; align-items: center; }
    .lp-btn-primary, .lp-btn-secondary { width: 100%; justify-content: center; max-width: 300px; }
}
@media (max-width: 480px) {
    .lp-title { font-size: 1.8rem; }
    .lp-section-title { font-size: 1.5rem; }
    .lp-cta-title { font-size: 1.4rem; }
}
