.pricing-bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

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

.pricing-portal-row {
    text-align: center;
    margin-top: 8px;
    margin-bottom: 2rem;
}

.pricing-portal-btn {
    font-size: 0.85rem;
}

.pricing-checkout-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.76);
    backdrop-filter: blur(14px);
}

.pricing-checkout-overlay.open {
    display: flex;
}

.pricing-checkout-modal {
    width: min(100%, 540px);
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top left, rgba(0, 255, 106, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.98));
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.pricing-checkout-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.pricing-checkout-kicker {
    margin-bottom: 0.35rem;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-checkout-head h2 {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.1;
}

.pricing-checkout-head p {
    margin: 0.45rem 0 0;
    color: var(--text-secondary);
    line-height: 1.55;
}

.pricing-checkout-close {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    cursor: pointer;
}

.pricing-checkout-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.8;
}

.pricing-checkout-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-checkout-plan {
    font-size: 1.02rem;
    font-weight: 700;
}

.pricing-checkout-period {
    margin-top: 0.2rem;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.pricing-checkout-summary strong {
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.pricing-checkout-note {
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.55;
}

.pricing-checkout-error {
    min-height: 1.2rem;
    color: #ff7b7b;
    font-size: 0.82rem;
}

.pricing-checkout-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pricing-checkout-actions .btn {
    flex: 1 1 180px;
}

@media (max-width: 720px) {
    .pricing-checkout-overlay {
        padding: 1rem;
        align-items: flex-end;
    }

    .pricing-checkout-modal {
        width: 100%;
        border-radius: 22px 22px 18px 18px;
    }

    .pricing-checkout-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .pricing-checkout-actions {
        flex-direction: column;
    }
}

.pricing-crypto-note {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 2.5rem auto 1.5rem;
    padding: 0 1.25rem;
}

.pricing-crypto-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.4rem;
    background: linear-gradient(135deg, rgba(0, 255, 106, 0.10), rgba(0, 255, 106, 0.04));
    border: 1px solid rgba(0, 255, 106, 0.35);
    border-radius: 14px;
    box-shadow: 0 0 24px rgba(0, 255, 106, 0.06);
}

.pricing-crypto-icon {
    flex-shrink: 0;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 255, 106, 0.15);
}

.pricing-crypto-body h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    color: var(--text-primary);
    letter-spacing: 0.01em;
    font-weight: 700;
}

.pricing-crypto-body p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.55;
    font-size: 0.92rem;
    word-break: break-word;
}

.pricing-crypto-body a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(0, 255, 106, 0.4);
}

.pricing-crypto-body a:hover {
    text-decoration-color: var(--accent);
}

@media (max-width: 600px) {
    .pricing-crypto-note {
        margin: 1.75rem auto 1rem;
        padding: 0 0.9rem;
    }
    .pricing-crypto-card {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.1rem 1.1rem;
    }
    .pricing-crypto-body h3 { font-size: 1rem; }
    .pricing-crypto-body p { font-size: 0.88rem; }
}
