/* =========================================================
   YOVIK PRICING PAGE
   Dark • Green • Gold • High Contrast • Interactive
========================================================= */

/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0, 255, 100, 0.08),
            transparent 35%
        ),
        #050505;

    color: #ffffff;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 24px;

    font-size: clamp(36px, 6vw, 64px);
    line-height: 1;
    letter-spacing: -2px;

    background: linear-gradient(
        90deg,
        #ffffff,
        #d8ff9a,
        #ffd76a,
        #ffffff
    );

    background-size: 250% auto;

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    animation: yovikTitleShimmer 6s linear infinite;
}

.section-heading p {
    max-width: 680px;
    margin: 0 auto;

    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
}


/* =========================================================
   MEMBERSHIP COMPARISON
========================================================= */

.membership-comparison {
    position: relative;

    max-width: 1150px;
    margin: 0 auto;

    padding: 110px 20px 90px;
}


/* Background glow */

.membership-comparison::before {
    content: "";

    position: absolute;

    top: 80px;
    left: 50%;

    width: 500px;
    height: 300px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(0,255,100,0.10),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   COMPARISON GRID
========================================================= */

.comparison-grid {
    position: relative;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 28px;

    max-width: 1050px;
    margin: 0 auto;
}


/* =========================================================
   MEMBERSHIP CARDS
========================================================= */

.membership-card {
    position: relative;

    padding: 42px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.015)
        );

    border: 1px solid rgba(255,255,255,0.14);

    border-radius: 18px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Shimmer layer */

.membership-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.08),
            transparent
        );

    transform: skewX(-20deg);

    transition: left 0.7s ease;

    pointer-events: none;
}


.membership-card:hover::before {
    left: 140%;
}


.membership-card:hover {
    transform: translateY(-6px);

    border-color: rgba(150,255,90,0.55);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.45),
        0 0 35px rgba(0,255,100,0.08);
}


/* =========================================================
   PAID MEMBER CARD
========================================================= */

.member-card {
    border: 2px solid transparent;

    background:
        linear-gradient(#080808, #080808) padding-box,
        linear-gradient(
            135deg,
            #20ff67,
            #b8ff42,
            #ffd34e,
            #20ff67
        ) border-box;

    background-size:
        100% 100%,
        250% 250%;

    animation: yovikBorderFlow 6s linear infinite;

    box-shadow:
        0 0 25px rgba(0,255,100,0.08);
}


.member-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.55),
        0 0 45px rgba(0,255,100,0.16);
}


/* =========================================================
   MEMBERSHIP LABEL
========================================================= */

.membership-label {
    display: inline-block;

    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2.5px;

    color: #c9ff6b;
}


/* Paid label */

.member-card .membership-label {
    color: #ffd85c;
}


/* =========================================================
   MEMBERSHIP TITLES
========================================================= */

.membership-card h3 {
    margin: 0 0 14px;

    font-size: clamp(27px, 4vw, 34px);
    line-height: 1.1;
}


/* =========================================================
   MEMBERSHIP DESCRIPTION
========================================================= */

.membership-description {
    margin-bottom: 30px;

    font-size: 15px;
    line-height: 1.7;

    color: rgba(255,255,255,0.72);
}


/* =========================================================
   MEMBERSHIP LIST
========================================================= */

.membership-card ul {
    margin: 0 0 34px;
    padding: 0;

    list-style: none;
}

.membership-card li {
    position: relative;

    padding: 13px 0 13px 28px;

    font-size: 15px;

    border-bottom:
        1px solid rgba(255,255,255,0.09);
}


.membership-card li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 12px;

    font-weight: 900;

    color: #39ff72;

    text-shadow:
        0 0 10px rgba(57,255,114,0.6);
}


/* =========================================================
   PRICE
========================================================= */

.member-price {
    margin: 8px 0 18px;

    font-size: clamp(42px, 6vw, 56px);
    font-weight: 900;

    line-height: 1;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #caff70,
            #ffd65c
        );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.member-price span {
    font-size: 15px;
    font-weight: 800;

    color: rgba(255,255,255,0.75);
}


