/* ChudoWork — auth pages
   Clean SaaS auth: flat canvas, hairline borders, 8px controls,
   brand teal/red. Inspired by restrained product login layouts. */

:root {
    --cw-auth-primary: #1fb6bc;
    --cw-auth-primary-dark: #149098;
    --cw-auth-accent: #e53935;
    --cw-auth-text: #1f2933;
    --cw-auth-muted: #64748b;
    --cw-auth-mist: #94a3b8;
    --cw-auth-cloud: #f8f9fb;
    --cw-auth-paper: #ffffff;
    --cw-auth-pebble: #f0f3f8;
    --cw-auth-hairline: #e2e8f0;
    --cw-auth-radius-card: 16px;
    --cw-auth-radius-control: 8px;
    --cw-auth-shadow:
        rgba(31, 182, 188, 0.04) 0px 4px 5px 0px,
        rgba(15, 35, 52, 0.03) 0px 8px 15px 0px,
        rgba(15, 35, 52, 0.06) 0px 24px 40px 0px;
}

/* ── Shell ── */
.cw-auth-shell {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: var(--cw-auth-cloud);
    color: var(--cw-auth-text);
    font-family: 'Rubik', 'Inter', system-ui, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

.cw-auth-bg { display: none; }

/* ── Layout ── */
.cw-auth-main {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: max(12px, env(safe-area-inset-top)) 20px max(20px, env(safe-area-inset-bottom));
}

@media (min-width: 640px) {
    .cw-auth-main {
        justify-content: center;
        max-width: 420px;
        padding: 48px 24px;
    }
}

/* ── Header ── */
.cw-auth-header {
    text-align: center;
    padding: 20px 0 20px;
    flex-shrink: 0;
}

@media (max-width: 639px) {
    .cw-auth-main {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }

    .cw-auth-legal {
        line-height: 1.5;
        padding: 0 4px;
    }

    .cw-auth-legal a {
        display: inline-block;
        padding: 2px 0;
    }

    .cw-auth-footer__cta {
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        line-height: 1.4;
    }

    .cw-auth-footer__reg {
        padding: 0 8px;
        line-height: 1.45;
    }
}

@media (min-width: 640px) {
    .cw-auth-header { padding: 0 0 24px; }
}

.cw-auth-logo {
    font-family: 'Rubik', system-ui, sans-serif;
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
}

.cw-auth-logo__chudo { color: var(--cw-auth-accent); }
.cw-auth-logo__work { color: var(--cw-auth-primary); }

.cw-auth-tagline {
    margin-top: 8px;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--cw-auth-muted);
    line-height: 1.4;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Card ── */
.cw-auth-card {
    background: var(--cw-auth-paper);
    border: 1px solid var(--cw-auth-hairline);
    border-radius: var(--cw-auth-radius-card);
    box-shadow: var(--cw-auth-shadow);
    overflow: hidden;
}

.cw-auth-card__body {
    padding: 24px 20px 20px;
}

@media (min-width: 640px) {
    .cw-auth-card__body { padding: 28px 28px 24px; }
}

.cw-auth-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cw-auth-text);
    margin: 0 0 18px;
    letter-spacing: -0.01em;
    text-align: center;
    line-height: 1.25;
}

/* Mobile: floating card with safe margins */
@media (max-width: 639px) {
    .cw-auth-main--app {
        justify-content: center;
        min-height: 100dvh;
        max-width: 100%;
        width: 100%;
        padding:
            max(12px, env(safe-area-inset-top))
            max(20px, env(safe-area-inset-right))
            max(20px, env(safe-area-inset-bottom))
            max(20px, env(safe-area-inset-left));
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cw-auth-main--app .cw-auth-header {
        padding-bottom: 16px;
    }

    .cw-auth-main--app .cw-auth-card {
        border-radius: var(--cw-auth-radius-card);
    }

    .cw-auth-main--app .cw-auth-card__body {
        padding: 22px 18px 18px;
    }

    .cw-auth-main--app .cw-auth-footer {
        padding: 0;
        margin-top: 16px;
    }

    .cw-auth-main--app .cw-auth-alert {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 639px) and (max-height: 700px) {
    .cw-auth-main--app {
        justify-content: flex-start;
        padding-top: max(8px, env(safe-area-inset-top));
    }

    .cw-auth-main--app .cw-auth-header {
        padding-top: 4px;
        padding-bottom: 8px;
    }
}

/* ── Form ── */
.cw-auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cw-auth-form.hidden,
.cw-auth-form[hidden] {
    display: none !important;
}

.cw-auth-field {
    min-width: 0;
}

.cw-auth-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.cw-auth-label-row .cw-auth-label {
    margin-bottom: 0;
}

.cw-auth-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cw-auth-text);
    margin-bottom: 6px;
}

