/* Account comparison, adapted from marketing-site-v2 PricingSection. */

.osp-checkout-pricing,
.osp-checkout-pricing * {
    box-sizing: border-box;
}

.osp-checkout-pricing {
    --osp-pricing-border: var(--osp-glass-divider);

    width: 100%;
    padding: 80px 0 32px;
    overflow-x: clip;
    background: var(--osp-page);
    color: var(--osp-text-primary);
    font-family: var(--osp-font-sans);
}

.osp-checkout-pricing [hidden] {
    display: none !important;
}

.osp-checkout-pricing__container {
    width: min(100%, 1180px);
    margin-inline: auto;
    padding-inline: clamp(16px, 2.5vw, 32px);
}

.osp-checkout-pricing__intro {
    position: relative;
    isolation: isolate;
    text-align: center;
}

.osp-checkout-pricing__intro::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: min(736px, 94vw);
    height: 200px;
    border-radius: var(--osp-radius-full);
    background: radial-gradient(
        ellipse at center,
        color-mix(in srgb, var(--osp-action) 25%, transparent) 0%,
        color-mix(in srgb, var(--osp-action) 11%, transparent) 46%,
        transparent 74%
    );
    content: "";
    filter: blur(28px);
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.osp-checkout-pricing__intro h2 {
    margin: 0;
    color: var(--osp-foreground);
    font-family: var(--osp-font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-stretch: 112.5%;
    font-weight: 600;
    line-height: 1.25;
}

.osp-checkout-pricing__controls {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.72fr) minmax(0, 2fr);
    gap: 16px;
    margin-top: 80px;
}

