.rc2-page {
    --rc2-ink: #101828;
    --rc2-muted: #5f6b7a;
    --rc2-line: #d9e2ec;
    --rc2-soft: #f5f7fa;
    --rc2-blue: #155eef;
    --rc2-green: #087443;
    --rc2-amber: #a15c00;
    --rc2-panel: #ffffff;
    color: var(--rc2-ink);
    background: #ffffff;
}

.rc2-page *,
.rc2-page *::before,
.rc2-page *::after {
    box-sizing: border-box;
}

.rc2-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.rc2-hero {
    min-height: clamp(560px, 72vh, 690px);
    display: flex;
    align-items: center;
    background-color: #f7f8fa;
    background-image:
        linear-gradient(90deg, rgba(247, 248, 250, .98) 0%, rgba(247, 248, 250, .86) 42%, rgba(247, 248, 250, 0) 68%, rgba(247, 248, 250, 0) 100%),
        var(--rc2-hero-image);
    background-repeat: no-repeat;
    background-size: auto, min(42vw, 520px) auto;
    background-position: center, right 8% center;
    border-bottom: 1px solid var(--rc2-line);
}

.rc2-hero__inner {
    padding: 74px 0 54px;
}

.rc2-eyebrow,
.rc2-kicker {
    margin: 0 0 12px;
    color: var(--rc2-green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rc2-hero h1 {
    max-width: 660px;
    margin: 0;
    font-size: 72px;
    line-height: .94;
    letter-spacing: 0;
}

.rc2-hero__lead {
    max-width: 590px;
    margin: 24px 0 0;
    color: #344054;
    font-size: 20px;
    line-height: 1.55;
}

.rc2-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.rc2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 800;
    text-decoration: none;
    line-height: 1.1;
}

.rc2-btn--primary {
    color: #ffffff;
    background: var(--rc2-blue);
    border: 1px solid var(--rc2-blue);
}

.rc2-btn--light {
    color: var(--rc2-ink);
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--rc2-line);
}

.rc2-btn--outline {
    color: var(--rc2-blue);
    background: #ffffff;
    border: 1px solid #b8c7f8;
}

.rc2-btn--full {
    width: 100%;
}

.rc2-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 34px 0 0;
    padding: 0;
}