/* =========================================================
   MEMBERSHIP BUTTONS
   Works with existing links/buttons
========================================================= */

.membership-card a,
.membership-card button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 24px;

    border: 1px solid rgba(185,255,80,0.6);
    border-radius: 8px;

    background:
        linear-gradient(
            90deg,
            #ff4035,
            #d7a832,
            #21ed65
        );

    background-size: 200% auto;

    color: #ffffff;

    font-weight: 900;
    text-decoration: none;

    letter-spacing: 0.5px;

    transition:
        background-position 0.4s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.membership-card a:hover,
.membership-card button:hover {
    background-position: right center;

    transform: translateY(-2px);

    box-shadow:
        0 0 25px rgba(75,255,100,0.25);
}


/* =========================================================
   YOVIK SHOP
========================================================= */

.yovik-shop {
    position: relative;

    padding: 110px 20px 130px;

    overflow: hidden;
}


/* Shop background glow */

.yovik-shop::before {
    content: "";

    position: absolute;

    top: 40px;
    left: 50%;

    width: 700px;
    height: 400px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(255,205,60,0.07),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   SHOP HEADING
========================================================= */

.yovik-shop .section-heading {
    position: relative;
    z-index: 1;

    margin-bottom: 65px;
}


.yovik-shop .section-heading h2 {
    margin-bottom: 20px;
}


/* =========================================================
   COMING SOON BADGE
========================================================= */

.pricing-badge {
    display: inline-block;

    margin-bottom: 20px;

    padding: 8px 16px;

    border: 1px solid #d9b84c;
    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            rgba(0,255,100,0.08),
            rgba(255,205,70,0.10)
        );

    color: #ffd75c;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2.5px;

    box-shadow:
        0 0 18px rgba(255,210,70,0.08);
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid {
    position: relative;
    z-index: 1;

    max-width: 1100px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    position: relative;

    overflow: hidden;

    border: 2px solid transparent;
    border-radius: 18px;

    background:
        linear-gradient(#090909, #090909) padding-box,
        linear-gradient(
            135deg,
            #20ff67,
            #ffd34e,
            #8cff65,
            #d6a92d
        ) border-box;

    background-size:
        100% 100%,
        300% 300%;

    animation:
        yovikBorderFlow 8s linear infinite;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.product-card:nth-child(2) {
    animation-delay: -2s;
}


.product-card:nth-child(3) {
    animation-delay: -4s;
}


.product-card:hover {
    transform: translateY(-8px) scale(1.01);

    box-shadow:
        0 25px 55px rgba(0,0,0,0.5),
        0 0 35px rgba(130,255,80,0.12);
}


/* =========================================================
   PRODUCT SHIMMER
========================================================= */

.product-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: -130%;

    width: 75%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.10),
            transparent
        );

    transform: skewX(-20deg);

    transition: left 0.8s ease;

    z-index: 3;

    pointer-events: none;
}


.product-card:hover::before {
    left: 150%;
}


/* =========================================================
   PRODUCT PLACEHOLDER
========================================================= */

.product-placeholder {
    position: relative;

    min-height: 230px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(100,255,80,0.09),
            transparent 60%
        ),
        #0c0c0c;

    color: #d5ff77;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 3px;

    border-bottom:
        1px solid rgba(255,255,255,0.08);
}


/* Different product accents */

.product-card:nth-child(2) .product-placeholder {
    color: #ffd45a;
}

