/* ========================================
   MEMBERSHIP PAGE
======================================== */

.membership-header {
    position: absolute;
}


/* ========================================
   HERO
======================================== */

.membership-hero {
    min-height: 600px;

    display: flex;
    align-items: flex-end;

    background: #000;

    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.membership-hero-content {
    width: min(1400px, 92%);
    margin: 0 auto;

    padding: 190px 0 75px;
}

.page-eyebrow {
    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 4px;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.55);
}

.membership-hero h1 {
    font-size: clamp(65px, 10vw, 150px);

    line-height: 0.78;

    letter-spacing: -5px;
    text-transform: uppercase;
}

.membership-hero h1 span {
    display: block;

    color: transparent;

    -webkit-text-stroke: 2px #fff;
}

.membership-hero-content > p:last-child {
    max-width: 620px;

    margin-top: 30px;

    font-size: 18px;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.7);
}


/* ========================================
   PRICING SECTION
======================================== */

.pricing-section {
    padding: 100px 0;

    background: #fff;
    color: #000;
}

.pricing-container {
    width: min(1400px, 92%);
    margin: 0 auto;
}


/* ========================================
   HEADING
======================================== */

.pricing-heading {
    margin-bottom: 55px;
}

.section-label {
    margin-bottom: 12px;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.pricing-heading h2 {
    font-size: clamp(50px, 7vw, 95px);

    line-height: 0.85;

    letter-spacing: -4px;
    text-transform: uppercase;
}

.pricing-heading h2 span {
    color: transparent;

    -webkit-text-stroke: 2px #000;
}


/* ========================================
   PRICING GRID
======================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 0;

    border-top: 2px solid #000;
    border-left: 2px solid #000;
}

.pricing-card {
    position: relative;

    min-height: 520px;

    padding: 35px;

    display: flex;
    flex-direction: column;

    border-right: 2px solid #000;
    border-bottom: 2px solid #000;

    background: #fff;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.pricing-card:hover {
    background: #000;
    color: #fff;
}


/* ========================================
   FEATURED PLAN
======================================== */

.pricing-card.featured {
    background: #000;
    color: #fff;
}

.featured-tag {
    position: absolute;

    top: 0;
    right: 0;

    padding: 10px 16px;

    background: #fff;
    color: #000;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}


/* ========================================
   CARD CONTENT
======================================== */

.pricing-card-top {
    position: relative;
}

.plan-number {
    display: block;

    margin-bottom: 30px;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;

    opacity: 0.35;
}

.plan-label {
    margin-bottom: 7px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;

    opacity: 0.55;
}

.pricing-card h3 {
    font-size: 38px;

    letter-spacing: -2px;
    text-transform: uppercase;
}


/* ========================================
   PRICE
======================================== */

.price {
    margin-top: 30px;

    display: flex;
    align-items: flex-start;

    line-height: 1;
}

.price .dollar {
    margin-top: 10px;

    font-size: 20px;
    font-weight: 900;
}

.price strong {
    font-size: 82px;

    letter-spacing: -5px;
}

.price .period {
    align-self: flex-end;

    margin-bottom: 10px;
    margin-left: 8px;

    font-size: 12px;
    font-weight: 900;

    text-transform: uppercase;

    opacity: 0.55;
}


/* ========================================
   DESCRIPTION
======================================== */

.plan-description {
    margin-top: 22px;

    font-size: 14px;
    line-height: 1.7;

    opacity: 0.7;
}


/* ========================================
   PLAN DETAILS
======================================== */

.plan-details {
    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid currentColor;

    opacity: 0.8;
}

.plan-details p {
    padding: 6px 0;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
}


/* ========================================
   PLAN BUTTON
======================================== */

.plan-button {
    margin-top: auto;

    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid currentColor;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.pricing-card:hover .plan-button {
    background: #fff;
    color: #000;

    border-color: #fff;
}

.pricing-card.featured .plan-button {
    background: #fff;
    color: #000;

    border-color: #fff;
}

.pricing-card.featured .plan-button:hover {
    background: transparent;
    color: #fff;
}


/* ========================================
   CTA
======================================== */

.membership-cta {
    min-height: 500px;

    padding: 90px 4%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #000;
}

.membership-cta > p {
    margin-bottom: 18px;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 4px;
}

.membership-cta h2 {
    margin-bottom: 35px;

    font-size: clamp(55px, 8vw, 110px);

    line-height: 0.83;

    letter-spacing: -4px;
}

.membership-cta h2 span {
    display: block;

    color: transparent;

    -webkit-text-stroke: 2px #fff;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .membership-hero {
        min-height: 520px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        min-height: 450px;
    }

}


@media (max-width: 600px) {

    .membership-hero-content {
        padding-bottom: 60px;
    }

    .membership-hero h1 {
        font-size: 56px;
        letter-spacing: -2px;
    }

    .pricing-section {
        padding: 75px 0;
    }

    .pricing-heading h2 {
        font-size: 50px;
        letter-spacing: -2px;
    }

    .pricing-card {
        padding: 28px;
    }

    .price strong {
        font-size: 70px;
    }

    .membership-cta {
        min-height: 450px;
    }

    .membership-cta h2 {
        font-size: 50px;
        letter-spacing: -2px;
    }

}