.rc2-hero__facts div {
    min-width: 138px;
    border: 1px solid var(--rc2-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    padding: 12px 14px;
}

.rc2-hero__facts dt {
    color: var(--rc2-muted);
    font-size: 12px;
    font-weight: 700;
}

.rc2-hero__facts dd {
    margin: 4px 0 0;
    font-size: 17px;
    font-weight: 850;
}

.rc2-hero-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.rc2-hero-price span {
    color: #98a2b3;
    font-size: 13px;
    font-weight: 750;
    text-decoration: line-through;
}

.rc2-hero-price strong {
    color: var(--rc2-green);
    font-size: 19px;
}

.rc2-strip {
    background: #ffffff;
    border-bottom: 1px solid var(--rc2-line);
}

.rc2-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rc2-strip__grid div {
    min-height: 94px;
    padding: 18px 20px;
    border-right: 1px solid var(--rc2-line);
}

.rc2-strip__grid div:last-child {
    border-right: 0;
}

.rc2-strip__grid strong,
.rc2-strip__grid span {
    display: block;
}

.rc2-strip__grid strong {
    font-size: 16px;
}

.rc2-strip__grid span {
    margin-top: 5px;
    color: var(--rc2-muted);
    font-size: 14px;
    line-height: 1.45;
}

.rc2-section {
    padding: 78px 0;
}

.rc2-section--soft {
    background: var(--rc2-soft);
    border-top: 1px solid var(--rc2-line);
    border-bottom: 1px solid var(--rc2-line);
}

.rc2-copy-grid,
.rc2-note-grid {
    display: grid;
    grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
    gap: clamp(30px, 6vw, 90px);
    align-items: start;
}

.rc2-section h2 {
    max-width: 740px;
    margin: 0;
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: 0;
}

.rc2-prose p {
    margin: 0 0 18px;
    color: #344054;
    font-size: 17px;
    line-height: 1.75;
}

.rc2-prose p:last-child {
    margin-bottom: 0;
}

.rc2-section-head {
    margin-bottom: 28px;
}

.rc2-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.rc2-card,
.rc2-offer,
.rc2-steps div,
.rc2-faq details {
    border: 1px solid var(--rc2-line);
    border-radius: 8px;
    background: #ffffff;
}

.rc2-card {
    min-height: 220px;
    padding: 22px;
}

.rc2-card span {
    color: var(--rc2-amber);
    font-size: 13px;
    font-weight: 850;
}

.rc2-card h3,
.rc2-steps h3 {
    margin: 18px 0 0;
    font-size: 20px;
    line-height: 1.2;
}

.rc2-card p,
.rc2-steps p,
.rc2-offer p {
    margin: 12px 0 0;
    color: var(--rc2-muted);
    line-height: 1.6;
}

.rc2-pricing {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
    gap: clamp(28px, 5vw, 52px);
    align-items: start;
}

.rc2-pricing__content p {
    max-width: 720px;
    color: #344054;
    font-size: 17px;
    line-height: 1.7;
}

.rc2-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 760px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.rc2-checks li {
    min-height: 52px;
    border: 1px solid var(--rc2-line);
    border-radius: 8px;
    background: #ffffff;
    padding: 14px;
    font-weight: 750;
}

.rc2-compatible {
    max-width: 760px;
    margin-top: 24px;
    border: 1px solid var(--rc2-line);
    border-radius: 8px;
    background: #ffffff;
    padding: 18px;
    scroll-margin-top: 96px;
}

.rc2-compatible h3 {
    margin: 0;
    color: var(--rc2-ink);
    font-size: 18px;
    line-height: 1.25;
}

.rc2-compatible p {
    margin: 8px 0 0;
    color: var(--rc2-muted);
    font-size: 14px;
    line-height: 1.55;
}

.rc2-compatible__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.rc2-compatible__list li {
    display: flex;
    align-items: center;
    min-height: 40px;
    min-width: 0;
    border: 1px solid #d7e0ea;
    border-radius: 8px;
    background: #f8fafc;
    color: #344054;
    padding: 9px 11px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

.rc2-offer {
    padding: 26px;
    position: sticky;
    top: 96px;
    box-shadow: 0 18px 50px rgba(16, 24, 40, .07);
}

.rc2-offer__label {
    color: var(--rc2-green);
    font-weight: 850;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.rc2-offer__intro {
    margin-top: 14px;
}

.rc2-offer__promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 16px;
    border: 1px solid #b7ebc6;
    border-radius: 8px;
    background: #ecfdf3;
    padding: 10px 12px;
}

.rc2-offer__promo span,
.rc2-offer__promo strong {
    display: block;
    line-height: 1.2;
}

.rc2-offer__promo span {
    color: #067647;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.rc2-offer__promo strong {
    color: #085d3a;
    font-size: 13px;
}

.rc2-countdown {
    display: block;
    margin-top: 10px;
    border: 1px solid var(--rc2-line);
    border-radius: 8px;
    background: #ffffff;
    padding: 7px 10px;
}

.rc2-countdown__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: center;
}

.rc2-countdown__grid span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0 8px;
}

.rc2-countdown__grid span:not(:last-child)::after {
    content: ":";
    position: absolute;
    top: 50%;
    right: -2px;
    color: #98a2b3;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    transform: translateY(-50%);
}

.rc2-countdown__grid b {
    color: #101828;
    font-size: 16px;
    line-height: 1;
    font-weight: 950;
    font-variant-numeric: tabular-nums;
}

.rc2-countdown__grid small {
    display: none;
}

.rc2-countdown--compact {
    margin-top: 10px;
}

.rc2-countdown.is-expired {
    border-color: var(--rc2-line);
    background: #f8fafc;
}

.rc2-price-stack {
    display: grid;
    gap: 4px;
    margin-top: 12px;
}