.product-card:nth-child(3) .product-placeholder {
    color: #8dff70;
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.product-content {
    padding: 30px;
}


.product-content h3 {
    margin: 0 0 14px;

    font-size: 23px;
    line-height: 1.2;
}


.product-content p {
    margin: 0 0 25px;

    font-size: 15px;
    line-height: 1.7;

    color: rgba(255,255,255,0.72);
}


/* =========================================================
   PRODUCT STATUS
========================================================= */

.product-status {
    display: inline-block;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;

    color: #ffd45a;

    text-shadow:
        0 0 12px rgba(255,210,70,0.35);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes yovikTitleShimmer {

    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 250% center;
    }

}


@keyframes yovikBorderFlow {

    0% {
        background-position:
            0 0,
            0% 50%;
    }

    50% {
        background-position:
            0 0,
            100% 50%;
    }

    100% {
        background-position:
            0 0,
            0% 50%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .membership-comparison {
        padding: 80px 18px 70px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .membership-card {
        padding: 30px;
    }

    .yovik-shop {
        padding: 80px 18px 100px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-placeholder {
        min-height: 190px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        letter-spacing: -1px;
    }

    .membership-card {
        padding: 25px;
    }

    .product-content {
        padding: 25px;
    }

}

/* =========================================================
   YOVIK PRICING — LAYOUT FIX
   Scoped specifically to the membership section
========================================================= */

.membership-comparison .section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.membership-comparison .section-heading h2 {
    margin: 0 0 28px;

    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.membership-comparison .section-heading p {
    width: 100%;
    max-width: 680px;

    margin: 0 auto;

    font-size: 17px;
    line-height: 1.8;
    letter-spacing: normal;

    color: rgba(255,255,255,0.78);
}


/* =========================================================
   MEMBERSHIP CARDS — CLEANER SPACING
========================================================= */

.membership-comparison .comparison-grid {
    position: relative;

    max-width: 1050px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.membership-comparison .membership-card {
    min-width: 0;
}


/* =========================================================
   GREEN / GOLD CARD GLOW
========================================================= */

.membership-comparison .membership-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.5),
        0 0 30px rgba(80,255,100,0.12);
}


/* =========================================================
   PAID MEMBERSHIP — STRONGER YOVIK TREATMENT
========================================================= */

.membership-comparison .member-card {
    border: 2px solid transparent;

    background:
        linear-gradient(#080808, #080808) padding-box,
        linear-gradient(
            135deg,
            #20ff67,
            #ffd34e,
            #20ff67,
            #ffd34e
        ) border-box;

    background-size:
        100% 100%,
        300% 300%;

    animation: yovikPaidBorder 7s linear infinite;

    box-shadow:
        0 0 25px rgba(100,255,80,0.08);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .membership-comparison .section-heading {
        margin-bottom: 40px;
    }

    .membership-comparison .section-heading h2 {
        font-size: clamp(36px, 10vw, 52px);
        line-height: 1.05;
    }

    .membership-comparison .section-heading p {
        font-size: 16px;
        line-height: 1.7;
    }

    .membership-comparison .comparison-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   PAID CARD BORDER ANIMATION
========================================================= */

@keyframes yovikPaidBorder {

    0% {
        background-position:
            0 0,
            0% 50%;
    }

    50% {
        background-position:
            0 0,
            100% 50%;
    }

    100% {
        background-position:
            0 0,
            0% 50%;
    }

}

/* =========================================================
   YOVIK PRICING HERO — GREEN / GOLD
========================================================= */

.pricing-hero {
    position: relative;
    overflow: hidden;

    padding: 110px 20px 90px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(50, 255, 120, 0.10),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #020403 0%,
            #061b0d 50%,
            #020403 100%
        );
}


/* Subtle glow behind the hero */

.pricing-hero::before {
    content: "";

    position: absolute;
    width: 500px;
    height: 500px;

    top: -250px;
    left: 50%;

    transform: translateX(-50%);

    background: rgba(120, 255, 80, 0.08);

    filter: blur(100px);

    pointer-events: none;
}


/* Hero content */

.pricing-hero > * {
    position: relative;
    z-index: 1;
}


/* Main headline */

.pricing-hero h1 {
    margin: 0 auto 24px;

    max-width: 900px;

    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.95;

    font-weight: 900;
    letter-spacing: -3px;

    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #d9ffb8 45%,
        #ffd45a 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* Hero description */

.pricing-hero p {
    max-width: 700px;

    margin: 0 auto 35px;

    font-size: 18px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.82);
}


/* Price */

.pricing-hero .member-price {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;

    margin: 10px 0 8px;

    font-size: clamp(52px, 7vw, 76px);
    font-weight: 900;

    color: #ffffff;

    text-shadow:
        0 0 20px rgba(141, 255, 112, 0.25);
}


/* "/ MONTH" */

.pricing-hero .member-price span {
    font-size: 17px;
    font-weight: 800;

    color: #ffd45a;

    letter-spacing: 1px;
}


/* Launching soon text */

.pricing-hero .pricing-note {
    margin: 0 0 28px;

    font-size: 14px;

    color: #8dff70;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================================
   WAITLIST CTA
========================================================= */

.pricing-hero .waitlist-trigger {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 30px;

    border: 2px solid #ffd45a;
    border-radius: 999px;

    background: linear-gradient(
        135deg,
        #ffd45a,
        #8dff70
    );

    color: #050805;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 1.5px;

    text-decoration: none;

    box-shadow:
        0 0 20px rgba(141, 255, 112, 0.20),
        0 0 35px rgba(255, 212, 90, 0.12);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* Shimmer */

.pricing-hero .waitlist-trigger::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: linear-gradient(
        110deg,
        transparent,
        rgba(255,255,255,0.75),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.6s ease;

    pointer-events: none;
}


.pricing-hero .waitlist-trigger:hover::before {
    left: 140%;
}


.pricing-hero .waitlist-trigger:hover {
    transform: translateY(-3px);

    box-shadow:
        0 0 25px rgba(141, 255, 112, 0.40),
        0 0 50px rgba(255, 212, 90, 0.25);
}


.pricing-hero .waitlist-trigger:active {
    transform: translateY(0);
}


/* Mobile */

@media (max-width: 700px) {

    .pricing-hero {
        padding: 80px 20px 70px;
    }

    .pricing-hero h1 {
        letter-spacing: -2px;
    }

    .pricing-hero p {
        font-size: 16px;
    }

}

/* =========================================================
   PRICING PAGE FINAL POLISH
========================================================= */


/* ==========================
   HERO BODY TEXT
========================== */

.pricing-hero > p {
    max-width: 700px;
    margin: 0 auto 28px;

    font-size: 18px;
    line-height: 1.7;
    font-weight: 600;

    letter-spacing: 0;
}


/* ==========================
   YOVIK SHOP INTRO
========================== */

.yovik-shop .shop-intro {
    display: block;

    max-width: 650px;
    margin: 0 auto;

    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;

    letter-spacing: 0;
}


/* ==========================
   JOIN THE WAITLIST BUTTON
========================== */

.waitlist-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 8px;
    padding: 14px 28px;

    border: 2px solid #00c853;
    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #00c853,
        #ffd45a
    );

    color: #07120b;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;

    text-decoration: none;

    box-shadow:
        0 0 18px rgba(0, 200, 83, 0.25),
        0 0 30px rgba(255, 212, 90, 0.12);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}


/* Hover effect */

.waitlist-trigger:hover {
    transform: translateY(-3px);

    filter: brightness(1.08);

    box-shadow:
        0 0 24px rgba(0, 200, 83, 0.45),
        0 0 42px rgba(255, 212, 90, 0.25);
}


/* Click effect */

.waitlist-trigger:active {
    transform: translateY(0);
}


/* ==========================
   MOBILE
========================== */

@media (max-width: 700px) {

    .pricing-hero > p {
        max-width: 90%;
        font-size: 16px;
    }

    .yovik-shop .shop-intro {
        max-width: 90%;
        font-size: 16px;
    }

}

/* ==========================
   PRICING CTA BUTTON
========================== */

.pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 10px;
    padding: 14px 28px;

    border: 2px solid transparent;
    border-radius: 12px;

    background:
        linear-gradient(#06140b, #06140b) padding-box,
        linear-gradient(135deg, #00c853, #ffd54f) border-box;

    color: #ffffff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.2px;

    box-shadow:
        0 0 12px rgba(0, 200, 83, 0.25),
        0 0 24px rgba(255, 213, 79, 0.10);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.pricing-cta:hover {
    transform: translateY(-3px);

    background:
        linear-gradient(135deg, #00c853, #ffd54f) padding-box,
        linear-gradient(135deg, #00c853, #ffd54f) border-box;

    color: #06140b;

    box-shadow:
        0 0 18px rgba(0, 200, 83, 0.45),
        0 0 32px rgba(255, 213, 79, 0.30);
}

.pricing-cta:active {
    transform: translateY(-1px);
}

/* ==========================
   WHY YOVIK / VALUE SECTION
========================== */

.value-section {
    position: relative;
    padding: 120px 20px 130px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 25% 50%,
            rgba(32, 255, 103, 0.08),
            transparent 38%
        ),
        radial-gradient(
            circle at 80% 50%,
            rgba(255, 211, 78, 0.07),
            transparent 35%
        ),
        #050505;
}


/* Subtle horizontal glow */

.value-section::before {
    content: "";
    position: absolute;

    left: 10%;
    right: 10%;
    top: 50%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(32,255,103,0.35),
            rgba(255,211,78,0.35),
            transparent
        );

    filter: blur(1px);

    pointer-events: none;
}


/* Main container */

.value-inner {
    position: relative;
    z-index: 1;

    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;

    align-items: center;
}


/* Left side */

.value-copy {
    max-width: 620px;
}

.value-copy h2 {
    margin: 22px 0 28px;

    font-size: clamp(46px, 6vw, 76px);
    line-height: 0.95;
    letter-spacing: -3px;
    font-weight: 900;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #d9ffb8 48%,
            #ffd45a 100%
        );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.value-intro {
    max-width: 560px;

    margin: 0;

    font-size: 18px;
    line-height: 1.75;

    color: rgba(255,255,255,0.78);
}


/* Right highlight card */

.value-highlight {
    position: relative;

    padding: 50px 42px;

    border: 2px solid transparent;
    border-radius: 22px;

    background:
        linear-gradient(#090909, #090909) padding-box,
        linear-gradient(
            135deg,
            #20ff67,
            #ffd34e,
            #20ff67,
            #ffd34e
        ) border-box;

    background-size:
        100% 100%,
        300% 300%;

    animation: yovikBorderFlow 8s linear infinite;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.45),
        0 0 35px rgba(32,255,103,0.08);
}


/* Card glow */

.value-highlight::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -110px;
    right: -80px;

    background:
        rgba(32,255,103,0.10);

    filter: blur(80px);

    pointer-events: none;
}


/* Price */

.value-price {
    position: relative;
    z-index: 1;

    font-size: clamp(64px, 8vw, 100px);
    line-height: 0.9;

    font-weight: 900;
    letter-spacing: -4px;

    color: #ffffff;

    text-shadow:
        0 0 25px rgba(32,255,103,0.22);
}


.value-price span {
    display: block;

    margin-top: 12px;

    font-size: 16px;
    line-height: 1;

    letter-spacing: 3px;

    color: #ffd45a;
}


/* Divider */

.value-divider {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 1px;

    margin: 32px 0;

    background:
        linear-gradient(
            90deg,
            rgba(32,255,103,0.7),
            rgba(255,211,78,0.7),
            transparent
        );
}


/* Statement */

.value-statement {
    position: relative;
    z-index: 1;

    margin: 0;

    font-size: 18px;
    line-height: 1.7;

    color: rgba(255,255,255,0.82);
}


.value-statement br {
    display: block;
}


/* ==========================
   MOBILE
========================== */

@media (max-width: 800px) {

    .value-section {
        padding: 90px 18px 100px;
    }

    .value-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .value-copy {
        max-width: none;
    }

    .value-copy h2 {
        font-size: clamp(42px, 11vw, 64px);
        letter-spacing: -2px;
    }

    .value-intro {
        font-size: 16px;
    }

    .value-highlight {
        padding: 40px 30px;
    }

    .value-price {
        font-size: 72px;
    }

}

/* ==========================
   PRICING NAV OVERRIDE
========================== */

.site-nav,
.site-nav *,
.site-nav a {
    font-family: Arial, Helvetica, sans-serif;
}

