.pricing-body {
    min-height: 100vh;
    background: #09090b;
}

.pricing-body .page-root {
    flex: 1 0 auto;
}

.pricing-page {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 132px 24px 0;
}

.pricing-backdrop {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    background: linear-gradient(
        to bottom,
        rgba(9, 9, 11, 0.04),
        rgba(7, 9, 15, 0.22) 48%,
        rgba(9, 9, 11, 0.68) 100%
    );
}

.pricing-webgl {
    position: fixed;
    z-index: 1;
    inset: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.94;
    pointer-events: none;
}

.pricing-webgl canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.pricing-hero,
.pricing-core,
.pricing-promise,
.pricing-future,
.pricing-faq,
.pricing-close {
    position: relative;
    z-index: 1;
    width: min(100%, 1080px);
    margin-inline: auto;
}

.pricing-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 78px 0 92px;
    text-align: center;
}

html.pricing-js .pricing-hero > .pricing-eyebrow,
html.pricing-js .pricing-hero > .pricing-title,
html.pricing-js .pricing-hero > .pricing-lead,
html.pricing-js .pricing-hero > .pricing-hero__actions,
html.pricing-js .pricing-hero > .pricing-trustline {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
}

html.pricing-js .pricing-hero > .pricing-title {
    transform: translate3d(0, 34px, 0);
    filter: blur(14px);
}

.pricing-eyebrow,
.pricing-card-kicker {
    margin: 0;
    color: rgba(141, 211, 197, 0.86);
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.pricing-title {
    max-width: 100%;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.98);
    font-size: clamp(3.5rem, 7.2vw, 6.05rem);
    font-weight: 560;
    letter-spacing: -0.065em;
    line-height: 0.94;
    background: linear-gradient(
        180deg,
        #ffffff 30%,
        rgba(255, 255, 255, 0.86) 62%,
        rgba(202, 232, 224, 0.62)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.08em;
    margin-bottom: -0.08em;
}

/* When JS splits the title into words, the gradient moves from the title to the
   words so exactly one element owns the background-clip. A transformed child of
   a background-clip:text ancestor gets promoted to its own layer and loses the
   ancestor's clipped paint - that is what ghosts the headline mid-animation.
   For the same reason the words animate with transform/opacity only: blurring
   gradient-clipped text smears it. */
.pricing-title--split {
    background: none;
    -webkit-text-fill-color: currentColor;
}

.pricing-title__word {
    display: inline-block;
    background: linear-gradient(
        180deg,
        #ffffff 30%,
        rgba(255, 255, 255, 0.86) 62%,
        rgba(202, 232, 224, 0.62)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.08em;
    margin-bottom: -0.08em;
}

.pricing-lead {
    max-width: 720px;
    margin: 28px 0 0;
    color: rgba(228, 228, 231, 0.68);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    letter-spacing: -0.012em;
    line-height: 1.65;
}

.pricing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}

.pricing-button {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 9px;
    padding: 0.72rem 1.05rem;
    color: rgba(245, 245, 245, 0.9);
    font-size: 0.84rem;
    font-weight: 620;
    letter-spacing: -0.005em;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 180ms cubic-bezier(0.32, 0.72, 0, 1),
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease,
        box-shadow 240ms ease;
}

.pricing-button svg {
    width: 15px;
    height: 15px;
}

.pricing-button--primary {
    background: rgba(245, 245, 245, 0.96);
    color: #18181b;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.4),
        0 0 0 rgba(120, 210, 190, 0);
}

/* Sheen that sweeps across the primary button on hover. */
.pricing-button--primary::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -70%;
    width: 42%;
    height: 180%;
    background: linear-gradient(
        105deg,
        transparent,
        rgba(255, 255, 255, 0.9) 50%,
        transparent
    );
    opacity: 0;
    transform: skewX(-18deg) translateX(0);
    pointer-events: none;
}

.pricing-button--primary:hover::after,
.pricing-button--primary:focus-visible::after {
    opacity: 0.85;
    transition: transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 200ms ease;
    transform: skewX(-18deg) translateX(430%);
}

.pricing-button--primary:hover,
.pricing-button--primary:focus-visible {
    background: #fff;
    color: #09090b;
    outline: none;
    transform: translateY(-1px);
    box-shadow:
        0 6px 22px rgba(0, 0, 0, 0.45),
        0 0 26px rgba(120, 210, 190, 0.18);
}

.pricing-button--secondary {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
}

.pricing-button--secondary:hover,
.pricing-button--secondary:focus-visible {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.07);
    outline: none;
}

