.start-pricing {
    --start-pricing-blue: var(--start-blue, #1288f6);
    --start-pricing-blue-dark: var(--start-blue-dark, #0869ef);
    --start-pricing-price-gradient: linear-gradient(90deg, var(--start-pricing-blue-dark) 0%, var(--start-pricing-blue) 52%, #5ba9ff 100%);
    padding: clamp(56px, 7vw, 96px) 0;
    background: #fff;
}

.start-pricing__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.start-pricing__visual {
    display: grid;
    place-items: center;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 18px;
    background: #fff;
}

.start-pricing__visual img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.start-pricing__title {
    margin: 0;
    color: #111;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 720;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.start-pricing__subtitle {
    max-width: 680px;
    margin: 14px auto 0;
    color: #5f6368;
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.6;
}

.start-pricing__billing {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 224px);
    margin: 28px auto 0;
    padding: 3px;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 24px rgba(17, 24, 39, .045);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.start-pricing__billing::before {
    position: absolute;
    z-index: -1;
    top: 3px;
    left: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    border-radius: 999px;
    background: #111;
    box-shadow: 0 4px 12px rgba(17, 24, 39, .14);
    content: '';
    transform: translateX(0);
    transition: transform .38s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease;
}

.start-pricing__billing[data-cycle='annual']::before {
    transform: translateX(100%);
}

.start-pricing__billing-option {
    position: relative;
    z-index: 1;
    min-width: 0;
    padding: 9px 16px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #667085;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: color .24s ease;
}

.start-pricing__billing-option:hover {
    color: #344054;
}

.start-pricing__billing-option[aria-pressed='true'] {
    color: #fff;
}

.start-pricing__carousel {
    position: relative;
    margin-top: 46px;
}

.start-pricing__grid {
    --start-pricing-card-width: 368px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, var(--start-pricing-card-width)));
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    margin: 0;
}

.start-pricing__grid.is-single {
    grid-template-columns: minmax(0, 368px);
    justify-content: center;
}

.start-pricing__grid.is-carousel {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
}

.start-pricing__grid.is-carousel::-webkit-scrollbar {
    display: none;
}

.start-pricing__grid.is-carousel .start-pricing__card {
    flex: 0 0 var(--start-pricing-card-width);
    width: var(--start-pricing-card-width);
    scroll-snap-align: start;
}

.start-pricing__carousel-control {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(17, 24, 39, .09);
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    color: #111;
    cursor: pointer;
    transform: translateY(-50%);
    transition: opacity .2s ease, border-color .2s ease, background .2s ease;
    backdrop-filter: blur(10px);
}

.start-pricing__carousel.is-carousel .start-pricing__carousel-control {
    display: inline-flex;
}

.start-pricing__carousel-control--prev {
    left: -18px;
}

.start-pricing__carousel-control--next {
    right: -18px;
}

.start-pricing__carousel-control svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.start-pricing__carousel-control:hover {
    border-color: rgba(17, 24, 39, .18);
    background: #fff;
}

.start-pricing__carousel-control:disabled {
    opacity: 0;
    pointer-events: none;
}

.start-pricing__card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 368px;
    min-width: 0;
    justify-self: center;
    padding: 28px 22px 30px;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, .07);
    border-radius: 28px;
    background: #fff;
    color: #111;
}

.start-pricing__card.is-featured {
    border-color: rgba(17, 24, 39, .07);
}