.cw-auth-input-wrap {
    position: relative;
}

.cw-auth-input {
    display: block;
    width: 100%;
    border: 1px solid var(--cw-auth-hairline);
    border-radius: var(--cw-auth-radius-control);
    background: var(--cw-auth-pebble);
    padding: 12px 14px;
    font-size: 0.9375rem;
    font-weight: 400;
    font-family: inherit;
    color: var(--cw-auth-text);
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
    -webkit-appearance: none;
    appearance: none;
}

.cw-auth-input--password {
    padding-right: 76px;
}

.cw-auth-input::placeholder { color: var(--cw-auth-mist); }

.cw-auth-input:focus {
    outline: none;
    background: var(--cw-auth-paper);
    border-color: var(--cw-auth-primary);
    box-shadow: 0 0 0 3px rgba(31, 182, 188, 0.12);
}

.cw-auth-input-toggle {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 14px;
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: inherit;
    color: var(--cw-auth-muted);
    background: none;
    border: none;
    cursor: pointer;
}

.cw-auth-input-toggle:hover {
    color: var(--cw-auth-primary-dark);
}

.cw-auth-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: var(--cw-auth-radius-control);
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s, color 0.15s;
}

.cw-auth-btn--primary {
    background: var(--cw-auth-primary);
    color: #fff;
    margin-top: 4px;
    box-shadow:
        rgba(31, 182, 188, 0.12) 0px 4px 5px 0px,
        rgba(31, 182, 188, 0.14) 0px 10px 20px 0px;
}

.cw-auth-btn--primary:hover {
    background: var(--cw-auth-primary-dark);
}

.cw-auth-btn--primary:active {
    transform: none;
    box-shadow:
        rgba(31, 182, 188, 0.10) 0px 2px 4px 0px,
        rgba(31, 182, 188, 0.12) 0px 6px 12px 0px;
}

.cw-auth-btn--ghost {
    background: var(--cw-auth-paper);
    color: var(--cw-auth-text);
    border: 1px solid var(--cw-auth-hairline);
    box-shadow: none;
}

.cw-auth-btn--ghost:hover { background: var(--cw-auth-pebble); }

.cw-auth-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cw-auth-primary-dark);
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

.cw-auth-link:hover { text-decoration: underline; text-underline-offset: 2px; }

/* ── OAuth / VK ID ── */
.cw-auth-oauth-foot {
    margin-top: 18px;
    padding-top: 4px;
    border-top: none;
}

.cw-auth-oauth-foot .cw-auth-divider {
    margin: 0 0 14px;
}

.cw-vkid-wrap {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cw-vkid-onetap {
    width: 100%;
    min-height: 48px;
    position: relative;
    z-index: 2;
}

.cw-vkid-onetap iframe,
.cw-vkid-onetap > * {
    max-width: 100% !important;
    pointer-events: auto !important;
}

.cw-vkid-status {
    margin: 10px 0 0;
    font-size: 0.8125rem;
    line-height: 1.4;
    text-align: center;
    color: var(--cw-auth-muted);
}

.cw-vkid-status[hidden] {
    display: none !important;
}

.cw-vkid-status--error {
    color: #dc2626;
}

/* legacy oauth stubs */
.cw-oauth-block,
.cw-oauth-row,
.cw-oauth-icon,
.cw-oauth-section,
.cw-oauth-hint,
.cw-oauth-section__head,
.cw-oauth-section__badge,
.cw-icon-attribution { display: none; }

/* ── Divider ── */
.cw-auth-divider {
    position: relative;
    margin: 20px 0;
}

.cw-auth-divider::before {
    content: '';
    position: absolute;
    inset: 50% 0 auto;
    height: 1px;
    background: var(--cw-auth-hairline);
}

.cw-auth-divider span {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 0 12px;
    background: var(--cw-auth-paper);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--cw-auth-mist);
}

/* ── Alerts ── */
.cw-auth-alert {
    border-radius: var(--cw-auth-radius-control);
    padding: 12px 14px;
    font-size: 0.875rem;
    font-weight: 400;
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.cw-auth-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.cw-auth-alert--success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #047857;
}

.cw-auth-alert__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* ── Card foot (регистрация + legal внутри карточки) ── */
.cw-auth-card__foot {
    padding: 16px 20px 18px;
    border-top: 1px solid var(--cw-auth-hairline);
    background: var(--cw-auth-cloud);
    text-align: center;
}

@media (min-width: 640px) {
    .cw-auth-card__foot {
        padding: 18px 28px 20px;
    }
}