.pricing-trustline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 26px;
    margin: 28px 0 0;
    padding: 0;
    color: rgba(228, 228, 231, 0.47);
    font-size: 0.76rem;
    list-style: none;
}

.pricing-trustline li {
    position: relative;
}

.pricing-trustline li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(228, 228, 231, 0.24);
}

.pricing-core {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018) 58%),
        rgba(13, 13, 16, 0.94);
    padding: clamp(28px, 5vw, 54px);
}

/* Border beam: a slow bright streak orbiting the card's 1px border ring.
   The ring is isolated with a padding-box/content-box mask; the streak is an
   oversized rotating conic gradient clipped by that mask. */
.pricing-beam {
    position: absolute;
    inset: -1px;
    z-index: 1;
    overflow: hidden;
    border-radius: inherit;
    padding: 1px;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-beam::before {
    content: "";
    position: absolute;
    inset: -80%;
    background: conic-gradient(
        from 0deg,
        transparent 72%,
        rgba(255, 255, 255, 0.62) 84%,
        rgba(116, 214, 195, 0.5) 90%,
        transparent 96%
    );
    animation: pricing-beam-spin 9s linear infinite;
}

@keyframes pricing-beam-spin {
    to { transform: rotate(1turn); }
}

/* Cursor-tracked spotlight: a border highlight plus a faint interior wash that
   follow the pointer (JS sets --sx / --sy in px). Both fade with .is-lit. */
.pricing-spot {
    --sx: 50%;
    --sy: 50%;
}

.pricing-spot::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: radial-gradient(
        340px circle at var(--sx) var(--sy),
        rgba(133, 216, 197, 0.07),
        transparent 68%
    );
    opacity: 0;
    transition: opacity 420ms ease;
    pointer-events: none;
}

.pricing-spot-border {
    position: absolute;
    inset: -1px;
    z-index: 1;
    border: 1px solid transparent;
    border-radius: inherit;
    background: radial-gradient(
        260px circle at var(--sx) var(--sy),
        rgba(148, 226, 205, 0.55),
        rgba(148, 226, 205, 0.08) 58%,
        transparent 72%
    ) border-box;
    mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0) border-box;
    -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0) border-box;
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 420ms ease;
    pointer-events: none;
}

.pricing-spot.is-lit::after,
.pricing-spot.is-lit .pricing-spot-border {
    opacity: 1;
}

.pricing-spot > :not(.pricing-spot-border):not(.pricing-beam) {
    position: relative;
    z-index: 2;
}

.pricing-core__summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 44px;
    align-items: end;
}

