@charset "UTF-8";

.nYa_synthesis_container {
    animation: nYa_fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 440px;
    margin: 0 auto;
}

@keyframes nYa_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nYa_ringPulse {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes nYa_checkDraw {
    from {
        stroke-dashoffset: 24;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.nYa_synth_hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
}

.nYa_synth_icon_ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(42, 170, 106, 0.2) 0%, rgba(42, 170, 106, 0.06) 100%);
    border: 2px solid rgba(42, 170, 106, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: nYa_ringPulse 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.nYa_synth_icon_ring svg {
    width: 28px;
    height: 28px;
    stroke: #2aaa6a;
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
    animation: nYa_checkDraw 0.5s ease 0.5s forwards;
}

.nYa_synth_hero_label {
    font-family: "Roobert", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 6px;
}

.nYa_synth_hero_name {
    font-family: "Roobert", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin: 0;
    line-height: 1.2;
}

.nYa_synth_card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}

.nYa_synth_identity {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nYa_synth_avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2aaa6a 0%, #1a8a52 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Roobert", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.nYa_synth_identity_info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.nYa_synth_email {
    font-family: "Roobert", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nYa_synth_badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-family: "Roobert", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    width: fit-content;
}

.nYa_synth_badge_standard {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
}

.nYa_synth_badge_operator {
    background: rgba(59, 130, 246, 0.12);
    color: #6ba5f5;
}

.nYa_synth_badge_admin {
    background: rgba(168, 85, 247, 0.12);
    color: #c092f5;
}

.nYa_synth_badge_service {
    background: rgba(251, 146, 60, 0.12);
    color: #f5a060;
}

.nYa_synth_divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 20px 0;
}

.nYa_synth_details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nYa_synth_detail_item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nYa_synth_detail_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nYa_synth_detail_item:first-child {
    padding-top: 0;
}

.nYa_synth_detail_item svg {
    width: 15px;
    height: 15px;
    stroke: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.nYa_synth_detail_label {
    font-family: "Roobert", sans-serif;
    font-size: 13px;
    font-weight: 450;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
}

.nYa_synth_detail_value {
    font-family: "Roobert", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 55%;
}

.nYa_synth_mono {
    font-family: "SF Mono", Monaco, "Cascadia Code", monospace;
    font-size: 12px;
    letter-spacing: 0.02em;
}

.nYa_synth_detail_first {
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    border-bottom: none;
}

.nYa_synth_detail_first svg {
    stroke: #2aaa6a;
    opacity: 0.7;
}

.nYa_synth_detail_first .nYa_synth_detail_label {
    color: rgba(42, 170, 106, 0.8);
    font-weight: 500;
}

.nYa_synth_detail_secure {
    border-bottom: none !important;
    padding-bottom: 0;
}

.nYa_synth_detail_secure svg {
    stroke: #2aaa6a;
}

.nYa_synth_detail_secure .nYa_synth_detail_label {
    color: #2aaa6a;
    font-weight: 500;
}

.nYa_synth_continue {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: #2aaa6a;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    position: relative;
    overflow: hidden;
}

.nYa_synth_continue::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.nYa_synth_continue:hover {
    background: #32bf78;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(42, 170, 106, 0.25);
}

.nYa_synth_continue:hover::before {
    opacity: 1;
}

.nYa_synth_continue:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(42, 170, 106, 0.15);
}

.nYa_synth_continue span {
    font-family: "Roobert", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.nYa_synth_continue svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    transition: transform 0.2s ease;
}

.nYa_synth_continue:hover svg {
    transform: translateX(3px);
}

.nYa_backup_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 24px;
}

.nYa_backup_code {
    font-family: "SF Mono", Monaco, "Cascadia Code", monospace;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    text-align: center;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.nYa_backup_code:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(42, 170, 106, 0.3);
}

.nYa_warning_text {
    color: #ffaa55 !important;
    font-weight: 500;
}

.reconnect-container {
    animation: nYa_fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.reconnect-avatar {
    margin-bottom: 20px;
}

.reconnect-avatar .Qr5tK8 {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2aaa6a 0%, #1a8a52 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Roobert", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    animation: nYa_ringPulse 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.reconnect-greeting {
    font-family: "Roobert", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.reconnect-user-info {
    margin-bottom: 24px;
}

.reconnect-name {
    font-family: "Roobert", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 4px 0;
}

.reconnect-email {
    font-family: "Roobert", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.reconnect-meta {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 28px;
}

.reconnect-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.reconnect-meta-row + .reconnect-meta-row {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.reconnect-meta-label {
    font-family: "Roobert", sans-serif;
    font-size: 13px;
    font-weight: 450;
    color: rgba(255, 255, 255, 0.45);
}

.reconnect-meta-value {
    font-family: "Roobert", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.reconnect-challenge {
    width: 100%;
    margin-bottom: 24px;
}

.reconnect-challenge .Jk8nQ2 {
    font-family: "Roobert", sans-serif;
    font-size: 14px;
    font-weight: 450;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.reconnect-challenge .Xk9mP3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.reconnect-switch {
    margin-top: 4px;
}

.reconnect-switch .Lm6nR4 {
    font-family: "Roobert", sans-serif;
    font-size: 13px;
    font-weight: 450;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

.reconnect-switch .Lm6nR4:hover {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .nYa_synthesis_container,
    .reconnect-container {
        max-width: 100%;
        padding: 0 8px;
    }

    .nYa_synth_hero {
        margin-bottom: 24px;
    }

    .nYa_synth_card {
        border-radius: 14px;
        padding: 20px;
    }

    .nYa_synth_continue {
        border-radius: 12px;
    }

    .reconnect-meta {
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    .nYa_synth_hero_name,
    .reconnect-greeting {
        font-size: 20px;
    }

    .nYa_synth_card {
        padding: 16px;
        border-radius: 12px;
    }

    .nYa_synth_detail_value {
        max-width: 50%;
    }

    .nYa_synth_continue {
        border-radius: 10px;
        padding: 13px 24px;
    }

    .nYa_backup_grid {
        grid-template-columns: 1fr;
    }

    .nYa_backup_code {
        font-size: 13px;
        padding: 8px 10px;
    }

    .reconnect-avatar .Qr5tK8 {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .reconnect-meta {
        padding: 12px 14px;
        border-radius: 12px;
    }

    .reconnect-meta-label,
    .reconnect-meta-value {
        font-size: 12px;
    }

    .reconnect-challenge .Jk8nQ2 {
        font-size: 13px;
    }

    .reconnect-switch .Lm6nR4 {
        font-size: 12px;
    }

    .nYa_synth_identity {
        gap: 10px;
    }

    .nYa_synth_avatar {
        width: 38px;
        height: 38px;
        font-size: 16px;
        border-radius: 10px;
    }

    .nYa_synth_email {
        font-size: 13px;
    }

    .nYa_synth_icon_ring {
        width: 56px;
        height: 56px;
    }

    .nYa_synth_icon_ring svg {
        width: 24px;
        height: 24px;
    }

    .nYa_synth_detail_label,
    .nYa_synth_detail_value {
        font-size: 12px;
    }

    .nYa_synth_detail_item svg {
        width: 14px;
        height: 14px;
    }
}