.cw-auth-card__foot-reg {
    margin: 0 0 10px;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--cw-auth-muted);
    line-height: 1.45;
}

.cw-auth-card__foot-reg a {
    color: var(--cw-auth-primary-dark);
    font-weight: 600;
    text-decoration: none;
    margin-left: 2px;
    transition: color 0.15s;
}

.cw-auth-card__foot-reg a:hover {
    color: var(--cw-auth-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Footer (другие auth-страницы) ── */
.cw-auth-footer {
    margin-top: 18px;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.cw-auth-footer__reg {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--cw-auth-muted);
    line-height: 1.4;
}

.cw-auth-footer__reg-link {
    color: var(--cw-auth-primary-dark);
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
}

.cw-auth-footer__reg-link:hover {
    color: var(--cw-auth-primary);
}

.cw-auth-footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border-radius: 0;
    background: none;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--cw-auth-muted);
    text-decoration: none;
    border: none;
}

.cw-auth-footer__cta:hover {
    color: var(--cw-auth-text);
    background: none;
}

.cw-auth-footer__cta-accent {
    color: var(--cw-auth-primary-dark);
    font-weight: 600;
}

.cw-auth-legal {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--cw-auth-mist);
    letter-spacing: 0;
}

.cw-auth-legal__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--cw-auth-hairline);
    flex-shrink: 0;
}

.cw-auth-legal a {
    color: var(--cw-auth-mist);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.15s;
}

.cw-auth-legal a:hover { color: var(--cw-auth-primary-dark); }

.cw-auth-form > p.text-center {
    margin: 0;
}

.cw-auth-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cw-auth-muted);
    text-decoration: none;
    margin-bottom: 16px;
}

.cw-auth-back:hover { color: var(--cw-auth-text); }
.cw-auth-back svg { width: 16px; height: 16px; }

/* ── Modal ── */
.cw-auth-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.cw-auth-modal.is-open {
    display: flex;
    opacity: 1;
}

@media (min-width: 640px) {
    .cw-auth-modal { align-items: center; padding: 16px; }
}

.cw-auth-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
}

.cw-auth-modal__panel {
    position: relative;
    width: 100%;
    max-width: 440px;
    max-height: 92dvh;
    overflow-y: auto;
    background: var(--cw-auth-paper);
    border-radius: 16px 16px 0 0;
    box-shadow: var(--cw-auth-shadow);
    border: 1px solid var(--cw-auth-hairline);
}

@media (min-width: 640px) {
    .cw-auth-modal__panel { border-radius: 16px; max-height: 85vh; }
}

.cw-auth-modal__handle {
    width: 32px;
    height: 3px;
    background: var(--cw-auth-hairline);
    border-radius: 999px;
    margin: 8px auto 0;
}

@media (min-width: 640px) { .cw-auth-modal__handle { display: none; } }

.cw-auth-modal__header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px 16px 20px;
    border-bottom: 1px solid var(--cw-auth-hairline);
}

.cw-auth-modal__title {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

.cw-auth-modal__close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: var(--cw-auth-radius-control);
    background: var(--cw-auth-pebble);
    color: var(--cw-auth-muted);
    cursor: pointer;
}

.cw-auth-modal__close:hover {
    color: var(--cw-auth-text);
    background: var(--cw-auth-hairline);
}

.cw-auth-modal__body { padding: 20px; }

.cw-auth-modal__section {
    border: 1px solid var(--cw-auth-hairline);
    border-radius: var(--cw-auth-radius-control);
    background: var(--cw-auth-cloud);
    padding: 16px;
}

.cw-auth-modal__section + .cw-auth-modal__hint,
.cw-auth-modal__hint + .cw-auth-modal__section,
.cw-auth-modal__section + .cw-auth-modal__section {
    margin-top: 16px;
}

.cw-auth-modal__hint {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--cw-auth-muted);
    line-height: 1.5;
}

.cw-auth-modal__hint strong {
    color: var(--cw-auth-text);
    font-weight: 600;
}

.cw-auth-contact {
    border: 1px solid var(--cw-auth-hairline);
    border-radius: var(--cw-auth-radius-control);
    background: var(--cw-auth-paper);
    padding: 14px;
}

.cw-auth-contact__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cw-auth-contact__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--cw-auth-hairline);
    flex-shrink: 0;
    background: var(--cw-auth-pebble);
}

.cw-auth-contact__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cw-auth-contact__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cw-auth-text);
    line-height: 1.3;
}

.cw-auth-contact__role {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--cw-auth-primary-dark);
    margin-top: 2px;
}