.pricing-card-title {
    max-width: 610px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(1.8rem, 4vw, 3.25rem);
    font-weight: 545;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.pricing-price {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    align-items: start;
    justify-items: end;
}

.pricing-price__currency {
    margin: 13px 3px 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 1.15rem;
}

.pricing-price__amount {
    color: rgba(255, 255, 255, 0.98);
    font-size: clamp(4.5rem, 8vw, 7rem);
    font-weight: 520;
    line-height: 0.82;
    background: linear-gradient(
        115deg,
        #ffffff 32%,
        #8fe6cd 50%,
        #ffffff 68%
    );
    background-size: 300% 100%;
    background-position: 0% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* letter-spacing is applied after the last glyph, so -0.08em on a lone 0
       shrinks the box; background-clip:text then shears the right edge. */
    padding-inline: 0.06em;
}

.pricing-price__note {
    grid-column: 1 / -1;
    margin-top: 12px;
    color: rgba(228, 228, 231, 0.48);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    line-height: 1.45;
    text-align: right;
    text-transform: uppercase;
}

.pricing-core__rule {
    height: 1px;
    margin: 42px 0;
    background: rgba(255, 255, 255, 0.09);
}

.pricing-included__label {
    margin: 0 0 22px;
    color: rgba(228, 228, 231, 0.46);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-included__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 38px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-included__grid li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 11px;
    color: rgba(228, 228, 231, 0.55);
    font-size: 0.84rem;
    line-height: 1.55;
}

.pricing-included__grid strong {
    display: block;
    margin-bottom: 2px;
    color: rgba(245, 245, 245, 0.9);
    font-size: 0.91rem;
    font-weight: 610;
}

.pricing-check {
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(102, 190, 171, 0.28);
    border-radius: 50%;
    background: rgba(57, 173, 157, 0.08);
    color: rgba(135, 218, 200, 0.9);
    font-size: 0.65rem;
}

.pricing-provider-note {
    margin: 34px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 22px;
    color: rgba(228, 228, 231, 0.38);
    font-size: 0.76rem;
    line-height: 1.55;
}

.pricing-promise,
.pricing-faq {
    padding: 132px 0;
}

.pricing-section-heading {
    max-width: 720px;
}

.pricing-section-heading h2,
.pricing-future h2,
.pricing-close h2 {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(2rem, 4.5vw, 3.7rem);
    font-weight: 540;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.pricing-promise__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 58px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-promise__grid article {
    position: relative;
    min-height: 265px;
    padding: 30px 32px 32px 0;
}

.pricing-promise__grid article h3,
.pricing-promise__grid article p,
.pricing-promise__index {
    transition: color 260ms ease;
}

.pricing-promise__grid article:hover h3 {
    color: rgba(255, 255, 255, 0.99);
}

.pricing-promise__grid article:hover p {
    color: rgba(228, 228, 231, 0.68);
}

.pricing-promise__grid article:hover .pricing-promise__index {
    color: rgba(141, 211, 197, 0.95);
}

.pricing-promise__grid article + article {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 32px;
}

.pricing-promise__index {
    color: rgba(141, 211, 197, 0.55);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 0.72rem;
}

.pricing-promise__grid h3 {
    margin: 76px 0 0;
    color: rgba(245, 245, 245, 0.9);
    font-size: 1rem;
    font-weight: 620;
    letter-spacing: -0.018em;
}

.pricing-promise__grid p {
    margin: 10px 0 0;
    color: rgba(228, 228, 231, 0.5);
    font-size: 0.85rem;
    line-height: 1.65;
}

.pricing-future {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(46px, 8vw, 104px);
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 90px 0;
}

.pricing-future__copy > p:last-child {
    margin: 22px 0 0;
    color: rgba(228, 228, 231, 0.55);
    font-size: 0.91rem;
    line-height: 1.75;
}

.pricing-boundary {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.02);
    padding: 8px;
}

.pricing-boundary__row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px 20px;
    border-radius: 9px;
    padding: 21px 20px;
}

.pricing-boundary__row + .pricing-boundary__row {
    margin-top: 3px;
}

.pricing-boundary__row--free {
    background: rgba(64, 161, 142, 0.09);
}

.pricing-boundary__status {
    color: rgba(228, 228, 231, 0.38);
    font-size: 0.68rem;
    font-weight: 640;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pricing-boundary__row--free .pricing-boundary__status {
    color: rgba(139, 220, 203, 0.8);
}

.pricing-boundary__row strong {
    grid-row: 1;
    grid-column: 2;
    color: rgba(245, 245, 245, 0.88);
    font-size: 0.83rem;
    font-weight: 610;
}

.pricing-boundary__row > span:last-child {
    grid-column: 1 / -1;
    color: rgba(228, 228, 231, 0.48);
    font-size: 0.79rem;
    line-height: 1.55;
}

.pricing-faq {
    display: grid;
    grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(44px, 8vw, 110px);
}

.pricing-faq__list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-faq details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 22px 2px 22px 0;
    color: rgba(245, 245, 245, 0.84);
    font-size: 0.91rem;
    font-weight: 560;
    line-height: 1.45;
    list-style: none;
    cursor: pointer;
    transition: color 200ms ease;
    -webkit-tap-highlight-color: transparent;
}

.pricing-faq summary:hover,
.pricing-faq details[open] summary {
    color: rgba(255, 255, 255, 0.97);
}

.pricing-faq summary::-webkit-details-marker {
    display: none;
}

/* Plus built from two centered bars: rotation is around the true geometric
   center, so it cannot wobble the way a rotated text glyph does. On open the
   whole icon quarter-turns while one bar folds away - plus spins into minus. */
.pricing-faq__icon {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    transform: rotate(0deg);
    transition:
        transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 240ms ease,
        background 240ms ease;
}

.pricing-faq__icon::before,
.pricing-faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    margin: -0.75px 0 0 -5px;
    border-radius: 1px;
    background: rgba(228, 228, 231, 0.66);
    transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), background 240ms ease;
}

.pricing-faq__icon::after {
    transform: rotate(90deg);
}

.pricing-faq summary:hover .pricing-faq__icon {
    border-color: rgba(148, 226, 205, 0.4);
    background: rgba(87, 190, 168, 0.08);
}

.pricing-faq summary:hover .pricing-faq__icon::before,
.pricing-faq summary:hover .pricing-faq__icon::after {
    background: rgba(180, 236, 219, 0.95);
}