.start-pricing__badge {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 9px;
    padding: 5px 11px;
    overflow: hidden;
    border: 1px solid #111;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.start-pricing__badge--gradient {
    border-color: transparent;
    background: linear-gradient(115deg, var(--start-pricing-badge-from, #1288f6), var(--start-pricing-badge-to, #5b8cff));
    color: var(--start-pricing-badge-text, #fff);
}

.start-pricing__name {
    margin: 0;
    color: #101010;
    font-size: clamp(24px, 2.4vw, 30px);
    font-weight: 650;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.start-pricing__description {
    margin: 13px 0 0;
    color: #5f6368;
    font-size: 15px;
    line-height: 1.48;
}

.start-pricing__price {
    margin-top: 34px;
}

.start-pricing__card:not(.has-description) .start-pricing__price {
    margin-top: 22px;
}

.start-pricing__price-state.has-comparison-space {
    position: relative;
}

.start-pricing__price-line {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px;
}

.start-pricing__currency {
    font-size: 14px;
    font-weight: 700;
}

.start-pricing__amount {
    font-size: clamp(31px, 3.2vw, 39px);
    font-weight: 520;
    line-height: 1;
    letter-spacing: -.04em;
}

.start-pricing__card--price-gradient .start-pricing__currency,
.start-pricing__card--price-gradient .start-pricing__amount {
    display: inline-block;
    background: var(--start-pricing-price-gradient);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.start-pricing__card--price-black .start-pricing__currency,
.start-pricing__card--price-black .start-pricing__amount {
    color: #111;
}

.start-pricing__cycle {
    margin-left: 8px;
    color: #667085;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .01em;
}

.start-pricing__annual-estimate {
    position: absolute;
    top: -21px;
    left: 0;
    min-height: 18px;
    color: #7a7f87;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

.start-pricing__annual-estimate span {
    text-decoration-line: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: currentColor;
}

.start-pricing__setup {
    margin: 10px 0 0;
    color: #667085;
    font-size: 12px;
    line-height: 1.45;
}

.start-pricing__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin-top: 34px;
    padding: 10px 18px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(100deg, var(--start-pricing-blue) 0%, #4a93ff 100%);
    box-shadow: none;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .24s ease, background .24s ease;
}

.start-pricing__action-label {
    position: relative;
    z-index: 1;
}

.start-pricing__action::before {
    position: absolute;
    z-index: 0;
    top: -40%;
    left: -34%;
    width: 22%;
    height: 180%;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .52), transparent);
    content: '';
    opacity: 0;
    pointer-events: none;
    transform: translateX(-240%) rotate(18deg);
}

.start-pricing__action:hover {
    background: linear-gradient(100deg, var(--start-pricing-blue-dark) 0%, var(--start-pricing-blue) 100%);
    box-shadow: none;
    color: #fff;
    transform: translateY(-1px);
}

.start-pricing__action:hover::before {
    animation: startPricingActionReflection 1.05s cubic-bezier(.22, 1, .36, 1) infinite;
}

@keyframes startPricingActionReflection {
    0% {
        opacity: 0;
        transform: translateX(-240%) rotate(18deg);
    }

    18% {
        opacity: .78;
    }

    100% {
        opacity: 0;
        transform: translateX(760%) rotate(18deg);
    }
}

.start-pricing__action:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--start-pricing-blue) 48%, transparent);
    outline-offset: 3px;
}

.start-pricing__action.is-outline {
    border: 1px solid #7b7f86;
    background: #fff;
    box-shadow: none;
    color: #111;
}

.start-pricing__action.is-outline:hover {
    border-color: #111;
    background: #f8f9fa;
    box-shadow: none;
    color: #111;
}

.start-pricing__benefits-intro {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
    margin-top: 34px;
    padding-bottom: 22px;
    border-bottom: 1px solid #dfe3e8;
    color: #111;
    font-size: 15px;
    line-height: 1.45;
}

.start-pricing__benefits-intro-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    min-height: 24px;
    color: var(--start-pricing-blue);
    font-size: 21px;
}

.start-pricing__benefits-intro-icon svg {
    width: 1em;
    height: 1em;
}

.start-pricing__resources {
    margin-top: 0;
}

.start-pricing__resource {
    padding: 22px 0;
}

.start-pricing__resource:first-child {
    padding-top: 22px;
}

.start-pricing__resource + .start-pricing__resource {
    border-top: 1px solid #dfe3e8;
}

.start-pricing__resource:last-child {
    padding-bottom: 0;
}

.start-pricing__resource-head {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
}

.start-pricing__resource-icon,
.start-pricing__highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #202124;
}

.start-pricing__resource-icon {
    width: 24px;
    min-height: 24px;
    font-size: 21px;
}

.start-pricing__resource-icon svg,
.start-pricing__highlight-icon svg {
    width: 1em;
    height: 1em;
}

.start-pricing__resource-copy {
    min-width: 0;
}

.start-pricing__resource-description {
    margin: 6px 0 0;
    color: #5f6368;
    font-size: 14px;
    line-height: 1.48;
}

.start-pricing__resource-title {
    margin: 0;
    color: #111;
    font-size: 16px;
    font-weight: 750;
    line-height: 1.35;
}


.start-pricing__highlights {
    display: grid;
    gap: 13px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.start-pricing__resource > .start-pricing__highlights:first-child {
    margin-top: 0;
}

.start-pricing__highlights li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
    color: #111;
    font-size: 15px;
    line-height: 1.45;
}

.start-pricing__highlight-icon {
    width: 24px;
    min-height: 22px;
    font-size: 18px;
}

.start-pricing__highlights li.is-unavailable {
    color: #98a2b3;
}

.start-pricing__highlights li.is-unavailable .start-pricing__highlight-icon {
    color: #98a2b3;
}

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

.start-pricing--single {
    padding-top: 46px;
}

.start-pricing--single .start-pricing__billing {
    margin-top: 0;
}

.start-pricing--single .start-pricing__carousel {
    margin-top: 28px;
}

@media (prefers-reduced-motion: reduce) {
    .start-pricing__action::before {
        animation: none;
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .start-pricing__grid:not(.is-single) .start-pricing__card-head {
        min-height: 0;
    }
}

@media (max-width: 767px) {
    .start-pricing {
        padding: 52px 0;
    }

    .start-pricing__header {
        flex-direction: column;
    }

    .start-pricing__carousel {
        margin-top: 32px;
    }

    .start-pricing__grid,
    .start-pricing__grid.is-single {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .start-pricing__grid.is-carousel {
        gap: 18px;
    }

    .start-pricing__carousel-control--prev {
        left: 6px;
    }

    .start-pricing__carousel-control--next {
        right: 6px;
    }

    .start-pricing__card {
        padding: 24px 20px 26px;
        border-radius: 24px;
    }

    .start-pricing__billing {
        width: min(100%, 224px);
    }
}