.cw-auth-contact__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cw-auth-contact__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: var(--cw-auth-radius-control);
    border: 1px solid var(--cw-auth-hairline);
    background: var(--cw-auth-cloud);
    color: var(--cw-auth-text);
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s;
}

.cw-auth-contact__link:hover {
    color: var(--cw-auth-primary-dark);
    border-color: rgba(31, 182, 188, 0.35);
}

.cw-auth-modal__footer {
    padding: 14px 20px;
    border-top: 1px solid var(--cw-auth-hairline);
    display: flex;
    justify-content: flex-end;
    background: var(--cw-auth-cloud);
}

.cw-auth-btn--compact {
    width: auto;
    padding: 10px 18px;
}

/* ── Register / wider auth forms ── */
.cw-auth-main--wide {
    max-width: 560px;
}

@media (min-width: 640px) {
    .cw-auth-main--wide {
        max-width: 560px;
    }
}

.cw-auth-card__subtitle {
    margin: -10px 0 20px;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--cw-auth-muted);
    text-align: center;
    line-height: 1.45;
}

.cw-auth-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 640px) {
    .cw-auth-grid--2 {
        grid-template-columns: 1fr 1fr;
    }
}

.cw-auth-field-hint {
    margin: 6px 0 0;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--cw-auth-mist);
    line-height: 1.4;
}

.cw-auth-divider-soft {
    border: none;
    border-top: 1px solid var(--cw-auth-hairline);
    margin: 4px 0;
}

.cw-auth-avatar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
    padding: 12px;
    border: 1px dashed var(--cw-auth-hairline);
    border-radius: var(--cw-auth-radius-control);
    background: var(--cw-auth-cloud);
}

.cw-auth-avatar__preview {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--cw-auth-pebble);
    border: 1px solid var(--cw-auth-hairline);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cw-auth-mist);
}

.cw-auth-avatar__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cw-auth-avatar__preview img[hidden],
.cw-auth-avatar__preview img.hidden {
    display: none;
}

.cw-auth-avatar__file {
    display: block;
    width: 100%;
    min-width: 0;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--cw-auth-muted);
    font-family: inherit;
}

.cw-auth-avatar__file::file-selector-button {
    margin-right: 12px;
    padding: 8px 12px;
    border: 1px solid var(--cw-auth-hairline);
    border-radius: var(--cw-auth-radius-control);
    background: var(--cw-auth-paper);
    color: var(--cw-auth-primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
}

.cw-auth-avatar__file:hover::file-selector-button {
    background: var(--cw-auth-pebble);
}

.cw-auth-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.cw-auth-check input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--cw-auth-primary);
}

.cw-auth-check span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--cw-auth-muted);
    line-height: 1.5;
}

.cw-auth-check a {
    color: var(--cw-auth-primary-dark);
    font-weight: 500;
    text-decoration: none;
}

.cw-auth-check a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cw-auth-pw-msg {
    margin-top: 6px;
    min-height: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.3;
}

.cw-auth-icon-badge {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--cw-auth-radius-control);
    background: var(--cw-auth-pebble);
    color: var(--cw-auth-primary-dark);
    border: 1px solid var(--cw-auth-hairline);
}

.cw-auth-icon-badge svg {
    width: 22px;
    height: 22px;
}

/* ── Register cards ── */
.cw-reg-grid {
    display: grid;
    gap: 14px;
}

@media (min-width: 768px) {
    .cw-reg-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

.cw-reg-card {
    border-radius: var(--cw-auth-radius-card);
    padding: 24px 22px;
    background: var(--cw-auth-paper);
    border: 1px solid var(--cw-auth-hairline);
    box-shadow: var(--cw-auth-shadow);
}

.cw-reg-card--disabled { opacity: 0.7; }
.cw-reg-card--active { border-color: rgba(31, 182, 188, 0.35); }

.cw-reg-card__badge {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.cw-reg-card__badge--soon { background: #fef2f2; color: #b91c1c; }
.cw-reg-card__badge--open { background: rgba(31, 182, 188, 0.1); color: var(--cw-auth-primary-dark); }

.cw-reg-features {
    margin: 14px 0;
    padding: 0;
    list-style: none;
}

.cw-reg-features li {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--cw-auth-muted);
    margin-bottom: 8px;
    padding-left: 14px;
    position: relative;
    line-height: 1.4;
}

.cw-reg-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cw-auth-primary);
}

.cw-reg-card--disabled .cw-reg-features li::before { background: #fca5a5; }

/* ── Animations ── */
@keyframes cw-auth-fade-up {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.cw-auth-animate { animation: cw-auth-fade-up 0.3s ease-out both; }
.cw-auth-animate--delay { animation-delay: 0.04s; }
