/* ==========================================
   LunarStar Membership Page
   Free / Plus / Cosmos — experience-first
========================================== */

.membership-page {
    padding: 80px 24px 120px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero */
.mp-hero {
    text-align: center;
    margin-bottom: 72px;
}

.mp-hero-badge {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(212, 176, 82, 0.7);
    padding: 6px 16px;
    border: 1px solid rgba(212, 176, 82, 0.15);
    border-radius: 999px;
    margin-bottom: 24px;
}

.mp-hero h1 {
    font-size: 40px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 16px;
    line-height: 1.25;
}

.mp-hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.42);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tier Grid */
.mp-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.mp-tier {
    background: rgba(16, 18, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s var(--ease-standard), transform 0.4s var(--ease-standard);
    position: relative;
}

.mp-tier:hover {
    transform: translateY(-4px);
}

.mp-tier-featured {
    border-color: rgba(212, 176, 82, 0.25);
    background: rgba(20, 22, 32, 0.6);
    transform: scale(1.03);
}

.mp-tier-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.mp-tier-ribbon {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(212, 176, 82, 0.2), rgba(212, 176, 82, 0.06));
    border: 1px solid rgba(212, 176, 82, 0.2);
    color: #D4B052;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 6px 20px;
    border-radius: 0 0 12px 12px;
}

/* Tier Head */
.mp-tier-head {
    text-align: center;
    margin-bottom: 32px;
}

.mp-tier-icon {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 12px;
}

.mp-tier-featured .mp-tier-icon {
    color: #D4B052;
}

.mp-tier-head h3 {
    font-size: 22px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 6px;
}

.mp-tier-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    margin: 0;
}

/* Tier Body */
.mp-tier-body {
    flex: 1;
    margin-bottom: 32px;
}

.mp-feature-group {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mp-feature-group:last-child {
    border-bottom: none;
}

.mp-feature-group h4 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 6px;
}

.mp-feature-group p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    margin: 0;
}

/* Tier Foot */
.mp-tier-foot {
    text-align: center;
}

.mp-price {
    margin-bottom: 16px;
}

.mp-price-num {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.mp-price-unit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
}

.mp-btn-primary {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(212, 176, 82, 0.25), rgba(212, 176, 82, 0.1));
    border: 1px solid rgba(212, 176, 82, 0.3);
    color: #D4B052;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.35s var(--ease-standard), transform 0.35s var(--ease-standard);
}

.mp-btn-primary:hover {
    background: linear-gradient(135deg, rgba(212, 176, 82, 0.35), rgba(212, 176, 82, 0.15));
    transform: translateY(-2px);
}

.mp-btn-secondary {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.35s var(--ease-standard), transform 0.35s var(--ease-standard);
}

.mp-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.mp-btn-ghost {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-lg);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.45);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.35s var(--ease-standard);
}

.mp-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.04);
}

.mp-trial-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    margin: 12px 0 0;
}

/* FAQ Strip */
.mp-faq-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.mp-faq-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 8px;
}

.mp-faq-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    margin: 0;
}