.rc2-price-stack__regular {
    width: fit-content;
    color: #98a2b3;
    font-size: 20px;
    font-weight: 850;
    line-height: 1;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.rc2-price-stack__current {
    color: var(--rc2-ink);
    font-size: 54px;
    line-height: .95;
    font-weight: 950;
}

.rc2-offer .rc2-btn {
    margin-top: 12px;
}

.rc2-offer__note {
    margin-top: 14px;
    font-size: 12px;
}

.rc2-offer__trust {
    display: grid;
    gap: 8px;
    margin: 20px 0 6px;
    padding: 0;
}

.rc2-offer__trust span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #344054;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.35;
}

.rc2-offer__trust span::before {
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--rc2-green);
}

.rc2-section--video {
    border-top: 1px solid var(--rc2-line);
}

.rc2-video {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
    gap: clamp(28px, 7vw, 86px);
    align-items: center;
}

.rc2-video__copy p {
    max-width: 660px;
    margin: 18px 0 0;
    color: #344054;
    font-size: 17px;
    line-height: 1.7;
}

.rc2-video__copy .rc2-btn {
    margin-top: 24px;
}

.rc2-video__frame {
    justify-self: center;
    width: min(100%, 310px);
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    background: #0b1220;
    box-shadow: 0 24px 56px rgba(16, 24, 40, .14);
}

.rc2-video__frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.rc2-payment-alert {
    display: grid;
    gap: 4px;
    margin: 16px 0 4px;
    border: 1px solid var(--rc2-line);
    border-radius: 8px;
    padding: 12px 14px;
    background: #f8fafc;
}

.rc2-payment-alert strong,
.rc2-payment-alert span {
    display: block;
}

.rc2-payment-alert strong {
    font-size: 14px;
}

.rc2-payment-alert span {
    color: var(--rc2-muted);
    font-size: 13px;
    line-height: 1.45;
}

.rc2-payment-alert--success {
    border-color: #a9e7c5;
    background: #f0fdf6;
}

.rc2-payment-alert--warning {
    border-color: #f4cf8c;
    background: #fff8eb;
}

.rc2-payment-alert--error {
    border-color: #f5b8b8;
    background: #fff5f5;
}

.rc2-checkout {
    margin-top: 16px;
}

.rc2-checkout__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.rc2-checkout label {
    display: grid;
    grid-template-rows: auto 44px 16px;
    align-content: start;
    align-items: start;
    gap: 6px;
    min-width: 0;
}

.rc2-checkout label span {
    color: #475467;
    font-size: 12px;
    font-weight: 800;
}

.rc2-checkout input,
.rc2-checkout textarea {
    width: 100%;
    border: 1px solid var(--rc2-line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--rc2-ink);
    font: inherit;
    font-size: 14px;
    padding: 10px 11px;
    outline: none;
}

.rc2-checkout input {
    height: 44px;
    line-height: 1.2;
}

.rc2-checkout textarea {
    min-height: 82px;
    resize: vertical;
    line-height: 1.45;
}

.rc2-checkout input:focus,
.rc2-checkout textarea:focus {
    border-color: var(--rc2-blue);
    box-shadow: 0 0 0 3px rgba(21, 94, 239, .12);
}

.rc2-checkout__field--invalid input,
.rc2-checkout__field--invalid input:focus {
    border-color: #d92d20;
    box-shadow: 0 0 0 3px rgba(217, 45, 32, .12);
}

.rc2-checkout__field-error {
    min-height: 16px;
    color: #b42318;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.rc2-checkout__field-spacer {
    display: block;
    min-height: 16px;
    visibility: hidden;
}

.rc2-checkout button[disabled],
.rc2-checkout button.is-loading {
    cursor: wait;
    opacity: .78;
}

.rc2-checkout__wide {
    grid-column: 1 / -1;
}

.rc2-checkout label.rc2-checkout__wide {
    grid-template-rows: auto minmax(82px, auto);
}

.rc2-checkout__note {
    margin: 10px 0 0;
    color: var(--rc2-muted);
    font-size: 12px;
    line-height: 1.45;
}

.rc2-checkout-page {
    min-height: 100vh;
    background: #f6f8fb;
}

.rc2-checkout-hero {
    border-bottom: 1px solid var(--rc2-line);
    background: #ffffff;
}

.rc2-checkout-hero__inner {
    padding: 46px 0 34px;
}

