.signup_content {
    width: 100%;
    height: auto;
    margin-top: 110px;
    padding-top: 58px;
}

.signup_content * {
    box-sizing: border-box;
    min-width: 0;
}

.signup_intro {
    width: calc(100% - 80px);
    max-width: 1180px;
    margin: 0 auto 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.signup_eyebrow {
    color: var(--textColorOrange);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.signup_title {
    max-width: 780px;
    margin-top: 16px;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
}

.signup_title span {
    background-image: linear-gradient(0deg, #ee5607 0%, #f27511 69%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.signup_subtitle {
    max-width: 680px;
    margin-top: 18px;
    color: #aaa6a7;
    font-size: 1rem;
    line-height: 27px;
}

.signup_form {
    width: calc(100% - 80px);
    max-width: 1180px;
    margin: 0 auto 58px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.signup_section {
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    background: linear-gradient(110deg, rgba(6, 14, 21, 0.96) 0%, rgba(12, 17, 22, 1) 100%);
    border: solid 1px #1b242b;
    border-radius: 12px;
}

.signup_section_heading {
    display: flex;
    align-items: center;
    gap: 16px;
}

.signup_step {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f27511;
    font-size: 0.82rem;
    font-weight: 700;
    background-color: rgba(238, 86, 7, 0.1);
    border: solid 1px #5d351e;
    border-radius: 10px;
}

.signup_section_title {
    font-size: 1.18rem;
    font-weight: 600;
}

.signup_section_text {
    margin-top: 6px;
    color: #918d8e;
    font-size: 0.83rem;
    line-height: 20px;
}

.signup_fields,
.signup_options {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.signup_field {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.signup_field_full {
    width: 100%;
}

.signup_field_small {
    width: calc(25% - 15px);
}

.signup_field_wide {
    width: calc(75% - 5px);
}

.signup_field label {
    color: #d8d4d5;
    font-size: 0.82rem;
    font-weight: 500;
}

.signup_field input,
.signup_field select {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.9rem;
    background-color: #0b1218;
    border: solid 1px #283139;
    border-radius: 8px;
    outline: none;
    transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.signup_field select {
    cursor: pointer;
}

.signup_field input::placeholder {
    color: #666b70;
}

.signup_field input:focus,
.signup_field select:focus {
    border-color: #c86516;
    background-color: #0e171e;
    box-shadow: 0 0 0 3px rgba(238, 86, 7, 0.1);
}

.signup_option {
    width: calc(50% - 10px);
    min-height: 92px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    background-color: #0b1218;
    border: solid 1px #283139;
    border-radius: 10px;
    transition: border-color 160ms ease, background-color 160ms ease;
}

.signup_option:hover {
    border-color: #614023;
}

.signup_option input {
    width: 0;
    height: 0;
    margin: 0;
    opacity: 0;
}

.signup_option_control {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 2px #56616a;
    border-radius: 50%;
}

.signup_option_control::after {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background: transparent;
}

.signup_option:has(input:checked) {
    border-color: #8a4a1e;
    background: linear-gradient(110deg, rgba(238, 86, 7, 0.1) 0%, rgba(15, 19, 22, 1) 100%);
}

.signup_option input:focus-visible + .signup_option_control {
    box-shadow: 0 0 0 3px rgba(238, 86, 7, 0.22);
}

.signup_option input:checked + .signup_option_control {
    border-color: #f27511;
}

.signup_option input:checked + .signup_option_control::after {
    background: linear-gradient(45deg, #ee5607 0%, #f27511 69%);
}

.signup_option_content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.signup_option_title {
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 600;
}

.signup_option_description {
    color: #918d8e;
    font-size: 0.8rem;
}

.signup_option_badge {
    padding: 7px 9px;
    color: #f28a28;
    font-size: 0.68rem;
    white-space: nowrap;
    background-color: rgba(238, 86, 7, 0.09);
    border: solid 1px #5d351e;
    border-radius: 7px;
}

.signup_card_fields {
    width: 100%;
    padding-top: 26px;
    display: none;
    flex-direction: column;
    gap: 22px;
    border-top: solid 1px #222b32;
}

.signup_payment_section:has(input[value="credit_card"]:checked) .signup_card_fields {
    display: flex;
}

.signup_card_notice {
    color: #a9a5a6;
    font-size: 0.8rem;
    line-height: 21px;
}

.signup_submit_area {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background-color: #0b1218;
    border: solid 1px #222b32;
    border-radius: 10px;
}

.signup_submit_note {
    color: #918d8e;
    font-size: 0.8rem;
    line-height: 21px;
}

.signup_submit {
    min-width: 270px;
    height: 52px;
    padding: 0 24px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
}

@media (max-width: 800px) {
    .signup_content {
        padding-top: 42px;
    }

    .signup_intro,
    .signup_form {
        width: calc(100% - 40px);
    }

    .signup_title {
        font-size: 2.1rem;
    }

    .signup_section {
        padding: 24px;
    }

    .signup_field,
    .signup_field_small,
    .signup_field_wide {
        width: calc(50% - 10px);
    }
}

@media (max-width: 560px) {
    .signup_intro,
    .signup_form {
        width: calc(100% - 28px);
    }

    .signup_title {
        font-size: 1.8rem;
    }

    .signup_subtitle {
        font-size: 0.9rem;
        line-height: 24px;
    }

    .signup_section {
        padding: 20px;
        gap: 24px;
    }

    .signup_section_heading {
        align-items: flex-start;
    }

    .signup_option,
    .signup_field,
    .signup_field_small,
    .signup_field_wide {
        width: 100%;
    }

    .signup_option_badge {
        display: none;
    }

    .signup_submit_area {
        padding: 22px;
        flex-direction: column;
        align-items: stretch;
    }

    .signup_submit_note {
        text-align: center;
    }

    .signup_submit {
        width: 100%;
        min-width: 0;
    }
}
