/* ====================================================================================
PRICING PAGE — styles only the markup you pasted
==================================================================================== */

.page{
    position: relative;
    padding: clamp(2.5rem, 6vw, 4.5rem) 0;
    overflow: hidden;
}

/* glow (centered so it won’t cause horizontal scroll) */
.page::before{
    content:"";
    position:absolute;
    left: 50%;
    top: -12rem;
    transform: translateX(-50%);
    width: 1200px;
    max-width: 120%;
    height: 520px;
    background: radial-gradient(closest-side, rgba(181, 107, 255, .16), rgba(0,0,0,0));
    filter: blur(12px);
    pointer-events:none;
    z-index:-1;
}

/* Heading */
.page h1{
    font-size: clamp(2.1rem, 4.2vw, 3rem);
    line-height: 1.08;
    margin: 0 0 .5rem;
}

.page > .container > .muted{
    max-width: 70ch;
    margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

/* Ensure grid works even if base doesn't define display */
.grid-3{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
    margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
}

@media (max-width: 900px){
    .grid-3{
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
}

/* Cards */
.grid-3 .card{
    padding: 1.5rem 1.6rem;
    transition: transform .15s ease, box-shadow .15s ease;
}

.grid-3 .card:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(0,0,0,.30);
}

.grid-3 .card h2{
    font-size: 1.15rem;
    margin-bottom: .85rem;
}

/* Price list */
.price-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .6rem;
}

.price-list li{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: .55rem .65rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.03);
}

:root[data-theme="light"] .price-list li{
    background: rgba(18,20,39,.03);
    border-color: rgba(18,20,39,.08);
}

.price-list li span:first-child{
    color: var(--fg-muted);
    font-weight: 650;
}

.price-list li span:last-child{
    color: var(--fg);
    font-weight: 800;
    letter-spacing: .01em;
}

/* Policy block */
.card.soft{
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border-radius: 22px;
    background: rgba(255,255,255,.02);
    margin-top: .25rem;
}

/* Bottom actions */
.actions{
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: clamp(1.5rem, 4vw, 2.25rem);
}

/* Pricing card hover polish */
.price-list{
    list-style: none;
    padding: 0;
    margin: .75rem 0 0;
    display: grid;
    gap: .55rem;
}

.price-list li{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .5rem .65rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.02);
}

:root[data-theme="light"] .price-list li{
    background: rgba(18,20,39,.03);
    border-color: rgba(18,20,39,.08);
}

/* Hover: gentle lift + glow */
.page .grid-3 .card{
    transition: transform .14s ease, box-shadow .18s ease, border-color .18s ease;
}

.page .grid-3 .card:hover{
    transform: translateY(-2px);
    border-color: rgba(255, 77, 227, .25);
    box-shadow: 0 18px 48px rgba(0,0,0,.35);
}

:root[data-theme="light"] .page .grid-3 .card:hover{
    box-shadow: 0 18px 48px rgba(18,20,39,.14);
}