.rc2-back-link {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--rc2-blue);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.rc2-checkout-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0;
}

.rc2-checkout-hero p:not(.rc2-eyebrow) {
    max-width: 680px;
    margin: 18px 0 0;
    color: #344054;
    font-size: 18px;
    line-height: 1.55;
}

.rc2-checkout-shell {
    padding: 42px 0 72px;
}

.rc2-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: clamp(22px, 4vw, 44px);
    align-items: start;
}

.rc2-checkout-panel,
.rc2-checkout-summary {
    border: 1px solid var(--rc2-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(16, 24, 40, .06);
}

.rc2-checkout-panel {
    padding: clamp(20px, 4vw, 34px);
}

.rc2-checkout-panel__head {
    margin-bottom: 18px;
}

.rc2-checkout-panel__head h2,
.rc2-auth-gate h2,
.rc2-success-box h2,
.rc2-checkout-summary h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: 0;
}

.rc2-checkout-panel__head p,
.rc2-auth-gate p,
.rc2-success-box p,
.rc2-checkout-summary p {
    margin: 10px 0 0;
    color: var(--rc2-muted);
    line-height: 1.6;
}

.rc2-auth-gate,
.rc2-success-box {
    display: grid;
    gap: 8px;
}

.rc2-license-card {
    display: grid;
    gap: 10px;
    min-width: 0;
    margin-top: 14px;
    border: 1px solid var(--rc2-line);
    border-radius: 8px;
    background: #f8fafc;
    padding: 16px;
}

.rc2-license-card__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    min-width: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5eaf0;
}

.rc2-license-card__row span {
    flex: 0 0 auto;
    color: #475467;
    font-size: 12px;
    font-weight: 800;
}