.pricing-faq details[open] .pricing-faq__icon {
    border-color: rgba(148, 226, 205, 0.45);
    background: rgba(87, 190, 168, 0.1);
    transform: rotate(180deg);
}

/* Container 180deg + bar 180deg: the vertical bar folds flat while the whole
   icon spins once - net result is a minus. */
.pricing-faq details[open] .pricing-faq__icon::after {
    transform: rotate(180deg);
}

.pricing-faq details.closing .pricing-faq__icon {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
    transform: rotate(0deg);
}

.pricing-faq details.closing .pricing-faq__icon::after {
    transform: rotate(90deg);
}

.pricing-faq details.closing summary {
    color: rgba(245, 245, 245, 0.84);
}

.pricing-faq__answer {
    overflow: hidden;
}

.pricing-faq__answer p {
    margin: 0;
    padding: 0 52px 24px 0;
    color: rgba(228, 228, 231, 0.5);
    font-size: 0.84rem;
    line-height: 1.7;
}

.pricing-faq details a {
    color: rgba(163, 218, 208, 0.85);
}

.pricing-close {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 118px 0 132px;
    text-align: center;
}

.pricing-close::before {
    content: "";
    position: absolute;
    top: 18%;
    left: 50%;
    z-index: -1;
    width: min(720px, 92vw);
    height: 340px;
    transform: translateX(-50%);
    background: radial-gradient(
        ellipse 50% 50% at 50% 50%,
        rgba(64, 178, 158, 0.13),
        rgba(64, 178, 158, 0.04) 48%,
        transparent 72%
    );
    pointer-events: none;
}

.pricing-close h2 {
    max-width: 680px;
}

.pricing-close > p:not(.pricing-eyebrow) {
    margin: 18px 0 30px;
    color: rgba(228, 228, 231, 0.5);
    font-size: 0.95rem;
}

@media (max-width: 820px) {
    .pricing-core__summary,
    .pricing-future,
    .pricing-faq {
        grid-template-columns: 1fr;
    }

    .pricing-price {
        justify-self: start;
        justify-items: start;
    }

    .pricing-price__note {
        text-align: left;
    }

    .pricing-promise__grid {
        grid-template-columns: 1fr;
    }

    .pricing-promise__grid article {
        min-height: 0;
        padding: 26px 0 28px;
    }

    .pricing-promise__grid article + article {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 0;
        padding-left: 0;
    }

    .pricing-promise__grid h3 {
        margin-top: 34px;
    }

    .pricing-faq {
        gap: 42px;
    }
}

@media (max-width: 620px) {
    .pricing-page {
        padding: 100px 17px 0;
    }

    .pricing-hero {
        padding: 58px 0 72px;
    }

    .pricing-title {
        font-size: clamp(3.25rem, 17vw, 5rem);
    }

    .pricing-lead {
        font-size: 1rem;
    }

    .pricing-hero__actions,
    .pricing-button {
        width: 100%;
    }

    .pricing-trustline {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 8px 22px;
        text-align: left;
    }

    .pricing-trustline li::after {
        display: none;
    }

    .pricing-core {
        border-radius: 14px;
        padding: 26px 20px;
    }

    .pricing-core__summary {
        gap: 36px;
    }

    .pricing-core__rule {
        margin: 32px 0;
    }

    .pricing-included__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .pricing-promise,
    .pricing-faq {
        padding: 94px 0;
    }

    .pricing-future {
        gap: 52px;
        padding: 76px 0;
    }

    .pricing-boundary__row {
        grid-template-columns: 1fr;
    }

    .pricing-boundary__row strong {
        grid-row: auto;
        grid-column: 1;
    }

    .pricing-close {
        padding: 92px 0 104px;
    }

    .pricing-faq__answer p {
        padding-right: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pricing-button,
    .pricing-faq summary,
    .pricing-faq__icon,
    .pricing-faq__icon::before,
    .pricing-faq__icon::after {
        transition: none;
    }

    .pricing-button--primary:hover,
    .pricing-button--primary:focus-visible {
        transform: none;
    }

    .pricing-button--primary::after {
        display: none;
    }

    .pricing-spot::after,
    .pricing-spot-border {
        display: none;
    }

    /* Static top-edge accent stands in for the orbiting beam. */
    .pricing-beam {
        display: none;
    }

    .pricing-core::before {
        content: "";
        position: absolute;
        top: -1px;
        left: 10%;
        width: 35%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(116, 214, 195, 0.74), transparent);
    }
}