.osp-checkout-pricing__control {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.osp-checkout-pricing__control legend {
    margin-bottom: 12px;
    padding-left: 14px;
    color: var(--osp-text-secondary);
    font-size: 16px;
    font-weight: 600;
}

.osp-checkout-pricing__options {
    position: relative;
    display: grid;
    gap: 4px;
    width: 100%;
    padding: 4px;
    border: 1px solid var(--osp-pricing-border);
    border-radius: var(--osp-radius-full);
    background: var(--osp-surface);
    box-shadow: none;
}

.osp-checkout-pricing__options--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.osp-checkout-pricing__options--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.osp-checkout-pricing__options--6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.osp-checkout-pricing__options--6[data-visible-options="4"] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.osp-checkout-pricing__options button {
    position: relative;
    display: inline-flex;
    min-width: 0;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    overflow: visible;
    border: 0;
    border-radius: var(--osp-radius-full);
    background: transparent;
    color: var(--osp-text-secondary);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 650;
    line-height: 1;
    transition: background-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.osp-checkout-pricing__options button:hover:not(:disabled) {
    background: var(--osp-state-hover);
    color: var(--osp-text-secondary);
}

.osp-checkout-pricing__options button:active:not([aria-pressed="true"]) {
    background: var(--osp-state-pressed);
}

.osp-checkout-pricing__options button[aria-pressed="true"] {
    background: var(--osp-action);
    color: var(--osp-on-action);
}

.osp-checkout-pricing__options button[aria-pressed="true"]:hover {
    background: var(--osp-action-hover);
}

.osp-checkout-pricing__options button[aria-pressed="true"]:active {
    background: var(--osp-action-pressed);
}

.osp-checkout-pricing__options button:focus-visible,
.osp-checkout-pricing__promo-code:focus-visible,
.osp-checkout-pricing__welcome-code:focus-visible,
.osp-checkout-pricing__checkout-button:focus-visible {
    outline: 2px solid var(--osp-focus-ring);
    outline-offset: 3px;
}

.osp-checkout-pricing__popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border: 1px solid var(--osp-border-strong);
    border-radius: var(--osp-radius-full);
    background: var(--osp-action);
    color: var(--osp-on-action);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.04em;
    line-height: 1;
    pointer-events: none;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    white-space: nowrap;
}

.osp-checkout-pricing__comparison {
    margin-top: 32px;
}

.osp-checkout-pricing__promo {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px 14px;
    padding: 16px 20px;
    border-radius: var(--osp-radius-card);
    background: color-mix(in srgb, var(--osp-action-hover) 68%, var(--osp-surface-raised));
    color: var(--osp-text-secondary);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.osp-checkout-pricing__promo-copy {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.osp-checkout-pricing__promo-copy > svg {
    width: 21px;
    height: 21px;
    flex: none;
    fill: none;
    stroke: var(--osp-foreground);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.osp-checkout-pricing__promo-message {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    font-size: clamp(17px, 1.6vw, 19px);
    line-height: 1.2;
}

.osp-checkout-pricing__promo-message > span {
    color: var(--osp-text-secondary);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.osp-checkout-pricing__promo-message strong {
    color: var(--osp-foreground);
    font-weight: 750;
}

.osp-checkout-pricing__promo-availability {
    display: grid;
    width: clamp(208px, 22vw, 288px);
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 5px 12px;
    padding: 7px 16px;
    border-radius: var(--osp-radius-full);
    background: color-mix(in srgb, var(--osp-scrim) 25%, transparent);
}

.osp-checkout-pricing__promo-availability[hidden] {
    display: none;
}

.osp-checkout-pricing__promo-availability-copy {
    display: inline-flex;
    align-items: center;
    color: var(--osp-foreground);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
}

.osp-checkout-pricing__promo-availability-count {
    justify-self: end;
    color: var(--osp-foreground);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.osp-checkout-pricing__promo-availability-track {
    position: relative;
    width: 100%;
    height: 7px;
    grid-column: 1 / -1;
    overflow: hidden;
    border-radius: var(--osp-radius-full);
    background: color-mix(in srgb, var(--osp-scrim) 72%, transparent);
    box-shadow: inset 0 0 0 1px var(--osp-glass-border), 0 1px 0 var(--osp-glass-tint);
}

.osp-checkout-pricing__promo-availability-track-fill {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--osp-foreground);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 500ms ease;
}

.osp-checkout-pricing__promo-code {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 6px 11px;
    border: 0;
    border-radius: var(--osp-radius-full);
    background: var(--osp-surface-raised);
    box-shadow: var(--osp-shadow-inset-highlight);
    color: var(--osp-foreground);
    cursor: pointer;
    font: inherit;
    transition: background-color 160ms ease;
}

.osp-checkout-pricing__promo-code:hover {
    background: var(--osp-surface-floating);
}

.osp-checkout-pricing__promo-code:active {
    background: var(--osp-page);
}

.osp-checkout-pricing__promo-code [data-copy-prefix] {
    font-size: 11px;
    font-weight: 500;
}

.osp-checkout-pricing__promo-code [data-copy-label] {
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.04em;
}

.osp-checkout-pricing__promo-code svg,
.osp-checkout-pricing__welcome-code svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.osp-checkout-pricing__plans {
    margin-top: 8px;
}

.osp-checkout-pricing__workspace {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(304px, 0.36fr);
    align-items: stretch;
    gap: 8px;
}

.osp-checkout-pricing__phase-set {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--osp-pricing-border);
    border-radius: var(--osp-radius-card);
    background: var(--osp-surface);
}

.osp-checkout-pricing__table-scroll {
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    contain: paint;
}

.osp-checkout-pricing__table {
    width: 100%;
    min-width: 760px;
    border: 0;
    border-collapse: collapse;
    table-layout: fixed;
    background: transparent;
    color: var(--osp-text-primary);
    text-align: left;
}

.osp-checkout-pricing__rule-column {
    width: 31%;
}

.osp-checkout-pricing__phase-column {
    width: auto;
}

.osp-checkout-pricing__table thead tr,
.osp-checkout-pricing__table tbody tr {
    border-bottom: 1px solid var(--osp-pricing-border);
}

.osp-checkout-pricing__table tbody tr:last-child {
    border-bottom: 0;
}

.osp-checkout-pricing__table thead th {
    height: 84px;
    padding: 14px 24px;
    border: 0;
    background: transparent;
    vertical-align: middle;
}

.osp-checkout-pricing__table thead th:not(:first-child),
.osp-checkout-pricing__table tbody td {
    padding: 0;
    text-align: left;
}

.osp-checkout-pricing__phase-cell {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 19px 24px;
    text-align: left;
}

.osp-checkout-pricing__phase-cell--heading {
    min-height: 84px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-block: 14px;
}

.osp-checkout-pricing__table[data-phase-count="1"] .osp-checkout-pricing__phase-cell {
    width: 33.3333%;
    margin-inline: auto;
}

.osp-checkout-pricing__phase-title,
.osp-checkout-pricing__phase-subtitle {
    display: block;
}

.osp-checkout-pricing__phase-title {
    font-size: 18px;
    font-weight: 650;
    line-height: 1.2;
    white-space: nowrap;
}

.osp-checkout-pricing__phase-subtitle {
    margin-top: 5px;
    color: var(--osp-text-secondary);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.osp-checkout-pricing__table tbody th,
.osp-checkout-pricing__table tbody td {
    padding: 19px 24px;
    border: 0;
    background: transparent;
    vertical-align: middle;
    font-size: 14px;
    line-height: 1.45;
}

.osp-checkout-pricing__table tbody td {
    padding: 0;
    color: var(--osp-text-secondary);
    font-size: 13px;
    font-weight: 600;
}

.osp-checkout-pricing__table tbody th {
    color: var(--osp-text-secondary);
    font-weight: 500;
}

.osp-checkout-pricing__percent {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    white-space: nowrap;
}

.osp-checkout-pricing__dollar {
    color: var(--osp-text-secondary);
    font-weight: 550;
}

.osp-checkout-pricing__rule-label,
.osp-checkout-pricing__value-with-tooltip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.osp-checkout-pricing__info {
    position: relative;
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    flex: none;
    margin: -10px;
    padding: 0;
    border: 0;
    border-radius: var(--osp-radius-micro);
    background: transparent;
    color: inherit;
    cursor: help;
    font: inherit;
}

.osp-checkout-pricing__info svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--osp-text-secondary);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.osp-checkout-pricing__info::after {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    z-index: 5;
    width: max-content;
    max-width: 256px;
    padding: 10px 12px;
    border: 1px solid var(--osp-pricing-border);
    border-radius: var(--osp-radius-control);
    background: var(--osp-surface-floating);
    box-shadow: var(--osp-shadow-raised);
    color: var(--osp-text-primary);
    content: attr(data-tooltip);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
    opacity: 0;
    pointer-events: none;
    text-align: left;
    transform: translate(-50%, 4px);
    transition: opacity 140ms ease, transform 140ms ease;
    visibility: hidden;
    white-space: normal;
}

.osp-checkout-pricing__info:hover::after,
.osp-checkout-pricing__info:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, 0);
    visibility: visible;
}

.osp-checkout-pricing__value-with-tooltip .osp-checkout-pricing__info::after {
    right: 0;
    left: auto;
    transform: translateY(4px);
}

.osp-checkout-pricing__value-with-tooltip .osp-checkout-pricing__info:hover::after,
.osp-checkout-pricing__value-with-tooltip .osp-checkout-pricing__info:focus-visible::after {
    transform: translateY(0);
}

.osp-checkout-pricing__info:focus-visible {
    background: var(--osp-state-pressed);
    outline: 2px solid var(--osp-focus-ring);
    outline-offset: 2px;
}

.osp-checkout-pricing__mobile-tooltip {
    display: none;
}

.osp-checkout-pricing__card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: clamp(28px, 3vw, 40px);
    border: 1px solid var(--osp-pricing-border);
    border-radius: var(--osp-radius-card);
    background: var(--osp-surface);
}

.osp-checkout-pricing__account-summary {
    padding-bottom: 23px;
}

.osp-checkout-pricing__account-name {
    margin: 0;
    color: var(--osp-text-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.osp-checkout-pricing__price-line {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 15px;
}

.osp-checkout-pricing__price-line strong {
    color: var(--osp-foreground);
    font-size: clamp(34px, 2.8vw, 42px);
    font-weight: 650;
    line-height: 0.95;
}

.osp-checkout-pricing__price-line del {
    color: var(--osp-text-secondary);
    font-size: 18px;
}

.osp-checkout-pricing__assurances {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    color: var(--osp-text-secondary);
    font-size: 15px;
    list-style: none;
}

.osp-checkout-pricing__assurances li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.osp-checkout-pricing__check {
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    flex: none;
    padding: 3px;
    border-radius: var(--osp-radius-full);
    background: var(--osp-action);
    color: var(--osp-on-action);
}

.osp-checkout-pricing__check svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.osp-checkout-pricing__checkout-button {
    display: inline-flex;
    width: 100%;
    min-height: 60px;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 14px 24px;
    border: 0;
    border-radius: var(--osp-radius-full);
    background: var(--osp-action);
    color: var(--osp-on-action);
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    transition: background-color 160ms ease;
}

.osp-checkout-pricing__checkout-button:hover {
    background: var(--osp-action-hover);
}

.osp-checkout-pricing__checkout-button:active {
    background: var(--osp-action-pressed);
}

.osp-checkout-pricing__payment-methods {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 56px));
    justify-content: center;
    gap: 10px 12px;
    margin-top: 20px;
}

.osp-checkout-pricing__payment-method {
    display: inline-flex;
    width: 100%;
    height: 34px;
    min-width: 0;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    border-radius: var(--osp-radius-micro);
    background: color-mix(in srgb, var(--osp-surface-raised) 72%, transparent);
    color: var(--osp-text-secondary);
}

.osp-checkout-pricing__payment-method img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.osp-checkout-pricing__payment-method--mastercard img {
    transform: scale(0.78);
}

.osp-checkout-pricing__payment-method--american-express img {
    transform: scale(1.3);
}

.osp-checkout-pricing__payment-method--apple-pay img,
.osp-checkout-pricing__payment-method--google-pay img {
    transform: scale(1.18);
}

.osp-checkout-pricing__offer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 20px;
    margin-top: 64px;
}