.rc2-license-card__row strong {
    min-width: 0;
    color: var(--rc2-ink);
    font-size: 14px;
    line-height: 1.45;
    text-align: right;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.rc2-license-card .rc2-btn {
    margin-top: 2px;
}

.rc2-video-cta {
    display: grid;
    gap: 3px;
    margin-top: 12px;
    border: 1px solid #c7d7fe;
    border-radius: 8px;
    background: #f8fbff;
    color: var(--rc2-ink);
    padding: 14px;
    text-decoration: none;
}

.rc2-video-cta span {
    color: var(--rc2-blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.rc2-video-cta strong {
    font-size: 14px;
    line-height: 1.4;
}

.rc2-auth-gate__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.rc2-checkout-summary {
    position: sticky;
    top: 96px;
    padding: 24px;
}

.rc2-checkout-summary__label {
    color: var(--rc2-green);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rc2-checkout-summary h2 {
    margin-top: 12px;
    font-size: 24px;
}

.rc2-checkout-summary__price {
    margin-top: 14px;
    color: var(--rc2-ink);
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.rc2-checkout-summary__deal {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.rc2-checkout-summary__deal span {
    color: #98a2b3;
    font-size: 17px;
    font-weight: 800;
    text-decoration: line-through;
}

.rc2-checkout-summary__deal strong {
    border-radius: 8px;
    background: #ecfdf3;
    color: #067647;
    padding: 6px 9px;
    font-size: 12px;
    font-weight: 900;
}

.rc2-checkout-summary ul {
    display: grid;
    gap: 9px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.rc2-checkout-summary li {
    display: flex;
    gap: 9px;
    color: #344054;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.35;
}

.rc2-checkout-summary li::before {
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-top: 5px;
    border-radius: 99px;
    background: var(--rc2-green);
}

.rc2-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.rc2-steps div {
    padding: 20px;
}

.rc2-steps strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--rc2-green);
}

.rc2-section--faq {
    padding-top: 40px;
}

.rc2-faq {
    display: grid;
    gap: 10px;
}

.rc2-faq details {
    padding: 18px 20px;
}

.rc2-faq summary {
    cursor: pointer;
    font-size: 17px;
    font-weight: 850;
}

.rc2-faq p {
    margin: 14px 0 0;
    color: var(--rc2-muted);
    line-height: 1.65;
}

.rc2-final {
    padding: 68px 0;
    background: #101828;
    color: #ffffff;
}

.rc2-final__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.rc2-final h2 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: 40px;
    line-height: 1.08;
}

.rc2-final__copy p {
    max-width: 680px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: 15px;
    line-height: 1.65;
}

.rc2-final__copy a {
    color: #ffffff;
    font-weight: 800;
}

@media (max-width: 980px) {
    .rc2-hero {
        min-height: 660px;
        align-items: flex-start;
        background-image:
            linear-gradient(180deg, rgba(247, 248, 250, .99) 0%, rgba(247, 248, 250, .9) 42%, rgba(247, 248, 250, 0) 74%, rgba(247, 248, 250, 0) 100%),
            var(--rc2-hero-image);
        background-size: auto, min(72vw, 380px) auto;
        background-position: center, center bottom 34px;
    }

    .rc2-hero__inner {
        padding-top: 54px;
        padding-bottom: 300px;
    }

    .rc2-hero h1 {
        font-size: 58px;
    }

    .rc2-section h2,
    .rc2-checkout-hero h1 {
        font-size: 38px;
    }

    .rc2-strip__grid,
    .rc2-card-grid,
    .rc2-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rc2-copy-grid,
    .rc2-note-grid,
    .rc2-pricing,
    .rc2-video {
        grid-template-columns: 1fr;
    }

    .rc2-compatible__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rc2-offer {
        position: static;
        max-width: 560px;
        margin-inline: auto;
    }

    .rc2-video__frame {
        width: min(100%, 300px);
    }

    .rc2-checkout-layout {
        grid-template-columns: 1fr;
    }

    .rc2-checkout-summary {
        position: static;
        order: -1;
    }
}

@media (max-width: 640px) {
    .rc2-container {
        width: min(100% - 28px, 1180px);
    }

    .rc2-hero {
        min-height: 690px;
        background-size: auto, min(88vw, 340px) auto;
    }

    .rc2-hero h1 { font-size: 46px; }

    .rc2-section h2,
    .rc2-checkout-hero h1,
    .rc2-final h2 { font-size: 32px; }

    .rc2-checkout-panel__head h2,
    .rc2-auth-gate h2,
    .rc2-success-box h2,
    .rc2-checkout-summary h2 { font-size: 24px; }

    .rc2-hero__lead {
        font-size: 17px;
    }

    .rc2-hero__actions,
    .rc2-final__inner {
        align-items: stretch;
        flex-direction: column;
    }

    .rc2-btn {
        width: 100%;
    }

    .rc2-hero__facts {
        display: grid;
        grid-template-columns: 1fr;
    }

    .rc2-strip__grid,
    .rc2-card-grid,
    .rc2-steps,
    .rc2-checkout__grid,
    .rc2-checks {
        grid-template-columns: 1fr;
    }

    .rc2-compatible {
        padding: 16px;
    }

    .rc2-compatible__list {
        grid-template-columns: 1fr;
    }

    .rc2-strip__grid div {
        border-right: 0;
        border-bottom: 1px solid var(--rc2-line);
    }

    .rc2-strip__grid div:last-child {
        border-bottom: 0;
    }

    .rc2-section {
        padding: 54px 0;
    }

    .rc2-offer {
        padding: 20px;
        width: 100%;
    }

    .rc2-price-stack__current { font-size: 44px; }

    .rc2-offer__promo { align-items: flex-start; flex-direction: column; }

    .rc2-countdown__grid {
        gap: 0;
    }

    .rc2-countdown__grid b {
        font-size: 15px;
    }

    .rc2-video__frame {
        width: min(100%, 280px);
    }

    .rc2-checkout input,
    .rc2-checkout textarea {
        font-size: 16px;
    }

    .rc2-checkout-hero__inner {
        padding: 34px 0 28px;
    }

    .rc2-checkout-shell {
        padding: 24px 0 52px;
    }

    .rc2-checkout-panel,
    .rc2-checkout-summary {
        padding: 18px;
    }

    .rc2-auth-gate__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .rc2-license-card__row {
        display: grid;
        gap: 5px;
    }

    .rc2-license-card__row strong {
        text-align: left;
    }

    .rc2-checkout-summary__price {
        font-size: 38px;
    }
}
