:root {
    --orange: #e8590c;
    --orange-soft: #fff3e8;
    --green: #1d7a3a;
    --red: #d92b2b;
    --amber: #c47f00;
    --ink: #3b3b3b;
    --gray: #8a8a8a;
    --line: #dcdcdc;
    --side: #3f3f3f;
    --green-dark: #1d7a3a;
    --green-soft: #e8f5ec;
}
.color-red {
    color: var(--red);
}
.color-gray {
    color: var(--gray);
}
/*BEGIN: ADMIN STATUS TRACKER*/
.tracker-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0 0 4px 4px;
    padding: 16px 20px 12px;
}

.tracker-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

    .tracker-top .label {
        font-size: 12px;
        font-weight: bold;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: #777;
    }
    .tracker-top .meta {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
    }
.tracker {
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    padding: 4px 0;
}
    .tracker .tstep {
        flex: 1;
        min-width: 104px;
        position: relative;
        text-align: center;
    }
.tstep .bar {
    position: absolute;
    top: 12px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: #d4d4d4;
    z-index: 0;
}
.tstep.done .bar {
    background: var(--green-dark);
}
.tstep .node {
    position: relative;
    z-index: 1;
    margin: 0 auto 7px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #c4c4c4;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}
.tstep.done .node {
    background: var(--green-dark);
    border-color: var(--green-dark);
}
.tstep.current .node {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(217, 43, 43, .18);
    animation: pulse 1.6s infinite;
}
.tstep h4 {
    margin: 0 0 2px;
    font-size: 11.5px;
    line-height: 1.25;
    color: #444;
    font-weight: bold;
}
.tstep .sub {
    font-size: 10.5px;
    color: var(--gray);
    line-height: 1.3;
}
.tstep.done .sub {
    color: var(--green-dark);
}
.tstep .dwell {
    display: inline-block;
    margin-top: 3px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 3px;
    padding: 1px 6px;
}
.tstep:last-child .bar {
    display: none;
}
.dwell.ok {
    background: #eee;
    color: #777;
}
.chip {
    font-size: 11.5px;
    font-weight: bold;
    border-radius: 3px;
    padding: 4px 9px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
    .chip.notes {
        background: #fff3e8;
        color: var(--orange);
        border: 1px solid #f3cfae;
    }
    .chip .count {
        background: var(--orange);
        color: #fff;
        border-radius: 50%;
        width: 16px;
        height: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 10.5px;
    }
    .chip.alert {
        background: #fdecea;
        color: var(--red);
        border: 1px solid #f3b9b3;
        margin-bottom:0px;
    }
    .chip.ok {
        background: #e8f5ec;
        color: var(--green-dark);
        border: 1px solid #cfe3d3;
        cursor: default;
    }
.now-strip {
    margin-top: 12px;
    border: 1px solid #f0c8a4;
    border-left: 4px solid var(--red);
    background: #fffaf7;
    border-radius: 0 3px 3px 0;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
}
    .now-strip .txt strong {
        color: var(--red);
    }
    .now-strip .actions {
        display: flex;
        gap: 7px;
        flex-wrap: wrap;
    }
.btn.ghost {
    background: #fff;
    border: 1px solid var(--line);
    color: #555;
}
/*END: ADMIN STATUS TRACKER*/

.form-chip {
    display: inline-block;
    border-radius: 3px;
    padding: 2px 7px;
    font-size: 11px;
    margin: 1px 2px 1px 0;
    font-weight: bold;
}

    .form-chip.c {
        background: #e8f0fb;
        border: 1px solid #c4d7f2;
        color: #2c5d9c;
    }

    .form-chip.p {
        background: var(--orange-soft);
        border: 1px solid #f3cfae;
        color: var(--orange);
    }

.switch input[type=checkbox] {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch .slider {
    display: block;
    position: relative;
    width: 46px;
    height: 24px;
    background: #ccc;
    border-radius: 13px;
    cursor: pointer;
    transition: .2s;
    flex-shrink: 0;
    display: inline-block;
}

    .switch .slider::after {
        content: "";
        position: absolute;
        top: 3px;
        left: 3px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #fff;
        transition: .2s;
    }

.switch input[type=checkbox]:checked ~ .slider {
    background: var(--green);
}

    .switch input[type=checkbox]:checked ~ .slider::after {
        left: 25px;
    }

.switch .text {
    position: relative;
    bottom: 8px;
    margin-left: 5px;
}

.checks input {
    accent-color: var(--orange);
    width: 15px;
    height: 15px;
}

.checks label {
    font-weight: normal;
    font-size: 13.5px;
    cursor: pointer;
}

.fields-title {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #777;
    border-bottom: 1px solid #eee;
}

.hint {
    font-size: 11.5px;
    color: #999;
    margin-top: 4px;
}

.pill strong {
    color: #fff;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242,101,34,0.15);
    border: 1px solid rgba(242,101,34,0.4);
    color: #FFB98A;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.dot-green {
    background: #10B981;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column
}

.psp-v2-close {
    position: fixed;
    top: 18px;
    right: 22px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(0, 0, 0, .08);
    color: #0F172A;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
    font-family: inherit;
    line-height: 1;
    text-decoration: none;
}

    .psp-v2-close:hover {
        background: #fff;
        transform: scale(1.05);
        color: #0F172A;
        text-decoration: none;
    }

#global-nav ul li a, #global-nav ul li a:hover {
    text-decoration: none;
}

html {
    font-size: 16px;
}

.form label.required:after {
    float: none !important;
}

.form h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--ink);
}

.form .step-sub {
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 24px;
}

    .form .step-sub strong {
        color: var(--sc-orange);
        font-weight: 600;
    }

.form label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--ink);
    text-transform: uppercase;
    margin-bottom: 6px;
}

    .form label .req {
        color: var(--sc-orange);
    }

    .form label .label-optional {
        color: var(--muted);
        font-weight: 500;
        text-transform: none;
        letter-spacing: 0;
        margin-left: 4px;
        font-size: 11px;
    }

.form input, .sc-prov-signup-v2 .form select, .sc-prov-signup-v2 .form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--line-dark);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.15s;
}

    .form input:focus, .form select:focus, .form textarea:focus {
        outline: none;
        border-color: var(--sc-orange);
    }

    .form input::placeholder, .form textarea::placeholder {
        color: #94A3B8;
    }

.form textarea {
    min-height: 90px;
    resize: vertical;
    line-height: 1.5;
}

.form .pw-strength {
    display: flex;
    gap: 4px;
    margin-top: 6px;
}

    .form .pw-strength .bar {
        flex: 1;
        height: 3px;
        background: var(--line-dark);
        border-radius: 2px;
    }

.form .tos {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    margin: 14px 0 20px;
}

    .form .tos a {
        color: var(--sc-orange);
        text-decoration: none;
        font-weight: 600;
    }
