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

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
}

.v7-page {
    width: 432px;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 0;
    font-family: "Inter", sans-serif;
    background: #fff;
}

.v7-header {
    height: 203px;
    background: #f7f7f7;
    border-bottom: 1px solid #e3e3e3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 33px;
}

.v7-logo {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 12px;
}

.v7-brand-title {
    margin: 0;
    font-weight: 700;
    font-size: 22px;
    color: #0a0a0a;
}

.v7-content {
    --v7-block-gap: 32px;
    --v7-block-gap-tight: 16px;
    --v7-section-gap: calc(var(--v7-block-gap-tight) * 1.4);
    --v7-footer-stack-gap: calc(var(--v7-section-gap) * 1.3);
    --v7-checkout-button-color: #228b22;
    --v7-checkout-button-color-light: #4aa04a;
    --v7-checkout-button-text: #ffffff;
    --v7-checkout-button-shadow: rgba(34, 139, 34, 0.25);
    padding: 34px 24px 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.v7-section-label {
    margin: 0 0 8px;
    font-weight: 700;
    font-size: 15px;
    color: #0a0a0a;
    letter-spacing: -0.02em;
}

.v7-plan-wrap {
    margin-bottom: var(--v7-block-gap);
}

.v7-plan-box {
    width: 384px;
    max-width: 100%;
    height: 50px;
    border-radius: 5px;
    border: 1px solid rgba(33, 33, 33, 0.09);
    background: #fff;
    position: relative;
}

.v7-radio-outer {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.v7-radio-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0a0a0a;
}

.v7-plan-price {
    position: absolute;
    left: 42px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    font-weight: 700;
    font-size: 15px;
    color: #0a0a0a;
    letter-spacing: -0.02em;
}

.v7-plan-then {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    font-weight: 300;
    font-size: 14px;
    color: rgba(43, 43, 43, 0.82);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.v7-payment-skeleton {
    width: 384px;
    max-width: 100%;
}

.v7-payment-skeleton[hidden] {
    display: none !important;
}

.v7-skeleton {
    border-radius: 5px;
    background: linear-gradient(
        90deg,
        rgba(33, 33, 33, 0.06) 0%,
        rgba(33, 33, 33, 0.1) 50%,
        rgba(33, 33, 33, 0.06) 100%
    );
    background-size: 200% 100%;
    animation: v7-skeleton-shimmer 1.4s ease-in-out infinite;
}

@keyframes v7-skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.v7-skeleton-divider {
    width: 100%;
    height: 12px;
    margin-top: 1.4px;
    margin-bottom: calc(12px + 1.4px);
}

.v7-skeleton-express {
    width: 100%;
    height: 48px;
    margin-bottom: calc(12px + 1.4px);
}

.v7-skeleton-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.v7-skeleton-input {
    width: 188px;
    height: 53px;
    flex-shrink: 0;
}

.v7-skeleton-input--full {
    width: 100%;
}

.v7-skeleton-card {
    width: 100%;
    height: 53px;
    margin-bottom: var(--v7-section-gap);
}

.v7-skeleton-access-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: var(--v7-section-gap);
}

.v7-skeleton-access-label {
    width: 220px;
    max-width: 70%;
    height: 14px;
}

.v7-skeleton-access-price {
    width: 36px;
    height: 14px;
    flex-shrink: 0;
}

.v7-skeleton-join {
    width: 100%;
    height: 82px;
    margin-bottom: var(--v7-section-gap);
}

#payment-methods[hidden] {
    display: none !important;
}

.v7-express-wrap {
    width: 384px;
    max-width: 100%;
    min-height: 48px;
    margin-bottom: 0;
}

.v7-express-wrap:not(.is-express-collapsed) {
    margin-bottom: calc(12px + 1.4px);
}

.v7-express-wrap.is-express-collapsed {
    display: none;
}

#express-checkout-element {
    width: 100%;
    min-height: 48px;
}

.v7-divider-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 384px;
    max-width: 100%;
    margin-top: 1.4px;
    margin-bottom: calc(12px + 1.4px);
}

.v7-divider-row[hidden] {
    display: none !important;
}

.v7-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(33, 33, 33, 0.09);
}

.v7-divider-text {
    font-size: 12px;
    color: rgba(43, 43, 43, 0.5);
    font-family: "Inter", sans-serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.v7-name-email-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 384px;
    max-width: 100%;
    margin-bottom: 8px;
}