.osp-checkout-pricing__welcome {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    justify-items: start;
    gap: 20px;
    margin: 0;
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid var(--osp-pricing-border);
    border-radius: var(--osp-radius-panel);
    background: var(--osp-surface);
    text-align: left;
}

.osp-checkout-pricing__offer-grid > .osp-special-offer-banner {
    width: 100%;
    height: 100%;
    margin: 0;
}

.osp-checkout-pricing__offer-grid .osp-banner-content {
    height: 100%;
    padding: clamp(24px, 3vw, 36px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.osp-checkout-pricing__offer-grid .osp-offer-badge {
    margin-bottom: 0;
}

.osp-checkout-pricing__offer-grid .osp-banner-text {
    margin: 0;
}

.osp-checkout-pricing__offer-grid .osp-banner-title {
    margin: 0 0 7px;
    color: var(--osp-text-primary);
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 700;
}

.osp-checkout-pricing__offer-grid .osp-banner-title .highlight-free,
.osp-checkout-pricing__welcome h3 {
    color: var(--osp-text-primary);
}

.osp-checkout-pricing__welcome-content {
    width: 100%;
    display: flex;
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
}

.osp-checkout-pricing__eyebrow {
    position: relative;
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid color-mix(in srgb, var(--osp-action) 38%, var(--osp-border));
    border-radius: var(--osp-radius-full);
    background: linear-gradient(
        100deg,
        color-mix(in srgb, var(--osp-surface-raised) 92%, var(--osp-action)),
        color-mix(in srgb, var(--osp-action) 38%, var(--osp-page))
    );
    color: var(--osp-accent-eyebrow-text);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.055em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.osp-checkout-pricing__eyebrow span:nth-child(2) {
    color: var(--osp-accent-eyebrow-divider);
}

.osp-checkout-pricing__welcome h3 {
    display: flex;
    max-width: 672px;
    flex-direction: column;
    margin: 16px 0 0;
    color: var(--osp-text-primary);
    font-family: var(--osp-font-heading);
    font-size: clamp(22px, 2vw, 28px);
    font-stretch: 112.5%;
    font-weight: 700;
    line-height: 1.25;
}

.osp-checkout-pricing__welcome-code {
    display: inline-flex;
    min-width: 176px;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    border: 2px dashed var(--osp-glass-border);
    border-radius: var(--osp-radius-full);
    background: transparent;
    color: var(--osp-text-secondary);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    white-space: nowrap;
    transition: border-color 160ms ease, color 160ms ease;
}

.osp-checkout-pricing__welcome-code:hover {
    border-color: var(--osp-border-hover);
    color: var(--osp-text-primary);
}

.osp-checkout-pricing__welcome-code [data-copy-prefix] {
    color: var(--osp-text-muted);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.osp-checkout-pricing__welcome-code [data-copy-label] {
    color: var(--osp-foreground);
    font-weight: 700;
    letter-spacing: 0.07em;
}

@media (max-width: 1120px) {
    .osp-checkout-pricing__workspace {
        grid-template-columns: 1fr;
    }

    .osp-checkout-pricing__card {
        min-height: 448px;
    }
}

@media (max-width: 896px) {
    .osp-checkout-pricing__controls {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .osp-checkout-pricing__welcome {
        grid-template-columns: 1fr;
    }

    .osp-checkout-pricing__welcome-code {
        justify-self: start;
    }
}

@media (max-width: 576px) {
    .osp-checkout-pricing {
        padding-top: 64px;
    }

    .osp-checkout-pricing__container {
        padding-inline: 12px;
    }

    .osp-checkout-pricing__controls {
        gap: 14px;
        margin-top: 44px;
    }

    .osp-checkout-pricing__control legend {
        margin-bottom: 9px;
        padding-left: 10px;
        font-size: 14px;
    }

    .osp-checkout-pricing__options button {
        min-height: 40px;
        font-size: 13px;
    }

    .osp-checkout-pricing__options--6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 16px;
        border-radius: 26px;
    }

    .osp-checkout-pricing__options--6[data-visible-options="4"] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .osp-checkout-pricing__comparison {
        margin-top: 20px;
    }

    .osp-checkout-pricing__promo {
        min-height: 60px;
        flex-direction: column;
        gap: 6px;
        padding: 14px 16px;
        font-size: 13px;
        line-height: 1.4;
    }

    .osp-checkout-pricing__promo-copy {
        gap: 3px;
    }

    .osp-checkout-pricing__promo-copy > svg {
        width: 16px;
        height: 16px;
    }

    .osp-checkout-pricing__promo-message {
        flex-direction: column;
        gap: 1px;
        font-size: clamp(13px, 3.5vw, 16px);
    }

    .osp-checkout-pricing__promo-availability {
        width: min(100%, 304px);
        gap: 5px 8px;
    }

    .osp-checkout-pricing__promo-availability-copy {
        font-size: 10px;
    }

    .osp-checkout-pricing__plans {
        margin-top: 8px;
    }

    .osp-checkout-pricing__table {
        min-width: 560px;
    }

    .osp-checkout-pricing__table[data-phase-count="2"] {
        min-width: 432px;
    }

    .osp-checkout-pricing__table[data-phase-count="1"] {
        min-width: 100%;
    }

    .osp-checkout-pricing__rule-column {
        width: 176px;
    }

    .osp-checkout-pricing__table thead th {
        height: 68px;
        padding: 12px;
    }

    .osp-checkout-pricing__table tbody th,
    .osp-checkout-pricing__table tbody td {
        padding: 12px;
        font-size: 13px;
        line-height: 1.35;
    }

    .osp-checkout-pricing__table tbody th {
        padding-inline: 8px;
    }

    .osp-checkout-pricing__table thead th:not(:first-child),
    .osp-checkout-pricing__table tbody td {
        padding: 0;
    }

    .osp-checkout-pricing__phase-cell {
        padding: 12px 8px;
    }

    .osp-checkout-pricing__table :is(thead th:nth-child(2), tbody td:nth-child(2)) .osp-checkout-pricing__phase-cell {
        padding-left: 18px;
    }

    .osp-checkout-pricing__phase-cell--heading {
        min-height: 68px;
        padding-block: 12px;
    }

    .osp-checkout-pricing__phase-title {
        font-size: 14px;
    }

    .osp-checkout-pricing__phase-subtitle {
        margin-top: 3px;
        font-size: 12px;
    }

    .osp-checkout-pricing__table[data-phase-count="1"] .osp-checkout-pricing__phase-cell {
        width: 100%;
        margin-inline: 0;
    }

    .osp-checkout-pricing__table[data-phase-count="1"] .osp-checkout-pricing__phase-cell--heading {
        align-items: flex-start;
        padding-inline: 4px;
    }

    .osp-checkout-pricing__rule-label {
        gap: 5px;
        max-width: 100%;
        white-space: nowrap;
    }

    .osp-checkout-pricing__info::after {
        display: none;
    }

    .osp-checkout-pricing__mobile-tooltip:not([hidden]) {
        position: fixed;
        right: 16px;
        bottom: max(16px, env(safe-area-inset-bottom));
        left: 16px;
        z-index: 1000;
        display: block;
        max-width: 512px;
        margin-inline: auto;
        padding: 14px 16px;
        border: 1px solid var(--osp-pricing-border);
        border-radius: var(--osp-radius-control);
        background: var(--osp-surface-floating);
        box-shadow: var(--osp-shadow-raised);
        color: var(--osp-text-primary);
        font-size: 14px;
        font-weight: 500;
        line-height: 1.5;
        pointer-events: none;
        text-align: left;
        backdrop-filter: blur(16px) saturate(125%);
    }

    .osp-checkout-pricing__card {
        min-height: 352px;
        padding: 20px;
    }

    .osp-checkout-pricing__checkout-button {
        min-height: 56px;
        margin-top: 28px;
    }

    .osp-checkout-pricing__assurances {
        gap: 10px;
        font-size: 13px;
    }

    .osp-checkout-pricing__assurances li {
        gap: 6px;
    }

    .osp-checkout-pricing__check {
        width: 16px;
        height: 16px;
    }

    .osp-checkout-pricing__payment-methods {
        width: 100%;
        max-width: 324px;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        justify-content: stretch;
        gap: 6px;
    }

    .osp-checkout-pricing__payment-method {
        height: 32px;
    }

    .osp-checkout-pricing__offer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .osp-checkout-pricing__welcome {
        justify-items: center;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }

    .osp-checkout-pricing__offer-grid .osp-banner-content {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .osp-checkout-pricing__welcome-content {
        width: 100%;
        align-items: center;
    }

    .osp-checkout-pricing__eyebrow {
        font-size: 10px;
    }

    .osp-checkout-pricing__offer-grid .osp-offer-badge {
        font-size: 10px;
    }

    .osp-checkout-pricing__welcome h3 {
        align-items: center;
        font-size: 18px;
    }

    .osp-checkout-pricing__welcome-code {
        width: 100%;
        min-height: 52px;
        justify-self: stretch;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .osp-checkout-pricing__options button,
    .osp-checkout-pricing__promo-code,
    .osp-checkout-pricing__welcome-code,
    .osp-checkout-pricing__checkout-button,
    .osp-checkout-pricing__promo-availability-track-fill {
        transition: none;
    }
}