.v7-text-input {
    width: 188px;
    height: 53px;
    flex-shrink: 0;
    border: 1px solid rgba(33, 33, 33, 0.09);
    border-radius: 5px;
    padding: 0 14px;
    outline: none;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #0a0a0a;
    letter-spacing: -0.02px;
    background: #fff;
}

.v7-text-input::placeholder {
    color: rgba(43, 43, 43, 0.44);
}

.v7-text-input:focus {
    border: 1px solid rgba(33, 33, 33, 0.3);
}

.v7-text-input--full {
    width: 100%;
}

.v7-card-single-line {
    width: 384px;
    max-width: 100%;
    height: 53px;
    border: 1px solid rgba(33, 33, 33, 0.09);
    border-radius: 5px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    background: #fff;
    margin-bottom: var(--v7-section-gap);
}

#card-element {
    width: 100%;
}

.v7-access-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 384px;
    max-width: 100%;
    margin-bottom: var(--v7-section-gap);
}

.v7-access-label {
    font-weight: 300;
    font-size: 14px;
    color: rgba(43, 43, 43, 0.82);
    letter-spacing: -0.02em;
}

.v7-access-price {
    font-weight: 500;
    font-size: 14px;
    color: rgba(43, 43, 43, 0.82);
    letter-spacing: -0.02em;
}

.v7-error {
    display: none;
    font-size: 13px;
    color: #df1b41;
    margin-bottom: 8px;
}

.v7-error:not(:empty) {
    display: block;
}

.v7-join-wrap {
    margin-bottom: var(--v7-footer-stack-gap);
}

.v7-join-wrap.is-checkout-busy {
    pointer-events: none;
}

.v7-join-wrap.is-checkout-busy .v7-join-btn {
    opacity: 1;
}

.v7-join-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 382px;
    max-width: 100%;
    min-height: 82px;
    height: auto;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--v7-checkout-button-color-light) 0%, var(--v7-checkout-button-color) 100%);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    padding: 12px 16px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 4px 18px var(--v7-checkout-button-shadow);
}

.v7-join-btn:hover:not(:disabled) {
    filter: brightness(1.04);
}

.v7-join-btn__title {
    width: 100%;
    max-width: 100%;
    font-weight: 700;
    font-size: 18px;
    color: var(--v7-checkout-button-text);
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-align: center;
}

.v7-join-btn__subtitle {
    width: 100%;
    max-width: 100%;
    font-weight: 300;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-align: center;
}

.v7-join-btn__loading {
    width: 100%;
    font-weight: 600;
    font-size: 18px;
    color: var(--v7-checkout-button-text);
    letter-spacing: 0.04em;
    text-align: center;
}

.v7-join-btn.is-loading .v7-join-btn__title,
.v7-join-btn.is-loading .v7-join-btn__subtitle {
    display: none;
}

.v7-join-btn.is-loading .v7-join-btn__loading {
    display: block !important;
}

.v7-join-btn:not(.is-loading) .v7-join-btn__loading {
    display: none !important;
}

.v7-join-btn:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.v7-secured-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 384px;
    max-width: 100%;
    margin: 0 0 var(--v7-footer-stack-gap);
    padding: 0;
    color: #16a34a;
}

.v7-secured-badge__icon {
    flex-shrink: 0;
    display: block;
}

.v7-secured-badge__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #111827;
    letter-spacing: 0.01em;
}

.v7-card-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 384px;
    max-width: 100%;
    margin: 0 0 calc(var(--v7-footer-stack-gap) * 2);
}

.v7-card-brand {
    width: 36px;
    height: 24px;
    flex-shrink: 0;
    display: block;
}

.v7-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 8px;
    width: 384px;
    max-width: 100%;
    margin: 0 0 var(--v7-footer-stack-gap);
    padding: 0;
    line-height: 1.2;
}

.v7-legal a {
    font-size: 12px;
    font-weight: 400;
    color: rgba(43, 43, 43, 0.62);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.v7-legal a:hover {
    color: rgba(43, 43, 43, 0.85);
}

.v7-legal__sep {
    font-size: 12px;
    color: rgba(43, 43, 43, 0.35);
}

.v7-join-btn:disabled,
.v7-join-btn.is-loading {
    cursor: not-allowed;
}

.v7-express-wrap.is-checkout-busy {
    pointer-events: none;
    opacity: 0.65;
}

.v7-join-wrap.is-checkout-busy {
    pointer-events: none;
}

.checkout-ui-hidden {
    display: none !important;
}
